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

67292 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. }
  2447. //species
  2448. function getSpeciesInfo(speciesList) {
  2449. let result = new Set();
  2450. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2451. result.add(entry)
  2452. });
  2453. return Array.from(result);
  2454. };
  2455. function getSpeciesInfoHelper(species) {
  2456. if (!speciesData[species]) {
  2457. console.warn(species + " doesn't exist");
  2458. return [];
  2459. }
  2460. if (speciesData[species].parents) {
  2461. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2462. } else {
  2463. return [species];
  2464. }
  2465. }
  2466. characterMakers.push(() => makeCharacter(
  2467. {
  2468. name: "Fen",
  2469. species: ["crux"],
  2470. description: {
  2471. title: "Bio",
  2472. text: "Very furry. Sheds on everything."
  2473. },
  2474. tags: [
  2475. "anthro",
  2476. "goo"
  2477. ]
  2478. },
  2479. {
  2480. front: {
  2481. height: math.unit(12, "feet"),
  2482. weight: math.unit(2400, "lb"),
  2483. preyCapacity: math.unit(1, "people"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/fen/front.svg",
  2487. extra: 1804/1562,
  2488. bottom: 205/2009
  2489. },
  2490. extraAttributes: {
  2491. pawSize: {
  2492. name: "Paw Size",
  2493. power: 2,
  2494. type: "area",
  2495. base: math.unit(0.35, "m^2")
  2496. }
  2497. }
  2498. },
  2499. diving: {
  2500. height: math.unit(4.9, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Diving",
  2503. image: {
  2504. source: "./media/characters/fen/diving.svg"
  2505. }
  2506. },
  2507. sleeby: {
  2508. height: math.unit(3.45, "meters"),
  2509. weight: math.unit(2400, "lb"),
  2510. name: "Sleeby",
  2511. image: {
  2512. source: "./media/characters/fen/sleeby.svg"
  2513. }
  2514. },
  2515. goo: {
  2516. height: math.unit(12, "feet"),
  2517. weight: math.unit(3600, "lb"),
  2518. volume: math.unit(1000, "liters"),
  2519. preyCapacity: math.unit(6, "people"),
  2520. name: "Goo",
  2521. image: {
  2522. source: "./media/characters/fen/goo.svg",
  2523. extra: 1307/1071,
  2524. bottom: 134/1441
  2525. }
  2526. },
  2527. horror: {
  2528. height: math.unit(13.6, "feet"),
  2529. weight: math.unit(2400, "lb"),
  2530. preyCapacity: math.unit(1, "people"),
  2531. name: "Horror",
  2532. image: {
  2533. source: "./media/characters/fen/horror.svg",
  2534. extra: 893/797,
  2535. bottom: 0/893
  2536. }
  2537. },
  2538. gooNsfw: {
  2539. height: math.unit(12, "feet"),
  2540. weight: math.unit(3750, "lb"),
  2541. volume: math.unit(1000, "liters"),
  2542. preyCapacity: math.unit(6, "people"),
  2543. name: "Goo (NSFW)",
  2544. image: {
  2545. source: "./media/characters/fen/goo-nsfw.svg",
  2546. extra: 1875/1734,
  2547. bottom: 122/1997
  2548. }
  2549. },
  2550. maw: {
  2551. height: math.unit(5.03, "feet"),
  2552. name: "Maw",
  2553. image: {
  2554. source: "./media/characters/fen/maw.svg"
  2555. }
  2556. },
  2557. gooCeiling: {
  2558. height: math.unit(6.6, "feet"),
  2559. weight: math.unit(3000, "lb"),
  2560. volume: math.unit(1000, "liters"),
  2561. preyCapacity: math.unit(6, "people"),
  2562. name: "Maw (Goo)",
  2563. image: {
  2564. source: "./media/characters/fen/goo-maw.svg"
  2565. }
  2566. },
  2567. paw: {
  2568. height: math.unit(3.77, "feet"),
  2569. name: "Paw",
  2570. image: {
  2571. source: "./media/characters/fen/paw.svg"
  2572. },
  2573. extraAttributes: {
  2574. "toeSize": {
  2575. name: "Toe Size",
  2576. power: 2,
  2577. type: "area",
  2578. base: math.unit(0.02875, "m^2")
  2579. },
  2580. "pawSize": {
  2581. name: "Paw Size",
  2582. power: 2,
  2583. type: "area",
  2584. base: math.unit(0.378, "m^2")
  2585. },
  2586. }
  2587. },
  2588. tail: {
  2589. height: math.unit(12.1, "feet"),
  2590. name: "Tail",
  2591. image: {
  2592. source: "./media/characters/fen/tail.svg"
  2593. }
  2594. },
  2595. tailFull: {
  2596. height: math.unit(12.1, "feet"),
  2597. name: "Full Tail",
  2598. image: {
  2599. source: "./media/characters/fen/tail-full.svg"
  2600. }
  2601. },
  2602. back: {
  2603. height: math.unit(12, "feet"),
  2604. weight: math.unit(2400, "lb"),
  2605. name: "Back",
  2606. image: {
  2607. source: "./media/characters/fen/back.svg",
  2608. },
  2609. info: {
  2610. description: {
  2611. mode: "append",
  2612. text: "\n\nHe is not currently looking at you."
  2613. }
  2614. }
  2615. },
  2616. full: {
  2617. height: math.unit(1.85, "meter"),
  2618. weight: math.unit(3200, "lb"),
  2619. preyCapacity: math.unit(3, "people"),
  2620. name: "Full",
  2621. image: {
  2622. source: "./media/characters/fen/full.svg",
  2623. extra: 1133/859,
  2624. bottom: 145/1278
  2625. },
  2626. info: {
  2627. description: {
  2628. mode: "append",
  2629. text: "\n\nMunch."
  2630. }
  2631. }
  2632. },
  2633. gooLounging: {
  2634. height: math.unit(4.53, "feet"),
  2635. weight: math.unit(3000, "lb"),
  2636. preyCapacity: math.unit(6, "people"),
  2637. name: "Goo (Lounging)",
  2638. image: {
  2639. source: "./media/characters/fen/goo-lounging.svg",
  2640. bottom: 116 / 613
  2641. }
  2642. },
  2643. lounging: {
  2644. height: math.unit(10.52, "feet"),
  2645. weight: math.unit(2400, "lb"),
  2646. name: "Lounging",
  2647. image: {
  2648. source: "./media/characters/fen/lounging.svg"
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Small",
  2655. height: math.unit(2.2428, "meter")
  2656. },
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(12, "feet"),
  2660. default: true,
  2661. },
  2662. {
  2663. name: "Big",
  2664. height: math.unit(20, "feet")
  2665. },
  2666. {
  2667. name: "Minimacro",
  2668. height: math.unit(40, "feet"),
  2669. info: {
  2670. description: {
  2671. mode: "append",
  2672. text: "\n\nTOO DAMN BIG"
  2673. }
  2674. }
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(100, "feet"),
  2679. info: {
  2680. description: {
  2681. mode: "append",
  2682. text: "\n\nTOO DAMN BIG"
  2683. }
  2684. }
  2685. },
  2686. {
  2687. name: "Megamacro",
  2688. height: math.unit(2, "miles")
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(10, "earths")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(183, "cm"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/sofia-fluttertail/front.svg",
  2705. bottom: 0.01,
  2706. extra: 2154 / 2081
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Front (alt)",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(183, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/back.svg"
  2723. }
  2724. },
  2725. kneeling: {
  2726. height: math.unit(125, "cm"),
  2727. weight: math.unit(80, "kg"),
  2728. name: "Kneeling",
  2729. image: {
  2730. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2731. extra: 1033 / 977,
  2732. bottom: 23.7 / 1057
  2733. }
  2734. },
  2735. maw: {
  2736. height: math.unit(183 / 5, "cm"),
  2737. name: "Maw",
  2738. image: {
  2739. source: "./media/characters/sofia-fluttertail/maw.svg"
  2740. }
  2741. },
  2742. mawcloseup: {
  2743. height: math.unit(183 / 5 * 0.41, "cm"),
  2744. name: "Maw (Closeup)",
  2745. image: {
  2746. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2747. }
  2748. },
  2749. paws: {
  2750. height: math.unit(1.17, "feet"),
  2751. name: "Paws",
  2752. image: {
  2753. source: "./media/characters/sofia-fluttertail/paws.svg",
  2754. extra: 851 / 851,
  2755. bottom: 17 / 868
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(1.83, "meter")
  2763. },
  2764. {
  2765. name: "Size Thief",
  2766. height: math.unit(18, "feet")
  2767. },
  2768. {
  2769. name: "50 Foot Collie",
  2770. height: math.unit(50, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(96, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamerger",
  2779. height: math.unit(650, "feet")
  2780. },
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(7, "feet"),
  2788. weight: math.unit(100, "kg"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/march/front.svg",
  2792. extra: 1992/1851,
  2793. bottom: 39/2031
  2794. }
  2795. },
  2796. foot: {
  2797. height: math.unit(0.9, "feet"),
  2798. name: "Foot",
  2799. image: {
  2800. source: "./media/characters/march/foot.svg"
  2801. }
  2802. },
  2803. },
  2804. [
  2805. {
  2806. name: "Normal",
  2807. height: math.unit(7.9, "feet")
  2808. },
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(220, "meters")
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(2.98, "km"),
  2816. default: true
  2817. },
  2818. {
  2819. name: "Gigamacro",
  2820. height: math.unit(15963, "km")
  2821. },
  2822. {
  2823. name: "Teramacro",
  2824. height: math.unit(2980000000, "km")
  2825. },
  2826. {
  2827. name: "Examacro",
  2828. height: math.unit(250, "parsecs")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(60, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/noir/front.svg",
  2841. extra: 1,
  2842. bottom: 0.032
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(6.6, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(500, "feet")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(2.5, "km"),
  2858. default: true
  2859. },
  2860. {
  2861. name: "Gigamacro",
  2862. height: math.unit(22500, "km")
  2863. },
  2864. {
  2865. name: "Teramacro",
  2866. height: math.unit(2500000000, "km")
  2867. },
  2868. {
  2869. name: "Examacro",
  2870. height: math.unit(200, "parsecs")
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(7, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/okuri/front.svg",
  2883. extra: 739/665,
  2884. bottom: 39/778
  2885. }
  2886. },
  2887. back: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Back",
  2891. image: {
  2892. source: "./media/characters/okuri/back.svg",
  2893. extra: 734/653,
  2894. bottom: 13/747
  2895. }
  2896. },
  2897. sitting: {
  2898. height: math.unit(2.95, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Sitting",
  2901. image: {
  2902. source: "./media/characters/okuri/sitting.svg",
  2903. extra: 370/318,
  2904. bottom: 99/469
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Smallest",
  2911. height: math.unit(5 + 2/12, "feet")
  2912. },
  2913. {
  2914. name: "Smaller",
  2915. height: math.unit(300, "feet")
  2916. },
  2917. {
  2918. name: "Small",
  2919. height: math.unit(1000, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(1, "mile")
  2924. },
  2925. {
  2926. name: "Mega Macro (Small)",
  2927. height: math.unit(20, "km")
  2928. },
  2929. {
  2930. name: "Mega Macro (Large)",
  2931. height: math.unit(600, "km")
  2932. },
  2933. {
  2934. name: "Giga Macro",
  2935. height: math.unit(10000, "km")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(577560, "km"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Large",
  2944. height: math.unit(4, "galaxies")
  2945. },
  2946. {
  2947. name: "Largest",
  2948. height: math.unit(15, "multiverses")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(7, "feet"),
  2957. weight: math.unit(100, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/manny/front.svg",
  2961. extra: 1,
  2962. bottom: 0.06
  2963. }
  2964. },
  2965. back: {
  2966. height: math.unit(7, "feet"),
  2967. weight: math.unit(100, "kg"),
  2968. name: "Back",
  2969. image: {
  2970. source: "./media/characters/manny/back.svg",
  2971. extra: 1,
  2972. bottom: 0.014
  2973. }
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(7, "feet"),
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(78, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(300, "meters")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(2400, "meters")
  2993. },
  2994. {
  2995. name: "Megamacro",
  2996. height: math.unit(5167, "meters")
  2997. },
  2998. {
  2999. name: "Gigamacro",
  3000. height: math.unit(41769, "miles")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3006. {
  3007. front: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front",
  3011. image: {
  3012. source: "./media/characters/adake/front-1.svg"
  3013. }
  3014. },
  3015. frontAlt: {
  3016. height: math.unit(7, "feet"),
  3017. weight: math.unit(100, "kg"),
  3018. name: "Front (Alt)",
  3019. image: {
  3020. source: "./media/characters/adake/front-2.svg",
  3021. extra: 1,
  3022. bottom: 0.01
  3023. }
  3024. },
  3025. back: {
  3026. height: math.unit(7, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Back",
  3029. image: {
  3030. source: "./media/characters/adake/back.svg",
  3031. }
  3032. },
  3033. kneel: {
  3034. height: math.unit(5.385, "feet"),
  3035. weight: math.unit(100, "kg"),
  3036. name: "Kneeling",
  3037. image: {
  3038. source: "./media/characters/adake/kneel.svg",
  3039. bottom: 0.052
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(7, "feet"),
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(78, "feet"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(300, "meters")
  3056. },
  3057. {
  3058. name: "Macro++",
  3059. height: math.unit(2400, "meters")
  3060. },
  3061. {
  3062. name: "Megamacro",
  3063. height: math.unit(5167, "meters")
  3064. },
  3065. {
  3066. name: "Gigamacro",
  3067. height: math.unit(41769, "miles")
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(1.65, "meters"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/elijah/front.svg",
  3080. extra: 858 / 830,
  3081. bottom: 95.5 / 953.8559
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(1.65, "meters"),
  3086. weight: math.unit(50, "kg"),
  3087. name: "Back",
  3088. image: {
  3089. source: "./media/characters/elijah/back.svg",
  3090. extra: 895 / 850,
  3091. bottom: 5.3 / 897.956
  3092. }
  3093. },
  3094. frontNsfw: {
  3095. height: math.unit(1.65, "meters"),
  3096. weight: math.unit(50, "kg"),
  3097. name: "Front (NSFW)",
  3098. image: {
  3099. source: "./media/characters/elijah/front-nsfw.svg",
  3100. extra: 858 / 830,
  3101. bottom: 95.5 / 953.8559
  3102. }
  3103. },
  3104. backNsfw: {
  3105. height: math.unit(1.65, "meters"),
  3106. weight: math.unit(50, "kg"),
  3107. name: "Back (NSFW)",
  3108. image: {
  3109. source: "./media/characters/elijah/back-nsfw.svg",
  3110. extra: 895 / 850,
  3111. bottom: 5.3 / 897.956
  3112. }
  3113. },
  3114. dick: {
  3115. height: math.unit(1, "feet"),
  3116. name: "Dick",
  3117. image: {
  3118. source: "./media/characters/elijah/dick.svg"
  3119. }
  3120. },
  3121. beakOpen: {
  3122. height: math.unit(1.25, "feet"),
  3123. name: "Beak (Open)",
  3124. image: {
  3125. source: "./media/characters/elijah/beak-open.svg"
  3126. }
  3127. },
  3128. beakShut: {
  3129. height: math.unit(1.25, "feet"),
  3130. name: "Beak (Shut)",
  3131. image: {
  3132. source: "./media/characters/elijah/beak-shut.svg"
  3133. }
  3134. },
  3135. footFlexing: {
  3136. height: math.unit(1.61, "feet"),
  3137. name: "Foot (Flexing)",
  3138. image: {
  3139. source: "./media/characters/elijah/foot-flexing.svg"
  3140. }
  3141. },
  3142. footStepping: {
  3143. height: math.unit(1.44, "feet"),
  3144. name: "Foot (Stepping)",
  3145. image: {
  3146. source: "./media/characters/elijah/foot-stepping.svg"
  3147. }
  3148. },
  3149. plantigradeLeg: {
  3150. height: math.unit(2.34, "feet"),
  3151. name: "Plantigrade Leg",
  3152. image: {
  3153. source: "./media/characters/elijah/plantigrade-leg.svg"
  3154. }
  3155. },
  3156. plantigradeFootLeft: {
  3157. height: math.unit(0.9, "feet"),
  3158. name: "Plantigrade Foot (Left)",
  3159. image: {
  3160. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3161. }
  3162. },
  3163. plantigradeFootRight: {
  3164. height: math.unit(0.9, "feet"),
  3165. name: "Plantigrade Foot (Right)",
  3166. image: {
  3167. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(1.65, "meters")
  3175. },
  3176. {
  3177. name: "Macro",
  3178. height: math.unit(55, "meters"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Macro+",
  3183. height: math.unit(105, "meters")
  3184. },
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3189. {
  3190. front: {
  3191. height: math.unit(7 + 2/12, "feet"),
  3192. weight: math.unit(320, "kg"),
  3193. preyCapacity: math.unit(0.276549935, "people"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/rai/front.svg",
  3197. extra: 1802/1696,
  3198. bottom: 68/1870
  3199. },
  3200. form: "anthro",
  3201. default: true
  3202. },
  3203. frontDressed: {
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. weight: math.unit(320, "kg"),
  3206. preyCapacity: math.unit(0.276549935, "people"),
  3207. name: "Front (Dressed)",
  3208. image: {
  3209. source: "./media/characters/rai/front-dressed.svg",
  3210. extra: 1802/1696,
  3211. bottom: 68/1870
  3212. },
  3213. form: "anthro"
  3214. },
  3215. side: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/rai/side.svg",
  3222. extra: 1789/1710,
  3223. bottom: 115/1904
  3224. },
  3225. form: "anthro"
  3226. },
  3227. back: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/rai/back.svg",
  3234. extra: 1770/1707,
  3235. bottom: 28/1798
  3236. },
  3237. form: "anthro"
  3238. },
  3239. feral: {
  3240. height: math.unit(9.5, "feet"),
  3241. weight: math.unit(640, "kg"),
  3242. preyCapacity: math.unit(4, "people"),
  3243. name: "Feral",
  3244. image: {
  3245. source: "./media/characters/rai/feral.svg",
  3246. extra: 945/553,
  3247. bottom: 176/1121
  3248. },
  3249. form: "feral",
  3250. default: true
  3251. },
  3252. dragon: {
  3253. height: math.unit(23, "feet"),
  3254. weight: math.unit(50000, "lb"),
  3255. name: "Dragon",
  3256. image: {
  3257. source: "./media/characters/rai/dragon.svg",
  3258. extra: 2498 / 2030,
  3259. bottom: 85.2 / 2584
  3260. },
  3261. form: "dragon",
  3262. default: true
  3263. },
  3264. maw: {
  3265. height: math.unit(1.69, "feet"),
  3266. name: "Maw",
  3267. image: {
  3268. source: "./media/characters/rai/maw.svg"
  3269. },
  3270. form: "anthro"
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(7 + 2/12, "feet"),
  3277. form: "anthro"
  3278. },
  3279. {
  3280. name: "Big",
  3281. height: math.unit(11, "feet"),
  3282. form: "anthro"
  3283. },
  3284. {
  3285. name: "Minimacro",
  3286. height: math.unit(77, "feet"),
  3287. form: "anthro"
  3288. },
  3289. {
  3290. name: "Macro",
  3291. height: math.unit(302, "feet"),
  3292. default: true,
  3293. form: "anthro"
  3294. },
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(9.5, "feet"),
  3298. form: "feral",
  3299. default: true
  3300. },
  3301. {
  3302. name: "Normal",
  3303. height: math.unit(23, "feet"),
  3304. form: "dragon",
  3305. default: true
  3306. }
  3307. ],
  3308. {
  3309. "anthro": {
  3310. name: "Anthro",
  3311. default: true
  3312. },
  3313. "feral": {
  3314. name: "Feral",
  3315. },
  3316. "dragon": {
  3317. name: "Dragon",
  3318. },
  3319. }
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3323. {
  3324. frontDressed: {
  3325. height: math.unit(216, "feet"),
  3326. weight: math.unit(7000000, "lb"),
  3327. preyCapacity: math.unit(1321, "people"),
  3328. name: "Front (Dressed)",
  3329. image: {
  3330. source: "./media/characters/jazzy/front-dressed.svg",
  3331. extra: 2738 / 2651,
  3332. bottom: 41.8 / 2786
  3333. }
  3334. },
  3335. backDressed: {
  3336. height: math.unit(216, "feet"),
  3337. weight: math.unit(7000000, "lb"),
  3338. preyCapacity: math.unit(1321, "people"),
  3339. name: "Back (Dressed)",
  3340. image: {
  3341. source: "./media/characters/jazzy/back-dressed.svg",
  3342. extra: 2775 / 2673,
  3343. bottom: 36.8 / 2817
  3344. }
  3345. },
  3346. front: {
  3347. height: math.unit(216, "feet"),
  3348. weight: math.unit(7000000, "lb"),
  3349. preyCapacity: math.unit(1321, "people"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/jazzy/front.svg",
  3353. extra: 2738 / 2651,
  3354. bottom: 41.8 / 2786
  3355. }
  3356. },
  3357. back: {
  3358. height: math.unit(216, "feet"),
  3359. weight: math.unit(7000000, "lb"),
  3360. preyCapacity: math.unit(1321, "people"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/jazzy/back.svg",
  3364. extra: 2775 / 2673,
  3365. bottom: 36.8 / 2817
  3366. }
  3367. },
  3368. maw: {
  3369. height: math.unit(20, "feet"),
  3370. name: "Maw",
  3371. image: {
  3372. source: "./media/characters/jazzy/maw.svg"
  3373. }
  3374. },
  3375. paws: {
  3376. height: math.unit(27.5, "feet"),
  3377. name: "Paws",
  3378. image: {
  3379. source: "./media/characters/jazzy/paws.svg"
  3380. }
  3381. },
  3382. eye: {
  3383. height: math.unit(4.4, "feet"),
  3384. name: "Eye",
  3385. image: {
  3386. source: "./media/characters/jazzy/eye.svg"
  3387. }
  3388. },
  3389. droneOffense: {
  3390. height: math.unit(9.5, "inches"),
  3391. name: "Drone (Offense)",
  3392. image: {
  3393. source: "./media/characters/jazzy/drone-offense.svg"
  3394. }
  3395. },
  3396. droneRecon: {
  3397. height: math.unit(9.5, "inches"),
  3398. name: "Drone (Recon)",
  3399. image: {
  3400. source: "./media/characters/jazzy/drone-recon.svg"
  3401. }
  3402. },
  3403. droneDefense: {
  3404. height: math.unit(9.5, "inches"),
  3405. name: "Drone (Defense)",
  3406. image: {
  3407. source: "./media/characters/jazzy/drone-defense.svg"
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(216, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(9 + 6/12, "feet"),
  3424. weight: math.unit(700, "lb"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/flamm/front.svg",
  3428. extra: 1736/1596,
  3429. bottom: 93/1829
  3430. }
  3431. },
  3432. buff: {
  3433. height: math.unit(9 + 6/12, "feet"),
  3434. weight: math.unit(950, "lb"),
  3435. name: "Buff",
  3436. image: {
  3437. source: "./media/characters/flamm/buff.svg",
  3438. extra: 3018/2874,
  3439. bottom: 221/3239
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Normal",
  3446. height: math.unit(9.5, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(200, "feet"),
  3451. default: true
  3452. },
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(5 + 3/12, "feet"),
  3460. weight: math.unit(60, "kg"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/zephiro/front.svg",
  3464. extra: 1873/1761,
  3465. bottom: 147/2020
  3466. }
  3467. },
  3468. side: {
  3469. height: math.unit(5 + 3/12, "feet"),
  3470. weight: math.unit(60, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/zephiro/side.svg",
  3474. extra: 1929/1827,
  3475. bottom: 65/1994
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(5 + 3/12, "feet"),
  3480. weight: math.unit(60, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/zephiro/back.svg",
  3484. extra: 1926/1816,
  3485. bottom: 41/1967
  3486. }
  3487. },
  3488. hand: {
  3489. height: math.unit(0.68, "feet"),
  3490. name: "Hand",
  3491. image: {
  3492. source: "./media/characters/zephiro/hand.svg"
  3493. }
  3494. },
  3495. paw: {
  3496. height: math.unit(1, "feet"),
  3497. name: "Paw",
  3498. image: {
  3499. source: "./media/characters/zephiro/paw.svg"
  3500. }
  3501. },
  3502. beans: {
  3503. height: math.unit(0.93, "feet"),
  3504. name: "Beans",
  3505. image: {
  3506. source: "./media/characters/zephiro/beans.svg"
  3507. }
  3508. },
  3509. },
  3510. [
  3511. {
  3512. name: "Micro",
  3513. height: math.unit(3, "inches")
  3514. },
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(5 + 3 / 12, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(118, "feet")
  3523. },
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(5, "feet"),
  3531. weight: math.unit(90, "kg"),
  3532. preyCapacity: math.unit(14, "people"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/fory/front.svg",
  3536. extra: 2862 / 2674,
  3537. bottom: 180 / 3043.8
  3538. },
  3539. form: "weaselbun",
  3540. default: true,
  3541. extraAttributes: {
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.1596, "m^2")
  3547. },
  3548. "pawLength": {
  3549. name: "Paw Length",
  3550. power: 1,
  3551. type: "length",
  3552. base: math.unit(0.7, "m")
  3553. }
  3554. }
  3555. },
  3556. back: {
  3557. height: math.unit(5, "feet"),
  3558. weight: math.unit(90, "kg"),
  3559. preyCapacity: math.unit(14, "people"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/fory/back.svg",
  3563. extra: 1790/1672,
  3564. bottom: 84/1874
  3565. },
  3566. form: "weaselbun",
  3567. extraAttributes: {
  3568. "pawSize": {
  3569. name: "Paw Size",
  3570. power: 2,
  3571. type: "area",
  3572. base: math.unit(0.1596, "m^2")
  3573. },
  3574. "pawLength": {
  3575. name: "Paw Length",
  3576. power: 1,
  3577. type: "length",
  3578. base: math.unit(0.7, "m")
  3579. }
  3580. }
  3581. },
  3582. paw: {
  3583. height: math.unit(2.14, "feet"),
  3584. name: "Paw",
  3585. image: {
  3586. source: "./media/characters/fory/paw.svg"
  3587. },
  3588. form: "weaselbun",
  3589. extraAttributes: {
  3590. "pawSize": {
  3591. name: "Paw Size",
  3592. power: 2,
  3593. type: "area",
  3594. base: math.unit(0.1596, "m^2")
  3595. },
  3596. "pawLength": {
  3597. name: "Paw Length",
  3598. power: 1,
  3599. type: "length",
  3600. base: math.unit(0.48, "m")
  3601. }
  3602. }
  3603. },
  3604. bunBack: {
  3605. height: math.unit(3, "feet"),
  3606. weight: math.unit(20, "kg"),
  3607. preyCapacity: math.unit(3, "people"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/fory/bun-back.svg",
  3611. extra: 1749/1564,
  3612. bottom: 246/1995
  3613. },
  3614. form: "bun",
  3615. default: true,
  3616. extraAttributes: {
  3617. "pawSize": {
  3618. name: "Paw Size",
  3619. power: 2,
  3620. type: "area",
  3621. base: math.unit(0.072, "m^2")
  3622. },
  3623. "pawLength": {
  3624. name: "Paw Length",
  3625. power: 1,
  3626. type: "length",
  3627. base: math.unit(0.45, "m")
  3628. }
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(5, "feet"),
  3636. form: "weaselbun"
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(50, "feet"),
  3641. default: true,
  3642. form: "weaselbun"
  3643. },
  3644. {
  3645. name: "Megamacro",
  3646. height: math.unit(10, "miles"),
  3647. form: "weaselbun"
  3648. },
  3649. {
  3650. name: "Gigamacro",
  3651. height: math.unit(5, "earths"),
  3652. form: "weaselbun"
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(3, "feet"),
  3657. default: true,
  3658. form: "bun"
  3659. },
  3660. {
  3661. name: "Fun-Size",
  3662. height: math.unit(12, "feet"),
  3663. form: "bun"
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(100, "feet"),
  3668. form: "bun"
  3669. },
  3670. {
  3671. name: "Planetary",
  3672. height: math.unit(3, "earths"),
  3673. form: "bun"
  3674. },
  3675. ],
  3676. {
  3677. "weaselbun": {
  3678. name: "Weaselbun",
  3679. default: true
  3680. },
  3681. "bun": {
  3682. name: "Bun",
  3683. },
  3684. }
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(7, "feet"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/kurrikage/front.svg",
  3695. extra: 1845/1733,
  3696. bottom: 119/1964
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(7, "feet"),
  3701. weight: math.unit(90, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/kurrikage/back.svg",
  3705. extra: 1790/1677,
  3706. bottom: 61/1851
  3707. }
  3708. },
  3709. dressed: {
  3710. height: math.unit(7, "feet"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Dressed",
  3713. image: {
  3714. source: "./media/characters/kurrikage/dressed.svg",
  3715. extra: 1845/1733,
  3716. bottom: 119/1964
  3717. }
  3718. },
  3719. foot: {
  3720. height: math.unit(1.5, "feet"),
  3721. name: "Foot",
  3722. image: {
  3723. source: "./media/characters/kurrikage/foot.svg"
  3724. }
  3725. },
  3726. staff: {
  3727. height: math.unit(6.7, "feet"),
  3728. name: "Staff",
  3729. image: {
  3730. source: "./media/characters/kurrikage/staff.svg"
  3731. }
  3732. },
  3733. peek: {
  3734. height: math.unit(1.05, "feet"),
  3735. name: "Peeking",
  3736. image: {
  3737. source: "./media/characters/kurrikage/peek.svg",
  3738. bottom: 0.08
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(12, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Big",
  3750. height: math.unit(20, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(500, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(20, "miles")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/shingo/front.svg",
  3771. extra: 1900/1825,
  3772. bottom: 82/1982
  3773. }
  3774. },
  3775. side: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Side",
  3779. image: {
  3780. source: "./media/characters/shingo/side.svg",
  3781. extra: 1930/1865,
  3782. bottom: 16/1946
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/shingo/back.svg",
  3791. extra: 1922/1852,
  3792. bottom: 16/1938
  3793. }
  3794. },
  3795. frontDressed: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(150, "lb"),
  3798. name: "Front-dressed",
  3799. image: {
  3800. source: "./media/characters/shingo/front-dressed.svg",
  3801. extra: 1900/1825,
  3802. bottom: 82/1982
  3803. }
  3804. },
  3805. paw: {
  3806. height: math.unit(1.29, "feet"),
  3807. name: "Paw",
  3808. image: {
  3809. source: "./media/characters/shingo/paw.svg"
  3810. }
  3811. },
  3812. hand: {
  3813. height: math.unit(1.07, "feet"),
  3814. name: "Hand",
  3815. image: {
  3816. source: "./media/characters/shingo/hand.svg"
  3817. }
  3818. },
  3819. frontAlt: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Front (Alt)",
  3823. image: {
  3824. source: "./media/characters/shingo/front-alt.svg",
  3825. extra: 3511 / 3338,
  3826. bottom: 0.005
  3827. }
  3828. },
  3829. frontAlt2: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Front (Alt 2)",
  3833. image: {
  3834. source: "./media/characters/shingo/front-alt-2.svg",
  3835. extra: 706/681,
  3836. bottom: 11/717
  3837. }
  3838. },
  3839. pawAlt: {
  3840. height: math.unit(1, "feet"),
  3841. name: "Paw (Alt)",
  3842. image: {
  3843. source: "./media/characters/shingo/paw-alt.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Micro",
  3850. height: math.unit(4, "inches")
  3851. },
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(6, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro",
  3859. height: math.unit(108, "feet")
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(1500, "feet")
  3864. },
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3869. {
  3870. side: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(75, "kg"),
  3873. name: "Side",
  3874. image: {
  3875. source: "./media/characters/aigey/side.svg"
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(200, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(100, "miles")
  3888. },
  3889. ]
  3890. )
  3891. )
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(13, "feet"),
  3897. weight: math.unit(1036.80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/natasha/front.svg",
  3901. extra: 1301/1210,
  3902. bottom: 39/1340
  3903. }
  3904. },
  3905. back: {
  3906. height: math.unit(13, "feet"),
  3907. weight: math.unit(1036.80, "kg"),
  3908. name: "Back",
  3909. image: {
  3910. source: "./media/characters/natasha/back.svg",
  3911. extra: 1342/1252,
  3912. bottom: 20/1362
  3913. }
  3914. },
  3915. head: {
  3916. height: math.unit(3.48, "feet"),
  3917. name: "Head",
  3918. image: {
  3919. source: "./media/characters/natasha/head.svg"
  3920. }
  3921. },
  3922. jaws: {
  3923. height: math.unit(3.52, "feet"),
  3924. name: "Jaws",
  3925. image: {
  3926. source: "./media/characters/natasha/jaws.svg"
  3927. }
  3928. },
  3929. paws: {
  3930. height: math.unit(2.7, "feet"),
  3931. name: "Paws",
  3932. image: {
  3933. source: "./media/characters/natasha/paws.svg"
  3934. }
  3935. },
  3936. collar: {
  3937. height: math.unit(0.89, "feet"),
  3938. name: "Collar",
  3939. image: {
  3940. source: "./media/characters/natasha/collar.svg"
  3941. }
  3942. },
  3943. gauge: {
  3944. height: math.unit(0.36, "feet"),
  3945. name: "Gauge",
  3946. image: {
  3947. source: "./media/characters/natasha/gauge.svg"
  3948. }
  3949. },
  3950. },
  3951. [
  3952. {
  3953. name: "Shortstack",
  3954. height: math.unit(3, "feet")
  3955. },
  3956. {
  3957. name: "Normal",
  3958. height: math.unit(13, "feet"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Macro",
  3963. height: math.unit(100, "feet")
  3964. },
  3965. {
  3966. name: "Macro+",
  3967. height: math.unit(260, "feet")
  3968. },
  3969. {
  3970. name: "Macro++",
  3971. height: math.unit(1, "mile")
  3972. },
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(75, "kg"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/malik/front.svg",
  3984. extra: 1750/1561,
  3985. bottom: 80/1830
  3986. },
  3987. extraAttributes: {
  3988. "toeSize": {
  3989. name: "Toe Size",
  3990. power: 2,
  3991. type: "area",
  3992. base: math.unit(0.0159, "m^2")
  3993. },
  3994. "pawSize": {
  3995. name: "Paw Size",
  3996. power: 2,
  3997. type: "area",
  3998. base: math.unit(0.09834, "m^2")
  3999. },
  4000. }
  4001. },
  4002. side: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(75, "kg"),
  4005. name: "Side",
  4006. image: {
  4007. source: "./media/characters/malik/side.svg",
  4008. extra: 1802/1685,
  4009. bottom: 42/1844
  4010. },
  4011. extraAttributes: {
  4012. "toeSize": {
  4013. name: "Toe Size",
  4014. power: 2,
  4015. type: "area",
  4016. base: math.unit(0.0159, "m^2")
  4017. },
  4018. "pawSize": {
  4019. name: "Paw Size",
  4020. power: 2,
  4021. type: "area",
  4022. base: math.unit(0.09834, "m^2")
  4023. },
  4024. }
  4025. },
  4026. back: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(75, "kg"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/malik/back.svg",
  4032. extra: 1803/1607,
  4033. bottom: 33/1836
  4034. },
  4035. extraAttributes: {
  4036. "toeSize": {
  4037. name: "Toe Size",
  4038. power: 2,
  4039. type: "area",
  4040. base: math.unit(0.0159, "m^2")
  4041. },
  4042. "pawSize": {
  4043. name: "Paw Size",
  4044. power: 2,
  4045. type: "area",
  4046. base: math.unit(0.09834, "m^2")
  4047. },
  4048. }
  4049. },
  4050. },
  4051. [
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(156, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Macro+",
  4059. height: math.unit(1188, "feet")
  4060. },
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(75, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/sefer/front.svg",
  4072. extra: 848 / 659,
  4073. bottom: 28.3 / 876.442
  4074. }
  4075. },
  4076. back: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(75, "kg"),
  4079. name: "Back",
  4080. image: {
  4081. source: "./media/characters/sefer/back.svg",
  4082. extra: 864 / 695,
  4083. bottom: 10 / 871
  4084. }
  4085. },
  4086. frontDressed: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Dressed",
  4090. image: {
  4091. source: "./media/characters/sefer/dressed.svg",
  4092. extra: 839 / 653,
  4093. bottom: 37.6 / 878
  4094. }
  4095. },
  4096. },
  4097. [
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(6, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Big",
  4105. height: math.unit(8, "meters")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4111. {
  4112. body: {
  4113. height: math.unit(2.2428, "meter"),
  4114. weight: math.unit(124.738, "kg"),
  4115. name: "Body",
  4116. image: {
  4117. extra: 1225 / 1050,
  4118. source: "./media/characters/north/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Micro",
  4125. height: math.unit(4, "inches")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(63, "meters")
  4130. },
  4131. {
  4132. name: "Megamacro",
  4133. height: math.unit(101, "miles"),
  4134. default: true
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4140. {
  4141. angled: {
  4142. height: math.unit(4, "meter"),
  4143. weight: math.unit(150, "kg"),
  4144. name: "Angled",
  4145. image: {
  4146. source: "./media/characters/talan/angled-sfw.svg",
  4147. bottom: 29 / 3734
  4148. }
  4149. },
  4150. angledNsfw: {
  4151. height: math.unit(4, "meter"),
  4152. weight: math.unit(150, "kg"),
  4153. name: "Angled (NSFW)",
  4154. image: {
  4155. source: "./media/characters/talan/angled-nsfw.svg",
  4156. bottom: 29 / 3734
  4157. }
  4158. },
  4159. frontNsfw: {
  4160. height: math.unit(4, "meter"),
  4161. weight: math.unit(150, "kg"),
  4162. name: "Front (NSFW)",
  4163. image: {
  4164. source: "./media/characters/talan/front-nsfw.svg",
  4165. bottom: 29 / 3734
  4166. }
  4167. },
  4168. sideNsfw: {
  4169. height: math.unit(4, "meter"),
  4170. weight: math.unit(150, "kg"),
  4171. name: "Side (NSFW)",
  4172. image: {
  4173. source: "./media/characters/talan/side-nsfw.svg",
  4174. bottom: 29 / 3734
  4175. }
  4176. },
  4177. back: {
  4178. height: math.unit(4, "meter"),
  4179. weight: math.unit(150, "kg"),
  4180. name: "Back",
  4181. image: {
  4182. source: "./media/characters/talan/back.svg"
  4183. }
  4184. },
  4185. dickBottom: {
  4186. height: math.unit(0.621, "meter"),
  4187. name: "Dick (Bottom)",
  4188. image: {
  4189. source: "./media/characters/talan/dick-bottom.svg"
  4190. }
  4191. },
  4192. dickTop: {
  4193. height: math.unit(0.621, "meter"),
  4194. name: "Dick (Top)",
  4195. image: {
  4196. source: "./media/characters/talan/dick-top.svg"
  4197. }
  4198. },
  4199. dickSide: {
  4200. height: math.unit(0.305, "meter"),
  4201. name: "Dick (Side)",
  4202. image: {
  4203. source: "./media/characters/talan/dick-side.svg"
  4204. }
  4205. },
  4206. dickFront: {
  4207. height: math.unit(0.305, "meter"),
  4208. name: "Dick (Front)",
  4209. image: {
  4210. source: "./media/characters/talan/dick-front.svg"
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(4, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(100, "meters")
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(2, "miles"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Gigamacro",
  4230. height: math.unit(5000, "miles")
  4231. },
  4232. {
  4233. name: "Teramacro",
  4234. height: math.unit(100, "parsecs")
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front.svg"
  4247. }
  4248. },
  4249. frontAlt: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt.svg"
  4255. }
  4256. },
  4257. frontAlt2: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(90, "kg"),
  4260. name: "Front (alt 2)",
  4261. image: {
  4262. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(9, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Large",
  4274. height: math.unit(25, "feet")
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(0.25, "miles")
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(10, "miles")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4288. {
  4289. side: {
  4290. height: math.unit(2, "meter"),
  4291. weight: math.unit(140, "kg"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/sosha/side.svg",
  4295. extra: 1170/1006,
  4296. bottom: 94/1264
  4297. }
  4298. },
  4299. maw: {
  4300. height: math.unit(2.87, "feet"),
  4301. name: "Maw",
  4302. image: {
  4303. source: "./media/characters/sosha/maw.svg",
  4304. extra: 966/865,
  4305. bottom: 0/966
  4306. }
  4307. },
  4308. cooch: {
  4309. height: math.unit(5.6, "feet"),
  4310. name: "Cooch",
  4311. image: {
  4312. source: "./media/characters/sosha/cooch.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet"),
  4320. default: true
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4326. {
  4327. side: {
  4328. height: math.unit(5 + 5 / 12, "feet"),
  4329. weight: math.unit(170, "kg"),
  4330. name: "Side",
  4331. image: {
  4332. source: "./media/characters/runnola/side.svg",
  4333. extra: 741 / 448,
  4334. bottom: 0.05
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Small",
  4341. height: math.unit(3, "feet")
  4342. },
  4343. {
  4344. name: "Normal",
  4345. height: math.unit(5 + 5 / 12, "feet"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Big",
  4350. height: math.unit(10, "feet")
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meter"),
  4359. weight: math.unit(50, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/kurribird/front.svg",
  4363. bottom: 0.015
  4364. }
  4365. },
  4366. frontAlt: {
  4367. height: math.unit(1.5, "meter"),
  4368. weight: math.unit(50, "kg"),
  4369. name: "Front (Alt)",
  4370. image: {
  4371. source: "./media/characters/kurribird/front-alt.svg",
  4372. extra: 1.45
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(7, "feet")
  4380. },
  4381. {
  4382. name: "Big",
  4383. height: math.unit(12, "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(1500, "feet")
  4389. },
  4390. {
  4391. name: "Megamacro",
  4392. height: math.unit(2, "miles")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(80, "kg"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/elbial/front.svg",
  4405. extra: 1643 / 1556,
  4406. bottom: 60.2 / 1696
  4407. }
  4408. },
  4409. side: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Side",
  4413. image: {
  4414. source: "./media/characters/elbial/side.svg",
  4415. extra: 1601/1528,
  4416. bottom: 97/1698
  4417. }
  4418. },
  4419. back: {
  4420. height: math.unit(2, "meter"),
  4421. weight: math.unit(80, "kg"),
  4422. name: "Back",
  4423. image: {
  4424. source: "./media/characters/elbial/back.svg",
  4425. extra: 1653/1569,
  4426. bottom: 20/1673
  4427. }
  4428. },
  4429. frontDressed: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(80, "kg"),
  4432. name: "Front (Dressed)",
  4433. image: {
  4434. source: "./media/characters/elbial/front-dressed.svg",
  4435. extra: 1638/1569,
  4436. bottom: 70/1708
  4437. }
  4438. },
  4439. genitals: {
  4440. height: math.unit(2 / 3.367, "meter"),
  4441. name: "Genitals",
  4442. image: {
  4443. source: "./media/characters/elbial/genitals.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Large",
  4450. height: math.unit(100, "feet")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(500, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(10, "miles")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(25000, "miles")
  4464. },
  4465. {
  4466. name: "Full-Size",
  4467. height: math.unit(8000000, "gigaparsecs")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2, "meter"),
  4476. weight: math.unit(60, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/noah/front.svg",
  4480. extra: 1383/1313,
  4481. bottom: 104/1487
  4482. }
  4483. },
  4484. hand: {
  4485. height: math.unit(0.6, "feet"),
  4486. name: "Hand",
  4487. image: {
  4488. source: "./media/characters/noah/hand.svg"
  4489. }
  4490. },
  4491. talons: {
  4492. height: math.unit(1.385, "feet"),
  4493. name: "Talons",
  4494. image: {
  4495. source: "./media/characters/noah/talons.svg"
  4496. }
  4497. },
  4498. beak: {
  4499. height: math.unit(0.43, "feet"),
  4500. name: "Beak",
  4501. image: {
  4502. source: "./media/characters/noah/beak.svg"
  4503. }
  4504. },
  4505. collar: {
  4506. height: math.unit(0.88, "feet"),
  4507. name: "Collar",
  4508. image: {
  4509. source: "./media/characters/noah/collar.svg"
  4510. }
  4511. },
  4512. eyeNarrow: {
  4513. height: math.unit(0.18, "feet"),
  4514. name: "Eye (Narrow)",
  4515. image: {
  4516. source: "./media/characters/noah/eye-narrow.svg"
  4517. }
  4518. },
  4519. eyeNormal: {
  4520. height: math.unit(0.18, "feet"),
  4521. name: "Eye (Normal)",
  4522. image: {
  4523. source: "./media/characters/noah/eye-normal.svg"
  4524. }
  4525. },
  4526. eyeWide: {
  4527. height: math.unit(0.18, "feet"),
  4528. name: "Eye (Wide)",
  4529. image: {
  4530. source: "./media/characters/noah/eye-wide.svg"
  4531. }
  4532. },
  4533. ear: {
  4534. height: math.unit(0.64, "feet"),
  4535. name: "Ear",
  4536. image: {
  4537. source: "./media/characters/noah/ear.svg"
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Large",
  4544. height: math.unit(50, "feet")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(750, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Megamacro",
  4553. height: math.unit(50, "miles")
  4554. },
  4555. {
  4556. name: "Gigamacro",
  4557. height: math.unit(100000, "miles")
  4558. },
  4559. {
  4560. name: "Full-Size",
  4561. height: math.unit(3000000000, "miles")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/natalya/front.svg"
  4574. }
  4575. },
  4576. back: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(80, "kg"),
  4579. name: "Back",
  4580. image: {
  4581. source: "./media/characters/natalya/back.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(150, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5, "miles")
  4594. },
  4595. {
  4596. name: "Full-Size",
  4597. height: math.unit(600, "kiloparsecs")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/erestrebah/front.svg",
  4610. extra: 1262/1162,
  4611. bottom: 96/1358
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(50, "kg"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/erestrebah/back.svg",
  4620. extra: 1257/1139,
  4621. bottom: 13/1270
  4622. }
  4623. },
  4624. wing: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(50, "kg"),
  4627. name: "Wing",
  4628. image: {
  4629. source: "./media/characters/erestrebah/wing.svg",
  4630. extra: 1262/1162,
  4631. bottom: 96/1358
  4632. }
  4633. },
  4634. mouth: {
  4635. height: math.unit(0.39, "feet"),
  4636. name: "Mouth",
  4637. image: {
  4638. source: "./media/characters/erestrebah/mouth.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(10, "feet")
  4646. },
  4647. {
  4648. name: "Large",
  4649. height: math.unit(50, "feet"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(300, "feet")
  4655. },
  4656. {
  4657. name: "Macro+",
  4658. height: math.unit(750, "feet")
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(3, "miles")
  4663. }
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4668. {
  4669. front: {
  4670. height: math.unit(2, "meter"),
  4671. weight: math.unit(80, "kg"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/jennifer/front.svg",
  4675. bottom: 0.11,
  4676. extra: 1.16
  4677. }
  4678. },
  4679. frontAlt: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(80, "kg"),
  4682. name: "Front (Alt)",
  4683. image: {
  4684. source: "./media/characters/jennifer/front-alt.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Canon Height",
  4691. height: math.unit(120, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Macro+",
  4696. height: math.unit(300, "feet")
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(20000, "feet")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(50, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/kalista/front.svg",
  4713. extra: 1314/1145,
  4714. bottom: 101/1415
  4715. }
  4716. },
  4717. back: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(50, "kg"),
  4720. name: "Back",
  4721. image: {
  4722. source: "./media/characters/kalista/back.svg",
  4723. extra: 1366 / 1156,
  4724. bottom: 33.9 / 1362.78
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Uncomfortably Small",
  4731. height: math.unit(10, "feet")
  4732. },
  4733. {
  4734. name: "Small",
  4735. height: math.unit(30, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(100, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Macro+",
  4744. height: math.unit(2000, "feet")
  4745. },
  4746. {
  4747. name: "True Form",
  4748. height: math.unit(8924, "miles")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/ggv/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(120, "kg"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/ggv/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Extremely Puny",
  4775. height: math.unit(9 + 5 / 12, "feet")
  4776. },
  4777. {
  4778. name: "Horribly Small",
  4779. height: math.unit(47.7, "miles"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Reasonably Sized",
  4784. height: math.unit(25000, "parsecs")
  4785. },
  4786. {
  4787. name: "Slightly Uncompressed",
  4788. height: math.unit(7.77e31, "parsecs")
  4789. },
  4790. {
  4791. name: "Omniversal",
  4792. height: math.unit(1e300, "meters")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/napalm/front.svg"
  4805. }
  4806. },
  4807. back: {
  4808. height: math.unit(2, "meter"),
  4809. weight: math.unit(75, "lb"),
  4810. name: "Back",
  4811. image: {
  4812. source: "./media/characters/napalm/back.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Standard",
  4819. height: math.unit(55, "feet"),
  4820. default: true
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. weight: math.unit(325, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/asana/front.svg",
  4833. extra: 1133 / 1060,
  4834. bottom: 15.2 / 1148.6
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(7 + 5 / 6, "feet"),
  4839. weight: math.unit(325, "lb"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/asana/back.svg",
  4843. extra: 1114 / 1043,
  4844. bottom: 5 / 1120
  4845. }
  4846. },
  4847. dressedDark: {
  4848. height: math.unit(7 + 5 / 6, "feet"),
  4849. weight: math.unit(325, "lb"),
  4850. name: "Dressed (Dark)",
  4851. image: {
  4852. source: "./media/characters/asana/dressed-dark.svg",
  4853. extra: 1133 / 1060,
  4854. bottom: 15.2 / 1148.6
  4855. }
  4856. },
  4857. dressedLight: {
  4858. height: math.unit(7 + 5 / 6, "feet"),
  4859. weight: math.unit(325, "lb"),
  4860. name: "Dressed (Light)",
  4861. image: {
  4862. source: "./media/characters/asana/dressed-light.svg",
  4863. extra: 1133 / 1060,
  4864. bottom: 15.2 / 1148.6
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Standard",
  4871. height: math.unit(7 + 5 / 6, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Large",
  4876. height: math.unit(10, "meters")
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(2500, "meters")
  4881. },
  4882. {
  4883. name: "Megamacro",
  4884. height: math.unit(5e6, "meters")
  4885. },
  4886. {
  4887. name: "Examacro",
  4888. height: math.unit(5e12, "lightyears")
  4889. },
  4890. {
  4891. name: "Max Size",
  4892. height: math.unit(1e31, "lightyears")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(2, "meter"),
  4901. weight: math.unit(60, "kg"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/ebony/front.svg",
  4905. bottom: 0.03,
  4906. extra: 1045 / 810 + 0.03
  4907. }
  4908. },
  4909. side: {
  4910. height: math.unit(2, "meter"),
  4911. weight: math.unit(60, "kg"),
  4912. name: "Side",
  4913. image: {
  4914. source: "./media/characters/ebony/side.svg",
  4915. bottom: 0.03,
  4916. extra: 1045 / 810 + 0.03
  4917. }
  4918. },
  4919. back: {
  4920. height: math.unit(2, "meter"),
  4921. weight: math.unit(60, "kg"),
  4922. name: "Back",
  4923. image: {
  4924. source: "./media/characters/ebony/back.svg",
  4925. bottom: 0.01,
  4926. extra: 1045 / 810 + 0.01
  4927. }
  4928. },
  4929. },
  4930. [
  4931. // TODO check why I did this lol
  4932. {
  4933. name: "Standard",
  4934. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(200, "feet")
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(13000, "km")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(175, "lb"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/mountain/front.svg",
  4956. extra: 972 / 955,
  4957. bottom: 64 / 1036.6
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(175, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/mountain/back.svg",
  4966. extra: 970 / 950,
  4967. bottom: 28.25 / 999
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Large",
  4974. height: math.unit(20, "meters")
  4975. },
  4976. {
  4977. name: "Macro",
  4978. height: math.unit(300, "meters")
  4979. },
  4980. {
  4981. name: "Gigamacro",
  4982. height: math.unit(10000, "km"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Examacro",
  4987. height: math.unit(10e9, "lightyears")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(500, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/rick/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(8, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(5, "km")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/ona/front.svg"
  5024. }
  5025. },
  5026. frontAlt: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Front (Alt)",
  5030. image: {
  5031. source: "./media/characters/ona/front-alt.svg"
  5032. }
  5033. },
  5034. back: {
  5035. height: math.unit(8, "feet"),
  5036. weight: math.unit(120, "lb"),
  5037. name: "Back",
  5038. image: {
  5039. source: "./media/characters/ona/back.svg"
  5040. }
  5041. },
  5042. foot: {
  5043. height: math.unit(1.1, "feet"),
  5044. name: "Foot",
  5045. image: {
  5046. source: "./media/characters/ona/foot.svg"
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(70, "km"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Gigamacro",
  5058. height: math.unit(681818, "miles")
  5059. },
  5060. {
  5061. name: "Examacro",
  5062. height: math.unit(3800000, "lightyears")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(12, "feet"),
  5071. weight: math.unit(3000, "lb"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/mech/front.svg",
  5075. extra: 2900 / 2770,
  5076. bottom: 110 / 3010
  5077. }
  5078. },
  5079. back: {
  5080. height: math.unit(12, "feet"),
  5081. weight: math.unit(3000, "lb"),
  5082. name: "Back",
  5083. image: {
  5084. source: "./media/characters/mech/back.svg",
  5085. extra: 3011 / 2890,
  5086. bottom: 94 / 3105
  5087. }
  5088. },
  5089. maw: {
  5090. height: math.unit(3.07, "feet"),
  5091. name: "Maw",
  5092. image: {
  5093. source: "./media/characters/mech/maw.svg"
  5094. }
  5095. },
  5096. head: {
  5097. height: math.unit(3.07, "feet"),
  5098. name: "Head",
  5099. image: {
  5100. source: "./media/characters/mech/head.svg"
  5101. }
  5102. },
  5103. dick: {
  5104. height: math.unit(1.43, "feet"),
  5105. name: "Dick",
  5106. image: {
  5107. source: "./media/characters/mech/dick.svg"
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(12, "feet")
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(300, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Macro+",
  5123. height: math.unit(1500, "feet")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(1.3, "meter"),
  5132. weight: math.unit(30, "kg"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/gregory/front.svg",
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(1.3, "meter"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(20, "meter")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(2.8, "meter"),
  5156. weight: math.unit(200, "kg"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/elory/front.svg",
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(2.8, "meter"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro",
  5171. height: math.unit(38, "meter")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(470, "feet"),
  5180. weight: math.unit(924, "tons"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/angelpatamon/front.svg",
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(470, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Deity Size I",
  5195. height: math.unit(28651.2, "km")
  5196. },
  5197. {
  5198. name: "Deity Size II",
  5199. height: math.unit(171907.2, "km")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(7.2, "meter"),
  5208. weight: math.unit(8.2, "tons"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/cryae/side.svg",
  5212. extra: 3500 / 1500
  5213. }
  5214. }
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(7.2, "meter"),
  5220. default: true
  5221. }
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(175, "lb"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/xera/front.svg",
  5233. extra: 2377 / 1972,
  5234. bottom: 75.5 / 2452
  5235. }
  5236. },
  5237. side: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(175, "lb"),
  5240. name: "Side",
  5241. image: {
  5242. source: "./media/characters/xera/side.svg",
  5243. extra: 2345 / 2019,
  5244. bottom: 39.7 / 2384
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(175, "lb"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/xera/back.svg",
  5253. extra: 2095 / 1984,
  5254. bottom: 67 / 2166
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Small",
  5261. height: math.unit(10, "feet")
  5262. },
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(500, "meters"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro+",
  5270. height: math.unit(10, "km")
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(25000, "km")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(3e6, "km")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(175, "lb"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/nebula/front.svg",
  5291. extra: 2566 / 2362,
  5292. bottom: 81 / 2644
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(4.5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1500, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(150, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(27000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(225, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/abysgar/front.svg",
  5325. extra: 1739/1614,
  5326. bottom: 71/1810
  5327. }
  5328. },
  5329. frontNsfw: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(225, "lb"),
  5332. name: "Front (NSFW)",
  5333. image: {
  5334. source: "./media/characters/abysgar/front-nsfw.svg",
  5335. extra: 1739/1614,
  5336. bottom: 71/1810
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(4.6, "feet"),
  5341. weight: math.unit(225, "lb"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/abysgar/back.svg",
  5345. extra: 1384/1327,
  5346. bottom: 0/1384
  5347. }
  5348. },
  5349. head: {
  5350. height: math.unit(1.25, "feet"),
  5351. name: "Head",
  5352. image: {
  5353. source: "./media/characters/abysgar/head.svg",
  5354. extra: 669/569,
  5355. bottom: 0/669
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Small",
  5362. height: math.unit(4.5, "meters")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1250, "meters"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Megamacro",
  5371. height: math.unit(125, "km")
  5372. },
  5373. {
  5374. name: "Gigamacro",
  5375. height: math.unit(26000, "km")
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(180, "lb"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/yakuz/front.svg"
  5388. }
  5389. }
  5390. },
  5391. [
  5392. {
  5393. name: "Small",
  5394. height: math.unit(5, "meters")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(1500, "meters"),
  5399. default: true
  5400. },
  5401. {
  5402. name: "Megamacro",
  5403. height: math.unit(200, "km")
  5404. },
  5405. {
  5406. name: "Gigamacro",
  5407. height: math.unit(100000, "km")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(175, "lb"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/mirova/front.svg",
  5420. extra: 3334 / 3071,
  5421. bottom: 42 / 3375.6
  5422. }
  5423. }
  5424. },
  5425. [
  5426. {
  5427. name: "Small",
  5428. height: math.unit(5, "meters")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(900, "meters"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Megamacro",
  5437. height: math.unit(135, "km")
  5438. },
  5439. {
  5440. name: "Gigamacro",
  5441. height: math.unit(20000, "km")
  5442. }
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5447. {
  5448. side: {
  5449. height: math.unit(28.35, "feet"),
  5450. weight: math.unit(99.75, "tons"),
  5451. name: "Side",
  5452. image: {
  5453. source: "./media/characters/asana-mech/side.svg",
  5454. extra: 923 / 699,
  5455. bottom: 50 / 975
  5456. }
  5457. },
  5458. chaingun: {
  5459. height: math.unit(7, "feet"),
  5460. weight: math.unit(2400, "lb"),
  5461. name: "Chaingun",
  5462. image: {
  5463. source: "./media/characters/asana-mech/chaingun.svg"
  5464. }
  5465. },
  5466. laser: {
  5467. height: math.unit(7.12, "feet"),
  5468. weight: math.unit(2000, "lb"),
  5469. name: "Laser",
  5470. image: {
  5471. source: "./media/characters/asana-mech/laser.svg"
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(28.35, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(2500, "feet")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(25, "miles")
  5488. },
  5489. {
  5490. name: "Examacro",
  5491. height: math.unit(6e8, "lightyears")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(5, "meters"),
  5500. weight: math.unit(1000, "kg"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/asche/front.svg",
  5504. extra: 1258 / 1190,
  5505. bottom: 47 / 1305
  5506. }
  5507. },
  5508. frontUnderwear: {
  5509. height: math.unit(5, "meters"),
  5510. weight: math.unit(1000, "kg"),
  5511. name: "Front (Underwear)",
  5512. image: {
  5513. source: "./media/characters/asche/front-underwear.svg",
  5514. extra: 1258 / 1190,
  5515. bottom: 47 / 1305
  5516. }
  5517. },
  5518. frontDressed: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Front (Dressed)",
  5522. image: {
  5523. source: "./media/characters/asche/front-dressed.svg",
  5524. extra: 1258 / 1190,
  5525. bottom: 47 / 1305
  5526. }
  5527. },
  5528. frontArmor: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Front (Armored)",
  5532. image: {
  5533. source: "./media/characters/asche/front-armored.svg",
  5534. extra: 1374 / 1308,
  5535. bottom: 23 / 1397
  5536. }
  5537. },
  5538. mp724: {
  5539. height: math.unit(0.96, "meters"),
  5540. weight: math.unit(38, "kg"),
  5541. name: "H&K MP724",
  5542. image: {
  5543. source: "./media/characters/asche/h&k-mp724.svg"
  5544. }
  5545. },
  5546. side: {
  5547. height: math.unit(5, "meters"),
  5548. weight: math.unit(1000, "kg"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/asche/side.svg",
  5552. extra: 1717 / 1609,
  5553. bottom: 0.005
  5554. }
  5555. },
  5556. back: {
  5557. height: math.unit(5, "meters"),
  5558. weight: math.unit(1000, "kg"),
  5559. name: "Back",
  5560. image: {
  5561. source: "./media/characters/asche/back.svg",
  5562. extra: 1570 / 1501
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "DEFCON 5",
  5569. height: math.unit(5, "meters")
  5570. },
  5571. {
  5572. name: "DEFCON 4",
  5573. height: math.unit(500, "meters"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "DEFCON 3",
  5578. height: math.unit(5, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 2",
  5582. height: math.unit(500, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 1",
  5586. height: math.unit(500000, "km")
  5587. },
  5588. {
  5589. name: "DEFCON 0",
  5590. height: math.unit(3, "gigaparsecs")
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(7, "feet"),
  5599. weight: math.unit(92.7, "kg"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/gale/front.svg",
  5603. extra: 977/919,
  5604. bottom: 105/1082
  5605. }
  5606. },
  5607. side: {
  5608. height: math.unit(6.7, "feet"),
  5609. weight: math.unit(92.7, "kg"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/gale/side.svg",
  5613. extra: 978/922,
  5614. bottom: 140/1118
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(7, "feet"),
  5619. weight: math.unit(92.7, "kg"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/gale/back.svg",
  5623. extra: 966/920,
  5624. bottom: 61/1027
  5625. }
  5626. },
  5627. maw: {
  5628. height: math.unit(2.23, "feet"),
  5629. name: "Maw",
  5630. image: {
  5631. source: "./media/characters/gale/maw.svg"
  5632. }
  5633. },
  5634. foot: {
  5635. height: math.unit(2.1, "feet"),
  5636. name: "Foot",
  5637. image: {
  5638. source: "./media/characters/gale/foot.svg"
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(7, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(150, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Macro+",
  5654. height: math.unit(300, "feet")
  5655. },
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(5 + 10/12, "feet"),
  5663. weight: math.unit(67, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/draylen/front.svg",
  5667. extra: 832/777,
  5668. bottom: 85/917
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(5 + 10/12, "feet")
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(150, "feet"),
  5680. default: true
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/chez/front.svg"
  5693. }
  5694. },
  5695. side: {
  5696. height: math.unit(7 + 9 / 12, "feet"),
  5697. weight: math.unit(379, "lbs"),
  5698. name: "Side",
  5699. image: {
  5700. source: "./media/characters/chez/side.svg"
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(7 + 9 / 12, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "God King",
  5712. height: math.unit(9750000, "meters")
  5713. }
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(275, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/kaylum/front.svg",
  5725. bottom: 0.01,
  5726. extra: 1166 / 1031
  5727. }
  5728. },
  5729. frontWingless: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(275, "lbs"),
  5732. name: "Front (Wingless)",
  5733. image: {
  5734. source: "./media/characters/kaylum/front-wingless.svg",
  5735. bottom: 0.01,
  5736. extra: 1117 / 1031
  5737. }
  5738. }
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(3.05, "meters")
  5744. },
  5745. {
  5746. name: "Master",
  5747. height: math.unit(5.5, "meters")
  5748. },
  5749. {
  5750. name: "Rampage",
  5751. height: math.unit(19, "meters")
  5752. },
  5753. {
  5754. name: "Macro Lite",
  5755. height: math.unit(37, "meters")
  5756. },
  5757. {
  5758. name: "Hyper Predator",
  5759. height: math.unit(61, "meters")
  5760. },
  5761. {
  5762. name: "Macro",
  5763. height: math.unit(138, "meters"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(5 + 5 / 12, "feet"),
  5773. weight: math.unit(120, "lbs"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/geta/front.svg",
  5777. extra: 1003/933,
  5778. bottom: 21/1024
  5779. }
  5780. },
  5781. paw: {
  5782. height: math.unit(0.35, "feet"),
  5783. name: "Paw",
  5784. image: {
  5785. source: "./media/characters/geta/paw.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(3, "inches"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(5 + 5 / 12, "feet")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(300, "lbs"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/tyrnn/front.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Main Height",
  5816. height: math.unit(355, "feet"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Fave. Height",
  5821. height: math.unit(2400, "feet")
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(300, "lbs"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/appledectomy/front.svg"
  5834. }
  5835. }
  5836. },
  5837. [
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(2500, "feet")
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(50, "miles"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Gigamacro",
  5849. height: math.unit(5000, "miles")
  5850. },
  5851. {
  5852. name: "Teramacro",
  5853. height: math.unit(250000, "miles")
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/vulpes/front.svg",
  5866. extra: 573 / 543,
  5867. bottom: 0.033
  5868. }
  5869. },
  5870. side: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(200, "lbs"),
  5873. name: "Side",
  5874. image: {
  5875. source: "./media/characters/vulpes/side.svg",
  5876. extra: 577 / 549,
  5877. bottom: 11 / 588
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/vulpes/back.svg",
  5886. extra: 573 / 549,
  5887. bottom: 20 / 593
  5888. }
  5889. },
  5890. feet: {
  5891. height: math.unit(1.276, "feet"),
  5892. name: "Feet",
  5893. image: {
  5894. source: "./media/characters/vulpes/feet.svg"
  5895. }
  5896. },
  5897. maw: {
  5898. height: math.unit(1.18, "feet"),
  5899. name: "Maw",
  5900. image: {
  5901. source: "./media/characters/vulpes/maw.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Micro",
  5908. height: math.unit(2, "inches")
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(6.3, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(850, "feet")
  5917. },
  5918. {
  5919. name: "Megamacro",
  5920. height: math.unit(7500, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Gigamacro",
  5925. height: math.unit(570000, "miles")
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/front.svg"
  5938. }
  5939. },
  5940. side: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Side",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/side.svg"
  5946. }
  5947. },
  5948. back: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(210, "lbs"),
  5951. name: "Back",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/back.svg"
  5954. }
  5955. },
  5956. feral: {
  5957. height: math.unit(9, "feet"),
  5958. weight: math.unit(700, "lbs"),
  5959. name: "Feral",
  5960. image: {
  5961. source: "./media/characters/rain-fallen/feral.svg"
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Meddling with Mortals",
  5968. height: math.unit(8 + 8/12, "feet")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(5, "meter")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(150, "meter"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(278e6, "meter")
  5982. },
  5983. {
  5984. name: "Gigamacro",
  5985. height: math.unit(2e9, "meter")
  5986. },
  5987. {
  5988. name: "Teramacro",
  5989. height: math.unit(8e12, "meter")
  5990. },
  5991. {
  5992. name: "Devourer",
  5993. height: math.unit(14, "zettameters")
  5994. },
  5995. {
  5996. name: "Scarlet King",
  5997. height: math.unit(18, "yottameters")
  5998. },
  5999. {
  6000. name: "Void",
  6001. height: math.unit(1e88, "yottameters")
  6002. }
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6007. {
  6008. standing: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(180, "lbs"),
  6011. name: "Standing",
  6012. image: {
  6013. source: "./media/characters/zaakira/standing.svg",
  6014. extra: 1599/1504,
  6015. bottom: 39/1638
  6016. }
  6017. },
  6018. laying: {
  6019. height: math.unit(3.3, "feet"),
  6020. weight: math.unit(180, "lbs"),
  6021. name: "Laying",
  6022. image: {
  6023. source: "./media/characters/zaakira/laying.svg"
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(12, "feet")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(279, "feet"),
  6035. default: true
  6036. }
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. femSfw: {
  6043. height: math.unit(8, "feet"),
  6044. weight: math.unit(350, "lb"),
  6045. name: "Fem",
  6046. image: {
  6047. source: "./media/characters/sigvald/fem-sfw.svg",
  6048. extra: 182 / 164,
  6049. bottom: 8.7 / 190.5
  6050. }
  6051. },
  6052. femNsfw: {
  6053. height: math.unit(8, "feet"),
  6054. weight: math.unit(350, "lb"),
  6055. name: "Fem (NSFW)",
  6056. image: {
  6057. source: "./media/characters/sigvald/fem-nsfw.svg",
  6058. extra: 182 / 164,
  6059. bottom: 8.7 / 190.5
  6060. }
  6061. },
  6062. maleNsfw: {
  6063. height: math.unit(8, "feet"),
  6064. weight: math.unit(350, "lb"),
  6065. name: "Male (NSFW)",
  6066. image: {
  6067. source: "./media/characters/sigvald/male-nsfw.svg",
  6068. extra: 182 / 164,
  6069. bottom: 8.7 / 190.5
  6070. }
  6071. },
  6072. hermNsfw: {
  6073. height: math.unit(8, "feet"),
  6074. weight: math.unit(350, "lb"),
  6075. name: "Herm (NSFW)",
  6076. image: {
  6077. source: "./media/characters/sigvald/herm-nsfw.svg",
  6078. extra: 182 / 164,
  6079. bottom: 8.7 / 190.5
  6080. }
  6081. },
  6082. dick: {
  6083. height: math.unit(2.36, "feet"),
  6084. name: "Dick",
  6085. image: {
  6086. source: "./media/characters/sigvald/dick.svg"
  6087. }
  6088. },
  6089. eye: {
  6090. height: math.unit(0.31, "feet"),
  6091. name: "Eye",
  6092. image: {
  6093. source: "./media/characters/sigvald/eye.svg"
  6094. }
  6095. },
  6096. mouth: {
  6097. height: math.unit(0.92, "feet"),
  6098. name: "Mouth",
  6099. image: {
  6100. source: "./media/characters/sigvald/mouth.svg"
  6101. }
  6102. },
  6103. paws: {
  6104. height: math.unit(2.2, "feet"),
  6105. name: "Paws",
  6106. image: {
  6107. source: "./media/characters/sigvald/paws.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(8, "feet")
  6115. },
  6116. {
  6117. name: "Large",
  6118. height: math.unit(12, "feet")
  6119. },
  6120. {
  6121. name: "Larger",
  6122. height: math.unit(20, "feet")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(150, "feet")
  6127. },
  6128. {
  6129. name: "Macro+",
  6130. height: math.unit(200, "feet"),
  6131. default: true
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6137. {
  6138. anthro_front: {
  6139. height: math.unit(5 + 11/12, "feet"),
  6140. weight: math.unit(250, "lb"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/scott/anthro-front.svg",
  6144. extra: 851/781,
  6145. bottom: 54/905
  6146. },
  6147. form: "anthro",
  6148. default: true
  6149. },
  6150. anthro_side: {
  6151. height: math.unit(5.1, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-side.svg"
  6156. },
  6157. form: "anthro",
  6158. },
  6159. anthro_dick: {
  6160. height: math.unit(1.33, "feet"),
  6161. name: "Dick",
  6162. image: {
  6163. source: "./media/characters/scott/anthro-dick.svg"
  6164. },
  6165. form: "anthro",
  6166. },
  6167. side: {
  6168. height: math.unit(12, "feet"),
  6169. weight: math.unit(2000, "kg"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/scott/side.svg",
  6173. extra: 754 / 724,
  6174. bottom: 0.069
  6175. },
  6176. form: "taur",
  6177. default: true
  6178. },
  6179. upright: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Upright",
  6183. image: {
  6184. source: "./media/characters/scott/upright.svg",
  6185. extra: 3881 / 3722,
  6186. bottom: 0.05
  6187. },
  6188. form: "taur",
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(5 + 11/12, "feet"),
  6195. default: true,
  6196. form: "anthro"
  6197. },
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(12, "feet"),
  6201. default: true,
  6202. form: "taur"
  6203. },
  6204. ],
  6205. {
  6206. "anthro": {
  6207. name: "Anthro",
  6208. default: true
  6209. },
  6210. "taur": {
  6211. name: "Taur",
  6212. },
  6213. }
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6217. {
  6218. side: {
  6219. height: math.unit(8, "meters"),
  6220. weight: math.unit(84755, "lbs"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/tobias/side.svg",
  6224. extra: 1474 / 1096,
  6225. bottom: 38.9 / 1513.1235
  6226. }
  6227. },
  6228. maw: {
  6229. height: math.unit(2.3, "meters"),
  6230. name: "Maw",
  6231. image: {
  6232. source: "./media/characters/tobias/maw.svg"
  6233. }
  6234. },
  6235. burp: {
  6236. height: math.unit(2.85, "meters"),
  6237. name: "Burp",
  6238. image: {
  6239. source: "./media/characters/tobias/burp.svg"
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(8, "meters"),
  6247. default: true
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6253. {
  6254. front: {
  6255. height: math.unit(5.5, "feet"),
  6256. weight: math.unit(400, "lbs"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/kieran/front.svg",
  6260. extra: 2694 / 2364,
  6261. bottom: 217 / 2908
  6262. }
  6263. },
  6264. side: {
  6265. height: math.unit(5.5, "feet"),
  6266. weight: math.unit(400, "lbs"),
  6267. name: "Side",
  6268. image: {
  6269. source: "./media/characters/kieran/side.svg",
  6270. extra: 875 / 777,
  6271. bottom: 84.6 / 959
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5.5, "feet"),
  6279. default: true
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6285. {
  6286. side: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(70, "kg"),
  6289. name: "Side",
  6290. image: {
  6291. source: "./media/characters/sanya/side.svg",
  6292. bottom: 0.02,
  6293. extra: 1.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Small",
  6300. height: math.unit(2, "meters")
  6301. },
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(3, "meters")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(16, "meters"),
  6309. default: true
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(2, "meters"),
  6318. weight: math.unit(120, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/miranda/front.svg",
  6322. extra: 195 / 185,
  6323. bottom: 10.9 / 206.5
  6324. }
  6325. },
  6326. back: {
  6327. height: math.unit(2, "meters"),
  6328. weight: math.unit(120, "kg"),
  6329. name: "Back",
  6330. image: {
  6331. source: "./media/characters/miranda/back.svg",
  6332. extra: 201 / 193,
  6333. bottom: 2.3 / 203.7
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(10, "feet"),
  6341. default: true
  6342. }
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "James", species: ["deer"], tags: ["anthro"] },
  6347. {
  6348. side: {
  6349. height: math.unit(2, "meters"),
  6350. weight: math.unit(100, "kg"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/james/front.svg",
  6354. extra: 10 / 8.5
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(8.5, "feet"),
  6362. default: true
  6363. }
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6368. {
  6369. side: {
  6370. height: math.unit(9.5, "feet"),
  6371. weight: math.unit(2500, "lbs"),
  6372. name: "Side",
  6373. image: {
  6374. source: "./media/characters/heather/side.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(9.5, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6388. {
  6389. side: {
  6390. height: math.unit(6.5, "feet"),
  6391. weight: math.unit(400, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/lukas/side.svg",
  6395. extra: 7.25 / 6.5
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(6.5, "feet"),
  6403. default: true
  6404. }
  6405. ]
  6406. ))
  6407. characterMakers.push(() => makeCharacter(
  6408. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6409. {
  6410. side: {
  6411. height: math.unit(5, "feet"),
  6412. weight: math.unit(3000, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/louise/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5, "feet"),
  6423. default: true
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6429. {
  6430. side: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(150, "lbs"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/ramona/side.svg",
  6436. extra: 871/854,
  6437. bottom: 41/912
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6 + 4/12, "feet")
  6445. },
  6446. {
  6447. name: "Minimacro",
  6448. height: math.unit(5.3, "meters"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(20, "stories")
  6454. },
  6455. {
  6456. name: "Macro+",
  6457. height: math.unit(50, "stories")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6463. {
  6464. standing: {
  6465. height: math.unit(5.75, "feet"),
  6466. weight: math.unit(160, "lbs"),
  6467. name: "Standing",
  6468. image: {
  6469. source: "./media/characters/deerpuff/standing.svg",
  6470. extra: 682 / 624
  6471. }
  6472. },
  6473. sitting: {
  6474. height: math.unit(5.75 / 1.79, "feet"),
  6475. weight: math.unit(160, "lbs"),
  6476. name: "Sitting",
  6477. image: {
  6478. source: "./media/characters/deerpuff/sitting.svg",
  6479. bottom: 44 / 400,
  6480. extra: 1
  6481. }
  6482. },
  6483. taurLaying: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(400, "lbs"),
  6486. name: "Taur (Laying)",
  6487. image: {
  6488. source: "./media/characters/deerpuff/taur-laying.svg"
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Puffball",
  6495. height: math.unit(6, "inches")
  6496. },
  6497. {
  6498. name: "Normalpuff",
  6499. height: math.unit(5.75, "feet")
  6500. },
  6501. {
  6502. name: "Macropuff",
  6503. height: math.unit(1500, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Megapuff",
  6508. height: math.unit(500, "miles")
  6509. },
  6510. {
  6511. name: "Gigapuff",
  6512. height: math.unit(250000, "miles")
  6513. },
  6514. {
  6515. name: "Omegapuff",
  6516. height: math.unit(1000, "lightyears")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6522. {
  6523. stomping: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(170, "lbs"),
  6526. name: "Stomping",
  6527. image: {
  6528. source: "./media/characters/vivian/stomping.svg"
  6529. }
  6530. },
  6531. sitting: {
  6532. height: math.unit(6 / 1.75, "feet"),
  6533. weight: math.unit(170, "lbs"),
  6534. name: "Sitting",
  6535. image: {
  6536. source: "./media/characters/vivian/sitting.svg",
  6537. bottom: 1 / 6.4,
  6538. extra: 1,
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(7, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(10, "stories")
  6551. },
  6552. {
  6553. name: "Macro+",
  6554. height: math.unit(30, "stories")
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(10, "miles")
  6559. },
  6560. {
  6561. name: "Megamacro+",
  6562. height: math.unit(2750000, "meters")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(160, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/prince/front.svg",
  6575. extra: 1938/1682,
  6576. bottom: 45/1983
  6577. }
  6578. },
  6579. back: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(160, "lbs"),
  6582. name: "Back",
  6583. image: {
  6584. source: "./media/characters/prince/back.svg",
  6585. extra: 1955/1726,
  6586. bottom: 6/1961
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(7.75, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Not cute",
  6598. height: math.unit(17, "feet")
  6599. },
  6600. {
  6601. name: "I said NOT",
  6602. height: math.unit(91, "feet")
  6603. },
  6604. {
  6605. name: "Please stop",
  6606. height: math.unit(560, "feet")
  6607. },
  6608. {
  6609. name: "What have you done",
  6610. height: math.unit(2200, "feet")
  6611. },
  6612. {
  6613. name: "Deer God",
  6614. height: math.unit(3.6, "miles")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6620. {
  6621. standing: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(300, "lbs"),
  6624. name: "Standing",
  6625. image: {
  6626. source: "./media/characters/psymon/standing.svg",
  6627. extra: 1888 / 1810,
  6628. bottom: 0.05
  6629. }
  6630. },
  6631. slithering: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(300, "lbs"),
  6634. name: "Slithering",
  6635. image: {
  6636. source: "./media/characters/psymon/slithering.svg",
  6637. extra: 1330 / 1224
  6638. }
  6639. },
  6640. slitheringAlt: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(300, "lbs"),
  6643. name: "Slithering (Alt)",
  6644. image: {
  6645. source: "./media/characters/psymon/slithering-alt.svg",
  6646. extra: 1330 / 1224
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(11.25, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Large",
  6658. height: math.unit(27, "feet")
  6659. },
  6660. {
  6661. name: "Giant",
  6662. height: math.unit(87, "feet")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(365, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(3, "miles")
  6671. },
  6672. {
  6673. name: "World Serpent",
  6674. height: math.unit(8000, "miles")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/daimos/front.svg",
  6687. extra: 4160 / 3897,
  6688. bottom: 0.021
  6689. }
  6690. }
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(8, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Big Dog",
  6700. height: math.unit(22, "feet")
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(127, "feet")
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(3600, "feet")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6714. {
  6715. side: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(180, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/blake/side.svg",
  6721. extra: 1212 / 1120,
  6722. bottom: 0.05
  6723. }
  6724. },
  6725. crouched: {
  6726. height: math.unit(6 * 0.57, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Crouched",
  6729. image: {
  6730. source: "./media/characters/blake/crouched.svg",
  6731. extra: 840 / 587,
  6732. bottom: 0.04
  6733. }
  6734. },
  6735. bent: {
  6736. height: math.unit(6 * 0.75, "feet"),
  6737. weight: math.unit(180, "lbs"),
  6738. name: "Bent",
  6739. image: {
  6740. source: "./media/characters/blake/bent.svg",
  6741. extra: 592 / 544,
  6742. bottom: 0.035
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(8 + 1 / 6, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Big Backside",
  6754. height: math.unit(37, "feet")
  6755. },
  6756. {
  6757. name: "Subway Shredder",
  6758. height: math.unit(72, "feet")
  6759. },
  6760. {
  6761. name: "City Carver",
  6762. height: math.unit(1675, "feet")
  6763. },
  6764. {
  6765. name: "Tectonic Tweaker",
  6766. height: math.unit(2300, "miles")
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(180, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/guisetto/front.svg",
  6779. extra: 856 / 817,
  6780. bottom: 0.06
  6781. }
  6782. },
  6783. airborne: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Airborne",
  6787. image: {
  6788. source: "./media/characters/guisetto/airborne.svg",
  6789. extra: 584 / 525
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(10 + 11 / 12, "feet"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Large",
  6801. height: math.unit(35, "feet")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(475, "feet")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(180, "lbs"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/luxor/front.svg",
  6818. extra: 2940 / 2152
  6819. }
  6820. },
  6821. back: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(180, "lbs"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/luxor/back.svg",
  6827. extra: 1083 / 960
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5 + 5 / 6, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Lamp",
  6839. height: math.unit(50, "feet")
  6840. },
  6841. {
  6842. name: "Lämp",
  6843. height: math.unit(300, "feet")
  6844. },
  6845. {
  6846. name: "The sun is a lamp",
  6847. height: math.unit(250000, "miles")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(50, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/huoyan/front.svg"
  6860. }
  6861. },
  6862. side: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(180, "lbs"),
  6865. name: "Side",
  6866. image: {
  6867. source: "./media/characters/huoyan/side.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Chef",
  6874. height: math.unit(9, "feet")
  6875. },
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(65, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(780, "feet")
  6884. },
  6885. {
  6886. name: "Flaming Mountain",
  6887. height: math.unit(4.8, "miles")
  6888. },
  6889. {
  6890. name: "Celestial",
  6891. height: math.unit(765000, "miles")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(5 + 3 / 4, "feet"),
  6900. weight: math.unit(120, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/tails/front.svg"
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(5 + 3 / 4, "feet"),
  6911. default: true
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(4, "feet"),
  6920. weight: math.unit(50, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/rainy/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(800, "feet"),
  6931. default: true
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(150, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/rainier/front.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(2, "mm"),
  6951. default: true
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(8 + 4/12, "feet"),
  6960. weight: math.unit(450, "kilograms"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/andy-renard/front.svg",
  6964. extra: 862/809,
  6965. bottom: 85/947
  6966. },
  6967. extraAttributes: {
  6968. "pawSize": {
  6969. name: "Paw Size",
  6970. power: 2,
  6971. type: "area",
  6972. base: math.unit(0.45*0.3, "meters^2")
  6973. },
  6974. "handSize": {
  6975. name: "Hand Size",
  6976. power: 2,
  6977. type: "area",
  6978. base: math.unit(0.4 * 0.3, "meters^2")
  6979. },
  6980. "cockSize": {
  6981. name: "Cock Length",
  6982. power: 1,
  6983. type: "length",
  6984. base: math.unit(0.75, "meters")
  6985. },
  6986. "ballDiameter": {
  6987. name: "Ball Diameter",
  6988. power: 1,
  6989. type: "length",
  6990. base: math.unit(0.3, "meters")
  6991. },
  6992. "ballVolume": {
  6993. name: "Ball Volume",
  6994. power: 3,
  6995. type: "volume",
  6996. base: math.unit(0.01413716694, "meters^3")
  6997. },
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(8 + 4/12, "feet"),
  7002. weight: math.unit(450, "kilograms"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/andy-renard/back.svg",
  7006. extra: 1112/1033,
  7007. bottom: 64/1176
  7008. },
  7009. extraAttributes: {
  7010. "pawSize": {
  7011. name: "Paw Size",
  7012. power: 2,
  7013. type: "area",
  7014. base: math.unit(0.45*0.3, "meters^2")
  7015. },
  7016. "handSize": {
  7017. name: "Hand Size",
  7018. power: 2,
  7019. type: "area",
  7020. base: math.unit(0.4 * 0.3, "meters^2")
  7021. },
  7022. "cockSize": {
  7023. name: "Cock Length",
  7024. power: 1,
  7025. type: "length",
  7026. base: math.unit(0.75, "meters")
  7027. },
  7028. "ballDiameter": {
  7029. name: "Ball Diameter",
  7030. power: 1,
  7031. type: "length",
  7032. base: math.unit(0.3, "meters")
  7033. },
  7034. "ballVolume": {
  7035. name: "Ball Volume",
  7036. power: 3,
  7037. type: "volume",
  7038. base: math.unit(0.01413716694, "meters^3")
  7039. },
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Tall",
  7046. height: math.unit(6 + 8/12, "feet")
  7047. },
  7048. {
  7049. name: "Very Tall",
  7050. height: math.unit(8 + 4/12, "feet")
  7051. },
  7052. {
  7053. name: "Mini Macro",
  7054. height: math.unit(15, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Giant",
  7059. height: math.unit(50, "feet")
  7060. },
  7061. {
  7062. name: "Nice",
  7063. height: math.unit(69, "feet")
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(100, "feet")
  7068. },
  7069. {
  7070. name: "Enormous",
  7071. height: math.unit(500, "feet")
  7072. },
  7073. {
  7074. name: "Gargantuan",
  7075. height: math.unit(1000, "feet")
  7076. },
  7077. {
  7078. name: "Mega",
  7079. height: math.unit(1, "mile")
  7080. },
  7081. {
  7082. name: "Giga",
  7083. height: math.unit(50, "miles")
  7084. },
  7085. {
  7086. name: "Tera",
  7087. height: math.unit(1000, "miles")
  7088. },
  7089. {
  7090. name: "Cosmic",
  7091. height: math.unit(1.5, "galaxies")
  7092. },
  7093. {
  7094. name: "God",
  7095. height: math.unit(1.5, "universes")
  7096. },
  7097. {
  7098. name: "Chief Execute God",
  7099. height: math.unit(1.5, "multiverses")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(210, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/cimmaron/front-sfw.svg",
  7112. extra: 701 / 676,
  7113. bottom: 0.046
  7114. }
  7115. },
  7116. back: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(210, "lbs"),
  7119. name: "Back",
  7120. image: {
  7121. source: "./media/characters/cimmaron/back-sfw.svg",
  7122. extra: 701 / 676,
  7123. bottom: 0.046
  7124. }
  7125. },
  7126. frontNsfw: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(210, "lbs"),
  7129. name: "Front (NSFW)",
  7130. image: {
  7131. source: "./media/characters/cimmaron/front-nsfw.svg",
  7132. extra: 701 / 676,
  7133. bottom: 0.046
  7134. }
  7135. },
  7136. backNsfw: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(210, "lbs"),
  7139. name: "Back (NSFW)",
  7140. image: {
  7141. source: "./media/characters/cimmaron/back-nsfw.svg",
  7142. extra: 701 / 676,
  7143. bottom: 0.046
  7144. }
  7145. },
  7146. dick: {
  7147. height: math.unit(1.714, "feet"),
  7148. name: "Dick",
  7149. image: {
  7150. source: "./media/characters/cimmaron/dick.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(6, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Macro Mayor",
  7162. height: math.unit(350, "meters")
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(200, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/akari/front.svg",
  7175. extra: 962 / 901,
  7176. bottom: 0.04
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Micro",
  7183. height: math.unit(5, "inches"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(7, "feet")
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(140, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/cynosura/front.svg",
  7201. extra: 437/410,
  7202. bottom: 9/446
  7203. }
  7204. },
  7205. back: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(140, "lbs"),
  7208. name: "Back",
  7209. image: {
  7210. source: "./media/characters/cynosura/back.svg",
  7211. extra: 1304/1160,
  7212. bottom: 71/1375
  7213. }
  7214. },
  7215. },
  7216. [
  7217. {
  7218. name: "Micro",
  7219. height: math.unit(4, "inches")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(5.75, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Tall",
  7228. height: math.unit(10, "feet")
  7229. },
  7230. {
  7231. name: "Big",
  7232. height: math.unit(20, "feet")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(50, "feet")
  7237. },
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(13 + 2/12, "feet"),
  7245. weight: math.unit(800, "kg"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/gin/front.svg",
  7249. extra: 1312/1191,
  7250. bottom: 45/1357
  7251. }
  7252. },
  7253. mouth: {
  7254. height: math.unit(2.39 * 1.8, "feet"),
  7255. name: "Mouth",
  7256. image: {
  7257. source: "./media/characters/gin/mouth.svg"
  7258. }
  7259. },
  7260. hand: {
  7261. height: math.unit(1.57 * 2.19, "feet"),
  7262. name: "Hand",
  7263. image: {
  7264. source: "./media/characters/gin/hand.svg"
  7265. }
  7266. },
  7267. foot: {
  7268. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7269. name: "Foot",
  7270. image: {
  7271. source: "./media/characters/gin/foot.svg"
  7272. }
  7273. },
  7274. sole: {
  7275. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/gin/sole.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Very Small",
  7285. height: math.unit(13 + 2 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(600, "miles")
  7290. },
  7291. {
  7292. name: "Regular",
  7293. height: math.unit(20, "earths"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(2.2, "solarradii")
  7299. },
  7300. {
  7301. name: "Teramacro",
  7302. height: math.unit(1.2, "galaxies")
  7303. },
  7304. {
  7305. name: "Omegamacro",
  7306. height: math.unit(200, "universes")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6 + 1 / 6, "feet"),
  7315. weight: math.unit(178, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/guy/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6 + 1 / 6, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Large",
  7330. height: math.unit(25 + 7 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(60 + 9 / 12, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(246, "feet")
  7339. },
  7340. {
  7341. name: "Macro++",
  7342. height: math.unit(878, "feet")
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(9, "feet"),
  7351. weight: math.unit(800, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/tiberius/front.svg",
  7355. extra: 2295 / 2071
  7356. }
  7357. },
  7358. back: {
  7359. height: math.unit(9, "feet"),
  7360. weight: math.unit(800, "lbs"),
  7361. name: "Back",
  7362. image: {
  7363. source: "./media/characters/tiberius/back.svg",
  7364. extra: 2373 / 2160
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9, "feet"),
  7372. default: true
  7373. }
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(600, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/surgo/front.svg",
  7385. extra: 3591 / 2227
  7386. }
  7387. },
  7388. back: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(600, "lbs"),
  7391. name: "Back",
  7392. image: {
  7393. source: "./media/characters/surgo/back.svg",
  7394. extra: 3557 / 2228
  7395. }
  7396. },
  7397. laying: {
  7398. height: math.unit(6 * 0.85, "feet"),
  7399. weight: math.unit(600, "lbs"),
  7400. name: "Laying",
  7401. image: {
  7402. source: "./media/characters/surgo/laying.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(6, "feet"),
  7410. default: true
  7411. }
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7416. {
  7417. side: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(150, "lbs"),
  7420. name: "Side",
  7421. image: {
  7422. source: "./media/characters/cibus/side.svg",
  7423. extra: 800 / 400
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(6, "feet"),
  7431. default: true
  7432. }
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(240, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/nibbles/front.svg"
  7444. }
  7445. },
  7446. side: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(240, "lbs"),
  7449. name: "Side",
  7450. image: {
  7451. source: "./media/characters/nibbles/side.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(9, "feet"),
  7459. default: true
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7465. {
  7466. side: {
  7467. height: math.unit(5 + 1 / 6, "feet"),
  7468. weight: math.unit(130, "lbs"),
  7469. name: "Side",
  7470. image: {
  7471. source: "./media/characters/rikky/side.svg",
  7472. extra: 851 / 801
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 1 / 6, "feet")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(152, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(7, "miles")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7494. {
  7495. side: {
  7496. height: math.unit(370, "cm"),
  7497. weight: math.unit(350, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/malfressa/side.svg"
  7501. }
  7502. },
  7503. walking: {
  7504. height: math.unit(370, "cm"),
  7505. weight: math.unit(350, "lbs"),
  7506. name: "Walking",
  7507. image: {
  7508. source: "./media/characters/malfressa/walking.svg"
  7509. }
  7510. },
  7511. feral: {
  7512. height: math.unit(2500, "cm"),
  7513. weight: math.unit(100000, "lbs"),
  7514. name: "Feral",
  7515. image: {
  7516. source: "./media/characters/malfressa/feral.svg",
  7517. extra: 2108 / 837,
  7518. bottom: 0.02
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(370, "cm")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(300, "meters"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(60, "kg"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/jaro/front.svg",
  7543. extra: 845/817,
  7544. bottom: 45/890
  7545. }
  7546. },
  7547. back: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(60, "kg"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/jaro/back.svg",
  7553. extra: 847/817,
  7554. bottom: 34/881
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(7, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5.5, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Minimacro",
  7570. height: math.unit(20, "feet")
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(200, "meters")
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(195, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/rogue/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(90, "feet"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7600. {
  7601. standing: {
  7602. height: math.unit(5 + 8 / 12, "feet"),
  7603. weight: math.unit(140, "lb"),
  7604. name: "Standing",
  7605. image: {
  7606. source: "./media/characters/piper/standing.svg",
  7607. extra: 1440/1284,
  7608. bottom: 66/1506
  7609. }
  7610. },
  7611. running: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(140, "lb"),
  7614. name: "Running",
  7615. image: {
  7616. source: "./media/characters/piper/running.svg",
  7617. extra: 3948/3655,
  7618. bottom: 0/3948
  7619. }
  7620. },
  7621. sole: {
  7622. height: math.unit(0.81, "feet"),
  7623. weight: math.unit(2, "kg"),
  7624. name: "Sole",
  7625. image: {
  7626. source: "./media/characters/piper/sole.svg"
  7627. }
  7628. },
  7629. nipple: {
  7630. height: math.unit(0.25, "feet"),
  7631. weight: math.unit(1.5, "lb"),
  7632. name: "Nipple",
  7633. image: {
  7634. source: "./media/characters/piper/nipple.svg"
  7635. }
  7636. },
  7637. head: {
  7638. height: math.unit(1.1, "feet"),
  7639. name: "Head",
  7640. image: {
  7641. source: "./media/characters/piper/head.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(2, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(5 + 8 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(250, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(7, "miles")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(220, "lb"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/gemini/front.svg"
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(220, "lb"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/gemini/back.svg"
  7682. }
  7683. },
  7684. kneeling: {
  7685. height: math.unit(6 / 1.5, "feet"),
  7686. weight: math.unit(220, "lb"),
  7687. name: "Kneeling",
  7688. image: {
  7689. source: "./media/characters/gemini/kneeling.svg",
  7690. bottom: 0.02
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(300, "meters"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Megamacro",
  7702. height: math.unit(6900, "meters")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7708. {
  7709. anthro: {
  7710. height: math.unit(2.35, "meters"),
  7711. weight: math.unit(73, "kg"),
  7712. name: "Anthro",
  7713. image: {
  7714. source: "./media/characters/alicia/anthro.svg",
  7715. extra: 2571 / 2385,
  7716. bottom: 75 / 2648
  7717. }
  7718. },
  7719. paw: {
  7720. height: math.unit(1.32, "feet"),
  7721. name: "Paw",
  7722. image: {
  7723. source: "./media/characters/alicia/paw.svg"
  7724. }
  7725. },
  7726. feral: {
  7727. height: math.unit(1.69, "meters"),
  7728. weight: math.unit(73, "kg"),
  7729. name: "Feral",
  7730. image: {
  7731. source: "./media/characters/alicia/feral.svg",
  7732. extra: 2123 / 1715,
  7733. bottom: 222 / 2349
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(2.35, "meters")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(60, "meters"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(10000, "kilometers")
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(7, "feet"),
  7758. weight: math.unit(250, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/archy/front.svg"
  7762. }
  7763. }
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(1, "inch")
  7769. },
  7770. {
  7771. name: "Shorty",
  7772. height: math.unit(5, "feet")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(7, "feet")
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(600, "meters"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(1, "mile")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(1.65, "meters"),
  7794. weight: math.unit(74, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/berri/front.svg",
  7798. extra: 857 / 837,
  7799. bottom: 18 / 877
  7800. }
  7801. },
  7802. bum: {
  7803. height: math.unit(1.46, "feet"),
  7804. name: "Bum",
  7805. image: {
  7806. source: "./media/characters/berri/bum.svg"
  7807. }
  7808. },
  7809. mouth: {
  7810. height: math.unit(0.44, "feet"),
  7811. name: "Mouth",
  7812. image: {
  7813. source: "./media/characters/berri/mouth.svg"
  7814. }
  7815. },
  7816. paw: {
  7817. height: math.unit(0.826, "feet"),
  7818. name: "Paw",
  7819. image: {
  7820. source: "./media/characters/berri/paw.svg"
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(1.65, "meters")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(60, "m"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Megamacro",
  7836. height: math.unit(9.213, "km")
  7837. },
  7838. {
  7839. name: "Planet Eater",
  7840. height: math.unit(489, "megameters")
  7841. },
  7842. {
  7843. name: "Teramacro",
  7844. height: math.unit(2471635000000, "meters")
  7845. },
  7846. {
  7847. name: "Examacro",
  7848. height: math.unit(8.0624e+26, "meters")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(1.72, "meters"),
  7857. weight: math.unit(68, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/lexi/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Very Smol",
  7867. height: math.unit(10, "mm")
  7868. },
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(6.8, "cm"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(1.72, "m")
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(1.69, "meters"),
  7885. weight: math.unit(68, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/martin/front.svg",
  7889. extra: 596 / 581
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(6.85, "cm"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(1.69, "m")
  7902. }
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(1.69, "meters"),
  7910. weight: math.unit(68, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/juno/front.svg"
  7914. }
  7915. }
  7916. },
  7917. [
  7918. {
  7919. name: "Micro",
  7920. height: math.unit(7, "cm")
  7921. },
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(1.89, "m")
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(353, "meters"),
  7929. default: true
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.93, "meters"),
  7938. weight: math.unit(83, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/samantha/front.svg"
  7942. }
  7943. },
  7944. frontClothed: {
  7945. height: math.unit(1.93, "meters"),
  7946. weight: math.unit(83, "kg"),
  7947. name: "Front (Clothed)",
  7948. image: {
  7949. source: "./media/characters/samantha/front-clothed.svg"
  7950. }
  7951. },
  7952. back: {
  7953. height: math.unit(1.93, "meters"),
  7954. weight: math.unit(83, "kg"),
  7955. name: "Back",
  7956. image: {
  7957. source: "./media/characters/samantha/back.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(1.93, "m")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(74, "meters"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro+",
  7973. height: math.unit(223, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(8381, "meters"),
  7978. },
  7979. {
  7980. name: "Megamacro+",
  7981. height: math.unit(12000, "kilometers")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(1.92, "meters"),
  7990. weight: math.unit(80, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/dr-clay/front.svg"
  7994. }
  7995. },
  7996. frontClothed: {
  7997. height: math.unit(1.92, "meters"),
  7998. weight: math.unit(80, "kg"),
  7999. name: "Front (Clothed)",
  8000. image: {
  8001. source: "./media/characters/dr-clay/front-clothed.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(1.92, "m")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(214, "meters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(12.237, "meters"),
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(557, "megameters"),
  8022. },
  8023. {
  8024. name: "Unimaginable",
  8025. height: math.unit(120e9, "lightyears")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(2, "meters"),
  8034. weight: math.unit(80, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8038. }
  8039. }
  8040. },
  8041. [
  8042. {
  8043. name: "Teramacro",
  8044. height: math.unit(500000, "lightyears"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8051. {
  8052. crux: {
  8053. height: math.unit(2, "meters"),
  8054. weight: math.unit(150, "kg"),
  8055. name: "Crux",
  8056. image: {
  8057. source: "./media/characters/vemus/crux.svg",
  8058. extra: 1074/936,
  8059. bottom: 23/1097
  8060. }
  8061. },
  8062. skunkTanuki: {
  8063. height: math.unit(2, "meters"),
  8064. weight: math.unit(150, "kg"),
  8065. name: "Skunk-Tanuki",
  8066. image: {
  8067. source: "./media/characters/vemus/skunk-tanuki.svg",
  8068. extra: 926/893,
  8069. bottom: 20/946
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(4, "meters"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Big",
  8081. height: math.unit(8, "meters")
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(100, "meters")
  8086. },
  8087. {
  8088. name: "Macro+",
  8089. height: math.unit(1500, "meters")
  8090. },
  8091. {
  8092. name: "Stellar",
  8093. height: math.unit(14e8, "meters")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(70, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/beherit/front.svg",
  8106. extra: 1234/1109,
  8107. bottom: 55/1289
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(6, "feet")
  8115. },
  8116. {
  8117. name: "Lorg",
  8118. height: math.unit(25, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Lorger",
  8123. height: math.unit(75, "feet")
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(200, "meters")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(2, "meters"),
  8136. weight: math.unit(150, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/everett/front.svg",
  8140. extra: 1017/866,
  8141. bottom: 86/1103
  8142. }
  8143. },
  8144. paw: {
  8145. height: math.unit(2 / 3.6, "meters"),
  8146. name: "Paw",
  8147. image: {
  8148. source: "./media/characters/everett/paw.svg"
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(15, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Lorg",
  8160. height: math.unit(70, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Lorger",
  8165. height: math.unit(250, "feet")
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(500, "meters")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(2, "meters"),
  8178. weight: math.unit(86, "kg"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/rose/front.svg",
  8182. extra: 1785/1636,
  8183. bottom: 30/1815
  8184. },
  8185. form: "liom",
  8186. default: true
  8187. },
  8188. frontSporty: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front (Sporty)",
  8192. image: {
  8193. source: "./media/characters/rose/front-sporty.svg",
  8194. extra: 350/335,
  8195. bottom: 10/360
  8196. },
  8197. form: "liom"
  8198. },
  8199. frontAlt: {
  8200. height: math.unit(1.6, "meters"),
  8201. weight: math.unit(86, "kg"),
  8202. name: "Front (Alt)",
  8203. image: {
  8204. source: "./media/characters/rose/front-alt.svg",
  8205. extra: 299/283,
  8206. bottom: 3/302
  8207. },
  8208. form: "liom"
  8209. },
  8210. plush: {
  8211. height: math.unit(2, "meters"),
  8212. weight: math.unit(86/3, "kg"),
  8213. name: "Plush",
  8214. image: {
  8215. source: "./media/characters/rose/plush.svg",
  8216. extra: 361/337,
  8217. bottom: 11/372
  8218. },
  8219. form: "plush",
  8220. default: true
  8221. },
  8222. faeStanding: {
  8223. height: math.unit(10, "cm"),
  8224. weight: math.unit(10, "grams"),
  8225. name: "Standing",
  8226. image: {
  8227. source: "./media/characters/rose/fae-standing.svg",
  8228. extra: 1189/1060,
  8229. bottom: 27/1216
  8230. },
  8231. form: "fae",
  8232. default: true
  8233. },
  8234. faeSitting: {
  8235. height: math.unit(5, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Sitting",
  8238. image: {
  8239. source: "./media/characters/rose/fae-sitting.svg",
  8240. extra: 737/577,
  8241. bottom: 356/1093
  8242. },
  8243. form: "fae"
  8244. },
  8245. faePaw: {
  8246. height: math.unit(1.35, "cm"),
  8247. name: "Paw",
  8248. image: {
  8249. source: "./media/characters/rose/fae-paw.svg"
  8250. },
  8251. form: "fae"
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "True Micro",
  8257. height: math.unit(9, "cm"),
  8258. form: "liom"
  8259. },
  8260. {
  8261. name: "Micro",
  8262. height: math.unit(16, "cm"),
  8263. form: "liom"
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(1.85, "meters"),
  8268. default: true,
  8269. form: "liom"
  8270. },
  8271. {
  8272. name: "Mini-Macro",
  8273. height: math.unit(5, "meters"),
  8274. form: "liom"
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(15, "meters"),
  8279. form: "liom"
  8280. },
  8281. {
  8282. name: "True Macro",
  8283. height: math.unit(40, "meters"),
  8284. form: "liom"
  8285. },
  8286. {
  8287. name: "City Scale",
  8288. height: math.unit(1, "km"),
  8289. form: "liom"
  8290. },
  8291. {
  8292. name: "Plushie",
  8293. height: math.unit(9, "cm"),
  8294. form: "plush",
  8295. default: true
  8296. },
  8297. {
  8298. name: "Fae",
  8299. height: math.unit(10, "cm"),
  8300. form: "fae",
  8301. default: true
  8302. },
  8303. ],
  8304. {
  8305. "liom": {
  8306. name: "Liom"
  8307. },
  8308. "plush": {
  8309. name: "Plush"
  8310. },
  8311. "fae": {
  8312. name: "Fae Fox",
  8313. default: true
  8314. }
  8315. }
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(2, "meters"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/regal/front.svg"
  8326. }
  8327. },
  8328. back: {
  8329. height: math.unit(2, "meters"),
  8330. weight: math.unit(350, "lbs"),
  8331. name: "Back",
  8332. image: {
  8333. source: "./media/characters/regal/back.svg"
  8334. }
  8335. },
  8336. },
  8337. [
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(350, "feet"),
  8341. default: true
  8342. }
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8347. {
  8348. standing: {
  8349. height: math.unit(4 + 11/12, "feet"),
  8350. weight: math.unit(100, "lb"),
  8351. name: "Standing",
  8352. image: {
  8353. source: "./media/characters/opal/standing.svg",
  8354. extra: 1588/1513,
  8355. bottom: 23/1611
  8356. }
  8357. },
  8358. sitting: {
  8359. height: math.unit(2.3, "feet"),
  8360. weight: math.unit(100, "lb"),
  8361. name: "Sitting",
  8362. image: {
  8363. source: "./media/characters/opal/sitting.svg",
  8364. extra: 1031/892,
  8365. bottom: 142/1173
  8366. }
  8367. },
  8368. hand: {
  8369. height: math.unit(0.59, "feet"),
  8370. name: "Hand",
  8371. image: {
  8372. source: "./media/characters/opal/hand.svg"
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(0.61, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/opal/foot.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Small",
  8386. height: math.unit(4 + 11 / 12, "feet")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(20, "feet"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(120, "feet")
  8396. },
  8397. {
  8398. name: "Megamacro",
  8399. height: math.unit(80, "miles")
  8400. },
  8401. {
  8402. name: "True Size",
  8403. height: math.unit(100000, "lightyears")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/vector-wuff/front.svg"
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.8, "meters")
  8423. },
  8424. {
  8425. name: "Macro",
  8426. height: math.unit(450, "meters"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Megamacro",
  8431. height: math.unit(15, "kilometers")
  8432. }
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(256, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/dannik/front.svg"
  8444. }
  8445. }
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(69.57, "meters"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/azura-saharah/front.svg"
  8464. }
  8465. },
  8466. back: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(120, "lbs"),
  8469. name: "Back",
  8470. image: {
  8471. source: "./media/characters/azura-saharah/back.svg"
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(100, "feet"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8485. {
  8486. side: {
  8487. height: math.unit(5 + 4 / 12, "feet"),
  8488. weight: math.unit(163, "lbs"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/kennedy/side.svg"
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Standard Doggo",
  8498. height: math.unit(5 + 4 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Big Doggo",
  8502. height: math.unit(25 + 3 / 12, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(5 + 5/12, "feet"),
  8512. weight: math.unit(100, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/odios-de-lunar/front.svg",
  8516. extra: 1468/1323,
  8517. bottom: 22/1490
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5.5, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(100, "feet")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8539. {
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(220, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/mandake/back.svg"
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(7, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(78, "feet")
  8558. },
  8559. {
  8560. name: "Macro+",
  8561. height: math.unit(300, "meters")
  8562. },
  8563. {
  8564. name: "Macro++",
  8565. height: math.unit(2400, "feet")
  8566. },
  8567. {
  8568. name: "Megamacro",
  8569. height: math.unit(5167, "meters")
  8570. },
  8571. {
  8572. name: "Gigamacro",
  8573. height: math.unit(41769, "miles")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(120, "lbs"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/yozey/front.svg"
  8586. }
  8587. },
  8588. frontAlt: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(120, "lbs"),
  8591. name: "Front (Alt)",
  8592. image: {
  8593. source: "./media/characters/yozey/front-alt.svg"
  8594. }
  8595. },
  8596. side: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(120, "lbs"),
  8599. name: "Side",
  8600. image: {
  8601. source: "./media/characters/yozey/side.svg"
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Micro",
  8608. height: math.unit(3, "inches"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Normal",
  8613. height: math.unit(6, "feet")
  8614. }
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(103, "lbs"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/valeska-voss/front.svg"
  8626. }
  8627. }
  8628. },
  8629. [
  8630. {
  8631. name: "Mini-Sized Sub",
  8632. height: math.unit(3.1, "inches")
  8633. },
  8634. {
  8635. name: "Mid-Sized Sub",
  8636. height: math.unit(6.2, "inches")
  8637. },
  8638. {
  8639. name: "Full-Sized Sub",
  8640. height: math.unit(9.3, "inches")
  8641. },
  8642. {
  8643. name: "Normal",
  8644. height: math.unit(5 + 2 / 12, "foot"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(160, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/gene-zeta/front.svg",
  8658. extra: 3006 / 2826,
  8659. bottom: 182 / 3188
  8660. }
  8661. }
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(6, "inches")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 11 / 12, "foot"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(140, "feet")
  8676. },
  8677. {
  8678. name: "Supercharged",
  8679. height: math.unit(2500, "feet")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(350, "lbs"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/razinox/front.svg",
  8692. extra: 1686 / 1548,
  8693. bottom: 28.2 / 1868
  8694. }
  8695. },
  8696. back: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(350, "lbs"),
  8699. name: "Back",
  8700. image: {
  8701. source: "./media/characters/razinox/back.svg",
  8702. extra: 1660 / 1590,
  8703. bottom: 15 / 1665
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(10 + 8 / 12, "foot")
  8711. },
  8712. {
  8713. name: "Minimacro",
  8714. height: math.unit(15, "foot")
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(60, "foot"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(5, "miles")
  8724. },
  8725. {
  8726. name: "Gigamacro",
  8727. height: math.unit(6000, "miles")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/cobalt/front.svg"
  8740. }
  8741. }
  8742. },
  8743. [
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(8 + 1 / 12, "foot")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(111, "foot"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Supracosmic",
  8755. height: math.unit(1e42, "feet")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(5, "inches"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/amanda/front.svg",
  8767. extra: 926/791,
  8768. bottom: 38/964
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(5, "inches"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/amanda/back.svg",
  8776. extra: 909/805,
  8777. bottom: 43/952
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Micro",
  8784. height: math.unit(5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(2.75, "meters"),
  8794. weight: math.unit(1200, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/teal/front.svg",
  8798. extra: 2463 / 2320,
  8799. bottom: 166 / 2629
  8800. }
  8801. },
  8802. back: {
  8803. height: math.unit(2.75, "meters"),
  8804. weight: math.unit(1200, "lb"),
  8805. name: "Back",
  8806. image: {
  8807. source: "./media/characters/teal/back.svg",
  8808. extra: 2580 / 2489,
  8809. bottom: 151 / 2731
  8810. }
  8811. },
  8812. sitting: {
  8813. height: math.unit(1.9, "meters"),
  8814. weight: math.unit(1200, "lb"),
  8815. name: "Sitting",
  8816. image: {
  8817. source: "./media/characters/teal/sitting.svg",
  8818. extra: 623 / 590,
  8819. bottom: 121 / 744
  8820. }
  8821. },
  8822. standing: {
  8823. height: math.unit(2.75, "meters"),
  8824. weight: math.unit(1200, "lb"),
  8825. name: "Standing",
  8826. image: {
  8827. source: "./media/characters/teal/standing.svg",
  8828. extra: 923 / 893,
  8829. bottom: 60 / 983
  8830. }
  8831. },
  8832. stretching: {
  8833. height: math.unit(3.65, "meters"),
  8834. weight: math.unit(1200, "lb"),
  8835. name: "Stretching",
  8836. image: {
  8837. source: "./media/characters/teal/stretching.svg",
  8838. extra: 1276 / 1244,
  8839. bottom: 0 / 1276
  8840. }
  8841. },
  8842. legged: {
  8843. height: math.unit(1.3, "meters"),
  8844. weight: math.unit(100, "lb"),
  8845. name: "Legged",
  8846. image: {
  8847. source: "./media/characters/teal/legged.svg",
  8848. extra: 462 / 437,
  8849. bottom: 24 / 486
  8850. }
  8851. },
  8852. naga: {
  8853. height: math.unit(5.4, "meters"),
  8854. weight: math.unit(4000, "lb"),
  8855. name: "Naga",
  8856. image: {
  8857. source: "./media/characters/teal/naga.svg",
  8858. extra: 1902 / 1858,
  8859. bottom: 0 / 1902
  8860. }
  8861. },
  8862. hand: {
  8863. height: math.unit(0.52, "meters"),
  8864. name: "Hand",
  8865. image: {
  8866. source: "./media/characters/teal/hand.svg"
  8867. }
  8868. },
  8869. maw: {
  8870. height: math.unit(0.43, "meters"),
  8871. name: "Maw",
  8872. image: {
  8873. source: "./media/characters/teal/maw.svg"
  8874. }
  8875. },
  8876. slit: {
  8877. height: math.unit(0.25, "meters"),
  8878. name: "Slit",
  8879. image: {
  8880. source: "./media/characters/teal/slit.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(2.75, "meters"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(300, "feet")
  8893. },
  8894. {
  8895. name: "Macro+",
  8896. height: math.unit(2000, "feet")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8902. {
  8903. frontCat: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(180, "lbs"),
  8906. name: "Front (Cat)",
  8907. image: {
  8908. source: "./media/characters/ravin-amulet/front-cat.svg"
  8909. }
  8910. },
  8911. frontCatAlt: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(180, "lbs"),
  8914. name: "Front (Alt, Cat)",
  8915. image: {
  8916. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8917. }
  8918. },
  8919. frontWerewolf: {
  8920. height: math.unit(6 * 1.2, "feet"),
  8921. weight: math.unit(225, "lbs"),
  8922. name: "Front (Werewolf)",
  8923. image: {
  8924. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8925. }
  8926. },
  8927. backWerewolf: {
  8928. height: math.unit(6 * 1.2, "feet"),
  8929. weight: math.unit(225, "lbs"),
  8930. name: "Back (Werewolf)",
  8931. image: {
  8932. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Nano",
  8939. height: math.unit(1, "micrometer")
  8940. },
  8941. {
  8942. name: "Micro",
  8943. height: math.unit(1, "inch")
  8944. },
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(6, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(60, "feet")
  8953. }
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(165, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/fluoresce/front.svg"
  8965. }
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(6, "cm")
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(5 + 7 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(56, "feet")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(1.9, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(9 + 6 / 12, "feet"),
  8993. weight: math.unit(523, "lbs"),
  8994. name: "Side",
  8995. image: {
  8996. source: "./media/characters/aurora/side.svg",
  8997. extra: 474/393,
  8998. bottom: 5/479
  8999. }
  9000. }
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(9 + 6 / 12, "feet")
  9006. },
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(96, "feet"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Macro+",
  9014. height: math.unit(243, "feet")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(194, "cm"),
  9023. weight: math.unit(90, "kg"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/ranek/front.svg",
  9027. extra: 1862/1791,
  9028. bottom: 80/1942
  9029. }
  9030. },
  9031. back: {
  9032. height: math.unit(194, "cm"),
  9033. weight: math.unit(90, "kg"),
  9034. name: "Back",
  9035. image: {
  9036. source: "./media/characters/ranek/back.svg",
  9037. extra: 1853/1787,
  9038. bottom: 74/1927
  9039. }
  9040. },
  9041. feral: {
  9042. height: math.unit(30, "cm"),
  9043. weight: math.unit(1.6, "lbs"),
  9044. name: "Feral",
  9045. image: {
  9046. source: "./media/characters/ranek/feral.svg",
  9047. extra: 990/631,
  9048. bottom: 29/1019
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(194, "cm"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(100, "meters")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(5 + 6 / 12, "feet"),
  9069. weight: math.unit(153, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/andrew-cooper/front.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Nano",
  9079. height: math.unit(1, "mm")
  9080. },
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(2, "inches")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(5 + 6 / 12, "feet"),
  9088. default: true
  9089. }
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(180, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/akane-sato/front.svg",
  9101. extra: 1219 / 1140
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(180, "lbs"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/akane-sato/back.svg",
  9110. extra: 1219 / 1170
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(2.5, "meters")
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(250, "meters"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Megamacro",
  9126. height: math.unit(25, "km")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(65, "kg"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/rook/front.svg",
  9139. extra: 960 / 950
  9140. }
  9141. }
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(8.8, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(88, "feet"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Megamacro",
  9155. height: math.unit(8, "miles")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(12 + 2 / 12, "feet"),
  9164. weight: math.unit(808, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/prodigy/front.svg"
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(12 + 2 / 12, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(143, "feet")
  9180. },
  9181. {
  9182. name: "Macro+",
  9183. height: math.unit(400, "feet")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lbs"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/daniel/front.svg"
  9196. }
  9197. },
  9198. leaning: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(225, "lbs"),
  9201. name: "Leaning",
  9202. image: {
  9203. source: "./media/characters/daniel/leaning.svg"
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(1000, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(88, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/chiros/front.svg",
  9224. extra: 306 / 226
  9225. }
  9226. },
  9227. side: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(88, "lbs"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/chiros/side.svg",
  9233. extra: 306 / 226
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6, "cm"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9247. {
  9248. front: {
  9249. height: math.unit(6, "feet"),
  9250. weight: math.unit(100, "lbs"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/selka/front.svg",
  9254. extra: 947 / 887
  9255. }
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(5, "cm"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(8 + 3 / 12, "feet"),
  9271. weight: math.unit(424, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/verin/front.svg",
  9275. extra: 1845 / 1550
  9276. }
  9277. },
  9278. frontArmored: {
  9279. height: math.unit(8 + 3 / 12, "feet"),
  9280. weight: math.unit(424, "lbs"),
  9281. name: "Front (Armored)",
  9282. image: {
  9283. source: "./media/characters/verin/front-armor.svg",
  9284. extra: 1845 / 1550,
  9285. bottom: 0.01
  9286. }
  9287. },
  9288. back: {
  9289. height: math.unit(8 + 3 / 12, "feet"),
  9290. weight: math.unit(424, "lbs"),
  9291. name: "Back",
  9292. image: {
  9293. source: "./media/characters/verin/back.svg",
  9294. bottom: 0.1,
  9295. extra: 1
  9296. }
  9297. },
  9298. foot: {
  9299. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9300. name: "Foot",
  9301. image: {
  9302. source: "./media/characters/verin/foot.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(8 + 3 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Minimacro",
  9313. height: math.unit(21, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(626, "feet")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(2.718, "meters"),
  9327. weight: math.unit(150, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/sovrim-terraquian/front.svg",
  9331. extra: 1752/1689,
  9332. bottom: 36/1788
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(2.718, "meters"),
  9337. weight: math.unit(150, "lbs"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/sovrim-terraquian/back.svg",
  9341. extra: 1698/1657,
  9342. bottom: 58/1756
  9343. }
  9344. },
  9345. tongue: {
  9346. height: math.unit(2.865, "feet"),
  9347. name: "Tongue",
  9348. image: {
  9349. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9350. }
  9351. },
  9352. hand: {
  9353. height: math.unit(1.61, "feet"),
  9354. name: "Hand",
  9355. image: {
  9356. source: "./media/characters/sovrim-terraquian/hand.svg"
  9357. }
  9358. },
  9359. foot: {
  9360. height: math.unit(1.05, "feet"),
  9361. name: "Foot",
  9362. image: {
  9363. source: "./media/characters/sovrim-terraquian/foot.svg"
  9364. }
  9365. },
  9366. footAlt: {
  9367. height: math.unit(0.88, "feet"),
  9368. name: "Foot (Alt)",
  9369. image: {
  9370. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches")
  9378. },
  9379. {
  9380. name: "Small",
  9381. height: math.unit(1, "meter")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(Math.E, "meters"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(20, "meters")
  9391. },
  9392. {
  9393. name: "Macro+",
  9394. height: math.unit(400, "meters")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(7, "feet"),
  9403. weight: math.unit(489, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/reece-silvermane/front.svg",
  9407. bottom: 0.02,
  9408. extra: 1
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(1.5, "miles"),
  9416. default: true
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(78, "kg"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/kane/front.svg",
  9429. extra: 978 / 899
  9430. }
  9431. },
  9432. back: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(78, "kg"),
  9435. name: "Back",
  9436. image: {
  9437. source: "./media/characters/kane/back.svg",
  9438. extra: 1966/1800,
  9439. bottom: 0/1966
  9440. }
  9441. },
  9442. head: {
  9443. height: math.unit(1.4, "feet"),
  9444. name: "Head",
  9445. image: {
  9446. source: "./media/characters/kane/head.svg"
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(2.1, "m"),
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(1, "km"),
  9458. default: true
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(200, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/tegon/front.svg",
  9471. bottom: 0.01,
  9472. extra: 1
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(1, "inch")
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(6 + 3 / 12, "feet"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Macro",
  9488. height: math.unit(300, "feet")
  9489. },
  9490. {
  9491. name: "Megamacro",
  9492. height: math.unit(69, "miles")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9498. {
  9499. side: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(2304, "lbs"),
  9502. name: "Side",
  9503. image: {
  9504. source: "./media/characters/arcturax/side.svg",
  9505. extra: 790 / 376,
  9506. bottom: 0.01
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inch")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(6, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(39, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(7, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(50, "lbs"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/sentri/front.svg",
  9539. extra: 1750 / 1570,
  9540. bottom: 0.025
  9541. }
  9542. },
  9543. frontAlt: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(50, "lbs"),
  9546. name: "Front (Alt)",
  9547. image: {
  9548. source: "./media/characters/sentri/front-alt.svg",
  9549. extra: 1750 / 1570,
  9550. bottom: 0.025
  9551. }
  9552. },
  9553. },
  9554. [
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(15, "feet"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(2500, "feet")
  9563. }
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5 + 8 / 12, "feet"),
  9571. weight: math.unit(130, "lbs"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/corvin/front.svg",
  9575. extra: 1803 / 1629
  9576. }
  9577. },
  9578. frontShirt: {
  9579. height: math.unit(5 + 8 / 12, "feet"),
  9580. weight: math.unit(130, "lbs"),
  9581. name: "Front (Shirt)",
  9582. image: {
  9583. source: "./media/characters/corvin/front-shirt.svg",
  9584. extra: 1803 / 1629
  9585. }
  9586. },
  9587. frontPoncho: {
  9588. height: math.unit(5 + 8 / 12, "feet"),
  9589. weight: math.unit(130, "lbs"),
  9590. name: "Front (Poncho)",
  9591. image: {
  9592. source: "./media/characters/corvin/front-poncho.svg",
  9593. extra: 1803 / 1629
  9594. }
  9595. },
  9596. side: {
  9597. height: math.unit(5 + 8 / 12, "feet"),
  9598. weight: math.unit(130, "lbs"),
  9599. name: "Side",
  9600. image: {
  9601. source: "./media/characters/corvin/side.svg",
  9602. extra: 1012 / 945
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(5 + 8 / 12, "feet"),
  9607. weight: math.unit(130, "lbs"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/corvin/back.svg",
  9611. extra: 1803 / 1629
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(3, "inches")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 8 / 12, "feet")
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(300, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(500, "miles")
  9632. }
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(135, "lbs"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/q/front.svg",
  9644. extra: 854 / 752,
  9645. bottom: 0.005
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(130, "lbs"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/q/back.svg",
  9654. extra: 854 / 752
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(90, "feet"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Extra Macro",
  9666. height: math.unit(300, "feet"),
  9667. },
  9668. {
  9669. name: "BIG WALF",
  9670. height: math.unit(750, "feet"),
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(3, "feet"),
  9679. weight: math.unit(28, "lbs"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/citrine/front.svg"
  9683. }
  9684. }
  9685. },
  9686. [
  9687. {
  9688. name: "Normal",
  9689. height: math.unit(3, "feet"),
  9690. default: true
  9691. }
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9696. {
  9697. front: {
  9698. height: math.unit(14, "feet"),
  9699. weight: math.unit(1450, "kg"),
  9700. preyCapacity: math.unit(15, "people"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/aura-starwind/front.svg",
  9704. extra: 1440/1327,
  9705. bottom: 11/1451
  9706. }
  9707. },
  9708. side: {
  9709. height: math.unit(14, "feet"),
  9710. weight: math.unit(1450, "kg"),
  9711. preyCapacity: math.unit(15, "people"),
  9712. name: "Side",
  9713. image: {
  9714. source: "./media/characters/aura-starwind/side.svg",
  9715. extra: 1654 / 1497
  9716. }
  9717. },
  9718. taur: {
  9719. height: math.unit(18, "feet"),
  9720. weight: math.unit(5500, "kg"),
  9721. preyCapacity: math.unit(50, "people"),
  9722. name: "Taur",
  9723. image: {
  9724. source: "./media/characters/aura-starwind/taur.svg",
  9725. extra: 1760 / 1650
  9726. }
  9727. },
  9728. feral: {
  9729. height: math.unit(46, "feet"),
  9730. weight: math.unit(25000, "kg"),
  9731. preyCapacity: math.unit(120, "people"),
  9732. name: "Feral",
  9733. image: {
  9734. source: "./media/characters/aura-starwind/feral.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(14, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(50, "meters")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(5000, "meters")
  9751. },
  9752. {
  9753. name: "Gigamacro",
  9754. height: math.unit(100000, "kilometers")
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(2 + 7 / 12, "feet"),
  9763. weight: math.unit(32, "lbs"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/rivet/front.svg",
  9767. extra: 1716 / 1658,
  9768. bottom: 0.03
  9769. }
  9770. },
  9771. foot: {
  9772. height: math.unit(0.551, "feet"),
  9773. name: "Rivet's Foot",
  9774. image: {
  9775. source: "./media/characters/rivet/foot.svg"
  9776. },
  9777. rename: true
  9778. }
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(1.5, "inches"),
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(2 + 7 / 12, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(85, "feet")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(2.2, "km")
  9797. }
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 9 / 12, "feet"),
  9805. weight: math.unit(150, "lbs"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/coffee/front.svg",
  9809. extra: 946/880,
  9810. bottom: 66/1012
  9811. }
  9812. },
  9813. foot: {
  9814. height: math.unit(1.29, "feet"),
  9815. name: "Foot",
  9816. image: {
  9817. source: "./media/characters/coffee/foot.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(2, "inches"),
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(800, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(25, "miles")
  9838. }
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(200, "lbs"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/chari-gal/front.svg",
  9850. extra: 735/649,
  9851. bottom: 55/790
  9852. },
  9853. form: "normal",
  9854. default: true
  9855. },
  9856. back: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lb"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/chari-gal/back.svg",
  9862. extra: 762/666,
  9863. bottom: 31/793
  9864. },
  9865. form: "normal"
  9866. },
  9867. mouth: {
  9868. height: math.unit(1.35, "feet"),
  9869. name: "Mouth",
  9870. image: {
  9871. source: "./media/characters/chari-gal/mouth.svg"
  9872. },
  9873. form: "normal"
  9874. },
  9875. gigantamax: {
  9876. height: math.unit(6 * 16, "feet"),
  9877. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9878. name: "Gigantamax",
  9879. image: {
  9880. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9881. extra: 1507/1149,
  9882. bottom: 254/1761
  9883. },
  9884. form: "gigantamax",
  9885. default: true
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(5 + 7 / 12, "feet"),
  9892. form: "normal",
  9893. },
  9894. {
  9895. name: "Macro",
  9896. height: math.unit(200, "feet"),
  9897. default: true,
  9898. form: "normal"
  9899. },
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9903. form: "gigantamax",
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(16 * 200, "feet"),
  9908. default: true,
  9909. form: "gigantamax"
  9910. },
  9911. ],
  9912. {
  9913. "normal": {
  9914. name: "Normal",
  9915. default: true
  9916. },
  9917. "gigantamax": {
  9918. name: "Gigantamax",
  9919. },
  9920. }
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(150, "lbs"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/nova/front.svg",
  9931. extra: 5000 / 4722,
  9932. bottom: 0.02
  9933. }
  9934. }
  9935. },
  9936. [
  9937. {
  9938. name: "Micro-",
  9939. height: math.unit(0.8, "inches")
  9940. },
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "inches"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9950. {
  9951. koboldFront: {
  9952. height: math.unit(3 + 1 / 12, "feet"),
  9953. weight: math.unit(21.7, "lbs"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/argent/kobold-front.svg",
  9957. extra: 1471 / 1331,
  9958. bottom: 100.8 / 1575.5
  9959. },
  9960. form: "kobold",
  9961. default: true
  9962. },
  9963. dragonFront: {
  9964. height: math.unit(75, "inches"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/argent/dragon-front.svg",
  9968. extra: 1389/1248,
  9969. bottom: 54/1443
  9970. },
  9971. form: "dragon",
  9972. },
  9973. dragonBack: {
  9974. height: math.unit(75, "inches"),
  9975. name: "Back",
  9976. image: {
  9977. source: "./media/characters/argent/dragon-back.svg",
  9978. extra: 1399/1271,
  9979. bottom: 23/1422
  9980. },
  9981. form: "dragon",
  9982. },
  9983. dragonDressed: {
  9984. height: math.unit(75, "inches"),
  9985. name: "Dressed",
  9986. image: {
  9987. source: "./media/characters/argent/dragon-dressed.svg",
  9988. extra: 1350/1215,
  9989. bottom: 26/1376
  9990. },
  9991. form: "dragon"
  9992. },
  9993. dragonHead: {
  9994. height: math.unit(23.5, "inches"),
  9995. name: "Head",
  9996. image: {
  9997. source: "./media/characters/argent/dragon-head.svg"
  9998. },
  9999. form: "dragon",
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "inches"),
  10006. form: "kobold",
  10007. },
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(3 + 1 / 12, "feet"),
  10011. form: "kobold",
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(120, "feet"),
  10017. form: "kobold",
  10018. },
  10019. {
  10020. name: "Speck",
  10021. height: math.unit(1, "mm"),
  10022. form: "dragon",
  10023. },
  10024. {
  10025. name: "Tiny",
  10026. height: math.unit(1, "cm"),
  10027. form: "dragon",
  10028. },
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(5, "cm"),
  10032. form: "dragon",
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(75, "inches"),
  10037. form: "dragon",
  10038. default: true
  10039. },
  10040. {
  10041. name: "Extra Tall",
  10042. height: math.unit(9, "feet"),
  10043. form: "dragon",
  10044. },
  10045. {
  10046. name: "Inconvenient",
  10047. height: math.unit(5, "meters"),
  10048. form: "dragon",
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(70, "meters"),
  10053. form: "dragon",
  10054. },
  10055. {
  10056. name: "Macro+",
  10057. height: math.unit(250, "meters"),
  10058. form: "dragon",
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(20, "km"),
  10063. form: "dragon",
  10064. },
  10065. {
  10066. name: "Mountainous",
  10067. height: math.unit(100, "km"),
  10068. form: "dragon",
  10069. },
  10070. {
  10071. name: "Continental",
  10072. height: math.unit(2, "megameters"),
  10073. form: "dragon",
  10074. },
  10075. {
  10076. name: "Too Big",
  10077. height: math.unit(900, "megameters"),
  10078. form: "dragon",
  10079. },
  10080. ],
  10081. {
  10082. "kobold": {
  10083. name: "Kobold",
  10084. default: true
  10085. },
  10086. "dragon": {
  10087. name: "Dragon",
  10088. },
  10089. }
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10093. {
  10094. lamp: {
  10095. height: math.unit(7 * 1559 / 989, "feet"),
  10096. name: "Magic Lamp",
  10097. image: {
  10098. source: "./media/characters/mira-al-cul/lamp.svg",
  10099. extra: 1617 / 1559
  10100. }
  10101. },
  10102. front: {
  10103. height: math.unit(7, "feet"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/mira-al-cul/front.svg",
  10107. extra: 1044 / 990
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Heavily Restricted",
  10114. height: math.unit(7 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "Freshly Freed",
  10118. height: math.unit(50 * 1559 / 989, "feet")
  10119. },
  10120. {
  10121. name: "World Encompassing",
  10122. height: math.unit(10000 * 1559 / 989, "miles")
  10123. },
  10124. {
  10125. name: "Galactic",
  10126. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10127. },
  10128. {
  10129. name: "Palmed Universe",
  10130. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Multiversal Matriarch",
  10135. height: math.unit(8.87e10, "yottameters")
  10136. },
  10137. {
  10138. name: "Void Mother",
  10139. height: math.unit(3.14e110, "yottaparsecs")
  10140. },
  10141. {
  10142. name: "Toying with Transcendence",
  10143. height: math.unit(1e307, "meters")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10149. {
  10150. front: {
  10151. height: math.unit(17 + 1 / 12, "feet"),
  10152. weight: math.unit(476.2 * 5, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/kuro-shi-uchū/front.svg",
  10156. extra: 2329 / 1835,
  10157. bottom: 0.02
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(2, "inches")
  10165. },
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(12, "meters")
  10169. },
  10170. {
  10171. name: "Planetary",
  10172. height: math.unit(0.00929, "AU"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Universal",
  10177. height: math.unit(20, "gigaparsecs")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(5 + 2 / 12, "feet"),
  10186. weight: math.unit(120, "lbs"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/katherine/front.svg",
  10190. extra: 2075 / 1969
  10191. }
  10192. },
  10193. dress: {
  10194. height: math.unit(5 + 2 / 12, "feet"),
  10195. weight: math.unit(120, "lbs"),
  10196. name: "Dress",
  10197. image: {
  10198. source: "./media/characters/katherine/dress.svg",
  10199. extra: 2258 / 2064
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Micro",
  10206. height: math.unit(1, "inches"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(5 + 2 / 12, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(100, "meters")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(80, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(7 + 8 / 12, "feet"),
  10228. weight: math.unit(250, "lbs"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/yevis/front.svg",
  10232. extra: 1938 / 1755
  10233. }
  10234. }
  10235. },
  10236. [
  10237. {
  10238. name: "Mortal",
  10239. height: math.unit(7 + 8 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Battle",
  10243. height: math.unit(25 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Wrath",
  10247. height: math.unit(1654 + 11 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Planet Destroyer",
  10251. height: math.unit(12000, "miles")
  10252. },
  10253. {
  10254. name: "Galaxy Conqueror",
  10255. height: math.unit(1.45, "zettameters"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Universal War",
  10260. height: math.unit(184, "gigaparsecs")
  10261. },
  10262. {
  10263. name: "Eternity War",
  10264. height: math.unit(1.98e55, "yottaparsecs")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(5 + 8 / 12, "feet"),
  10273. weight: math.unit(63, "kg"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/xavier/front.svg",
  10277. extra: 944 / 883
  10278. }
  10279. },
  10280. frontStretch: {
  10281. height: math.unit(5 + 8 / 12, "feet"),
  10282. weight: math.unit(63, "kg"),
  10283. name: "Stretching",
  10284. image: {
  10285. source: "./media/characters/xavier/front-stretch.svg",
  10286. extra: 962 / 820
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(5 + 8 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(100, "meters"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "McLargeHuge",
  10302. height: math.unit(10, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(5 + 5 / 12, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/joshii/front.svg",
  10315. extra: 765 / 653,
  10316. bottom: 51 / 816
  10317. }
  10318. },
  10319. foot: {
  10320. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10321. name: "Foot",
  10322. image: {
  10323. source: "./media/characters/joshii/foot.svg"
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Micro",
  10330. height: math.unit(2, "inches")
  10331. },
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 5 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(785, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Megamacro",
  10343. height: math.unit(24.5, "miles")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(6, "feet"),
  10352. weight: math.unit(150, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/goddess-elizabeth/front.svg",
  10356. extra: 1800 / 1525,
  10357. bottom: 0.005
  10358. }
  10359. },
  10360. foot: {
  10361. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10362. name: "Foot",
  10363. image: {
  10364. source: "./media/characters/goddess-elizabeth/foot.svg"
  10365. }
  10366. },
  10367. mouth: {
  10368. height: math.unit(6, "feet"),
  10369. name: "Mouth",
  10370. image: {
  10371. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Micro",
  10378. height: math.unit(12, "feet")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(80, "miles"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(15000, "parsecs")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(5 + 9 / 12, "feet"),
  10396. weight: math.unit(144, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/kara/front.svg"
  10400. }
  10401. },
  10402. feet: {
  10403. height: math.unit(6 / 6.765, "feet"),
  10404. name: "Kara's Feet",
  10405. rename: true,
  10406. image: {
  10407. source: "./media/characters/kara/feet.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(5 + 9 / 12, "feet")
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(174, "feet"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(18, "feet"),
  10428. weight: math.unit(4050, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/tyrone/front.svg",
  10432. extra: 2405 / 2270,
  10433. bottom: 182 / 2587
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(18, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(300, "feet")
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(15, "km")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(500, "km")
  10454. },
  10455. {
  10456. name: "Teramacro",
  10457. height: math.unit(0.5, "gigameters")
  10458. },
  10459. {
  10460. name: "Omnimacro",
  10461. height: math.unit(1e252, "yottauniverse")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(7 + 8 / 12, "feet"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/danny/front.svg",
  10474. extra: 1490 / 1350
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(7 + 8 / 12, "feet"),
  10479. weight: math.unit(120, "lb"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/danny/back.svg",
  10483. extra: 1490 / 1350
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(7 + 8 / 12, "feet"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(3.5, "inches"),
  10500. weight: math.unit(19, "grams"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mallow/front.svg",
  10504. extra: 471 / 431
  10505. }
  10506. },
  10507. back: {
  10508. height: math.unit(3.5, "inches"),
  10509. weight: math.unit(19, "grams"),
  10510. name: "Back",
  10511. image: {
  10512. source: "./media/characters/mallow/back.svg",
  10513. extra: 471 / 431
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(3.5, "inches"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(9, "feet"),
  10530. weight: math.unit(230, "kg"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/starry-aqua/front.svg"
  10534. }
  10535. },
  10536. back: {
  10537. height: math.unit(9, "feet"),
  10538. weight: math.unit(230, "kg"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/starry-aqua/back.svg"
  10542. }
  10543. },
  10544. hand: {
  10545. height: math.unit(9 * 0.1168, "feet"),
  10546. name: "Hand",
  10547. image: {
  10548. source: "./media/characters/starry-aqua/hand.svg"
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(9 * 0.18, "feet"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/starry-aqua/foot.svg"
  10556. }
  10557. }
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(3, "inches")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(9, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(300, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(3200, "feet")
  10576. }
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(15, "feet"),
  10584. weight: math.unit(5026, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/luka-towers/front.svg",
  10588. extra: 1269/1133,
  10589. bottom: 51/1320
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(15, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(25, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(320, "feet")
  10606. },
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(35000, "feet")
  10610. },
  10611. {
  10612. name: "Gigamacro",
  10613. height: math.unit(4000, "miles")
  10614. },
  10615. {
  10616. name: "Teramacro",
  10617. height: math.unit(15000, "miles")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/natalie-nightring/front.svg",
  10630. extra: 1,
  10631. bottom: 0.06
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Uh Oh",
  10638. height: math.unit(0.1, "mm")
  10639. },
  10640. {
  10641. name: "Small",
  10642. height: math.unit(3, "inches")
  10643. },
  10644. {
  10645. name: "Human Scale",
  10646. height: math.unit(6, "feet")
  10647. },
  10648. {
  10649. name: "Librarian",
  10650. height: math.unit(50, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Immense",
  10655. height: math.unit(200, "miles")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(180, "lbs"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/danni-rosie/front.svg",
  10668. extra: 1260 / 1128,
  10669. bottom: 0.022
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Micro",
  10676. height: math.unit(2, "inches"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 9 / 12, "feet"),
  10686. weight: math.unit(220, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/samantha-kruse/front.svg",
  10690. extra: (985 / 935),
  10691. bottom: 0.03
  10692. }
  10693. },
  10694. frontUndressed: {
  10695. height: math.unit(5 + 9 / 12, "feet"),
  10696. weight: math.unit(220, "lb"),
  10697. name: "Front (Undressed)",
  10698. image: {
  10699. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10700. extra: (973 / 923),
  10701. bottom: 0.025
  10702. }
  10703. },
  10704. fat: {
  10705. height: math.unit(5 + 9 / 12, "feet"),
  10706. weight: math.unit(900, "lb"),
  10707. name: "Front (Fat)",
  10708. image: {
  10709. source: "./media/characters/samantha-kruse/fat.svg",
  10710. extra: 2688 / 2561
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5 + 9 / 12, "feet"),
  10718. default: true
  10719. }
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10724. {
  10725. back: {
  10726. height: math.unit(5 + 4 / 12, "feet"),
  10727. weight: math.unit(4963, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/amelia-rosie/back.svg",
  10731. extra: 1113 / 963,
  10732. bottom: 0.01
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Level 0",
  10739. height: math.unit(5 + 4 / 12, "feet")
  10740. },
  10741. {
  10742. name: "Level 1",
  10743. height: math.unit(164597, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Level 2",
  10748. height: math.unit(956243, "miles")
  10749. },
  10750. {
  10751. name: "Level 3",
  10752. height: math.unit(29421709423, "miles")
  10753. },
  10754. {
  10755. name: "Level 4",
  10756. height: math.unit(154, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 5",
  10760. height: math.unit(4738272, "lightyears")
  10761. },
  10762. {
  10763. name: "Level 6",
  10764. height: math.unit(145787152896, "lightyears")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(5 + 11 / 12, "feet"),
  10773. weight: math.unit(65, "kg"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/rook-kitara/front.svg",
  10777. extra: 1347 / 1274,
  10778. bottom: 0.005
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Totally Unfair",
  10785. height: math.unit(1.8, "mm")
  10786. },
  10787. {
  10788. name: "Lap Rookie",
  10789. height: math.unit(1.4, "feet")
  10790. },
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(5 + 11 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "How Did This Happen",
  10798. height: math.unit(80, "miles")
  10799. }
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(7, "feet"),
  10807. weight: math.unit(300, "lb"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/pisces/front.svg",
  10811. extra: 2255 / 2115,
  10812. bottom: 0.03
  10813. }
  10814. },
  10815. back: {
  10816. height: math.unit(7, "feet"),
  10817. weight: math.unit(300, "lb"),
  10818. name: "Back",
  10819. image: {
  10820. source: "./media/characters/pisces/back.svg",
  10821. extra: 2146 / 2055,
  10822. bottom: 0.04
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(7, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Swimming Pool",
  10834. height: math.unit(12.2, "meters")
  10835. },
  10836. {
  10837. name: "Olympic Swimming Pool",
  10838. height: math.unit(56.3, "meters")
  10839. },
  10840. {
  10841. name: "Lake Superior",
  10842. height: math.unit(93900, "meters")
  10843. },
  10844. {
  10845. name: "Mediterranean Sea",
  10846. height: math.unit(644457, "meters")
  10847. },
  10848. {
  10849. name: "World's Oceans",
  10850. height: math.unit(4567491, "meters")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(2.3, "meters"),
  10859. weight: math.unit(120, "kg"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/zelas/front.svg"
  10863. }
  10864. },
  10865. side: {
  10866. height: math.unit(2.3, "meters"),
  10867. weight: math.unit(120, "kg"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/zelas/side.svg"
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(2.3, "meters"),
  10875. weight: math.unit(120, "kg"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/zelas/back.svg"
  10879. }
  10880. },
  10881. foot: {
  10882. height: math.unit(1.116, "feet"),
  10883. name: "Foot",
  10884. image: {
  10885. source: "./media/characters/zelas/foot.svg"
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(2.3, "meters")
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(30, "meters"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10903. {
  10904. front: {
  10905. height: math.unit(1, "inch"),
  10906. weight: math.unit(0.21, "grams"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/talbot/front.svg",
  10910. extra: 594 / 544
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Micro",
  10917. height: math.unit(1, "inch"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10924. {
  10925. front: {
  10926. height: math.unit(3 + 3 / 12, "feet"),
  10927. weight: math.unit(51.8, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/fliss/front.svg",
  10931. extra: 840 / 640
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Teeny Tiny",
  10938. height: math.unit(1, "mm")
  10939. },
  10940. {
  10941. name: "Small",
  10942. height: math.unit(1, "inch"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Standard Sylveon",
  10947. height: math.unit(3 + 3 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Large Nuisance",
  10951. height: math.unit(33, "feet")
  10952. },
  10953. {
  10954. name: "City Filler",
  10955. height: math.unit(3000, "feet")
  10956. },
  10957. {
  10958. name: "New Horizon",
  10959. height: math.unit(6000, "miles")
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(5, "cm"),
  10968. weight: math.unit(1.94, "g"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/fleta/front.svg",
  10972. extra: 835 / 803
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(5, "cm"),
  10977. weight: math.unit(1.94, "g"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/fleta/back.svg",
  10981. extra: 835 / 803
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(5, "cm"),
  10989. default: true
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(6, "feet"),
  10998. weight: math.unit(225, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/dominic/front.svg",
  11002. extra: 1770 / 1620,
  11003. bottom: 0.025
  11004. }
  11005. },
  11006. back: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(225, "lb"),
  11009. name: "Back",
  11010. image: {
  11011. source: "./media/characters/dominic/back.svg",
  11012. extra: 1745 / 1620,
  11013. bottom: 0.065
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Nano",
  11020. height: math.unit(0.1, "mm")
  11021. },
  11022. {
  11023. name: "Micro-",
  11024. height: math.unit(1, "mm")
  11025. },
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(4, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(6 + 4 / 12, "feet"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(115, "feet")
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(955, "feet")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(8990, "feet")
  11046. },
  11047. {
  11048. name: "Gigmacro",
  11049. height: math.unit(9310, "miles")
  11050. },
  11051. {
  11052. name: "Teramacro",
  11053. height: math.unit(1567005010, "miles")
  11054. },
  11055. {
  11056. name: "Examacro",
  11057. height: math.unit(1425, "parsecs")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(400, "feet"),
  11066. weight: math.unit(44444444, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/major-colonel/front.svg"
  11070. }
  11071. },
  11072. back: {
  11073. height: math.unit(400, "feet"),
  11074. weight: math.unit(44444444, "lb"),
  11075. name: "Back",
  11076. image: {
  11077. source: "./media/characters/major-colonel/back.svg"
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(400, "feet"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11091. {
  11092. catFront: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(120, "lb"),
  11095. name: "Front (Cat Side)",
  11096. image: {
  11097. source: "./media/characters/axel-lycan/cat-front.svg",
  11098. extra: 430 / 402,
  11099. bottom: 43 / 472.35
  11100. }
  11101. },
  11102. catBack: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(120, "lb"),
  11105. name: "Back (Cat Side)",
  11106. image: {
  11107. source: "./media/characters/axel-lycan/cat-back.svg",
  11108. extra: 447 / 419,
  11109. bottom: 23.3 / 469
  11110. }
  11111. },
  11112. wolfFront: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(120, "lb"),
  11115. name: "Front (Wolf Side)",
  11116. image: {
  11117. source: "./media/characters/axel-lycan/wolf-front.svg",
  11118. extra: 485 / 456,
  11119. bottom: 19 / 504
  11120. }
  11121. },
  11122. wolfBack: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(120, "lb"),
  11125. name: "Back (Wolf Side)",
  11126. image: {
  11127. source: "./media/characters/axel-lycan/wolf-back.svg",
  11128. extra: 475 / 438,
  11129. bottom: 39.2 / 514
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(1, "km"),
  11137. default: true
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(5 + 9 / 12, "feet"),
  11146. weight: math.unit(175, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/vanrel-hyena/front.svg",
  11150. extra: 1086 / 1010,
  11151. bottom: 0.04
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Normal",
  11158. height: math.unit(5 + 9 / 12, "feet"),
  11159. default: true
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(103, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/abbott-absol/front.svg",
  11172. extra: 765/694,
  11173. bottom: 47/812
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Megamicro",
  11180. height: math.unit(0.1, "mm")
  11181. },
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(1, "inch")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(6, "feet"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(264, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/hector/front.svg",
  11202. extra: 2280 / 2130,
  11203. bottom: 0.07
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(12.25, "foot"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(160, "feet")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/sal/front.svg",
  11228. extra: 1846 / 1699,
  11229. bottom: 0.04
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(10, "miles"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11243. {
  11244. front: {
  11245. height: math.unit(3, "meters"),
  11246. weight: math.unit(450, "kg"),
  11247. name: "front",
  11248. image: {
  11249. source: "./media/characters/ranger/front.svg",
  11250. extra: 2401 / 2243,
  11251. bottom: 0.05
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(3, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(14, "feet"),
  11268. weight: math.unit(800, "kg"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/theresa/front.svg",
  11272. extra: 3575 / 3346,
  11273. bottom: 0.03
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(14, "feet"),
  11281. default: true
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(3, "kg"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/ine/front.svg",
  11294. extra: 678 / 539,
  11295. bottom: 0.023
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(2.265, "feet"),
  11303. default: true
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11309. {
  11310. front: {
  11311. height: math.unit(5, "feet"),
  11312. weight: math.unit(30, "kg"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/vial/front.svg",
  11316. extra: 1365 / 1277,
  11317. bottom: 0.04
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(5, "feet"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11331. {
  11332. side: {
  11333. height: math.unit(3.4, "meters"),
  11334. weight: math.unit(1000, "lb"),
  11335. name: "Side",
  11336. image: {
  11337. source: "./media/characters/rovoska/side.svg",
  11338. extra: 4403 / 1515
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(3.4, "meters"),
  11346. default: true
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(8, "feet"),
  11355. weight: math.unit(315, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/gunner-rotthbauer/front.svg"
  11359. }
  11360. },
  11361. back: {
  11362. height: math.unit(8, "feet"),
  11363. weight: math.unit(315, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/gunner-rotthbauer/back.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(3.5, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(250, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(1, "AU")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(5 + 5 / 12, "feet"),
  11395. weight: math.unit(140, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/allatia/front.svg",
  11399. extra: 1227 / 1180,
  11400. bottom: 0.027
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(5 + 5 / 12, "feet")
  11408. },
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(250, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(8, "miles")
  11417. }
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(120, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/tene/front.svg",
  11429. extra: 814/750,
  11430. bottom: 36/850
  11431. }
  11432. },
  11433. stomping: {
  11434. height: math.unit(2.025, "meters"),
  11435. weight: math.unit(120, "lb"),
  11436. name: "Stomping",
  11437. image: {
  11438. source: "./media/characters/tene/stomping.svg",
  11439. extra: 885/821,
  11440. bottom: 15/900
  11441. }
  11442. },
  11443. sitting: {
  11444. height: math.unit(1, "meter"),
  11445. weight: math.unit(120, "lb"),
  11446. name: "Sitting",
  11447. image: {
  11448. source: "./media/characters/tene/sitting.svg",
  11449. extra: 396/366,
  11450. bottom: 79/475
  11451. }
  11452. },
  11453. smiling: {
  11454. height: math.unit(1.2, "feet"),
  11455. name: "Smiling",
  11456. image: {
  11457. source: "./media/characters/tene/smiling.svg",
  11458. extra: 1364/1071,
  11459. bottom: 0/1364
  11460. }
  11461. },
  11462. smug: {
  11463. height: math.unit(1.3, "feet"),
  11464. name: "Smug",
  11465. image: {
  11466. source: "./media/characters/tene/smug.svg",
  11467. extra: 1323/1082,
  11468. bottom: 0/1323
  11469. }
  11470. },
  11471. feral: {
  11472. height: math.unit(3.9, "feet"),
  11473. weight: math.unit(250, "lb"),
  11474. name: "Feral",
  11475. image: {
  11476. source: "./media/characters/tene/feral.svg",
  11477. extra: 717 / 458,
  11478. bottom: 0.179
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(6, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(300, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(5, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11500. {
  11501. side: {
  11502. height: math.unit(6, "feet"),
  11503. name: "Side",
  11504. image: {
  11505. source: "./media/characters/evander/side.svg",
  11506. extra: 877 / 477
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(0.83, "meters"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(12, "feet"),
  11523. weight: math.unit(1000, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11527. extra: 1762 / 1611
  11528. }
  11529. },
  11530. back: {
  11531. height: math.unit(12, "feet"),
  11532. weight: math.unit(1000, "lb"),
  11533. name: "Back",
  11534. image: {
  11535. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11536. extra: 1762 / 1611
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Kaiju",
  11548. height: math.unit(150, "feet")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(5 + 11/12, "feet"),
  11557. weight: math.unit(180, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/zero-alurus/front.svg",
  11561. extra: 1032/957,
  11562. bottom: 10/1042
  11563. }
  11564. },
  11565. back: {
  11566. height: math.unit(5 + 11/12, "feet"),
  11567. weight: math.unit(180, "lb"),
  11568. name: "Back",
  11569. image: {
  11570. source: "./media/characters/zero-alurus/back.svg",
  11571. extra: 1027/950,
  11572. bottom: 12/1039
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(5 + 11 / 12, "feet")
  11580. },
  11581. {
  11582. name: "Mini-Macro",
  11583. height: math.unit(25, "feet")
  11584. },
  11585. {
  11586. name: "Macro",
  11587. height: math.unit(90, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(500, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(1200, "feet")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(200, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/mega-shi/front.svg",
  11609. extra: 1279 / 1250,
  11610. bottom: 0.02
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(200, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/mega-shi/back.svg",
  11619. extra: 1279 / 1250,
  11620. bottom: 0.02
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Micro",
  11627. height: math.unit(16 + 6 / 12, "feet")
  11628. },
  11629. {
  11630. name: "Third Dimension",
  11631. height: math.unit(40, "meters")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(660, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(10, "miles")
  11641. },
  11642. {
  11643. name: "Planetary Launch",
  11644. height: math.unit(500, "miles")
  11645. },
  11646. {
  11647. name: "Interstellar",
  11648. height: math.unit(1e9, "miles")
  11649. },
  11650. {
  11651. name: "Leaving the Universe",
  11652. height: math.unit(1, "gigaparsec")
  11653. },
  11654. {
  11655. name: "Travelling Universes",
  11656. height: math.unit(30e15, "parsecs")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(5 + 4/12, "feet"),
  11665. weight: math.unit(120, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/odyssey/front.svg",
  11669. extra: 1747/1571,
  11670. bottom: 47/1794
  11671. }
  11672. },
  11673. side: {
  11674. height: math.unit(5.1, "feet"),
  11675. weight: math.unit(120, "lb"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/odyssey/side.svg",
  11679. extra: 1847/1619,
  11680. bottom: 47/1894
  11681. }
  11682. },
  11683. lounging: {
  11684. height: math.unit(1.464, "feet"),
  11685. weight: math.unit(120, "lb"),
  11686. name: "Lounging",
  11687. image: {
  11688. source: "./media/characters/odyssey/lounging.svg",
  11689. extra: 1235/837,
  11690. bottom: 551/1786
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(5 + 4 / 12, "feet")
  11698. },
  11699. {
  11700. name: "Macro",
  11701. height: math.unit(1, "km")
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(3000, "km")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(1, "AU"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Omniversal",
  11714. height: math.unit(100e14, "lightyears")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(5 + 10/12, "feet"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/mekuto/front.svg",
  11726. extra: 875/835,
  11727. bottom: 46/921
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Minimicro",
  11734. height: math.unit(0.2, "inches")
  11735. },
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(1.5, "inches")
  11739. },
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(5 + 10 / 12, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Minimacro",
  11747. height: math.unit(17 + 9 / 12, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(177.5, "feet")
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(152, "miles")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11761. {
  11762. front: {
  11763. height: math.unit(6.5, "inches"),
  11764. weight: math.unit(13, "oz"),
  11765. name: "Front",
  11766. image: {
  11767. source: "./media/characters/dafydd-tomos/front.svg",
  11768. extra: 2990 / 2603,
  11769. bottom: 0.03
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Micro",
  11776. height: math.unit(6.5, "inches"),
  11777. default: true
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/splinter/front.svg",
  11790. extra: 2990 / 2882,
  11791. bottom: 0.04
  11792. }
  11793. },
  11794. back: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Back",
  11798. image: {
  11799. source: "./media/characters/splinter/back.svg",
  11800. extra: 2990 / 2882,
  11801. bottom: 0.04
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(6, "feet")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(230, "meters"),
  11813. default: true
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(4 + 10 / 12, "feet"),
  11822. weight: math.unit(480, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/snow-gabumon/front.svg",
  11826. extra: 1140 / 963,
  11827. bottom: 0.058
  11828. }
  11829. },
  11830. back: {
  11831. height: math.unit(4 + 10 / 12, "feet"),
  11832. weight: math.unit(480, "lb"),
  11833. name: "Back",
  11834. image: {
  11835. source: "./media/characters/snow-gabumon/back.svg",
  11836. extra: 1115 / 962,
  11837. bottom: 0.041
  11838. }
  11839. },
  11840. frontUndresed: {
  11841. height: math.unit(4 + 10 / 12, "feet"),
  11842. weight: math.unit(480, "lb"),
  11843. name: "Front (Undressed)",
  11844. image: {
  11845. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11846. extra: 1061 / 960,
  11847. bottom: 0.045
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(1, "inch")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(4 + 10 / 12, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(200, "feet")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(120, "miles")
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(9800, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(1.7, "meters"),
  11880. weight: math.unit(140, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/moody/front.svg",
  11884. extra: 3226 / 3007,
  11885. bottom: 0.087
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(1, "mm")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(1.7, "meters"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(80, "meters")
  11902. },
  11903. {
  11904. name: "Macro+",
  11905. height: math.unit(500, "meters")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/zyas/front.svg",
  11918. extra: 1180 / 1120,
  11919. bottom: 0.045
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(10, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(500, "feet")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(5, "miles")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(150000, "miles")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(150, "lb"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/cuon/front.svg",
  11952. extra: 1390 / 1320,
  11953. bottom: 0.008
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(3, "inches")
  11961. },
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(18 + 9 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(360, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(360, "miles")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(2.4, "meters"),
  11982. weight: math.unit(70, "kg"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/nyanuxk/front.svg",
  11986. extra: 1172 / 1084,
  11987. bottom: 0.065
  11988. }
  11989. },
  11990. side: {
  11991. height: math.unit(2.4, "meters"),
  11992. weight: math.unit(70, "kg"),
  11993. name: "Side",
  11994. image: {
  11995. source: "./media/characters/nyanuxk/side.svg",
  11996. extra: 1190 / 1132,
  11997. bottom: 0.007
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(2.4, "meters"),
  12002. weight: math.unit(70, "kg"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/nyanuxk/back.svg",
  12006. extra: 1200 / 1141,
  12007. bottom: 0.015
  12008. }
  12009. },
  12010. foot: {
  12011. height: math.unit(0.52, "meters"),
  12012. name: "Foot",
  12013. image: {
  12014. source: "./media/characters/nyanuxk/foot.svg"
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Micro",
  12021. height: math.unit(2, "cm")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(2.4, "meters"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Smaller Macro",
  12030. height: math.unit(120, "meters")
  12031. },
  12032. {
  12033. name: "Bigger Macro",
  12034. height: math.unit(1.2, "km")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(15, "kilometers")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(2000, "km")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(500000, "km")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12052. {
  12053. side: {
  12054. height: math.unit(6, "feet"),
  12055. name: "Side",
  12056. image: {
  12057. source: "./media/characters/ailbhe/side.svg",
  12058. extra: 757 / 464,
  12059. bottom: 0.041
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(1.07, "meters"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(120, "kg"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/zevulfius/front.svg",
  12080. extra: 965 / 903
  12081. }
  12082. },
  12083. side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(120, "kg"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/zevulfius/side.svg",
  12089. extra: 939 / 900
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(120, "kg"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/zevulfius/back.svg",
  12098. extra: 918 / 854,
  12099. bottom: 0.005
  12100. }
  12101. },
  12102. foot: {
  12103. height: math.unit(6 / 3.72, "feet"),
  12104. name: "Foot",
  12105. image: {
  12106. source: "./media/characters/zevulfius/foot.svg"
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(750, "meters")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(20, "km"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(2000, "km")
  12123. },
  12124. {
  12125. name: "Teramacro",
  12126. height: math.unit(250000, "km")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(100, "feet"),
  12135. weight: math.unit(350, "kg"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/rikes/front.svg",
  12139. extra: 1565 / 1483,
  12140. bottom: 0.017
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Macro",
  12147. height: math.unit(100, "feet"),
  12148. default: true
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(8, "feet"),
  12157. weight: math.unit(356, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/adam-silver-mane/front.svg",
  12161. extra: 1036/937,
  12162. bottom: 63/1099
  12163. }
  12164. },
  12165. side: {
  12166. height: math.unit(8, "feet"),
  12167. weight: math.unit(356, "lb"),
  12168. name: "Side",
  12169. image: {
  12170. source: "./media/characters/adam-silver-mane/side.svg",
  12171. extra: 997/901,
  12172. bottom: 59/1056
  12173. }
  12174. },
  12175. frontNsfw: {
  12176. height: math.unit(8, "feet"),
  12177. weight: math.unit(356, "lb"),
  12178. name: "Front (NSFW)",
  12179. image: {
  12180. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12181. extra: 1036/937,
  12182. bottom: 63/1099
  12183. }
  12184. },
  12185. sideNsfw: {
  12186. height: math.unit(8, "feet"),
  12187. weight: math.unit(356, "lb"),
  12188. name: "Side (NSFW)",
  12189. image: {
  12190. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12191. extra: 997/901,
  12192. bottom: 59/1056
  12193. }
  12194. },
  12195. dick: {
  12196. height: math.unit(2.1, "feet"),
  12197. name: "Dick",
  12198. image: {
  12199. source: "./media/characters/adam-silver-mane/dick.svg"
  12200. }
  12201. },
  12202. taur: {
  12203. height: math.unit(16, "feet"),
  12204. weight: math.unit(1500, "kg"),
  12205. name: "Taur",
  12206. image: {
  12207. source: "./media/characters/adam-silver-mane/taur.svg",
  12208. extra: 1713 / 1571,
  12209. bottom: 0.01
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(8, "feet")
  12217. },
  12218. {
  12219. name: "Minimacro",
  12220. height: math.unit(80, "feet")
  12221. },
  12222. {
  12223. name: "MDA",
  12224. height: math.unit(80, "meters")
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(800, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Megamacro",
  12233. height: math.unit(8000, "feet")
  12234. },
  12235. {
  12236. name: "Gigamacro",
  12237. height: math.unit(800, "miles")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(80000, "miles")
  12242. },
  12243. {
  12244. name: "Celestial",
  12245. height: math.unit(8e6, "miles")
  12246. },
  12247. {
  12248. name: "Star Dragon",
  12249. height: math.unit(800000, "parsecs")
  12250. },
  12251. {
  12252. name: "Godly",
  12253. height: math.unit(800, "teraparsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/ky'owin/front.svg",
  12266. extra: 3862/3053,
  12267. bottom: 74/3936
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(6 + 8 / 12, "feet")
  12275. },
  12276. {
  12277. name: "Large",
  12278. height: math.unit(68, "feet")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(132, "feet")
  12283. },
  12284. {
  12285. name: "Macro+",
  12286. height: math.unit(340, "feet")
  12287. },
  12288. {
  12289. name: "Macro++",
  12290. height: math.unit(680, "feet"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Megamacro",
  12295. height: math.unit(1, "mile")
  12296. },
  12297. {
  12298. name: "Megamacro+",
  12299. height: math.unit(10, "miles")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(4, "feet"),
  12308. weight: math.unit(50, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/mal/front.svg",
  12312. extra: 785 / 724,
  12313. bottom: 0.07
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Micro",
  12320. height: math.unit(4, "inches")
  12321. },
  12322. {
  12323. name: "Normal",
  12324. height: math.unit(4, "feet"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(200, "feet")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/jordan-deware/front.svg",
  12342. extra: 1191 / 1012
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Nano",
  12349. height: math.unit(0.01, "mm")
  12350. },
  12351. {
  12352. name: "Minimicro",
  12353. height: math.unit(1, "mm")
  12354. },
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(0.5, "inches")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(4, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Minimacro",
  12366. height: math.unit(40, "meters")
  12367. },
  12368. {
  12369. name: "Small Macro",
  12370. height: math.unit(400, "meters")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(4, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(40, "miles")
  12379. },
  12380. {
  12381. name: "Megamacro+",
  12382. height: math.unit(400, "miles")
  12383. },
  12384. {
  12385. name: "Gigamacro",
  12386. height: math.unit(400000, "miles")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(15, "feet"),
  12395. weight: math.unit(3000, "kg"),
  12396. preyCapacity: math.unit(450, "people"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/kimiko/front.svg",
  12400. extra: 875/832,
  12401. bottom: 36/911
  12402. },
  12403. extraAttributes: {
  12404. "pawSize": {
  12405. name: "Paw Size",
  12406. power: 1,
  12407. type: "length",
  12408. base: math.unit(0.9, "meters")
  12409. },
  12410. }
  12411. },
  12412. side: {
  12413. height: math.unit(15, "feet"),
  12414. weight: math.unit(3000, "kg"),
  12415. preyCapacity: math.unit(400, "people"),
  12416. name: "Side",
  12417. image: {
  12418. source: "./media/characters/kimiko/side.svg",
  12419. extra: 448/270,
  12420. bottom: 7/455
  12421. },
  12422. extraAttributes: {
  12423. "pawSize": {
  12424. name: "Paw Size",
  12425. power: 1,
  12426. type: "length",
  12427. base: math.unit(0.9, "meters")
  12428. },
  12429. }
  12430. },
  12431. maw: {
  12432. height: math.unit(0.81, "feet"),
  12433. name: "Maw",
  12434. image: {
  12435. source: "./media/characters/kimiko/maw.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(15, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(220, "feet")
  12448. },
  12449. {
  12450. name: "Macro+",
  12451. height: math.unit(1450, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(11500, "feet")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(9500, "miles")
  12460. },
  12461. {
  12462. name: "Teramacro",
  12463. height: math.unit(2208005005, "miles")
  12464. },
  12465. {
  12466. name: "Examacro",
  12467. height: math.unit(2750, "parsecs")
  12468. },
  12469. {
  12470. name: "Zettamacro",
  12471. height: math.unit(101500, "parsecs")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(70, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/andrew-sleepy/front.svg"
  12484. }
  12485. },
  12486. side: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(70, "kg"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/andrew-sleepy/side.svg"
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(1, "mm"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/judio/front.svg",
  12512. extra: 1258 / 1110
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(5 + 6 / 12, "feet")
  12520. },
  12521. {
  12522. name: "Macro",
  12523. height: math.unit(1000, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(10, "miles")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12534. {
  12535. frontDressed: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(68, "kg"),
  12538. name: "Front (Dressed)",
  12539. image: {
  12540. source: "./media/characters/nomaxice/front-dressed.svg",
  12541. extra: 1137/824,
  12542. bottom: 74/1211
  12543. }
  12544. },
  12545. frontShorts: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(68, "kg"),
  12548. name: "Front (Shorts)",
  12549. image: {
  12550. source: "./media/characters/nomaxice/front-shorts.svg",
  12551. extra: 1137/824,
  12552. bottom: 74/1211
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(68, "kg"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/nomaxice/back.svg",
  12561. extra: 822/786,
  12562. bottom: 39/861
  12563. }
  12564. },
  12565. hand: {
  12566. height: math.unit(0.565, "feet"),
  12567. name: "Hand",
  12568. image: {
  12569. source: "./media/characters/nomaxice/hand.svg"
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(1, "feet"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/nomaxice/foot.svg"
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(8, "cm")
  12584. },
  12585. {
  12586. name: "Norm",
  12587. height: math.unit(1.82, "m")
  12588. },
  12589. {
  12590. name: "Norm+",
  12591. height: math.unit(8.8, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Big",
  12596. height: math.unit(8, "meters")
  12597. },
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(18, "meters")
  12601. },
  12602. {
  12603. name: "Macro+",
  12604. height: math.unit(88, "meters")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(12, "feet"),
  12613. weight: math.unit(1.5, "tons"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/dydros/front.svg",
  12617. extra: 863 / 800,
  12618. bottom: 0.015
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(12, "feet"),
  12623. weight: math.unit(1.5, "tons"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/dydros/back.svg",
  12627. extra: 900 / 843,
  12628. bottom: 0.005
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(12, "feet"),
  12636. default: true
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(100, "kg"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/riggi/front.svg",
  12649. extra: 5787 / 5303
  12650. }
  12651. },
  12652. hyper: {
  12653. height: math.unit(6 * 5 / 3, "feet"),
  12654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12655. name: "Hyper",
  12656. image: {
  12657. source: "./media/characters/riggi/hyper.svg",
  12658. extra: 3595 / 3485
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Small Macro",
  12665. height: math.unit(50, "feet")
  12666. },
  12667. {
  12668. name: "Default",
  12669. height: math.unit(200, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Loom",
  12674. height: math.unit(10000, "feet")
  12675. },
  12676. {
  12677. name: "Cruising Altitude",
  12678. height: math.unit(30000, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(100, "miles")
  12683. },
  12684. {
  12685. name: "Continent Sized",
  12686. height: math.unit(2800, "miles")
  12687. },
  12688. {
  12689. name: "Earth Sized",
  12690. height: math.unit(8000, "miles")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(250, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/alexi/front.svg",
  12703. extra: 3483 / 3291,
  12704. bottom: 0.04
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(250, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/alexi/back.svg",
  12713. extra: 3533 / 3356,
  12714. bottom: 0.021
  12715. }
  12716. },
  12717. frontTransforming: {
  12718. height: math.unit(8.58, "feet"),
  12719. weight: math.unit(1300, "lb"),
  12720. name: "Transforming",
  12721. image: {
  12722. source: "./media/characters/alexi/front-transforming.svg",
  12723. extra: 437 / 409,
  12724. bottom: 19 / 458.66
  12725. }
  12726. },
  12727. frontTransformed: {
  12728. height: math.unit(12.5, "feet"),
  12729. weight: math.unit(4000, "lb"),
  12730. name: "Transformed",
  12731. image: {
  12732. source: "./media/characters/alexi/front-transformed.svg",
  12733. extra: 639 / 614,
  12734. bottom: 30.55 / 671
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(14, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Minimacro",
  12746. height: math.unit(30, "meters")
  12747. },
  12748. {
  12749. name: "Macro",
  12750. height: math.unit(500, "meters")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(9000, "km")
  12755. },
  12756. {
  12757. name: "Teramacro",
  12758. height: math.unit(384000, "km")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/kayroo/front.svg",
  12771. extra: 1153 / 1038,
  12772. bottom: 0.06
  12773. }
  12774. },
  12775. foot: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Foot",
  12779. image: {
  12780. source: "./media/characters/kayroo/foot.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(8, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Minimacro",
  12792. height: math.unit(250, "feet")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(2800, "feet")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(5200, "feet")
  12801. },
  12802. {
  12803. name: "Gigamacro",
  12804. height: math.unit(27000, "feet")
  12805. },
  12806. {
  12807. name: "Omega",
  12808. height: math.unit(45000, "feet")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(18, "feet"),
  12817. weight: math.unit(5800, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/rhys/front.svg",
  12821. extra: 3386 / 3090,
  12822. bottom: 0.07
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(18, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Working Size",
  12834. height: math.unit(200, "feet")
  12835. },
  12836. {
  12837. name: "Demolition Size",
  12838. height: math.unit(2000, "feet")
  12839. },
  12840. {
  12841. name: "Maximum Licensed Size",
  12842. height: math.unit(5, "miles")
  12843. },
  12844. {
  12845. name: "Maximum Observed Size",
  12846. height: math.unit(10, "yottameters")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(250, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/toto/front.svg",
  12859. extra: 527 / 479,
  12860. bottom: 0.05
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Micro",
  12867. height: math.unit(3, "feet")
  12868. },
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(10, "feet")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(150, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Megamacro",
  12880. height: math.unit(1200, "feet")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "King", species: ["lion"], tags: ["anthro"] },
  12886. {
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/king/back.svg"
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Micro",
  12899. height: math.unit(2, "inches")
  12900. },
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(8, "feet")
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(200, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(50, "miles")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(11, "feet"),
  12921. weight: math.unit(1400, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/cordite/front.svg",
  12925. extra: 1919/1827,
  12926. bottom: 40/1959
  12927. }
  12928. },
  12929. side: {
  12930. height: math.unit(11, "feet"),
  12931. weight: math.unit(1400, "lb"),
  12932. name: "Side",
  12933. image: {
  12934. source: "./media/characters/cordite/side.svg",
  12935. extra: 1908/1793,
  12936. bottom: 38/1946
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(11, "feet"),
  12941. weight: math.unit(1400, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/cordite/back.svg",
  12945. extra: 1938/1837,
  12946. bottom: 10/1948
  12947. }
  12948. },
  12949. feral: {
  12950. height: math.unit(2, "feet"),
  12951. weight: math.unit(90, "lb"),
  12952. name: "Feral",
  12953. image: {
  12954. source: "./media/characters/cordite/feral.svg",
  12955. extra: 1260 / 755,
  12956. bottom: 0.05
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(11, "feet"),
  12964. default: true
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/pianostrong/front.svg",
  12977. extra: 6577 / 6254,
  12978. bottom: 0.02
  12979. }
  12980. },
  12981. side: {
  12982. height: math.unit(6, "feet"),
  12983. weight: math.unit(150, "lb"),
  12984. name: "Side",
  12985. image: {
  12986. source: "./media/characters/pianostrong/side.svg",
  12987. extra: 6106 / 5730
  12988. }
  12989. },
  12990. back: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/pianostrong/back.svg",
  12996. extra: 6085 / 5733,
  12997. bottom: 0.01
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(100, "feet")
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(300, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Macro++",
  13013. height: math.unit(1000, "feet")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13019. {
  13020. front: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/kona/front.svg",
  13026. extra: 2960 / 2629,
  13027. bottom: 0.005
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(11 + 8 / 12, "feet")
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(850, "feet"),
  13039. default: true
  13040. },
  13041. {
  13042. name: "Macro+",
  13043. height: math.unit(1.5, "km"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(80, "miles")
  13049. },
  13050. {
  13051. name: "Gigamacro",
  13052. height: math.unit(3500, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13058. {
  13059. side: {
  13060. height: math.unit(1.9, "meters"),
  13061. weight: math.unit(326, "kg"),
  13062. name: "Side",
  13063. image: {
  13064. source: "./media/characters/levi/side.svg",
  13065. extra: 1704 / 1334,
  13066. bottom: 0.02
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(1.9, "meters"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(20, "meters")
  13079. },
  13080. {
  13081. name: "Macro+",
  13082. height: math.unit(200, "meters")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(2, "km")
  13087. },
  13088. {
  13089. name: "Megamacro+",
  13090. height: math.unit(20, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(2500, "km")
  13095. },
  13096. {
  13097. name: "Gigamacro+",
  13098. height: math.unit(120000, "km")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(7.77e6, "km")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6 + 4/12, "feet"),
  13111. weight: math.unit(190, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/bmc/front.svg",
  13115. extra: 1626/1472,
  13116. bottom: 79/1705
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6 + 4/12, "feet"),
  13121. weight: math.unit(190, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/bmc/back.svg",
  13125. extra: 1640/1479,
  13126. bottom: 45/1685
  13127. }
  13128. },
  13129. frontArmor: {
  13130. height: math.unit(6 + 4/12, "feet"),
  13131. weight: math.unit(190, "lb"),
  13132. name: "Front-armor",
  13133. image: {
  13134. source: "./media/characters/bmc/front-armor.svg",
  13135. extra: 1538/1468,
  13136. bottom: 79/1617
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Human-sized",
  13143. height: math.unit(6 + 4 / 12, "feet")
  13144. },
  13145. {
  13146. name: "Interactive Size",
  13147. height: math.unit(25, "feet")
  13148. },
  13149. {
  13150. name: "Small",
  13151. height: math.unit(250, "feet")
  13152. },
  13153. {
  13154. name: "Normal",
  13155. height: math.unit(1250, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Good Day",
  13160. height: math.unit(88, "miles")
  13161. },
  13162. {
  13163. name: "Largest Measured Size",
  13164. height: math.unit(105.960, "galaxies")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(20, "feet"),
  13173. weight: math.unit(2016, "kg"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/sven-the-kaiju/front.svg",
  13177. extra: 1277/1250,
  13178. bottom: 35/1312
  13179. }
  13180. },
  13181. mouth: {
  13182. height: math.unit(1.85, "feet"),
  13183. name: "Mouth",
  13184. image: {
  13185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Fairy",
  13192. height: math.unit(6, "inches")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(20, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Rampage",
  13201. height: math.unit(200, "feet")
  13202. },
  13203. {
  13204. name: "Archfey Forest Guardian",
  13205. height: math.unit(1, "mile")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(4, "meters"),
  13214. weight: math.unit(2, "tons"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/marik/front.svg",
  13218. extra: 1057 / 1003,
  13219. bottom: 0.08
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(4, "meters"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(20, "meters")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(50, "km")
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(100, "km")
  13240. },
  13241. {
  13242. name: "Alpha Macro",
  13243. height: math.unit(7.88e7, "yottameters")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(110, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/mel/front.svg",
  13256. extra: 736 / 617,
  13257. bottom: 0.017
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Pico",
  13264. height: math.unit(3, "pm")
  13265. },
  13266. {
  13267. name: "Nano",
  13268. height: math.unit(3, "nm")
  13269. },
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(0.3, "mm"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Micro+",
  13277. height: math.unit(3, "mm")
  13278. },
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(5 + 10.5 / 12, "feet")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13287. {
  13288. kaiju: {
  13289. height: math.unit(1.75, "meters"),
  13290. weight: math.unit(55, "kg"),
  13291. name: "Kaiju",
  13292. image: {
  13293. source: "./media/characters/lykonous/kaiju.svg",
  13294. extra: 1055 / 946,
  13295. bottom: 0.135
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(2.5, "meters"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Kaiju Dragon",
  13307. height: math.unit(60, "meters")
  13308. },
  13309. {
  13310. name: "Mega Kaiju",
  13311. height: math.unit(120, "km")
  13312. },
  13313. {
  13314. name: "Giga Kaiju",
  13315. height: math.unit(200, "megameters")
  13316. },
  13317. {
  13318. name: "Terra Kaiju",
  13319. height: math.unit(400, "gigameters")
  13320. },
  13321. {
  13322. name: "Kaiju Dragon God",
  13323. height: math.unit(13000, "exaparsecs")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/blü/front.svg",
  13336. extra: 1883 / 1564,
  13337. bottom: 0.031
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(13, "feet"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Big Boi",
  13349. height: math.unit(150, "meters")
  13350. },
  13351. {
  13352. name: "Mini Stomper",
  13353. height: math.unit(300, "meters")
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(1000, "meters")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(11000, "meters")
  13362. },
  13363. {
  13364. name: "Gigamacro",
  13365. height: math.unit(11000, "km")
  13366. },
  13367. {
  13368. name: "Teramacro",
  13369. height: math.unit(420000, "km")
  13370. },
  13371. {
  13372. name: "Examacro",
  13373. height: math.unit(120, "parsecs")
  13374. },
  13375. {
  13376. name: "God Tho",
  13377. height: math.unit(98000000000, "parsecs")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13383. {
  13384. taurFront: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(200, "lb"),
  13387. name: "Taur (Front)",
  13388. image: {
  13389. source: "./media/characters/scales/taur-front.svg",
  13390. extra: 1,
  13391. bottom: 0.05
  13392. }
  13393. },
  13394. taurBack: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(200, "lb"),
  13397. name: "Taur (Back)",
  13398. image: {
  13399. source: "./media/characters/scales/taur-back.svg",
  13400. extra: 1,
  13401. bottom: 0.08
  13402. }
  13403. },
  13404. anthro: {
  13405. height: math.unit(6 * 7 / 12, "feet"),
  13406. weight: math.unit(100, "lb"),
  13407. name: "Anthro",
  13408. image: {
  13409. source: "./media/characters/scales/anthro.svg",
  13410. extra: 1,
  13411. bottom: 0.06
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/koragos/front.svg",
  13432. extra: 841 / 794,
  13433. bottom: 0.035
  13434. }
  13435. },
  13436. back: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Back",
  13440. image: {
  13441. source: "./media/characters/koragos/back.svg",
  13442. extra: 841 / 810,
  13443. bottom: 0.022
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(6 + 11 / 12, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(490, "feet")
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(10, "miles")
  13460. },
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(50, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(250, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/xylrem/front.svg",
  13476. extra: 3323 / 3050,
  13477. bottom: 0.065
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Micro",
  13484. height: math.unit(4, "feet")
  13485. },
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(16, "feet"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(2720, "feet")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(25000, "miles")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(8, "feet"),
  13506. weight: math.unit(250, "kg"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/ikideru/front.svg",
  13510. extra: 930 / 870,
  13511. bottom: 0.087
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(8, "feet"),
  13516. weight: math.unit(250, "kg"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/ikideru/back.svg",
  13520. extra: 919 / 852,
  13521. bottom: 0.055
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Rare",
  13528. height: math.unit(8, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Playful Loom",
  13533. height: math.unit(80, "feet")
  13534. },
  13535. {
  13536. name: "City Leaner",
  13537. height: math.unit(230, "feet")
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(2500, "feet")
  13542. },
  13543. {
  13544. name: "Gigamacro",
  13545. height: math.unit(26400, "feet")
  13546. },
  13547. {
  13548. name: "Tectonic Shifter",
  13549. height: math.unit(1.7, "megameters")
  13550. },
  13551. {
  13552. name: "Planet Carer",
  13553. height: math.unit(21, "megameters")
  13554. },
  13555. {
  13556. name: "God",
  13557. height: math.unit(11157.22, "parsecs")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(120, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/neo/front.svg"
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(2, "inches"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Human Size",
  13581. height: math.unit(5 + 8 / 12, "feet")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(13 + 10 / 12, "feet"),
  13590. weight: math.unit(5320, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/chauncey-chantz/front.svg",
  13594. extra: 1587 / 1435,
  13595. bottom: 0.02
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(13 + 10 / 12, "feet"),
  13603. default: true
  13604. },
  13605. {
  13606. name: "Macro",
  13607. height: math.unit(45, "feet")
  13608. },
  13609. {
  13610. name: "Megamacro",
  13611. height: math.unit(250, "miles")
  13612. },
  13613. {
  13614. name: "Planetary",
  13615. height: math.unit(10000, "miles")
  13616. },
  13617. {
  13618. name: "Galactic",
  13619. height: math.unit(40000, "parsecs")
  13620. },
  13621. {
  13622. name: "Universal",
  13623. height: math.unit(1, "yottameter")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13629. {
  13630. front: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(150, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/epifox/front.svg",
  13636. extra: 1,
  13637. bottom: 0.075
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(6, "inches")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(3810, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(500, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(1.8796, "m"),
  13666. weight: math.unit(230, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/colin-t/front.svg",
  13670. extra: 1272 / 1193,
  13671. bottom: 0.07
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(0.571, "meters")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(1.8796, "meters"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Tall",
  13687. height: math.unit(4, "meters")
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(67.241, "meters")
  13692. },
  13693. {
  13694. name: "Megamacro",
  13695. height: math.unit(371.856, "meters")
  13696. },
  13697. {
  13698. name: "Planetary",
  13699. height: math.unit(12631.5689, "km")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(1.85, "meters"),
  13708. weight: math.unit(80, "kg"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/matvei/front.svg",
  13712. extra: 456/447,
  13713. bottom: 8/464
  13714. }
  13715. },
  13716. back: {
  13717. height: math.unit(1.85, "meters"),
  13718. weight: math.unit(80, "kg"),
  13719. name: "Back",
  13720. image: {
  13721. source: "./media/characters/matvei/back.svg",
  13722. extra: 434/427,
  13723. bottom: 11/445
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(1.85, "meters"),
  13731. default: true
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(5 + 9 / 12, "feet"),
  13740. weight: math.unit(70, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/quincy/front.svg",
  13744. extra: 3041 / 2751
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(5 + 9 / 12, "feet"),
  13749. weight: math.unit(70, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/quincy/back.svg",
  13753. extra: 3041 / 2751
  13754. }
  13755. },
  13756. flying: {
  13757. height: math.unit(5 + 4 / 12, "feet"),
  13758. weight: math.unit(70, "lb"),
  13759. name: "Flying",
  13760. image: {
  13761. source: "./media/characters/quincy/flying.svg",
  13762. extra: 1044 / 930
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "cm")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(5 + 9 / 12, "feet")
  13774. },
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(200, "meters"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(1000, "meters")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(3 + 11/12, "feet"),
  13791. weight: math.unit(50, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/vanrel/front.svg",
  13795. extra: 1104/949,
  13796. bottom: 52/1156
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(3 + 11/12, "feet"),
  13801. weight: math.unit(50, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/vanrel/back.svg",
  13805. extra: 1119/976,
  13806. bottom: 37/1156
  13807. }
  13808. },
  13809. tome: {
  13810. height: math.unit(1.35, "feet"),
  13811. weight: math.unit(10, "lb"),
  13812. name: "Vanrel's Tome",
  13813. rename: true,
  13814. image: {
  13815. source: "./media/characters/vanrel/tome.svg"
  13816. }
  13817. },
  13818. beans: {
  13819. height: math.unit(0.89, "feet"),
  13820. name: "Beans",
  13821. image: {
  13822. source: "./media/characters/vanrel/beans.svg"
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(3 + 11/12, "feet"),
  13830. default: true
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(7 + 5 / 12, "feet"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/kuiper-vanrel/front.svg",
  13842. extra: 1219/1169,
  13843. bottom: 69/1288
  13844. }
  13845. },
  13846. back: {
  13847. height: math.unit(7 + 5 / 12, "feet"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/kuiper-vanrel/back.svg",
  13851. extra: 1236/1193,
  13852. bottom: 27/1263
  13853. }
  13854. },
  13855. foot: {
  13856. height: math.unit(0.55, "meters"),
  13857. name: "Foot",
  13858. image: {
  13859. source: "./media/characters/kuiper-vanrel/foot.svg",
  13860. }
  13861. },
  13862. battle: {
  13863. height: math.unit(6.824, "feet"),
  13864. name: "Battle",
  13865. image: {
  13866. source: "./media/characters/kuiper-vanrel/battle.svg",
  13867. extra: 1466 / 1327,
  13868. bottom: 29 / 1492.5
  13869. }
  13870. },
  13871. meerkui: {
  13872. height: math.unit(18, "inches"),
  13873. name: "Meerkui",
  13874. image: {
  13875. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13876. extra: 1354/1289,
  13877. bottom: 69/1423
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(7 + 5 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(8 + 5 / 12, "feet"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/keset-vanrel/front.svg",
  13897. extra: 1231/1148,
  13898. bottom: 82/1313
  13899. }
  13900. },
  13901. back: {
  13902. height: math.unit(8 + 5 / 12, "feet"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/keset-vanrel/back.svg",
  13906. extra: 1240/1174,
  13907. bottom: 33/1273
  13908. }
  13909. },
  13910. hand: {
  13911. height: math.unit(0.6, "meters"),
  13912. name: "Hand",
  13913. image: {
  13914. source: "./media/characters/keset-vanrel/hand.svg"
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(0.94978, "meters"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/keset-vanrel/foot.svg"
  13922. }
  13923. },
  13924. battle: {
  13925. height: math.unit(7.408, "feet"),
  13926. name: "Battle",
  13927. image: {
  13928. source: "./media/characters/keset-vanrel/battle.svg",
  13929. extra: 1890 / 1386,
  13930. bottom: 73.28 / 1970
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(8 + 5 / 12, "feet"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/neos/front.svg",
  13951. extra: 1696 / 992,
  13952. bottom: 0.14
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(54, "cm"),
  13960. default: true
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(100, "m")
  13965. },
  13966. {
  13967. name: "Megamacro",
  13968. height: math.unit(10, "km")
  13969. },
  13970. {
  13971. name: "Megamacro+",
  13972. height: math.unit(100, "km")
  13973. },
  13974. {
  13975. name: "Gigamacro",
  13976. height: math.unit(100, "Mm")
  13977. },
  13978. {
  13979. name: "Teramacro",
  13980. height: math.unit(100, "Gm")
  13981. },
  13982. {
  13983. name: "Examacro",
  13984. height: math.unit(100, "Em")
  13985. },
  13986. {
  13987. name: "Godly",
  13988. height: math.unit(10000, "Ym")
  13989. },
  13990. {
  13991. name: "Beyond Godly",
  13992. height: math.unit(25, "multiverses")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13998. {
  13999. fluide_tame: {
  14000. height: math.unit(5, "feet"),
  14001. name: "Tame",
  14002. image: {
  14003. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14004. extra: 1655/1574,
  14005. bottom: 231/1886
  14006. },
  14007. form: "fluide",
  14008. default: true
  14009. },
  14010. fluide_nude: {
  14011. height: math.unit(5, "feet"),
  14012. name: "Nude",
  14013. image: {
  14014. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14015. extra: 1655/1574,
  14016. bottom: 231/1886
  14017. },
  14018. form: "fluide",
  14019. },
  14020. male_tame: {
  14021. height: math.unit(5, "feet"),
  14022. name: "Tame",
  14023. image: {
  14024. source: "./media/characters/sammy-mouse/male-tame.svg",
  14025. extra: 1655/1574,
  14026. bottom: 231/1886
  14027. },
  14028. form: "male",
  14029. default: true
  14030. },
  14031. male_nude: {
  14032. height: math.unit(5, "feet"),
  14033. name: "Nude",
  14034. image: {
  14035. source: "./media/characters/sammy-mouse/male-nude.svg",
  14036. extra: 1655/1574,
  14037. bottom: 231/1886
  14038. },
  14039. form: "male",
  14040. },
  14041. female_nude: {
  14042. height: math.unit(5, "feet"),
  14043. name: "Nude",
  14044. image: {
  14045. source: "./media/characters/sammy-mouse/female-nude.svg",
  14046. extra: 1655/1574,
  14047. bottom: 231/1886
  14048. },
  14049. form: "female",
  14050. default: true
  14051. },
  14052. mouth: {
  14053. height: math.unit(0.32, "feet"),
  14054. name: "Mouth",
  14055. image: {
  14056. source: "./media/characters/sammy-mouse/mouth.svg"
  14057. },
  14058. allForms: true
  14059. },
  14060. paw: {
  14061. height: math.unit(0.42, "feet"),
  14062. name: "Paw",
  14063. image: {
  14064. source: "./media/characters/sammy-mouse/paw.svg"
  14065. },
  14066. allForms: true
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(5, "inches"),
  14073. allForms: true
  14074. },
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(5, "feet"),
  14078. default: true,
  14079. allForms: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(60, "feet"),
  14084. allForms: true
  14085. },
  14086. ],
  14087. {
  14088. "fluide": {
  14089. name: "Fluide",
  14090. default: true
  14091. },
  14092. "male": {
  14093. name: "Male",
  14094. },
  14095. "female": {
  14096. name: "Female",
  14097. },
  14098. }
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(4, "feet"),
  14105. weight: math.unit(50, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/kole/front.svg",
  14109. extra: 1423 / 1303,
  14110. bottom: 0.025
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(4, "feet"),
  14115. weight: math.unit(50, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/kole/back.svg",
  14119. extra: 1426 / 1280,
  14120. bottom: 0.02
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(4, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(2.5, "feet"),
  14137. weight: math.unit(32, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/rufran/front.svg",
  14141. extra: 1313/885,
  14142. bottom: 94/1407
  14143. }
  14144. },
  14145. side: {
  14146. height: math.unit(2.5, "feet"),
  14147. weight: math.unit(32, "lb"),
  14148. name: "Side",
  14149. image: {
  14150. source: "./media/characters/rufran/side.svg",
  14151. extra: 1109/852,
  14152. bottom: 118/1227
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(2.5, "feet"),
  14157. weight: math.unit(32, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/rufran/back.svg",
  14161. extra: 1280/878,
  14162. bottom: 131/1411
  14163. }
  14164. },
  14165. mouth: {
  14166. height: math.unit(1.13, "feet"),
  14167. name: "Mouth",
  14168. image: {
  14169. source: "./media/characters/rufran/mouth.svg"
  14170. }
  14171. },
  14172. foot: {
  14173. height: math.unit(1.33, "feet"),
  14174. name: "Foot",
  14175. image: {
  14176. source: "./media/characters/rufran/foot.svg"
  14177. }
  14178. },
  14179. koboldFront: {
  14180. height: math.unit(2 + 6 / 12, "feet"),
  14181. weight: math.unit(20, "lb"),
  14182. name: "Front (Kobold)",
  14183. image: {
  14184. source: "./media/characters/rufran/kobold-front.svg",
  14185. extra: 2041 / 1839,
  14186. bottom: 0.055
  14187. }
  14188. },
  14189. koboldBack: {
  14190. height: math.unit(2 + 6 / 12, "feet"),
  14191. weight: math.unit(20, "lb"),
  14192. name: "Back (Kobold)",
  14193. image: {
  14194. source: "./media/characters/rufran/kobold-back.svg",
  14195. extra: 2054 / 1839,
  14196. bottom: 0.01
  14197. }
  14198. },
  14199. koboldHand: {
  14200. height: math.unit(0.2166, "meters"),
  14201. name: "Hand (Kobold)",
  14202. image: {
  14203. source: "./media/characters/rufran/kobold-hand.svg"
  14204. }
  14205. },
  14206. koboldFoot: {
  14207. height: math.unit(0.185, "meters"),
  14208. name: "Foot (Kobold)",
  14209. image: {
  14210. source: "./media/characters/rufran/kobold-foot.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "inch")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(2 + 6 / 12, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Big",
  14226. height: math.unit(60, "feet")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(325, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(0.3, "meters"),
  14239. weight: math.unit(3.5, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/chip/front.svg",
  14243. extra: 748 / 674
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(1, "inch"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14257. {
  14258. side: {
  14259. height: math.unit(2.3, "meters"),
  14260. weight: math.unit(3500, "lb"),
  14261. name: "Side",
  14262. image: {
  14263. source: "./media/characters/torvid/side.svg",
  14264. extra: 1972 / 722,
  14265. bottom: 0.035
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(2.3, "meters"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(2, "meters"),
  14282. weight: math.unit(150.5, "kg"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/susan/front.svg",
  14286. extra: 693 / 635,
  14287. bottom: 0.05
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(505, "miles"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/raindrops/front.svg",
  14308. extra: 2655 / 2461,
  14309. bottom: 49 / 2705
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/raindrops/back.svg",
  14318. extra: 2574 / 2400,
  14319. bottom: 65 / 2634
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(6, "inches")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6 + 2 / 12, "feet")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(131, "feet"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(15, "miles")
  14340. },
  14341. {
  14342. name: "Gigamacro",
  14343. height: math.unit(4000, "miles")
  14344. },
  14345. {
  14346. name: "Teramacro",
  14347. height: math.unit(315000, "miles")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(2.794, "meters"),
  14356. weight: math.unit(325, "kg"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/tezwa/front.svg",
  14360. extra: 2083 / 1906,
  14361. bottom: 0.031
  14362. }
  14363. },
  14364. foot: {
  14365. height: math.unit(0.687, "meters"),
  14366. name: "Foot",
  14367. image: {
  14368. source: "./media/characters/tezwa/foot.svg"
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(9 + 2 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(58, "feet"),
  14385. weight: math.unit(89000, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/typhus/front.svg",
  14389. extra: 816 / 800,
  14390. bottom: 0.065
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Macro",
  14397. height: math.unit(58, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(12, "feet"),
  14407. weight: math.unit(6, "tonnes"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/lyra-von-wulf/front.svg",
  14411. extra: 1,
  14412. bottom: 0.10
  14413. }
  14414. },
  14415. frontMecha: {
  14416. height: math.unit(12, "feet"),
  14417. weight: math.unit(12, "tonnes"),
  14418. name: "Front (Mecha)",
  14419. image: {
  14420. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14421. extra: 1,
  14422. bottom: 0.042
  14423. }
  14424. },
  14425. maw: {
  14426. height: math.unit(2.2, "feet"),
  14427. name: "Maw",
  14428. image: {
  14429. source: "./media/characters/lyra-von-wulf/maw.svg"
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Classic",
  14441. height: math.unit(50, "feet")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(1, "mile")
  14450. },
  14451. {
  14452. name: "Gigamacro",
  14453. height: math.unit(400, "miles")
  14454. },
  14455. {
  14456. name: "Teramacro",
  14457. height: math.unit(22000, "miles")
  14458. },
  14459. {
  14460. name: "Solarmacro",
  14461. height: math.unit(8600000, "miles")
  14462. },
  14463. {
  14464. name: "Galactic",
  14465. height: math.unit(1057000, "lightyears")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6 + 10 / 12, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/dixon/front.svg",
  14478. extra: 3361 / 3209,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(6 + 10 / 12, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Big",
  14491. height: math.unit(12, "meters")
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(500, "meters")
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(2, "km")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14505. {
  14506. kingCheetah_front: {
  14507. height: math.unit(1.85, "meters"),
  14508. weight: math.unit(68, "kg"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/kauko/king-cheetah-front.svg",
  14512. extra: 1007/972,
  14513. bottom: 35/1042
  14514. },
  14515. form: "king-cheetah",
  14516. default: true
  14517. },
  14518. kingCheetah_back: {
  14519. height: math.unit(1.85, "meters"),
  14520. weight: math.unit(68, "kg"),
  14521. name: "Back",
  14522. image: {
  14523. source: "./media/characters/kauko/king-cheetah-back.svg",
  14524. extra: 1015/980,
  14525. bottom: 11/1026
  14526. },
  14527. form: "king-cheetah",
  14528. },
  14529. kingCheetah_hand: {
  14530. height: math.unit(0.23, "meters"),
  14531. name: "Hand",
  14532. image: {
  14533. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14534. },
  14535. form: "king-cheetah",
  14536. },
  14537. kingCheetah_paw: {
  14538. height: math.unit(0.38, "meters"),
  14539. name: "Paw",
  14540. image: {
  14541. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14542. },
  14543. form: "king-cheetah",
  14544. },
  14545. kingCheetah_nape: {
  14546. height: math.unit(0.23, "meters"),
  14547. name: "Nape",
  14548. image: {
  14549. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14550. },
  14551. form: "king-cheetah",
  14552. },
  14553. wolf_front: {
  14554. height: math.unit(1.88, "meters"),
  14555. weight: math.unit(74, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/kauko/wolf-front.svg",
  14559. extra: 952/908,
  14560. bottom: 64/1016
  14561. },
  14562. form: "wolf",
  14563. default: true
  14564. },
  14565. wolf_dressed: {
  14566. height: math.unit(1.88, "meters"),
  14567. weight: math.unit(74, "kg"),
  14568. name: "Dressed",
  14569. image: {
  14570. source: "./media/characters/kauko/wolf-dressed.svg",
  14571. extra: 963/916,
  14572. bottom: 101/1064
  14573. },
  14574. form: "wolf",
  14575. },
  14576. wolf_hand: {
  14577. height: math.unit(0.3, "meters"),
  14578. name: "Hand",
  14579. image: {
  14580. source: "./media/characters/kauko/wolf-hand.svg"
  14581. },
  14582. form: "wolf",
  14583. },
  14584. wolf_paw: {
  14585. height: math.unit(0.407, "meters"),
  14586. name: "Paw",
  14587. image: {
  14588. source: "./media/characters/kauko/wolf-paw.svg"
  14589. },
  14590. form: "wolf",
  14591. },
  14592. wolf_nape: {
  14593. height: math.unit(0.25, "meters"),
  14594. name: "Nape",
  14595. image: {
  14596. source: "./media/characters/kauko/wolf-nape.svg"
  14597. },
  14598. form: "wolf",
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(1.85, "m"),
  14605. default: true,
  14606. form: "king-cheetah"
  14607. },
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(1.88, "m"),
  14611. default: true,
  14612. form: "wolf"
  14613. },
  14614. ],
  14615. {
  14616. "king-cheetah": {
  14617. name: "King Cheetah",
  14618. default: true
  14619. },
  14620. "wolf": {
  14621. name: "Wolf",
  14622. },
  14623. }
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14627. {
  14628. frontSfw: {
  14629. height: math.unit(5, "meters"),
  14630. weight: math.unit(4250, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/varg/front-sfw.svg",
  14634. extra: 1103/1010,
  14635. bottom: 50/1153
  14636. },
  14637. form: "anthro",
  14638. default: true
  14639. },
  14640. backSfw: {
  14641. height: math.unit(5, "meters"),
  14642. weight: math.unit(4250, "lb"),
  14643. name: "Back",
  14644. image: {
  14645. source: "./media/characters/varg/back-sfw.svg",
  14646. extra: 1038/1022,
  14647. bottom: 36/1074
  14648. },
  14649. form: "anthro"
  14650. },
  14651. frontNsfw: {
  14652. height: math.unit(5, "meters"),
  14653. weight: math.unit(4250, "lb"),
  14654. name: "Front (NSFW)",
  14655. image: {
  14656. source: "./media/characters/varg/front-nsfw.svg",
  14657. extra: 1103/1010,
  14658. bottom: 50/1153
  14659. },
  14660. form: "anthro"
  14661. },
  14662. sheath: {
  14663. height: math.unit(3.8, "feet"),
  14664. weight: math.unit(90, "kilograms"),
  14665. name: "Sheath",
  14666. image: {
  14667. source: "./media/characters/varg/sheath.svg"
  14668. },
  14669. form: "anthro"
  14670. },
  14671. dick: {
  14672. height: math.unit(4.6, "feet"),
  14673. weight: math.unit(451, "kilograms"),
  14674. name: "Dick",
  14675. image: {
  14676. source: "./media/characters/varg/dick.svg"
  14677. },
  14678. form: "anthro"
  14679. },
  14680. feralSfw: {
  14681. height: math.unit(5, "meters"),
  14682. weight: math.unit(100000, "lb"),
  14683. name: "Side",
  14684. image: {
  14685. source: "./media/characters/varg/feral-sfw.svg",
  14686. extra: 1065/511,
  14687. bottom: 211/1276
  14688. },
  14689. form: "feral",
  14690. default: true
  14691. },
  14692. feralNsfw: {
  14693. height: math.unit(5, "meters"),
  14694. weight: math.unit(100000, "lb"),
  14695. name: "Side (NSFW)",
  14696. image: {
  14697. source: "./media/characters/varg/feral-nsfw.svg",
  14698. extra: 1065/511,
  14699. bottom: 211/1276
  14700. },
  14701. form: "feral",
  14702. },
  14703. feralSheath: {
  14704. height: math.unit(9.8, "feet"),
  14705. weight: math.unit(2000, "kilograms"),
  14706. name: "Sheath",
  14707. image: {
  14708. source: "./media/characters/varg/sheath.svg"
  14709. },
  14710. form: "feral"
  14711. },
  14712. feralDick: {
  14713. height: math.unit(13.11, "feet"),
  14714. weight: math.unit(10440, "kilograms"),
  14715. name: "Dick",
  14716. image: {
  14717. source: "./media/characters/varg/dick.svg"
  14718. },
  14719. form: "feral"
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(5, "meters"),
  14726. form: "anthro"
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(200, "meters"),
  14731. form: "anthro"
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(20, "kilometers"),
  14736. form: "anthro"
  14737. },
  14738. {
  14739. name: "True Size",
  14740. height: math.unit(211, "km"),
  14741. form: "anthro",
  14742. default: true
  14743. },
  14744. {
  14745. name: "Gigamacro",
  14746. height: math.unit(1000, "km"),
  14747. form: "anthro"
  14748. },
  14749. {
  14750. name: "Gigamacro+",
  14751. height: math.unit(8000, "km"),
  14752. form: "anthro"
  14753. },
  14754. {
  14755. name: "Teramacro",
  14756. height: math.unit(1000000, "km"),
  14757. form: "anthro"
  14758. },
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(5, "meters"),
  14762. form: "feral"
  14763. },
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(200, "meters"),
  14767. form: "feral"
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(20, "kilometers"),
  14772. form: "feral"
  14773. },
  14774. {
  14775. name: "True Size",
  14776. height: math.unit(211, "km"),
  14777. form: "feral",
  14778. default: true
  14779. },
  14780. {
  14781. name: "Gigamacro",
  14782. height: math.unit(1000, "km"),
  14783. form: "feral"
  14784. },
  14785. {
  14786. name: "Gigamacro+",
  14787. height: math.unit(8000, "km"),
  14788. form: "feral"
  14789. },
  14790. {
  14791. name: "Teramacro",
  14792. height: math.unit(1000000, "km"),
  14793. form: "feral"
  14794. },
  14795. ],
  14796. {
  14797. "anthro": {
  14798. name: "Anthro",
  14799. default: true
  14800. },
  14801. "feral": {
  14802. name: "Feral",
  14803. },
  14804. }
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(7 + 7 / 12, "feet"),
  14811. weight: math.unit(267, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/dayza/front.svg",
  14815. extra: 1262 / 1200,
  14816. bottom: 0.035
  14817. }
  14818. },
  14819. side: {
  14820. height: math.unit(7 + 7 / 12, "feet"),
  14821. weight: math.unit(267, "lb"),
  14822. name: "Side",
  14823. image: {
  14824. source: "./media/characters/dayza/side.svg",
  14825. extra: 1295 / 1245,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(7 + 7 / 12, "feet"),
  14831. weight: math.unit(267, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/dayza/back.svg",
  14835. extra: 1241 / 1170
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7 + 7 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(155, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 5 / 12, "feet"),
  14856. weight: math.unit(160, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/xanthos/front.svg",
  14860. extra: 1,
  14861. bottom: 0.04
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6 + 5 / 12, "feet"),
  14866. weight: math.unit(160, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/xanthos/back.svg",
  14870. extra: 1,
  14871. bottom: 0.03
  14872. }
  14873. },
  14874. hand: {
  14875. height: math.unit(0.928, "feet"),
  14876. name: "Hand",
  14877. image: {
  14878. source: "./media/characters/xanthos/hand.svg"
  14879. }
  14880. },
  14881. foot: {
  14882. height: math.unit(1.286, "feet"),
  14883. name: "Foot",
  14884. image: {
  14885. source: "./media/characters/xanthos/foot.svg"
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(6 + 5 / 12, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Normal+",
  14897. height: math.unit(6, "meters")
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(40, "feet")
  14902. },
  14903. {
  14904. name: "Macro+",
  14905. height: math.unit(200, "meters")
  14906. },
  14907. {
  14908. name: "Megamacro",
  14909. height: math.unit(20, "km")
  14910. },
  14911. {
  14912. name: "Megamacro+",
  14913. height: math.unit(100, "km")
  14914. },
  14915. {
  14916. name: "Gigamacro",
  14917. height: math.unit(200, "megameters")
  14918. },
  14919. {
  14920. name: "Gigamacro+",
  14921. height: math.unit(1.5, "gigameters")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6 + 3 / 12, "feet"),
  14930. weight: math.unit(215, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/grynn/front.svg",
  14934. extra: 4627 / 4209,
  14935. bottom: 0.047
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Micro",
  14942. height: math.unit(6, "inches")
  14943. },
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(6 + 3 / 12, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Big",
  14951. height: math.unit(104, "feet")
  14952. },
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(944, "feet")
  14956. },
  14957. {
  14958. name: "Macro+",
  14959. height: math.unit(9480, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro",
  14963. height: math.unit(78752, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro+",
  14967. height: math.unit(630128, "feet")
  14968. },
  14969. {
  14970. name: "Megamacro++",
  14971. height: math.unit(3150695, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(7 + 5 / 12, "feet"),
  14980. weight: math.unit(450, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/mocha-aura/front.svg",
  14984. extra: 1907 / 1817,
  14985. bottom: 0.04
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(7 + 5 / 12, "feet"),
  14990. weight: math.unit(450, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/mocha-aura/back.svg",
  14994. extra: 1900 / 1825,
  14995. bottom: 0.045
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Nano",
  15002. height: math.unit(1, "nm")
  15003. },
  15004. {
  15005. name: "Megamicro",
  15006. height: math.unit(1, "mm")
  15007. },
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(3, "inches")
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(7 + 5 / 12, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro",
  15019. height: math.unit(30, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3500, "feet")
  15024. },
  15025. {
  15026. name: "Teramacro",
  15027. height: math.unit(500000, "miles")
  15028. },
  15029. {
  15030. name: "Petamacro",
  15031. height: math.unit(50000000000000000, "parsecs")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/ilisha-devya/front.svg",
  15044. extra: 1053/1049,
  15045. bottom: 270/1323
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(150, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/ilisha-devya/back.svg",
  15054. extra: 1131/1128,
  15055. bottom: 39/1170
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Macro",
  15062. height: math.unit(500, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(10, "miles")
  15068. },
  15069. {
  15070. name: "Gigamacro",
  15071. height: math.unit(100000, "miles")
  15072. },
  15073. {
  15074. name: "Examacro",
  15075. height: math.unit(1e9, "lightyears")
  15076. },
  15077. {
  15078. name: "Omniversal",
  15079. height: math.unit(1e33, "lightyears")
  15080. },
  15081. {
  15082. name: "Beyond Infinite",
  15083. height: math.unit(1e100, "lightyears")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15089. {
  15090. Side: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Side",
  15094. image: {
  15095. source: "./media/characters/mira/side.svg",
  15096. extra: 900 / 799,
  15097. bottom: 0.02
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Human Size",
  15104. height: math.unit(6, "feet")
  15105. },
  15106. {
  15107. name: "Macro",
  15108. height: math.unit(100, "feet"),
  15109. default: true
  15110. },
  15111. {
  15112. name: "Megamacro",
  15113. height: math.unit(10, "miles")
  15114. },
  15115. {
  15116. name: "Gigamacro",
  15117. height: math.unit(25000, "miles")
  15118. },
  15119. {
  15120. name: "Teramacro",
  15121. height: math.unit(300, "AU")
  15122. },
  15123. {
  15124. name: "Full Size",
  15125. height: math.unit(4.5e10, "lightyears")
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/holly/front.svg",
  15138. extra: 639 / 606
  15139. }
  15140. },
  15141. back: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Back",
  15145. image: {
  15146. source: "./media/characters/holly/back.svg",
  15147. extra: 623 / 598
  15148. }
  15149. },
  15150. frontWorking: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Front (Working)",
  15154. image: {
  15155. source: "./media/characters/holly/front-working.svg",
  15156. extra: 607 / 577,
  15157. bottom: 0.048
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(12 + 3 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/porter/front.svg",
  15178. extra: 1,
  15179. bottom: 0.01
  15180. }
  15181. },
  15182. frontRobes: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(150, "lb"),
  15185. name: "Front (Robes)",
  15186. image: {
  15187. source: "./media/characters/porter/front-robes.svg",
  15188. extra: 1.01,
  15189. bottom: 0.01
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(11 + 9 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15203. {
  15204. legendary: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Legendary",
  15208. image: {
  15209. source: "./media/characters/lucy/legendary.svg",
  15210. extra: 1355 / 1100,
  15211. bottom: 0.045
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Legendary",
  15218. height: math.unit(86882 * 2, "miles"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/drusilla/front.svg",
  15232. extra: 678 / 635,
  15233. bottom: 0.03
  15234. }
  15235. },
  15236. back: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Back",
  15240. image: {
  15241. source: "./media/characters/drusilla/back.svg",
  15242. extra: 678 / 635,
  15243. bottom: 0.005
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(100, "feet")
  15251. },
  15252. {
  15253. name: "Canon Height",
  15254. height: math.unit(2000, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(180, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/renard-thatch/front.svg",
  15268. extra: 2411 / 2275,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. frontPosing: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(180, "lb"),
  15275. name: "Front (Posing)",
  15276. image: {
  15277. source: "./media/characters/renard-thatch/front-posing.svg",
  15278. extra: 2381 / 2261,
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. back: {
  15283. height: math.unit(6, "feet"),
  15284. weight: math.unit(180, "lb"),
  15285. name: "Back",
  15286. image: {
  15287. source: "./media/characters/renard-thatch/back.svg",
  15288. extra: 2428 / 2288
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Micro",
  15295. height: math.unit(3, "inches")
  15296. },
  15297. {
  15298. name: "Default",
  15299. height: math.unit(6, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro",
  15304. height: math.unit(75, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(1450, "feet"),
  15313. weight: math.unit(1.21e6, "tons"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/sekvra/front.svg",
  15317. extra: 1193/1190,
  15318. bottom: 78/1271
  15319. }
  15320. },
  15321. side: {
  15322. height: math.unit(1450, "feet"),
  15323. weight: math.unit(1.21e6, "tons"),
  15324. name: "Side",
  15325. image: {
  15326. source: "./media/characters/sekvra/side.svg",
  15327. extra: 1193/1190,
  15328. bottom: 52/1245
  15329. }
  15330. },
  15331. back: {
  15332. height: math.unit(1450, "feet"),
  15333. weight: math.unit(1.21e6, "tons"),
  15334. name: "Back",
  15335. image: {
  15336. source: "./media/characters/sekvra/back.svg",
  15337. extra: 1219/1216,
  15338. bottom: 21/1240
  15339. }
  15340. },
  15341. frontClothed: {
  15342. height: math.unit(1450, "feet"),
  15343. weight: math.unit(1.21e6, "tons"),
  15344. name: "Front (Clothed)",
  15345. image: {
  15346. source: "./media/characters/sekvra/front-clothed.svg",
  15347. extra: 1192/1189,
  15348. bottom: 79/1271
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Macro",
  15355. height: math.unit(1450, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Megamacro",
  15360. height: math.unit(15000, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/carmine/front.svg",
  15373. extra: 1557/1538,
  15374. bottom: 68/1625
  15375. }
  15376. },
  15377. frontArmor: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Front (Armor)",
  15381. image: {
  15382. source: "./media/characters/carmine/front-armor.svg",
  15383. extra: 1549/1530,
  15384. bottom: 82/1631
  15385. }
  15386. },
  15387. mouth: {
  15388. height: math.unit(0.55, "feet"),
  15389. name: "Mouth",
  15390. image: {
  15391. source: "./media/characters/carmine/mouth.svg"
  15392. }
  15393. },
  15394. hand: {
  15395. height: math.unit(1.05, "feet"),
  15396. name: "Hand",
  15397. image: {
  15398. source: "./media/characters/carmine/hand.svg"
  15399. }
  15400. },
  15401. foot: {
  15402. height: math.unit(0.6, "feet"),
  15403. name: "Foot",
  15404. image: {
  15405. source: "./media/characters/carmine/foot.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Large",
  15412. height: math.unit(1, "mile")
  15413. },
  15414. {
  15415. name: "Huge",
  15416. height: math.unit(40, "miles"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Colossal",
  15421. height: math.unit(2500, "miles")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/elyssia/front.svg",
  15434. extra: 2201 / 2035,
  15435. bottom: 0.05
  15436. }
  15437. },
  15438. frontClothed: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front (Clothed)",
  15442. image: {
  15443. source: "./media/characters/elyssia/front-clothed.svg",
  15444. extra: 2201 / 2035,
  15445. bottom: 0.05
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/elyssia/back.svg",
  15454. extra: 2201 / 2035,
  15455. bottom: 0.013
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Smaller",
  15462. height: math.unit(150, "feet")
  15463. },
  15464. {
  15465. name: "Standard",
  15466. height: math.unit(1400, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Distracted",
  15471. height: math.unit(15000, "feet")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(7 + 4/12, "feet"),
  15480. weight: math.unit(690, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/geno-maxwell/front.svg",
  15484. extra: 984/856,
  15485. bottom: 87/1071
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(7 + 4/12, "feet"),
  15490. weight: math.unit(690, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/geno-maxwell/back.svg",
  15494. extra: 981/854,
  15495. bottom: 57/1038
  15496. }
  15497. },
  15498. frontCostume: {
  15499. height: math.unit(7 + 4/12, "feet"),
  15500. weight: math.unit(690, "lb"),
  15501. name: "Front (Costume)",
  15502. image: {
  15503. source: "./media/characters/geno-maxwell/front-costume.svg",
  15504. extra: 984/856,
  15505. bottom: 87/1071
  15506. }
  15507. },
  15508. backcostume: {
  15509. height: math.unit(7 + 4/12, "feet"),
  15510. weight: math.unit(690, "lb"),
  15511. name: "Back (Costume)",
  15512. image: {
  15513. source: "./media/characters/geno-maxwell/back-costume.svg",
  15514. extra: 981/854,
  15515. bottom: 57/1038
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Micro",
  15522. height: math.unit(3, "inches")
  15523. },
  15524. {
  15525. name: "Normal",
  15526. height: math.unit(7 + 4 / 12, "feet"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "Macro",
  15531. height: math.unit(220, "feet")
  15532. },
  15533. {
  15534. name: "Megamacro",
  15535. height: math.unit(11, "miles")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(7 + 4/12, "feet"),
  15544. weight: math.unit(750, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/regena-maxwell/front.svg",
  15548. extra: 984/856,
  15549. bottom: 87/1071
  15550. }
  15551. },
  15552. back: {
  15553. height: math.unit(7 + 4/12, "feet"),
  15554. weight: math.unit(750, "lb"),
  15555. name: "Back",
  15556. image: {
  15557. source: "./media/characters/regena-maxwell/back.svg",
  15558. extra: 981/854,
  15559. bottom: 57/1038
  15560. }
  15561. },
  15562. frontCostume: {
  15563. height: math.unit(7 + 4/12, "feet"),
  15564. weight: math.unit(750, "lb"),
  15565. name: "Front (Costume)",
  15566. image: {
  15567. source: "./media/characters/regena-maxwell/front-costume.svg",
  15568. extra: 984/856,
  15569. bottom: 87/1071
  15570. }
  15571. },
  15572. backcostume: {
  15573. height: math.unit(7 + 4/12, "feet"),
  15574. weight: math.unit(750, "lb"),
  15575. name: "Back (Costume)",
  15576. image: {
  15577. source: "./media/characters/regena-maxwell/back-costume.svg",
  15578. extra: 981/854,
  15579. bottom: 57/1038
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(7 + 4 / 12, "feet"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Macro",
  15591. height: math.unit(220, "feet")
  15592. },
  15593. {
  15594. name: "Megamacro",
  15595. height: math.unit(11, "miles")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15608. extra: 860 / 690,
  15609. bottom: 0.03
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(1.7, "meters"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/quilly/front.svg",
  15630. extra: 890 / 776
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Gigamacro",
  15637. height: math.unit(404090, "miles"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(7 + 8 / 12, "feet"),
  15647. weight: math.unit(350, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/tempest/front.svg",
  15651. extra: 1175 / 1086,
  15652. bottom: 0.02
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(7 + 8 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15666. {
  15667. side: {
  15668. height: math.unit(4 + 5 / 12, "feet"),
  15669. weight: math.unit(80, "lb"),
  15670. name: "Side",
  15671. image: {
  15672. source: "./media/characters/rodger/side.svg",
  15673. extra: 1235 / 1118
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Micro",
  15680. height: math.unit(1, "inch")
  15681. },
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(4 + 5 / 12, "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Macro",
  15689. height: math.unit(120, "feet")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/danyel/front.svg",
  15702. extra: 1185 / 1123,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Shrunken",
  15710. height: math.unit(0.5, "mm")
  15711. },
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(1, "mm"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Upsized",
  15719. height: math.unit(5 + 5 / 12, "feet")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(5 + 6 / 12, "feet"),
  15728. weight: math.unit(200, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/vivian-bijoux/front.svg",
  15732. extra: 1217/1209,
  15733. bottom: 76/1293
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(5 + 6 / 12, "feet"),
  15738. weight: math.unit(200, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/vivian-bijoux/back.svg",
  15742. extra: 1214/1208,
  15743. bottom: 51/1265
  15744. }
  15745. },
  15746. dressed: {
  15747. height: math.unit(5 + 6 / 12, "feet"),
  15748. weight: math.unit(200, "lb"),
  15749. name: "Dressed",
  15750. image: {
  15751. source: "./media/characters/vivian-bijoux/dressed.svg",
  15752. extra: 1217/1209,
  15753. bottom: 76/1293
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(5 + 6 / 12, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Bad Dream",
  15765. height: math.unit(500, "feet")
  15766. },
  15767. {
  15768. name: "Nightmare",
  15769. height: math.unit(500, "miles")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6 + 1 / 12, "feet"),
  15778. weight: math.unit(260, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/zeta/front.svg",
  15782. extra: 1968 / 1889,
  15783. bottom: 0.06
  15784. }
  15785. },
  15786. back: {
  15787. height: math.unit(6 + 1 / 12, "feet"),
  15788. weight: math.unit(260, "lb"),
  15789. name: "Back",
  15790. image: {
  15791. source: "./media/characters/zeta/back.svg",
  15792. extra: 1944 / 1858,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. hand: {
  15797. height: math.unit(1.112, "feet"),
  15798. name: "Hand",
  15799. image: {
  15800. source: "./media/characters/zeta/hand.svg"
  15801. }
  15802. },
  15803. foot: {
  15804. height: math.unit(1.48, "feet"),
  15805. name: "Foot",
  15806. image: {
  15807. source: "./media/characters/zeta/foot.svg"
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Micro",
  15814. height: math.unit(6, "inches")
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(6 + 1 / 12, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Macro",
  15823. height: math.unit(20, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/jamie-larsen/front.svg",
  15836. extra: 962 / 933,
  15837. bottom: 0.02
  15838. }
  15839. },
  15840. back: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Back",
  15844. image: {
  15845. source: "./media/characters/jamie-larsen/back.svg",
  15846. extra: 997 / 946
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Macro",
  15853. height: math.unit(28 + 7 / 12, "feet"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "Macro+",
  15858. height: math.unit(180, "feet")
  15859. },
  15860. {
  15861. name: "Megamacro",
  15862. height: math.unit(10, "miles")
  15863. },
  15864. {
  15865. name: "Gigamacro",
  15866. height: math.unit(200000, "miles")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(120, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/vance/front.svg",
  15879. extra: 1980 / 1890,
  15880. bottom: 0.09
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(120, "lb"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/vance/back.svg",
  15889. extra: 2081 / 1994,
  15890. bottom: 0.014
  15891. }
  15892. },
  15893. hand: {
  15894. height: math.unit(0.88, "feet"),
  15895. name: "Hand",
  15896. image: {
  15897. source: "./media/characters/vance/hand.svg"
  15898. }
  15899. },
  15900. foot: {
  15901. height: math.unit(0.64, "feet"),
  15902. name: "Foot",
  15903. image: {
  15904. source: "./media/characters/vance/foot.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Small",
  15911. height: math.unit(90, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(100, "meters")
  15917. },
  15918. {
  15919. name: "Megamacro",
  15920. height: math.unit(15, "miles")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(180, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/xochitl/front.svg",
  15933. extra: 2297 / 2261,
  15934. bottom: 0.065
  15935. }
  15936. },
  15937. back: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(180, "lb"),
  15940. name: "Back",
  15941. image: {
  15942. source: "./media/characters/xochitl/back.svg",
  15943. extra: 2386 / 2354,
  15944. bottom: 0.01
  15945. }
  15946. },
  15947. foot: {
  15948. height: math.unit(6 / 5 * 1.15, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Foot",
  15951. image: {
  15952. source: "./media/characters/xochitl/foot.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(80, "feet")
  15960. },
  15961. {
  15962. name: "Macro+",
  15963. height: math.unit(400, "feet"),
  15964. default: true
  15965. },
  15966. {
  15967. name: "Gigamacro",
  15968. height: math.unit(80000, "miles")
  15969. },
  15970. {
  15971. name: "Gigamacro+",
  15972. height: math.unit(400000, "miles")
  15973. },
  15974. {
  15975. name: "Teramacro",
  15976. height: math.unit(300, "AU")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/vincent/front.svg",
  15989. extra: 1130 / 1080,
  15990. bottom: 0.055
  15991. }
  15992. },
  15993. beak: {
  15994. height: math.unit(6 * 0.1, "feet"),
  15995. name: "Beak",
  15996. image: {
  15997. source: "./media/characters/vincent/beak.svg"
  15998. }
  15999. },
  16000. hand: {
  16001. height: math.unit(6 * 0.85, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Hand",
  16004. image: {
  16005. source: "./media/characters/vincent/hand.svg"
  16006. }
  16007. },
  16008. foot: {
  16009. height: math.unit(6 * 0.19, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Foot",
  16012. image: {
  16013. source: "./media/characters/vincent/foot.svg"
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Base",
  16020. height: math.unit(6 + 5 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(300, "feet")
  16026. },
  16027. {
  16028. name: "Megamacro",
  16029. height: math.unit(2, "miles")
  16030. },
  16031. {
  16032. name: "Gigamacro",
  16033. height: math.unit(1000, "miles")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(2, "meters"),
  16042. weight: math.unit(500, "kg"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/coatl/front.svg",
  16046. extra: 3948 / 3500,
  16047. bottom: 0.082
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(4, "meters")
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(100, "meters"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Macro+",
  16063. height: math.unit(300, "meters")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(3, "gigameters")
  16068. },
  16069. {
  16070. name: "Megamacro+",
  16071. height: math.unit(300, "terameters")
  16072. },
  16073. {
  16074. name: "Megamacro++",
  16075. height: math.unit(3, "lightyears")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(50, "kg"),
  16085. name: "front",
  16086. image: {
  16087. source: "./media/characters/shiroryu/front.svg",
  16088. extra: 1990 / 1935
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Mortal Mingling",
  16095. height: math.unit(3, "meters")
  16096. },
  16097. {
  16098. name: "Kaiju-ish",
  16099. height: math.unit(250, "meters")
  16100. },
  16101. {
  16102. name: "Somewhat Godly",
  16103. height: math.unit(400, "km"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Planetary",
  16108. height: math.unit(300, "megameters")
  16109. },
  16110. {
  16111. name: "Galaxy-dwarfing",
  16112. height: math.unit(450, "kiloparsecs")
  16113. },
  16114. {
  16115. name: "Universe Eater",
  16116. height: math.unit(150, "gigaparsecs")
  16117. },
  16118. {
  16119. name: "Almost Immeasurable",
  16120. height: math.unit(1.3e266, "yottaparsecs")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/umeko/front.svg",
  16133. extra: 1,
  16134. bottom: 0.019
  16135. }
  16136. },
  16137. frontArmored: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Front (Armored)",
  16141. image: {
  16142. source: "./media/characters/umeko/front-armored.svg",
  16143. extra: 1,
  16144. bottom: 0.021
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Macro",
  16151. height: math.unit(220, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Guardian Dragon",
  16156. height: math.unit(50, "miles")
  16157. },
  16158. {
  16159. name: "Cosmic",
  16160. height: math.unit(800000, "miles")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(6, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/cassidy/front.svg",
  16173. extra: 810/808,
  16174. bottom: 41/851
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Canon Height",
  16181. height: math.unit(120, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro+",
  16186. height: math.unit(400, "feet")
  16187. },
  16188. {
  16189. name: "Macro++",
  16190. height: math.unit(4000, "feet")
  16191. },
  16192. {
  16193. name: "Megamacro",
  16194. height: math.unit(3, "miles")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/isaac/front.svg",
  16207. extra: 896 / 815,
  16208. bottom: 0.11
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Human Size",
  16215. height: math.unit(8, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Macro",
  16220. height: math.unit(400, "feet")
  16221. },
  16222. {
  16223. name: "Megamacro",
  16224. height: math.unit(50, "miles")
  16225. },
  16226. {
  16227. name: "Canon Height",
  16228. height: math.unit(200, "AU")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(72, "kg"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/sleekit/front.svg",
  16241. extra: 4693 / 4487,
  16242. bottom: 0.012
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Minimum Height",
  16249. height: math.unit(10, "meters")
  16250. },
  16251. {
  16252. name: "Smaller",
  16253. height: math.unit(25, "meters")
  16254. },
  16255. {
  16256. name: "Larger",
  16257. height: math.unit(38, "meters"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Maximum height",
  16262. height: math.unit(100, "meters")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(150, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/nillia/front.svg",
  16275. extra: 719/665,
  16276. bottom: 6/725
  16277. }
  16278. },
  16279. back: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Back",
  16283. image: {
  16284. source: "./media/characters/nillia/back.svg",
  16285. extra: 705/651,
  16286. bottom: 5/710
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Canon Height",
  16293. height: math.unit(489, "feet"),
  16294. default: true
  16295. }
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/mesmyriza/front.svg",
  16307. extra: 1541/1291,
  16308. bottom: 87/1628
  16309. }
  16310. },
  16311. foot: {
  16312. height: math.unit(6 / (250 / 35), "feet"),
  16313. name: "Foot",
  16314. image: {
  16315. source: "./media/characters/mesmyriza/foot.svg"
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(457, "meters"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Megamacro",
  16327. height: math.unit(8, "megameters")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(250, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/saudade/front.svg",
  16340. extra: 1172 / 1139,
  16341. bottom: 0.035
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Micro",
  16348. height: math.unit(3, "inches")
  16349. },
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(6, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(50, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(2800, "feet")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(100, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/keireer/front.svg",
  16374. extra: 716 / 666,
  16375. bottom: 0.05
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 4 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5.5, "feet"),
  16392. weight: math.unit(90, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/mirja/front.svg",
  16396. extra: 1452/1262,
  16397. bottom: 67/1519
  16398. }
  16399. },
  16400. frontDressed: {
  16401. height: math.unit(5.5, "feet"),
  16402. weight: math.unit(90, "lb"),
  16403. name: "Front (Dressed)",
  16404. image: {
  16405. source: "./media/characters/mirja/dressed.svg",
  16406. extra: 1452/1262,
  16407. bottom: 67/1519
  16408. }
  16409. },
  16410. back: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(90, "lb"),
  16413. name: "Back",
  16414. image: {
  16415. source: "./media/characters/mirja/back.svg",
  16416. extra: 1892/1795,
  16417. bottom: 48/1940
  16418. }
  16419. },
  16420. maw: {
  16421. height: math.unit(1.312, "feet"),
  16422. name: "Maw",
  16423. image: {
  16424. source: "./media/characters/mirja/maw.svg"
  16425. }
  16426. },
  16427. paw: {
  16428. height: math.unit(1.15, "feet"),
  16429. name: "Paw",
  16430. image: {
  16431. source: "./media/characters/mirja/paw.svg"
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "\"Incognito\"",
  16438. height: math.unit(3, "meters")
  16439. },
  16440. {
  16441. name: "Strolling Size",
  16442. height: math.unit(15, "km")
  16443. },
  16444. {
  16445. name: "Larger Strolling Size",
  16446. height: math.unit(400, "km")
  16447. },
  16448. {
  16449. name: "Preferred Size",
  16450. height: math.unit(5000, "km"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "True Size",
  16455. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(15, "feet"),
  16464. weight: math.unit(880, "kg"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/nightraver/front.svg",
  16468. extra: 2444 / 2160,
  16469. bottom: 0.027
  16470. }
  16471. },
  16472. back: {
  16473. height: math.unit(15, "feet"),
  16474. weight: math.unit(880, "kg"),
  16475. name: "Back",
  16476. image: {
  16477. source: "./media/characters/nightraver/back.svg",
  16478. extra: 2309 / 2180,
  16479. bottom: 0.005
  16480. }
  16481. },
  16482. sole: {
  16483. height: math.unit(2.878, "feet"),
  16484. name: "Sole",
  16485. image: {
  16486. source: "./media/characters/nightraver/sole.svg"
  16487. }
  16488. },
  16489. foot: {
  16490. height: math.unit(2.285, "feet"),
  16491. name: "Foot",
  16492. image: {
  16493. source: "./media/characters/nightraver/foot.svg"
  16494. }
  16495. },
  16496. maw: {
  16497. height: math.unit(2.67, "feet"),
  16498. name: "Maw",
  16499. image: {
  16500. source: "./media/characters/nightraver/maw.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "cm")
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(15, "feet"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(300, "feet")
  16517. },
  16518. {
  16519. name: "Megamacro",
  16520. height: math.unit(300, "miles")
  16521. },
  16522. {
  16523. name: "Gigamacro",
  16524. height: math.unit(10000, "miles")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16530. {
  16531. side: {
  16532. height: math.unit(2, "inches"),
  16533. weight: math.unit(5, "grams"),
  16534. name: "Side",
  16535. image: {
  16536. source: "./media/characters/arc/side.svg"
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Micro",
  16543. height: math.unit(2, "inches"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.1938, "meters"),
  16553. weight: math.unit(54, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/nebula-shahar/front.svg",
  16557. extra: 1642 / 1436,
  16558. bottom: 0.06
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Megamicro",
  16565. height: math.unit(0.3, "mm")
  16566. },
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(3, "cm")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(138, "cm"),
  16574. default: true
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(30, "m")
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(5.24, "feet"),
  16587. weight: math.unit(150, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/shayla/front.svg",
  16591. extra: 1512 / 1414,
  16592. bottom: 0.01
  16593. }
  16594. },
  16595. back: {
  16596. height: math.unit(5.24, "feet"),
  16597. weight: math.unit(150, "lb"),
  16598. name: "Back",
  16599. image: {
  16600. source: "./media/characters/shayla/back.svg",
  16601. extra: 1512 / 1414
  16602. }
  16603. },
  16604. hand: {
  16605. height: math.unit(0.7781496062992126, "feet"),
  16606. name: "Hand",
  16607. image: {
  16608. source: "./media/characters/shayla/hand.svg"
  16609. }
  16610. },
  16611. foot: {
  16612. height: math.unit(1.4206036745406823, "feet"),
  16613. name: "Foot",
  16614. image: {
  16615. source: "./media/characters/shayla/foot.svg"
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Micro",
  16622. height: math.unit(0.32, "feet")
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5.24, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(492.12, "feet")
  16632. },
  16633. {
  16634. name: "Megamacro",
  16635. height: math.unit(186.41, "miles")
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(2.2, "m"),
  16644. weight: math.unit(120, "kg"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/pia-jr/front.svg",
  16648. extra: 1000 / 970,
  16649. bottom: 0.035
  16650. }
  16651. },
  16652. hand: {
  16653. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16654. name: "Hand",
  16655. image: {
  16656. source: "./media/characters/pia-jr/hand.svg"
  16657. }
  16658. },
  16659. paw: {
  16660. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16661. name: "Paw",
  16662. image: {
  16663. source: "./media/characters/pia-jr/paw.svg"
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Micro",
  16670. height: math.unit(1.2, "cm")
  16671. },
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(2.2, "m"),
  16675. default: true
  16676. },
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(180, "m")
  16680. },
  16681. {
  16682. name: "Megamacro",
  16683. height: math.unit(420, "km")
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(2, "m"),
  16692. weight: math.unit(115, "kg"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/pia-sr/front.svg",
  16696. extra: 760 / 730,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. back: {
  16701. height: math.unit(2, "m"),
  16702. weight: math.unit(115, "kg"),
  16703. name: "Back",
  16704. image: {
  16705. source: "./media/characters/pia-sr/back.svg",
  16706. extra: 760 / 730,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. hand: {
  16711. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16712. name: "Hand",
  16713. image: {
  16714. source: "./media/characters/pia-sr/hand.svg"
  16715. }
  16716. },
  16717. foot: {
  16718. height: math.unit(1.83, "feet"),
  16719. name: "Foot",
  16720. image: {
  16721. source: "./media/characters/pia-sr/foot.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Micro",
  16728. height: math.unit(88, "mm")
  16729. },
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(2, "m"),
  16733. default: true
  16734. },
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(200, "m")
  16738. },
  16739. {
  16740. name: "Megamacro",
  16741. height: math.unit(420, "km")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(8 + 2 / 12, "feet"),
  16750. weight: math.unit(300, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/kibibyte/front.svg",
  16754. extra: 2221 / 2098,
  16755. bottom: 0.04
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(8 + 2 / 12, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Socialable Macro",
  16767. height: math.unit(50, "feet")
  16768. },
  16769. {
  16770. name: "Macro",
  16771. height: math.unit(300, "feet")
  16772. },
  16773. {
  16774. name: "Megamacro",
  16775. height: math.unit(500, "miles")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(150, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/felix/front.svg",
  16788. extra: 762 / 722,
  16789. bottom: 0.02
  16790. }
  16791. },
  16792. frontClothed: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front (Clothed)",
  16796. image: {
  16797. source: "./media/characters/felix/front-clothed.svg",
  16798. extra: 762 / 722,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 8 / 12, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Macro",
  16811. height: math.unit(2600, "feet")
  16812. },
  16813. {
  16814. name: "Megamacro",
  16815. height: math.unit(450, "miles")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 1 / 12, "feet"),
  16824. weight: math.unit(250, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/tobo/front.svg",
  16828. extra: 608 / 586,
  16829. bottom: 0.023
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(6 + 1 / 12, "feet"),
  16834. weight: math.unit(250, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/tobo/back.svg",
  16838. extra: 608 / 586
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Nano",
  16845. height: math.unit(2, "nm")
  16846. },
  16847. {
  16848. name: "Megamicro",
  16849. height: math.unit(0.1, "mm")
  16850. },
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(1, "inch"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Human-sized",
  16858. height: math.unit(6 + 1 / 12, "feet")
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(250, "feet")
  16863. },
  16864. {
  16865. name: "Megamacro",
  16866. height: math.unit(75, "miles")
  16867. },
  16868. {
  16869. name: "Texas-sized",
  16870. height: math.unit(750, "miles")
  16871. },
  16872. {
  16873. name: "Teramacro",
  16874. height: math.unit(50000, "miles")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(269, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/danny-kapowsky/front.svg",
  16887. extra: 766 / 736,
  16888. bottom: 0.044
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(269, "lb"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/danny-kapowsky/back.svg",
  16897. extra: 797 / 760,
  16898. bottom: 0.025
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(150, "feet"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro+",
  16910. height: math.unit(200, "feet")
  16911. },
  16912. {
  16913. name: "Macro++",
  16914. height: math.unit(300, "feet")
  16915. },
  16916. {
  16917. name: "Macro+++",
  16918. height: math.unit(400, "feet")
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16924. {
  16925. side: {
  16926. height: math.unit(6, "feet"),
  16927. weight: math.unit(170, "lb"),
  16928. name: "Side",
  16929. image: {
  16930. source: "./media/characters/finn/side.svg",
  16931. extra: 1953 / 1807,
  16932. bottom: 0.057
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Megamacro",
  16939. height: math.unit(14445, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 6 / 12, "feet"),
  16949. weight: math.unit(125, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/roy/front.svg",
  16953. extra: 1,
  16954. bottom: 0.11
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Micro",
  16961. height: math.unit(3, "inches"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 6 / 12, "feet")
  16967. },
  16968. {
  16969. name: "Lesser Macro",
  16970. height: math.unit(60, "feet")
  16971. },
  16972. {
  16973. name: "Greater Macro",
  16974. height: math.unit(120, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(6, "feet"),
  16983. weight: math.unit(100, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/aevsivs/front.svg",
  16987. extra: 1,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. back: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(100, "lb"),
  16994. name: "Back",
  16995. image: {
  16996. source: "./media/characters/aevsivs/back.svg"
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Micro",
  17003. height: math.unit(2, "inches"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(5 + 7 / 12, "feet"),
  17017. weight: math.unit(159, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/hildegard/front.svg",
  17021. extra: 289 / 269,
  17022. bottom: 7.63 / 297.8
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(5 + 7 / 12, "feet"),
  17027. weight: math.unit(159, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/hildegard/back.svg",
  17031. extra: 280 / 260,
  17032. bottom: 2.3 / 282
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(5 + 7 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17046. {
  17047. bernard: {
  17048. height: math.unit(2 + 7 / 12, "feet"),
  17049. weight: math.unit(66, "lb"),
  17050. name: "Bernard",
  17051. rename: true,
  17052. image: {
  17053. source: "./media/characters/bernard-wilder/bernard.svg",
  17054. extra: 192 / 128,
  17055. bottom: 0.05
  17056. }
  17057. },
  17058. wilder: {
  17059. height: math.unit(5 + 8 / 12, "feet"),
  17060. weight: math.unit(143, "lb"),
  17061. name: "Wilder",
  17062. rename: true,
  17063. image: {
  17064. source: "./media/characters/bernard-wilder/wilder.svg",
  17065. extra: 361 / 312,
  17066. bottom: 0.02
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(2 + 7 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17080. {
  17081. anthro: {
  17082. height: math.unit(6 + 1 / 12, "feet"),
  17083. weight: math.unit(155, "lb"),
  17084. name: "Anthro",
  17085. image: {
  17086. source: "./media/characters/hearth/anthro.svg",
  17087. extra: 1178/1136,
  17088. bottom: 28/1206
  17089. }
  17090. },
  17091. feral: {
  17092. height: math.unit(3.78, "feet"),
  17093. weight: math.unit(35, "kg"),
  17094. name: "Feral",
  17095. image: {
  17096. source: "./media/characters/hearth/feral.svg",
  17097. extra: 153 / 135,
  17098. bottom: 0.03
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6 + 1 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(182, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/ingrid/front.svg",
  17119. extra: 294 / 268,
  17120. bottom: 0.027
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17134. {
  17135. eevee: {
  17136. height: math.unit(2 + 10 / 12, "feet"),
  17137. weight: math.unit(86, "lb"),
  17138. name: "Malgam",
  17139. image: {
  17140. source: "./media/characters/malgam/eevee.svg",
  17141. extra: 952/784,
  17142. bottom: 38/990
  17143. }
  17144. },
  17145. sylveon: {
  17146. height: math.unit(4, "feet"),
  17147. weight: math.unit(101, "lb"),
  17148. name: "Future Malgam",
  17149. rename: true,
  17150. image: {
  17151. source: "./media/characters/malgam/sylveon.svg",
  17152. extra: 371 / 325,
  17153. bottom: 0.015
  17154. }
  17155. },
  17156. gigantamax: {
  17157. height: math.unit(50, "feet"),
  17158. name: "Gigantamax Malgam",
  17159. rename: true,
  17160. image: {
  17161. source: "./media/characters/malgam/gigantamax.svg"
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(2 + 10 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(5 + 11 / 12, "feet"),
  17178. weight: math.unit(188, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/fleur/front.svg",
  17182. extra: 309 / 283,
  17183. bottom: 0.007
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(5 + 11 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17197. {
  17198. front: {
  17199. height: math.unit(5 + 4 / 12, "feet"),
  17200. weight: math.unit(122, "lb"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/jude/front.svg",
  17204. extra: 288 / 273,
  17205. bottom: 0.03
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 4 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(5 + 11 / 12, "feet"),
  17222. weight: math.unit(190, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/seara/front.svg",
  17226. extra: 1,
  17227. bottom: 0.05
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(5 + 11 / 12, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(16 + 5 / 12, "feet"),
  17244. weight: math.unit(524, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/caspian-lugia/front.svg",
  17248. extra: 1,
  17249. bottom: 0.04
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(16 + 5 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(5 + 7 / 12, "feet"),
  17266. weight: math.unit(170, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/mika/front.svg",
  17270. extra: 1,
  17271. bottom: 0.016
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(5 + 7 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6 + 2 / 12, "feet"),
  17288. weight: math.unit(268, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/sol/front.svg",
  17292. extra: 247 / 231,
  17293. bottom: 0.05
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17307. {
  17308. buizel: {
  17309. height: math.unit(2 + 5 / 12, "feet"),
  17310. weight: math.unit(87, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/umiko/buizel.svg",
  17314. extra: 172 / 157,
  17315. bottom: 0.01
  17316. },
  17317. form: "buizel",
  17318. default: true
  17319. },
  17320. floatzel: {
  17321. height: math.unit(5 + 9 / 12, "feet"),
  17322. weight: math.unit(250, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/umiko/floatzel.svg",
  17326. extra: 1076/1006,
  17327. bottom: 15/1091
  17328. },
  17329. form: "floatzel",
  17330. default: true
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(2 + 5 / 12, "feet"),
  17337. form: "buizel",
  17338. default: true
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(5 + 9 / 12, "feet"),
  17343. form: "floatzel",
  17344. default: true
  17345. },
  17346. ],
  17347. {
  17348. "buizel": {
  17349. name: "Buizel"
  17350. },
  17351. "floatzel": {
  17352. name: "Floatzel",
  17353. default: true
  17354. }
  17355. }
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6 + 2 / 12, "feet"),
  17362. weight: math.unit(146, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/iliac/front.svg",
  17366. extra: 389 / 365,
  17367. bottom: 0.035
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(6 + 2 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(170, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/topaz/front.svg",
  17388. extra: 317 / 303,
  17389. bottom: 0.055
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(6, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(5 + 11 / 12, "feet"),
  17406. weight: math.unit(144, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/gabriel/front.svg",
  17410. extra: 285 / 262,
  17411. bottom: 0.004
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(5 + 11 / 12, "feet"),
  17419. default: true
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17425. {
  17426. side: {
  17427. height: math.unit(6 + 5 / 12, "feet"),
  17428. weight: math.unit(300, "lb"),
  17429. name: "Side",
  17430. image: {
  17431. source: "./media/characters/tempest-suicune/side.svg",
  17432. extra: 195 / 154,
  17433. bottom: 0.04
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(6 + 5 / 12, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(7 + 2 / 12, "feet"),
  17450. weight: math.unit(322, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/vulcan/front.svg",
  17454. extra: 154 / 147,
  17455. bottom: 0.04
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(7 + 2 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(5 + 10 / 12, "feet"),
  17472. weight: math.unit(264, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/gault/front.svg",
  17476. extra: 161 / 140,
  17477. bottom: 0.028
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(5 + 10 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(6, "feet"),
  17494. weight: math.unit(150, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/shard/front.svg",
  17498. extra: 273 / 238,
  17499. bottom: 0.02
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(3 + 6 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 11 / 12, "feet"),
  17516. weight: math.unit(146, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/ashe/front.svg",
  17520. extra: 400 / 373,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 11 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(5 + 5 / 12, "feet"),
  17538. weight: math.unit(135, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/beatrix/front.svg",
  17542. extra: 392 / 379,
  17543. bottom: 0.01
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(6, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(6 + 2/12, "feet"),
  17560. weight: math.unit(135, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/ignatius/front.svg",
  17564. extra: 1380/1259,
  17565. bottom: 27/1407
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(6 + 2/12, "feet"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 2 / 12, "feet"),
  17582. weight: math.unit(138, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/mei-li/front.svg",
  17586. extra: 237 / 229,
  17587. bottom: 0.03
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(2 + 4 / 12, "feet"),
  17604. weight: math.unit(62, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/puru/front.svg",
  17608. extra: 206 / 149,
  17609. bottom: 0.06
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(2 + 4 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17623. {
  17624. anthro: {
  17625. height: math.unit(5 + 8/12, "feet"),
  17626. weight: math.unit(200, "lb"),
  17627. energyNeed: math.unit(2000, "kcal"),
  17628. name: "Anthro",
  17629. image: {
  17630. source: "./media/characters/kee/anthro.svg",
  17631. extra: 3251/3184,
  17632. bottom: 250/3501
  17633. }
  17634. },
  17635. taur: {
  17636. height: math.unit(11, "feet"),
  17637. weight: math.unit(500, "lb"),
  17638. energyNeed: math.unit(5000, "kcal"),
  17639. name: "Taur",
  17640. image: {
  17641. source: "./media/characters/kee/taur.svg",
  17642. extra: 1362/1320,
  17643. bottom: 83/1445
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(5 + 8/12, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(35, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17661. {
  17662. anthro: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(190, "lb"),
  17665. name: "Anthro",
  17666. image: {
  17667. source: "./media/characters/cobalt-dracha/anthro.svg",
  17668. extra: 231 / 225,
  17669. bottom: 0.04
  17670. }
  17671. },
  17672. feral: {
  17673. height: math.unit(9 + 7 / 12, "feet"),
  17674. weight: math.unit(294, "lb"),
  17675. name: "Feral",
  17676. image: {
  17677. source: "./media/characters/cobalt-dracha/feral.svg",
  17678. extra: 692 / 633,
  17679. bottom: 0.05
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(7, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17693. {
  17694. fallen: {
  17695. height: math.unit(11 + 8 / 12, "feet"),
  17696. weight: math.unit(485, "lb"),
  17697. name: "Java (Fallen)",
  17698. rename: true,
  17699. image: {
  17700. source: "./media/characters/java/fallen.svg",
  17701. extra: 226 / 208,
  17702. bottom: 0.005
  17703. }
  17704. },
  17705. godkin: {
  17706. height: math.unit(10 + 6 / 12, "feet"),
  17707. weight: math.unit(328, "lb"),
  17708. name: "Java (Godkin)",
  17709. rename: true,
  17710. image: {
  17711. source: "./media/characters/java/godkin.svg",
  17712. extra: 1104/1068,
  17713. bottom: 36/1140
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(11 + 8 / 12, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(5 + 9 / 12, "feet"),
  17730. weight: math.unit(170, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/purna/front.svg",
  17734. extra: 239 / 229,
  17735. bottom: 0.01
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(5 + 9 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(5 + 9 / 12, "feet"),
  17752. weight: math.unit(142, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/kuva/front.svg",
  17756. extra: 281 / 271,
  17757. bottom: 0.006
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(5 + 9 / 12, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17771. {
  17772. anthro: {
  17773. height: math.unit(9 + 2 / 12, "feet"),
  17774. weight: math.unit(270, "lb"),
  17775. name: "Anthro",
  17776. image: {
  17777. source: "./media/characters/embra/anthro.svg",
  17778. extra: 200 / 187,
  17779. bottom: 0.02
  17780. }
  17781. },
  17782. feral: {
  17783. height: math.unit(18 + 8 / 12, "feet"),
  17784. weight: math.unit(576, "lb"),
  17785. name: "Feral",
  17786. image: {
  17787. source: "./media/characters/embra/feral.svg",
  17788. extra: 152 / 137,
  17789. bottom: 0.037
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(9 + 2 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17803. {
  17804. anthro: {
  17805. height: math.unit(10 + 9 / 12, "feet"),
  17806. weight: math.unit(224, "lb"),
  17807. name: "Anthro",
  17808. image: {
  17809. source: "./media/characters/grottos/anthro.svg",
  17810. extra: 350 / 332,
  17811. bottom: 0.045
  17812. }
  17813. },
  17814. feral: {
  17815. height: math.unit(20 + 7 / 12, "feet"),
  17816. weight: math.unit(629, "lb"),
  17817. name: "Feral",
  17818. image: {
  17819. source: "./media/characters/grottos/feral.svg",
  17820. extra: 207 / 190,
  17821. bottom: 0.05
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(10 + 9 / 12, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17835. {
  17836. anthro: {
  17837. height: math.unit(9 + 6 / 12, "feet"),
  17838. weight: math.unit(298, "lb"),
  17839. name: "Anthro",
  17840. image: {
  17841. source: "./media/characters/frifna/anthro.svg",
  17842. extra: 282 / 269,
  17843. bottom: 0.015
  17844. }
  17845. },
  17846. feral: {
  17847. height: math.unit(16 + 2 / 12, "feet"),
  17848. weight: math.unit(624, "lb"),
  17849. name: "Feral",
  17850. image: {
  17851. source: "./media/characters/frifna/feral.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(9 + 6 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6 + 2 / 12, "feet"),
  17868. weight: math.unit(168, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/elise/front.svg",
  17872. extra: 276 / 271
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(5 + 10 / 12, "feet"),
  17889. weight: math.unit(210, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/glade/front.svg",
  17893. extra: 258 / 247,
  17894. bottom: 0.008
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(5 + 10 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(5 + 10 / 12, "feet"),
  17911. weight: math.unit(129, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/rina/front.svg",
  17915. extra: 266 / 255,
  17916. bottom: 0.005
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(5 + 10 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(192, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/veronica/front.svg",
  17937. extra: 319 / 309,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(9 + 3 / 12, "feet"),
  17955. weight: math.unit(1100, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/braxton/front.svg",
  17959. extra: 1057 / 984,
  17960. bottom: 0.05
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(9 + 3 / 12, "feet")
  17968. },
  17969. {
  17970. name: "Giant",
  17971. height: math.unit(300, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(700, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(6000, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6 + 7 / 12, "feet"),
  17989. weight: math.unit(150, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/blue-feyonics/front.svg",
  17993. extra: 1403 / 1306,
  17994. bottom: 0.047
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(6 + 7 / 12, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(1.8, "meters"),
  18011. weight: math.unit(60, "kg"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/maxwell/front.svg",
  18015. extra: 2060 / 1873
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Micro",
  18022. height: math.unit(1, "mm")
  18023. },
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(1.8, "meter"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(30, "meters")
  18032. },
  18033. {
  18034. name: "Megamacro",
  18035. height: math.unit(10, "km")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/jack/front.svg",
  18048. extra: 1754 / 1640,
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(80000, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Max size",
  18061. height: math.unit(10, "lightyears")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18067. {
  18068. urban: {
  18069. height: math.unit(5, "feet"),
  18070. weight: math.unit(240, "lb"),
  18071. name: "Urban",
  18072. image: {
  18073. source: "./media/characters/cafat/urban.svg",
  18074. extra: 1223/1126,
  18075. bottom: 205/1428
  18076. }
  18077. },
  18078. summer: {
  18079. height: math.unit(5, "feet"),
  18080. weight: math.unit(240, "lb"),
  18081. name: "Summer",
  18082. image: {
  18083. source: "./media/characters/cafat/summer.svg",
  18084. extra: 1223/1126,
  18085. bottom: 205/1428
  18086. }
  18087. },
  18088. winter: {
  18089. height: math.unit(5, "feet"),
  18090. weight: math.unit(240, "lb"),
  18091. name: "Winter",
  18092. image: {
  18093. source: "./media/characters/cafat/winter.svg",
  18094. extra: 1223/1126,
  18095. bottom: 205/1428
  18096. }
  18097. },
  18098. lingerie: {
  18099. height: math.unit(5, "feet"),
  18100. weight: math.unit(240, "lb"),
  18101. name: "Lingerie",
  18102. image: {
  18103. source: "./media/characters/cafat/lingerie.svg",
  18104. extra: 1223/1126,
  18105. bottom: 205/1428
  18106. }
  18107. },
  18108. upright: {
  18109. height: math.unit(6.3, "feet"),
  18110. weight: math.unit(240, "lb"),
  18111. name: "Upright",
  18112. image: {
  18113. source: "./media/characters/cafat/upright.svg",
  18114. bottom: 0.01
  18115. }
  18116. },
  18117. uprightFull: {
  18118. height: math.unit(6.3, "feet"),
  18119. weight: math.unit(240, "lb"),
  18120. name: "Upright (Full)",
  18121. image: {
  18122. source: "./media/characters/cafat/upright-full.svg",
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Small",
  18130. height: math.unit(5, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Large",
  18135. height: math.unit(13, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/verin-raharra/front.svg",
  18148. extra: 5019 / 4835,
  18149. bottom: 0.023
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(7 + 5 / 12, "feet"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Upsized",
  18161. height: math.unit(20, "feet")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(230, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/nakata/front.svg",
  18174. extra: 1.005,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(7, "feet"),
  18183. default: true
  18184. },
  18185. {
  18186. name: "Big",
  18187. height: math.unit(14, "feet")
  18188. },
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(400, "feet")
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18197. {
  18198. front: {
  18199. height: math.unit(4.91, "feet"),
  18200. weight: math.unit(100, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/lily/front.svg",
  18204. extra: 1585 / 1415,
  18205. bottom: 0.02
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(4.91, "feet"),
  18213. default: true
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18219. {
  18220. laying: {
  18221. height: math.unit(4 + 4 / 12, "feet"),
  18222. weight: math.unit(600, "lb"),
  18223. name: "Laying",
  18224. image: {
  18225. source: "./media/characters/sheila/laying.svg",
  18226. extra: 1333 / 1265,
  18227. bottom: 0.16
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(4 + 4 / 12, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(190, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/sax/front.svg",
  18248. extra: 1187 / 973,
  18249. bottom: 0.042
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Micro",
  18256. height: math.unit(4, "inches"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/pandora/front.svg",
  18270. extra: 2720 / 2556,
  18271. bottom: 0.015
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(6, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/pandora/back.svg",
  18280. extra: 2720 / 2556,
  18281. bottom: 0.01
  18282. }
  18283. },
  18284. beans: {
  18285. height: math.unit(6 / 8, "feet"),
  18286. name: "Beans",
  18287. image: {
  18288. source: "./media/characters/pandora/beans.svg"
  18289. }
  18290. },
  18291. collar: {
  18292. height: math.unit(0.31, "feet"),
  18293. name: "Collar",
  18294. image: {
  18295. source: "./media/characters/pandora/collar.svg"
  18296. }
  18297. },
  18298. skirt: {
  18299. height: math.unit(6, "feet"),
  18300. weight: math.unit(150, "lb"),
  18301. name: "Skirt",
  18302. image: {
  18303. source: "./media/characters/pandora/skirt.svg",
  18304. extra: 1622 / 1525,
  18305. bottom: 0.015
  18306. }
  18307. },
  18308. hoodie: {
  18309. height: math.unit(6, "feet"),
  18310. weight: math.unit(150, "lb"),
  18311. name: "Hoodie",
  18312. image: {
  18313. source: "./media/characters/pandora/hoodie.svg",
  18314. extra: 1622 / 1525,
  18315. bottom: 0.015
  18316. }
  18317. },
  18318. casual: {
  18319. height: math.unit(6, "feet"),
  18320. weight: math.unit(150, "lb"),
  18321. name: "Casual",
  18322. image: {
  18323. source: "./media/characters/pandora/casual.svg",
  18324. extra: 1622 / 1525,
  18325. bottom: 0.015
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(6, "feet")
  18333. },
  18334. {
  18335. name: "Big Steppy",
  18336. height: math.unit(1, "km"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Galactic Steppy",
  18341. height: math.unit(2, "gigameters")
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18347. {
  18348. side: {
  18349. height: math.unit(10, "feet"),
  18350. weight: math.unit(800, "kg"),
  18351. name: "Side",
  18352. image: {
  18353. source: "./media/characters/venio-darcony/side.svg",
  18354. extra: 1373 / 1003,
  18355. bottom: 0.037
  18356. }
  18357. },
  18358. front: {
  18359. height: math.unit(19, "feet"),
  18360. weight: math.unit(800, "kg"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/venio-darcony/front.svg"
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(19, "feet"),
  18368. weight: math.unit(800, "kg"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/venio-darcony/back.svg"
  18372. }
  18373. },
  18374. sideNsfw: {
  18375. height: math.unit(10, "feet"),
  18376. weight: math.unit(800, "kg"),
  18377. name: "Side (NSFW)",
  18378. image: {
  18379. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18380. extra: 1373 / 1003,
  18381. bottom: 0.037
  18382. }
  18383. },
  18384. frontNsfw: {
  18385. height: math.unit(19, "feet"),
  18386. weight: math.unit(800, "kg"),
  18387. name: "Front (NSFW)",
  18388. image: {
  18389. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18390. }
  18391. },
  18392. backNsfw: {
  18393. height: math.unit(19, "feet"),
  18394. weight: math.unit(800, "kg"),
  18395. name: "Back (NSFW)",
  18396. image: {
  18397. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18398. }
  18399. },
  18400. sideArmored: {
  18401. height: math.unit(10, "feet"),
  18402. weight: math.unit(800, "kg"),
  18403. name: "Side (Armored)",
  18404. image: {
  18405. source: "./media/characters/venio-darcony/side-armored.svg",
  18406. extra: 1373 / 1003,
  18407. bottom: 0.037
  18408. }
  18409. },
  18410. frontArmored: {
  18411. height: math.unit(19, "feet"),
  18412. weight: math.unit(900, "kg"),
  18413. name: "Front (Armored)",
  18414. image: {
  18415. source: "./media/characters/venio-darcony/front-armored.svg"
  18416. }
  18417. },
  18418. backArmored: {
  18419. height: math.unit(19, "feet"),
  18420. weight: math.unit(900, "kg"),
  18421. name: "Back (Armored)",
  18422. image: {
  18423. source: "./media/characters/venio-darcony/back-armored.svg"
  18424. }
  18425. },
  18426. sword: {
  18427. height: math.unit(10, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Sword",
  18430. image: {
  18431. source: "./media/characters/venio-darcony/sword.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(10, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(130, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro+",
  18447. height: math.unit(240, "feet")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(6, "feet"),
  18456. weight: math.unit(150, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/veski/front.svg",
  18460. extra: 1299 / 1225,
  18461. bottom: 0.04
  18462. }
  18463. },
  18464. back: {
  18465. height: math.unit(6, "feet"),
  18466. weight: math.unit(150, "lb"),
  18467. name: "Back",
  18468. image: {
  18469. source: "./media/characters/veski/back.svg",
  18470. extra: 1299 / 1225,
  18471. bottom: 0.008
  18472. }
  18473. },
  18474. maw: {
  18475. height: math.unit(1.5 * 1.21, "feet"),
  18476. name: "Maw",
  18477. image: {
  18478. source: "./media/characters/veski/maw.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(2, "km"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 7 / 12, "feet"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/isabelle/front.svg",
  18498. extra: 2130 / 1976,
  18499. bottom: 0.05
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Supermicro",
  18506. height: math.unit(10, "micrometers")
  18507. },
  18508. {
  18509. name: "Micro",
  18510. height: math.unit(1, "inch")
  18511. },
  18512. {
  18513. name: "Tiny",
  18514. height: math.unit(5, "inches")
  18515. },
  18516. {
  18517. name: "Standard",
  18518. height: math.unit(5 + 7 / 12, "inches")
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(80, "meters"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(250, "meters")
  18528. },
  18529. {
  18530. name: "Gigamacro",
  18531. height: math.unit(5, "km")
  18532. },
  18533. {
  18534. name: "Cosmic",
  18535. height: math.unit(2.5e6, "miles")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(150, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/hanzo/front.svg",
  18548. extra: 374 / 344,
  18549. bottom: 0.02
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(7, "feet"),
  18566. weight: math.unit(130, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/anna/front.svg",
  18570. extra: 169 / 145,
  18571. bottom: 0.06
  18572. }
  18573. },
  18574. full: {
  18575. height: math.unit(4.96, "feet"),
  18576. weight: math.unit(220, "lb"),
  18577. name: "Full",
  18578. image: {
  18579. source: "./media/characters/anna/full.svg",
  18580. extra: 138 / 114,
  18581. bottom: 0.15
  18582. }
  18583. },
  18584. tongue: {
  18585. height: math.unit(2.53, "feet"),
  18586. name: "Tongue",
  18587. image: {
  18588. source: "./media/characters/anna/tongue.svg"
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(7, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(7 + 1/12, "feet"),
  18605. weight: math.unit(150, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/ian-corvid/front.svg",
  18609. extra: 621/591,
  18610. bottom: 14/635
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(7 + 1/12, "feet"),
  18615. weight: math.unit(150, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/ian-corvid/back.svg",
  18619. extra: 621/600,
  18620. bottom: 10/631
  18621. }
  18622. },
  18623. stomping: {
  18624. height: math.unit(7 + 1/12, "feet"),
  18625. weight: math.unit(150, "lb"),
  18626. name: "Stomping",
  18627. image: {
  18628. source: "./media/characters/ian-corvid/stomping.svg",
  18629. extra: 309/291,
  18630. bottom: 7/316
  18631. }
  18632. },
  18633. tongue: {
  18634. height: math.unit(3.9, "feet"),
  18635. name: "Tongue",
  18636. image: {
  18637. source: "./media/characters/ian-corvid/tongue.svg"
  18638. }
  18639. },
  18640. beak: {
  18641. height: math.unit(0.9, "feet"),
  18642. name: "Beak",
  18643. image: {
  18644. source: "./media/characters/ian-corvid/beak.svg"
  18645. }
  18646. },
  18647. sitting: {
  18648. height: math.unit(7 / 1.8, "feet"),
  18649. weight: math.unit(150, "lb"),
  18650. name: "Sitting",
  18651. image: {
  18652. source: "./media/characters/ian-corvid/sitting.svg",
  18653. extra: 1400 / 1269,
  18654. bottom: 0.15
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Tiny Microw",
  18661. height: math.unit(1, "inch")
  18662. },
  18663. {
  18664. name: "Microw",
  18665. height: math.unit(6, "inches")
  18666. },
  18667. {
  18668. name: "Crow",
  18669. height: math.unit(7 + 1 / 12, "feet"),
  18670. default: true
  18671. },
  18672. {
  18673. name: "Macrow",
  18674. height: math.unit(176, "feet")
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(5 + 7 / 12, "feet"),
  18683. weight: math.unit(147, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/natalie-kellon/front.svg",
  18687. extra: 1214 / 1141,
  18688. bottom: 0.02
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Micro",
  18695. height: math.unit(1 / 16, "inch")
  18696. },
  18697. {
  18698. name: "Tiny",
  18699. height: math.unit(4, "inches")
  18700. },
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(5 + 7 / 12, "feet"),
  18704. default: true
  18705. },
  18706. {
  18707. name: "Amazon",
  18708. height: math.unit(12, "feet")
  18709. },
  18710. {
  18711. name: "Giantess",
  18712. height: math.unit(160, "meters")
  18713. },
  18714. {
  18715. name: "Titaness",
  18716. height: math.unit(800, "meters")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/alluria/front.svg",
  18729. extra: 806 / 738,
  18730. bottom: 0.01
  18731. }
  18732. },
  18733. side: {
  18734. height: math.unit(6, "feet"),
  18735. weight: math.unit(150, "lb"),
  18736. name: "Side",
  18737. image: {
  18738. source: "./media/characters/alluria/side.svg",
  18739. extra: 800 / 750,
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/alluria/back.svg",
  18748. extra: 806 / 738,
  18749. }
  18750. },
  18751. frontMaid: {
  18752. height: math.unit(6, "feet"),
  18753. weight: math.unit(150, "lb"),
  18754. name: "Front (Maid)",
  18755. image: {
  18756. source: "./media/characters/alluria/front-maid.svg",
  18757. extra: 806 / 738,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. sideMaid: {
  18762. height: math.unit(6, "feet"),
  18763. weight: math.unit(150, "lb"),
  18764. name: "Side (Maid)",
  18765. image: {
  18766. source: "./media/characters/alluria/side-maid.svg",
  18767. extra: 800 / 750,
  18768. bottom: 0.005
  18769. }
  18770. },
  18771. backMaid: {
  18772. height: math.unit(6, "feet"),
  18773. weight: math.unit(150, "lb"),
  18774. name: "Back (Maid)",
  18775. image: {
  18776. source: "./media/characters/alluria/back-maid.svg",
  18777. extra: 806 / 738,
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(6, "inches"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6, "feet"),
  18794. weight: math.unit(150, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/kyle/front.svg",
  18798. extra: 1069 / 962,
  18799. bottom: 77.228 / 1727.45
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Macro",
  18806. height: math.unit(150, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6, "feet"),
  18816. weight: math.unit(300, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/duncan/front.svg",
  18820. extra: 1650 / 1482,
  18821. bottom: 0.05
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(100, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 4 / 12, "feet"),
  18838. weight: math.unit(220, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/memory/front.svg",
  18842. extra: 3641 / 3545,
  18843. bottom: 0.03
  18844. }
  18845. },
  18846. back: {
  18847. height: math.unit(5 + 4 / 12, "feet"),
  18848. weight: math.unit(220, "lb"),
  18849. name: "Back",
  18850. image: {
  18851. source: "./media/characters/memory/back.svg",
  18852. extra: 3641 / 3545,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. frontSkirt: {
  18857. height: math.unit(5 + 4 / 12, "feet"),
  18858. weight: math.unit(220, "lb"),
  18859. name: "Front (Skirt)",
  18860. image: {
  18861. source: "./media/characters/memory/front-skirt.svg",
  18862. extra: 3641 / 3545,
  18863. bottom: 0.03
  18864. }
  18865. },
  18866. frontDress: {
  18867. height: math.unit(5 + 4 / 12, "feet"),
  18868. weight: math.unit(220, "lb"),
  18869. name: "Front (Dress)",
  18870. image: {
  18871. source: "./media/characters/memory/front-dress.svg",
  18872. extra: 3641 / 3545,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Micro",
  18880. height: math.unit(6, "inches"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(5 + 4 / 12, "feet")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(4 + 11 / 12, "feet"),
  18894. weight: math.unit(100, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/luno/front.svg",
  18898. extra: 1535 / 1487,
  18899. bottom: 0.03
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Micro",
  18906. height: math.unit(3, "inches")
  18907. },
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(4 + 11 / 12, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(300, "feet")
  18916. },
  18917. {
  18918. name: "Megamacro",
  18919. height: math.unit(700, "miles")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(6 + 2 / 12, "feet"),
  18928. weight: math.unit(170, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/jamesy/front.svg",
  18932. extra: 440 / 382,
  18933. bottom: 0.005
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(3, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(6 + 2 / 12, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(300, "feet")
  18950. },
  18951. {
  18952. name: "Megamacro",
  18953. height: math.unit(700, "miles")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6, "feet"),
  18962. weight: math.unit(160, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/mark/front.svg",
  18966. extra: 3300 / 3100,
  18967. bottom: 136.42 / 3440.47
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(120, "meters")
  18975. },
  18976. {
  18977. name: "Bigger Macro",
  18978. height: math.unit(350, "meters")
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(8, "km"),
  18983. default: true
  18984. },
  18985. {
  18986. name: "Continental",
  18987. height: math.unit(4550, "km")
  18988. },
  18989. {
  18990. name: "Planetary",
  18991. height: math.unit(65000, "km")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(6, "feet"),
  19000. weight: math.unit(400, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/mac/front.svg",
  19004. extra: 1048 / 987.7,
  19005. bottom: 60 / 1107.6,
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(500, "feet"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(5 + 2 / 12, "feet"),
  19022. weight: math.unit(190, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/bari/front.svg",
  19026. extra: 3156 / 2880,
  19027. bottom: 0.03
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(5 + 2 / 12, "feet"),
  19032. weight: math.unit(190, "lb"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/bari/back.svg",
  19036. extra: 3260 / 2834,
  19037. bottom: 0.025
  19038. }
  19039. },
  19040. frontPlush: {
  19041. height: math.unit(5 + 2 / 12, "feet"),
  19042. weight: math.unit(190, "lb"),
  19043. name: "Front (Plush)",
  19044. image: {
  19045. source: "./media/characters/bari/front-plush.svg",
  19046. extra: 1112 / 1061,
  19047. bottom: 0.002
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Micro",
  19054. height: math.unit(3, "inches")
  19055. },
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(20, "feet")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(6 + 1 / 12, "feet"),
  19072. weight: math.unit(275, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/hunter-misha-raven/front.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Mortal",
  19082. height: math.unit(6 + 1 / 12, "feet")
  19083. },
  19084. {
  19085. name: "Divine",
  19086. height: math.unit(1.12134e34, "parsecs"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6 + 3 / 12, "feet"),
  19096. weight: math.unit(220, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/max-calore/front.svg",
  19100. extra: 1700 / 1648,
  19101. bottom: 0.01
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(6 + 3 / 12, "feet"),
  19106. weight: math.unit(220, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/max-calore/back.svg",
  19110. extra: 1700 / 1648,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 3 / 12, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19125. {
  19126. side: {
  19127. height: math.unit(2 + 8 / 12, "feet"),
  19128. weight: math.unit(99, "lb"),
  19129. name: "Side",
  19130. image: {
  19131. source: "./media/characters/aspen/side.svg",
  19132. extra: 152 / 138,
  19133. bottom: 0.032
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(2 + 8 / 12, "feet"),
  19141. default: true
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19147. {
  19148. side: {
  19149. height: math.unit(3 + 2 / 12, "feet"),
  19150. weight: math.unit(224, "lb"),
  19151. name: "Side",
  19152. image: {
  19153. source: "./media/characters/sheila-feral-wolf/side.svg",
  19154. extra: 179 / 166,
  19155. bottom: 0.03
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(3 + 2 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19169. {
  19170. side: {
  19171. height: math.unit(1 + 9 / 12, "feet"),
  19172. weight: math.unit(38, "lb"),
  19173. name: "Side",
  19174. image: {
  19175. source: "./media/characters/michelle/side.svg",
  19176. extra: 147 / 136.7,
  19177. bottom: 0.03
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(1 + 9 / 12, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(1.54, "feet"),
  19194. weight: math.unit(50, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/nino/front.svg"
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(1.54, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.49, "feet"),
  19214. weight: math.unit(45, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/viola/front.svg"
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(1.49, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19231. {
  19232. front: {
  19233. height: math.unit(6 + 5 / 12, "feet"),
  19234. weight: math.unit(580, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/atlas/front.svg",
  19238. extra: 298.5 / 290,
  19239. bottom: 0.015
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 5 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19253. {
  19254. side: {
  19255. height: math.unit(15.6, "inches"),
  19256. weight: math.unit(10, "lb"),
  19257. name: "Side",
  19258. image: {
  19259. source: "./media/characters/davy/side.svg",
  19260. extra: 200 / 170,
  19261. bottom: 0.01
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(15.6, "inches"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19275. {
  19276. side: {
  19277. height: math.unit(4 + 8 / 12, "feet"),
  19278. weight: math.unit(166, "lb"),
  19279. name: "Side",
  19280. image: {
  19281. source: "./media/characters/fiona/side.svg",
  19282. extra: 232 / 220,
  19283. bottom: 0.03
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(4 + 8 / 12, "feet"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19297. {
  19298. front: {
  19299. height: math.unit(26, "inches"),
  19300. weight: math.unit(35, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/lyla/front.svg",
  19304. bottom: 0.1
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(3, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19318. {
  19319. side: {
  19320. height: math.unit(1.8, "feet"),
  19321. weight: math.unit(44, "lb"),
  19322. name: "Side",
  19323. image: {
  19324. source: "./media/characters/perseus/side.svg",
  19325. bottom: 0.21
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(1.8, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19339. {
  19340. side: {
  19341. height: math.unit(4 + 2 / 12, "feet"),
  19342. weight: math.unit(20, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/remus/side.svg"
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(4 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(4 + 11 / 12, "feet"),
  19362. weight: math.unit(114, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/raf/front.svg",
  19366. extra: 1504/1339,
  19367. bottom: 26/1530
  19368. }
  19369. },
  19370. side: {
  19371. height: math.unit(4 + 11 / 12, "feet"),
  19372. weight: math.unit(114, "lb"),
  19373. name: "Side",
  19374. image: {
  19375. source: "./media/characters/raf/side.svg",
  19376. extra: 1466/1316,
  19377. bottom: 29/1495
  19378. }
  19379. },
  19380. paw: {
  19381. height: math.unit(1.45, "feet"),
  19382. name: "Paw",
  19383. image: {
  19384. source: "./media/characters/raf/paw.svg"
  19385. },
  19386. extraAttributes: {
  19387. "toeSize": {
  19388. name: "Toe Size",
  19389. power: 2,
  19390. type: "area",
  19391. base: math.unit(0.004, "m^2")
  19392. },
  19393. "padSize": {
  19394. name: "Pad Size",
  19395. power: 2,
  19396. type: "area",
  19397. base: math.unit(0.04, "m^2")
  19398. },
  19399. "footSize": {
  19400. name: "Foot Size",
  19401. power: 2,
  19402. type: "area",
  19403. base: math.unit(0.08, "m^2")
  19404. },
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(2, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(4 + 11 / 12, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(70, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(1.5, "meters"),
  19429. weight: math.unit(68, "kg"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/liam-einarr/front.svg",
  19433. extra: 2822 / 2666
  19434. }
  19435. },
  19436. back: {
  19437. height: math.unit(1.5, "meters"),
  19438. weight: math.unit(68, "kg"),
  19439. name: "Back",
  19440. image: {
  19441. source: "./media/characters/liam-einarr/back.svg",
  19442. extra: 2822 / 2666,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(1.5, "meters"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(150, "meters")
  19456. },
  19457. {
  19458. name: "Megamacro",
  19459. height: math.unit(35, "km")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(6, "feet"),
  19468. weight: math.unit(75, "kg"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/linda/front.svg",
  19472. extra: 930 / 874,
  19473. bottom: 0.004
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(6, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 8 / 12, "feet"),
  19490. weight: math.unit(220, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/caylex/front.svg",
  19494. extra: 821 / 772,
  19495. bottom: 0.07
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(6 + 8 / 12, "feet"),
  19500. weight: math.unit(220, "lb"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/caylex/back.svg",
  19504. extra: 821 / 772,
  19505. bottom: 0.022
  19506. }
  19507. },
  19508. hand: {
  19509. height: math.unit(1.25, "feet"),
  19510. name: "Hand",
  19511. image: {
  19512. source: "./media/characters/caylex/hand.svg"
  19513. }
  19514. },
  19515. foot: {
  19516. height: math.unit(1.6, "feet"),
  19517. name: "Foot",
  19518. image: {
  19519. source: "./media/characters/caylex/foot.svg"
  19520. }
  19521. },
  19522. armored: {
  19523. height: math.unit(6 + 8 / 12, "feet"),
  19524. weight: math.unit(250, "lb"),
  19525. name: "Armored",
  19526. image: {
  19527. source: "./media/characters/caylex/armored.svg",
  19528. extra: 1420 / 1310,
  19529. bottom: 0.045
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(6 + 8 / 12, "feet"),
  19537. default: true
  19538. },
  19539. {
  19540. name: "Normal+",
  19541. height: math.unit(12, "feet")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(7 + 6 / 12, "feet"),
  19550. weight: math.unit(288, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/alana/front.svg",
  19554. extra: 679 / 653,
  19555. bottom: 22.5 / 701
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(7 + 6 / 12, "feet")
  19563. },
  19564. {
  19565. name: "Large",
  19566. height: math.unit(50, "feet")
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(100, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro+",
  19575. height: math.unit(200, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(6 + 1 / 12, "feet"),
  19584. weight: math.unit(210, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/hasani/front.svg",
  19588. extra: 244 / 232,
  19589. bottom: 0.01
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. weight: math.unit(210, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/hasani/back.svg",
  19598. extra: 244 / 232,
  19599. bottom: 0.01
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 1 / 12, "feet")
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(175, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(1.82, "meters"),
  19620. weight: math.unit(140, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/nita/front.svg",
  19624. extra: 2473 / 2363,
  19625. bottom: 0.01
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(1.82, "m")
  19633. },
  19634. {
  19635. name: "Macro",
  19636. height: math.unit(300, "m")
  19637. },
  19638. {
  19639. name: "Mistake Canon",
  19640. height: math.unit(0.5, "miles"),
  19641. default: true
  19642. },
  19643. {
  19644. name: "Big Mistake",
  19645. height: math.unit(13, "miles")
  19646. },
  19647. {
  19648. name: "Playing God",
  19649. height: math.unit(2450, "miles")
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(4, "feet"),
  19658. weight: math.unit(120, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/shiriko/front.svg",
  19662. extra: 970/934,
  19663. bottom: 5/975
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(4, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6, "feet"),
  19680. name: "front",
  19681. image: {
  19682. source: "./media/characters/deja/front.svg",
  19683. extra: 926 / 840,
  19684. bottom: 0.07
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Planck Length",
  19691. height: math.unit(1.6e-35, "meters")
  19692. },
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(30.48, "meters"),
  19696. default: true
  19697. },
  19698. {
  19699. name: "Universal",
  19700. height: math.unit(8.8e26, "meters")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19706. {
  19707. side: {
  19708. height: math.unit(8, "feet"),
  19709. weight: math.unit(6300, "lb"),
  19710. name: "Side",
  19711. image: {
  19712. source: "./media/characters/anima/side.svg",
  19713. bottom: 0.035
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(8, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(8, "feet"),
  19730. weight: math.unit(350, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/bianca/front.svg",
  19734. extra: 234 / 225,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(8, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(11 + 5/12, "feet"),
  19752. weight: math.unit(1200, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/adinia/front.svg",
  19756. extra: 1767/1641,
  19757. bottom: 44/1811
  19758. },
  19759. extraAttributes: {
  19760. "energyIntake": {
  19761. name: "Energy Intake",
  19762. power: 3,
  19763. type: "energy",
  19764. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19765. },
  19766. }
  19767. },
  19768. back: {
  19769. height: math.unit(11 + 5/12, "feet"),
  19770. weight: math.unit(1200, "lb"),
  19771. name: "Back",
  19772. image: {
  19773. source: "./media/characters/adinia/back.svg",
  19774. extra: 1834/1684,
  19775. bottom: 14/1848
  19776. },
  19777. extraAttributes: {
  19778. "energyIntake": {
  19779. name: "Energy Intake",
  19780. power: 3,
  19781. type: "energy",
  19782. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19783. },
  19784. }
  19785. },
  19786. maw: {
  19787. height: math.unit(3.79, "feet"),
  19788. name: "Maw",
  19789. image: {
  19790. source: "./media/characters/adinia/maw.svg"
  19791. }
  19792. },
  19793. rump: {
  19794. height: math.unit(4.6, "feet"),
  19795. name: "Rump",
  19796. image: {
  19797. source: "./media/characters/adinia/rump.svg"
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(11 + 5 / 12, "feet"),
  19805. default: true
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(3, "meters"),
  19814. weight: math.unit(200, "kg"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/lykasa/front.svg",
  19818. extra: 1076 / 976,
  19819. bottom: 0.06
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(3, "meters")
  19827. },
  19828. {
  19829. name: "Kaiju",
  19830. height: math.unit(120, "meters"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Mega Kaiju",
  19835. height: math.unit(240, "km")
  19836. },
  19837. {
  19838. name: "Giga Kaiju",
  19839. height: math.unit(400, "megameters")
  19840. },
  19841. {
  19842. name: "Tera Kaiju",
  19843. height: math.unit(800, "gigameters")
  19844. },
  19845. {
  19846. name: "Kaiju Dragon Goddess",
  19847. height: math.unit(26, "zettaparsecs")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19853. {
  19854. side: {
  19855. height: math.unit(283 / 124 * 6, "feet"),
  19856. weight: math.unit(35000, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/malfaren/side.svg",
  19860. extra: 1310/529,
  19861. bottom: 24/1334
  19862. }
  19863. },
  19864. front: {
  19865. height: math.unit(22.36, "feet"),
  19866. weight: math.unit(35000, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/malfaren/front.svg",
  19870. extra: 1237/1115,
  19871. bottom: 32/1269
  19872. }
  19873. },
  19874. maw: {
  19875. height: math.unit(6.9, "feet"),
  19876. name: "Maw",
  19877. image: {
  19878. source: "./media/characters/malfaren/maw.svg"
  19879. }
  19880. },
  19881. dick: {
  19882. height: math.unit(6.19, "feet"),
  19883. name: "Dick",
  19884. image: {
  19885. source: "./media/characters/malfaren/dick.svg"
  19886. }
  19887. },
  19888. eye: {
  19889. height: math.unit(0.69, "feet"),
  19890. name: "Eye",
  19891. image: {
  19892. source: "./media/characters/malfaren/eye.svg"
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Big",
  19899. height: math.unit(283 / 162 * 6, "feet"),
  19900. },
  19901. {
  19902. name: "Bigger",
  19903. height: math.unit(283 / 124 * 6, "feet")
  19904. },
  19905. {
  19906. name: "Massive",
  19907. height: math.unit(283 / 92 * 6, "feet"),
  19908. default: true
  19909. },
  19910. {
  19911. name: "👀💦",
  19912. height: math.unit(283 / 73 * 6, "feet"),
  19913. },
  19914. ]
  19915. ))
  19916. characterMakers.push(() => makeCharacter(
  19917. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19918. {
  19919. front: {
  19920. height: math.unit(1.7, "m"),
  19921. weight: math.unit(70, "kg"),
  19922. name: "Front",
  19923. image: {
  19924. source: "./media/characters/kernel/front.svg",
  19925. extra: 1960/1821,
  19926. bottom: 17/1977
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Nano",
  19933. height: math.unit(17, "micrometers")
  19934. },
  19935. {
  19936. name: "Micro",
  19937. height: math.unit(1.7, "mm")
  19938. },
  19939. {
  19940. name: "Small",
  19941. height: math.unit(1.7, "cm")
  19942. },
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(1.7, "m"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(1.75, "meters"),
  19955. weight: math.unit(65, "kg"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/jayne-folest/front.svg",
  19959. extra: 2115 / 2007,
  19960. bottom: 0.02
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(1.75, "meters"),
  19965. weight: math.unit(65, "kg"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/jayne-folest/back.svg",
  19969. extra: 2115 / 2007,
  19970. bottom: 0.005
  19971. }
  19972. },
  19973. frontClothed: {
  19974. height: math.unit(1.75, "meters"),
  19975. weight: math.unit(65, "kg"),
  19976. name: "Front (Clothed)",
  19977. image: {
  19978. source: "./media/characters/jayne-folest/front-clothed.svg",
  19979. extra: 2115 / 2007,
  19980. bottom: 0.035
  19981. }
  19982. },
  19983. hand: {
  19984. height: math.unit(1 / 1.260, "feet"),
  19985. name: "Hand",
  19986. image: {
  19987. source: "./media/characters/jayne-folest/hand.svg"
  19988. }
  19989. },
  19990. foot: {
  19991. height: math.unit(1 / 0.918, "feet"),
  19992. name: "Foot",
  19993. image: {
  19994. source: "./media/characters/jayne-folest/foot.svg"
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(4, "cm")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(1.75, "meters")
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(47.5, "meters"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(180, "cm"),
  20019. weight: math.unit(70, "kg"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/algier/front.svg",
  20023. extra: 596 / 572,
  20024. bottom: 0.04
  20025. }
  20026. },
  20027. back: {
  20028. height: math.unit(180, "cm"),
  20029. weight: math.unit(70, "kg"),
  20030. name: "Back",
  20031. image: {
  20032. source: "./media/characters/algier/back.svg",
  20033. extra: 596 / 572,
  20034. bottom: 0.025
  20035. }
  20036. },
  20037. frontdressed: {
  20038. height: math.unit(180, "cm"),
  20039. weight: math.unit(150, "kg"),
  20040. name: "Front-dressed",
  20041. image: {
  20042. source: "./media/characters/algier/front-dressed.svg",
  20043. extra: 596 / 572,
  20044. bottom: 0.038
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Micro",
  20051. height: math.unit(5, "cm")
  20052. },
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(180, "cm"),
  20056. default: true
  20057. },
  20058. {
  20059. name: "Macro",
  20060. height: math.unit(64, "m")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20066. {
  20067. upright: {
  20068. height: math.unit(7, "feet"),
  20069. weight: math.unit(300, "lb"),
  20070. name: "Upright",
  20071. image: {
  20072. source: "./media/characters/pretzel/upright.svg",
  20073. extra: 534 / 522,
  20074. bottom: 0.065
  20075. }
  20076. },
  20077. sprawling: {
  20078. height: math.unit(3.75, "feet"),
  20079. weight: math.unit(300, "lb"),
  20080. name: "Sprawling",
  20081. image: {
  20082. source: "./media/characters/pretzel/sprawling.svg",
  20083. extra: 314 / 281,
  20084. bottom: 0.1
  20085. }
  20086. },
  20087. tongue: {
  20088. height: math.unit(2, "feet"),
  20089. name: "Tongue",
  20090. image: {
  20091. source: "./media/characters/pretzel/tongue.svg"
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(7, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Oversized",
  20103. height: math.unit(15, "feet")
  20104. },
  20105. {
  20106. name: "Huge",
  20107. height: math.unit(30, "feet")
  20108. },
  20109. {
  20110. name: "Macro",
  20111. height: math.unit(250, "feet")
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20117. {
  20118. sideFront: {
  20119. height: math.unit(5 + 2 / 12, "feet"),
  20120. weight: math.unit(120, "lb"),
  20121. name: "Front Side",
  20122. image: {
  20123. source: "./media/characters/roxi/side-front.svg",
  20124. extra: 2924 / 2717,
  20125. bottom: 0.08
  20126. }
  20127. },
  20128. sideBack: {
  20129. height: math.unit(5 + 2 / 12, "feet"),
  20130. weight: math.unit(120, "lb"),
  20131. name: "Back Side",
  20132. image: {
  20133. source: "./media/characters/roxi/side-back.svg",
  20134. extra: 2904 / 2693,
  20135. bottom: 0.06
  20136. }
  20137. },
  20138. front: {
  20139. height: math.unit(5 + 2 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/roxi/front.svg",
  20144. extra: 2028 / 1907,
  20145. bottom: 0.01
  20146. }
  20147. },
  20148. frontAlt: {
  20149. height: math.unit(5 + 2 / 12, "feet"),
  20150. weight: math.unit(120, "lb"),
  20151. name: "Front (Alt)",
  20152. image: {
  20153. source: "./media/characters/roxi/front-alt.svg",
  20154. extra: 1828 / 1798,
  20155. bottom: 0.01
  20156. }
  20157. },
  20158. sitting: {
  20159. height: math.unit(2.8, "feet"),
  20160. weight: math.unit(120, "lb"),
  20161. name: "Sitting",
  20162. image: {
  20163. source: "./media/characters/roxi/sitting.svg",
  20164. extra: 2660 / 2462,
  20165. bottom: 0.1
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 2 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20179. {
  20180. side: {
  20181. height: math.unit(55, "feet"),
  20182. weight: math.unit(153, "tons"),
  20183. name: "Side",
  20184. image: {
  20185. source: "./media/characters/shadow/side.svg",
  20186. extra: 701 / 628,
  20187. bottom: 0.02
  20188. }
  20189. },
  20190. flying: {
  20191. height: math.unit(145, "feet"),
  20192. weight: math.unit(153, "tons"),
  20193. name: "Flying",
  20194. image: {
  20195. source: "./media/characters/shadow/flying.svg"
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(55, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(200, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/marcie/front.svg",
  20216. extra: 960 / 876,
  20217. bottom: 58 / 1017.87
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(1, "mile"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(7, "feet"),
  20234. weight: math.unit(200, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/kachina/front.svg",
  20238. extra: 3206/2764,
  20239. bottom: 140/3346
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(7, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20253. {
  20254. looking: {
  20255. height: math.unit(2, "meters"),
  20256. weight: math.unit(300, "kg"),
  20257. name: "Looking",
  20258. image: {
  20259. source: "./media/characters/kash/looking.svg",
  20260. extra: 474 / 344,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. side: {
  20265. height: math.unit(2, "meters"),
  20266. weight: math.unit(300, "kg"),
  20267. name: "Side",
  20268. image: {
  20269. source: "./media/characters/kash/side.svg",
  20270. extra: 302 / 251,
  20271. bottom: 0.03
  20272. }
  20273. },
  20274. front: {
  20275. height: math.unit(2, "meters"),
  20276. weight: math.unit(300, "kg"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/kash/front.svg",
  20280. extra: 495 / 360,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(2, "meters"),
  20289. default: true
  20290. },
  20291. {
  20292. name: "Big",
  20293. height: math.unit(3, "meters")
  20294. },
  20295. {
  20296. name: "Large",
  20297. height: math.unit(5, "meters")
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20303. {
  20304. feeding: {
  20305. height: math.unit(6.7, "feet"),
  20306. weight: math.unit(350, "lb"),
  20307. name: "Feeding",
  20308. image: {
  20309. source: "./media/characters/lalim/feeding.svg",
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(6.7, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(9.5, "feet"),
  20326. weight: math.unit(600, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/de'vout/front.svg",
  20330. extra: 1443 / 1328,
  20331. bottom: 0.025
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(9.5, "feet"),
  20336. weight: math.unit(600, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/de'vout/back.svg",
  20340. extra: 1443 / 1328
  20341. }
  20342. },
  20343. frontDressed: {
  20344. height: math.unit(9.5, "feet"),
  20345. weight: math.unit(600, "lb"),
  20346. name: "Front (Dressed",
  20347. image: {
  20348. source: "./media/characters/de'vout/front-dressed.svg",
  20349. extra: 1443 / 1328,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. backDressed: {
  20354. height: math.unit(9.5, "feet"),
  20355. weight: math.unit(600, "lb"),
  20356. name: "Back (Dressed",
  20357. image: {
  20358. source: "./media/characters/de'vout/back-dressed.svg",
  20359. extra: 1443 / 1328
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(9.5, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(8, "feet"),
  20376. weight: math.unit(225, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/talana/front.svg",
  20380. extra: 1410 / 1300,
  20381. bottom: 0.015
  20382. }
  20383. },
  20384. frontDressed: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(225, "lb"),
  20387. name: "Front (Dressed",
  20388. image: {
  20389. source: "./media/characters/talana/front-dressed.svg",
  20390. extra: 1410 / 1300,
  20391. bottom: 0.015
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(8, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20405. {
  20406. side: {
  20407. height: math.unit(7.2, "feet"),
  20408. weight: math.unit(150, "lb"),
  20409. name: "Side",
  20410. image: {
  20411. source: "./media/characters/xeauvok/side.svg",
  20412. extra: 1975 / 1523,
  20413. bottom: 0.07
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(7.2, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20427. {
  20428. side: {
  20429. height: math.unit(4, "meters"),
  20430. weight: math.unit(2200, "kg"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/zara/side.svg",
  20434. extra: 765/744,
  20435. bottom: 156/921
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(4, "meters"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20449. {
  20450. side: {
  20451. height: math.unit(6, "feet"),
  20452. weight: math.unit(150, "lb"),
  20453. name: "Side",
  20454. image: {
  20455. source: "./media/characters/richard-dragon/side.svg",
  20456. extra: 845 / 340,
  20457. bottom: 0.017
  20458. }
  20459. },
  20460. maw: {
  20461. height: math.unit(2.97, "feet"),
  20462. name: "Maw",
  20463. image: {
  20464. source: "./media/characters/richard-dragon/maw.svg"
  20465. }
  20466. },
  20467. },
  20468. [
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(4, "feet"),
  20476. weight: math.unit(100, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/richard-smeargle/front.svg",
  20480. extra: 2952 / 2820,
  20481. bottom: 0.028
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(4, "feet"),
  20489. default: true
  20490. },
  20491. {
  20492. name: "Dynamax",
  20493. height: math.unit(20, "meters")
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(6, "feet"),
  20502. weight: math.unit(110, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/klay/front.svg",
  20506. extra: 962 / 883,
  20507. bottom: 0.04
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(110, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/klay/back.svg",
  20516. extra: 962 / 883
  20517. }
  20518. },
  20519. beans: {
  20520. height: math.unit(1.15, "feet"),
  20521. name: "Beans",
  20522. image: {
  20523. source: "./media/characters/klay/beans.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Micro",
  20530. height: math.unit(6, "inches")
  20531. },
  20532. {
  20533. name: "Mini",
  20534. height: math.unit(3, "feet")
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(6, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Big",
  20543. height: math.unit(25, "feet")
  20544. },
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(100, "feet")
  20548. },
  20549. {
  20550. name: "Megamacro",
  20551. height: math.unit(400, "feet")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6, "feet"),
  20560. weight: math.unit(160, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/marcus/front.svg",
  20564. extra: 734 / 676,
  20565. bottom: 0.03
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Little",
  20572. height: math.unit(6, "feet")
  20573. },
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(110, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(250, "feet")
  20582. },
  20583. {
  20584. name: "Megamacro",
  20585. height: math.unit(1000, "feet")
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(7, "feet"),
  20594. weight: math.unit(275, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/claude-delroute/front.svg",
  20598. extra: 902/827,
  20599. bottom: 26/928
  20600. }
  20601. },
  20602. side: {
  20603. height: math.unit(7, "feet"),
  20604. weight: math.unit(275, "lb"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/claude-delroute/side.svg",
  20608. extra: 908/853,
  20609. bottom: 16/924
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(7, "feet"),
  20614. weight: math.unit(275, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/claude-delroute/back.svg",
  20618. extra: 911/829,
  20619. bottom: 18/929
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(0.6407, "meters"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/claude-delroute/maw.svg"
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(7, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Lorge",
  20638. height: math.unit(20, "feet")
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20644. {
  20645. front: {
  20646. height: math.unit(8 + 4 / 12, "feet"),
  20647. weight: math.unit(600, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/dragonien/front.svg",
  20651. extra: 100 / 94,
  20652. bottom: 3.3 / 103.3445
  20653. }
  20654. },
  20655. back: {
  20656. height: math.unit(8 + 4 / 12, "feet"),
  20657. weight: math.unit(600, "lb"),
  20658. name: "Back",
  20659. image: {
  20660. source: "./media/characters/dragonien/back.svg",
  20661. extra: 776 / 746,
  20662. bottom: 6.4 / 782.0616
  20663. }
  20664. },
  20665. foot: {
  20666. height: math.unit(1.54, "feet"),
  20667. name: "Foot",
  20668. image: {
  20669. source: "./media/characters/dragonien/foot.svg",
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(8 + 4 / 12, "feet"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(200, "feet")
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(1, "mile")
  20686. },
  20687. {
  20688. name: "Gigamacro",
  20689. height: math.unit(1000, "miles")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(5 + 2 / 12, "feet"),
  20698. weight: math.unit(110, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/desta/front.svg",
  20702. extra: 767 / 726,
  20703. bottom: 11.7 / 779
  20704. }
  20705. },
  20706. back: {
  20707. height: math.unit(5 + 2 / 12, "feet"),
  20708. weight: math.unit(110, "lb"),
  20709. name: "Back",
  20710. image: {
  20711. source: "./media/characters/desta/back.svg",
  20712. extra: 777 / 728,
  20713. bottom: 6 / 784
  20714. }
  20715. },
  20716. frontAlt: {
  20717. height: math.unit(5 + 2 / 12, "feet"),
  20718. weight: math.unit(110, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/desta/front-alt.svg",
  20722. extra: 1482 / 1417
  20723. }
  20724. },
  20725. side: {
  20726. height: math.unit(5 + 2 / 12, "feet"),
  20727. weight: math.unit(110, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/desta/side.svg",
  20731. extra: 2579 / 2491,
  20732. bottom: 0.053
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(6, "inches")
  20740. },
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 2 / 12, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Macro",
  20748. height: math.unit(62, "feet")
  20749. },
  20750. {
  20751. name: "Megamacro",
  20752. height: math.unit(1800, "feet")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(10, "feet"),
  20761. weight: math.unit(700, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/storm-alystar/front.svg",
  20765. extra: 2112 / 1898,
  20766. bottom: 0.034
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(3.5, "inches")
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(10, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Macro",
  20782. height: math.unit(400, "feet")
  20783. },
  20784. {
  20785. name: "Deific",
  20786. height: math.unit(60, "miles")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(2.35, "meters"),
  20795. weight: math.unit(119, "kg"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/ilia/front.svg",
  20799. extra: 1285 / 1255,
  20800. bottom: 0.06
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(2.35, "meters")
  20808. },
  20809. {
  20810. name: "Macro",
  20811. height: math.unit(140, "meters"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Megamacro",
  20816. height: math.unit(100, "miles")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(6 + 5 / 12, "feet"),
  20825. weight: math.unit(190, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/kingdead/front.svg",
  20829. extra: 1228 / 1177
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Micro",
  20836. height: math.unit(7, "inches")
  20837. },
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(6 + 5 / 12, "feet")
  20841. },
  20842. {
  20843. name: "Macro",
  20844. height: math.unit(150, "feet"),
  20845. default: true
  20846. },
  20847. {
  20848. name: "Megamacro",
  20849. height: math.unit(200, "miles")
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8, "feet"),
  20858. weight: math.unit(600, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/kyrehx/front.svg",
  20862. extra: 1195 / 1095,
  20863. bottom: 0.034
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Micro",
  20870. height: math.unit(2, "inches")
  20871. },
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(8, "feet"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(255, "feet")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20888. weight: math.unit(184, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/xang/front.svg",
  20892. extra: 845 / 755
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(0.935 * 146, "feet")
  20905. },
  20906. {
  20907. name: "Megamacro",
  20908. height: math.unit(0.935 * 3, "miles")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20914. {
  20915. frontDressed: {
  20916. height: math.unit(5 + 7 / 12, "feet"),
  20917. weight: math.unit(140, "lb"),
  20918. name: "Front (Dressed)",
  20919. image: {
  20920. source: "./media/characters/doc-weardno/front-dressed.svg",
  20921. extra: 263 / 234
  20922. }
  20923. },
  20924. backDressed: {
  20925. height: math.unit(5 + 7 / 12, "feet"),
  20926. weight: math.unit(140, "lb"),
  20927. name: "Back (Dressed)",
  20928. image: {
  20929. source: "./media/characters/doc-weardno/back-dressed.svg",
  20930. extra: 266 / 238
  20931. }
  20932. },
  20933. front: {
  20934. height: math.unit(5 + 7 / 12, "feet"),
  20935. weight: math.unit(140, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/doc-weardno/front.svg",
  20939. extra: 254 / 233
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(3, "inches")
  20947. },
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(5 + 7 / 12, "feet"),
  20951. default: true
  20952. },
  20953. {
  20954. name: "Macro",
  20955. height: math.unit(25, "feet")
  20956. },
  20957. {
  20958. name: "Megamacro",
  20959. height: math.unit(2, "miles")
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(6 + 2 / 12, "feet"),
  20968. weight: math.unit(153, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/seth-whilst/front.svg",
  20972. bottom: 0.07
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(5, "inches")
  20980. },
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(6 + 2 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(3, "inches"),
  20993. weight: math.unit(8, "grams"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/pocket-jabari/front.svg",
  20997. extra: 1024 / 974,
  20998. bottom: 0.039
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Minimicro",
  21005. height: math.unit(8, "mm")
  21006. },
  21007. {
  21008. name: "Micro",
  21009. height: math.unit(3, "inches"),
  21010. default: true
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(3, "feet")
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21020. {
  21021. frontDressed: {
  21022. height: math.unit(15, "feet"),
  21023. weight: math.unit(3280, "lb"),
  21024. name: "Front (Dressed)",
  21025. image: {
  21026. source: "./media/characters/sapphy/front-dressed.svg",
  21027. extra: 1951/1654,
  21028. bottom: 194/2145
  21029. },
  21030. form: "anthro",
  21031. default: true
  21032. },
  21033. backDressed: {
  21034. height: math.unit(15, "feet"),
  21035. weight: math.unit(3280, "lb"),
  21036. name: "Back (Dressed)",
  21037. image: {
  21038. source: "./media/characters/sapphy/back-dressed.svg",
  21039. extra: 2058/1918,
  21040. bottom: 125/2183
  21041. },
  21042. form: "anthro"
  21043. },
  21044. frontNude: {
  21045. height: math.unit(15, "feet"),
  21046. weight: math.unit(3280, "lb"),
  21047. name: "Front (Nude)",
  21048. image: {
  21049. source: "./media/characters/sapphy/front-nude.svg",
  21050. extra: 1951/1654,
  21051. bottom: 194/2145
  21052. },
  21053. form: "anthro"
  21054. },
  21055. backNude: {
  21056. height: math.unit(15, "feet"),
  21057. weight: math.unit(3280, "lb"),
  21058. name: "Back (Nude)",
  21059. image: {
  21060. source: "./media/characters/sapphy/back-nude.svg",
  21061. extra: 2058/1918,
  21062. bottom: 125/2183
  21063. },
  21064. form: "anthro"
  21065. },
  21066. full: {
  21067. height: math.unit(15, "feet"),
  21068. weight: math.unit(3280, "lb"),
  21069. name: "Full",
  21070. image: {
  21071. source: "./media/characters/sapphy/full.svg",
  21072. extra: 1396/1317,
  21073. bottom: 44/1440
  21074. },
  21075. form: "anthro"
  21076. },
  21077. dick: {
  21078. height: math.unit(3.8, "feet"),
  21079. name: "Dick",
  21080. image: {
  21081. source: "./media/characters/sapphy/dick.svg"
  21082. },
  21083. form: "anthro"
  21084. },
  21085. feral: {
  21086. height: math.unit(35, "feet"),
  21087. weight: math.unit(160, "tons"),
  21088. name: "Feral",
  21089. image: {
  21090. source: "./media/characters/sapphy/feral.svg",
  21091. extra: 1050/573,
  21092. bottom: 60/1110
  21093. },
  21094. form: "feral",
  21095. default: true
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(15, "feet"),
  21102. form: "anthro"
  21103. },
  21104. {
  21105. name: "Casual Macro",
  21106. height: math.unit(120, "feet"),
  21107. form: "anthro"
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(2150, "feet"),
  21112. default: true,
  21113. form: "anthro"
  21114. },
  21115. {
  21116. name: "Megamacro",
  21117. height: math.unit(8, "miles"),
  21118. form: "anthro"
  21119. },
  21120. {
  21121. name: "Galaxy Mom",
  21122. height: math.unit(6, "megalightyears"),
  21123. form: "anthro"
  21124. },
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(35, "feet"),
  21128. form: "feral",
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(300, "feet"),
  21134. form: "feral"
  21135. },
  21136. {
  21137. name: "Galaxy Mom",
  21138. height: math.unit(10, "megalightyears"),
  21139. form: "feral"
  21140. },
  21141. ],
  21142. {
  21143. "anthro": {
  21144. name: "Anthro",
  21145. default: true
  21146. },
  21147. "feral": {
  21148. name: "Feral"
  21149. }
  21150. }
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21154. {
  21155. hyenaFront: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(190, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/kiro/hyena-front.svg",
  21161. extra: 927/839,
  21162. bottom: 91/1018
  21163. },
  21164. form: "hyena",
  21165. default: true
  21166. },
  21167. front: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(170, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/kiro/front.svg",
  21173. extra: 1064 / 1012,
  21174. bottom: 0.052
  21175. },
  21176. form: "folf",
  21177. default: true
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Micro",
  21183. height: math.unit(6, "inches"),
  21184. form: "folf"
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(6, "feet"),
  21189. form: "folf",
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(72, "feet"),
  21195. form: "folf"
  21196. },
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(6, "inches"),
  21200. form: "hyena"
  21201. },
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6, "feet"),
  21205. form: "hyena",
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(72, "feet"),
  21211. form: "hyena"
  21212. },
  21213. ],
  21214. {
  21215. "hyena": {
  21216. name: "Hyena",
  21217. default: true
  21218. },
  21219. "folf": {
  21220. name: "Folf",
  21221. },
  21222. }
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 9 / 12, "feet"),
  21229. weight: math.unit(175, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/irishfox/front.svg",
  21233. extra: 1912 / 1680,
  21234. bottom: 0.02
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Nano",
  21241. height: math.unit(1, "mm")
  21242. },
  21243. {
  21244. name: "Micro",
  21245. height: math.unit(2, "inches")
  21246. },
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(45, "feet")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6 + 1 / 12, "feet"),
  21263. weight: math.unit(75, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/aronai-sieyes/front.svg",
  21267. extra: 1532/1450,
  21268. bottom: 42/1574
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. weight: math.unit(75, "lb"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/aronai-sieyes/side.svg",
  21277. extra: 1422/1365,
  21278. bottom: 148/1570
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(6 + 1 / 12, "feet"),
  21283. weight: math.unit(75, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/aronai-sieyes/back.svg",
  21287. extra: 1526/1464,
  21288. bottom: 51/1577
  21289. }
  21290. },
  21291. dressed: {
  21292. height: math.unit(6 + 1 / 12, "feet"),
  21293. weight: math.unit(75, "lb"),
  21294. name: "Dressed",
  21295. image: {
  21296. source: "./media/characters/aronai-sieyes/dressed.svg",
  21297. extra: 1559/1483,
  21298. bottom: 39/1598
  21299. }
  21300. },
  21301. slit: {
  21302. height: math.unit(1.3, "feet"),
  21303. name: "Slit",
  21304. image: {
  21305. source: "./media/characters/aronai-sieyes/slit.svg"
  21306. }
  21307. },
  21308. slitSpread: {
  21309. height: math.unit(0.9, "feet"),
  21310. name: "Slit (Spread)",
  21311. image: {
  21312. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21313. }
  21314. },
  21315. rump: {
  21316. height: math.unit(1.3, "feet"),
  21317. name: "Rump",
  21318. image: {
  21319. source: "./media/characters/aronai-sieyes/rump.svg"
  21320. }
  21321. },
  21322. maw: {
  21323. height: math.unit(1.25, "feet"),
  21324. name: "Maw",
  21325. image: {
  21326. source: "./media/characters/aronai-sieyes/maw.svg"
  21327. }
  21328. },
  21329. feral: {
  21330. height: math.unit(18, "feet"),
  21331. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21332. name: "Feral",
  21333. image: {
  21334. source: "./media/characters/aronai-sieyes/feral.svg",
  21335. extra: 1530 / 1240,
  21336. bottom: 0.035
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Micro",
  21343. height: math.unit(2, "inches")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(6 + 1 / 12, "feet"),
  21348. default: true
  21349. }
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(12, "feet"),
  21357. weight: math.unit(410, "kg"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/xuna/front.svg",
  21361. extra: 2184 / 1980
  21362. }
  21363. },
  21364. side: {
  21365. height: math.unit(12, "feet"),
  21366. weight: math.unit(410, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/xuna/side.svg",
  21370. extra: 2184 / 1980
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(12, "feet"),
  21375. weight: math.unit(410, "kg"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/xuna/back.svg",
  21379. extra: 2184 / 1980
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Nano glow",
  21386. height: math.unit(10, "nm")
  21387. },
  21388. {
  21389. name: "Micro floof",
  21390. height: math.unit(0.3, "m")
  21391. },
  21392. {
  21393. name: "Huggable softy boi",
  21394. height: math.unit(3.6576, "m"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Admirable floof",
  21399. height: math.unit(80, "meters")
  21400. },
  21401. {
  21402. name: "Gentle macro",
  21403. height: math.unit(300, "meters")
  21404. },
  21405. {
  21406. name: "Very careful floof",
  21407. height: math.unit(3200, "meters")
  21408. },
  21409. {
  21410. name: "The mega floof",
  21411. height: math.unit(36000, "meters")
  21412. },
  21413. {
  21414. name: "Giga-fur-Wicker",
  21415. height: math.unit(4800000, "meters")
  21416. },
  21417. {
  21418. name: "Licky world",
  21419. height: math.unit(20000000, "meters")
  21420. },
  21421. {
  21422. name: "Floofy cyan sun",
  21423. height: math.unit(1500000000, "meters")
  21424. },
  21425. {
  21426. name: "Milky Wicker",
  21427. height: math.unit(1000000000000000000000, "meters")
  21428. },
  21429. {
  21430. name: "The observing Wicker",
  21431. height: math.unit(999999999999999999999999999, "meters")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(5 + 9 / 12, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/arokha-sieyes/front.svg",
  21444. extra: 1425 / 1284,
  21445. bottom: 0.05
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(5 + 9 / 12, "feet")
  21453. },
  21454. {
  21455. name: "Macro",
  21456. height: math.unit(30, "meters"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(6, "feet"),
  21466. weight: math.unit(180, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/arokh-sieyes/front.svg",
  21470. extra: 1830 / 1769,
  21471. bottom: 0.01
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(6, "feet")
  21479. },
  21480. {
  21481. name: "Macro",
  21482. height: math.unit(30, "meters"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(13 + 1 / 12, "feet"),
  21492. weight: math.unit(8.5, "tonnes"),
  21493. preyCapacity: math.unit(36, "people"),
  21494. name: "Side",
  21495. image: {
  21496. source: "./media/characters/goldeneye/side.svg",
  21497. extra: 1139/741,
  21498. bottom: 98/1237
  21499. }
  21500. },
  21501. front: {
  21502. height: math.unit(5.1, "feet"),
  21503. weight: math.unit(8.5, "tonnes"),
  21504. preyCapacity: math.unit(36, "people"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/goldeneye/front.svg",
  21508. extra: 635/365,
  21509. bottom: 598/1233
  21510. }
  21511. },
  21512. maw: {
  21513. height: math.unit(6.6, "feet"),
  21514. name: "Maw",
  21515. image: {
  21516. source: "./media/characters/goldeneye/maw.svg"
  21517. }
  21518. },
  21519. headFront: {
  21520. height: math.unit(8, "feet"),
  21521. name: "Head (Front)",
  21522. image: {
  21523. source: "./media/characters/goldeneye/head-front.svg"
  21524. }
  21525. },
  21526. headSide: {
  21527. height: math.unit(6, "feet"),
  21528. name: "Head (Side)",
  21529. image: {
  21530. source: "./media/characters/goldeneye/head-side.svg"
  21531. }
  21532. },
  21533. headBack: {
  21534. height: math.unit(8, "feet"),
  21535. name: "Head (Back)",
  21536. image: {
  21537. source: "./media/characters/goldeneye/head-back.svg"
  21538. }
  21539. },
  21540. paw: {
  21541. height: math.unit(3.4, "feet"),
  21542. name: "Paw",
  21543. image: {
  21544. source: "./media/characters/goldeneye/paw.svg"
  21545. }
  21546. },
  21547. toering: {
  21548. height: math.unit(0.45, "feet"),
  21549. name: "Toering",
  21550. image: {
  21551. source: "./media/characters/goldeneye/toering.svg"
  21552. }
  21553. },
  21554. eyes: {
  21555. height: math.unit(0.5, "feet"),
  21556. name: "Eyes",
  21557. image: {
  21558. source: "./media/characters/goldeneye/eyes.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(13 + 1 / 12, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21572. {
  21573. front: {
  21574. height: math.unit(6 + 1 / 12, "feet"),
  21575. weight: math.unit(210, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/leonardo-lycheborne/front.svg",
  21579. extra: 776/723,
  21580. bottom: 34/810
  21581. }
  21582. },
  21583. side: {
  21584. height: math.unit(6 + 1 / 12, "feet"),
  21585. weight: math.unit(210, "lb"),
  21586. name: "Side",
  21587. image: {
  21588. source: "./media/characters/leonardo-lycheborne/side.svg",
  21589. extra: 780/728,
  21590. bottom: 12/792
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(6 + 1 / 12, "feet"),
  21595. weight: math.unit(210, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/leonardo-lycheborne/back.svg",
  21599. extra: 775/721,
  21600. bottom: 17/792
  21601. }
  21602. },
  21603. hand: {
  21604. height: math.unit(1.08, "feet"),
  21605. name: "Hand",
  21606. image: {
  21607. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21608. }
  21609. },
  21610. foot: {
  21611. height: math.unit(1.32, "feet"),
  21612. name: "Foot",
  21613. image: {
  21614. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21615. }
  21616. },
  21617. maw: {
  21618. height: math.unit(1, "feet"),
  21619. name: "Maw",
  21620. image: {
  21621. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21622. }
  21623. },
  21624. were: {
  21625. height: math.unit(20, "feet"),
  21626. weight: math.unit(7800, "lb"),
  21627. name: "Were",
  21628. image: {
  21629. source: "./media/characters/leonardo-lycheborne/were.svg",
  21630. extra: 1224/1165,
  21631. bottom: 72/1296
  21632. }
  21633. },
  21634. feral: {
  21635. height: math.unit(7.5, "feet"),
  21636. weight: math.unit(600, "lb"),
  21637. name: "Feral",
  21638. image: {
  21639. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21640. extra: 797/702,
  21641. bottom: 139/936
  21642. }
  21643. },
  21644. taur: {
  21645. height: math.unit(11, "feet"),
  21646. weight: math.unit(3300, "lb"),
  21647. name: "Taur",
  21648. image: {
  21649. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21650. extra: 1271/1197,
  21651. bottom: 47/1318
  21652. }
  21653. },
  21654. barghest: {
  21655. height: math.unit(11, "feet"),
  21656. weight: math.unit(1300, "lb"),
  21657. name: "Barghest",
  21658. image: {
  21659. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21660. extra: 1291/1204,
  21661. bottom: 37/1328
  21662. }
  21663. },
  21664. dick: {
  21665. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21666. name: "Dick",
  21667. image: {
  21668. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21669. }
  21670. },
  21671. dickWere: {
  21672. height: math.unit((20) / 3.8, "feet"),
  21673. name: "Dick (Were)",
  21674. image: {
  21675. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(6 + 1 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(10, "feet"),
  21692. weight: math.unit(350, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/jet/front.svg",
  21696. extra: 2050 / 1980,
  21697. bottom: 0.013
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(10, "feet"),
  21702. weight: math.unit(350, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/jet/back.svg",
  21706. extra: 2050 / 1980,
  21707. bottom: 0.013
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Micro",
  21714. height: math.unit(6, "inches")
  21715. },
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(10, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(100, "feet")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(15, "feet"),
  21732. weight: math.unit(2800, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/tanarath/front.svg",
  21736. extra: 2392 / 2220,
  21737. bottom: 0.03
  21738. }
  21739. },
  21740. back: {
  21741. height: math.unit(15, "feet"),
  21742. weight: math.unit(2800, "lb"),
  21743. name: "Back",
  21744. image: {
  21745. source: "./media/characters/tanarath/back.svg",
  21746. extra: 2392 / 2220,
  21747. bottom: 0.03
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(15, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(7 + 1 / 12, "feet"),
  21764. weight: math.unit(175, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/patty-cattybatty/front.svg",
  21768. extra: 908 / 874,
  21769. bottom: 0.025
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Micro",
  21776. height: math.unit(1, "inch")
  21777. },
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(7 + 1 / 12, "feet")
  21781. },
  21782. {
  21783. name: "Mini Macro",
  21784. height: math.unit(155, "feet")
  21785. },
  21786. {
  21787. name: "Macro",
  21788. height: math.unit(1077, "feet")
  21789. },
  21790. {
  21791. name: "Mega Macro",
  21792. height: math.unit(47650, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Giga Macro",
  21797. height: math.unit(440, "miles")
  21798. },
  21799. {
  21800. name: "Tera Macro",
  21801. height: math.unit(8700, "miles")
  21802. },
  21803. {
  21804. name: "Planetary Macro",
  21805. height: math.unit(32700, "miles")
  21806. },
  21807. {
  21808. name: "Solar Macro",
  21809. height: math.unit(550000, "miles")
  21810. },
  21811. {
  21812. name: "Celestial Macro",
  21813. height: math.unit(2.5, "AU")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(4 + 5 / 12, "feet"),
  21822. weight: math.unit(90, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/cappu/front.svg",
  21826. extra: 1247 / 1152,
  21827. bottom: 0.012
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(4 + 5 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21841. {
  21842. frontDressed: {
  21843. height: math.unit(70, "cm"),
  21844. weight: math.unit(6, "kg"),
  21845. name: "Front (Dressed)",
  21846. image: {
  21847. source: "./media/characters/sebi/front-dressed.svg",
  21848. extra: 713.5 / 686.5,
  21849. bottom: 0.003
  21850. }
  21851. },
  21852. front: {
  21853. height: math.unit(70, "cm"),
  21854. weight: math.unit(5, "kg"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/sebi/front.svg",
  21858. extra: 713.5 / 686.5,
  21859. bottom: 0.003
  21860. }
  21861. }
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(70, "cm"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(8, "meters")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/typhek/front.svg",
  21884. extra: 1948 / 1929,
  21885. bottom: 0.025
  21886. }
  21887. },
  21888. side: {
  21889. height: math.unit(6, "feet"),
  21890. weight: math.unit(150, "lb"),
  21891. name: "Side",
  21892. image: {
  21893. source: "./media/characters/typhek/side.svg",
  21894. extra: 2034 / 2010,
  21895. bottom: 0.003
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/typhek/back.svg",
  21904. extra: 2005 / 1978,
  21905. bottom: 0.004
  21906. }
  21907. },
  21908. palm: {
  21909. height: math.unit(1.2, "feet"),
  21910. name: "Palm",
  21911. image: {
  21912. source: "./media/characters/typhek/palm.svg"
  21913. }
  21914. },
  21915. fist: {
  21916. height: math.unit(1.1, "feet"),
  21917. name: "Fist",
  21918. image: {
  21919. source: "./media/characters/typhek/fist.svg"
  21920. }
  21921. },
  21922. foot: {
  21923. height: math.unit(1.57, "feet"),
  21924. name: "Foot",
  21925. image: {
  21926. source: "./media/characters/typhek/foot.svg"
  21927. }
  21928. },
  21929. sole: {
  21930. height: math.unit(2.05, "feet"),
  21931. name: "Sole",
  21932. image: {
  21933. source: "./media/characters/typhek/sole.svg"
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(40, "stories"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Megamacro",
  21945. height: math.unit(1, "mile")
  21946. },
  21947. {
  21948. name: "Gigamacro",
  21949. height: math.unit(4000, "solarradii")
  21950. },
  21951. {
  21952. name: "Universal",
  21953. height: math.unit(1.1, "universes")
  21954. }
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21959. {
  21960. side: {
  21961. height: math.unit(5 + 7 / 12, "feet"),
  21962. weight: math.unit(150, "lb"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/kassy/side.svg",
  21966. extra: 1280 / 1225,
  21967. bottom: 0.002
  21968. }
  21969. },
  21970. front: {
  21971. height: math.unit(5 + 7 / 12, "feet"),
  21972. weight: math.unit(150, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/kassy/front.svg",
  21976. extra: 1280 / 1225,
  21977. bottom: 0.025
  21978. }
  21979. },
  21980. back: {
  21981. height: math.unit(5 + 7 / 12, "feet"),
  21982. weight: math.unit(150, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/kassy/back.svg",
  21986. extra: 1280 / 1225,
  21987. bottom: 0.002
  21988. }
  21989. },
  21990. foot: {
  21991. height: math.unit(1.266, "feet"),
  21992. name: "Foot",
  21993. image: {
  21994. source: "./media/characters/kassy/foot.svg"
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 7 / 12, "feet")
  22002. },
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(137, "feet"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Megamacro",
  22010. height: math.unit(1, "mile")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6 + 1 / 12, "feet"),
  22019. weight: math.unit(200, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/neil/front.svg",
  22023. extra: 1326 / 1250,
  22024. bottom: 0.023
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(6 + 1 / 12, "feet"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Macro",
  22036. height: math.unit(200, "feet")
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5 + 9 / 12, "feet"),
  22045. weight: math.unit(190, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/atticus/front.svg",
  22049. extra: 2934 / 2785,
  22050. bottom: 0.025
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(180, "feet")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22068. {
  22069. side: {
  22070. height: math.unit(9, "feet"),
  22071. weight: math.unit(650, "lb"),
  22072. name: "Side",
  22073. image: {
  22074. source: "./media/characters/milo/side.svg",
  22075. extra: 2644 / 2310,
  22076. bottom: 0.032
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(9, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(300, "feet")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22094. {
  22095. side: {
  22096. height: math.unit(8, "meters"),
  22097. weight: math.unit(90000, "kg"),
  22098. name: "Side",
  22099. image: {
  22100. source: "./media/characters/ijzer/side.svg",
  22101. extra: 2756 / 1600,
  22102. bottom: 0.01
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Small",
  22109. height: math.unit(3, "meters")
  22110. },
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(8, "meters"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Normal+",
  22118. height: math.unit(10, "meters")
  22119. },
  22120. {
  22121. name: "Bigger",
  22122. height: math.unit(24, "meters")
  22123. },
  22124. {
  22125. name: "Huge",
  22126. height: math.unit(80, "meters")
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(6 + 2 / 12, "feet"),
  22135. weight: math.unit(153, "lb"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/luca-cervicum/front.svg",
  22139. extra: 370 / 327,
  22140. bottom: 0.015
  22141. }
  22142. },
  22143. back: {
  22144. height: math.unit(6 + 2 / 12, "feet"),
  22145. weight: math.unit(153, "lb"),
  22146. name: "Back",
  22147. image: {
  22148. source: "./media/characters/luca-cervicum/back.svg",
  22149. extra: 367 / 333,
  22150. bottom: 0.005
  22151. }
  22152. },
  22153. frontGear: {
  22154. height: math.unit(6 + 2 / 12, "feet"),
  22155. weight: math.unit(173, "lb"),
  22156. name: "Front (Gear)",
  22157. image: {
  22158. source: "./media/characters/luca-cervicum/front-gear.svg",
  22159. extra: 377 / 333,
  22160. bottom: 0.006
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(6 + 2 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(6 + 1 / 12, "feet"),
  22177. weight: math.unit(304, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/oliver/front.svg",
  22181. extra: 157 / 143,
  22182. bottom: 0.08
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6 + 1 / 12, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(5 + 7 / 12, "feet"),
  22199. weight: math.unit(140, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/shane/front.svg",
  22203. extra: 304 / 289,
  22204. bottom: 0.005
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(5 + 7 / 12, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(5 + 9 / 12, "feet"),
  22221. weight: math.unit(178, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/shin/front.svg",
  22225. extra: 159 / 151,
  22226. bottom: 0.015
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 9 / 12, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(5 + 10 / 12, "feet"),
  22243. weight: math.unit(168, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/xerxes/front.svg",
  22247. extra: 282 / 260,
  22248. bottom: 0.045
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5 + 10 / 12, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(6 + 7 / 12, "feet"),
  22265. weight: math.unit(208, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/chaska/front.svg",
  22269. extra: 332 / 319,
  22270. bottom: 0.015
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(6 + 7 / 12, "feet"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(5 + 8 / 12, "feet"),
  22287. weight: math.unit(208, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/enuk/front.svg",
  22291. extra: 437 / 406,
  22292. bottom: 0.02
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(5 + 8 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(5 + 10 / 12, "feet"),
  22309. weight: math.unit(252, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/bruun/front.svg",
  22313. extra: 197 / 187,
  22314. bottom: 0.012
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(5 + 10 / 12, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6 + 10 / 12, "feet"),
  22331. weight: math.unit(255, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/alexeev/front.svg",
  22335. extra: 213 / 200,
  22336. bottom: 0.05
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(6 + 10 / 12, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(2 + 8 / 12, "feet"),
  22353. weight: math.unit(22, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/evelyn/front.svg",
  22357. extra: 208 / 180
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(2 + 8 / 12, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(5 + 9 / 12, "feet"),
  22374. weight: math.unit(139, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/inca/front.svg",
  22378. extra: 294 / 291,
  22379. bottom: 0.03
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 9 / 12, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(6 + 3 / 12, "feet"),
  22396. weight: math.unit(185, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/mera/front.svg",
  22400. extra: 291 / 277,
  22401. bottom: 0.03
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(6 + 3 / 12, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(6 + 7 / 12, "feet"),
  22418. weight: math.unit(160, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/ceres/front.svg",
  22422. extra: 1023 / 950,
  22423. bottom: 0.027
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(6 + 7 / 12, "feet"),
  22428. weight: math.unit(160, "lb"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/ceres/back.svg",
  22432. extra: 1023 / 950
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Normal",
  22439. height: math.unit(6 + 7 / 12, "feet"),
  22440. default: true
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(5 + 10 / 12, "feet"),
  22449. weight: math.unit(150, "lb"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/kris/front.svg",
  22453. extra: 885 / 803,
  22454. bottom: 0.03
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(5 + 10 / 12, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22468. {
  22469. dragon_front: {
  22470. height: math.unit(5, "feet"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/taluthus/dragon-front.svg",
  22474. extra: 1203/1098,
  22475. bottom: 46/1249
  22476. },
  22477. form: "dragon",
  22478. default: true
  22479. },
  22480. dragon_maw: {
  22481. height: math.unit(2.35, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/taluthus/dragon-maw.svg"
  22485. },
  22486. form: "dragon",
  22487. },
  22488. kitsune_front: {
  22489. height: math.unit(7, "feet"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/taluthus/kitsune-front.svg",
  22493. extra: 900/841,
  22494. bottom: 65/965
  22495. },
  22496. form: "kitsune",
  22497. default: true
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5, "feet"),
  22504. form: "dragon",
  22505. default: true,
  22506. },
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(7, "feet"),
  22510. form: "kitsune",
  22511. default: true
  22512. },
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(300, "feet"),
  22516. allForms: true
  22517. },
  22518. ],
  22519. {
  22520. "dragon": {
  22521. name: "Dragon",
  22522. default: true
  22523. },
  22524. "kitsune": {
  22525. name: "Kitsune",
  22526. },
  22527. }
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(5 + 9 / 12, "feet"),
  22534. weight: math.unit(145, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/dawn/front.svg",
  22538. extra: 2094 / 2016,
  22539. bottom: 0.025
  22540. }
  22541. },
  22542. back: {
  22543. height: math.unit(5 + 9 / 12, "feet"),
  22544. weight: math.unit(160, "lb"),
  22545. name: "Back",
  22546. image: {
  22547. source: "./media/characters/dawn/back.svg",
  22548. extra: 2112 / 2080,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(6 + 7 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22563. {
  22564. anthro: {
  22565. height: math.unit(8 + 3 / 12, "feet"),
  22566. weight: math.unit(450, "lb"),
  22567. name: "Anthro",
  22568. image: {
  22569. source: "./media/characters/arador/anthro.svg",
  22570. extra: 1835 / 1718,
  22571. bottom: 0.025
  22572. }
  22573. },
  22574. feral: {
  22575. height: math.unit(4, "feet"),
  22576. weight: math.unit(200, "lb"),
  22577. name: "Feral",
  22578. image: {
  22579. source: "./media/characters/arador/feral.svg",
  22580. extra: 1683 / 1514,
  22581. bottom: 0.07
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(8 + 3 / 12, "feet")
  22589. },
  22590. {
  22591. name: "Macro",
  22592. height: math.unit(82.5, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(5 + 10 / 12, "feet"),
  22602. weight: math.unit(125, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/dharsi/front.svg",
  22606. extra: 716 / 630,
  22607. bottom: 0.035
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Nano",
  22614. height: math.unit(100, "nm")
  22615. },
  22616. {
  22617. name: "Micro",
  22618. height: math.unit(2, "inches")
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 10 / 12, "feet"),
  22623. default: true
  22624. },
  22625. {
  22626. name: "Macro",
  22627. height: math.unit(1000, "feet")
  22628. },
  22629. {
  22630. name: "Megamacro",
  22631. height: math.unit(10, "miles")
  22632. },
  22633. {
  22634. name: "Gigamacro",
  22635. height: math.unit(3000, "miles")
  22636. },
  22637. {
  22638. name: "Teramacro",
  22639. height: math.unit(500000, "miles")
  22640. },
  22641. {
  22642. name: "Teramacro+",
  22643. height: math.unit(30, "galaxies")
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(6, "feet"),
  22652. weight: math.unit(150, "lb"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/deathy/front.svg",
  22656. extra: 1552 / 1463,
  22657. bottom: 0.025
  22658. }
  22659. },
  22660. side: {
  22661. height: math.unit(6, "feet"),
  22662. weight: math.unit(150, "lb"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/deathy/side.svg",
  22666. extra: 1604 / 1455,
  22667. bottom: 0.025
  22668. }
  22669. },
  22670. back: {
  22671. height: math.unit(6, "feet"),
  22672. weight: math.unit(150, "lb"),
  22673. name: "Back",
  22674. image: {
  22675. source: "./media/characters/deathy/back.svg",
  22676. extra: 1580 / 1463,
  22677. bottom: 0.005
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Micro",
  22684. height: math.unit(5, "millimeters")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(6 + 5 / 12, "feet"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22695. {
  22696. front: {
  22697. height: math.unit(16, "feet"),
  22698. weight: math.unit(4000, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/juniper/front.svg",
  22702. bottom: 0.04
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Normal",
  22709. height: math.unit(16, "feet"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(6, "feet"),
  22719. weight: math.unit(150, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/hipster/front.svg",
  22723. extra: 1312 / 1209,
  22724. bottom: 0.025
  22725. }
  22726. },
  22727. back: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/hipster/back.svg",
  22733. extra: 1281 / 1196,
  22734. bottom: 0.01
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Micro",
  22741. height: math.unit(1, "mm")
  22742. },
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(4, "inches"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(500, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(1000, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(6, "feet"),
  22763. weight: math.unit(150, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/tendirmuldr/front.svg",
  22767. extra: 1878 / 1772,
  22768. bottom: 0.015
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Megamacro",
  22775. height: math.unit(1500, "miles"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22782. {
  22783. front: {
  22784. height: math.unit(14, "feet"),
  22785. weight: math.unit(12000, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/mort/front.svg",
  22789. extra: 365 / 318,
  22790. bottom: 0.01
  22791. }
  22792. },
  22793. side: {
  22794. height: math.unit(14, "feet"),
  22795. weight: math.unit(12000, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/mort/side.svg",
  22799. extra: 365 / 318,
  22800. bottom: 0.052
  22801. },
  22802. default: true
  22803. },
  22804. back: {
  22805. height: math.unit(14, "feet"),
  22806. weight: math.unit(12000, "lb"),
  22807. name: "Back",
  22808. image: {
  22809. source: "./media/characters/mort/back.svg",
  22810. extra: 371 / 332,
  22811. bottom: 0.18
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(14, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22825. {
  22826. front: {
  22827. height: math.unit(8, "feet"),
  22828. weight: math.unit(1, "ton"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/lycoa/front.svg",
  22832. extra: 1836/1728,
  22833. bottom: 81/1917
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(8, "feet"),
  22838. weight: math.unit(1, "ton"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/lycoa/back.svg",
  22842. extra: 1785/1720,
  22843. bottom: 91/1876
  22844. }
  22845. },
  22846. head: {
  22847. height: math.unit(1.6243, "feet"),
  22848. name: "Head",
  22849. image: {
  22850. source: "./media/characters/lycoa/head.svg",
  22851. extra: 1011/782,
  22852. bottom: 0/1011
  22853. }
  22854. },
  22855. tailmaw: {
  22856. height: math.unit(1.9, "feet"),
  22857. name: "Tailmaw",
  22858. image: {
  22859. source: "./media/characters/lycoa/tailmaw.svg"
  22860. }
  22861. },
  22862. tentacles: {
  22863. height: math.unit(2.1, "feet"),
  22864. name: "Tentacles",
  22865. image: {
  22866. source: "./media/characters/lycoa/tentacles.svg"
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(1.73, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/lycoa/dick.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(8, "feet"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(30, "feet")
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22891. {
  22892. front: {
  22893. height: math.unit(4 + 2 / 12, "feet"),
  22894. weight: math.unit(70, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/naldara/front.svg",
  22898. extra: 1664/1387,
  22899. bottom: 81/1745
  22900. },
  22901. form: "anthro",
  22902. default: true
  22903. },
  22904. naga: {
  22905. height: math.unit(20, "feet"),
  22906. weight: math.unit(15000, "kg"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/naldara/naga.svg",
  22910. extra: 1590/1396,
  22911. bottom: 285/1875
  22912. },
  22913. form: "naga",
  22914. default: true
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(4 + 2 / 12, "feet"),
  22921. form: "anthro",
  22922. default: true
  22923. },
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(20, "feet"),
  22927. form: "naga",
  22928. default: true
  22929. },
  22930. ],
  22931. {
  22932. "anthro": {
  22933. name: "Anthro",
  22934. default: true
  22935. },
  22936. "naga": {
  22937. name: "Naga"
  22938. }
  22939. }
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(13 + 7 / 12, "feet"),
  22946. weight: math.unit(1500, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/briar/front.svg",
  22950. extra: 1223/1157,
  22951. bottom: 123/1346
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(13 + 7 / 12, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22965. {
  22966. side: {
  22967. height: math.unit(16, "feet"),
  22968. weight: math.unit(500, "lb"),
  22969. name: "Side",
  22970. image: {
  22971. source: "./media/characters/vanguard/side.svg",
  22972. extra: 1022/914,
  22973. bottom: 30/1052
  22974. }
  22975. },
  22976. sideAlt: {
  22977. height: math.unit(10, "feet"),
  22978. weight: math.unit(500, "lb"),
  22979. name: "Side (Alt)",
  22980. image: {
  22981. source: "./media/characters/vanguard/side-alt.svg",
  22982. extra: 502 / 425,
  22983. bottom: 0.087
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(17.71, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(7.5, "feet"),
  23000. weight: math.unit(2, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/artemis/work-safe-front.svg",
  23004. extra: 1192 / 1075,
  23005. bottom: 0.07
  23006. },
  23007. form: "work-safe",
  23008. default: true
  23009. },
  23010. frontNsfw: {
  23011. height: math.unit(7.5, "feet"),
  23012. weight: math.unit(2, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/artemis/calibrating-front.svg",
  23016. extra: 1192 / 1075,
  23017. bottom: 0.07
  23018. },
  23019. form: "calibrating",
  23020. default: true
  23021. },
  23022. frontNsfwer: {
  23023. height: math.unit(7.5, "feet"),
  23024. weight: math.unit(2, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/artemis/oversize-load-front.svg",
  23028. extra: 1192 / 1075,
  23029. bottom: 0.07
  23030. },
  23031. form: "oversize-load",
  23032. default: true
  23033. },
  23034. side: {
  23035. height: math.unit(7.5, "feet"),
  23036. weight: math.unit(2, "lb"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/artemis/work-safe-side.svg",
  23040. extra: 1192 / 1075,
  23041. bottom: 0.07
  23042. },
  23043. form: "work-safe"
  23044. },
  23045. sideNsfw: {
  23046. height: math.unit(7.5, "feet"),
  23047. weight: math.unit(2, "lb"),
  23048. name: "Side",
  23049. image: {
  23050. source: "./media/characters/artemis/calibrating-side.svg",
  23051. extra: 1192 / 1075,
  23052. bottom: 0.07
  23053. },
  23054. form: "calibrating"
  23055. },
  23056. sideNsfwer: {
  23057. height: math.unit(7.5, "feet"),
  23058. weight: math.unit(2, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/artemis/oversize-load-side.svg",
  23062. extra: 1192 / 1075,
  23063. bottom: 0.07
  23064. },
  23065. form: "oversize-load"
  23066. },
  23067. maw: {
  23068. height: math.unit(1.1, "feet"),
  23069. name: "Maw",
  23070. image: {
  23071. source: "./media/characters/artemis/maw.svg"
  23072. },
  23073. form: "work-safe"
  23074. },
  23075. stomach: {
  23076. height: math.unit(0.95, "feet"),
  23077. name: "Stomach",
  23078. image: {
  23079. source: "./media/characters/artemis/stomach.svg"
  23080. },
  23081. form: "work-safe"
  23082. },
  23083. dickCanine: {
  23084. height: math.unit(1, "feet"),
  23085. name: "Dick (Canine)",
  23086. image: {
  23087. source: "./media/characters/artemis/dick-canine.svg"
  23088. },
  23089. form: "calibrating"
  23090. },
  23091. dickEquine: {
  23092. height: math.unit(0.85, "feet"),
  23093. name: "Dick (Equine)",
  23094. image: {
  23095. source: "./media/characters/artemis/dick-equine.svg"
  23096. },
  23097. form: "calibrating"
  23098. },
  23099. dickExotic: {
  23100. height: math.unit(0.85, "feet"),
  23101. name: "Dick (Exotic)",
  23102. image: {
  23103. source: "./media/characters/artemis/dick-exotic.svg"
  23104. },
  23105. form: "calibrating"
  23106. },
  23107. dickCanineBigger: {
  23108. height: math.unit(1 * 1.33, "feet"),
  23109. name: "Dick (Canine)",
  23110. image: {
  23111. source: "./media/characters/artemis/dick-canine.svg"
  23112. },
  23113. form: "oversize-load"
  23114. },
  23115. dickEquineBigger: {
  23116. height: math.unit(0.85 * 1.33, "feet"),
  23117. name: "Dick (Equine)",
  23118. image: {
  23119. source: "./media/characters/artemis/dick-equine.svg"
  23120. },
  23121. form: "oversize-load"
  23122. },
  23123. dickExoticBigger: {
  23124. height: math.unit(0.85 * 1.33, "feet"),
  23125. name: "Dick (Exotic)",
  23126. image: {
  23127. source: "./media/characters/artemis/dick-exotic.svg"
  23128. },
  23129. form: "oversize-load"
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(7.5, "feet"),
  23136. form: "work-safe",
  23137. default: true
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(7.5, "feet"),
  23142. form: "calibrating",
  23143. default: true
  23144. },
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(7.5, "feet"),
  23148. form: "oversize-load",
  23149. default: true
  23150. },
  23151. {
  23152. name: "Enlarged",
  23153. height: math.unit(12, "feet"),
  23154. form: "work-safe",
  23155. },
  23156. {
  23157. name: "Enlarged",
  23158. height: math.unit(12, "feet"),
  23159. form: "calibrating",
  23160. },
  23161. {
  23162. name: "Enlarged",
  23163. height: math.unit(12, "feet"),
  23164. form: "oversize-load",
  23165. },
  23166. ],
  23167. {
  23168. "work-safe": {
  23169. name: "Work-Safe",
  23170. default: true
  23171. },
  23172. "calibrating": {
  23173. name: "Calibrating"
  23174. },
  23175. "oversize-load": {
  23176. name: "Oversize Load"
  23177. }
  23178. }
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(5 + 3 / 12, "feet"),
  23185. weight: math.unit(160, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/kira/front.svg",
  23189. extra: 906 / 786,
  23190. bottom: 0.01
  23191. }
  23192. },
  23193. back: {
  23194. height: math.unit(5 + 3 / 12, "feet"),
  23195. weight: math.unit(160, "lb"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/kira/back.svg",
  23199. extra: 882 / 757,
  23200. bottom: 0.005
  23201. }
  23202. },
  23203. frontDressed: {
  23204. height: math.unit(5 + 3 / 12, "feet"),
  23205. weight: math.unit(160, "lb"),
  23206. name: "Front (Dressed)",
  23207. image: {
  23208. source: "./media/characters/kira/front-dressed.svg",
  23209. extra: 906 / 786,
  23210. bottom: 0.01
  23211. }
  23212. },
  23213. beans: {
  23214. height: math.unit(0.92, "feet"),
  23215. name: "Beans",
  23216. image: {
  23217. source: "./media/characters/kira/beans.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(5 + 3 / 12, "feet"),
  23225. default: true
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(5 + 4 / 12, "feet"),
  23234. weight: math.unit(145, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/scramble/front.svg",
  23238. extra: 763 / 727,
  23239. bottom: 0.05
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(5 + 4 / 12, "feet"),
  23244. weight: math.unit(145, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/scramble/back.svg",
  23248. extra: 826 / 737,
  23249. bottom: 0.002
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(5 + 4 / 12, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23263. {
  23264. side: {
  23265. height: math.unit(6 + 2 / 12, "feet"),
  23266. weight: math.unit(190, "lb"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/biscuit/side.svg",
  23270. extra: 858 / 791,
  23271. bottom: 0.044
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(6 + 2 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(5 + 2 / 12, "feet"),
  23288. weight: math.unit(120, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/poffin/front.svg",
  23292. extra: 786 / 680,
  23293. bottom: 0.005
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(5 + 2 / 12, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(6 + 3 / 12, "feet"),
  23310. weight: math.unit(519, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/dhari/front.svg",
  23314. extra: 1048 / 946,
  23315. bottom: 0.015
  23316. }
  23317. },
  23318. back: {
  23319. height: math.unit(6 + 3 / 12, "feet"),
  23320. weight: math.unit(519, "lb"),
  23321. name: "Back",
  23322. image: {
  23323. source: "./media/characters/dhari/back.svg",
  23324. extra: 1048 / 931,
  23325. bottom: 0.005
  23326. }
  23327. },
  23328. frontDressed: {
  23329. height: math.unit(6 + 3 / 12, "feet"),
  23330. weight: math.unit(519, "lb"),
  23331. name: "Front (Dressed)",
  23332. image: {
  23333. source: "./media/characters/dhari/front-dressed.svg",
  23334. extra: 1713 / 1546,
  23335. bottom: 0.02
  23336. }
  23337. },
  23338. backDressed: {
  23339. height: math.unit(6 + 3 / 12, "feet"),
  23340. weight: math.unit(519, "lb"),
  23341. name: "Back (Dressed)",
  23342. image: {
  23343. source: "./media/characters/dhari/back-dressed.svg",
  23344. extra: 1699 / 1537,
  23345. bottom: 0.01
  23346. }
  23347. },
  23348. maw: {
  23349. height: math.unit(0.95, "feet"),
  23350. name: "Maw",
  23351. image: {
  23352. source: "./media/characters/dhari/maw.svg"
  23353. }
  23354. },
  23355. wereFront: {
  23356. height: math.unit(12 + 8 / 12, "feet"),
  23357. weight: math.unit(4000, "lb"),
  23358. name: "Front (Were)",
  23359. image: {
  23360. source: "./media/characters/dhari/were-front.svg",
  23361. extra: 1065 / 969,
  23362. bottom: 0.015
  23363. }
  23364. },
  23365. wereBack: {
  23366. height: math.unit(12 + 8 / 12, "feet"),
  23367. weight: math.unit(4000, "lb"),
  23368. name: "Back (Were)",
  23369. image: {
  23370. source: "./media/characters/dhari/were-back.svg",
  23371. extra: 1065 / 969,
  23372. bottom: 0.012
  23373. }
  23374. },
  23375. wereMaw: {
  23376. height: math.unit(0.625, "meters"),
  23377. name: "Maw (Were)",
  23378. image: {
  23379. source: "./media/characters/dhari/were-maw.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(6 + 3 / 12, "feet"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23393. {
  23394. anthro: {
  23395. height: math.unit(5 + 7 / 12, "feet"),
  23396. weight: math.unit(175, "lb"),
  23397. name: "Anthro",
  23398. image: {
  23399. source: "./media/characters/rena-dyne/anthro.svg",
  23400. extra: 1849 / 1785,
  23401. bottom: 0.005
  23402. }
  23403. },
  23404. taur: {
  23405. height: math.unit(15 + 6 / 12, "feet"),
  23406. weight: math.unit(8000, "lb"),
  23407. name: "Taur",
  23408. image: {
  23409. source: "./media/characters/rena-dyne/taur.svg",
  23410. extra: 2315 / 2234,
  23411. bottom: 0.033
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(5 + 7 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8, "feet"),
  23428. weight: math.unit(600, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/weremeep/front.svg",
  23432. extra: 970/849,
  23433. bottom: 7/977
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(8, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Lorg",
  23445. height: math.unit(12, "feet")
  23446. },
  23447. {
  23448. name: "Oh Lawd She Comin'",
  23449. height: math.unit(20, "feet")
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23455. {
  23456. front: {
  23457. height: math.unit(4, "feet"),
  23458. weight: math.unit(90, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/reza/front.svg",
  23462. extra: 1183 / 1111,
  23463. bottom: 0.017
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(4, "feet"),
  23468. weight: math.unit(90, "lb"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/reza/back.svg",
  23472. extra: 1183 / 1111,
  23473. bottom: 0.01
  23474. }
  23475. },
  23476. drake: {
  23477. height: math.unit(30, "feet"),
  23478. weight: math.unit(246960, "lb"),
  23479. name: "Drake",
  23480. image: {
  23481. source: "./media/characters/reza/drake.svg",
  23482. extra: 2350 / 2024,
  23483. bottom: 60.7 / 2403
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(4, "feet"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23497. {
  23498. side: {
  23499. height: math.unit(15, "feet"),
  23500. weight: math.unit(14, "tons"),
  23501. name: "Side",
  23502. image: {
  23503. source: "./media/characters/athea/side.svg",
  23504. extra: 960 / 540,
  23505. bottom: 0.003
  23506. }
  23507. },
  23508. sitting: {
  23509. height: math.unit(6 * 2.85, "feet"),
  23510. weight: math.unit(14, "tons"),
  23511. name: "Sitting",
  23512. image: {
  23513. source: "./media/characters/athea/sitting.svg",
  23514. extra: 621 / 581,
  23515. bottom: 0.075
  23516. }
  23517. },
  23518. maw: {
  23519. height: math.unit(7.59498031496063, "feet"),
  23520. name: "Maw",
  23521. image: {
  23522. source: "./media/characters/athea/maw.svg"
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Lap Cat",
  23529. height: math.unit(2.5, "feet")
  23530. },
  23531. {
  23532. name: "Minimacro",
  23533. height: math.unit(15, "feet"),
  23534. default: true
  23535. },
  23536. {
  23537. name: "Macro",
  23538. height: math.unit(120, "feet")
  23539. },
  23540. {
  23541. name: "Macro+",
  23542. height: math.unit(640, "feet")
  23543. },
  23544. {
  23545. name: "Colossus",
  23546. height: math.unit(2.2, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(8 + 8 / 12, "feet"),
  23555. weight: math.unit(130, "kg"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/seroko/front.svg",
  23559. extra: 1385 / 1280,
  23560. bottom: 0.025
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(8 + 8 / 12, "feet"),
  23565. weight: math.unit(130, "kg"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/seroko/back.svg",
  23569. extra: 1369 / 1238,
  23570. bottom: 0.018
  23571. }
  23572. },
  23573. frontDressed: {
  23574. height: math.unit(8 + 8 / 12, "feet"),
  23575. weight: math.unit(130, "kg"),
  23576. name: "Front (Dressed)",
  23577. image: {
  23578. source: "./media/characters/seroko/front-dressed.svg",
  23579. extra: 1366 / 1275,
  23580. bottom: 0.03
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(8 + 8 / 12, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(5.5, "feet"),
  23597. weight: math.unit(160, "lb"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/quatzi/front.svg",
  23601. extra: 2346 / 2242,
  23602. bottom: 0.015
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(5.5, "feet"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Big",
  23614. height: math.unit(7.7, "feet")
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(5 + 11 / 12, "feet"),
  23623. weight: math.unit(180, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/sen/front.svg",
  23627. extra: 1321 / 1254,
  23628. bottom: 0.015
  23629. }
  23630. },
  23631. side: {
  23632. height: math.unit(5 + 11 / 12, "feet"),
  23633. weight: math.unit(180, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/sen/side.svg",
  23637. extra: 1321 / 1254,
  23638. bottom: 0.007
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(5 + 11 / 12, "feet"),
  23643. weight: math.unit(180, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/sen/back.svg",
  23647. extra: 1321 / 1254
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. default: true
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(166.6, "cm"),
  23664. weight: math.unit(66.6, "kg"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/fruity/front.svg",
  23668. extra: 1510 / 1386,
  23669. bottom: 0.04
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(166.6, "cm"),
  23674. weight: math.unit(66.6, "lb"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/fruity/back.svg",
  23678. extra: 1563 / 1435,
  23679. bottom: 0.005
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(166.6, "cm"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Demonic",
  23691. height: math.unit(166.6, "feet")
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23697. {
  23698. side: {
  23699. height: math.unit(10, "feet"),
  23700. weight: math.unit(500, "lb"),
  23701. name: "Side",
  23702. image: {
  23703. source: "./media/characters/zost/side.svg",
  23704. extra: 2870/2533,
  23705. bottom: 252/3122
  23706. }
  23707. },
  23708. mawFront: {
  23709. height: math.unit(1.08, "meters"),
  23710. name: "Maw (Front)",
  23711. image: {
  23712. source: "./media/characters/zost/maw-front.svg"
  23713. }
  23714. },
  23715. mawSide: {
  23716. height: math.unit(2.66, "feet"),
  23717. name: "Maw (Side)",
  23718. image: {
  23719. source: "./media/characters/zost/maw-side.svg"
  23720. }
  23721. },
  23722. wingspan: {
  23723. height: math.unit(7.4, "feet"),
  23724. name: "Wingspan",
  23725. image: {
  23726. source: "./media/characters/zost/wingspan.svg"
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(10, "feet"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5 + 4 / 12, "feet"),
  23743. weight: math.unit(120, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/luci/front.svg",
  23747. extra: 1985 / 1884,
  23748. bottom: 0.04
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(5 + 4 / 12, "feet"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/luci/back.svg",
  23757. extra: 1892 / 1791,
  23758. bottom: 0.002
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 4 / 12, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(1500, "feet"),
  23775. weight: math.unit(3.8e6, "tons"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/2th/front.svg",
  23779. extra: 3489 / 3350,
  23780. bottom: 0.1
  23781. }
  23782. },
  23783. foot: {
  23784. height: math.unit(461, "feet"),
  23785. name: "Foot",
  23786. image: {
  23787. source: "./media/characters/2th/foot.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "\"Micro\"",
  23794. height: math.unit(15 + 7 / 12, "feet")
  23795. },
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(1500, "feet"),
  23799. default: true
  23800. },
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(5000, "feet")
  23804. },
  23805. {
  23806. name: "Megamacro",
  23807. height: math.unit(15, "miles")
  23808. },
  23809. {
  23810. name: "Gigamacro",
  23811. height: math.unit(4000, "miles")
  23812. },
  23813. {
  23814. name: "Galactic",
  23815. height: math.unit(50, "AU")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5 + 6 / 12, "feet"),
  23824. weight: math.unit(220, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/amethyst/front.svg",
  23828. extra: 2078 / 2040,
  23829. bottom: 0.045
  23830. }
  23831. },
  23832. back: {
  23833. height: math.unit(5 + 6 / 12, "feet"),
  23834. weight: math.unit(220, "lb"),
  23835. name: "Back",
  23836. image: {
  23837. source: "./media/characters/amethyst/back.svg",
  23838. extra: 2021 / 1989,
  23839. bottom: 0.02
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 6 / 12, "feet"),
  23847. default: true
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(4 + 11 / 12, "feet"),
  23856. weight: math.unit(120, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/yumi-akiyama/front.svg",
  23860. extra: 2638/2432,
  23861. bottom: 70/2708
  23862. }
  23863. },
  23864. back: {
  23865. height: math.unit(4 + 11 / 12, "feet"),
  23866. weight: math.unit(120, "lb"),
  23867. name: "Back",
  23868. image: {
  23869. source: "./media/characters/yumi-akiyama/back.svg",
  23870. extra: 2502/2397,
  23871. bottom: 80/2582
  23872. }
  23873. },
  23874. casual: {
  23875. height: math.unit(4 + 11 / 12, "feet"),
  23876. weight: math.unit(120, "lb"),
  23877. name: "Casual",
  23878. image: {
  23879. source: "./media/characters/yumi-akiyama/casual.svg",
  23880. extra: 958/887,
  23881. bottom: 41/999
  23882. }
  23883. },
  23884. jammies: {
  23885. height: math.unit(4 + 11 / 12, "feet"),
  23886. weight: math.unit(120, "lb"),
  23887. name: "Jammies",
  23888. image: {
  23889. source: "./media/characters/yumi-akiyama/jammies.svg",
  23890. extra: 958/894,
  23891. bottom: 37/995
  23892. }
  23893. },
  23894. warmWeather: {
  23895. height: math.unit(4 + 11 / 12, "feet"),
  23896. weight: math.unit(120, "lb"),
  23897. name: "Warm Weather",
  23898. image: {
  23899. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23900. extra: 929/865,
  23901. bottom: 76/1005
  23902. }
  23903. },
  23904. mouth: {
  23905. height: math.unit(0.35, "feet"),
  23906. name: "Mouth",
  23907. image: {
  23908. source: "./media/characters/yumi-akiyama/mouth.svg"
  23909. }
  23910. },
  23911. paws: {
  23912. height: math.unit(1.05, "feet"),
  23913. name: "Paws",
  23914. image: {
  23915. source: "./media/characters/yumi-akiyama/paws.svg"
  23916. }
  23917. },
  23918. cockRing: {
  23919. height: math.unit(0.225, "feet"),
  23920. name: "Cock Ring",
  23921. image: {
  23922. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Galactic",
  23929. height: math.unit(50, "galaxies"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Universal",
  23934. height: math.unit(100, "universes")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(8, "feet"),
  23943. weight: math.unit(500, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/rifter-yrmori/front.svg",
  23947. extra: 1180 / 1125,
  23948. bottom: 0.02
  23949. }
  23950. },
  23951. back: {
  23952. height: math.unit(8, "feet"),
  23953. weight: math.unit(500, "lb"),
  23954. name: "Back",
  23955. image: {
  23956. source: "./media/characters/rifter-yrmori/back.svg",
  23957. extra: 1190 / 1145,
  23958. bottom: 0.001
  23959. }
  23960. },
  23961. wings: {
  23962. height: math.unit(7.75, "feet"),
  23963. weight: math.unit(500, "lb"),
  23964. name: "Wings",
  23965. image: {
  23966. source: "./media/characters/rifter-yrmori/wings.svg",
  23967. extra: 1357 / 1285
  23968. }
  23969. },
  23970. maw: {
  23971. height: math.unit(0.8, "feet"),
  23972. name: "Maw",
  23973. image: {
  23974. source: "./media/characters/rifter-yrmori/maw.svg"
  23975. }
  23976. },
  23977. mawfront: {
  23978. height: math.unit(1.45, "feet"),
  23979. name: "Maw (Front)",
  23980. image: {
  23981. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(8, "feet"),
  23989. default: true
  23990. },
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(42, "meters")
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23999. {
  24000. were: {
  24001. height: math.unit(25 + 6 / 12, "feet"),
  24002. weight: math.unit(10000, "lb"),
  24003. name: "Were",
  24004. image: {
  24005. source: "./media/characters/tahajin/were.svg",
  24006. extra: 801 / 770,
  24007. bottom: 0.042
  24008. }
  24009. },
  24010. aquatic: {
  24011. height: math.unit(6 + 4 / 12, "feet"),
  24012. weight: math.unit(160, "lb"),
  24013. name: "Aquatic",
  24014. image: {
  24015. source: "./media/characters/tahajin/aquatic.svg",
  24016. extra: 572 / 542,
  24017. bottom: 0.04
  24018. }
  24019. },
  24020. chow: {
  24021. height: math.unit(8 + 11 / 12, "feet"),
  24022. weight: math.unit(450, "lb"),
  24023. name: "Chow",
  24024. image: {
  24025. source: "./media/characters/tahajin/chow.svg",
  24026. extra: 660 / 640,
  24027. bottom: 0.015
  24028. }
  24029. },
  24030. demiNaga: {
  24031. height: math.unit(6 + 8 / 12, "feet"),
  24032. weight: math.unit(300, "lb"),
  24033. name: "Demi Naga",
  24034. image: {
  24035. source: "./media/characters/tahajin/demi-naga.svg",
  24036. extra: 643 / 615,
  24037. bottom: 0.1
  24038. }
  24039. },
  24040. data: {
  24041. height: math.unit(5, "inches"),
  24042. weight: math.unit(0.1, "lb"),
  24043. name: "Data",
  24044. image: {
  24045. source: "./media/characters/tahajin/data.svg"
  24046. }
  24047. },
  24048. fluu: {
  24049. height: math.unit(5 + 7 / 12, "feet"),
  24050. weight: math.unit(140, "lb"),
  24051. name: "Fluu",
  24052. image: {
  24053. source: "./media/characters/tahajin/fluu.svg",
  24054. extra: 628 / 592,
  24055. bottom: 0.02
  24056. }
  24057. },
  24058. starWarrior: {
  24059. height: math.unit(4 + 5 / 12, "feet"),
  24060. weight: math.unit(50, "lb"),
  24061. name: "Star Warrior",
  24062. image: {
  24063. source: "./media/characters/tahajin/star-warrior.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(25 + 6 / 12, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(8, "feet"),
  24080. weight: math.unit(350, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/gabira/front.svg",
  24084. extra: 1261/1154,
  24085. bottom: 51/1312
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(8, "feet"),
  24090. weight: math.unit(350, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/gabira/back.svg",
  24094. extra: 1265/1163,
  24095. bottom: 46/1311
  24096. }
  24097. },
  24098. head: {
  24099. height: math.unit(2.85, "feet"),
  24100. name: "Head",
  24101. image: {
  24102. source: "./media/characters/gabira/head.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(8, "feet"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24116. {
  24117. front: {
  24118. height: math.unit(5 + 3 / 12, "feet"),
  24119. weight: math.unit(137, "lb"),
  24120. name: "Front",
  24121. image: {
  24122. source: "./media/characters/sasha-katraine/front.svg",
  24123. extra: 1745/1694,
  24124. bottom: 37/1782
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(5 + 3 / 12, "feet"),
  24129. weight: math.unit(137, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/sasha-katraine/back.svg",
  24133. extra: 1776/1699,
  24134. bottom: 26/1802
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(5, "inches")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5 + 3 / 12, "feet"),
  24146. default: true
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24152. {
  24153. side: {
  24154. height: math.unit(4, "inches"),
  24155. weight: math.unit(200, "grams"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/der/side.svg",
  24159. extra: 719 / 400,
  24160. bottom: 30.6 / 749.9187
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Micro",
  24167. height: math.unit(4, "inches"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24174. {
  24175. side: {
  24176. height: math.unit(30, "meters"),
  24177. weight: math.unit(700, "tonnes"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/fixerdragon/side.svg",
  24181. extra: (1293.0514 - 116.03) / 1106.86,
  24182. bottom: 116.03 / 1293.0514
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Planck",
  24189. height: math.unit(1.6e-35, "meters")
  24190. },
  24191. {
  24192. name: "Micro",
  24193. height: math.unit(0.4, "meters")
  24194. },
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(30, "meters"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(1.2, "megameters")
  24203. },
  24204. {
  24205. name: "Teramacro",
  24206. height: math.unit(130, "terameters")
  24207. },
  24208. {
  24209. name: "Yottamacro",
  24210. height: math.unit(6200, "yottameters")
  24211. },
  24212. ]
  24213. ));
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(8, "feet"),
  24219. weight: math.unit(250, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/kite/front.svg",
  24223. extra: 2796 / 2659,
  24224. bottom: 0.002
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(8, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(360, "feet")
  24237. },
  24238. {
  24239. name: "Megamacro",
  24240. height: math.unit(1500, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24246. {
  24247. anthro_front: {
  24248. height: math.unit(5 + 11/12, "feet"),
  24249. weight: math.unit(170, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24253. extra: 1735/1585,
  24254. bottom: 96/1831
  24255. },
  24256. form: "anthro",
  24257. default: true
  24258. },
  24259. anthro_back: {
  24260. height: math.unit(5 + 11/12, "feet"),
  24261. weight: math.unit(170, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24265. extra: 1749/1607,
  24266. bottom: 28/1777
  24267. },
  24268. form: "anthro"
  24269. },
  24270. anthro_male: {
  24271. height: math.unit(5 + 11/12, "feet"),
  24272. weight: math.unit(170, "lb"),
  24273. name: "Male",
  24274. image: {
  24275. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24276. extra: 1855/1713,
  24277. bottom: 63/1918
  24278. },
  24279. form: "anthro"
  24280. },
  24281. taur_front: {
  24282. height: math.unit(5 + 7/12, "feet"),
  24283. weight: math.unit(170, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24287. extra: 1151/1059,
  24288. bottom: 356/1507
  24289. },
  24290. form: "taur",
  24291. default: true
  24292. },
  24293. anthro_frontDressed: {
  24294. height: math.unit(5 + 11/12, "feet"),
  24295. weight: math.unit(170, "lb"),
  24296. name: "Front (Dressed)",
  24297. image: {
  24298. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24299. extra: 1735/1585,
  24300. bottom: 96/1831
  24301. },
  24302. form: "anthro"
  24303. },
  24304. anthro_backDressed: {
  24305. height: math.unit(5 + 11/12, "feet"),
  24306. weight: math.unit(170, "lb"),
  24307. name: "Back (Dressed)",
  24308. image: {
  24309. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24310. extra: 1749/1607,
  24311. bottom: 28/1777
  24312. },
  24313. form: "anthro"
  24314. },
  24315. anthro_maleDressed: {
  24316. height: math.unit(5 + 11/12, "feet"),
  24317. weight: math.unit(170, "lb"),
  24318. name: "Male (Dressed)",
  24319. image: {
  24320. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24321. extra: 1855/1713,
  24322. bottom: 63/1918
  24323. },
  24324. form: "anthro"
  24325. },
  24326. taur_frontDressed: {
  24327. height: math.unit(5 + 7/12, "feet"),
  24328. weight: math.unit(170, "lb"),
  24329. name: "Front (Dressed)",
  24330. image: {
  24331. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24332. extra: 1151/1059,
  24333. bottom: 356/1507
  24334. },
  24335. form: "taur"
  24336. },
  24337. maw: {
  24338. height: math.unit(1.46, "feet"),
  24339. name: "Maw",
  24340. image: {
  24341. source: "./media/characters/poojawa-vynar/maw.svg"
  24342. },
  24343. allForms: true
  24344. },
  24345. head: {
  24346. height: math.unit(2.34, "feet"),
  24347. name: "Head",
  24348. image: {
  24349. source: "./media/characters/poojawa-vynar/head.svg"
  24350. },
  24351. allForms: true
  24352. },
  24353. leftPaw: {
  24354. height: math.unit(1.72, "feet"),
  24355. name: "Left Paw",
  24356. image: {
  24357. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24358. },
  24359. allForms: true
  24360. },
  24361. rightPaw: {
  24362. height: math.unit(1.61, "feet"),
  24363. name: "Right Paw",
  24364. image: {
  24365. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24366. },
  24367. allForms: true
  24368. },
  24369. toering: {
  24370. height: math.unit(2.9, "inches"),
  24371. name: "Toering",
  24372. image: {
  24373. source: "./media/characters/poojawa-vynar/toering.svg"
  24374. },
  24375. allForms: true
  24376. },
  24377. shaft: {
  24378. height: math.unit(0.625, "feet"),
  24379. name: "Shaft",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/shaft.svg"
  24382. },
  24383. allForms: true
  24384. },
  24385. spade: {
  24386. height: math.unit(0.42, "feet"),
  24387. name: "Spade",
  24388. image: {
  24389. source: "./media/characters/poojawa-vynar/spade.svg"
  24390. },
  24391. allForms: true
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Shortstack",
  24397. height: math.unit(4, "feet"),
  24398. form: "anthro"
  24399. },
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(5 + 11 / 12, "feet"),
  24403. form: "anthro",
  24404. default: true
  24405. },
  24406. {
  24407. name: "Tauric",
  24408. height: math.unit(4, "meters"),
  24409. form: "taur",
  24410. default: true
  24411. },
  24412. ],
  24413. {
  24414. "anthro": {
  24415. name: "Anthro",
  24416. default: true
  24417. },
  24418. "taur": {
  24419. name: "Taur",
  24420. },
  24421. }
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(293, "meters"),
  24428. weight: math.unit(70400, "tons"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/violette/front.svg",
  24432. extra: 1227 / 1180,
  24433. bottom: 0.005
  24434. }
  24435. },
  24436. back: {
  24437. height: math.unit(293, "meters"),
  24438. weight: math.unit(70400, "tons"),
  24439. name: "Back",
  24440. image: {
  24441. source: "./media/characters/violette/back.svg",
  24442. extra: 1227 / 1180,
  24443. bottom: 0.005
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(293, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1050, "feet"),
  24460. weight: math.unit(200000, "tons"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/alessandra/front.svg",
  24464. extra: 960 / 912,
  24465. bottom: 0.06
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(1050, "feet")
  24473. },
  24474. {
  24475. name: "Macro+",
  24476. height: math.unit(900, "meters"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(5, "feet"),
  24486. weight: math.unit(187, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/person/front.svg",
  24490. extra: 3087 / 2945,
  24491. bottom: 91 / 3181
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Micro",
  24498. height: math.unit(3, "inches")
  24499. },
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(5, "feet"),
  24503. default: true
  24504. },
  24505. {
  24506. name: "Macro",
  24507. height: math.unit(90, "feet")
  24508. },
  24509. {
  24510. name: "Max Size",
  24511. height: math.unit(280, "feet")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(4.5, "meters"),
  24520. weight: math.unit(3200, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/ty/front.svg",
  24524. extra: 1038 / 960,
  24525. bottom: 31.156 / 1068
  24526. }
  24527. },
  24528. back: {
  24529. height: math.unit(4.5, "meters"),
  24530. weight: math.unit(3200, "lb"),
  24531. name: "Back",
  24532. image: {
  24533. source: "./media/characters/ty/back.svg",
  24534. extra: 1044 / 966,
  24535. bottom: 7.48 / 1049
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(4.5, "meters"),
  24543. default: true
  24544. },
  24545. ]
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24549. {
  24550. front: {
  24551. height: math.unit(5 + 4 / 12, "feet"),
  24552. weight: math.unit(115, "lb"),
  24553. name: "Front",
  24554. image: {
  24555. source: "./media/characters/rocky/front.svg",
  24556. extra: 1012 / 975,
  24557. bottom: 54 / 1066
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(5 + 4 / 12, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24571. {
  24572. upright: {
  24573. height: math.unit(6, "meters"),
  24574. weight: math.unit(4000, "kg"),
  24575. name: "Upright",
  24576. image: {
  24577. source: "./media/characters/ruin/upright.svg",
  24578. extra: 668 / 661,
  24579. bottom: 42 / 799.8396
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(6, "meters"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5, "feet"),
  24596. weight: math.unit(106, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/robin/front.svg",
  24600. extra: 862 / 799,
  24601. bottom: 42.4 / 914.8856
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24615. {
  24616. side: {
  24617. height: math.unit(3, "feet"),
  24618. weight: math.unit(225, "lb"),
  24619. name: "Side",
  24620. image: {
  24621. source: "./media/characters/saian/side.svg",
  24622. extra: 566 / 356,
  24623. bottom: 79.7 / 643
  24624. }
  24625. },
  24626. maw: {
  24627. height: math.unit(2.85, "feet"),
  24628. name: "Maw",
  24629. image: {
  24630. source: "./media/characters/saian/maw.svg"
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(3, "feet"),
  24638. default: true
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24644. {
  24645. side: {
  24646. height: math.unit(8, "feet"),
  24647. weight: math.unit(300, "lb"),
  24648. name: "Side",
  24649. image: {
  24650. source: "./media/characters/equus-silvermane/side.svg",
  24651. extra: 2176 / 2050,
  24652. bottom: 65.7 / 2245
  24653. }
  24654. },
  24655. front: {
  24656. height: math.unit(8, "feet"),
  24657. weight: math.unit(300, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/equus-silvermane/front.svg",
  24661. extra: 4633 / 4400,
  24662. bottom: 71.3 / 4706.915
  24663. }
  24664. },
  24665. sideStepping: {
  24666. height: math.unit(8, "feet"),
  24667. weight: math.unit(300, "lb"),
  24668. name: "Side (Stepping)",
  24669. image: {
  24670. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24671. extra: 1968 / 1860,
  24672. bottom: 16.4 / 1989
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(8, "feet")
  24680. },
  24681. {
  24682. name: "Minimacro",
  24683. height: math.unit(75, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(150, "feet")
  24689. },
  24690. {
  24691. name: "Macro+",
  24692. height: math.unit(1000, "feet")
  24693. },
  24694. {
  24695. name: "Megamacro",
  24696. height: math.unit(1, "mile")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24702. {
  24703. side: {
  24704. height: math.unit(20, "feet"),
  24705. weight: math.unit(30000, "kg"),
  24706. name: "Side",
  24707. image: {
  24708. source: "./media/characters/windar/side.svg",
  24709. extra: 1491 / 1248,
  24710. bottom: 82.56 / 1568
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(20, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24724. {
  24725. side: {
  24726. height: math.unit(15.66, "feet"),
  24727. weight: math.unit(150, "lb"),
  24728. name: "Side",
  24729. image: {
  24730. source: "./media/characters/melody/side.svg",
  24731. extra: 1097 / 944,
  24732. bottom: 11.8 / 1109
  24733. }
  24734. },
  24735. sideOutfit: {
  24736. height: math.unit(15.66, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Side (Outfit)",
  24739. image: {
  24740. source: "./media/characters/melody/side-outfit.svg",
  24741. extra: 1097 / 944,
  24742. bottom: 11.8 / 1109
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(15.66, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24756. {
  24757. armoredFront: {
  24758. height: math.unit(8, "feet"),
  24759. weight: math.unit(325, "lb"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/windera/armored-front.svg",
  24763. extra: 1830/1598,
  24764. bottom: 151/1981
  24765. },
  24766. form: "armored",
  24767. default: true
  24768. },
  24769. macroFront: {
  24770. height: math.unit(70, "feet"),
  24771. weight: math.unit(315453, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/windera/macro-front.svg",
  24775. extra: 963/883,
  24776. bottom: 23/986
  24777. },
  24778. form: "macro",
  24779. default: true
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(8, "feet"),
  24786. default: true,
  24787. form: "armored"
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(70, "feet"),
  24792. default: true,
  24793. form: "macro"
  24794. },
  24795. ],
  24796. {
  24797. "armored": {
  24798. name: "Armored",
  24799. default: true
  24800. },
  24801. "macro": {
  24802. name: "Macro",
  24803. },
  24804. }
  24805. ))
  24806. characterMakers.push(() => makeCharacter(
  24807. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24808. {
  24809. front: {
  24810. height: math.unit(28.75, "feet"),
  24811. weight: math.unit(2000, "kg"),
  24812. name: "Front",
  24813. image: {
  24814. source: "./media/characters/sonear/front.svg",
  24815. extra: 1041.1 / 964.9,
  24816. bottom: 53.7 / 1096.6
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Normal",
  24823. height: math.unit(28.75, "feet"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24830. {
  24831. side: {
  24832. height: math.unit(25.5, "feet"),
  24833. weight: math.unit(23000, "kg"),
  24834. name: "Side",
  24835. image: {
  24836. source: "./media/characters/kanara/side.svg"
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(25.5, "feet"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24850. {
  24851. side: {
  24852. height: math.unit(10, "feet"),
  24853. weight: math.unit(1000, "kg"),
  24854. name: "Side",
  24855. image: {
  24856. source: "./media/characters/ereus/side.svg",
  24857. extra: 1157 / 959,
  24858. bottom: 153 / 1312.5
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(10, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24872. {
  24873. side: {
  24874. height: math.unit(4.5, "feet"),
  24875. weight: math.unit(500, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/e-ter/side.svg",
  24879. extra: 1550 / 1248,
  24880. bottom: 146 / 1694
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(4.5, "feet"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24894. {
  24895. side: {
  24896. height: math.unit(9.7, "feet"),
  24897. weight: math.unit(4000, "kg"),
  24898. name: "Side",
  24899. image: {
  24900. source: "./media/characters/yamie/side.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(9.7, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(50, "feet"),
  24917. weight: math.unit(50000, "kg"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/anders/front.svg",
  24921. extra: 570 / 539,
  24922. bottom: 14.7 / 586.7
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Large",
  24929. height: math.unit(50, "feet")
  24930. },
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(2000, "feet"),
  24934. default: true
  24935. },
  24936. {
  24937. name: "Megamacro",
  24938. height: math.unit(12, "miles")
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(7 + 2 / 12, "feet"),
  24947. weight: math.unit(300, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/reban/front.svg",
  24951. extra: 1287/1212,
  24952. bottom: 148/1435
  24953. }
  24954. },
  24955. head: {
  24956. height: math.unit(1.95, "feet"),
  24957. name: "Head",
  24958. image: {
  24959. source: "./media/characters/reban/head.svg"
  24960. }
  24961. },
  24962. maw: {
  24963. height: math.unit(0.95, "feet"),
  24964. name: "Maw",
  24965. image: {
  24966. source: "./media/characters/reban/maw.svg"
  24967. }
  24968. },
  24969. foot: {
  24970. height: math.unit(1.65, "feet"),
  24971. name: "Foot",
  24972. image: {
  24973. source: "./media/characters/reban/foot.svg"
  24974. }
  24975. },
  24976. dick: {
  24977. height: math.unit(7 / 5, "feet"),
  24978. name: "Dick",
  24979. image: {
  24980. source: "./media/characters/reban/dick.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Natural Height",
  24987. height: math.unit(7 + 2 / 12, "feet")
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(500, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Canon Height",
  24996. height: math.unit(50, "AU")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6, "feet"),
  25005. weight: math.unit(150, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/terrance-keayes/front.svg",
  25009. extra: 1.005,
  25010. bottom: 151 / 1615
  25011. }
  25012. },
  25013. side: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(150, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/terrance-keayes/side.svg",
  25019. extra: 1.005,
  25020. bottom: 129.4 / 1544
  25021. }
  25022. },
  25023. back: {
  25024. height: math.unit(6, "feet"),
  25025. weight: math.unit(150, "lb"),
  25026. name: "Back",
  25027. image: {
  25028. source: "./media/characters/terrance-keayes/back.svg",
  25029. extra: 1.005,
  25030. bottom: 58.4 / 1557.3
  25031. }
  25032. },
  25033. dick: {
  25034. height: math.unit(6 * 0.208, "feet"),
  25035. name: "Dick",
  25036. image: {
  25037. source: "./media/characters/terrance-keayes/dick.svg"
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Canon Height",
  25044. height: math.unit(35, "miles"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(150, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/ofelia/front.svg",
  25058. extra: 1130/1117,
  25059. bottom: 91/1221
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(6, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/ofelia/back.svg",
  25068. extra: 1172/1159,
  25069. bottom: 28/1200
  25070. }
  25071. },
  25072. maw: {
  25073. height: math.unit(1, "feet"),
  25074. name: "Maw",
  25075. image: {
  25076. source: "./media/characters/ofelia/maw.svg"
  25077. }
  25078. },
  25079. foot: {
  25080. height: math.unit(1.949, "feet"),
  25081. name: "Foot",
  25082. image: {
  25083. source: "./media/characters/ofelia/foot.svg"
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Canon Height",
  25090. height: math.unit(2000, "miles"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(6, "feet"),
  25100. weight: math.unit(150, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/samuel/front.svg",
  25104. extra: 265 / 258,
  25105. bottom: 2 / 266.1566
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Macro",
  25112. height: math.unit(100, "feet"),
  25113. default: true
  25114. },
  25115. {
  25116. name: "Full Size",
  25117. height: math.unit(1000, "miles")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(6, "feet"),
  25126. weight: math.unit(300, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/beishir-kiel/front.svg",
  25130. extra: 569 / 547,
  25131. bottom: 41.9 / 609
  25132. }
  25133. },
  25134. maw: {
  25135. height: math.unit(6 * 0.202, "feet"),
  25136. name: "Maw",
  25137. image: {
  25138. source: "./media/characters/beishir-kiel/maw.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(300, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5 + 7/12, "feet"),
  25155. weight: math.unit(120, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/logan-grey/front.svg",
  25159. extra: 1836/1738,
  25160. bottom: 108/1944
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(5 + 7/12, "feet"),
  25165. weight: math.unit(120, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/logan-grey/back.svg",
  25169. extra: 1880/1794,
  25170. bottom: 24/1904
  25171. }
  25172. },
  25173. frontSfw: {
  25174. height: math.unit(5 + 7/12, "feet"),
  25175. weight: math.unit(120, "lb"),
  25176. name: "Front (SFW)",
  25177. image: {
  25178. source: "./media/characters/logan-grey/front-sfw.svg",
  25179. extra: 1836/1738,
  25180. bottom: 108/1944
  25181. }
  25182. },
  25183. backSfw: {
  25184. height: math.unit(5 + 7/12, "feet"),
  25185. weight: math.unit(120, "lb"),
  25186. name: "Back (SFW)",
  25187. image: {
  25188. source: "./media/characters/logan-grey/back-sfw.svg",
  25189. extra: 1880/1794,
  25190. bottom: 24/1904
  25191. }
  25192. },
  25193. hands: {
  25194. height: math.unit(0.84, "feet"),
  25195. name: "Hands",
  25196. image: {
  25197. source: "./media/characters/logan-grey/hands.svg"
  25198. }
  25199. },
  25200. paws: {
  25201. height: math.unit(0.72, "feet"),
  25202. name: "Paws",
  25203. image: {
  25204. source: "./media/characters/logan-grey/paws.svg"
  25205. }
  25206. },
  25207. cock: {
  25208. height: math.unit(1.45, "feet"),
  25209. name: "Cock",
  25210. image: {
  25211. source: "./media/characters/logan-grey/cock.svg"
  25212. }
  25213. },
  25214. cockAlt: {
  25215. height: math.unit(1.437, "feet"),
  25216. name: "Cock (alt)",
  25217. image: {
  25218. source: "./media/characters/logan-grey/cock-alt.svg"
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5 + 8 / 12, "feet")
  25226. },
  25227. {
  25228. name: "The 500 Foot Femboy",
  25229. height: math.unit(500, "feet"),
  25230. default: true
  25231. },
  25232. {
  25233. name: "Megmacro",
  25234. height: math.unit(20, "miles")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(8 + 2 / 12, "feet"),
  25243. weight: math.unit(275, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/draganta/front.svg",
  25247. extra: 1177 / 1135,
  25248. bottom: 33.46 / 1212.1
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(8 + 6 / 12, "feet"),
  25256. default: true
  25257. },
  25258. {
  25259. name: "Macro",
  25260. height: math.unit(150, "feet")
  25261. },
  25262. {
  25263. name: "Megamacro",
  25264. height: math.unit(1000, "miles")
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(1.72, "m"),
  25273. weight: math.unit(80, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/voski/front.svg",
  25277. extra: 2076.22 / 2022.4,
  25278. bottom: 102.7 / 2177.3866
  25279. }
  25280. },
  25281. frontFlaccid: {
  25282. height: math.unit(1.72, "m"),
  25283. weight: math.unit(80, "lb"),
  25284. name: "Front (Flaccid)",
  25285. image: {
  25286. source: "./media/characters/voski/front-flaccid.svg",
  25287. extra: 2076.22 / 2022.4,
  25288. bottom: 102.7 / 2177.3866
  25289. }
  25290. },
  25291. frontErect: {
  25292. height: math.unit(1.72, "m"),
  25293. weight: math.unit(80, "lb"),
  25294. name: "Front (Erect)",
  25295. image: {
  25296. source: "./media/characters/voski/front-erect.svg",
  25297. extra: 2076.22 / 2022.4,
  25298. bottom: 102.7 / 2177.3866
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(1.72, "m"),
  25303. weight: math.unit(80, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/voski/back.svg",
  25307. extra: 2104 / 2051,
  25308. bottom: 10.45 / 2113.63
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(1.72, "m")
  25316. },
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(55, "m"),
  25320. default: true
  25321. },
  25322. {
  25323. name: "Macro+",
  25324. height: math.unit(300, "m")
  25325. },
  25326. {
  25327. name: "Macro++",
  25328. height: math.unit(700, "m")
  25329. },
  25330. {
  25331. name: "Macro+++",
  25332. height: math.unit(4500, "m")
  25333. },
  25334. {
  25335. name: "Macro++++",
  25336. height: math.unit(45, "km")
  25337. },
  25338. {
  25339. name: "Macro+++++",
  25340. height: math.unit(1220, "km")
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(2.3, "m"),
  25349. weight: math.unit(304, "kg"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/icowom-lee/front.svg",
  25353. extra: 985 / 955,
  25354. bottom: 25.4 / 1012
  25355. }
  25356. },
  25357. fronttentacles: {
  25358. height: math.unit(2.3, "m"),
  25359. weight: math.unit(304, "kg"),
  25360. name: "Front-tentacles",
  25361. image: {
  25362. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25363. extra: 985 / 955,
  25364. bottom: 25.4 / 1012
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(2.3, "m"),
  25369. weight: math.unit(304, "kg"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/icowom-lee/back.svg",
  25373. extra: 975 / 954,
  25374. bottom: 9.5 / 985
  25375. }
  25376. },
  25377. backtentacles: {
  25378. height: math.unit(2.3, "m"),
  25379. weight: math.unit(304, "kg"),
  25380. name: "Back-tentacles",
  25381. image: {
  25382. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25383. extra: 975 / 954,
  25384. bottom: 9.5 / 985
  25385. }
  25386. },
  25387. frontDressed: {
  25388. height: math.unit(2.3, "m"),
  25389. weight: math.unit(304, "kg"),
  25390. name: "Front (Dressed)",
  25391. image: {
  25392. source: "./media/characters/icowom-lee/front-dressed.svg",
  25393. extra: 3076 / 2933,
  25394. bottom: 51.4 / 3125.1889
  25395. }
  25396. },
  25397. rump: {
  25398. height: math.unit(0.776, "meters"),
  25399. name: "Rump",
  25400. image: {
  25401. source: "./media/characters/icowom-lee/rump.svg"
  25402. }
  25403. },
  25404. genitals: {
  25405. height: math.unit(0.78, "meters"),
  25406. name: "Genitals",
  25407. image: {
  25408. source: "./media/characters/icowom-lee/genitals.svg"
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(2.3, "meters"),
  25416. default: true
  25417. },
  25418. {
  25419. name: "Macro",
  25420. height: math.unit(94, "meters"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(22, "meters"),
  25430. weight: math.unit(21000, "kg"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/shock-diamond/front.svg",
  25434. extra: 2204 / 2053,
  25435. bottom: 65 / 2239.47
  25436. }
  25437. },
  25438. frontNude: {
  25439. height: math.unit(22, "meters"),
  25440. weight: math.unit(21000, "kg"),
  25441. name: "Front (Nude)",
  25442. image: {
  25443. source: "./media/characters/shock-diamond/front-nude.svg",
  25444. extra: 2514 / 2285,
  25445. bottom: 13 / 2527.56
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(3, "meters")
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(22, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(5 + 4/12, "feet"),
  25466. weight: math.unit(125, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/rory/front.svg",
  25470. extra: 1790/1681,
  25471. bottom: 66/1856
  25472. },
  25473. form: "normal",
  25474. default: true
  25475. },
  25476. back: {
  25477. height: math.unit(5 + 4/12, "feet"),
  25478. weight: math.unit(125, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/rory/back.svg",
  25482. extra: 1805/1690,
  25483. bottom: 56/1861
  25484. },
  25485. form: "normal"
  25486. },
  25487. frontDressed: {
  25488. height: math.unit(5 + 4/12, "feet"),
  25489. weight: math.unit(125, "lb"),
  25490. name: "Front (Dressed)",
  25491. image: {
  25492. source: "./media/characters/rory/front-dressed.svg",
  25493. extra: 1790/1681,
  25494. bottom: 66/1856
  25495. },
  25496. form: "normal"
  25497. },
  25498. backDressed: {
  25499. height: math.unit(5 + 4/12, "feet"),
  25500. weight: math.unit(125, "lb"),
  25501. name: "Back (Dressed)",
  25502. image: {
  25503. source: "./media/characters/rory/back-dressed.svg",
  25504. extra: 1805/1690,
  25505. bottom: 56/1861
  25506. },
  25507. form: "normal"
  25508. },
  25509. frontNsfw: {
  25510. height: math.unit(5 + 4/12, "feet"),
  25511. weight: math.unit(125, "lb"),
  25512. name: "Front (NSFW)",
  25513. image: {
  25514. source: "./media/characters/rory/front-nsfw.svg",
  25515. extra: 1790/1681,
  25516. bottom: 66/1856
  25517. },
  25518. form: "normal"
  25519. },
  25520. backNsfw: {
  25521. height: math.unit(5 + 4/12, "feet"),
  25522. weight: math.unit(125, "lb"),
  25523. name: "Back (NSFW)",
  25524. image: {
  25525. source: "./media/characters/rory/back-nsfw.svg",
  25526. extra: 1805/1690,
  25527. bottom: 56/1861
  25528. },
  25529. form: "normal"
  25530. },
  25531. dick: {
  25532. height: math.unit(0.8, "feet"),
  25533. name: "Dick",
  25534. image: {
  25535. source: "./media/characters/rory/dick.svg"
  25536. },
  25537. form: "normal"
  25538. },
  25539. thicc_front: {
  25540. height: math.unit(5 + 4/12, "feet"),
  25541. weight: math.unit(195, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/rory/thicc-front.svg",
  25545. extra: 1220/1100,
  25546. bottom: 103/1323
  25547. },
  25548. form: "thicc",
  25549. default: true
  25550. },
  25551. thicc_back: {
  25552. height: math.unit(5 + 4/12, "feet"),
  25553. weight: math.unit(195, "lb"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/rory/thicc-back.svg",
  25557. extra: 1166/1086,
  25558. bottom: 35/1201
  25559. },
  25560. form: "thicc"
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Micro",
  25566. height: math.unit(3, "inches"),
  25567. allForms: true
  25568. },
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(5 + 4/12, "feet"),
  25572. allForms: true,
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(90, "feet"),
  25578. allForms: true
  25579. },
  25580. {
  25581. name: "Supercharged",
  25582. height: math.unit(270, "feet"),
  25583. allForms: true
  25584. },
  25585. ],
  25586. {
  25587. "normal": {
  25588. name: "Normal",
  25589. default: true
  25590. },
  25591. "thicc": {
  25592. name: "Thicc",
  25593. },
  25594. }
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(5 + 9 / 12, "feet"),
  25601. weight: math.unit(190, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/sprisk/front.svg",
  25605. extra: 1225 / 1180,
  25606. bottom: 42.7 / 1266.4
  25607. }
  25608. },
  25609. frontNsfw: {
  25610. height: math.unit(5 + 9 / 12, "feet"),
  25611. weight: math.unit(190, "lb"),
  25612. name: "Front (NSFW)",
  25613. image: {
  25614. source: "./media/characters/sprisk/front-nsfw.svg",
  25615. extra: 1225 / 1180,
  25616. bottom: 42.7 / 1266.4
  25617. }
  25618. },
  25619. back: {
  25620. height: math.unit(5 + 9 / 12, "feet"),
  25621. weight: math.unit(190, "lb"),
  25622. name: "Back",
  25623. image: {
  25624. source: "./media/characters/sprisk/back.svg",
  25625. extra: 1247 / 1200,
  25626. bottom: 5.6 / 1253.04
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Tiny",
  25633. height: math.unit(2, "inches")
  25634. },
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(5 + 9 / 12, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Mini Macro",
  25642. height: math.unit(18, "feet")
  25643. },
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(100, "feet")
  25647. },
  25648. {
  25649. name: "MACRO",
  25650. height: math.unit(50, "miles")
  25651. },
  25652. {
  25653. name: "M A C R O",
  25654. height: math.unit(300, "miles")
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25660. {
  25661. side: {
  25662. height: math.unit(15.6, "meters"),
  25663. weight: math.unit(700000, "kg"),
  25664. name: "Side",
  25665. image: {
  25666. source: "./media/characters/bunsen/side.svg",
  25667. extra: 1644 / 358
  25668. }
  25669. },
  25670. foot: {
  25671. height: math.unit(1.611 * 1644 / 358, "meter"),
  25672. name: "Foot",
  25673. image: {
  25674. source: "./media/characters/bunsen/foot.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Small",
  25681. height: math.unit(10, "feet")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(15.6, "meters"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(4 + 11 / 12, "feet"),
  25695. weight: math.unit(140, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/sesh/front.svg",
  25699. extra: 3420 / 3231,
  25700. bottom: 72 / 3949.5
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(4 + 11 / 12, "feet")
  25708. },
  25709. {
  25710. name: "Grown",
  25711. height: math.unit(15, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(1500, "feet")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(30, "miles")
  25721. },
  25722. {
  25723. name: "Continental",
  25724. height: math.unit(3000, "miles")
  25725. },
  25726. {
  25727. name: "Gravity Mass",
  25728. height: math.unit(300000, "miles")
  25729. },
  25730. {
  25731. name: "Planet Buster",
  25732. height: math.unit(30000000, "miles")
  25733. },
  25734. {
  25735. name: "Big",
  25736. height: math.unit(3000000000, "miles")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(9, "feet"),
  25745. weight: math.unit(350, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/pepper/front.svg",
  25749. extra: 1448 / 1312,
  25750. bottom: 9.4 / 1457.88
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(9, "feet"),
  25755. weight: math.unit(350, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/pepper/back.svg",
  25759. extra: 1423 / 1300,
  25760. bottom: 4.6 / 1429
  25761. }
  25762. },
  25763. maw: {
  25764. height: math.unit(0.932, "feet"),
  25765. name: "Maw",
  25766. image: {
  25767. source: "./media/characters/pepper/maw.svg"
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(9, "feet"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(6, "feet"),
  25784. weight: math.unit(150, "lb"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/maelstrom/front.svg",
  25788. extra: 2100 / 1883,
  25789. bottom: 94 / 2196.7
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Less Kaiju",
  25796. height: math.unit(200, "feet")
  25797. },
  25798. {
  25799. name: "Kaiju",
  25800. height: math.unit(400, "feet"),
  25801. default: true
  25802. },
  25803. {
  25804. name: "Kaiju-er",
  25805. height: math.unit(600, "feet")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(6 + 5 / 12, "feet"),
  25814. weight: math.unit(180, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/lexir/front.svg",
  25818. extra: 180 / 172,
  25819. bottom: 12 / 192
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(6 + 5 / 12, "feet"),
  25824. weight: math.unit(180, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/lexir/back.svg",
  25828. extra: 1273/1201,
  25829. bottom: 39/1312
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Very Smal",
  25836. height: math.unit(1, "nm")
  25837. },
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(6 + 5 / 12, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(1, "mile")
  25846. },
  25847. {
  25848. name: "Megamacro",
  25849. height: math.unit(50, "miles")
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(1.5, "meters"),
  25858. weight: math.unit(100, "lb"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/maksio/front.svg",
  25862. extra: 1549 / 1531,
  25863. bottom: 123.7 / 1674.5429
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(1.5, "meters"),
  25868. weight: math.unit(100, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/maksio/back.svg",
  25872. extra: 1541 / 1509,
  25873. bottom: 97 / 1639
  25874. }
  25875. },
  25876. hand: {
  25877. height: math.unit(0.621, "feet"),
  25878. name: "Hand",
  25879. image: {
  25880. source: "./media/characters/maksio/hand.svg"
  25881. }
  25882. },
  25883. foot: {
  25884. height: math.unit(1.611, "feet"),
  25885. name: "Foot",
  25886. image: {
  25887. source: "./media/characters/maksio/foot.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Shrunken",
  25894. height: math.unit(10, "cm")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(150, "cm"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(100, "feet"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/erza-bear/front.svg",
  25911. extra: 2449 / 2390,
  25912. bottom: 46 / 2494
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(100, "feet"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/erza-bear/back.svg",
  25920. extra: 2489 / 2430,
  25921. bottom: 85.4 / 2480
  25922. }
  25923. },
  25924. tail: {
  25925. height: math.unit(42, "feet"),
  25926. name: "Tail",
  25927. image: {
  25928. source: "./media/characters/erza-bear/tail.svg"
  25929. }
  25930. },
  25931. tongue: {
  25932. height: math.unit(8, "feet"),
  25933. name: "Tongue",
  25934. image: {
  25935. source: "./media/characters/erza-bear/tongue.svg"
  25936. }
  25937. },
  25938. dick: {
  25939. height: math.unit(10.5, "feet"),
  25940. name: "Dick",
  25941. image: {
  25942. source: "./media/characters/erza-bear/dick.svg"
  25943. }
  25944. },
  25945. dickVertical: {
  25946. height: math.unit(16.9, "feet"),
  25947. name: "Dick (Vertical)",
  25948. image: {
  25949. source: "./media/characters/erza-bear/dick-vertical.svg"
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Macro",
  25956. height: math.unit(100, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(172, "cm"),
  25966. weight: math.unit(73, "kg"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/violet-flor/front.svg",
  25970. extra: 1474/1379,
  25971. bottom: 113/1587
  25972. }
  25973. },
  25974. back: {
  25975. height: math.unit(180, "cm"),
  25976. weight: math.unit(73, "kg"),
  25977. name: "Back",
  25978. image: {
  25979. source: "./media/characters/violet-flor/back.svg",
  25980. extra: 1660/1567,
  25981. bottom: 49/1709
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(172, "cm"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6, "feet"),
  25998. weight: math.unit(220, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/lynn-rhea/front.svg",
  26002. extra: 310 / 273
  26003. }
  26004. },
  26005. back: {
  26006. height: math.unit(6, "feet"),
  26007. weight: math.unit(220, "lb"),
  26008. name: "Back",
  26009. image: {
  26010. source: "./media/characters/lynn-rhea/back.svg",
  26011. extra: 310 / 273
  26012. }
  26013. },
  26014. dicks: {
  26015. height: math.unit(0.9, "feet"),
  26016. name: "Dicks",
  26017. image: {
  26018. source: "./media/characters/lynn-rhea/dicks.svg"
  26019. }
  26020. },
  26021. slit: {
  26022. height: math.unit(0.4, "feet"),
  26023. name: "Slit",
  26024. image: {
  26025. source: "./media/characters/lynn-rhea/slit.svg"
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Micro",
  26032. height: math.unit(1, "inch")
  26033. },
  26034. {
  26035. name: "Macro",
  26036. height: math.unit(60, "feet"),
  26037. default: true
  26038. },
  26039. {
  26040. name: "Megamacro",
  26041. height: math.unit(2, "miles")
  26042. },
  26043. {
  26044. name: "Gigamacro",
  26045. height: math.unit(3, "earths")
  26046. },
  26047. {
  26048. name: "Galactic",
  26049. height: math.unit(0.8, "galaxies")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26055. {
  26056. front: {
  26057. height: math.unit(1600, "feet"),
  26058. weight: math.unit(85758785169, "kg"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/valathos/front.svg",
  26062. extra: 1451 / 1339
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Macro",
  26069. height: math.unit(1600, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(7 + 5 / 12, "feet"),
  26079. weight: math.unit(300, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/azula/front.svg",
  26083. extra: 3208 / 2880,
  26084. bottom: 80.2 / 3277
  26085. }
  26086. },
  26087. back: {
  26088. height: math.unit(7 + 5 / 12, "feet"),
  26089. weight: math.unit(300, "lb"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/azula/back.svg",
  26093. extra: 3169 / 2822,
  26094. bottom: 150.6 / 3321
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(7 + 5 / 12, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Big",
  26106. height: math.unit(20, "feet")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(5 + 1 / 12, "feet"),
  26115. weight: math.unit(110, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/rupert/front.svg",
  26119. extra: 1549 / 1495,
  26120. bottom: 54.2 / 1604.4
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(5 + 1 / 12, "feet"),
  26128. default: true
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26134. {
  26135. front: {
  26136. height: math.unit(8 + 4 / 12, "feet"),
  26137. weight: math.unit(350, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/sheera-castellar/front.svg",
  26141. extra: 1957 / 1894,
  26142. bottom: 26.97 / 1975.017
  26143. }
  26144. },
  26145. side: {
  26146. height: math.unit(8 + 4 / 12, "feet"),
  26147. weight: math.unit(350, "lb"),
  26148. name: "Side",
  26149. image: {
  26150. source: "./media/characters/sheera-castellar/side.svg",
  26151. extra: 1957 / 1894
  26152. }
  26153. },
  26154. back: {
  26155. height: math.unit(8 + 4 / 12, "feet"),
  26156. weight: math.unit(350, "lb"),
  26157. name: "Back",
  26158. image: {
  26159. source: "./media/characters/sheera-castellar/back.svg",
  26160. extra: 1957 / 1894
  26161. }
  26162. },
  26163. angled: {
  26164. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26165. weight: math.unit(350, "lb"),
  26166. name: "Angled",
  26167. image: {
  26168. source: "./media/characters/sheera-castellar/angled.svg",
  26169. extra: 1807 / 1707,
  26170. bottom: 68 / 1875
  26171. }
  26172. },
  26173. genitals: {
  26174. height: math.unit(2.2, "feet"),
  26175. name: "Genitals",
  26176. image: {
  26177. source: "./media/characters/sheera-castellar/genitals.svg"
  26178. }
  26179. },
  26180. taur: {
  26181. height: math.unit(10 + 6/12, "feet"),
  26182. name: "Taur",
  26183. image: {
  26184. source: "./media/characters/sheera-castellar/taur.svg",
  26185. extra: 2017/1909,
  26186. bottom: 185/2202
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(8 + 4 / 12, "feet")
  26194. },
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(150, "feet"),
  26198. default: true
  26199. },
  26200. {
  26201. name: "Macro+",
  26202. height: math.unit(800, "feet")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(6, "feet"),
  26211. weight: math.unit(150, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/jaipur/front.svg",
  26215. extra: 3860 / 3731,
  26216. bottom: 287 / 4140
  26217. }
  26218. },
  26219. back: {
  26220. height: math.unit(6, "feet"),
  26221. weight: math.unit(150, "lb"),
  26222. name: "Back",
  26223. image: {
  26224. source: "./media/characters/jaipur/back.svg",
  26225. extra: 1637/1561,
  26226. bottom: 154/1791
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(1.85, "meters"),
  26234. default: true
  26235. },
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(150, "meters")
  26239. },
  26240. {
  26241. name: "Macro+",
  26242. height: math.unit(0.5, "miles")
  26243. },
  26244. {
  26245. name: "Macro++",
  26246. height: math.unit(2.5, "miles")
  26247. },
  26248. {
  26249. name: "Macro+++",
  26250. height: math.unit(12, "miles")
  26251. },
  26252. {
  26253. name: "Macro++++",
  26254. height: math.unit(120, "miles")
  26255. },
  26256. {
  26257. name: "Macro+++++",
  26258. height: math.unit(1200, "miles")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(6, "feet"),
  26267. weight: math.unit(150, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/sheila-wolf/front.svg",
  26271. extra: 1931 / 1808,
  26272. bottom: 29.5 / 1960
  26273. }
  26274. },
  26275. dick: {
  26276. height: math.unit(1.464, "feet"),
  26277. name: "Dick",
  26278. image: {
  26279. source: "./media/characters/sheila-wolf/dick.svg"
  26280. }
  26281. },
  26282. muzzle: {
  26283. height: math.unit(0.513, "feet"),
  26284. name: "Muzzle",
  26285. image: {
  26286. source: "./media/characters/sheila-wolf/muzzle.svg"
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Macro",
  26293. height: math.unit(70, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(32, "meters"),
  26303. weight: math.unit(300000, "kg"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/almor/front.svg",
  26307. extra: 1408 / 1322,
  26308. bottom: 94.6 / 1506.5
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(32, "meters"),
  26316. default: true
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(7, "feet"),
  26325. weight: math.unit(200, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/silver/front.svg",
  26329. extra: 472.1 / 450.5,
  26330. bottom: 26.5 / 499.424
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(7, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(800, "feet")
  26343. },
  26344. {
  26345. name: "Megamacro",
  26346. height: math.unit(250, "miles")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(6, "feet"),
  26355. weight: math.unit(150, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/pliskin/front.svg",
  26359. extra: 1469 / 1359,
  26360. bottom: 70 / 1540
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Micro",
  26367. height: math.unit(3, "inches")
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(5 + 11 / 12, "feet"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(120, "feet")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(6, "feet"),
  26385. weight: math.unit(150, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/sammy/front.svg",
  26389. extra: 1193 / 1089,
  26390. bottom: 30.5 / 1226
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(1700, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Examacro",
  26402. height: math.unit(2.5e9, "lightyears")
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(21, "meters"),
  26411. weight: math.unit(12, "tonnes"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/kuru/front.svg",
  26415. extra: 4301 / 3785,
  26416. bottom: 371.3 / 4691
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(21, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(23, "meters"),
  26433. weight: math.unit(12.2, "tonnes"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/rakka/front.svg",
  26437. extra: 4670 / 4169,
  26438. bottom: 301 / 4968.7
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(23, "meters"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(6, "feet"),
  26455. weight: math.unit(150, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/rhys-feline/front.svg",
  26459. extra: 2488 / 2308,
  26460. bottom: 35.67 / 2519.19
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Really Small",
  26467. height: math.unit(1, "nm")
  26468. },
  26469. {
  26470. name: "Micro",
  26471. height: math.unit(4, "inches")
  26472. },
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(4 + 10 / 12, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(100, "feet")
  26481. },
  26482. {
  26483. name: "Megamacto",
  26484. height: math.unit(50, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(30, "feet"),
  26493. weight: math.unit(35000, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/alydar/side.svg",
  26497. extra: 234 / 222,
  26498. bottom: 6.5 / 241
  26499. }
  26500. },
  26501. front: {
  26502. height: math.unit(30, "feet"),
  26503. weight: math.unit(35000, "kg"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/alydar/front.svg",
  26507. extra: 223.37 / 210.2,
  26508. bottom: 22.3 / 246.76
  26509. }
  26510. },
  26511. top: {
  26512. height: math.unit(64.54, "feet"),
  26513. weight: math.unit(35000, "kg"),
  26514. name: "Top",
  26515. image: {
  26516. source: "./media/characters/alydar/top.svg"
  26517. }
  26518. },
  26519. anthro: {
  26520. height: math.unit(30, "feet"),
  26521. weight: math.unit(9000, "kg"),
  26522. name: "Anthro",
  26523. image: {
  26524. source: "./media/characters/alydar/anthro.svg",
  26525. extra: 432 / 421,
  26526. bottom: 7.18 / 440
  26527. }
  26528. },
  26529. maw: {
  26530. height: math.unit(11.693, "feet"),
  26531. name: "Maw",
  26532. image: {
  26533. source: "./media/characters/alydar/maw.svg"
  26534. }
  26535. },
  26536. head: {
  26537. height: math.unit(11.693, "feet"),
  26538. name: "Head",
  26539. image: {
  26540. source: "./media/characters/alydar/head.svg"
  26541. }
  26542. },
  26543. headAlt: {
  26544. height: math.unit(12.861, "feet"),
  26545. name: "Head (Alt)",
  26546. image: {
  26547. source: "./media/characters/alydar/head-alt.svg"
  26548. }
  26549. },
  26550. wing: {
  26551. height: math.unit(20.712, "feet"),
  26552. name: "Wing",
  26553. image: {
  26554. source: "./media/characters/alydar/wing.svg"
  26555. }
  26556. },
  26557. wingFeather: {
  26558. height: math.unit(9.662, "feet"),
  26559. name: "Wing Feather",
  26560. image: {
  26561. source: "./media/characters/alydar/wing-feather.svg"
  26562. }
  26563. },
  26564. countourFeather: {
  26565. height: math.unit(4.154, "feet"),
  26566. name: "Contour Feather",
  26567. image: {
  26568. source: "./media/characters/alydar/contour-feather.svg"
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Diplomatic",
  26575. height: math.unit(13, "feet"),
  26576. default: true
  26577. },
  26578. {
  26579. name: "Small",
  26580. height: math.unit(30, "feet")
  26581. },
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(95, "feet"),
  26585. default: true
  26586. },
  26587. {
  26588. name: "Large",
  26589. height: math.unit(285, "feet")
  26590. },
  26591. {
  26592. name: "Incomprehensible",
  26593. height: math.unit(450, "megameters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26599. {
  26600. side: {
  26601. height: math.unit(11, "feet"),
  26602. weight: math.unit(1750, "kg"),
  26603. name: "Side",
  26604. image: {
  26605. source: "./media/characters/selicia/side.svg",
  26606. extra: 440 / 396,
  26607. bottom: 24.8 / 465.979
  26608. }
  26609. },
  26610. maw: {
  26611. height: math.unit(4.665, "feet"),
  26612. name: "Maw",
  26613. image: {
  26614. source: "./media/characters/selicia/maw.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(11, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26628. {
  26629. side: {
  26630. height: math.unit(2 + 6 / 12, "feet"),
  26631. weight: math.unit(30, "lb"),
  26632. name: "Side",
  26633. image: {
  26634. source: "./media/characters/layla/side.svg",
  26635. extra: 244 / 188,
  26636. bottom: 18.2 / 262.1
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(2 + 6 / 12, "feet"),
  26641. weight: math.unit(30, "lb"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/layla/back.svg",
  26645. extra: 308 / 241.5,
  26646. bottom: 8.9 / 316.8
  26647. }
  26648. },
  26649. cumming: {
  26650. height: math.unit(2 + 6 / 12, "feet"),
  26651. weight: math.unit(30, "lb"),
  26652. name: "Cumming",
  26653. image: {
  26654. source: "./media/characters/layla/cumming.svg",
  26655. extra: 342 / 279,
  26656. bottom: 595 / 938
  26657. }
  26658. },
  26659. dickFlaccid: {
  26660. height: math.unit(2.595, "feet"),
  26661. name: "Flaccid Genitals",
  26662. image: {
  26663. source: "./media/characters/layla/dick-flaccid.svg"
  26664. }
  26665. },
  26666. dickErect: {
  26667. height: math.unit(2.359, "feet"),
  26668. name: "Erect Genitals",
  26669. image: {
  26670. source: "./media/characters/layla/dick-erect.svg"
  26671. }
  26672. },
  26673. dragon: {
  26674. height: math.unit(40, "feet"),
  26675. name: "Dragon",
  26676. image: {
  26677. source: "./media/characters/layla/dragon.svg",
  26678. extra: 610/535,
  26679. bottom: 367/977
  26680. }
  26681. },
  26682. taur: {
  26683. height: math.unit(30, "feet"),
  26684. name: "Taur",
  26685. image: {
  26686. source: "./media/characters/layla/taur.svg",
  26687. extra: 1268/1199,
  26688. bottom: 112/1380
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Micro",
  26695. height: math.unit(1, "inch")
  26696. },
  26697. {
  26698. name: "Small",
  26699. height: math.unit(1, "foot")
  26700. },
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(2 + 6 / 12, "feet"),
  26704. default: true
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(200, "feet")
  26709. },
  26710. {
  26711. name: "Megamacro",
  26712. height: math.unit(1000, "miles")
  26713. },
  26714. {
  26715. name: "Planetary",
  26716. height: math.unit(8000, "miles")
  26717. },
  26718. {
  26719. name: "True Layla",
  26720. height: math.unit(200000 * 7, "multiverses")
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26726. {
  26727. back: {
  26728. height: math.unit(10.5, "feet"),
  26729. weight: math.unit(800, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/knox/back.svg",
  26733. extra: 1486 / 1089,
  26734. bottom: 107 / 1601.4
  26735. }
  26736. },
  26737. side: {
  26738. height: math.unit(10.5, "feet"),
  26739. weight: math.unit(800, "lb"),
  26740. name: "Side",
  26741. image: {
  26742. source: "./media/characters/knox/side.svg",
  26743. extra: 244 / 218,
  26744. bottom: 14 / 260
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Compact",
  26751. height: math.unit(10.5, "feet"),
  26752. default: true
  26753. },
  26754. {
  26755. name: "Dynamax",
  26756. height: math.unit(210, "feet")
  26757. },
  26758. {
  26759. name: "Full Macro",
  26760. height: math.unit(850, "feet")
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(28, "feet"),
  26769. weight: math.unit(10500, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/kayda/front.svg",
  26773. extra: 1536 / 1428,
  26774. bottom: 68.7 / 1603
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(28, "feet"),
  26779. weight: math.unit(10500, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/kayda/back.svg",
  26783. extra: 1557 / 1464,
  26784. bottom: 39.5 / 1597.49
  26785. }
  26786. },
  26787. dick: {
  26788. height: math.unit(3.858, "feet"),
  26789. name: "Dick",
  26790. image: {
  26791. source: "./media/characters/kayda/dick.svg"
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Macro",
  26798. height: math.unit(28, "feet"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(10 + 11 / 12, "feet"),
  26808. weight: math.unit(1400, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/brian/front.svg",
  26812. extra: 737 / 692,
  26813. bottom: 55.4 / 785
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(10 + 11 / 12, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(5 + 8 / 12, "feet"),
  26830. weight: math.unit(140, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/khemri/front.svg",
  26834. extra: 4780 / 4059,
  26835. bottom: 80.1 / 4859.25
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(6, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(5 + 8 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26853. {
  26854. front: {
  26855. height: math.unit(13, "feet"),
  26856. weight: math.unit(1700, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/felix-braveheart/front.svg",
  26860. extra: 1222 / 1157,
  26861. bottom: 53.2 / 1280
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(13, "feet"),
  26866. weight: math.unit(1700, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/felix-braveheart/back.svg",
  26870. extra: 1277 / 1203,
  26871. bottom: 50.2 / 1327
  26872. }
  26873. },
  26874. feral: {
  26875. height: math.unit(6, "feet"),
  26876. weight: math.unit(400, "lb"),
  26877. name: "Feral",
  26878. image: {
  26879. source: "./media/characters/felix-braveheart/feral.svg",
  26880. extra: 682 / 625,
  26881. bottom: 6.9 / 688
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(13, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26895. {
  26896. side: {
  26897. height: math.unit(5 + 11 / 12, "feet"),
  26898. weight: math.unit(1400, "lb"),
  26899. name: "Side",
  26900. image: {
  26901. source: "./media/characters/shadow-blade/side.svg",
  26902. extra: 1726 / 1267,
  26903. bottom: 58.4 / 1785
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(5 + 11 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(1 + 6 / 12, "feet"),
  26920. weight: math.unit(25, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/karla-halldor/front.svg",
  26924. extra: 1459 / 1383,
  26925. bottom: 12 / 1472
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(1 + 6 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(6 + 2 / 12, "feet"),
  26942. weight: math.unit(160, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/ariam/front.svg",
  26946. extra: 1073/976,
  26947. bottom: 52/1125
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(6 + 2/12, "feet"),
  26952. weight: math.unit(160, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/ariam/back.svg",
  26956. extra: 1103/1023,
  26957. bottom: 9/1112
  26958. }
  26959. },
  26960. dressed: {
  26961. height: math.unit(6 + 2/12, "feet"),
  26962. weight: math.unit(160, "lb"),
  26963. name: "Dressed",
  26964. image: {
  26965. source: "./media/characters/ariam/dressed.svg",
  26966. extra: 1099/1009,
  26967. bottom: 25/1124
  26968. }
  26969. },
  26970. squatting: {
  26971. height: math.unit(4.1, "feet"),
  26972. weight: math.unit(160, "lb"),
  26973. name: "Squatting",
  26974. image: {
  26975. source: "./media/characters/ariam/squatting.svg",
  26976. extra: 2617 / 2112,
  26977. bottom: 61.2 / 2681,
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(6 + 2 / 12, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Normal+",
  26989. height: math.unit(4, "meters")
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(50, "meters")
  26994. },
  26995. {
  26996. name: "Macro+",
  26997. height: math.unit(100, "meters")
  26998. },
  26999. {
  27000. name: "Megamacro",
  27001. height: math.unit(20, "km")
  27002. },
  27003. {
  27004. name: "Caretaker",
  27005. height: math.unit(444, "megameters")
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(1.67, "meters"),
  27014. weight: math.unit(140, "lb"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27018. extra: 438 / 410,
  27019. bottom: 0.75 / 439
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Shrunken",
  27026. height: math.unit(7.6, "cm")
  27027. },
  27028. {
  27029. name: "Human Scale",
  27030. height: math.unit(1.67, "meters")
  27031. },
  27032. {
  27033. name: "Wolxi Scale",
  27034. height: math.unit(36.7, "meters"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(1.73, "meters"),
  27044. weight: math.unit(240, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/izue-two-mothers/front.svg",
  27048. extra: 469 / 437,
  27049. bottom: 1.24 / 470.6
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Shrunken",
  27056. height: math.unit(7.86, "cm")
  27057. },
  27058. {
  27059. name: "Human Scale",
  27060. height: math.unit(1.73, "meters")
  27061. },
  27062. {
  27063. name: "Wolxi Scale",
  27064. height: math.unit(38, "meters"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(1.55, "meters"),
  27074. weight: math.unit(120, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/teeku-love-shack/front.svg",
  27078. extra: 387 / 362,
  27079. bottom: 1.51 / 388
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Shrunken",
  27086. height: math.unit(7, "cm")
  27087. },
  27088. {
  27089. name: "Human Scale",
  27090. height: math.unit(1.55, "meters")
  27091. },
  27092. {
  27093. name: "Wolxi Scale",
  27094. height: math.unit(34.1, "meters"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(1.83, "meters"),
  27104. weight: math.unit(135, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/dejma-the-red/front.svg",
  27108. extra: 480 / 458,
  27109. bottom: 1.8 / 482
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Shrunken",
  27116. height: math.unit(8.3, "cm")
  27117. },
  27118. {
  27119. name: "Human Scale",
  27120. height: math.unit(1.83, "meters")
  27121. },
  27122. {
  27123. name: "Wolxi Scale",
  27124. height: math.unit(40, "meters"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(1.78, "meters"),
  27134. weight: math.unit(65, "kg"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/aki/front.svg",
  27138. extra: 452 / 415
  27139. }
  27140. },
  27141. frontNsfw: {
  27142. height: math.unit(1.78, "meters"),
  27143. weight: math.unit(65, "kg"),
  27144. name: "Front (NSFW)",
  27145. image: {
  27146. source: "./media/characters/aki/front-nsfw.svg",
  27147. extra: 452 / 415
  27148. }
  27149. },
  27150. back: {
  27151. height: math.unit(1.78, "meters"),
  27152. weight: math.unit(65, "kg"),
  27153. name: "Back",
  27154. image: {
  27155. source: "./media/characters/aki/back.svg",
  27156. extra: 452 / 415
  27157. }
  27158. },
  27159. rump: {
  27160. height: math.unit(2.05, "feet"),
  27161. name: "Rump",
  27162. image: {
  27163. source: "./media/characters/aki/rump.svg"
  27164. }
  27165. },
  27166. dick: {
  27167. height: math.unit(0.95, "feet"),
  27168. name: "Dick",
  27169. image: {
  27170. source: "./media/characters/aki/dick.svg"
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Micro",
  27177. height: math.unit(15, "cm")
  27178. },
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(178, "cm"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Macro",
  27186. height: math.unit(214, "m")
  27187. },
  27188. {
  27189. name: "Macro+",
  27190. height: math.unit(534, "m")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 5 / 12, "feet"),
  27199. weight: math.unit(120, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/ari/front.svg",
  27203. extra: 1550/1471,
  27204. bottom: 39/1589
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 5 / 12, "feet")
  27212. },
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(100, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Megamacro",
  27220. height: math.unit(100, "miles")
  27221. },
  27222. {
  27223. name: "Gigamacro",
  27224. height: math.unit(80000, "miles")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27230. {
  27231. side: {
  27232. height: math.unit(9, "feet"),
  27233. weight: math.unit(400, "kg"),
  27234. name: "Side",
  27235. image: {
  27236. source: "./media/characters/bolt/side.svg",
  27237. extra: 1126 / 896,
  27238. bottom: 60 / 1187.3,
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Micro",
  27245. height: math.unit(5, "inches")
  27246. },
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(9, "feet"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Macro",
  27254. height: math.unit(700, "feet")
  27255. },
  27256. {
  27257. name: "Max Size",
  27258. height: math.unit(1.52e22, "yottameters")
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(4.3, "meters"),
  27267. weight: math.unit(3, "tons"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/draekon-sylviar/front.svg",
  27271. extra: 2072/1512,
  27272. bottom: 74/2146
  27273. }
  27274. },
  27275. back: {
  27276. height: math.unit(4.3, "meters"),
  27277. weight: math.unit(3, "tons"),
  27278. name: "Back",
  27279. image: {
  27280. source: "./media/characters/draekon-sylviar/back.svg",
  27281. extra: 1639/1483,
  27282. bottom: 41/1680
  27283. }
  27284. },
  27285. feral: {
  27286. height: math.unit(1.15, "meters"),
  27287. weight: math.unit(3, "tons"),
  27288. name: "Feral",
  27289. image: {
  27290. source: "./media/characters/draekon-sylviar/feral.svg",
  27291. extra: 1033/395,
  27292. bottom: 130/1163
  27293. }
  27294. },
  27295. maw: {
  27296. height: math.unit(1.3, "meters"),
  27297. name: "Maw",
  27298. image: {
  27299. source: "./media/characters/draekon-sylviar/maw.svg"
  27300. }
  27301. },
  27302. mawSeparated: {
  27303. height: math.unit(1.53, "meters"),
  27304. name: "Separated Maw",
  27305. image: {
  27306. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27307. }
  27308. },
  27309. tail: {
  27310. height: math.unit(1.15, "meters"),
  27311. name: "Tail",
  27312. image: {
  27313. source: "./media/characters/draekon-sylviar/tail.svg"
  27314. }
  27315. },
  27316. tailDick: {
  27317. height: math.unit(1.15, "meters"),
  27318. name: "Tail (Dick)",
  27319. image: {
  27320. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27321. }
  27322. },
  27323. tailDickSeparated: {
  27324. height: math.unit(1.19, "meters"),
  27325. name: "Tail (Separated Dick)",
  27326. image: {
  27327. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27328. }
  27329. },
  27330. slit: {
  27331. height: math.unit(1, "meters"),
  27332. name: "Slit",
  27333. image: {
  27334. source: "./media/characters/draekon-sylviar/slit.svg"
  27335. }
  27336. },
  27337. dick: {
  27338. height: math.unit(1.15, "meters"),
  27339. name: "Dick",
  27340. image: {
  27341. source: "./media/characters/draekon-sylviar/dick.svg"
  27342. }
  27343. },
  27344. dickSeparated: {
  27345. height: math.unit(1.1, "meters"),
  27346. name: "Separated Dick",
  27347. image: {
  27348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27349. }
  27350. },
  27351. sheath: {
  27352. height: math.unit(1.15, "meters"),
  27353. name: "Sheath",
  27354. image: {
  27355. source: "./media/characters/draekon-sylviar/sheath.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Small",
  27362. height: math.unit(4.53 / 2, "meters"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(4.53, "meters"),
  27368. default: true
  27369. },
  27370. {
  27371. name: "Large",
  27372. height: math.unit(4.53 * 2, "meters"),
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(6 + 2 / 12, "feet"),
  27381. weight: math.unit(180, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/brawler/front.svg",
  27385. extra: 3301 / 3027,
  27386. bottom: 138 / 3439
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(6 + 2 / 12, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(11, "feet"),
  27403. weight: math.unit(1000, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/alex/front.svg",
  27407. bottom: 44.5 / 620
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Micro",
  27414. height: math.unit(5, "inches")
  27415. },
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(11, "feet"),
  27419. default: true
  27420. },
  27421. {
  27422. name: "Macro",
  27423. height: math.unit(9.5e9, "feet")
  27424. },
  27425. {
  27426. name: "Max Size",
  27427. height: math.unit(1.4e283, "yottameters")
  27428. },
  27429. ]
  27430. ))
  27431. characterMakers.push(() => makeCharacter(
  27432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27433. {
  27434. female: {
  27435. height: math.unit(29.9, "m"),
  27436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27437. name: "Female",
  27438. image: {
  27439. source: "./media/characters/zenari/female.svg",
  27440. extra: 3281.6 / 3217,
  27441. bottom: 72.2 / 3353
  27442. }
  27443. },
  27444. male: {
  27445. height: math.unit(27.7, "m"),
  27446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27447. name: "Male",
  27448. image: {
  27449. source: "./media/characters/zenari/male.svg",
  27450. extra: 3008 / 2991,
  27451. bottom: 54.6 / 3069
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Macro",
  27458. height: math.unit(29.7, "meters"),
  27459. default: true
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27465. {
  27466. female: {
  27467. height: math.unit(23.8, "m"),
  27468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27469. name: "Female",
  27470. image: {
  27471. source: "./media/characters/mactarian/female.svg",
  27472. extra: 2662 / 2569,
  27473. bottom: 73 / 2736
  27474. }
  27475. },
  27476. male: {
  27477. height: math.unit(23.8, "m"),
  27478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27479. name: "Male",
  27480. image: {
  27481. source: "./media/characters/mactarian/male.svg",
  27482. extra: 2673 / 2600,
  27483. bottom: 76 / 2750
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(23.8, "meters"),
  27491. default: true
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27497. {
  27498. female: {
  27499. height: math.unit(19.3, "m"),
  27500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27501. name: "Female",
  27502. image: {
  27503. source: "./media/characters/umok/female.svg",
  27504. extra: 2186 / 2078,
  27505. bottom: 87 / 2277
  27506. }
  27507. },
  27508. male: {
  27509. height: math.unit(19.5, "m"),
  27510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27511. name: "Male",
  27512. image: {
  27513. source: "./media/characters/umok/male.svg",
  27514. extra: 2233 / 2140,
  27515. bottom: 24.4 / 2258
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(19.3, "meters"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27529. {
  27530. female: {
  27531. height: math.unit(26.15, "m"),
  27532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27533. name: "Female",
  27534. image: {
  27535. source: "./media/characters/joraxian/female.svg",
  27536. extra: 2912 / 2824,
  27537. bottom: 36 / 2956
  27538. }
  27539. },
  27540. male: {
  27541. height: math.unit(25.4, "m"),
  27542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27543. name: "Male",
  27544. image: {
  27545. source: "./media/characters/joraxian/male.svg",
  27546. extra: 2877 / 2721,
  27547. bottom: 82 / 2967
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(26.15, "meters"),
  27555. default: true
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27561. {
  27562. female: {
  27563. height: math.unit(21.6, "m"),
  27564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27565. name: "Female",
  27566. image: {
  27567. source: "./media/characters/sthara/female.svg",
  27568. extra: 2516 / 2347,
  27569. bottom: 21.5 / 2537
  27570. }
  27571. },
  27572. male: {
  27573. height: math.unit(24, "m"),
  27574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27575. name: "Male",
  27576. image: {
  27577. source: "./media/characters/sthara/male.svg",
  27578. extra: 2732 / 2607,
  27579. bottom: 23 / 2732
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Macro",
  27586. height: math.unit(21.6, "meters"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(6 + 4 / 12, "feet"),
  27596. weight: math.unit(175, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/luka-bryzant/front.svg",
  27600. extra: 311 / 289,
  27601. bottom: 4 / 315
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(6 + 4 / 12, "feet"),
  27606. weight: math.unit(175, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/luka-bryzant/back.svg",
  27610. extra: 311 / 289,
  27611. bottom: 3.8 / 313.7
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Micro",
  27618. height: math.unit(10, "inches")
  27619. },
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(6 + 4 / 12, "feet"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Large",
  27627. height: math.unit(12, "feet")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(5 + 7 / 12, "feet"),
  27636. weight: math.unit(185, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/aman-aquila/front.svg",
  27640. extra: 1013 / 976,
  27641. bottom: 45.6 / 1057
  27642. }
  27643. },
  27644. side: {
  27645. height: math.unit(5 + 7 / 12, "feet"),
  27646. weight: math.unit(185, "lb"),
  27647. name: "Side",
  27648. image: {
  27649. source: "./media/characters/aman-aquila/side.svg",
  27650. extra: 1054 / 1011,
  27651. bottom: 15 / 1070
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(5 + 7 / 12, "feet"),
  27656. weight: math.unit(185, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/aman-aquila/back.svg",
  27660. extra: 1026 / 970,
  27661. bottom: 12 / 1039
  27662. }
  27663. },
  27664. head: {
  27665. height: math.unit(1.211, "feet"),
  27666. name: "Head",
  27667. image: {
  27668. source: "./media/characters/aman-aquila/head.svg",
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Minimicro",
  27675. height: math.unit(0.057, "inches")
  27676. },
  27677. {
  27678. name: "Micro",
  27679. height: math.unit(7, "inches")
  27680. },
  27681. {
  27682. name: "Mini",
  27683. height: math.unit(3 + 7 / 12, "feet")
  27684. },
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(5 + 7 / 12, "feet"),
  27688. default: true
  27689. },
  27690. {
  27691. name: "Macro",
  27692. height: math.unit(157 + 7 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Megamacro",
  27696. height: math.unit(1557 + 7 / 12, "feet")
  27697. },
  27698. {
  27699. name: "Gigamacro",
  27700. height: math.unit(15557 + 7 / 12, "feet")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(3 + 2 / 12, "inches"),
  27709. weight: math.unit(0.3, "ounces"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/hiphae/front.svg",
  27713. extra: 1931 / 1683,
  27714. bottom: 24 / 1955
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(3 + 1 / 2, "inches"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. weight: math.unit(165, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/nicky/front.svg",
  27735. extra: 3144 / 2886,
  27736. bottom: 45.6 / 3192
  27737. }
  27738. },
  27739. back: {
  27740. height: math.unit(5 + 10 / 12, "feet"),
  27741. weight: math.unit(165, "lb"),
  27742. name: "Back",
  27743. image: {
  27744. source: "./media/characters/nicky/back.svg",
  27745. extra: 3055 / 2804,
  27746. bottom: 28.4 / 3087
  27747. }
  27748. },
  27749. frontclothed: {
  27750. height: math.unit(5 + 10 / 12, "feet"),
  27751. weight: math.unit(165, "lb"),
  27752. name: "Front-clothed",
  27753. image: {
  27754. source: "./media/characters/nicky/front-clothed.svg",
  27755. extra: 3184.9 / 2926.9,
  27756. bottom: 86.5 / 3239.9
  27757. }
  27758. },
  27759. foot: {
  27760. height: math.unit(1.16, "feet"),
  27761. name: "Foot",
  27762. image: {
  27763. source: "./media/characters/nicky/foot.svg"
  27764. }
  27765. },
  27766. feet: {
  27767. height: math.unit(1.34, "feet"),
  27768. name: "Feet",
  27769. image: {
  27770. source: "./media/characters/nicky/feet.svg"
  27771. }
  27772. },
  27773. maw: {
  27774. height: math.unit(0.9, "feet"),
  27775. name: "Maw",
  27776. image: {
  27777. source: "./media/characters/nicky/maw.svg"
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(5 + 10 / 12, "feet"),
  27785. default: true
  27786. },
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(60, "feet")
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(1, "mile")
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27799. {
  27800. side: {
  27801. height: math.unit(10, "feet"),
  27802. weight: math.unit(600, "lb"),
  27803. name: "Side",
  27804. image: {
  27805. source: "./media/characters/blair/side.svg",
  27806. bottom: 16.6 / 475,
  27807. extra: 458 / 431
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Micro",
  27814. height: math.unit(8, "inches")
  27815. },
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(10, "feet"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Macro",
  27823. height: math.unit(180, "feet")
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(5 + 4 / 12, "feet"),
  27832. weight: math.unit(125, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/fisher/front.svg",
  27836. extra: 444 / 390,
  27837. bottom: 2 / 444.8
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Micro",
  27844. height: math.unit(4, "inches")
  27845. },
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5 + 4 / 12, "feet"),
  27849. default: true
  27850. },
  27851. {
  27852. name: "Macro",
  27853. height: math.unit(100, "feet")
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(6.71, "feet"),
  27862. weight: math.unit(200, "lb"),
  27863. preyCapacity: math.unit(1000000, "people"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/gliss/front.svg",
  27867. extra: 2347 / 2231,
  27868. bottom: 113 / 2462
  27869. }
  27870. },
  27871. hammerspaceSize: {
  27872. height: math.unit(6.71 * 717, "feet"),
  27873. weight: math.unit(200, "lb"),
  27874. preyCapacity: math.unit(1000000, "people"),
  27875. name: "Hammerspace Size",
  27876. image: {
  27877. source: "./media/characters/gliss/front.svg",
  27878. extra: 2347 / 2231,
  27879. bottom: 113 / 2462
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(6.71, "feet"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27893. {
  27894. side: {
  27895. height: math.unit(1.44, "m"),
  27896. weight: math.unit(80, "kg"),
  27897. name: "Side",
  27898. image: {
  27899. source: "./media/characters/dune-anderson/side.svg",
  27900. bottom: 49 / 1426
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Wolf-sized",
  27907. height: math.unit(1.44, "meters")
  27908. },
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(5.05, "meters"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Big",
  27916. height: math.unit(14.4, "meters")
  27917. },
  27918. {
  27919. name: "Huge",
  27920. height: math.unit(144, "meters")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(220, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/hind/front.svg",
  27933. extra: 1912/1787,
  27934. bottom: 52/1964
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(220, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/hind/back.svg",
  27943. extra: 1901/1794,
  27944. bottom: 26/1927
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(6, "feet"),
  27952. default: true
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(2.1, "meters"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/tharquench-sizestealer/front.svg",
  27965. extra: 1605/1470,
  27966. bottom: 36/1641
  27967. }
  27968. },
  27969. frontAlt: {
  27970. height: math.unit(2.1, "meters"),
  27971. weight: math.unit(150, "lb"),
  27972. name: "Front (Alt)",
  27973. image: {
  27974. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27975. extra: 2318 / 2063,
  27976. bottom: 93.4 / 2410
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Nano",
  27983. height: math.unit(1, "mm")
  27984. },
  27985. {
  27986. name: "Micro",
  27987. height: math.unit(1, "cm")
  27988. },
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(2.1, "meters"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(7 + 5 / 12, "feet"),
  28001. weight: math.unit(357, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/solex-draconov/front.svg",
  28005. extra: 1993 / 1865,
  28006. bottom: 117 / 2111
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Natural Height",
  28013. height: math.unit(7 + 5 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Macro",
  28018. height: math.unit(350, "feet")
  28019. },
  28020. {
  28021. name: "Macro+",
  28022. height: math.unit(1000, "feet")
  28023. },
  28024. {
  28025. name: "Megamacro",
  28026. height: math.unit(20, "km")
  28027. },
  28028. {
  28029. name: "Megamacro+",
  28030. height: math.unit(1000, "km")
  28031. },
  28032. {
  28033. name: "Gigamacro",
  28034. height: math.unit(2.5, "Gm")
  28035. },
  28036. {
  28037. name: "Teramacro",
  28038. height: math.unit(15, "Tm")
  28039. },
  28040. {
  28041. name: "Galactic",
  28042. height: math.unit(30, "Zm")
  28043. },
  28044. {
  28045. name: "Universal",
  28046. height: math.unit(21000, "Ym")
  28047. },
  28048. {
  28049. name: "Omniversal",
  28050. height: math.unit(9.861e50, "Ym")
  28051. },
  28052. {
  28053. name: "Existential",
  28054. height: math.unit(1e300, "meters")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28060. {
  28061. side: {
  28062. height: math.unit(25, "feet"),
  28063. weight: math.unit(90000, "lb"),
  28064. name: "Side",
  28065. image: {
  28066. source: "./media/characters/mandarax/side.svg",
  28067. extra: 614 / 332,
  28068. bottom: 55 / 630
  28069. }
  28070. },
  28071. lounging: {
  28072. height: math.unit(15.4, "feet"),
  28073. weight: math.unit(90000, "lb"),
  28074. name: "Lounging",
  28075. image: {
  28076. source: "./media/characters/mandarax/lounging.svg",
  28077. extra: 817/609,
  28078. bottom: 685/1502
  28079. }
  28080. },
  28081. head: {
  28082. height: math.unit(11.4, "feet"),
  28083. name: "Head",
  28084. image: {
  28085. source: "./media/characters/mandarax/head.svg"
  28086. }
  28087. },
  28088. belly: {
  28089. height: math.unit(33, "feet"),
  28090. name: "Belly",
  28091. preyCapacity: math.unit(500, "people"),
  28092. image: {
  28093. source: "./media/characters/mandarax/belly.svg"
  28094. }
  28095. },
  28096. dick: {
  28097. height: math.unit(8.46, "feet"),
  28098. name: "Dick",
  28099. image: {
  28100. source: "./media/characters/mandarax/dick.svg"
  28101. }
  28102. },
  28103. top: {
  28104. height: math.unit(28, "meters"),
  28105. name: "Top",
  28106. image: {
  28107. source: "./media/characters/mandarax/top.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(25, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(5, "feet"),
  28124. weight: math.unit(90, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/pixil/front.svg",
  28128. extra: 2000 / 1618,
  28129. bottom: 12.3 / 2011
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(5, "feet"),
  28137. default: true
  28138. },
  28139. {
  28140. name: "Megamacro",
  28141. height: math.unit(10, "miles"),
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(7 + 2 / 12, "feet"),
  28150. weight: math.unit(200, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/angel/front.svg",
  28154. extra: 1946/1840,
  28155. bottom: 30/1976
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(7 + 2 / 12, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(1000, "feet")
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(2, "miles")
  28172. },
  28173. {
  28174. name: "Gigamacro",
  28175. height: math.unit(20, "earths")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(5, "feet"),
  28184. weight: math.unit(180, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/mekana/front.svg",
  28188. extra: 1671 / 1605,
  28189. bottom: 3.5 / 1691
  28190. }
  28191. },
  28192. side: {
  28193. height: math.unit(5, "feet"),
  28194. weight: math.unit(180, "lb"),
  28195. name: "Side",
  28196. image: {
  28197. source: "./media/characters/mekana/side.svg",
  28198. extra: 1671 / 1605,
  28199. bottom: 3.5 / 1691
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(5, "feet"),
  28204. weight: math.unit(180, "lb"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/mekana/back.svg",
  28208. extra: 1671 / 1605,
  28209. bottom: 3.5 / 1691
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(5, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(4 + 6 / 12, "feet"),
  28226. weight: math.unit(80, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/pixie/front.svg",
  28230. extra: 1924 / 1825,
  28231. bottom: 22.4 / 1946
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(4 + 6 / 12, "feet"),
  28239. default: true
  28240. },
  28241. {
  28242. name: "Macro",
  28243. height: math.unit(40, "feet")
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(2.1, "meters"),
  28252. weight: math.unit(200, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/the-lascivious/front.svg",
  28256. extra: 1 / 0.893,
  28257. bottom: 3.5 / 573.7
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Human Scale",
  28264. height: math.unit(2.1, "meters")
  28265. },
  28266. {
  28267. name: "Wolxi Scale",
  28268. height: math.unit(46.2, "m"),
  28269. default: true
  28270. },
  28271. {
  28272. name: "Boinker of Buildings",
  28273. height: math.unit(10, "km")
  28274. },
  28275. {
  28276. name: "Shagger of Skyscrapers",
  28277. height: math.unit(40, "km")
  28278. },
  28279. {
  28280. name: "Banger of Boroughs",
  28281. height: math.unit(4000, "km")
  28282. },
  28283. {
  28284. name: "Screwer of States",
  28285. height: math.unit(100000, "km")
  28286. },
  28287. {
  28288. name: "Pounder of Planets",
  28289. height: math.unit(2000000, "km")
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(6, "feet"),
  28298. weight: math.unit(150, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/aj/front.svg",
  28302. extra: 2039 / 1562,
  28303. bottom: 40 / 2079
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(11 + 6 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Megamacro",
  28315. height: math.unit(60, "megameters")
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28321. {
  28322. side: {
  28323. height: math.unit(31 + 8 / 12, "feet"),
  28324. weight: math.unit(75000, "kg"),
  28325. name: "Side",
  28326. image: {
  28327. source: "./media/characters/koros/side.svg",
  28328. extra: 1442 / 1297,
  28329. bottom: 122.7 / 1562
  28330. }
  28331. },
  28332. dicksKingsCrown: {
  28333. height: math.unit(6, "feet"),
  28334. name: "Dicks (King's Crown)",
  28335. image: {
  28336. source: "./media/characters/koros/dicks-kings-crown.svg"
  28337. }
  28338. },
  28339. dicksTailSet: {
  28340. height: math.unit(3, "feet"),
  28341. name: "Dicks (Tail Set)",
  28342. image: {
  28343. source: "./media/characters/koros/dicks-tail-set.svg"
  28344. }
  28345. },
  28346. dickCumming: {
  28347. height: math.unit(7.98, "feet"),
  28348. name: "Dick (Cumming)",
  28349. image: {
  28350. source: "./media/characters/koros/dick-cumming.svg"
  28351. }
  28352. },
  28353. dicksBack: {
  28354. height: math.unit(5.9, "feet"),
  28355. name: "Dicks (Back)",
  28356. image: {
  28357. source: "./media/characters/koros/dicks-back.svg"
  28358. }
  28359. },
  28360. dicksFront: {
  28361. height: math.unit(3.72, "feet"),
  28362. name: "Dicks (Front)",
  28363. image: {
  28364. source: "./media/characters/koros/dicks-front.svg"
  28365. }
  28366. },
  28367. dicksPeeking: {
  28368. height: math.unit(3.0, "feet"),
  28369. name: "Dicks (Peeking)",
  28370. image: {
  28371. source: "./media/characters/koros/dicks-peeking.svg"
  28372. }
  28373. },
  28374. eye: {
  28375. height: math.unit(1.7, "feet"),
  28376. name: "Eye",
  28377. image: {
  28378. source: "./media/characters/koros/eye.svg"
  28379. }
  28380. },
  28381. headFront: {
  28382. height: math.unit(11.69, "feet"),
  28383. name: "Head (Front)",
  28384. image: {
  28385. source: "./media/characters/koros/head-front.svg"
  28386. }
  28387. },
  28388. headSide: {
  28389. height: math.unit(14, "feet"),
  28390. name: "Head (Side)",
  28391. image: {
  28392. source: "./media/characters/koros/head-side.svg"
  28393. }
  28394. },
  28395. leg: {
  28396. height: math.unit(17, "feet"),
  28397. name: "Leg",
  28398. image: {
  28399. source: "./media/characters/koros/leg.svg"
  28400. }
  28401. },
  28402. mawSide: {
  28403. height: math.unit(12.8, "feet"),
  28404. name: "Maw (Side)",
  28405. image: {
  28406. source: "./media/characters/koros/maw-side.svg"
  28407. }
  28408. },
  28409. mawSpitting: {
  28410. height: math.unit(17, "feet"),
  28411. name: "Maw (Spitting)",
  28412. image: {
  28413. source: "./media/characters/koros/maw-spitting.svg"
  28414. }
  28415. },
  28416. slit: {
  28417. height: math.unit(2.8, "feet"),
  28418. name: "Slit",
  28419. image: {
  28420. source: "./media/characters/koros/slit.svg"
  28421. }
  28422. },
  28423. stomach: {
  28424. height: math.unit(6.8, "feet"),
  28425. preyCapacity: math.unit(20, "people"),
  28426. name: "Stomach",
  28427. image: {
  28428. source: "./media/characters/koros/stomach.svg"
  28429. }
  28430. },
  28431. wingspanBottom: {
  28432. height: math.unit(114, "feet"),
  28433. name: "Wingspan (Bottom)",
  28434. image: {
  28435. source: "./media/characters/koros/wingspan-bottom.svg"
  28436. }
  28437. },
  28438. wingspanTop: {
  28439. height: math.unit(104, "feet"),
  28440. name: "Wingspan (Top)",
  28441. image: {
  28442. source: "./media/characters/koros/wingspan-top.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(31 + 8 / 12, "feet"),
  28450. default: true
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(18 + 5 / 12, "feet"),
  28459. weight: math.unit(3750, "kg"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/vexx/front.svg",
  28463. extra: 426 / 396,
  28464. bottom: 31.5 / 458
  28465. }
  28466. },
  28467. maw: {
  28468. height: math.unit(6, "feet"),
  28469. name: "Maw",
  28470. image: {
  28471. source: "./media/characters/vexx/maw.svg"
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(18 + 5 / 12, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(17 + 6 / 12, "feet"),
  28488. weight: math.unit(150, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/baadra/front.svg",
  28492. extra: 1694/1553,
  28493. bottom: 179/1873
  28494. }
  28495. },
  28496. frontAlt: {
  28497. height: math.unit(17 + 6 / 12, "feet"),
  28498. weight: math.unit(150, "lb"),
  28499. name: "Front (Alt)",
  28500. image: {
  28501. source: "./media/characters/baadra/front-alt.svg",
  28502. extra: 3137 / 2890,
  28503. bottom: 168.4 / 3305
  28504. }
  28505. },
  28506. back: {
  28507. height: math.unit(17 + 6 / 12, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/baadra/back.svg",
  28512. extra: 3142 / 2890,
  28513. bottom: 220 / 3371
  28514. }
  28515. },
  28516. head: {
  28517. height: math.unit(5.45, "feet"),
  28518. name: "Head",
  28519. image: {
  28520. source: "./media/characters/baadra/head.svg"
  28521. }
  28522. },
  28523. headAngry: {
  28524. height: math.unit(4.95, "feet"),
  28525. name: "Head (Angry)",
  28526. image: {
  28527. source: "./media/characters/baadra/head-angry.svg"
  28528. }
  28529. },
  28530. headOpen: {
  28531. height: math.unit(6, "feet"),
  28532. name: "Head (Open)",
  28533. image: {
  28534. source: "./media/characters/baadra/head-open.svg"
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(17 + 6 / 12, "feet"),
  28542. default: true
  28543. },
  28544. ]
  28545. ))
  28546. characterMakers.push(() => makeCharacter(
  28547. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28548. {
  28549. front: {
  28550. height: math.unit(7 + 3 / 12, "feet"),
  28551. weight: math.unit(180, "lb"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/juri/front.svg",
  28555. extra: 1401 / 1237,
  28556. bottom: 18.5 / 1418
  28557. }
  28558. },
  28559. side: {
  28560. height: math.unit(7 + 3 / 12, "feet"),
  28561. weight: math.unit(180, "lb"),
  28562. name: "Side",
  28563. image: {
  28564. source: "./media/characters/juri/side.svg",
  28565. extra: 1424 / 1242,
  28566. bottom: 18.5 / 1447
  28567. }
  28568. },
  28569. sitting: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(180, "lb"),
  28572. name: "Sitting",
  28573. image: {
  28574. source: "./media/characters/juri/sitting.svg",
  28575. extra: 1270 / 1143,
  28576. bottom: 100 / 1343
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(7 + 3 / 12, "feet"),
  28581. weight: math.unit(180, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/juri/back.svg",
  28585. extra: 1377 / 1240,
  28586. bottom: 23.7 / 1405
  28587. }
  28588. },
  28589. maw: {
  28590. height: math.unit(2.8, "feet"),
  28591. name: "Maw",
  28592. image: {
  28593. source: "./media/characters/juri/maw.svg"
  28594. }
  28595. },
  28596. stomach: {
  28597. height: math.unit(0.89, "feet"),
  28598. preyCapacity: math.unit(4, "liters"),
  28599. name: "Stomach",
  28600. image: {
  28601. source: "./media/characters/juri/stomach.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(7 + 3 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28615. {
  28616. fox: {
  28617. height: math.unit(5 + 6 / 12, "feet"),
  28618. weight: math.unit(140, "lb"),
  28619. name: "Fox",
  28620. image: {
  28621. source: "./media/characters/maxene-sita/fox.svg",
  28622. extra: 146 / 138,
  28623. bottom: 2.1 / 148.19
  28624. }
  28625. },
  28626. foxLaying: {
  28627. height: math.unit(1.70, "feet"),
  28628. weight: math.unit(140, "lb"),
  28629. name: "Fox (Laying)",
  28630. image: {
  28631. source: "./media/characters/maxene-sita/fox-laying.svg",
  28632. extra: 910 / 572,
  28633. bottom: 71 / 981
  28634. }
  28635. },
  28636. kitsune: {
  28637. height: math.unit(10, "feet"),
  28638. weight: math.unit(800, "lb"),
  28639. name: "Kitsune",
  28640. image: {
  28641. source: "./media/characters/maxene-sita/kitsune.svg",
  28642. extra: 185 / 176,
  28643. bottom: 4.7 / 189.9
  28644. }
  28645. },
  28646. hellhound: {
  28647. height: math.unit(10, "feet"),
  28648. weight: math.unit(700, "lb"),
  28649. name: "Hellhound",
  28650. image: {
  28651. source: "./media/characters/maxene-sita/hellhound.svg",
  28652. extra: 1600 / 1545,
  28653. bottom: 81 / 1681
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(5 + 6 / 12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28667. {
  28668. front: {
  28669. height: math.unit(3 + 4 / 12, "feet"),
  28670. weight: math.unit(70, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/maia/front.svg",
  28674. extra: 227 / 219.5,
  28675. bottom: 40 / 267
  28676. }
  28677. },
  28678. back: {
  28679. height: math.unit(3 + 4 / 12, "feet"),
  28680. weight: math.unit(70, "lb"),
  28681. name: "Back",
  28682. image: {
  28683. source: "./media/characters/maia/back.svg",
  28684. extra: 237 / 225
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(3 + 4 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. weight: math.unit(197, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/jabaro/front.svg",
  28705. extra: 225 / 216,
  28706. bottom: 5.06 / 230
  28707. }
  28708. },
  28709. back: {
  28710. height: math.unit(5 + 10 / 12, "feet"),
  28711. weight: math.unit(197, "lb"),
  28712. name: "Back",
  28713. image: {
  28714. source: "./media/characters/jabaro/back.svg",
  28715. extra: 225 / 219,
  28716. bottom: 1.9 / 227
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(5 + 10 / 12, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(5 + 8 / 12, "feet"),
  28733. weight: math.unit(139, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/risa/front.svg",
  28737. extra: 270 / 260,
  28738. bottom: 11.2 / 282
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(5 + 8 / 12, "feet"),
  28743. weight: math.unit(139, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/risa/back.svg",
  28747. extra: 264 / 255,
  28748. bottom: 4 / 268
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(5 + 8 / 12, "feet"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(2 + 11 / 12, "feet"),
  28765. weight: math.unit(30, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/weatley/front.svg",
  28769. bottom: 10.7 / 414,
  28770. extra: 403.5 / 362
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(2 + 11 / 12, "feet"),
  28775. weight: math.unit(30, "lb"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/weatley/back.svg",
  28779. bottom: 10.7 / 414,
  28780. extra: 403.5 / 362
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(2 + 11 / 12, "feet"),
  28788. default: true
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(5 + 2 / 12, "feet"),
  28797. weight: math.unit(50, "kg"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/mercury-crescent/front.svg",
  28801. extra: 1088 / 1033,
  28802. bottom: 18.9 / 1109
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(5 + 2 / 12, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(2, "feet"),
  28819. weight: math.unit(15, "kg"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/diamond-jones/front.svg",
  28823. extra: 727/723,
  28824. bottom: 46/773
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(2, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(3, "feet"),
  28841. weight: math.unit(30, "kg"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/sweet-bit/front.svg",
  28845. extra: 675 / 567,
  28846. bottom: 27.7 / 703
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(3, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28860. {
  28861. side: {
  28862. height: math.unit(9.178, "feet"),
  28863. weight: math.unit(500, "lb"),
  28864. name: "Side",
  28865. image: {
  28866. source: "./media/characters/umbrazen/side.svg",
  28867. extra: 1730 / 1473,
  28868. bottom: 34.6 / 1765
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(9.178, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(10, "feet"),
  28885. weight: math.unit(750, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/arlist/front.svg",
  28889. extra: 961 / 778,
  28890. bottom: 6.2 / 986
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(10, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(5 + 1 / 12, "feet"),
  28907. weight: math.unit(110, "lb"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/aradel/front.svg",
  28911. extra: 324 / 303,
  28912. bottom: 3.6 / 329.4
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(5 + 1 / 12, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28926. {
  28927. dressed: {
  28928. height: math.unit(3 + 8 / 12, "feet"),
  28929. weight: math.unit(50, "lb"),
  28930. name: "Dressed",
  28931. image: {
  28932. source: "./media/characters/serryn/dressed.svg",
  28933. extra: 1792 / 1656,
  28934. bottom: 43.5 / 1840
  28935. }
  28936. },
  28937. nude: {
  28938. height: math.unit(3 + 8 / 12, "feet"),
  28939. weight: math.unit(50, "lb"),
  28940. name: "Nude",
  28941. image: {
  28942. source: "./media/characters/serryn/nude.svg",
  28943. extra: 1792 / 1656,
  28944. bottom: 43.5 / 1840
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(3 + 8 / 12, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(7 + 10 / 12, "feet"),
  28961. weight: math.unit(255, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/xavier-thyme/front.svg",
  28965. extra: 3733 / 3642,
  28966. bottom: 131 / 3869
  28967. }
  28968. },
  28969. frontRaven: {
  28970. height: math.unit(7 + 10 / 12, "feet"),
  28971. weight: math.unit(255, "lb"),
  28972. name: "Front (Raven)",
  28973. image: {
  28974. source: "./media/characters/xavier-thyme/front-raven.svg",
  28975. extra: 4385 / 3642,
  28976. bottom: 131 / 4517
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(7 + 10 / 12, "feet"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(1.6, "m"),
  28993. weight: math.unit(50, "kg"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/kiki/front.svg",
  28997. extra: 4682 / 3610,
  28998. bottom: 115 / 4777
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(1.6, "meters"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(50, "m"),
  29015. weight: math.unit(500, "tonnes"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/ryoko/front.svg",
  29019. extra: 4632 / 3926,
  29020. bottom: 193 / 4823
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(50, "meters"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(30, "m"),
  29037. weight: math.unit(22, "tonnes"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/elio/front.svg",
  29041. extra: 4582 / 3720,
  29042. bottom: 236 / 4828
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(30, "meters"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(6 + 3 / 12, "feet"),
  29059. weight: math.unit(120, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/azura/front.svg",
  29063. extra: 1149 / 1135,
  29064. bottom: 45 / 1194
  29065. }
  29066. },
  29067. frontClothed: {
  29068. height: math.unit(6 + 3 / 12, "feet"),
  29069. weight: math.unit(120, "lb"),
  29070. name: "Front (Clothed)",
  29071. image: {
  29072. source: "./media/characters/azura/front-clothed.svg",
  29073. extra: 1149 / 1135,
  29074. bottom: 45 / 1194
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6 + 3 / 12, "feet"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(20 + 6 / 12, "feet")
  29087. },
  29088. {
  29089. name: "Megamacro",
  29090. height: math.unit(12, "miles")
  29091. },
  29092. {
  29093. name: "Gigamacro",
  29094. height: math.unit(10000, "miles")
  29095. },
  29096. {
  29097. name: "Teramacro",
  29098. height: math.unit(900000, "miles")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(12, "feet"),
  29107. weight: math.unit(1, "ton"),
  29108. capacity: math.unit(660000, "gallons"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/zeus/front.svg",
  29112. extra: 5005 / 4717,
  29113. bottom: 363 / 5388
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(12, "feet")
  29121. },
  29122. {
  29123. name: "Preferred Size",
  29124. height: math.unit(0.5, "miles"),
  29125. default: true
  29126. },
  29127. {
  29128. name: "Giga Horse",
  29129. height: math.unit(300, "miles")
  29130. },
  29131. {
  29132. name: "Riding Planets",
  29133. height: math.unit(30, "megameters")
  29134. },
  29135. {
  29136. name: "Cosmic Giant",
  29137. height: math.unit(3, "zettameters")
  29138. },
  29139. {
  29140. name: "Breeding God",
  29141. height: math.unit(9.92e22, "yottameters")
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29147. {
  29148. side: {
  29149. height: math.unit(9, "feet"),
  29150. weight: math.unit(1500, "kg"),
  29151. name: "Side",
  29152. image: {
  29153. source: "./media/characters/fang/side.svg",
  29154. extra: 924 / 866,
  29155. bottom: 47.5 / 972.3
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(9, "feet"),
  29163. default: true
  29164. },
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(75 + 6 / 12, "feet")
  29168. },
  29169. {
  29170. name: "Teramacro",
  29171. height: math.unit(50000, "miles")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(10, "feet"),
  29180. weight: math.unit(2, "tons"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/rekhit/front.svg",
  29184. extra: 2796 / 2590,
  29185. bottom: 225 / 3022
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(10, "feet"),
  29193. default: true
  29194. },
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(500, "feet")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(7 + 6.451 / 12, "feet"),
  29206. weight: math.unit(310, "lb"),
  29207. name: "Front",
  29208. image: {
  29209. source: "./media/characters/dahlia-verrick/front.svg",
  29210. extra: 1488 / 1365,
  29211. bottom: 6.2 / 1495
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(7 + 6.451 / 12, "feet"),
  29216. weight: math.unit(310, "lb"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/dahlia-verrick/back.svg",
  29220. extra: 1472 / 1351,
  29221. bottom: 5.28 / 1477
  29222. }
  29223. },
  29224. frontBusiness: {
  29225. height: math.unit(7 + 6.451 / 12, "feet"),
  29226. weight: math.unit(200, "lb"),
  29227. name: "Front (Business)",
  29228. image: {
  29229. source: "./media/characters/dahlia-verrick/front-business.svg",
  29230. extra: 1478 / 1381,
  29231. bottom: 5.5 / 1484
  29232. }
  29233. },
  29234. frontCasual: {
  29235. height: math.unit(7 + 6.451 / 12, "feet"),
  29236. weight: math.unit(200, "lb"),
  29237. name: "Front (Casual)",
  29238. image: {
  29239. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29240. extra: 1478 / 1381,
  29241. bottom: 5.5 / 1484
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Travel-Sized",
  29248. height: math.unit(7.45, "inches")
  29249. },
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(7 + 6.451 / 12, "feet"),
  29253. default: true
  29254. },
  29255. {
  29256. name: "Hitting the Town",
  29257. height: math.unit(37 + 8 / 12, "feet")
  29258. },
  29259. {
  29260. name: "Stomp in the Suburbs",
  29261. height: math.unit(964 + 9.728 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Sit on the City",
  29265. height: math.unit(61747 + 10.592 / 12, "feet")
  29266. },
  29267. {
  29268. name: "Glomp the Globe",
  29269. height: math.unit(252919327 + 4.832 / 12, "feet")
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(6 + 4 / 12, "feet"),
  29278. weight: math.unit(320, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/balina-mahigan/front.svg",
  29282. extra: 447 / 428,
  29283. bottom: 18 / 466
  29284. }
  29285. },
  29286. back: {
  29287. height: math.unit(6 + 4 / 12, "feet"),
  29288. weight: math.unit(320, "lb"),
  29289. name: "Back",
  29290. image: {
  29291. source: "./media/characters/balina-mahigan/back.svg",
  29292. extra: 445 / 428,
  29293. bottom: 4.07 / 448
  29294. }
  29295. },
  29296. arm: {
  29297. height: math.unit(1.88, "feet"),
  29298. name: "Arm",
  29299. image: {
  29300. source: "./media/characters/balina-mahigan/arm.svg"
  29301. }
  29302. },
  29303. backPort: {
  29304. height: math.unit(0.685, "feet"),
  29305. name: "Back Port",
  29306. image: {
  29307. source: "./media/characters/balina-mahigan/back-port.svg"
  29308. }
  29309. },
  29310. hoofpaw: {
  29311. height: math.unit(1.41, "feet"),
  29312. name: "Hoofpaw",
  29313. image: {
  29314. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29315. }
  29316. },
  29317. leftHandBack: {
  29318. height: math.unit(0.938, "feet"),
  29319. name: "Left Hand (Back)",
  29320. image: {
  29321. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29322. }
  29323. },
  29324. leftHandFront: {
  29325. height: math.unit(0.938, "feet"),
  29326. name: "Left Hand (Front)",
  29327. image: {
  29328. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29329. }
  29330. },
  29331. rightHandBack: {
  29332. height: math.unit(0.95, "feet"),
  29333. name: "Right Hand (Back)",
  29334. image: {
  29335. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29336. }
  29337. },
  29338. rightHandFront: {
  29339. height: math.unit(0.95, "feet"),
  29340. name: "Right Hand (Front)",
  29341. image: {
  29342. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(6 + 4 / 12, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(6, "feet"),
  29359. weight: math.unit(320, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/balina-mejeri/front.svg",
  29363. extra: 517 / 488,
  29364. bottom: 44.2 / 561
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(6 + 4 / 12, "feet")
  29372. },
  29373. {
  29374. name: "Business",
  29375. height: math.unit(155, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29382. {
  29383. kneeling: {
  29384. height: math.unit(6 + 4 / 12, "feet"),
  29385. weight: math.unit(300 * 20, "lb"),
  29386. name: "Kneeling",
  29387. image: {
  29388. source: "./media/characters/balbarian/kneeling.svg",
  29389. extra: 922 / 862,
  29390. bottom: 42.4 / 965
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(6 + 4 / 12, "feet")
  29398. },
  29399. {
  29400. name: "Treasured",
  29401. height: math.unit(18 + 9 / 12, "feet"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(900, "feet")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(6 + 4 / 12, "feet"),
  29415. weight: math.unit(325, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/balina-amarini/front.svg",
  29419. extra: 415 / 403,
  29420. bottom: 19 / 433.4
  29421. }
  29422. },
  29423. back: {
  29424. height: math.unit(6 + 4 / 12, "feet"),
  29425. weight: math.unit(325, "lb"),
  29426. name: "Back",
  29427. image: {
  29428. source: "./media/characters/balina-amarini/back.svg",
  29429. extra: 415 / 403,
  29430. bottom: 13.5 / 432
  29431. }
  29432. },
  29433. overdrive: {
  29434. height: math.unit(6 + 4 / 12, "feet"),
  29435. weight: math.unit(400, "lb"),
  29436. name: "Overdrive",
  29437. image: {
  29438. source: "./media/characters/balina-amarini/overdrive.svg",
  29439. extra: 269 / 259,
  29440. bottom: 12 / 282
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Boom",
  29447. height: math.unit(9 + 10 / 12, "feet"),
  29448. default: true
  29449. },
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(280, "feet")
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29458. {
  29459. goddess: {
  29460. height: math.unit(600, "feet"),
  29461. weight: math.unit(2000000, "tons"),
  29462. name: "Goddess",
  29463. image: {
  29464. source: "./media/characters/lady-kubwa/goddess.svg",
  29465. extra: 1240.5 / 1223,
  29466. bottom: 22 / 1263
  29467. }
  29468. },
  29469. goddesser: {
  29470. height: math.unit(900, "feet"),
  29471. weight: math.unit(20000000, "lb"),
  29472. name: "Goddess-er",
  29473. image: {
  29474. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29475. extra: 899 / 888,
  29476. bottom: 12.6 / 912
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Macro",
  29483. height: math.unit(600, "feet"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Megamacro",
  29488. height: math.unit(250, "miles")
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29494. {
  29495. front: {
  29496. height: math.unit(7 + 7 / 12, "feet"),
  29497. weight: math.unit(250, "lb"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/tala-grovehorn/front.svg",
  29501. extra: 2636 / 2525,
  29502. bottom: 147 / 2781
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(7 + 7 / 12, "feet"),
  29507. weight: math.unit(250, "lb"),
  29508. name: "Back",
  29509. image: {
  29510. source: "./media/characters/tala-grovehorn/back.svg",
  29511. extra: 2635 / 2539,
  29512. bottom: 100 / 2732.8
  29513. }
  29514. },
  29515. mouth: {
  29516. height: math.unit(1.15, "feet"),
  29517. name: "Mouth",
  29518. image: {
  29519. source: "./media/characters/tala-grovehorn/mouth.svg"
  29520. }
  29521. },
  29522. dick: {
  29523. height: math.unit(2.36, "feet"),
  29524. name: "Dick",
  29525. image: {
  29526. source: "./media/characters/tala-grovehorn/dick.svg"
  29527. }
  29528. },
  29529. slit: {
  29530. height: math.unit(0.61, "feet"),
  29531. name: "Slit",
  29532. image: {
  29533. source: "./media/characters/tala-grovehorn/slit.svg"
  29534. }
  29535. },
  29536. },
  29537. [
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(7 + 7 / 12, "feet"),
  29545. weight: math.unit(225, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/epona/front.svg",
  29549. extra: 2445 / 2290,
  29550. bottom: 251 / 2696
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(7 + 7 / 12, "feet"),
  29555. weight: math.unit(225, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/epona/back.svg",
  29559. extra: 2546 / 2408,
  29560. bottom: 44 / 2589
  29561. }
  29562. },
  29563. genitals: {
  29564. height: math.unit(1.5, "feet"),
  29565. name: "Genitals",
  29566. image: {
  29567. source: "./media/characters/epona/genitals.svg"
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Normal",
  29574. height: math.unit(7 + 7 / 12, "feet"),
  29575. default: true
  29576. },
  29577. ]
  29578. ))
  29579. characterMakers.push(() => makeCharacter(
  29580. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29581. {
  29582. front: {
  29583. height: math.unit(7, "feet"),
  29584. weight: math.unit(518, "lb"),
  29585. name: "Front",
  29586. image: {
  29587. source: "./media/characters/avia-bloodbourn/front.svg",
  29588. extra: 1466 / 1350,
  29589. bottom: 65 / 1527
  29590. }
  29591. },
  29592. },
  29593. [
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(9.35, "feet"),
  29601. weight: math.unit(600, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/amera/front.svg",
  29605. extra: 891 / 818,
  29606. bottom: 30 / 922.7
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(9.35, "feet"),
  29611. weight: math.unit(600, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/amera/back.svg",
  29615. extra: 876 / 824,
  29616. bottom: 6.8 / 884
  29617. }
  29618. },
  29619. dick: {
  29620. height: math.unit(2.14, "feet"),
  29621. name: "Dick",
  29622. image: {
  29623. source: "./media/characters/amera/dick.svg"
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(9.35, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29637. {
  29638. kneeling: {
  29639. height: math.unit(3 + 4 / 12, "feet"),
  29640. weight: math.unit(90, "lb"),
  29641. name: "Kneeling",
  29642. image: {
  29643. source: "./media/characters/rosewen/kneeling.svg",
  29644. extra: 1835 / 1571,
  29645. bottom: 27.7 / 1862
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(3 + 4 / 12, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(5 + 10 / 12, "feet"),
  29662. weight: math.unit(200, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/sabah/front.svg",
  29666. extra: 849 / 763,
  29667. bottom: 33.9 / 881
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(5 + 10 / 12, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29681. {
  29682. front: {
  29683. height: math.unit(3 + 5 / 12, "feet"),
  29684. weight: math.unit(40, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/purple-flame/front.svg",
  29688. extra: 1577 / 1412,
  29689. bottom: 97 / 1694
  29690. }
  29691. },
  29692. frontDressed: {
  29693. height: math.unit(3 + 5 / 12, "feet"),
  29694. weight: math.unit(40, "kg"),
  29695. name: "Front (Dressed)",
  29696. image: {
  29697. source: "./media/characters/purple-flame/front-dressed.svg",
  29698. extra: 1577 / 1412,
  29699. bottom: 97 / 1694
  29700. }
  29701. },
  29702. headphones: {
  29703. height: math.unit(0.85, "feet"),
  29704. name: "Headphones",
  29705. image: {
  29706. source: "./media/characters/purple-flame/headphones.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Really Small",
  29713. height: math.unit(5, "cm")
  29714. },
  29715. {
  29716. name: "Micro",
  29717. height: math.unit(1 + 5 / 12, "feet")
  29718. },
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(3 + 5 / 12, "feet"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Minimacro",
  29726. height: math.unit(125, "feet")
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(0.5, "miles")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(50, "miles")
  29735. },
  29736. {
  29737. name: "Gigantic",
  29738. height: math.unit(750, "miles")
  29739. },
  29740. {
  29741. name: "Planetary",
  29742. height: math.unit(15000, "miles")
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(14, "feet"),
  29751. weight: math.unit(959, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/arsenal/front.svg",
  29755. extra: 2357 / 2157,
  29756. bottom: 93 / 2458
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(14, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/adira/front.svg",
  29777. extra: 2121/2013,
  29778. bottom: 206/2327
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Micro",
  29785. height: math.unit(4, "inches"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(50, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(16, "feet"),
  29799. weight: math.unit(1000, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/grim/front.svg",
  29803. extra: 622 / 614,
  29804. bottom: 18.1 / 642
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(16, "feet"),
  29809. weight: math.unit(1000, "lb"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/grim/back.svg",
  29813. extra: 610.6 / 602,
  29814. bottom: 40.8 / 652
  29815. }
  29816. },
  29817. hunched: {
  29818. height: math.unit(9.75, "feet"),
  29819. weight: math.unit(1000, "lb"),
  29820. name: "Hunched",
  29821. image: {
  29822. source: "./media/characters/grim/hunched.svg",
  29823. extra: 304 / 297,
  29824. bottom: 35.4 / 394
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Normal",
  29831. height: math.unit(16, "feet"),
  29832. default: true
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(2.3, "meters"),
  29841. weight: math.unit(300, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/sinja/front-sfw.svg",
  29845. extra: 1393 / 1294,
  29846. bottom: 70 / 1463
  29847. }
  29848. },
  29849. frontNsfw: {
  29850. height: math.unit(2.3, "meters"),
  29851. weight: math.unit(300, "lb"),
  29852. name: "Front (NSFW)",
  29853. image: {
  29854. source: "./media/characters/sinja/front-nsfw.svg",
  29855. extra: 1393 / 1294,
  29856. bottom: 70 / 1463
  29857. }
  29858. },
  29859. back: {
  29860. height: math.unit(2.3, "meters"),
  29861. weight: math.unit(300, "lb"),
  29862. name: "Back",
  29863. image: {
  29864. source: "./media/characters/sinja/back.svg",
  29865. extra: 1393 / 1294,
  29866. bottom: 70 / 1463
  29867. }
  29868. },
  29869. head: {
  29870. height: math.unit(1.771, "feet"),
  29871. name: "Head",
  29872. image: {
  29873. source: "./media/characters/sinja/head.svg"
  29874. }
  29875. },
  29876. slit: {
  29877. height: math.unit(0.8, "feet"),
  29878. name: "Slit",
  29879. image: {
  29880. source: "./media/characters/sinja/slit.svg"
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(2.3, "meters")
  29888. },
  29889. {
  29890. name: "Macro",
  29891. height: math.unit(91, "meters"),
  29892. default: true
  29893. },
  29894. {
  29895. name: "Megamacro",
  29896. height: math.unit(91440, "meters")
  29897. },
  29898. {
  29899. name: "Gigamacro",
  29900. height: math.unit(60960000, "meters")
  29901. },
  29902. {
  29903. name: "Teramacro",
  29904. height: math.unit(9144000000, "meters")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(1.7, "meters"),
  29913. weight: math.unit(130, "lb"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/kyu/front.svg",
  29917. extra: 415 / 395,
  29918. bottom: 5 / 420
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(1.75, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/kyu/head.svg"
  29926. }
  29927. },
  29928. foot: {
  29929. height: math.unit(0.81, "feet"),
  29930. name: "Foot",
  29931. image: {
  29932. source: "./media/characters/kyu/foot.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(1.7, "meters")
  29940. },
  29941. {
  29942. name: "Macro",
  29943. height: math.unit(131, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Megamacro",
  29948. height: math.unit(91440, "meters")
  29949. },
  29950. {
  29951. name: "Gigamacro",
  29952. height: math.unit(60960000, "meters")
  29953. },
  29954. {
  29955. name: "Teramacro",
  29956. height: math.unit(9144000000, "meters")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(7 + 1 / 12, "feet"),
  29965. weight: math.unit(250, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/joey/front.svg",
  29969. extra: 1791 / 1537,
  29970. bottom: 28 / 1816
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Micro",
  29977. height: math.unit(3, "inches")
  29978. },
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(7 + 1 / 12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(165, "cm"),
  29991. weight: math.unit(140, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/sam-evans/front.svg",
  29995. extra: 3417 / 3230,
  29996. bottom: 41.3 / 3417
  29997. }
  29998. },
  29999. frontSixTails: {
  30000. height: math.unit(165, "cm"),
  30001. weight: math.unit(140, "lb"),
  30002. name: "Front-six-tails",
  30003. image: {
  30004. source: "./media/characters/sam-evans/front-six-tails.svg",
  30005. extra: 3417 / 3230,
  30006. bottom: 41.3 / 3417
  30007. }
  30008. },
  30009. back: {
  30010. height: math.unit(165, "cm"),
  30011. weight: math.unit(140, "lb"),
  30012. name: "Back",
  30013. image: {
  30014. source: "./media/characters/sam-evans/back.svg",
  30015. extra: 3227 / 3032,
  30016. bottom: 6.8 / 3234
  30017. }
  30018. },
  30019. face: {
  30020. height: math.unit(0.68, "feet"),
  30021. name: "Face",
  30022. image: {
  30023. source: "./media/characters/sam-evans/face.svg"
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(165, "cm"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(100, "meters")
  30036. },
  30037. {
  30038. name: "Macro+",
  30039. height: math.unit(800, "meters")
  30040. },
  30041. {
  30042. name: "Macro++",
  30043. height: math.unit(3, "km")
  30044. },
  30045. {
  30046. name: "Macro+++",
  30047. height: math.unit(30, "km")
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(10, "feet"),
  30056. weight: math.unit(750, "lb"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/juliet-a/front.svg",
  30060. extra: 1766 / 1720,
  30061. bottom: 43 / 1809
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(10, "feet"),
  30066. weight: math.unit(750, "lb"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/juliet-a/back.svg",
  30070. extra: 1781 / 1734,
  30071. bottom: 35 / 1810,
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(10, "feet"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Dragon Form",
  30083. height: math.unit(250, "feet")
  30084. },
  30085. {
  30086. name: "Macro",
  30087. height: math.unit(1000, "feet")
  30088. },
  30089. {
  30090. name: "Megamacro",
  30091. height: math.unit(10000, "feet")
  30092. }
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30097. {
  30098. regular: {
  30099. height: math.unit(7 + 3 / 12, "feet"),
  30100. weight: math.unit(260, "lb"),
  30101. name: "Regular",
  30102. image: {
  30103. source: "./media/characters/wild/regular.svg",
  30104. extra: 97.45 / 92,
  30105. bottom: 6.8 / 104.3
  30106. }
  30107. },
  30108. biggums: {
  30109. height: math.unit(8 + 6 / 12, "feet"),
  30110. weight: math.unit(425, "lb"),
  30111. name: "Biggums",
  30112. image: {
  30113. source: "./media/characters/wild/biggums.svg",
  30114. extra: 97.45 / 92,
  30115. bottom: 7.5 / 132.34
  30116. }
  30117. },
  30118. mawRegular: {
  30119. height: math.unit(1.24, "feet"),
  30120. name: "Maw (Regular)",
  30121. image: {
  30122. source: "./media/characters/wild/maw.svg"
  30123. }
  30124. },
  30125. mawBiggums: {
  30126. height: math.unit(1.47, "feet"),
  30127. name: "Maw (Biggums)",
  30128. image: {
  30129. source: "./media/characters/wild/maw.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Normal",
  30136. height: math.unit(7 + 3 / 12, "feet"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30143. {
  30144. front: {
  30145. height: math.unit(2.5, "meters"),
  30146. weight: math.unit(200, "kg"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/vidar/front.svg",
  30150. extra: 2994 / 2795,
  30151. bottom: 56 / 3061
  30152. }
  30153. },
  30154. back: {
  30155. height: math.unit(2.5, "meters"),
  30156. weight: math.unit(200, "kg"),
  30157. name: "Back",
  30158. image: {
  30159. source: "./media/characters/vidar/back.svg",
  30160. extra: 3131 / 2928,
  30161. bottom: 13.5 / 3141.5
  30162. }
  30163. },
  30164. feral: {
  30165. height: math.unit(2.5, "meters"),
  30166. weight: math.unit(2000, "kg"),
  30167. name: "Feral",
  30168. image: {
  30169. source: "./media/characters/vidar/feral.svg",
  30170. extra: 2790 / 1765,
  30171. bottom: 6 / 2796
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Normal",
  30178. height: math.unit(2.5, "meters"),
  30179. default: true
  30180. },
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(100, "meters")
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30189. {
  30190. front: {
  30191. height: math.unit(5 + 9 / 12, "feet"),
  30192. weight: math.unit(120, "lb"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/ash/front.svg",
  30196. extra: 2189 / 1961,
  30197. bottom: 5.2 / 2194
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(5 + 9 / 12, "feet"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(9, "feet"),
  30214. weight: math.unit(10000, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/gygabite/front.svg",
  30218. bottom: 31.7 / 537.8,
  30219. extra: 505 / 370
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(9, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(12, "feet"),
  30236. weight: math.unit(4000, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/p0tat0/front.svg",
  30240. extra: 1065 / 921,
  30241. bottom: 55.7 / 1121.25
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(12, "feet"),
  30249. default: true
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30255. {
  30256. side: {
  30257. height: math.unit(6.5, "feet"),
  30258. weight: math.unit(800, "lb"),
  30259. name: "Side",
  30260. image: {
  30261. source: "./media/characters/dusk/side.svg",
  30262. extra: 615 / 373,
  30263. bottom: 53 / 664
  30264. }
  30265. },
  30266. sitting: {
  30267. height: math.unit(7, "feet"),
  30268. weight: math.unit(800, "lb"),
  30269. name: "Sitting",
  30270. image: {
  30271. source: "./media/characters/dusk/sitting.svg",
  30272. extra: 753 / 425,
  30273. bottom: 33 / 774
  30274. }
  30275. },
  30276. head: {
  30277. height: math.unit(6.1, "feet"),
  30278. name: "Head",
  30279. image: {
  30280. source: "./media/characters/dusk/head.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(7, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(15, "feet"),
  30297. weight: math.unit(7000, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/jay-direwolf/front.svg",
  30301. extra: 1810 / 1732,
  30302. bottom: 66 / 1892
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(15, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(4 + 9 / 12, "feet"),
  30319. weight: math.unit(130, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/anchovie/front.svg",
  30323. extra: 382 / 350,
  30324. bottom: 25 / 409
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(4 + 9 / 12, "feet"),
  30329. weight: math.unit(130, "lb"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/anchovie/back.svg",
  30333. extra: 385 / 352,
  30334. bottom: 16.6 / 402
  30335. }
  30336. },
  30337. frontDressed: {
  30338. height: math.unit(4 + 9 / 12, "feet"),
  30339. weight: math.unit(130, "lb"),
  30340. name: "Front (Dressed)",
  30341. image: {
  30342. source: "./media/characters/anchovie/front-dressed.svg",
  30343. extra: 382 / 350,
  30344. bottom: 25 / 409
  30345. }
  30346. },
  30347. backDressed: {
  30348. height: math.unit(4 + 9 / 12, "feet"),
  30349. weight: math.unit(130, "lb"),
  30350. name: "Back (Dressed)",
  30351. image: {
  30352. source: "./media/characters/anchovie/back-dressed.svg",
  30353. extra: 385 / 352,
  30354. bottom: 16.6 / 402
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Micro",
  30361. height: math.unit(6.4, "inches")
  30362. },
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(4 + 9 / 12, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(2, "meters"),
  30375. weight: math.unit(180, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/acidrenamon/front.svg",
  30379. extra: 987 / 890,
  30380. bottom: 22.8 / 1009
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(2, "meters"),
  30385. weight: math.unit(180, "lb"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/acidrenamon/back.svg",
  30389. extra: 983 / 891,
  30390. bottom: 8.4 / 992
  30391. }
  30392. },
  30393. head: {
  30394. height: math.unit(1.92, "feet"),
  30395. name: "Head",
  30396. image: {
  30397. source: "./media/characters/acidrenamon/head.svg"
  30398. }
  30399. },
  30400. rump: {
  30401. height: math.unit(1.72, "feet"),
  30402. name: "Rump",
  30403. image: {
  30404. source: "./media/characters/acidrenamon/rump.svg"
  30405. }
  30406. },
  30407. tail: {
  30408. height: math.unit(4.2, "feet"),
  30409. name: "Tail",
  30410. image: {
  30411. source: "./media/characters/acidrenamon/tail.svg"
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(2, "meters"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "Minimacro",
  30423. height: math.unit(7, "meters")
  30424. },
  30425. {
  30426. name: "Macro",
  30427. height: math.unit(200, "meters")
  30428. },
  30429. {
  30430. name: "Gigamacro",
  30431. height: math.unit(0.2, "earths")
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(152, "feet"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/kenzie-lee/front.svg",
  30443. extra: 1869/1774,
  30444. bottom: 128/1997
  30445. }
  30446. },
  30447. side: {
  30448. height: math.unit(86, "feet"),
  30449. name: "Side",
  30450. image: {
  30451. source: "./media/characters/kenzie-lee/side.svg",
  30452. extra: 930/815,
  30453. bottom: 177/1107
  30454. }
  30455. },
  30456. paw: {
  30457. height: math.unit(15, "feet"),
  30458. name: "Paw",
  30459. image: {
  30460. source: "./media/characters/kenzie-lee/paw.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Kenzie Flea",
  30467. height: math.unit(2, "mm"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Micro",
  30472. height: math.unit(2, "inches")
  30473. },
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(152, "feet")
  30477. },
  30478. {
  30479. name: "Megamacro",
  30480. height: math.unit(7, "miles")
  30481. },
  30482. {
  30483. name: "Gigamacro",
  30484. height: math.unit(8000, "miles")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "feet"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/withers/front.svg",
  30496. extra: 1935/1760,
  30497. bottom: 72/2007
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(6, "feet"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/withers/back.svg",
  30505. extra: 1944/1792,
  30506. bottom: 12/1956
  30507. }
  30508. },
  30509. dressed: {
  30510. height: math.unit(6, "feet"),
  30511. name: "Dressed",
  30512. image: {
  30513. source: "./media/characters/withers/dressed.svg",
  30514. extra: 1937/1765,
  30515. bottom: 73/2010
  30516. }
  30517. },
  30518. phase1: {
  30519. height: math.unit(1.1, "feet"),
  30520. name: "Phase 1",
  30521. image: {
  30522. source: "./media/characters/withers/phase-1.svg",
  30523. extra: 1885/1232,
  30524. bottom: 0/1885
  30525. }
  30526. },
  30527. phase2: {
  30528. height: math.unit(1.05, "feet"),
  30529. name: "Phase 2",
  30530. image: {
  30531. source: "./media/characters/withers/phase-2.svg",
  30532. extra: 1792/1090,
  30533. bottom: 0/1792
  30534. }
  30535. },
  30536. partyWipe: {
  30537. height: math.unit(1.1, "feet"),
  30538. name: "Party Wipe",
  30539. image: {
  30540. source: "./media/characters/withers/party-wipe.svg",
  30541. extra: 1864/1207,
  30542. bottom: 0/1864
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Macro",
  30549. height: math.unit(167, "feet"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Megamacro",
  30554. height: math.unit(15, "miles")
  30555. }
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(6 + 7 / 12, "feet"),
  30563. weight: math.unit(250, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/nemoskii/front.svg",
  30567. extra: 2270 / 1734,
  30568. bottom: 86 / 2354
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6 + 7 / 12, "feet"),
  30573. weight: math.unit(250, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/nemoskii/back.svg",
  30577. extra: 1845 / 1788,
  30578. bottom: 10.5 / 1852
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(1.31, "feet"),
  30583. name: "Head",
  30584. image: {
  30585. source: "./media/characters/nemoskii/head.svg"
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Micro",
  30592. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30593. },
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(6 + 7 / 12, "feet"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit((6 + 7 / 12) * 150, "feet")
  30602. },
  30603. {
  30604. name: "Macro+",
  30605. height: math.unit((6 + 7 / 12) * 500, "feet")
  30606. },
  30607. {
  30608. name: "Megamacro",
  30609. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(1, "mile"),
  30618. weight: math.unit(265261.9, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/shui/front.svg",
  30622. extra: 1633 / 1564,
  30623. bottom: 91.5 / 1726
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(1, "mile"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(12 + 6 / 12, "feet"),
  30640. weight: math.unit(1342, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/arokh-takakura/front.svg",
  30644. extra: 1089 / 1043,
  30645. bottom: 77.4 / 1176.7
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(12 + 6 / 12, "feet"),
  30650. weight: math.unit(1342, "lb"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/arokh-takakura/back.svg",
  30654. extra: 1046 / 1019,
  30655. bottom: 102 / 1150
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Big",
  30662. height: math.unit(12 + 6 / 12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(5 + 6 / 12, "feet"),
  30672. weight: math.unit(150, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/theo/front.svg",
  30676. extra: 1184 / 1131,
  30677. bottom: 7.4 / 1191
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Micro",
  30684. height: math.unit(5, "inches")
  30685. },
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5 + 6 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(5 + 9 / 12, "feet"),
  30698. weight: math.unit(130, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/cecelia-swift/front.svg",
  30702. extra: 502 / 484,
  30703. bottom: 23 / 523
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(5 + 9 / 12, "feet"),
  30708. weight: math.unit(130, "lb"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/cecelia-swift/back.svg",
  30712. extra: 499 / 485,
  30713. bottom: 12 / 511
  30714. }
  30715. },
  30716. head: {
  30717. height: math.unit(0.90, "feet"),
  30718. name: "Head",
  30719. image: {
  30720. source: "./media/characters/cecelia-swift/head.svg"
  30721. }
  30722. },
  30723. rump: {
  30724. height: math.unit(1.75, "feet"),
  30725. name: "Rump",
  30726. image: {
  30727. source: "./media/characters/cecelia-swift/rump.svg"
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Normal",
  30734. height: math.unit(5 + 9 / 12, "feet"),
  30735. default: true
  30736. },
  30737. {
  30738. name: "Big",
  30739. height: math.unit(50, "feet")
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(100, "feet")
  30744. },
  30745. {
  30746. name: "Macro+",
  30747. height: math.unit(500, "feet")
  30748. },
  30749. {
  30750. name: "Macro++",
  30751. height: math.unit(1000, "feet")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(6, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/kaunan/front.svg",
  30764. extra: 2890 / 2523,
  30765. bottom: 49 / 2939
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Macro",
  30772. height: math.unit(150, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30779. {
  30780. dressed: {
  30781. height: math.unit(175, "cm"),
  30782. weight: math.unit(60, "kg"),
  30783. name: "Dressed",
  30784. image: {
  30785. source: "./media/characters/fei/dressed.svg",
  30786. extra: 1402/1278,
  30787. bottom: 27/1429
  30788. }
  30789. },
  30790. nude: {
  30791. height: math.unit(175, "cm"),
  30792. weight: math.unit(60, "kg"),
  30793. name: "Nude",
  30794. image: {
  30795. source: "./media/characters/fei/nude.svg",
  30796. extra: 1402/1278,
  30797. bottom: 27/1429
  30798. }
  30799. },
  30800. heels: {
  30801. height: math.unit(0.466, "feet"),
  30802. name: "Heels",
  30803. image: {
  30804. source: "./media/characters/fei/heels.svg",
  30805. extra: 156/152,
  30806. bottom: 28/184
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Mortal",
  30813. height: math.unit(175, "cm")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(3500, "m")
  30818. },
  30819. {
  30820. name: "Stroll",
  30821. height: math.unit(18.4, "km"),
  30822. default: true
  30823. },
  30824. {
  30825. name: "Showoff",
  30826. height: math.unit(175, "km")
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(7, "feet"),
  30835. weight: math.unit(1000, "kg"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/edrax/front.svg",
  30839. extra: 2838 / 2550,
  30840. bottom: 130 / 2968
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Small",
  30847. height: math.unit(7, "feet")
  30848. },
  30849. {
  30850. name: "Normal",
  30851. height: math.unit(1500, "meters")
  30852. },
  30853. {
  30854. name: "Mega",
  30855. height: math.unit(12000000, "km"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Megamacro",
  30860. height: math.unit(10600000, "lightyears")
  30861. },
  30862. {
  30863. name: "Hypermacro",
  30864. height: math.unit(256, "yottameters")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(10, "feet"),
  30873. weight: math.unit(750, "lb"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/clove/front.svg",
  30877. extra: 1918/1751,
  30878. bottom: 52/1970
  30879. }
  30880. },
  30881. back: {
  30882. height: math.unit(10, "feet"),
  30883. weight: math.unit(750, "lb"),
  30884. name: "Back",
  30885. image: {
  30886. source: "./media/characters/clove/back.svg",
  30887. extra: 1912/1747,
  30888. bottom: 50/1962
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(10, "feet"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(4, "feet"),
  30905. weight: math.unit(50, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/alex-rabbit/front.svg",
  30909. extra: 507 / 458,
  30910. bottom: 18.5 / 527
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(4, "feet"),
  30915. weight: math.unit(50, "lb"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/alex-rabbit/back.svg",
  30919. extra: 502 / 460,
  30920. bottom: 18.9 / 521
  30921. }
  30922. },
  30923. },
  30924. [
  30925. {
  30926. name: "Normal",
  30927. height: math.unit(4, "feet"),
  30928. default: true
  30929. },
  30930. ]
  30931. ))
  30932. characterMakers.push(() => makeCharacter(
  30933. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30934. {
  30935. front: {
  30936. height: math.unit(1 + 3 / 12, "feet"),
  30937. weight: math.unit(80, "lb"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/zander-rose/front.svg",
  30941. extra: 916 / 797,
  30942. bottom: 17 / 933
  30943. }
  30944. },
  30945. back: {
  30946. height: math.unit(1 + 3 / 12, "feet"),
  30947. weight: math.unit(80, "lb"),
  30948. name: "Back",
  30949. image: {
  30950. source: "./media/characters/zander-rose/back.svg",
  30951. extra: 903 / 779,
  30952. bottom: 31 / 934
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(1 + 3 / 12, "feet"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30966. {
  30967. anthro: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Anthro",
  30971. image: {
  30972. source: "./media/characters/razz/anthro.svg",
  30973. extra: 1437 / 1343,
  30974. bottom: 48 / 1485
  30975. }
  30976. },
  30977. feral: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Feral",
  30981. image: {
  30982. source: "./media/characters/razz/feral.svg",
  30983. extra: 2569 / 1385,
  30984. bottom: 95 / 2664
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(6, "feet"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(9 + 4 / 12, "feet"),
  31001. weight: math.unit(500, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/morrigan/front.svg",
  31005. extra: 2707 / 2579,
  31006. bottom: 156 / 2863
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(9 + 4 / 12, "feet"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(5, "stories"),
  31023. weight: math.unit(4000, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/jenene/front.svg",
  31027. extra: 1780 / 1710,
  31028. bottom: 57 / 1837
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(5, "stories"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31042. {
  31043. taurSfw: {
  31044. height: math.unit(10, "meters"),
  31045. weight: math.unit(17500, "kg"),
  31046. name: "Taur",
  31047. image: {
  31048. source: "./media/characters/faey/taur-sfw.svg",
  31049. extra: 1200 / 968,
  31050. bottom: 41 / 1241
  31051. }
  31052. },
  31053. chestmaw: {
  31054. height: math.unit(2.01, "meters"),
  31055. name: "Chestmaw",
  31056. image: {
  31057. source: "./media/characters/faey/chestmaw.svg"
  31058. }
  31059. },
  31060. foot: {
  31061. height: math.unit(2.43, "meters"),
  31062. name: "Foot",
  31063. image: {
  31064. source: "./media/characters/faey/foot.svg"
  31065. }
  31066. },
  31067. jaws: {
  31068. height: math.unit(1.66, "meters"),
  31069. name: "Jaws",
  31070. image: {
  31071. source: "./media/characters/faey/jaws.svg"
  31072. }
  31073. },
  31074. tongues: {
  31075. height: math.unit(2.01, "meters"),
  31076. name: "Tongues",
  31077. image: {
  31078. source: "./media/characters/faey/tongues.svg"
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Small",
  31085. height: math.unit(10, "meters"),
  31086. default: true
  31087. },
  31088. {
  31089. name: "Big",
  31090. height: math.unit(500000, "km")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(7, "feet"),
  31099. weight: math.unit(275, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/roku/front.svg",
  31103. extra: 903 / 878,
  31104. bottom: 37 / 940
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(7, "feet"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Macro",
  31116. height: math.unit(500, "feet")
  31117. },
  31118. {
  31119. name: "Megamacro",
  31120. height: math.unit(200, "miles")
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(6 + 2 / 12, "feet"),
  31129. weight: math.unit(150, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/lira/front.svg",
  31133. extra: 1727 / 1605,
  31134. bottom: 26 / 1753
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(6 + 2 / 12, "feet"),
  31139. weight: math.unit(150, "lb"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/lira/back.svg",
  31143. extra: 1713/1621,
  31144. bottom: 20/1733
  31145. }
  31146. },
  31147. hand: {
  31148. height: math.unit(0.75, "feet"),
  31149. name: "Hand",
  31150. image: {
  31151. source: "./media/characters/lira/hand.svg"
  31152. }
  31153. },
  31154. maw: {
  31155. height: math.unit(0.65, "feet"),
  31156. name: "Maw",
  31157. image: {
  31158. source: "./media/characters/lira/maw.svg"
  31159. }
  31160. },
  31161. pawDigi: {
  31162. height: math.unit(1.6, "feet"),
  31163. name: "Paw Digi",
  31164. image: {
  31165. source: "./media/characters/lira/paw-digi.svg"
  31166. }
  31167. },
  31168. pawPlanti: {
  31169. height: math.unit(1.4, "feet"),
  31170. name: "Paw Planti",
  31171. image: {
  31172. source: "./media/characters/lira/paw-planti.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(6 + 2 / 12, "feet"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(100, "feet")
  31185. },
  31186. {
  31187. name: "Macro²",
  31188. height: math.unit(1600, "feet")
  31189. },
  31190. {
  31191. name: "Planetary",
  31192. height: math.unit(20, "earths")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(150, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/hadjet/front.svg",
  31205. extra: 1480 / 1346,
  31206. bottom: 26 / 1506
  31207. }
  31208. },
  31209. frontNsfw: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(150, "lb"),
  31212. name: "Front (NSFW)",
  31213. image: {
  31214. source: "./media/characters/hadjet/front-nsfw.svg",
  31215. extra: 1440 / 1358,
  31216. bottom: 52 / 1492
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Macro",
  31223. height: math.unit(10, "stories"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Megamacro",
  31228. height: math.unit(1.5, "miles")
  31229. },
  31230. {
  31231. name: "Megamacro+",
  31232. height: math.unit(5, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31238. {
  31239. side: {
  31240. height: math.unit(106, "feet"),
  31241. weight: math.unit(500, "tonnes"),
  31242. name: "Side",
  31243. image: {
  31244. source: "./media/characters/kodran/side.svg",
  31245. extra: 553 / 480,
  31246. bottom: 33 / 586
  31247. }
  31248. },
  31249. front: {
  31250. height: math.unit(132, "feet"),
  31251. weight: math.unit(500, "tonnes"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/kodran/front.svg",
  31255. extra: 667 / 643,
  31256. bottom: 42 / 709
  31257. }
  31258. },
  31259. flying: {
  31260. height: math.unit(350, "feet"),
  31261. weight: math.unit(500, "tonnes"),
  31262. name: "Flying",
  31263. image: {
  31264. source: "./media/characters/kodran/flying.svg"
  31265. }
  31266. },
  31267. foot: {
  31268. height: math.unit(33, "feet"),
  31269. name: "Foot",
  31270. image: {
  31271. source: "./media/characters/kodran/foot.svg"
  31272. }
  31273. },
  31274. footFront: {
  31275. height: math.unit(19, "feet"),
  31276. name: "Foot (Front)",
  31277. image: {
  31278. source: "./media/characters/kodran/foot-front.svg",
  31279. extra: 261 / 261,
  31280. bottom: 91 / 352
  31281. }
  31282. },
  31283. headFront: {
  31284. height: math.unit(53, "feet"),
  31285. name: "Head (Front)",
  31286. image: {
  31287. source: "./media/characters/kodran/head-front.svg"
  31288. }
  31289. },
  31290. headSide: {
  31291. height: math.unit(65, "feet"),
  31292. name: "Head (Side)",
  31293. image: {
  31294. source: "./media/characters/kodran/head-side.svg"
  31295. }
  31296. },
  31297. throat: {
  31298. height: math.unit(79, "feet"),
  31299. name: "Throat",
  31300. image: {
  31301. source: "./media/characters/kodran/throat.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Large",
  31308. height: math.unit(106, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31315. {
  31316. side: {
  31317. height: math.unit(11, "feet"),
  31318. weight: math.unit(150, "lb"),
  31319. name: "Side",
  31320. image: {
  31321. source: "./media/characters/pyxaron/side.svg",
  31322. extra: 305 / 195,
  31323. bottom: 17 / 322
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(11, "feet"),
  31331. default: true
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/meep/front.svg",
  31344. extra: 88 / 80,
  31345. bottom: 6 / 94
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Fun Sized",
  31352. height: math.unit(2, "inches"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Friend Sized",
  31357. height: math.unit(8, "inches")
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(15, "feet"),
  31366. weight: math.unit(2500, "lb"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/holly-rabbit/front.svg",
  31370. extra: 1433 / 1233,
  31371. bottom: 125 / 1558
  31372. }
  31373. },
  31374. dick: {
  31375. height: math.unit(4.6, "feet"),
  31376. name: "Dick",
  31377. image: {
  31378. source: "./media/characters/holly-rabbit/dick.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(15, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(250, "feet")
  31391. },
  31392. {
  31393. name: "Macro+",
  31394. height: math.unit(2500, "feet")
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(3.02, "meters"),
  31403. weight: math.unit(500, "kg"),
  31404. name: "Front",
  31405. image: {
  31406. source: "./media/characters/drena/front.svg",
  31407. extra: 282 / 243,
  31408. bottom: 8 / 290
  31409. }
  31410. },
  31411. side: {
  31412. height: math.unit(3.02, "meters"),
  31413. weight: math.unit(500, "kg"),
  31414. name: "Side",
  31415. image: {
  31416. source: "./media/characters/drena/side.svg",
  31417. extra: 280 / 245,
  31418. bottom: 10 / 290
  31419. }
  31420. },
  31421. back: {
  31422. height: math.unit(3.02, "meters"),
  31423. weight: math.unit(500, "kg"),
  31424. name: "Back",
  31425. image: {
  31426. source: "./media/characters/drena/back.svg",
  31427. extra: 278 / 243,
  31428. bottom: 2 / 280
  31429. }
  31430. },
  31431. foot: {
  31432. height: math.unit(0.75, "meters"),
  31433. name: "Foot",
  31434. image: {
  31435. source: "./media/characters/drena/foot.svg"
  31436. }
  31437. },
  31438. maw: {
  31439. height: math.unit(0.82, "meters"),
  31440. name: "Maw",
  31441. image: {
  31442. source: "./media/characters/drena/maw.svg"
  31443. }
  31444. },
  31445. eating: {
  31446. height: math.unit(0.75, "meters"),
  31447. name: "Eating",
  31448. image: {
  31449. source: "./media/characters/drena/eating.svg"
  31450. }
  31451. },
  31452. rump: {
  31453. height: math.unit(0.93, "meters"),
  31454. name: "Rump",
  31455. image: {
  31456. source: "./media/characters/drena/rump.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(3.02, "meters"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6 + 4 / 12, "feet"),
  31473. weight: math.unit(250, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/remmyzilla/front.svg",
  31477. extra: 4033 / 3588,
  31478. bottom: 123 / 4156
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(6 + 4 / 12, "feet"),
  31483. weight: math.unit(250, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/remmyzilla/back.svg",
  31487. extra: 1696/1602,
  31488. bottom: 63/1759
  31489. }
  31490. },
  31491. paw: {
  31492. height: math.unit(1.73, "feet"),
  31493. name: "Paw",
  31494. image: {
  31495. source: "./media/characters/remmyzilla/paw.svg"
  31496. },
  31497. extraAttributes: {
  31498. "toeSize": {
  31499. name: "Toe Size",
  31500. power: 2,
  31501. type: "area",
  31502. base: math.unit(0.0035, "m^2")
  31503. },
  31504. "padSize": {
  31505. name: "Pad Size",
  31506. power: 2,
  31507. type: "area",
  31508. base: math.unit(0.015, "m^2")
  31509. },
  31510. "pawsize": {
  31511. name: "Paw Size",
  31512. power: 2,
  31513. type: "area",
  31514. base: math.unit(0.072, "m^2")
  31515. },
  31516. }
  31517. },
  31518. maw: {
  31519. height: math.unit(1.73, "feet"),
  31520. name: "Maw",
  31521. image: {
  31522. source: "./media/characters/remmyzilla/maw.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(6 + 4 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Minimacro",
  31533. height: math.unit(12 + 8 / 12, "feet")
  31534. },
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(640, "feet"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Megamacro",
  31542. height: math.unit(6400, "feet")
  31543. },
  31544. {
  31545. name: "Gigamacro",
  31546. height: math.unit(64000, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(2.5, "meters"),
  31555. weight: math.unit(300, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/lawrence/front.svg",
  31559. extra: 357 / 335,
  31560. bottom: 30 / 387
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(2.5, "meters"),
  31565. weight: math.unit(300, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/lawrence/back.svg",
  31569. extra: 357 / 338,
  31570. bottom: 16 / 373
  31571. }
  31572. },
  31573. head: {
  31574. height: math.unit(0.9, "meter"),
  31575. name: "Head",
  31576. image: {
  31577. source: "./media/characters/lawrence/head.svg"
  31578. }
  31579. },
  31580. maw: {
  31581. height: math.unit(0.7, "meter"),
  31582. name: "Maw",
  31583. image: {
  31584. source: "./media/characters/lawrence/maw.svg"
  31585. }
  31586. },
  31587. footBottom: {
  31588. height: math.unit(0.5, "meter"),
  31589. name: "Foot (Bottom)",
  31590. image: {
  31591. source: "./media/characters/lawrence/foot-bottom.svg"
  31592. }
  31593. },
  31594. footTop: {
  31595. height: math.unit(0.5, "meter"),
  31596. name: "Foot (Top)",
  31597. image: {
  31598. source: "./media/characters/lawrence/foot-top.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(2.5, "meters"),
  31606. default: true
  31607. },
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(95, "meters")
  31611. },
  31612. {
  31613. name: "Megamacro",
  31614. height: math.unit(150, "km")
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31620. {
  31621. front: {
  31622. height: math.unit(4.2, "meters"),
  31623. preyCapacity: math.unit(50, "m^3"),
  31624. weight: math.unit(30, "tonnes"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/sydney/front.svg",
  31628. extra: 1177/1129,
  31629. bottom: 197/1374
  31630. },
  31631. extraAttributes: {
  31632. "length": {
  31633. name: "Length",
  31634. power: 1,
  31635. type: "length",
  31636. base: math.unit(21, "meters")
  31637. },
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(4.2, "meters"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31651. {
  31652. back: {
  31653. height: math.unit(201, "feet"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/jessica/back.svg",
  31657. extra: 273 / 259,
  31658. bottom: 7 / 280
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(201, "feet"),
  31666. default: true
  31667. },
  31668. {
  31669. name: "Megamacro",
  31670. height: math.unit(8, "miles")
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31676. {
  31677. side: {
  31678. height: math.unit(5.6, "m"),
  31679. weight: math.unit(8000, "kg"),
  31680. name: "Side",
  31681. image: {
  31682. source: "./media/characters/victoria/side.svg",
  31683. extra: 1542/1229,
  31684. bottom: 124/1666
  31685. }
  31686. },
  31687. maw: {
  31688. height: math.unit(7.14, "feet"),
  31689. name: "Maw",
  31690. image: {
  31691. source: "./media/characters/victoria/maw.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(5.6, "m"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31705. {
  31706. front: {
  31707. height: math.unit(5 + 6 / 12, "feet"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/cat/cat-front.svg",
  31711. extra: 1422/1262,
  31712. bottom: 61/1483
  31713. },
  31714. form: "cat",
  31715. default: true
  31716. },
  31717. back: {
  31718. height: math.unit(5 + 6 / 12, "feet"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/cat/cat-back.svg",
  31722. extra: 1466/1301,
  31723. bottom: 19/1485
  31724. },
  31725. form: "cat"
  31726. },
  31727. taur: {
  31728. height: math.unit(7, "feet"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/cat/taur-side.svg",
  31732. extra: 1389/1233,
  31733. bottom: 83/1472
  31734. },
  31735. form: "taur",
  31736. default: true
  31737. },
  31738. lucarioFront: {
  31739. height: math.unit(4, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/cat/lucario-front.svg",
  31743. extra: 1149/1019,
  31744. bottom: 84/1233
  31745. },
  31746. form: "lucario",
  31747. default: true
  31748. },
  31749. lucarioBack: {
  31750. height: math.unit(4, "feet"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/cat/lucario-back.svg",
  31754. extra: 1190/1059,
  31755. bottom: 33/1223
  31756. },
  31757. form: "lucario"
  31758. },
  31759. riolu_front: {
  31760. height: math.unit(2 + 4/12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/cat/riolu-front.svg",
  31764. extra: 1104/956,
  31765. bottom: 70/1174
  31766. },
  31767. form: "riolu",
  31768. default: true
  31769. },
  31770. nickit: {
  31771. height: math.unit(2, "feet"),
  31772. name: "Side",
  31773. image: {
  31774. source: "./media/characters/cat/nickit-side.svg",
  31775. extra: 1087/852,
  31776. bottom: 67/1154
  31777. },
  31778. form: "nickit",
  31779. default: true
  31780. },
  31781. lopunnyFront: {
  31782. height: math.unit(5, "feet"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/cat/lopunny-front.svg",
  31786. extra: 1217/1078,
  31787. bottom: 23/1240
  31788. },
  31789. form: "lopunny",
  31790. default: true
  31791. },
  31792. lopunnyBack: {
  31793. height: math.unit(5, "feet"),
  31794. name: "Back",
  31795. image: {
  31796. source: "./media/characters/cat/lopunny-back.svg",
  31797. extra: 1205/1057,
  31798. bottom: 33/1238
  31799. },
  31800. form: "lopunny"
  31801. },
  31802. dog_front: {
  31803. height: math.unit(5 + 9/12, "feet"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/cat/dog-front.svg",
  31807. extra: 1403/1309,
  31808. bottom: 31/1434
  31809. },
  31810. form: "dog",
  31811. default: true
  31812. },
  31813. dog_back: {
  31814. height: math.unit(5 + 9/12, "feet"),
  31815. name: "Back",
  31816. image: {
  31817. source: "./media/characters/cat/dog-back.svg",
  31818. extra: 1393/1297,
  31819. bottom: 38/1431
  31820. },
  31821. form: "dog",
  31822. },
  31823. pikachu_front: {
  31824. height: math.unit(2.64, "feet"),
  31825. name: "Front",
  31826. image: {
  31827. source: "./media/characters/cat/pikachu-front.svg",
  31828. extra: 1224/958,
  31829. bottom: 34/1258
  31830. },
  31831. form: "pikachu",
  31832. default: true
  31833. },
  31834. pikachu_back: {
  31835. height: math.unit(2.64, "feet"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/cat/pikachu-back.svg",
  31839. extra: 1228/958,
  31840. bottom: 16/1244
  31841. },
  31842. form: "pikachu",
  31843. },
  31844. gigachuFront: {
  31845. height: math.unit(75, "feet"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/cat/gigachu-front.svg",
  31849. extra: 1239/1027,
  31850. bottom: 32/1271
  31851. },
  31852. form: "gigachu",
  31853. default: true
  31854. },
  31855. gigachuBack: {
  31856. height: math.unit(75, "feet"),
  31857. name: "Back",
  31858. image: {
  31859. source: "./media/characters/cat/gigachu-back.svg",
  31860. extra: 1229/1030,
  31861. bottom: 9/1238
  31862. },
  31863. form: "gigachu"
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Really small",
  31869. height: math.unit(1, "nm"),
  31870. allForms: true
  31871. },
  31872. {
  31873. name: "Micro",
  31874. height: math.unit(5, "inches"),
  31875. allForms: true
  31876. },
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(5 + 6 / 12, "feet"),
  31880. default: true,
  31881. form: "cat"
  31882. },
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(7, "feet"),
  31886. default: true,
  31887. form: "taur"
  31888. },
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(4, "feet"),
  31892. default: true,
  31893. form: "lucario"
  31894. },
  31895. {
  31896. name: "Normal",
  31897. height: math.unit(2, "feet"),
  31898. default: true,
  31899. form: "nickit"
  31900. },
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(5, "feet"),
  31904. default: true,
  31905. form: "lopunny"
  31906. },
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(2 + 4/12, "feet"),
  31910. default: true,
  31911. form: "riolu"
  31912. },
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(5 + 6 / 12, "feet"),
  31916. default: true,
  31917. form: "dog"
  31918. },
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(50, "feet"),
  31922. allForms: true
  31923. },
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(2.64, "feet"),
  31927. default: true,
  31928. form: "pikachu"
  31929. },
  31930. {
  31931. name: "Dynamax",
  31932. height: math.unit(75, "feet"),
  31933. form: "gigachu",
  31934. default: true
  31935. },
  31936. {
  31937. name: "Macro+",
  31938. height: math.unit(150, "feet"),
  31939. allForms: true
  31940. },
  31941. {
  31942. name: "Megamacro",
  31943. height: math.unit(100, "miles"),
  31944. allForms: true
  31945. },
  31946. ],
  31947. {
  31948. "cat": {
  31949. name: "Cat",
  31950. default: true
  31951. },
  31952. "taur": {
  31953. name: "Taur",
  31954. },
  31955. "lucario": {
  31956. name: "Lucario",
  31957. },
  31958. "riolu": {
  31959. name: "Riolu",
  31960. },
  31961. "nickit": {
  31962. name: "Nickit",
  31963. },
  31964. "lopunny": {
  31965. name: "Lopunny",
  31966. },
  31967. "dog": {
  31968. name: "Dog",
  31969. },
  31970. "pikachu": {
  31971. name: "Pikachu",
  31972. },
  31973. "gigachu": {
  31974. name: "Gigachu",
  31975. ignoreAllFormSizes: true
  31976. }
  31977. }
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(63.4, "meters"),
  31984. weight: math.unit(3.28349e+6, "kilograms"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/kirina-violet/front.svg",
  31988. extra: 2812 / 2725,
  31989. bottom: 0 / 2812
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(63.4, "meters"),
  31994. weight: math.unit(3.28349e+6, "kilograms"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/kirina-violet/back.svg",
  31998. extra: 2812 / 2725,
  31999. bottom: 0 / 2812
  32000. }
  32001. },
  32002. mouth: {
  32003. height: math.unit(4.35, "meters"),
  32004. name: "Mouth",
  32005. image: {
  32006. source: "./media/characters/kirina-violet/mouth.svg"
  32007. }
  32008. },
  32009. paw: {
  32010. height: math.unit(5.6, "meters"),
  32011. name: "Paw",
  32012. image: {
  32013. source: "./media/characters/kirina-violet/paw.svg"
  32014. }
  32015. },
  32016. tail: {
  32017. height: math.unit(18, "meters"),
  32018. name: "Tail",
  32019. image: {
  32020. source: "./media/characters/kirina-violet/tail.svg"
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(63.4, "meters"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(6, "feet"),
  32037. weight: math.unit(150, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/sfaiyan/front.svg",
  32041. extra: 999 / 978,
  32042. bottom: 5 / 1004
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(1.82, "meters")
  32050. },
  32051. {
  32052. name: "Giant",
  32053. height: math.unit(2.27, "km"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32060. {
  32061. front: {
  32062. height: math.unit(179, "cm"),
  32063. weight: math.unit(100, "kg"),
  32064. name: "Front",
  32065. image: {
  32066. source: "./media/characters/raunehkeli/front.svg",
  32067. extra: 1934 / 1926,
  32068. bottom: 0 / 1934
  32069. }
  32070. },
  32071. },
  32072. [
  32073. {
  32074. name: "Normal",
  32075. height: math.unit(179, "cm")
  32076. },
  32077. {
  32078. name: "Maximum",
  32079. height: math.unit(575, "meters"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32086. {
  32087. dressed: {
  32088. height: math.unit(6 + 2/12, "feet"),
  32089. weight: math.unit(150, "lb"),
  32090. name: "Dressed",
  32091. image: {
  32092. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32093. extra: 2620/2496,
  32094. bottom: 66/2686
  32095. }
  32096. },
  32097. nude: {
  32098. height: math.unit(6 + 2/12, "feet"),
  32099. weight: math.unit(150, "lb"),
  32100. name: "Nude",
  32101. image: {
  32102. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32103. extra: 2620/2496,
  32104. bottom: 66/2686
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(6 + 2 / 12, "feet")
  32112. },
  32113. {
  32114. name: "Max Height",
  32115. height: math.unit(1181, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(5 + 6 / 12, "feet"),
  32125. weight: math.unit(108, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/lilith-zott/front.svg",
  32129. extra: 2415/2133,
  32130. bottom: 193/2608
  32131. }
  32132. },
  32133. },
  32134. [
  32135. {
  32136. name: "Base Height",
  32137. height: math.unit(5 + 6 / 12, "feet")
  32138. },
  32139. {
  32140. name: "Preferred Height",
  32141. height: math.unit(200, "feet")
  32142. },
  32143. {
  32144. name: "Max Height",
  32145. height: math.unit(1030, "feet"),
  32146. default: true
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32152. {
  32153. super: {
  32154. height: math.unit(6 + 2/12, "feet"),
  32155. weight: math.unit(150, "lb"),
  32156. name: "Super",
  32157. image: {
  32158. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32159. extra: 2555/2387,
  32160. bottom: 50/2605
  32161. }
  32162. },
  32163. casual: {
  32164. height: math.unit(6 + 2/12, "feet"),
  32165. weight: math.unit(150, "lb"),
  32166. name: "Casual",
  32167. image: {
  32168. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32169. extra: 2555/2387,
  32170. bottom: 50/2605
  32171. }
  32172. },
  32173. hand: {
  32174. height: math.unit(1.08, "feet"),
  32175. name: "Hand",
  32176. image: {
  32177. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32178. }
  32179. },
  32180. paw: {
  32181. height: math.unit(1.33, "feet"),
  32182. name: "Paw",
  32183. image: {
  32184. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(6 + 2/12, "feet")
  32192. },
  32193. {
  32194. name: "Preferred Height",
  32195. height: math.unit(220, "feet")
  32196. },
  32197. {
  32198. name: "Max Height",
  32199. height: math.unit(1100, "feet"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32206. {
  32207. front: {
  32208. height: math.unit(100, "miles"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/sona/front.svg",
  32212. extra: 2433 / 2201,
  32213. bottom: 53 / 2486
  32214. }
  32215. },
  32216. foot: {
  32217. height: math.unit(16.1, "miles"),
  32218. name: "Foot",
  32219. image: {
  32220. source: "./media/characters/sona/foot.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Macro",
  32227. height: math.unit(100, "miles"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(6, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/bailey/front.svg",
  32241. extra: 1778 / 1724,
  32242. bottom: 30 / 1808
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Micro",
  32249. height: math.unit(4, "inches")
  32250. },
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(5 + 5 / 12, "feet"),
  32254. default: true
  32255. },
  32256. {
  32257. name: "Macro",
  32258. height: math.unit(250, "feet")
  32259. },
  32260. {
  32261. name: "Megamacro",
  32262. height: math.unit(100, "miles")
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(5 + 2 / 12, "feet"),
  32271. weight: math.unit(120, "lb"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/snaps/front.svg",
  32275. extra: 2370 / 2177,
  32276. bottom: 48 / 2418
  32277. }
  32278. },
  32279. back: {
  32280. height: math.unit(5 + 2 / 12, "feet"),
  32281. weight: math.unit(120, "lb"),
  32282. name: "Back",
  32283. image: {
  32284. source: "./media/characters/snaps/back.svg",
  32285. extra: 2408 / 2258,
  32286. bottom: 15 / 2423
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Micro",
  32293. height: math.unit(9, "inches")
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(5 + 2 / 12, "feet"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Mini Macro",
  32302. height: math.unit(10, "feet")
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(1.8, "meters"),
  32311. weight: math.unit(85, "kg"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/azteck/front.svg",
  32315. extra: 2815 / 2625,
  32316. bottom: 89 / 2904
  32317. }
  32318. },
  32319. back: {
  32320. height: math.unit(1.8, "meters"),
  32321. weight: math.unit(85, "kg"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/azteck/back.svg",
  32325. extra: 2856 / 2648,
  32326. bottom: 85 / 2941
  32327. }
  32328. },
  32329. frontDressed: {
  32330. height: math.unit(1.8, "meters"),
  32331. weight: math.unit(85, "kg"),
  32332. name: "Front (Dressed)",
  32333. image: {
  32334. source: "./media/characters/azteck/front-dressed.svg",
  32335. extra: 2147 / 2003,
  32336. bottom: 68 / 2215
  32337. }
  32338. },
  32339. head: {
  32340. height: math.unit(0.47, "meters"),
  32341. weight: math.unit(85, "kg"),
  32342. name: "Head",
  32343. image: {
  32344. source: "./media/characters/azteck/head.svg"
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Bite sized",
  32351. height: math.unit(16, "cm")
  32352. },
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(1.8, "meters"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(150, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/pidge/front.svg",
  32369. extra: 1936/1820,
  32370. bottom: 0/1936
  32371. }
  32372. },
  32373. back: {
  32374. height: math.unit(6, "feet"),
  32375. weight: math.unit(150, "lb"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/pidge/back.svg",
  32379. extra: 1938/1843,
  32380. bottom: 0/1938
  32381. }
  32382. },
  32383. casual: {
  32384. height: math.unit(6, "feet"),
  32385. weight: math.unit(150, "lb"),
  32386. name: "Casual",
  32387. image: {
  32388. source: "./media/characters/pidge/casual.svg",
  32389. extra: 1936/1820,
  32390. bottom: 0/1936
  32391. }
  32392. },
  32393. tech: {
  32394. height: math.unit(6, "feet"),
  32395. weight: math.unit(150, "lb"),
  32396. name: "Tech",
  32397. image: {
  32398. source: "./media/characters/pidge/tech.svg",
  32399. extra: 1802/1682,
  32400. bottom: 0/1802
  32401. }
  32402. },
  32403. head: {
  32404. height: math.unit(1.61, "feet"),
  32405. name: "Head",
  32406. image: {
  32407. source: "./media/characters/pidge/head.svg"
  32408. }
  32409. },
  32410. collar: {
  32411. height: math.unit(0.82, "feet"),
  32412. name: "Collar",
  32413. image: {
  32414. source: "./media/characters/pidge/collar.svg"
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Macro",
  32421. height: math.unit(2, "mile"),
  32422. default: true
  32423. },
  32424. {
  32425. name: "PUPPY",
  32426. height: math.unit(20, "miles")
  32427. },
  32428. ]
  32429. ))
  32430. characterMakers.push(() => makeCharacter(
  32431. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32432. {
  32433. front: {
  32434. height: math.unit(6, "feet"),
  32435. weight: math.unit(150, "lb"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/en/front.svg",
  32439. extra: 1697 / 1563,
  32440. bottom: 103 / 1800
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(6, "feet"),
  32445. weight: math.unit(150, "lb"),
  32446. name: "Back",
  32447. image: {
  32448. source: "./media/characters/en/back.svg",
  32449. extra: 1700 / 1570,
  32450. bottom: 51 / 1751
  32451. }
  32452. },
  32453. frontDressed: {
  32454. height: math.unit(6, "feet"),
  32455. weight: math.unit(150, "lb"),
  32456. name: "Front (Dressed)",
  32457. image: {
  32458. source: "./media/characters/en/front-dressed.svg",
  32459. extra: 1697 / 1563,
  32460. bottom: 103 / 1800
  32461. }
  32462. },
  32463. backDressed: {
  32464. height: math.unit(6, "feet"),
  32465. weight: math.unit(150, "lb"),
  32466. name: "Back (Dressed)",
  32467. image: {
  32468. source: "./media/characters/en/back-dressed.svg",
  32469. extra: 1700 / 1570,
  32470. bottom: 51 / 1751
  32471. }
  32472. },
  32473. },
  32474. [
  32475. {
  32476. name: "Macro",
  32477. height: math.unit(210, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(150, "lb"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/haze-orris/front.svg",
  32491. extra: 3975 / 3525,
  32492. bottom: 137 / 4112
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Micro",
  32499. height: math.unit(150, "mm"),
  32500. default: true
  32501. },
  32502. ]
  32503. ))
  32504. characterMakers.push(() => makeCharacter(
  32505. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32506. {
  32507. front: {
  32508. height: math.unit(6, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Front",
  32511. image: {
  32512. source: "./media/characters/casselene-yaro/front.svg",
  32513. extra: 4721 / 4541,
  32514. bottom: 82 / 4803
  32515. }
  32516. },
  32517. back: {
  32518. height: math.unit(6, "feet"),
  32519. weight: math.unit(150, "lb"),
  32520. name: "Back",
  32521. image: {
  32522. source: "./media/characters/casselene-yaro/back.svg",
  32523. extra: 4569 / 4377,
  32524. bottom: 69 / 4638
  32525. }
  32526. },
  32527. dressed: {
  32528. height: math.unit(6, "feet"),
  32529. weight: math.unit(150, "lb"),
  32530. name: "Dressed",
  32531. image: {
  32532. source: "./media/characters/casselene-yaro/dressed.svg",
  32533. extra: 4721 / 4541,
  32534. bottom: 82 / 4803
  32535. }
  32536. },
  32537. maw: {
  32538. height: math.unit(1, "feet"),
  32539. name: "Maw",
  32540. image: {
  32541. source: "./media/characters/casselene-yaro/maw.svg"
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Macro",
  32548. height: math.unit(190, "feet"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(10, "feet"),
  32558. weight: math.unit(15015, "lb"),
  32559. name: "Front",
  32560. image: {
  32561. source: "./media/characters/platine/front.svg",
  32562. extra: 1741/1650,
  32563. bottom: 84/1825
  32564. }
  32565. },
  32566. side: {
  32567. height: math.unit(10, "feet"),
  32568. weight: math.unit(15015, "lb"),
  32569. name: "Side",
  32570. image: {
  32571. source: "./media/characters/platine/side.svg",
  32572. extra: 1790/1705,
  32573. bottom: 29/1819
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(10, "feet"),
  32581. default: true
  32582. },
  32583. {
  32584. name: "Macro",
  32585. height: math.unit(100, "feet")
  32586. },
  32587. {
  32588. name: "Megamacro",
  32589. height: math.unit(1000, "feet")
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(15 + 5 / 12, "feet"),
  32598. weight: math.unit(4600, "lb"),
  32599. name: "Front",
  32600. image: {
  32601. source: "./media/characters/neapolitan-ananassa/front.svg",
  32602. extra: 2903 / 2736,
  32603. bottom: 0 / 2903
  32604. }
  32605. },
  32606. side: {
  32607. height: math.unit(15 + 5 / 12, "feet"),
  32608. weight: math.unit(4600, "lb"),
  32609. name: "Side",
  32610. image: {
  32611. source: "./media/characters/neapolitan-ananassa/side.svg",
  32612. extra: 2925 / 2719,
  32613. bottom: 0 / 2925
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(15 + 5 / 12, "feet"),
  32618. weight: math.unit(4600, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/neapolitan-ananassa/back.svg",
  32622. extra: 2903 / 2736,
  32623. bottom: 0 / 2903
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(15 + 5 / 12, "feet"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Post-Millenium",
  32635. height: math.unit(35 + 5 / 12, "feet")
  32636. },
  32637. {
  32638. name: "Post-Era",
  32639. height: math.unit(450 + 5 / 12, "feet")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(300, "meters"),
  32648. weight: math.unit(125000, "tonnes"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/pazuzu/front.svg",
  32652. extra: 877 / 794,
  32653. bottom: 47 / 924
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Macro",
  32660. height: math.unit(300, "meters"),
  32661. default: true
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32667. {
  32668. side: {
  32669. height: math.unit(10 + 7 / 12, "feet"),
  32670. weight: math.unit(2.5, "tons"),
  32671. name: "Side",
  32672. image: {
  32673. source: "./media/characters/aasha/side.svg",
  32674. extra: 1345 / 1245,
  32675. bottom: 111 / 1456
  32676. }
  32677. },
  32678. back: {
  32679. height: math.unit(10 + 7 / 12, "feet"),
  32680. weight: math.unit(2.5, "tons"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/aasha/back.svg",
  32684. extra: 1133 / 1057,
  32685. bottom: 257 / 1390
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(10 + 7 / 12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(6 + 3 / 12, "feet"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/nevan/front.svg",
  32705. extra: 704 / 704,
  32706. bottom: 28 / 732
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(6 + 3 / 12, "feet"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/nevan/back.svg",
  32714. extra: 714 / 714,
  32715. bottom: 21 / 735
  32716. }
  32717. },
  32718. frontFlaccid: {
  32719. height: math.unit(6 + 3 / 12, "feet"),
  32720. name: "Front (Flaccid)",
  32721. image: {
  32722. source: "./media/characters/nevan/front-flaccid.svg",
  32723. extra: 704 / 704,
  32724. bottom: 28 / 732
  32725. }
  32726. },
  32727. frontErect: {
  32728. height: math.unit(6 + 3 / 12, "feet"),
  32729. name: "Front (Erect)",
  32730. image: {
  32731. source: "./media/characters/nevan/front-erect.svg",
  32732. extra: 704 / 704,
  32733. bottom: 28 / 732
  32734. }
  32735. },
  32736. backFlaccid: {
  32737. height: math.unit(6 + 3 / 12, "feet"),
  32738. name: "Back (Flaccid)",
  32739. image: {
  32740. source: "./media/characters/nevan/back-flaccid.svg",
  32741. extra: 714 / 714,
  32742. bottom: 21 / 735
  32743. }
  32744. },
  32745. },
  32746. [
  32747. {
  32748. name: "Normal",
  32749. height: math.unit(6 + 3 / 12, "feet"),
  32750. default: true
  32751. },
  32752. ]
  32753. ))
  32754. characterMakers.push(() => makeCharacter(
  32755. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32756. {
  32757. front: {
  32758. height: math.unit(4, "feet"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/arhan/front.svg",
  32762. extra: 3368 / 3133,
  32763. bottom: 0 / 3368
  32764. }
  32765. },
  32766. side: {
  32767. height: math.unit(4, "feet"),
  32768. name: "Side",
  32769. image: {
  32770. source: "./media/characters/arhan/side.svg",
  32771. extra: 3347 / 3105,
  32772. bottom: 0 / 3347
  32773. }
  32774. },
  32775. tongue: {
  32776. height: math.unit(1.42, "feet"),
  32777. name: "Tongue",
  32778. image: {
  32779. source: "./media/characters/arhan/tongue.svg"
  32780. }
  32781. },
  32782. head: {
  32783. height: math.unit(0.85, "feet"),
  32784. name: "Head",
  32785. image: {
  32786. source: "./media/characters/arhan/head.svg"
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Normal",
  32793. height: math.unit(4, "feet"),
  32794. default: true
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(5 + 7.5 / 12, "feet"),
  32803. weight: math.unit(120, "lb"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/digi-duncan/front.svg",
  32807. extra: 330 / 326,
  32808. bottom: 16 / 346
  32809. }
  32810. },
  32811. side: {
  32812. height: math.unit(5 + 7.5 / 12, "feet"),
  32813. weight: math.unit(120, "lb"),
  32814. name: "Side",
  32815. image: {
  32816. source: "./media/characters/digi-duncan/side.svg",
  32817. extra: 341 / 337,
  32818. bottom: 1 / 342
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(5 + 7.5 / 12, "feet"),
  32823. weight: math.unit(120, "lb"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/digi-duncan/back.svg",
  32827. extra: 330 / 326,
  32828. bottom: 12 / 342
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Speck",
  32835. height: math.unit(0.25, "mm")
  32836. },
  32837. {
  32838. name: "Micro",
  32839. height: math.unit(5, "mm")
  32840. },
  32841. {
  32842. name: "Tiny",
  32843. height: math.unit(0.5, "inches"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Human",
  32848. height: math.unit(5 + 7.5 / 12, "feet")
  32849. },
  32850. {
  32851. name: "Minigiant",
  32852. height: math.unit(8 + 5.25, "feet")
  32853. },
  32854. {
  32855. name: "Giant",
  32856. height: math.unit(2000, "feet")
  32857. },
  32858. {
  32859. name: "Mega",
  32860. height: math.unit(371.1, "miles")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32866. {
  32867. front: {
  32868. height: math.unit(2, "meters"),
  32869. weight: math.unit(350, "kg"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32873. extra: 898 / 838,
  32874. bottom: 9 / 907
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Micro",
  32881. height: math.unit(8, "meters")
  32882. },
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(50, "meters"),
  32886. default: true
  32887. },
  32888. {
  32889. name: "Macro",
  32890. height: math.unit(500, "meters")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6 + 6 / 12, "feet"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/khardesh/front.svg",
  32902. extra: 1788/1596,
  32903. bottom: 66/1854
  32904. }
  32905. },
  32906. back: {
  32907. height: math.unit(6 + 6 / 12, "feet"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/khardesh/back.svg",
  32911. extra: 1781/1584,
  32912. bottom: 68/1849
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(6 + 6 / 12, "feet"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "Normal+",
  32924. height: math.unit(4, "meters")
  32925. },
  32926. {
  32927. name: "Macro",
  32928. height: math.unit(50, "meters")
  32929. },
  32930. {
  32931. name: "Macro+",
  32932. height: math.unit(100, "meters")
  32933. },
  32934. {
  32935. name: "Megamacro",
  32936. height: math.unit(20, "km")
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32942. {
  32943. front: {
  32944. height: math.unit(6, "feet"),
  32945. weight: math.unit(150, "lb"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/kosho/front.svg",
  32949. extra: 1847 / 1847,
  32950. bottom: 86 / 1933
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Second-stage micro",
  32957. height: math.unit(0.5, "inches")
  32958. },
  32959. {
  32960. name: "First-stage micro",
  32961. height: math.unit(6, "inches")
  32962. },
  32963. {
  32964. name: "Normal",
  32965. height: math.unit(6, "feet"),
  32966. default: true
  32967. },
  32968. {
  32969. name: "First-stage macro",
  32970. height: math.unit(72, "feet")
  32971. },
  32972. {
  32973. name: "Second-stage macro",
  32974. height: math.unit(864, "feet")
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32980. {
  32981. normal: {
  32982. height: math.unit(4 + 6 / 12, "feet"),
  32983. name: "Normal",
  32984. image: {
  32985. source: "./media/characters/hydra/normal.svg",
  32986. extra: 2833 / 2634,
  32987. bottom: 68 / 2901
  32988. }
  32989. },
  32990. smol: {
  32991. height: math.unit(0.705, "inches"),
  32992. name: "Smol",
  32993. image: {
  32994. source: "./media/characters/hydra/smol.svg",
  32995. extra: 2715 / 2540,
  32996. bottom: 0 / 2715
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(4 + 6 / 12, "feet"),
  33004. default: true
  33005. }
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(0.6, "cm"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/daz/front.svg",
  33016. extra: 1682 / 1164,
  33017. bottom: 42 / 1724
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(0.6, "cm"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(6, "feet"),
  33034. weight: math.unit(235, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/theo-pangolin/front.svg",
  33038. extra: 1996 / 1969,
  33039. bottom: 115 / 2111
  33040. }
  33041. },
  33042. back: {
  33043. height: math.unit(6, "feet"),
  33044. weight: math.unit(235, "lb"),
  33045. name: "Back",
  33046. image: {
  33047. source: "./media/characters/theo-pangolin/back.svg",
  33048. extra: 1979 / 1979,
  33049. bottom: 40 / 2019
  33050. }
  33051. },
  33052. feral: {
  33053. height: math.unit(2, "feet"),
  33054. weight: math.unit(30, "lb"),
  33055. name: "Feral",
  33056. image: {
  33057. source: "./media/characters/theo-pangolin/feral.svg",
  33058. extra: 803 / 791,
  33059. bottom: 181 / 984
  33060. }
  33061. },
  33062. footFive: {
  33063. height: math.unit(1.43, "feet"),
  33064. name: "Foot (Five Toes)",
  33065. image: {
  33066. source: "./media/characters/theo-pangolin/foot-five.svg"
  33067. }
  33068. },
  33069. footFour: {
  33070. height: math.unit(1.43, "feet"),
  33071. name: "Foot (Four Toes)",
  33072. image: {
  33073. source: "./media/characters/theo-pangolin/foot-four.svg"
  33074. }
  33075. },
  33076. handFour: {
  33077. height: math.unit(0.81, "feet"),
  33078. name: "Hand (Four Fingers)",
  33079. image: {
  33080. source: "./media/characters/theo-pangolin/hand-four.svg"
  33081. }
  33082. },
  33083. handThree: {
  33084. height: math.unit(0.81, "feet"),
  33085. name: "Hand (Three Fingers)",
  33086. image: {
  33087. source: "./media/characters/theo-pangolin/hand-three.svg"
  33088. }
  33089. },
  33090. headFront: {
  33091. height: math.unit(1.37, "feet"),
  33092. name: "Head (Front)",
  33093. image: {
  33094. source: "./media/characters/theo-pangolin/head-front.svg"
  33095. }
  33096. },
  33097. headSide: {
  33098. height: math.unit(1.43, "feet"),
  33099. name: "Head (Side)",
  33100. image: {
  33101. source: "./media/characters/theo-pangolin/head-side.svg"
  33102. }
  33103. },
  33104. tongue: {
  33105. height: math.unit(2.29, "feet"),
  33106. name: "Tongue",
  33107. image: {
  33108. source: "./media/characters/theo-pangolin/tongue.svg"
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(6, "feet")
  33116. },
  33117. {
  33118. name: "Macro",
  33119. height: math.unit(400, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(6, "inches"),
  33129. weight: math.unit(0.036, "kg"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/renée/front.svg",
  33133. extra: 900 / 886,
  33134. bottom: 8 / 908
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Nano",
  33141. height: math.unit(1, "nm")
  33142. },
  33143. {
  33144. name: "Micro",
  33145. height: math.unit(1, "mm")
  33146. },
  33147. {
  33148. name: "Normal",
  33149. height: math.unit(6, "inches")
  33150. },
  33151. {
  33152. name: "Macro",
  33153. height: math.unit(2000, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Megamacro",
  33158. height: math.unit(2, "km")
  33159. },
  33160. {
  33161. name: "Gigamacro",
  33162. height: math.unit(2000, "km")
  33163. },
  33164. {
  33165. name: "Teramacro",
  33166. height: math.unit(250000, "km")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(4, "meters"),
  33175. weight: math.unit(150, "kg"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/caledvwlch/front.svg",
  33179. extra: 1757/1537,
  33180. bottom: 31/1788
  33181. }
  33182. },
  33183. side: {
  33184. height: math.unit(4, "meters"),
  33185. weight: math.unit(150, "kg"),
  33186. name: "Side",
  33187. image: {
  33188. source: "./media/characters/caledvwlch/side.svg",
  33189. extra: 1605 / 1536,
  33190. bottom: 31 / 1636
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(4, "meters"),
  33195. weight: math.unit(150, "kg"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/caledvwlch/back.svg",
  33199. extra: 1635 / 1565,
  33200. bottom: 27 / 1662
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "\"Incognito\"",
  33207. height: math.unit(4, "meters")
  33208. },
  33209. {
  33210. name: "Small rampage",
  33211. height: math.unit(600, "meters")
  33212. },
  33213. {
  33214. name: "Mega",
  33215. height: math.unit(30, "km")
  33216. },
  33217. {
  33218. name: "Home-size",
  33219. height: math.unit(50, "km"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Giga",
  33224. height: math.unit(300, "km")
  33225. },
  33226. {
  33227. name: "Lounging",
  33228. height: math.unit(11000, "km")
  33229. },
  33230. {
  33231. name: "Planet snacking",
  33232. height: math.unit(2000000, "km")
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(6, "feet"),
  33241. weight: math.unit(215, "lb"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/sapphire-svell/front.svg",
  33245. extra: 495 / 455,
  33246. bottom: 20 / 515
  33247. }
  33248. },
  33249. back: {
  33250. height: math.unit(6, "feet"),
  33251. weight: math.unit(216, "lb"),
  33252. name: "Back",
  33253. image: {
  33254. source: "./media/characters/sapphire-svell/back.svg",
  33255. extra: 497 / 477,
  33256. bottom: 7 / 504
  33257. }
  33258. },
  33259. maw: {
  33260. height: math.unit(1.57, "feet"),
  33261. name: "Maw",
  33262. image: {
  33263. source: "./media/characters/sapphire-svell/maw.svg"
  33264. }
  33265. },
  33266. foot: {
  33267. height: math.unit(1.07, "feet"),
  33268. name: "Foot",
  33269. image: {
  33270. source: "./media/characters/sapphire-svell/foot.svg"
  33271. }
  33272. },
  33273. toering: {
  33274. height: math.unit(1.7, "inch"),
  33275. name: "Toering",
  33276. image: {
  33277. source: "./media/characters/sapphire-svell/toering.svg"
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(300, "feet"),
  33285. default: true
  33286. },
  33287. {
  33288. name: "Augmented",
  33289. height: math.unit(1250, "feet")
  33290. },
  33291. {
  33292. name: "Unleashed",
  33293. height: math.unit(3000, "feet")
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33299. {
  33300. side: {
  33301. height: math.unit(2 + 3 / 12, "feet"),
  33302. weight: math.unit(110, "lb"),
  33303. name: "Side",
  33304. image: {
  33305. source: "./media/characters/glitch-flux/side.svg",
  33306. extra: 997 / 805,
  33307. bottom: 20 / 1017
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(2 + 3 / 12, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(4, "meters"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/mid/front.svg",
  33327. extra: 507 / 476,
  33328. bottom: 17 / 524
  33329. }
  33330. },
  33331. back: {
  33332. height: math.unit(4, "meters"),
  33333. name: "Back",
  33334. image: {
  33335. source: "./media/characters/mid/back.svg",
  33336. extra: 519 / 487,
  33337. bottom: 7 / 526
  33338. }
  33339. },
  33340. stuck: {
  33341. height: math.unit(2.2, "meters"),
  33342. name: "Stuck",
  33343. image: {
  33344. source: "./media/characters/mid/stuck.svg",
  33345. extra: 1951 / 1869,
  33346. bottom: 88 / 2039
  33347. }
  33348. }
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(4, "meters"),
  33354. default: true
  33355. },
  33356. {
  33357. name: "Big",
  33358. height: math.unit(10, "meters")
  33359. },
  33360. {
  33361. name: "Macro",
  33362. height: math.unit(800, "meters")
  33363. },
  33364. {
  33365. name: "Megamacro",
  33366. height: math.unit(100, "km")
  33367. },
  33368. {
  33369. name: "Overgrown",
  33370. height: math.unit(1, "parsec")
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(2.5, "meters"),
  33379. weight: math.unit(225, "kg"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/iris/front.svg",
  33383. extra: 3348 / 3251,
  33384. bottom: 205 / 3553
  33385. }
  33386. },
  33387. maw: {
  33388. height: math.unit(0.56, "meter"),
  33389. name: "Maw",
  33390. image: {
  33391. source: "./media/characters/iris/maw.svg"
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Mewter cat",
  33398. height: math.unit(1.2, "meters")
  33399. },
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(2.5, "meters"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Minimacro",
  33407. height: math.unit(18, "feet")
  33408. },
  33409. {
  33410. name: "Macro",
  33411. height: math.unit(140, "feet")
  33412. },
  33413. {
  33414. name: "Macro+",
  33415. height: math.unit(180, "meters")
  33416. },
  33417. {
  33418. name: "Megamacro",
  33419. height: math.unit(2746, "meters")
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(6, "feet"),
  33428. weight: math.unit(135, "lb"),
  33429. name: "Front",
  33430. image: {
  33431. source: "./media/characters/axel/front.svg",
  33432. extra: 908 / 908,
  33433. bottom: 58 / 966
  33434. }
  33435. },
  33436. side: {
  33437. height: math.unit(6, "feet"),
  33438. weight: math.unit(135, "lb"),
  33439. name: "Side",
  33440. image: {
  33441. source: "./media/characters/axel/side.svg",
  33442. extra: 958 / 958,
  33443. bottom: 11 / 969
  33444. }
  33445. },
  33446. back: {
  33447. height: math.unit(6, "feet"),
  33448. weight: math.unit(135, "lb"),
  33449. name: "Back",
  33450. image: {
  33451. source: "./media/characters/axel/back.svg",
  33452. extra: 887 / 887,
  33453. bottom: 34 / 921
  33454. }
  33455. },
  33456. head: {
  33457. height: math.unit(1.07, "feet"),
  33458. name: "Head",
  33459. image: {
  33460. source: "./media/characters/axel/head.svg"
  33461. }
  33462. },
  33463. beak: {
  33464. height: math.unit(1.4, "feet"),
  33465. name: "Beak",
  33466. image: {
  33467. source: "./media/characters/axel/beak.svg"
  33468. }
  33469. },
  33470. beakSide: {
  33471. height: math.unit(1.4, "feet"),
  33472. name: "Beak Side",
  33473. image: {
  33474. source: "./media/characters/axel/beak-side.svg"
  33475. }
  33476. },
  33477. sheath: {
  33478. height: math.unit(0.5, "feet"),
  33479. name: "Sheath",
  33480. image: {
  33481. source: "./media/characters/axel/sheath.svg"
  33482. }
  33483. },
  33484. dick: {
  33485. height: math.unit(0.98, "feet"),
  33486. name: "Dick",
  33487. image: {
  33488. source: "./media/characters/axel/dick.svg"
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Macro",
  33495. height: math.unit(68, "meters"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(3.5, "meters"),
  33505. weight: math.unit(1200, "kg"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/joanna/front.svg",
  33509. extra: 1596 / 1488,
  33510. bottom: 29 / 1625
  33511. }
  33512. },
  33513. back: {
  33514. height: math.unit(3.5, "meters"),
  33515. weight: math.unit(1200, "kg"),
  33516. name: "Back",
  33517. image: {
  33518. source: "./media/characters/joanna/back.svg",
  33519. extra: 1594 / 1495,
  33520. bottom: 26 / 1620
  33521. }
  33522. },
  33523. frontShorts: {
  33524. height: math.unit(3.5, "meters"),
  33525. weight: math.unit(1200, "kg"),
  33526. name: "Front (Shorts)",
  33527. image: {
  33528. source: "./media/characters/joanna/front-shorts.svg",
  33529. extra: 1596 / 1488,
  33530. bottom: 29 / 1625
  33531. }
  33532. },
  33533. frontBiker: {
  33534. height: math.unit(3.5, "meters"),
  33535. weight: math.unit(1200, "kg"),
  33536. name: "Front (Biker)",
  33537. image: {
  33538. source: "./media/characters/joanna/front-biker.svg",
  33539. extra: 1596 / 1488,
  33540. bottom: 29 / 1625
  33541. }
  33542. },
  33543. backBiker: {
  33544. height: math.unit(3.5, "meters"),
  33545. weight: math.unit(1200, "kg"),
  33546. name: "Back (Biker)",
  33547. image: {
  33548. source: "./media/characters/joanna/back-biker.svg",
  33549. extra: 1594 / 1495,
  33550. bottom: 88 / 1682
  33551. }
  33552. },
  33553. bikeLeft: {
  33554. height: math.unit(2.4, "meters"),
  33555. weight: math.unit(1600, "kg"),
  33556. name: "Bike (Left)",
  33557. image: {
  33558. source: "./media/characters/joanna/bike-left.svg",
  33559. extra: 720 / 720,
  33560. bottom: 8 / 728
  33561. }
  33562. },
  33563. bikeRight: {
  33564. height: math.unit(2.4, "meters"),
  33565. weight: math.unit(1600, "kg"),
  33566. name: "Bike (Right)",
  33567. image: {
  33568. source: "./media/characters/joanna/bike-right.svg",
  33569. extra: 720 / 720,
  33570. bottom: 8 / 728
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Incognito",
  33577. height: math.unit(3.5, "meters")
  33578. },
  33579. {
  33580. name: "Casual Big",
  33581. height: math.unit(200, "meters")
  33582. },
  33583. {
  33584. name: "Macro",
  33585. height: math.unit(600, "meters")
  33586. },
  33587. {
  33588. name: "Original",
  33589. height: math.unit(20, "km"),
  33590. default: true
  33591. },
  33592. {
  33593. name: "Giga",
  33594. height: math.unit(400, "km")
  33595. },
  33596. {
  33597. name: "Lounging",
  33598. height: math.unit(1500, "km")
  33599. },
  33600. {
  33601. name: "Planetary",
  33602. height: math.unit(200000, "km")
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33608. {
  33609. front: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(150, "lb"),
  33612. name: "Front",
  33613. image: {
  33614. source: "./media/characters/hugo-sigil/front.svg",
  33615. extra: 522 / 500,
  33616. bottom: 2 / 524
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(150, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/hugo-sigil/back.svg",
  33625. extra: 519 / 495,
  33626. bottom: 5 / 524
  33627. }
  33628. },
  33629. maw: {
  33630. height: math.unit(1.4, "feet"),
  33631. weight: math.unit(150, "lb"),
  33632. name: "Maw",
  33633. image: {
  33634. source: "./media/characters/hugo-sigil/maw.svg"
  33635. }
  33636. },
  33637. feet: {
  33638. height: math.unit(1.56, "feet"),
  33639. weight: math.unit(150, "lb"),
  33640. name: "Feet",
  33641. image: {
  33642. source: "./media/characters/hugo-sigil/feet.svg",
  33643. extra: 177 / 177,
  33644. bottom: 12 / 189
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(6, "feet")
  33652. },
  33653. {
  33654. name: "Macro",
  33655. height: math.unit(200, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(6, "feet"),
  33665. weight: math.unit(150, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/peri/front.svg",
  33669. extra: 2354 / 2233,
  33670. bottom: 49 / 2403
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Really Small",
  33677. height: math.unit(1, "nm")
  33678. },
  33679. {
  33680. name: "Micro",
  33681. height: math.unit(4, "inches")
  33682. },
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(7, "inches"),
  33686. default: true
  33687. },
  33688. {
  33689. name: "Macro",
  33690. height: math.unit(400, "feet")
  33691. },
  33692. {
  33693. name: "Megamacro",
  33694. height: math.unit(100, "miles")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33700. {
  33701. frontSlim: {
  33702. height: math.unit(7, "feet"),
  33703. name: "Front (Slim)",
  33704. image: {
  33705. source: "./media/characters/issilora/front-slim.svg",
  33706. extra: 529 / 449,
  33707. bottom: 53 / 582
  33708. }
  33709. },
  33710. sideSlim: {
  33711. height: math.unit(7, "feet"),
  33712. name: "Side (Slim)",
  33713. image: {
  33714. source: "./media/characters/issilora/side-slim.svg",
  33715. extra: 570 / 480,
  33716. bottom: 30 / 600
  33717. }
  33718. },
  33719. backSlim: {
  33720. height: math.unit(7, "feet"),
  33721. name: "Back (Slim)",
  33722. image: {
  33723. source: "./media/characters/issilora/back-slim.svg",
  33724. extra: 537 / 455,
  33725. bottom: 46 / 583
  33726. }
  33727. },
  33728. frontBuff: {
  33729. height: math.unit(7, "feet"),
  33730. name: "Front (Buff)",
  33731. image: {
  33732. source: "./media/characters/issilora/front-buff.svg",
  33733. extra: 2310 / 2035,
  33734. bottom: 335 / 2645
  33735. }
  33736. },
  33737. head: {
  33738. height: math.unit(1.94, "feet"),
  33739. name: "Head",
  33740. image: {
  33741. source: "./media/characters/issilora/head.svg"
  33742. }
  33743. },
  33744. },
  33745. [
  33746. {
  33747. name: "Minimum",
  33748. height: math.unit(7, "feet")
  33749. },
  33750. {
  33751. name: "Comfortable",
  33752. height: math.unit(17, "feet")
  33753. },
  33754. {
  33755. name: "Fun Size",
  33756. height: math.unit(47, "feet")
  33757. },
  33758. {
  33759. name: "Natural Macro",
  33760. height: math.unit(137, "feet"),
  33761. default: true
  33762. },
  33763. {
  33764. name: "Maximum Kaiju",
  33765. height: math.unit(397, "feet")
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33771. {
  33772. front: {
  33773. height: math.unit(50 + 9/12, "feet"),
  33774. weight: math.unit(32.8, "tons"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/irb'iiritaahn/front.svg",
  33778. extra: 1878/1826,
  33779. bottom: 326/2204
  33780. }
  33781. },
  33782. back: {
  33783. height: math.unit(50 + 9/12, "feet"),
  33784. weight: math.unit(32.8, "tons"),
  33785. name: "Back",
  33786. image: {
  33787. source: "./media/characters/irb'iiritaahn/back.svg",
  33788. extra: 2052/2018,
  33789. bottom: 152/2204
  33790. }
  33791. },
  33792. head: {
  33793. height: math.unit(12.86, "feet"),
  33794. name: "Head",
  33795. image: {
  33796. source: "./media/characters/irb'iiritaahn/head.svg"
  33797. }
  33798. },
  33799. maw: {
  33800. height: math.unit(9.66, "feet"),
  33801. name: "Maw",
  33802. image: {
  33803. source: "./media/characters/irb'iiritaahn/maw.svg"
  33804. }
  33805. },
  33806. frontDick: {
  33807. height: math.unit(8.78461, "feet"),
  33808. name: "Front Dick",
  33809. image: {
  33810. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33811. }
  33812. },
  33813. rearDick: {
  33814. height: math.unit(8.78461, "feet"),
  33815. name: "Rear Dick",
  33816. image: {
  33817. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33818. }
  33819. },
  33820. rearDickUnfolded: {
  33821. height: math.unit(8.78, "feet"),
  33822. name: "Rear Dick (Unfolded)",
  33823. image: {
  33824. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33825. }
  33826. },
  33827. wings: {
  33828. height: math.unit(43, "feet"),
  33829. name: "Wings",
  33830. image: {
  33831. source: "./media/characters/irb'iiritaahn/wings.svg"
  33832. }
  33833. },
  33834. },
  33835. [
  33836. {
  33837. name: "Macro",
  33838. height: math.unit(50 + 9/12, "feet"),
  33839. default: true
  33840. },
  33841. ]
  33842. ))
  33843. characterMakers.push(() => makeCharacter(
  33844. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33845. {
  33846. front: {
  33847. height: math.unit(205, "cm"),
  33848. weight: math.unit(102, "kg"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/irbisgreif/front.svg",
  33852. extra: 785/706,
  33853. bottom: 13/798
  33854. }
  33855. },
  33856. back: {
  33857. height: math.unit(205, "cm"),
  33858. weight: math.unit(102, "kg"),
  33859. name: "Back",
  33860. image: {
  33861. source: "./media/characters/irbisgreif/back.svg",
  33862. extra: 713/701,
  33863. bottom: 26/739
  33864. }
  33865. },
  33866. frontDressed: {
  33867. height: math.unit(216, "cm"),
  33868. weight: math.unit(102, "kg"),
  33869. name: "Front-dressed",
  33870. image: {
  33871. source: "./media/characters/irbisgreif/front-dressed.svg",
  33872. extra: 902/776,
  33873. bottom: 14/916
  33874. }
  33875. },
  33876. sideDressed: {
  33877. height: math.unit(195, "cm"),
  33878. weight: math.unit(102, "kg"),
  33879. name: "Side-dressed",
  33880. image: {
  33881. source: "./media/characters/irbisgreif/side-dressed.svg",
  33882. extra: 788/688,
  33883. bottom: 21/809
  33884. }
  33885. },
  33886. backDressed: {
  33887. height: math.unit(216, "cm"),
  33888. weight: math.unit(102, "kg"),
  33889. name: "Back-dressed",
  33890. image: {
  33891. source: "./media/characters/irbisgreif/back-dressed.svg",
  33892. extra: 901/783,
  33893. bottom: 10/911
  33894. }
  33895. },
  33896. dick: {
  33897. height: math.unit(0.49, "feet"),
  33898. name: "Dick",
  33899. image: {
  33900. source: "./media/characters/irbisgreif/dick.svg"
  33901. }
  33902. },
  33903. wingTop: {
  33904. height: math.unit(1.93 , "feet"),
  33905. name: "Wing-top",
  33906. image: {
  33907. source: "./media/characters/irbisgreif/wing-top.svg"
  33908. }
  33909. },
  33910. wingBottom: {
  33911. height: math.unit(1.93 , "feet"),
  33912. name: "Wing-bottom",
  33913. image: {
  33914. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(216, "cm"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(6, "feet"),
  33931. weight: math.unit(150, "lb"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/pride/front.svg",
  33935. extra: 1299/1230,
  33936. bottom: 18/1317
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Normal",
  33943. height: math.unit(7, "feet")
  33944. },
  33945. {
  33946. name: "Mini-macro",
  33947. height: math.unit(11, "feet")
  33948. },
  33949. {
  33950. name: "Macro",
  33951. height: math.unit(15, "meters"),
  33952. default: true
  33953. },
  33954. {
  33955. name: "Macro+",
  33956. height: math.unit(40, "meters")
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33962. {
  33963. front: {
  33964. height: math.unit(4 + 2 / 12, "feet"),
  33965. weight: math.unit(95, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/vaelophis-nyx/front.svg",
  33969. extra: 2532/2330,
  33970. bottom: 0/2532
  33971. }
  33972. },
  33973. back: {
  33974. height: math.unit(4 + 2 / 12, "feet"),
  33975. weight: math.unit(95, "lb"),
  33976. name: "Back",
  33977. image: {
  33978. source: "./media/characters/vaelophis-nyx/back.svg",
  33979. extra: 2484/2361,
  33980. bottom: 0/2484
  33981. }
  33982. },
  33983. feralSide: {
  33984. height: math.unit(2 + 1/12, "feet"),
  33985. weight: math.unit(20, "lb"),
  33986. name: "Feral (Side)",
  33987. image: {
  33988. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33989. extra: 1721/1581,
  33990. bottom: 70/1791
  33991. }
  33992. },
  33993. feralLazing: {
  33994. height: math.unit(1.08, "feet"),
  33995. weight: math.unit(20, "lb"),
  33996. name: "Feral (Lazing)",
  33997. image: {
  33998. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33999. extra: 822/822,
  34000. bottom: 248/1070
  34001. }
  34002. },
  34003. ear: {
  34004. height: math.unit(0.416, "feet"),
  34005. name: "Ear",
  34006. image: {
  34007. source: "./media/characters/vaelophis-nyx/ear.svg"
  34008. }
  34009. },
  34010. eye: {
  34011. height: math.unit(0.0748, "feet"),
  34012. name: "Eye",
  34013. image: {
  34014. source: "./media/characters/vaelophis-nyx/eye.svg"
  34015. }
  34016. },
  34017. mouth: {
  34018. height: math.unit(0.378, "feet"),
  34019. name: "Mouth",
  34020. image: {
  34021. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34022. }
  34023. },
  34024. spade: {
  34025. height: math.unit(0.55, "feet"),
  34026. name: "Spade",
  34027. image: {
  34028. source: "./media/characters/vaelophis-nyx/spade.svg"
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(4 + 2/12, "feet"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34042. {
  34043. front: {
  34044. height: math.unit(7, "feet"),
  34045. weight: math.unit(231, "lb"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/flux/front.svg",
  34049. extra: 919/871,
  34050. bottom: 0/919
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(7, "feet"),
  34055. weight: math.unit(231, "lb"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/flux/back.svg",
  34059. extra: 1040/992,
  34060. bottom: 0/1040
  34061. }
  34062. },
  34063. frontDressed: {
  34064. height: math.unit(7, "feet"),
  34065. weight: math.unit(231, "lb"),
  34066. name: "Front (Dressed)",
  34067. image: {
  34068. source: "./media/characters/flux/front-dressed.svg",
  34069. extra: 919/871,
  34070. bottom: 0/919
  34071. }
  34072. },
  34073. feralSide: {
  34074. height: math.unit(5, "feet"),
  34075. weight: math.unit(150, "lb"),
  34076. name: "Feral (Side)",
  34077. image: {
  34078. source: "./media/characters/flux/feral-side.svg",
  34079. extra: 598/528,
  34080. bottom: 28/626
  34081. }
  34082. },
  34083. head: {
  34084. height: math.unit(1.585, "feet"),
  34085. name: "Head",
  34086. image: {
  34087. source: "./media/characters/flux/head.svg"
  34088. }
  34089. },
  34090. headSide: {
  34091. height: math.unit(1.74, "feet"),
  34092. name: "Head (Side)",
  34093. image: {
  34094. source: "./media/characters/flux/head-side.svg"
  34095. }
  34096. },
  34097. headSideFire: {
  34098. height: math.unit(1.76, "feet"),
  34099. name: "Head (Side, Fire)",
  34100. image: {
  34101. source: "./media/characters/flux/head-side-fire.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(7, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(9, "feet"),
  34118. weight: math.unit(1012, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/ulfra-lupae/front.svg",
  34122. extra: 1083/1011,
  34123. bottom: 67/1150
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Micro",
  34130. height: math.unit(6, "inches")
  34131. },
  34132. {
  34133. name: "Socializing",
  34134. height: math.unit(6 + 5/12, "feet")
  34135. },
  34136. {
  34137. name: "Normal",
  34138. height: math.unit(9, "feet"),
  34139. default: true
  34140. },
  34141. {
  34142. name: "Macro",
  34143. height: math.unit(150, "feet")
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(5 + 2/12, "feet"),
  34152. weight: math.unit(120, "lb"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/timber/front.svg",
  34156. extra: 2814/2705,
  34157. bottom: 181/2995
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(5 + 2/12, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(9, "feet"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/nicki/front.svg",
  34177. extra: 1240/990,
  34178. bottom: 45/1285
  34179. },
  34180. form: "anthro",
  34181. default: true
  34182. },
  34183. side: {
  34184. height: math.unit(9, "feet"),
  34185. name: "Side",
  34186. image: {
  34187. source: "./media/characters/nicki/side.svg",
  34188. extra: 1047/973,
  34189. bottom: 61/1108
  34190. },
  34191. form: "anthro"
  34192. },
  34193. back: {
  34194. height: math.unit(9, "feet"),
  34195. name: "Back",
  34196. image: {
  34197. source: "./media/characters/nicki/back.svg",
  34198. extra: 1006/965,
  34199. bottom: 39/1045
  34200. },
  34201. form: "anthro"
  34202. },
  34203. taur: {
  34204. height: math.unit(15, "feet"),
  34205. name: "Taur",
  34206. image: {
  34207. source: "./media/characters/nicki/taur.svg",
  34208. extra: 1592/1347,
  34209. bottom: 0/1592
  34210. },
  34211. form: "taur",
  34212. default: true
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(9, "feet"),
  34219. form: "anthro",
  34220. default: true
  34221. },
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(15, "feet"),
  34225. form: "taur",
  34226. default: true
  34227. }
  34228. ],
  34229. {
  34230. "anthro": {
  34231. name: "Anthro",
  34232. default: true
  34233. },
  34234. "taur": {
  34235. name: "Taur"
  34236. }
  34237. }
  34238. ))
  34239. characterMakers.push(() => makeCharacter(
  34240. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34241. {
  34242. front: {
  34243. height: math.unit(7 + 10/12, "feet"),
  34244. weight: math.unit(3.5, "tons"),
  34245. name: "Front",
  34246. image: {
  34247. source: "./media/characters/lee/front.svg",
  34248. extra: 1773/1615,
  34249. bottom: 86/1859
  34250. }
  34251. },
  34252. hand: {
  34253. height: math.unit(1.78, "feet"),
  34254. name: "Hand",
  34255. image: {
  34256. source: "./media/characters/lee/hand.svg"
  34257. }
  34258. },
  34259. maw: {
  34260. height: math.unit(1.18, "feet"),
  34261. name: "Maw",
  34262. image: {
  34263. source: "./media/characters/lee/maw.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(7 + 10/12, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34277. {
  34278. front: {
  34279. height: math.unit(9, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/guti/front.svg",
  34283. extra: 4551/4355,
  34284. bottom: 123/4674
  34285. }
  34286. },
  34287. tongue: {
  34288. height: math.unit(1, "feet"),
  34289. name: "Tongue",
  34290. image: {
  34291. source: "./media/characters/guti/tongue.svg"
  34292. }
  34293. },
  34294. paw: {
  34295. height: math.unit(1.18, "feet"),
  34296. name: "Paw",
  34297. image: {
  34298. source: "./media/characters/guti/paw.svg"
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(9, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34312. {
  34313. side: {
  34314. height: math.unit(5, "meters"),
  34315. name: "Side",
  34316. image: {
  34317. source: "./media/characters/vesper/side.svg",
  34318. extra: 1605/1518,
  34319. bottom: 0/1605
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Small",
  34326. height: math.unit(5, "meters")
  34327. },
  34328. {
  34329. name: "Sage",
  34330. height: math.unit(100, "meters"),
  34331. default: true
  34332. },
  34333. {
  34334. name: "Fun Size",
  34335. height: math.unit(600, "meters")
  34336. },
  34337. {
  34338. name: "Goddess",
  34339. height: math.unit(20000, "km")
  34340. },
  34341. {
  34342. name: "Maximum",
  34343. height: math.unit(5, "galaxies")
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(6 + 3/12, "feet"),
  34352. weight: math.unit(190, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/gawain/front.svg",
  34356. extra: 2222/2139,
  34357. bottom: 90/2312
  34358. }
  34359. },
  34360. back: {
  34361. height: math.unit(6 + 3/12, "feet"),
  34362. weight: math.unit(190, "lb"),
  34363. name: "Back",
  34364. image: {
  34365. source: "./media/characters/gawain/back.svg",
  34366. extra: 2199/2111,
  34367. bottom: 73/2272
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(6 + 3/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34381. {
  34382. side: {
  34383. height: math.unit(3.5, "meters"),
  34384. weight: math.unit(16000, "lb"),
  34385. name: "Side",
  34386. image: {
  34387. source: "./media/characters/dascalti/side.svg",
  34388. extra: 392/273,
  34389. bottom: 47/439
  34390. }
  34391. },
  34392. breath: {
  34393. height: math.unit(7.4, "feet"),
  34394. name: "Breath",
  34395. image: {
  34396. source: "./media/characters/dascalti/breath.svg"
  34397. }
  34398. },
  34399. fed: {
  34400. height: math.unit(3.6, "meters"),
  34401. weight: math.unit(16000, "lb"),
  34402. name: "Fed",
  34403. image: {
  34404. source: "./media/characters/dascalti/fed.svg",
  34405. extra: 1419/820,
  34406. bottom: 95/1514
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(3.5, "meters"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34420. {
  34421. front: {
  34422. height: math.unit(3 + 5/12, "feet"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/mauve/front.svg",
  34426. extra: 1126/1033,
  34427. bottom: 65/1191
  34428. }
  34429. },
  34430. side: {
  34431. height: math.unit(3 + 5/12, "feet"),
  34432. name: "Side",
  34433. image: {
  34434. source: "./media/characters/mauve/side.svg",
  34435. extra: 1089/1001,
  34436. bottom: 29/1118
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(3 + 5/12, "feet"),
  34441. name: "Back",
  34442. image: {
  34443. source: "./media/characters/mauve/back.svg",
  34444. extra: 1173/1053,
  34445. bottom: 109/1282
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(3 + 5/12, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(6 + 3/12, "feet"),
  34462. weight: math.unit(430, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/carlos/front.svg",
  34466. extra: 1964/1913,
  34467. bottom: 70/2034
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(6 + 3/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34481. {
  34482. back: {
  34483. height: math.unit(5 + 10/12, "feet"),
  34484. weight: math.unit(200, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/jax/back.svg",
  34488. extra: 764/739,
  34489. bottom: 25/789
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(5 + 10/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(8, "feet"),
  34506. weight: math.unit(250, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/eikthynir/front.svg",
  34510. extra: 1332/1166,
  34511. bottom: 82/1414
  34512. }
  34513. },
  34514. back: {
  34515. height: math.unit(8, "feet"),
  34516. weight: math.unit(250, "lb"),
  34517. name: "Back",
  34518. image: {
  34519. source: "./media/characters/eikthynir/back.svg",
  34520. extra: 1342/1190,
  34521. bottom: 19/1361
  34522. }
  34523. },
  34524. dick: {
  34525. height: math.unit(2.35, "feet"),
  34526. name: "Dick",
  34527. image: {
  34528. source: "./media/characters/eikthynir/dick.svg"
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(8, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(99, "meters"),
  34545. weight: math.unit(13000, "tons"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/zlmos/front.svg",
  34549. extra: 2202/1992,
  34550. bottom: 315/2517
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Macro",
  34557. height: math.unit(99, "meters"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(6 + 5/12, "feet"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/purri/front.svg",
  34570. extra: 1698/1610,
  34571. bottom: 32/1730
  34572. }
  34573. },
  34574. frontAlt: {
  34575. height: math.unit(6 + 5/12, "feet"),
  34576. name: "Front (Alt)",
  34577. image: {
  34578. source: "./media/characters/purri/front-alt.svg",
  34579. extra: 450/420,
  34580. bottom: 26/476
  34581. }
  34582. },
  34583. boots: {
  34584. height: math.unit(5.5, "feet"),
  34585. name: "Boots",
  34586. image: {
  34587. source: "./media/characters/purri/boots.svg",
  34588. extra: 905/853,
  34589. bottom: 18/923
  34590. },
  34591. extraAttributes: {
  34592. "shoeSize": {
  34593. name: "Shoe Size",
  34594. power: 1,
  34595. type: "length",
  34596. base: math.unit(12, "ShoeSizeMensUS")
  34597. },
  34598. "platformHeight": {
  34599. name: "Platform Height",
  34600. power: 1,
  34601. type: "length",
  34602. base: math.unit(2, "inches")
  34603. },
  34604. }
  34605. },
  34606. lying: {
  34607. height: math.unit(2, "feet"),
  34608. name: "Lying",
  34609. image: {
  34610. source: "./media/characters/purri/lying.svg",
  34611. extra: 940/843,
  34612. bottom: 146/1086
  34613. }
  34614. },
  34615. devious: {
  34616. height: math.unit(1.77, "feet"),
  34617. name: "Devious",
  34618. image: {
  34619. source: "./media/characters/purri/devious.svg",
  34620. extra: 1440/1155,
  34621. bottom: 147/1587
  34622. }
  34623. },
  34624. bean: {
  34625. height: math.unit(1.94, "feet"),
  34626. name: "Bean",
  34627. image: {
  34628. source: "./media/characters/purri/bean.svg"
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Micro",
  34635. height: math.unit(1, "mm")
  34636. },
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 5/12, "feet"),
  34640. default: true
  34641. },
  34642. {
  34643. name: "Macro :3c",
  34644. height: math.unit(2, "miles")
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(6 + 2/12, "feet"),
  34653. weight: math.unit(250, "lb"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/moonlight/front.svg",
  34657. extra: 1044/908,
  34658. bottom: 56/1100
  34659. }
  34660. },
  34661. feral: {
  34662. height: math.unit(3 + 1/12, "feet"),
  34663. weight: math.unit(50, "kg"),
  34664. name: "Feral",
  34665. image: {
  34666. source: "./media/characters/moonlight/feral.svg",
  34667. extra: 3705/2791,
  34668. bottom: 145/3850
  34669. }
  34670. },
  34671. paw: {
  34672. height: math.unit(1, "feet"),
  34673. name: "Paw",
  34674. image: {
  34675. source: "./media/characters/moonlight/paw.svg"
  34676. }
  34677. },
  34678. paws: {
  34679. height: math.unit(0.98, "feet"),
  34680. name: "Paws",
  34681. image: {
  34682. source: "./media/characters/moonlight/paws.svg",
  34683. extra: 939/939,
  34684. bottom: 50/989
  34685. }
  34686. },
  34687. mouth: {
  34688. height: math.unit(0.48, "feet"),
  34689. name: "Mouth",
  34690. image: {
  34691. source: "./media/characters/moonlight/mouth.svg"
  34692. }
  34693. },
  34694. dick: {
  34695. height: math.unit(1.46, "feet"),
  34696. name: "Dick",
  34697. image: {
  34698. source: "./media/characters/moonlight/dick.svg"
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(6 + 2/12, "feet"),
  34706. default: true
  34707. },
  34708. {
  34709. name: "Macro",
  34710. height: math.unit(300, "feet")
  34711. },
  34712. {
  34713. name: "Macro+",
  34714. height: math.unit(1, "mile")
  34715. },
  34716. {
  34717. name: "Mt. Moon",
  34718. height: math.unit(5, "miles")
  34719. },
  34720. {
  34721. name: "Megamacro",
  34722. height: math.unit(15, "miles")
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34728. {
  34729. back: {
  34730. height: math.unit(6, "feet"),
  34731. weight: math.unit(150, "lb"),
  34732. name: "Back",
  34733. image: {
  34734. source: "./media/characters/sylen/back.svg",
  34735. extra: 1335/1273,
  34736. bottom: 107/1442
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(5 + 5/12, "feet")
  34744. },
  34745. {
  34746. name: "Megamacro",
  34747. height: math.unit(3, "miles"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(6, "feet"),
  34757. weight: math.unit(190, "lb"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/huttser/front.svg",
  34761. extra: 1152/1058,
  34762. bottom: 23/1175
  34763. }
  34764. },
  34765. side: {
  34766. height: math.unit(6, "feet"),
  34767. weight: math.unit(190, "lb"),
  34768. name: "Side",
  34769. image: {
  34770. source: "./media/characters/huttser/side.svg",
  34771. extra: 1174/1065,
  34772. bottom: 18/1192
  34773. }
  34774. },
  34775. back: {
  34776. height: math.unit(6, "feet"),
  34777. weight: math.unit(190, "lb"),
  34778. name: "Back",
  34779. image: {
  34780. source: "./media/characters/huttser/back.svg",
  34781. extra: 1158/1056,
  34782. bottom: 12/1170
  34783. }
  34784. },
  34785. },
  34786. [
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34791. {
  34792. side: {
  34793. height: math.unit(12 + 9/12, "feet"),
  34794. weight: math.unit(15000, "lb"),
  34795. name: "Side",
  34796. image: {
  34797. source: "./media/characters/faan/side.svg",
  34798. extra: 2747/2697,
  34799. bottom: 0/2747
  34800. }
  34801. },
  34802. front: {
  34803. height: math.unit(12 + 9/12, "feet"),
  34804. weight: math.unit(15000, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/faan/front.svg",
  34808. extra: 607/571,
  34809. bottom: 24/631
  34810. }
  34811. },
  34812. head: {
  34813. height: math.unit(2.85, "feet"),
  34814. name: "Head",
  34815. image: {
  34816. source: "./media/characters/faan/head.svg"
  34817. }
  34818. },
  34819. headAlt: {
  34820. height: math.unit(3.13, "feet"),
  34821. name: "Head-alt",
  34822. image: {
  34823. source: "./media/characters/faan/head-alt.svg"
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(12 + 9/12, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(6, "feet"),
  34840. weight: math.unit(300, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/tanio/front.svg",
  34844. extra: 711/673,
  34845. bottom: 25/736
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(6, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(3, "inches"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/noboru/front.svg",
  34865. extra: 1039/932,
  34866. bottom: 18/1057
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Micro",
  34873. height: math.unit(3, "inches"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(1.85, "meters"),
  34883. weight: math.unit(80, "kg"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/daniel-barrett/front.svg",
  34887. extra: 355/337,
  34888. bottom: 9/364
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Pico",
  34895. height: math.unit(0.0433, "mm")
  34896. },
  34897. {
  34898. name: "Nano",
  34899. height: math.unit(1.5, "mm")
  34900. },
  34901. {
  34902. name: "Micro",
  34903. height: math.unit(5.3, "cm"),
  34904. default: true
  34905. },
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(1.85, "meters")
  34909. },
  34910. {
  34911. name: "Macro",
  34912. height: math.unit(64.7, "meters")
  34913. },
  34914. {
  34915. name: "Megamacro",
  34916. height: math.unit(2.26, "km")
  34917. },
  34918. {
  34919. name: "Gigamacro",
  34920. height: math.unit(79, "km")
  34921. },
  34922. {
  34923. name: "Teramacro",
  34924. height: math.unit(2765, "km")
  34925. },
  34926. {
  34927. name: "Petamacro",
  34928. height: math.unit(96678, "km")
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(30, "meters"),
  34937. weight: math.unit(400, "tons"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/zeel/front.svg",
  34941. extra: 2599/2599,
  34942. bottom: 226/2825
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Macro",
  34949. height: math.unit(30, "meters"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34956. {
  34957. front: {
  34958. height: math.unit(6 + 7/12, "feet"),
  34959. weight: math.unit(210, "lb"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/tarn/front.svg",
  34963. extra: 3517/3220,
  34964. bottom: 91/3608
  34965. }
  34966. },
  34967. back: {
  34968. height: math.unit(6 + 7/12, "feet"),
  34969. weight: math.unit(210, "lb"),
  34970. name: "Back",
  34971. image: {
  34972. source: "./media/characters/tarn/back.svg",
  34973. extra: 3566/3241,
  34974. bottom: 34/3600
  34975. }
  34976. },
  34977. dick: {
  34978. height: math.unit(1.65, "feet"),
  34979. name: "Dick",
  34980. image: {
  34981. source: "./media/characters/tarn/dick.svg"
  34982. }
  34983. },
  34984. paw: {
  34985. height: math.unit(1.80, "feet"),
  34986. name: "Paw",
  34987. image: {
  34988. source: "./media/characters/tarn/paw.svg"
  34989. }
  34990. },
  34991. tongue: {
  34992. height: math.unit(0.97, "feet"),
  34993. name: "Tongue",
  34994. image: {
  34995. source: "./media/characters/tarn/tongue.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Micro",
  35002. height: math.unit(4, "inches")
  35003. },
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(6 + 7/12, "feet"),
  35007. default: true
  35008. },
  35009. {
  35010. name: "Macro",
  35011. height: math.unit(300, "feet")
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35017. {
  35018. front: {
  35019. height: math.unit(5 + 7/12, "feet"),
  35020. weight: math.unit(80, "kg"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35024. extra: 3023/2865,
  35025. bottom: 33/3056
  35026. }
  35027. },
  35028. back: {
  35029. height: math.unit(5 + 7/12, "feet"),
  35030. weight: math.unit(80, "kg"),
  35031. name: "Back",
  35032. image: {
  35033. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35034. extra: 3020/2886,
  35035. bottom: 30/3050
  35036. }
  35037. },
  35038. dick: {
  35039. height: math.unit(0.98, "feet"),
  35040. name: "Dick",
  35041. image: {
  35042. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35043. }
  35044. },
  35045. anatomy: {
  35046. height: math.unit(2.86, "feet"),
  35047. name: "Anatomy",
  35048. image: {
  35049. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Really Small",
  35056. height: math.unit(2, "inches")
  35057. },
  35058. {
  35059. name: "Micro",
  35060. height: math.unit(5.583, "inches")
  35061. },
  35062. {
  35063. name: "Normal",
  35064. height: math.unit(5 + 7/12, "feet"),
  35065. default: true
  35066. },
  35067. {
  35068. name: "Macro",
  35069. height: math.unit(67, "feet")
  35070. },
  35071. {
  35072. name: "Megamacro",
  35073. height: math.unit(134, "feet")
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(9, "feet"),
  35082. weight: math.unit(120, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/sally/front.svg",
  35086. extra: 1506/1349,
  35087. bottom: 66/1572
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(9, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(8, "feet"),
  35104. weight: math.unit(900, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/owen/front.svg",
  35108. extra: 1761/1657,
  35109. bottom: 74/1835
  35110. }
  35111. },
  35112. side: {
  35113. height: math.unit(8, "feet"),
  35114. weight: math.unit(900, "lb"),
  35115. name: "Side",
  35116. image: {
  35117. source: "./media/characters/owen/side.svg",
  35118. extra: 1797/1734,
  35119. bottom: 30/1827
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(8, "feet"),
  35124. weight: math.unit(900, "lb"),
  35125. name: "Back",
  35126. image: {
  35127. source: "./media/characters/owen/back.svg",
  35128. extra: 1796/1706,
  35129. bottom: 59/1855
  35130. }
  35131. },
  35132. maw: {
  35133. height: math.unit(1.76, "feet"),
  35134. name: "Maw",
  35135. image: {
  35136. source: "./media/characters/owen/maw.svg"
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Normal",
  35143. height: math.unit(8, "feet"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35150. {
  35151. front: {
  35152. height: math.unit(4, "feet"),
  35153. weight: math.unit(400, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/ryth/front.svg",
  35157. extra: 1920/1748,
  35158. bottom: 42/1962
  35159. }
  35160. },
  35161. back: {
  35162. height: math.unit(4, "feet"),
  35163. weight: math.unit(400, "lb"),
  35164. name: "Back",
  35165. image: {
  35166. source: "./media/characters/ryth/back.svg",
  35167. extra: 1897/1690,
  35168. bottom: 89/1986
  35169. }
  35170. },
  35171. mouth: {
  35172. height: math.unit(1.39, "feet"),
  35173. name: "Mouth",
  35174. image: {
  35175. source: "./media/characters/ryth/mouth.svg"
  35176. }
  35177. },
  35178. tailmaw: {
  35179. height: math.unit(1.23, "feet"),
  35180. name: "Tailmaw",
  35181. image: {
  35182. source: "./media/characters/ryth/tailmaw.svg"
  35183. }
  35184. },
  35185. goia: {
  35186. height: math.unit(4, "meters"),
  35187. weight: math.unit(10800, "lb"),
  35188. name: "Goia",
  35189. image: {
  35190. source: "./media/characters/ryth/goia.svg",
  35191. extra: 745/640,
  35192. bottom: 107/852
  35193. }
  35194. },
  35195. goiaFront: {
  35196. height: math.unit(4, "meters"),
  35197. weight: math.unit(10800, "lb"),
  35198. name: "Goia (Front)",
  35199. image: {
  35200. source: "./media/characters/ryth/goia-front.svg",
  35201. extra: 750/586,
  35202. bottom: 114/864
  35203. }
  35204. },
  35205. goiaMaw: {
  35206. height: math.unit(5.55, "feet"),
  35207. name: "Goia Maw",
  35208. image: {
  35209. source: "./media/characters/ryth/goia-maw.svg"
  35210. }
  35211. },
  35212. goiaForepaw: {
  35213. height: math.unit(3.5, "feet"),
  35214. name: "Goia Forepaw",
  35215. image: {
  35216. source: "./media/characters/ryth/goia-forepaw.svg"
  35217. }
  35218. },
  35219. goiaHindpaw: {
  35220. height: math.unit(5.55, "feet"),
  35221. name: "Goia Hindpaw",
  35222. image: {
  35223. source: "./media/characters/ryth/goia-hindpaw.svg"
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(4, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(7, "feet"),
  35240. weight: math.unit(180, "lb"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/necrolance/front.svg",
  35244. extra: 1062/947,
  35245. bottom: 41/1103
  35246. }
  35247. },
  35248. back: {
  35249. height: math.unit(7, "feet"),
  35250. weight: math.unit(180, "lb"),
  35251. name: "Back",
  35252. image: {
  35253. source: "./media/characters/necrolance/back.svg",
  35254. extra: 1045/984,
  35255. bottom: 14/1059
  35256. }
  35257. },
  35258. wing: {
  35259. height: math.unit(2.67, "feet"),
  35260. name: "Wing",
  35261. image: {
  35262. source: "./media/characters/necrolance/wing.svg"
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(7, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35276. {
  35277. front: {
  35278. height: math.unit(76, "meters"),
  35279. weight: math.unit(30000, "tons"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/tyler/front.svg",
  35283. extra: 1640/1640,
  35284. bottom: 114/1754
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Macro",
  35291. height: math.unit(76, "meters"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(4 + 11/12, "feet"),
  35301. weight: math.unit(132, "lb"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/icey/front.svg",
  35305. extra: 2750/2550,
  35306. bottom: 33/2783
  35307. }
  35308. },
  35309. back: {
  35310. height: math.unit(4 + 11/12, "feet"),
  35311. weight: math.unit(132, "lb"),
  35312. name: "Back",
  35313. image: {
  35314. source: "./media/characters/icey/back.svg",
  35315. extra: 2624/2481,
  35316. bottom: 35/2659
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(4 + 11/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(100, "feet"),
  35333. weight: math.unit(0, "lb"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/smile/front.svg",
  35337. extra: 2983/2912,
  35338. bottom: 162/3145
  35339. }
  35340. },
  35341. back: {
  35342. height: math.unit(100, "feet"),
  35343. weight: math.unit(0, "lb"),
  35344. name: "Back",
  35345. image: {
  35346. source: "./media/characters/smile/back.svg",
  35347. extra: 3143/3031,
  35348. bottom: 91/3234
  35349. }
  35350. },
  35351. head: {
  35352. height: math.unit(26.3, "feet"),
  35353. weight: math.unit(0, "lb"),
  35354. name: "Head",
  35355. image: {
  35356. source: "./media/characters/smile/head.svg"
  35357. }
  35358. },
  35359. collar: {
  35360. height: math.unit(5.3, "feet"),
  35361. weight: math.unit(0, "lb"),
  35362. name: "Collar",
  35363. image: {
  35364. source: "./media/characters/smile/collar.svg"
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Macro",
  35371. height: math.unit(100, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35378. {
  35379. dragon: {
  35380. height: math.unit(26, "feet"),
  35381. weight: math.unit(36, "tons"),
  35382. name: "Dragon",
  35383. image: {
  35384. source: "./media/characters/arimphae/dragon.svg",
  35385. extra: 1574/983,
  35386. bottom: 357/1931
  35387. }
  35388. },
  35389. drake: {
  35390. height: math.unit(9, "feet"),
  35391. weight: math.unit(1.5, "tons"),
  35392. name: "Drake",
  35393. image: {
  35394. source: "./media/characters/arimphae/drake.svg",
  35395. extra: 1120/925,
  35396. bottom: 435/1555
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Small",
  35403. height: math.unit(26*5/9, "feet")
  35404. },
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(26, "feet"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35414. {
  35415. front: {
  35416. height: math.unit(8 + 9/12, "feet"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/xander/front.svg",
  35420. extra: 1237/974,
  35421. bottom: 94/1331
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(8 + 9/12, "feet"),
  35429. default: true
  35430. },
  35431. {
  35432. name: "Gaze Grabber",
  35433. height: math.unit(13 + 8/12, "feet")
  35434. },
  35435. {
  35436. name: "Jaw Dropper",
  35437. height: math.unit(27, "feet")
  35438. },
  35439. {
  35440. name: "Show Stopper",
  35441. height: math.unit(136, "feet")
  35442. },
  35443. {
  35444. name: "Superstar",
  35445. height: math.unit(1.9e6, "miles")
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35451. {
  35452. side: {
  35453. height: math.unit(2100, "feet"),
  35454. name: "Side",
  35455. image: {
  35456. source: "./media/characters/osiris/side.svg",
  35457. extra: 1105/939,
  35458. bottom: 167/1272
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Macro",
  35465. height: math.unit(2100, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(6 + 8/12, "feet"),
  35475. weight: math.unit(225, "lb"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/rhys-londe/front.svg",
  35479. extra: 2258/2141,
  35480. bottom: 188/2446
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(6 + 8/12, "feet"),
  35485. weight: math.unit(225, "lb"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/rhys-londe/back.svg",
  35489. extra: 2237/2137,
  35490. bottom: 63/2300
  35491. }
  35492. },
  35493. frontNsfw: {
  35494. height: math.unit(6 + 8/12, "feet"),
  35495. weight: math.unit(225, "lb"),
  35496. name: "Front (NSFW)",
  35497. image: {
  35498. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35499. extra: 2258/2141,
  35500. bottom: 188/2446
  35501. }
  35502. },
  35503. backNsfw: {
  35504. height: math.unit(6 + 8/12, "feet"),
  35505. weight: math.unit(225, "lb"),
  35506. name: "Back (NSFW)",
  35507. image: {
  35508. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35509. extra: 2237/2137,
  35510. bottom: 63/2300
  35511. }
  35512. },
  35513. dick: {
  35514. height: math.unit(30, "inches"),
  35515. name: "Dick",
  35516. image: {
  35517. source: "./media/characters/rhys-londe/dick.svg"
  35518. }
  35519. },
  35520. maw: {
  35521. height: math.unit(1.6, "feet"),
  35522. name: "Maw",
  35523. image: {
  35524. source: "./media/characters/rhys-londe/maw.svg"
  35525. }
  35526. },
  35527. },
  35528. [
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(6 + 8/12, "feet"),
  35532. default: true
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35538. {
  35539. front: {
  35540. height: math.unit(3 + 10/12, "feet"),
  35541. weight: math.unit(90, "lb"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/taivas-ensim/front.svg",
  35545. extra: 1327/1216,
  35546. bottom: 96/1423
  35547. }
  35548. },
  35549. back: {
  35550. height: math.unit(3 + 10/12, "feet"),
  35551. weight: math.unit(90, "lb"),
  35552. name: "Back",
  35553. image: {
  35554. source: "./media/characters/taivas-ensim/back.svg",
  35555. extra: 1355/1247,
  35556. bottom: 11/1366
  35557. }
  35558. },
  35559. frontNsfw: {
  35560. height: math.unit(3 + 10/12, "feet"),
  35561. weight: math.unit(90, "lb"),
  35562. name: "Front (NSFW)",
  35563. image: {
  35564. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35565. extra: 1327/1216,
  35566. bottom: 96/1423
  35567. }
  35568. },
  35569. backNsfw: {
  35570. height: math.unit(3 + 10/12, "feet"),
  35571. weight: math.unit(90, "lb"),
  35572. name: "Back (NSFW)",
  35573. image: {
  35574. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35575. extra: 1355/1247,
  35576. bottom: 11/1366
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(3 + 10/12, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(9 + 6/12, "feet"),
  35593. weight: math.unit(940, "lb"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/byliss/front.svg",
  35597. extra: 1327/1290,
  35598. bottom: 82/1409
  35599. }
  35600. },
  35601. back: {
  35602. height: math.unit(9 + 6/12, "feet"),
  35603. weight: math.unit(940, "lb"),
  35604. name: "Back",
  35605. image: {
  35606. source: "./media/characters/byliss/back.svg",
  35607. extra: 1376/1349,
  35608. bottom: 9/1385
  35609. }
  35610. },
  35611. frontNsfw: {
  35612. height: math.unit(9 + 6/12, "feet"),
  35613. weight: math.unit(940, "lb"),
  35614. name: "Front (NSFW)",
  35615. image: {
  35616. source: "./media/characters/byliss/front-nsfw.svg",
  35617. extra: 1327/1290,
  35618. bottom: 82/1409
  35619. }
  35620. },
  35621. backNsfw: {
  35622. height: math.unit(9 + 6/12, "feet"),
  35623. weight: math.unit(940, "lb"),
  35624. name: "Back (NSFW)",
  35625. image: {
  35626. source: "./media/characters/byliss/back-nsfw.svg",
  35627. extra: 1376/1349,
  35628. bottom: 9/1385
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(9 + 6/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(5 + 2/12, "feet"),
  35645. weight: math.unit(200, "lb"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/noraly/front.svg",
  35649. extra: 4985/4773,
  35650. bottom: 150/5135
  35651. }
  35652. },
  35653. full: {
  35654. height: math.unit(5 + 2/12, "feet"),
  35655. weight: math.unit(164, "lb"),
  35656. name: "Full",
  35657. image: {
  35658. source: "./media/characters/noraly/full.svg",
  35659. extra: 1114/1059,
  35660. bottom: 35/1149
  35661. }
  35662. },
  35663. fuller: {
  35664. height: math.unit(5 + 2/12, "feet"),
  35665. weight: math.unit(230, "lb"),
  35666. name: "Fuller",
  35667. image: {
  35668. source: "./media/characters/noraly/fuller.svg",
  35669. extra: 1114/1059,
  35670. bottom: 35/1149
  35671. }
  35672. },
  35673. fullest: {
  35674. height: math.unit(5 + 2/12, "feet"),
  35675. weight: math.unit(300, "lb"),
  35676. name: "Fullest",
  35677. image: {
  35678. source: "./media/characters/noraly/fullest.svg",
  35679. extra: 1114/1059,
  35680. bottom: 35/1149
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(5 + 2/12, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35694. {
  35695. front: {
  35696. height: math.unit(5 + 2/12, "feet"),
  35697. weight: math.unit(210, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/pera/front.svg",
  35701. extra: 1560/1531,
  35702. bottom: 165/1725
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(5 + 2/12, "feet"),
  35707. weight: math.unit(210, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/pera/back.svg",
  35711. extra: 1523/1493,
  35712. bottom: 152/1675
  35713. }
  35714. },
  35715. dick: {
  35716. height: math.unit(2.4, "feet"),
  35717. name: "Dick",
  35718. image: {
  35719. source: "./media/characters/pera/dick.svg"
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(5 + 2/12, "feet"),
  35727. default: true
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35733. {
  35734. front: {
  35735. height: math.unit(12, "feet"),
  35736. weight: math.unit(3200, "lb"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/julian/front.svg",
  35740. extra: 2962/2701,
  35741. bottom: 184/3146
  35742. }
  35743. },
  35744. maw: {
  35745. height: math.unit(5.35, "feet"),
  35746. name: "Maw",
  35747. image: {
  35748. source: "./media/characters/julian/maw.svg"
  35749. }
  35750. },
  35751. paw: {
  35752. height: math.unit(3.07, "feet"),
  35753. name: "Paw",
  35754. image: {
  35755. source: "./media/characters/julian/paw.svg"
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Default",
  35762. height: math.unit(12, "feet"),
  35763. default: true
  35764. },
  35765. {
  35766. name: "Big",
  35767. height: math.unit(50, "feet")
  35768. },
  35769. {
  35770. name: "Really Big",
  35771. height: math.unit(1, "mile")
  35772. },
  35773. {
  35774. name: "Extremely Big",
  35775. height: math.unit(100, "miles")
  35776. },
  35777. {
  35778. name: "Planet Hugger",
  35779. height: math.unit(200, "megameters")
  35780. },
  35781. {
  35782. name: "Unreasonably Big",
  35783. height: math.unit(1e300, "meters")
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35789. {
  35790. solgooleo: {
  35791. height: math.unit(4, "meters"),
  35792. weight: math.unit(6000*1.5, "kg"),
  35793. volume: math.unit(6000, "liters"),
  35794. name: "Solgooleo",
  35795. image: {
  35796. source: "./media/characters/pi/solgooleo.svg",
  35797. extra: 388/331,
  35798. bottom: 29/417
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(4, "meters"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(8, "feet"),
  35815. weight: math.unit(4, "tons"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/shaun/front.svg",
  35819. extra: 503/495,
  35820. bottom: 20/523
  35821. }
  35822. },
  35823. back: {
  35824. height: math.unit(8, "feet"),
  35825. weight: math.unit(4, "tons"),
  35826. name: "Back",
  35827. image: {
  35828. source: "./media/characters/shaun/back.svg",
  35829. extra: 487/480,
  35830. bottom: 20/507
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Lorg",
  35837. height: math.unit(8, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35844. {
  35845. frontAnthro: {
  35846. height: math.unit(7, "feet"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/sini/front-anthro.svg",
  35850. extra: 726/678,
  35851. bottom: 35/761
  35852. },
  35853. form: "anthro",
  35854. default: true
  35855. },
  35856. backAnthro: {
  35857. height: math.unit(7, "feet"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/sini/back-anthro.svg",
  35861. extra: 743/701,
  35862. bottom: 12/755
  35863. },
  35864. form: "anthro",
  35865. },
  35866. frontAnthroNsfw: {
  35867. height: math.unit(7, "feet"),
  35868. name: "Front (NSFW)",
  35869. image: {
  35870. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35871. extra: 726/678,
  35872. bottom: 35/761
  35873. },
  35874. form: "anthro"
  35875. },
  35876. backAnthroNsfw: {
  35877. height: math.unit(7, "feet"),
  35878. name: "Back (NSFW)",
  35879. image: {
  35880. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35881. extra: 743/701,
  35882. bottom: 12/755
  35883. },
  35884. form: "anthro",
  35885. },
  35886. mawAnthro: {
  35887. height: math.unit(2.14, "feet"),
  35888. name: "Maw",
  35889. image: {
  35890. source: "./media/characters/sini/maw-anthro.svg"
  35891. },
  35892. form: "anthro"
  35893. },
  35894. dick: {
  35895. height: math.unit(1.45, "feet"),
  35896. name: "Dick",
  35897. image: {
  35898. source: "./media/characters/sini/dick-anthro.svg"
  35899. },
  35900. form: "anthro"
  35901. },
  35902. feral: {
  35903. height: math.unit(16, "feet"),
  35904. name: "Feral",
  35905. image: {
  35906. source: "./media/characters/sini/feral.svg",
  35907. extra: 814/605,
  35908. bottom: 11/825
  35909. },
  35910. form: "feral",
  35911. default: true
  35912. },
  35913. feralNsfw: {
  35914. height: math.unit(16, "feet"),
  35915. name: "Feral (NSFW)",
  35916. image: {
  35917. source: "./media/characters/sini/feral-nsfw.svg",
  35918. extra: 814/605,
  35919. bottom: 11/825
  35920. },
  35921. form: "feral"
  35922. },
  35923. mawFeral: {
  35924. height: math.unit(5.66, "feet"),
  35925. name: "Maw",
  35926. image: {
  35927. source: "./media/characters/sini/maw-feral.svg"
  35928. },
  35929. form: "feral",
  35930. },
  35931. pawFeral: {
  35932. height: math.unit(5.17, "feet"),
  35933. name: "Paw",
  35934. image: {
  35935. source: "./media/characters/sini/paw-feral.svg"
  35936. },
  35937. form: "feral",
  35938. },
  35939. rumpFeral: {
  35940. height: math.unit(13.11, "feet"),
  35941. name: "Rump",
  35942. image: {
  35943. source: "./media/characters/sini/rump-feral.svg"
  35944. },
  35945. form: "feral",
  35946. },
  35947. dickFeral: {
  35948. height: math.unit(1, "feet"),
  35949. name: "Dick",
  35950. image: {
  35951. source: "./media/characters/sini/dick-feral.svg"
  35952. },
  35953. form: "feral",
  35954. },
  35955. eyeFeral: {
  35956. height: math.unit(1.23, "feet"),
  35957. name: "Eye",
  35958. image: {
  35959. source: "./media/characters/sini/eye-feral.svg"
  35960. },
  35961. form: "feral",
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(7, "feet"),
  35968. default: true,
  35969. form: "anthro"
  35970. },
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(16, "feet"),
  35974. default: true,
  35975. form: "feral"
  35976. },
  35977. ],
  35978. {
  35979. "anthro": {
  35980. name: "Anthro",
  35981. default: true
  35982. },
  35983. "feral": {
  35984. name: "Feral",
  35985. }
  35986. }
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35990. {
  35991. side: {
  35992. height: math.unit(47.2, "meters"),
  35993. weight: math.unit(10000, "tons"),
  35994. name: "Side",
  35995. image: {
  35996. source: "./media/characters/raylldo/side.svg",
  35997. extra: 2363/642,
  35998. bottom: 221/2584
  35999. }
  36000. },
  36001. top: {
  36002. height: math.unit(240, "meters"),
  36003. weight: math.unit(10000, "tons"),
  36004. name: "Top",
  36005. image: {
  36006. source: "./media/characters/raylldo/top.svg"
  36007. }
  36008. },
  36009. bottom: {
  36010. height: math.unit(240, "meters"),
  36011. weight: math.unit(10000, "tons"),
  36012. name: "Bottom",
  36013. image: {
  36014. source: "./media/characters/raylldo/bottom.svg"
  36015. }
  36016. },
  36017. head: {
  36018. height: math.unit(38.6, "meters"),
  36019. name: "Head",
  36020. image: {
  36021. source: "./media/characters/raylldo/head.svg",
  36022. extra: 1335/1112,
  36023. bottom: 0/1335
  36024. }
  36025. },
  36026. maw: {
  36027. height: math.unit(16.37, "meters"),
  36028. name: "Maw",
  36029. image: {
  36030. source: "./media/characters/raylldo/maw.svg",
  36031. extra: 883/660,
  36032. bottom: 0/883
  36033. },
  36034. extraAttributes: {
  36035. preyCapacity: {
  36036. name: "Capacity",
  36037. power: 3,
  36038. type: "volume",
  36039. base: math.unit(1000, "people")
  36040. },
  36041. tongueSize: {
  36042. name: "Tongue Size",
  36043. power: 2,
  36044. type: "area",
  36045. base: math.unit(21, "m^2")
  36046. }
  36047. }
  36048. },
  36049. forepaw: {
  36050. height: math.unit(18, "meters"),
  36051. name: "Forepaw",
  36052. image: {
  36053. source: "./media/characters/raylldo/forepaw.svg"
  36054. }
  36055. },
  36056. hindpaw: {
  36057. height: math.unit(23, "meters"),
  36058. name: "Hindpaw",
  36059. image: {
  36060. source: "./media/characters/raylldo/hindpaw.svg"
  36061. }
  36062. },
  36063. genitals: {
  36064. height: math.unit(42, "meters"),
  36065. name: "Genitals",
  36066. image: {
  36067. source: "./media/characters/raylldo/genitals.svg"
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(47.2, "meters"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36081. {
  36082. anthroFront: {
  36083. height: math.unit(9, "feet"),
  36084. weight: math.unit(600, "lb"),
  36085. name: "Anthro (Front)",
  36086. image: {
  36087. source: "./media/characters/glint/anthro-front.svg",
  36088. extra: 1097/1018,
  36089. bottom: 28/1125
  36090. }
  36091. },
  36092. anthroBack: {
  36093. height: math.unit(9, "feet"),
  36094. weight: math.unit(600, "lb"),
  36095. name: "Anthro (Back)",
  36096. image: {
  36097. source: "./media/characters/glint/anthro-back.svg",
  36098. extra: 1154/997,
  36099. bottom: 36/1190
  36100. }
  36101. },
  36102. feral: {
  36103. height: math.unit(11, "feet"),
  36104. weight: math.unit(50000, "lb"),
  36105. name: "Feral",
  36106. image: {
  36107. source: "./media/characters/glint/feral.svg",
  36108. extra: 3035/1585,
  36109. bottom: 1169/4204
  36110. }
  36111. },
  36112. dickAnthro: {
  36113. height: math.unit(0.7, "meters"),
  36114. name: "Dick (Anthro)",
  36115. image: {
  36116. source: "./media/characters/glint/dick-anthro.svg"
  36117. }
  36118. },
  36119. dickFeral: {
  36120. height: math.unit(2.65, "meters"),
  36121. name: "Dick (Feral)",
  36122. image: {
  36123. source: "./media/characters/glint/dick-feral.svg"
  36124. }
  36125. },
  36126. slitHidden: {
  36127. height: math.unit(5.85, "meters"),
  36128. name: "Slit (Hidden)",
  36129. image: {
  36130. source: "./media/characters/glint/slit-hidden.svg"
  36131. }
  36132. },
  36133. slitErect: {
  36134. height: math.unit(5.85, "meters"),
  36135. name: "Slit (Erect)",
  36136. image: {
  36137. source: "./media/characters/glint/slit-erect.svg"
  36138. }
  36139. },
  36140. mawAnthro: {
  36141. height: math.unit(0.63, "meters"),
  36142. name: "Maw (Anthro)",
  36143. image: {
  36144. source: "./media/characters/glint/maw.svg"
  36145. }
  36146. },
  36147. mawFeral: {
  36148. height: math.unit(2.89, "meters"),
  36149. name: "Maw (Feral)",
  36150. image: {
  36151. source: "./media/characters/glint/maw.svg"
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Normal",
  36158. height: math.unit(9, "feet"),
  36159. default: true
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36165. {
  36166. side: {
  36167. height: math.unit(15, "feet"),
  36168. weight: math.unit(5000, "kg"),
  36169. name: "Side",
  36170. image: {
  36171. source: "./media/characters/kairne/side.svg",
  36172. extra: 979/811,
  36173. bottom: 13/992
  36174. }
  36175. },
  36176. front: {
  36177. height: math.unit(15, "feet"),
  36178. weight: math.unit(5000, "kg"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/kairne/front.svg",
  36182. extra: 908/814,
  36183. bottom: 26/934
  36184. }
  36185. },
  36186. sideNsfw: {
  36187. height: math.unit(15, "feet"),
  36188. weight: math.unit(5000, "kg"),
  36189. name: "Side (NSFW)",
  36190. image: {
  36191. source: "./media/characters/kairne/side-nsfw.svg",
  36192. extra: 979/811,
  36193. bottom: 13/992
  36194. }
  36195. },
  36196. frontNsfw: {
  36197. height: math.unit(15, "feet"),
  36198. weight: math.unit(5000, "kg"),
  36199. name: "Front (NSFW)",
  36200. image: {
  36201. source: "./media/characters/kairne/front-nsfw.svg",
  36202. extra: 908/814,
  36203. bottom: 26/934
  36204. }
  36205. },
  36206. dickCaged: {
  36207. height: math.unit(0.65, "meters"),
  36208. name: "Dick-caged",
  36209. image: {
  36210. source: "./media/characters/kairne/dick-caged.svg"
  36211. }
  36212. },
  36213. dick: {
  36214. height: math.unit(0.79, "meters"),
  36215. name: "Dick",
  36216. image: {
  36217. source: "./media/characters/kairne/dick.svg"
  36218. }
  36219. },
  36220. genitals: {
  36221. height: math.unit(1.29, "meters"),
  36222. name: "Genitals",
  36223. image: {
  36224. source: "./media/characters/kairne/genitals.svg"
  36225. }
  36226. },
  36227. maw: {
  36228. height: math.unit(1.73, "meters"),
  36229. name: "Maw",
  36230. image: {
  36231. source: "./media/characters/kairne/maw.svg"
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(15, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(5 + 8/12, "feet"),
  36248. weight: math.unit(139, "lb"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/biscuit-jackal/front.svg",
  36252. extra: 2106/1961,
  36253. bottom: 58/2164
  36254. }
  36255. },
  36256. back: {
  36257. height: math.unit(5 + 8/12, "feet"),
  36258. weight: math.unit(139, "lb"),
  36259. name: "Back",
  36260. image: {
  36261. source: "./media/characters/biscuit-jackal/back.svg",
  36262. extra: 2132/1976,
  36263. bottom: 57/2189
  36264. }
  36265. },
  36266. werejackal: {
  36267. height: math.unit(6 + 3/12, "feet"),
  36268. weight: math.unit(188, "lb"),
  36269. name: "Werejackal",
  36270. image: {
  36271. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36272. extra: 2373/2178,
  36273. bottom: 53/2426
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "Normal",
  36280. height: math.unit(5 + 8/12, "feet"),
  36281. default: true
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36287. {
  36288. front: {
  36289. height: math.unit(140, "cm"),
  36290. weight: math.unit(45, "kg"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/tayra-white/front.svg",
  36294. extra: 2229/2192,
  36295. bottom: 75/2304
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(140, "cm"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(4 + 5/12, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/scoop/front.svg",
  36315. extra: 1257/1136,
  36316. bottom: 69/1326
  36317. }
  36318. },
  36319. back: {
  36320. height: math.unit(4 + 5/12, "feet"),
  36321. name: "Back",
  36322. image: {
  36323. source: "./media/characters/scoop/back.svg",
  36324. extra: 1321/1152,
  36325. bottom: 32/1353
  36326. }
  36327. },
  36328. maw: {
  36329. height: math.unit(0.68, "feet"),
  36330. name: "Maw",
  36331. image: {
  36332. source: "./media/characters/scoop/maw.svg"
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Really Small",
  36339. height: math.unit(1, "mm")
  36340. },
  36341. {
  36342. name: "Micro",
  36343. height: math.unit(1, "inch")
  36344. },
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(4 + 5/12, "feet"),
  36348. default: true
  36349. },
  36350. {
  36351. name: "Macro",
  36352. height: math.unit(200, "feet")
  36353. },
  36354. {
  36355. name: "Megamacro",
  36356. height: math.unit(3240, "feet")
  36357. },
  36358. {
  36359. name: "Teramacro",
  36360. height: math.unit(2500, "miles")
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(15 + 7/12, "feet"),
  36369. weight: math.unit(1150, "tons"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/saphinara/front.svg",
  36373. extra: 1837/1643,
  36374. bottom: 84/1921
  36375. },
  36376. form: "normal",
  36377. default: true
  36378. },
  36379. side: {
  36380. height: math.unit(15 + 7/12, "feet"),
  36381. weight: math.unit(1150, "tons"),
  36382. name: "Side",
  36383. image: {
  36384. source: "./media/characters/saphinara/side.svg",
  36385. extra: 605/547,
  36386. bottom: 6/611
  36387. },
  36388. form: "normal"
  36389. },
  36390. back: {
  36391. height: math.unit(15 + 7/12, "feet"),
  36392. weight: math.unit(1150, "tons"),
  36393. name: "Back",
  36394. image: {
  36395. source: "./media/characters/saphinara/back.svg",
  36396. extra: 591/531,
  36397. bottom: 13/604
  36398. },
  36399. form: "normal"
  36400. },
  36401. frontTail: {
  36402. height: math.unit(15 + 7/12, "feet"),
  36403. weight: math.unit(1150, "tons"),
  36404. name: "Front (Full Tail)",
  36405. image: {
  36406. source: "./media/characters/saphinara/front-tail.svg",
  36407. extra: 2256/1630,
  36408. bottom: 261/2517
  36409. },
  36410. form: "normal"
  36411. },
  36412. insides: {
  36413. height: math.unit(11.92, "feet"),
  36414. name: "Insides",
  36415. image: {
  36416. source: "./media/characters/saphinara/insides.svg"
  36417. },
  36418. form: "normal"
  36419. },
  36420. head: {
  36421. height: math.unit(4.17, "feet"),
  36422. name: "Head",
  36423. image: {
  36424. source: "./media/characters/saphinara/head.svg"
  36425. },
  36426. form: "normal"
  36427. },
  36428. tongue: {
  36429. height: math.unit(4.60, "feet"),
  36430. name: "Tongue",
  36431. image: {
  36432. source: "./media/characters/saphinara/tongue.svg"
  36433. },
  36434. form: "normal"
  36435. },
  36436. headEnraged: {
  36437. height: math.unit(5.55, "feet"),
  36438. name: "Head (Enraged)",
  36439. image: {
  36440. source: "./media/characters/saphinara/head-enraged.svg"
  36441. },
  36442. form: "normal"
  36443. },
  36444. wings: {
  36445. height: math.unit(11.95, "feet"),
  36446. name: "Wings",
  36447. image: {
  36448. source: "./media/characters/saphinara/wings.svg"
  36449. },
  36450. form: "normal"
  36451. },
  36452. feathers: {
  36453. height: math.unit(8.92, "feet"),
  36454. name: "Feathers",
  36455. image: {
  36456. source: "./media/characters/saphinara/feathers.svg"
  36457. },
  36458. form: "normal"
  36459. },
  36460. shackles: {
  36461. height: math.unit(2, "feet"),
  36462. name: "Shackles",
  36463. image: {
  36464. source: "./media/characters/saphinara/shackles.svg"
  36465. },
  36466. form: "normal"
  36467. },
  36468. eyes: {
  36469. height: math.unit(1.331, "feet"),
  36470. name: "Eyes",
  36471. image: {
  36472. source: "./media/characters/saphinara/eyes.svg"
  36473. },
  36474. form: "normal"
  36475. },
  36476. eyesEnraged: {
  36477. height: math.unit(1.331, "feet"),
  36478. name: "Eyes (Enraged)",
  36479. image: {
  36480. source: "./media/characters/saphinara/eyes-enraged.svg"
  36481. },
  36482. form: "normal"
  36483. },
  36484. trueFormSide: {
  36485. height: math.unit(200, "feet"),
  36486. weight: math.unit(1e7, "tons"),
  36487. name: "Side",
  36488. image: {
  36489. source: "./media/characters/saphinara/true-form-side.svg",
  36490. extra: 1399/770,
  36491. bottom: 97/1496
  36492. },
  36493. form: "true-form",
  36494. default: true
  36495. },
  36496. trueFormMaw: {
  36497. height: math.unit(71.5, "feet"),
  36498. name: "Maw",
  36499. image: {
  36500. source: "./media/characters/saphinara/true-form-maw.svg",
  36501. extra: 2302/1453,
  36502. bottom: 0/2302
  36503. },
  36504. form: "true-form"
  36505. },
  36506. meowberusSide: {
  36507. height: math.unit(75, "feet"),
  36508. weight: math.unit(180000, "kg"),
  36509. preyCapacity: math.unit(50000, "people"),
  36510. name: "Side",
  36511. image: {
  36512. source: "./media/characters/saphinara/meowberus-side.svg",
  36513. extra: 1400/711,
  36514. bottom: 126/1526
  36515. },
  36516. form: "meowberus",
  36517. extraAttributes: {
  36518. "pawArea": {
  36519. name: "Paw Size",
  36520. power: 2,
  36521. type: "area",
  36522. base: math.unit(35, "m^2")
  36523. }
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(15 + 7/12, "feet"),
  36531. default: true,
  36532. form: "normal"
  36533. },
  36534. {
  36535. name: "Angry",
  36536. height: math.unit(30 + 6/12, "feet"),
  36537. form: "normal"
  36538. },
  36539. {
  36540. name: "Enraged",
  36541. height: math.unit(102 + 1/12, "feet"),
  36542. form: "normal"
  36543. },
  36544. {
  36545. name: "True",
  36546. height: math.unit(200, "feet"),
  36547. default: true,
  36548. form: "true-form"
  36549. },
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(75, "feet"),
  36553. default: true,
  36554. form: "meowberus"
  36555. },
  36556. ],
  36557. {
  36558. "normal": {
  36559. name: "Normal",
  36560. default: true
  36561. },
  36562. "true-form": {
  36563. name: "True Form"
  36564. },
  36565. "meowberus": {
  36566. name: "Meowberus",
  36567. },
  36568. }
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(6 + 8/12, "feet"),
  36575. weight: math.unit(300, "lb"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/jrain/front.svg",
  36579. extra: 3039/2865,
  36580. bottom: 399/3438
  36581. }
  36582. },
  36583. back: {
  36584. height: math.unit(6 + 8/12, "feet"),
  36585. weight: math.unit(300, "lb"),
  36586. name: "Back",
  36587. image: {
  36588. source: "./media/characters/jrain/back.svg",
  36589. extra: 3089/2938,
  36590. bottom: 172/3261
  36591. }
  36592. },
  36593. head: {
  36594. height: math.unit(2.14, "feet"),
  36595. name: "Head",
  36596. image: {
  36597. source: "./media/characters/jrain/head.svg"
  36598. }
  36599. },
  36600. maw: {
  36601. height: math.unit(1.77, "feet"),
  36602. name: "Maw",
  36603. image: {
  36604. source: "./media/characters/jrain/maw.svg"
  36605. }
  36606. },
  36607. leftHand: {
  36608. height: math.unit(1.1, "feet"),
  36609. name: "Left Hand",
  36610. image: {
  36611. source: "./media/characters/jrain/left-hand.svg"
  36612. }
  36613. },
  36614. rightHand: {
  36615. height: math.unit(1.1, "feet"),
  36616. name: "Right Hand",
  36617. image: {
  36618. source: "./media/characters/jrain/right-hand.svg"
  36619. }
  36620. },
  36621. eye: {
  36622. height: math.unit(0.35, "feet"),
  36623. name: "Eye",
  36624. image: {
  36625. source: "./media/characters/jrain/eye.svg"
  36626. }
  36627. },
  36628. },
  36629. [
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(6 + 8/12, "feet"),
  36633. default: true
  36634. },
  36635. {
  36636. name: "Casually Large",
  36637. height: math.unit(25, "feet")
  36638. },
  36639. {
  36640. name: "Giant",
  36641. height: math.unit(100, "feet")
  36642. },
  36643. {
  36644. name: "Kaiju",
  36645. height: math.unit(300, "feet")
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36651. {
  36652. dragon: {
  36653. height: math.unit(5, "meters"),
  36654. name: "Dragon",
  36655. image: {
  36656. source: "./media/characters/sabrina/dragon.svg",
  36657. extra: 3670 / 2365,
  36658. bottom: 333 / 4003
  36659. }
  36660. },
  36661. gryphon: {
  36662. height: math.unit(3, "meters"),
  36663. name: "Gryphon",
  36664. image: {
  36665. source: "./media/characters/sabrina/gryphon.svg",
  36666. extra: 1576 / 945,
  36667. bottom: 71 / 1647
  36668. }
  36669. },
  36670. snake: {
  36671. height: math.unit(12, "meters"),
  36672. name: "Snake",
  36673. image: {
  36674. source: "./media/characters/sabrina/snake.svg",
  36675. extra: 1758 / 1320,
  36676. bottom: 186 / 1944
  36677. }
  36678. },
  36679. collar: {
  36680. height: math.unit(1.86, "meters"),
  36681. name: "Collar",
  36682. image: {
  36683. source: "./media/characters/sabrina/collar.svg"
  36684. }
  36685. },
  36686. eye: {
  36687. height: math.unit(0.53, "meters"),
  36688. name: "Eye",
  36689. image: {
  36690. source: "./media/characters/sabrina/eye.svg"
  36691. }
  36692. },
  36693. foot: {
  36694. height: math.unit(1.86, "meters"),
  36695. name: "Foot",
  36696. image: {
  36697. source: "./media/characters/sabrina/foot.svg"
  36698. }
  36699. },
  36700. hand: {
  36701. height: math.unit(1.32, "meters"),
  36702. name: "Hand",
  36703. image: {
  36704. source: "./media/characters/sabrina/hand.svg"
  36705. }
  36706. },
  36707. head: {
  36708. height: math.unit(2.44, "meters"),
  36709. name: "Head",
  36710. image: {
  36711. source: "./media/characters/sabrina/head.svg"
  36712. }
  36713. },
  36714. headAngry: {
  36715. height: math.unit(2.44, "meters"),
  36716. name: "Head (Angry))",
  36717. image: {
  36718. source: "./media/characters/sabrina/head-angry.svg"
  36719. }
  36720. },
  36721. maw: {
  36722. height: math.unit(1.65, "meters"),
  36723. name: "Maw",
  36724. image: {
  36725. source: "./media/characters/sabrina/maw.svg"
  36726. }
  36727. },
  36728. spikes: {
  36729. height: math.unit(1.69, "meters"),
  36730. name: "Spikes",
  36731. image: {
  36732. source: "./media/characters/sabrina/spikes.svg"
  36733. }
  36734. },
  36735. stomach: {
  36736. height: math.unit(1.15, "meters"),
  36737. name: "Stomach",
  36738. image: {
  36739. source: "./media/characters/sabrina/stomach.svg"
  36740. }
  36741. },
  36742. tongue: {
  36743. height: math.unit(1.27, "meters"),
  36744. name: "Tongue",
  36745. image: {
  36746. source: "./media/characters/sabrina/tongue.svg"
  36747. }
  36748. },
  36749. wingDorsal: {
  36750. height: math.unit(4.85, "meters"),
  36751. name: "Wing (Dorsal)",
  36752. image: {
  36753. source: "./media/characters/sabrina/wing-dorsal.svg"
  36754. }
  36755. },
  36756. wingVentral: {
  36757. height: math.unit(4.85, "meters"),
  36758. name: "Wing (Ventral)",
  36759. image: {
  36760. source: "./media/characters/sabrina/wing-ventral.svg"
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(5, "meters"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36774. {
  36775. frontMaid: {
  36776. height: math.unit(5 + 5/12, "feet"),
  36777. weight: math.unit(130, "lb"),
  36778. name: "Front (Maid)",
  36779. image: {
  36780. source: "./media/characters/midnight-tales/front-maid.svg",
  36781. extra: 489/454,
  36782. bottom: 61/550
  36783. }
  36784. },
  36785. frontFormal: {
  36786. height: math.unit(5 + 5/12, "feet"),
  36787. weight: math.unit(130, "lb"),
  36788. name: "Front (Formal)",
  36789. image: {
  36790. source: "./media/characters/midnight-tales/front-formal.svg",
  36791. extra: 489/454,
  36792. bottom: 61/550
  36793. }
  36794. },
  36795. back: {
  36796. height: math.unit(5 + 5/12, "feet"),
  36797. weight: math.unit(130, "lb"),
  36798. name: "Back",
  36799. image: {
  36800. source: "./media/characters/midnight-tales/back.svg",
  36801. extra: 498/456,
  36802. bottom: 33/531
  36803. }
  36804. },
  36805. frontBeast: {
  36806. height: math.unit(40, "feet"),
  36807. weight: math.unit(64000, "lb"),
  36808. name: "Front (Beast)",
  36809. image: {
  36810. source: "./media/characters/midnight-tales/front-beast.svg",
  36811. extra: 927/860,
  36812. bottom: 53/980
  36813. }
  36814. },
  36815. backBeast: {
  36816. height: math.unit(40, "feet"),
  36817. weight: math.unit(64000, "lb"),
  36818. name: "Back (Beast)",
  36819. image: {
  36820. source: "./media/characters/midnight-tales/back-beast.svg",
  36821. extra: 929/855,
  36822. bottom: 16/945
  36823. }
  36824. },
  36825. footBeast: {
  36826. height: math.unit(6.7, "feet"),
  36827. name: "Foot (Beast)",
  36828. image: {
  36829. source: "./media/characters/midnight-tales/foot-beast.svg"
  36830. }
  36831. },
  36832. headBeast: {
  36833. height: math.unit(8, "feet"),
  36834. name: "Head (Beast)",
  36835. image: {
  36836. source: "./media/characters/midnight-tales/head-beast.svg"
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(5 + 5 / 12, "feet"),
  36844. default: true
  36845. },
  36846. {
  36847. name: "Macro",
  36848. height: math.unit(25, "feet")
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(6 + 2/12, "feet"),
  36857. weight: math.unit(115, "kg"),
  36858. preyCapacity: math.unit(3, "people"),
  36859. name: "Front",
  36860. image: {
  36861. source: "./media/characters/argon/front.svg",
  36862. extra: 2009/1935,
  36863. bottom: 118/2127
  36864. },
  36865. extraAttributes: {
  36866. "tailLength": {
  36867. name: "Tail Length",
  36868. power: 1,
  36869. type: "length",
  36870. base: math.unit(6, "feet")
  36871. },
  36872. "tailWeight": {
  36873. name: "Tail Weight",
  36874. power: 3,
  36875. type: "mass",
  36876. base: math.unit(40, "kg")
  36877. },
  36878. }
  36879. },
  36880. back: {
  36881. height: math.unit(6 + 2/12, "feet"),
  36882. weight: math.unit(115, "kg"),
  36883. preyCapacity: math.unit(3, "people"),
  36884. name: "Back",
  36885. image: {
  36886. source: "./media/characters/argon/back.svg",
  36887. extra: 2047/1992,
  36888. bottom: 20/2067
  36889. },
  36890. extraAttributes: {
  36891. "tailLength": {
  36892. name: "Tail Length",
  36893. power: 1,
  36894. type: "length",
  36895. base: math.unit(6, "feet")
  36896. },
  36897. "tailWeight": {
  36898. name: "Tail Weight",
  36899. power: 3,
  36900. type: "mass",
  36901. base: math.unit(40, "kg")
  36902. },
  36903. }
  36904. },
  36905. frontDressed: {
  36906. height: math.unit(6 + 2/12, "feet"),
  36907. weight: math.unit(115, "kg"),
  36908. preyCapacity: math.unit(3, "people"),
  36909. name: "Front (Dressed)",
  36910. image: {
  36911. source: "./media/characters/argon/front-dressed.svg",
  36912. extra: 2009/1935,
  36913. bottom: 118/2127
  36914. },
  36915. extraAttributes: {
  36916. "tailLength": {
  36917. name: "Tail Length",
  36918. power: 1,
  36919. type: "length",
  36920. base: math.unit(6, "feet")
  36921. },
  36922. "tailWeight": {
  36923. name: "Tail Weight",
  36924. power: 3,
  36925. type: "mass",
  36926. base: math.unit(40, "kg")
  36927. },
  36928. }
  36929. },
  36930. },
  36931. [
  36932. {
  36933. name: "Minimum",
  36934. height: math.unit(2 + 8/12, "feet")
  36935. },
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(6 + 2/12, "feet"),
  36939. default: true
  36940. },
  36941. {
  36942. name: "Maximum",
  36943. height: math.unit(20, "feet")
  36944. },
  36945. ]
  36946. ))
  36947. characterMakers.push(() => makeCharacter(
  36948. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36949. {
  36950. front: {
  36951. height: math.unit(8 + 6/12, "feet"),
  36952. weight: math.unit(1150, "lb"),
  36953. name: "Front",
  36954. image: {
  36955. source: "./media/characters/kichi/front.svg",
  36956. extra: 1267/1164,
  36957. bottom: 61/1328
  36958. }
  36959. },
  36960. back: {
  36961. height: math.unit(8 + 6/12, "feet"),
  36962. weight: math.unit(1150, "lb"),
  36963. name: "Back",
  36964. image: {
  36965. source: "./media/characters/kichi/back.svg",
  36966. extra: 1273/1166,
  36967. bottom: 33/1306
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Normal",
  36974. height: math.unit(8 + 6/12, "feet"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36981. {
  36982. front: {
  36983. height: math.unit(6, "feet"),
  36984. weight: math.unit(210, "lb"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/manetel-greyscale/front.svg",
  36988. extra: 350/312,
  36989. bottom: 8/358
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Micro",
  36996. height: math.unit(2, "inches")
  36997. },
  36998. {
  36999. name: "Normal",
  37000. height: math.unit(6, "feet"),
  37001. default: true
  37002. },
  37003. {
  37004. name: "Minimacro",
  37005. height: math.unit(17, "feet")
  37006. },
  37007. {
  37008. name: "Macro",
  37009. height: math.unit(117, "feet")
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37015. {
  37016. side: {
  37017. height: math.unit(5 + 1/12, "feet"),
  37018. weight: math.unit(418, "lb"),
  37019. name: "Side",
  37020. image: {
  37021. source: "./media/characters/softpurr/side.svg",
  37022. extra: 1993/1945,
  37023. bottom: 134/2127
  37024. }
  37025. },
  37026. front: {
  37027. height: math.unit(5 + 1/12, "feet"),
  37028. weight: math.unit(418, "lb"),
  37029. name: "Front",
  37030. image: {
  37031. source: "./media/characters/softpurr/front.svg",
  37032. extra: 1950/1856,
  37033. bottom: 174/2124
  37034. }
  37035. },
  37036. paw: {
  37037. height: math.unit(1, "feet"),
  37038. name: "Paw",
  37039. image: {
  37040. source: "./media/characters/softpurr/paw.svg"
  37041. }
  37042. },
  37043. },
  37044. [
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(5 + 1/12, "feet"),
  37048. default: true
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  37054. {
  37055. front: {
  37056. height: math.unit(260, "meters"),
  37057. name: "Front",
  37058. image: {
  37059. source: "./media/characters/anahita/front.svg",
  37060. extra: 665/635,
  37061. bottom: 89/754
  37062. }
  37063. },
  37064. },
  37065. [
  37066. {
  37067. name: "Macro",
  37068. height: math.unit(260, "meters"),
  37069. default: true
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(4 + 10/12, "feet"),
  37078. weight: math.unit(160, "lb"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/chip-mouse/front.svg",
  37082. extra: 3528/3408,
  37083. bottom: 0/3528
  37084. }
  37085. },
  37086. frontNsfw: {
  37087. height: math.unit(4 + 10/12, "feet"),
  37088. weight: math.unit(160, "lb"),
  37089. name: "Front (NSFW)",
  37090. image: {
  37091. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37092. extra: 3528/3408,
  37093. bottom: 0/3528
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(4 + 10/12, "feet"),
  37101. default: true
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37107. {
  37108. side: {
  37109. height: math.unit(10, "feet"),
  37110. weight: math.unit(14000, "lb"),
  37111. name: "Side",
  37112. image: {
  37113. source: "./media/characters/kremm/side.svg",
  37114. extra: 1390/1053,
  37115. bottom: 90/1480
  37116. }
  37117. },
  37118. gut: {
  37119. height: math.unit(5.8, "feet"),
  37120. name: "Gut",
  37121. image: {
  37122. source: "./media/characters/kremm/gut.svg"
  37123. }
  37124. },
  37125. ass: {
  37126. height: math.unit(6.1, "feet"),
  37127. name: "Ass",
  37128. image: {
  37129. source: "./media/characters/kremm/ass.svg"
  37130. }
  37131. },
  37132. jaws: {
  37133. height: math.unit(2.2, "feet"),
  37134. name: "Jaws",
  37135. image: {
  37136. source: "./media/characters/kremm/jaws.svg"
  37137. }
  37138. },
  37139. dick: {
  37140. height: math.unit(4.26, "feet"),
  37141. name: "Dick",
  37142. image: {
  37143. source: "./media/characters/kremm/dick.svg"
  37144. }
  37145. },
  37146. },
  37147. [
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(10, "feet"),
  37151. default: true
  37152. },
  37153. ]
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(30, "stories"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/kai/front.svg",
  37163. extra: 1892/1718,
  37164. bottom: 162/2054
  37165. }
  37166. },
  37167. },
  37168. [
  37169. {
  37170. name: "Macro",
  37171. height: math.unit(30, "stories"),
  37172. default: true
  37173. },
  37174. ]
  37175. ))
  37176. characterMakers.push(() => makeCharacter(
  37177. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37178. {
  37179. front: {
  37180. height: math.unit(6 + 4/12, "feet"),
  37181. weight: math.unit(145, "lb"),
  37182. name: "Front",
  37183. image: {
  37184. source: "./media/characters/sykes/front.svg",
  37185. extra: 1321 / 1187,
  37186. bottom: 66 / 1387
  37187. }
  37188. },
  37189. back: {
  37190. height: math.unit(6 + 4/12, "feet"),
  37191. weight: math.unit(145, "lb"),
  37192. name: "Back",
  37193. image: {
  37194. source: "./media/characters/sykes/back.svg",
  37195. extra: 1326/1181,
  37196. bottom: 31/1357
  37197. }
  37198. },
  37199. traditionalOutfit: {
  37200. height: math.unit(6 + 4/12, "feet"),
  37201. weight: math.unit(145, "lb"),
  37202. name: "Traditional Outfit",
  37203. image: {
  37204. source: "./media/characters/sykes/traditional-outfit.svg",
  37205. extra: 1321 / 1187,
  37206. bottom: 66 / 1387
  37207. }
  37208. },
  37209. adventureOutfit: {
  37210. height: math.unit(6 + 4/12, "feet"),
  37211. weight: math.unit(145, "lb"),
  37212. name: "Adventure Outfit",
  37213. image: {
  37214. source: "./media/characters/sykes/adventure-outfit.svg",
  37215. extra: 1321 / 1187,
  37216. bottom: 66 / 1387
  37217. }
  37218. },
  37219. handLeft: {
  37220. height: math.unit(0.9, "feet"),
  37221. name: "Hand (Left)",
  37222. image: {
  37223. source: "./media/characters/sykes/hand-left.svg"
  37224. }
  37225. },
  37226. handRight: {
  37227. height: math.unit(0.839, "feet"),
  37228. name: "Hand (Right)",
  37229. image: {
  37230. source: "./media/characters/sykes/hand-right.svg"
  37231. }
  37232. },
  37233. leftFoot: {
  37234. height: math.unit(1.2, "feet"),
  37235. name: "Foot (Left)",
  37236. image: {
  37237. source: "./media/characters/sykes/foot-left.svg"
  37238. }
  37239. },
  37240. rightFoot: {
  37241. height: math.unit(1.2, "feet"),
  37242. name: "Foot (Right)",
  37243. image: {
  37244. source: "./media/characters/sykes/foot-right.svg"
  37245. }
  37246. },
  37247. maw: {
  37248. height: math.unit(1.93, "feet"),
  37249. name: "Maw",
  37250. image: {
  37251. source: "./media/characters/sykes/maw.svg"
  37252. }
  37253. },
  37254. teeth: {
  37255. height: math.unit(0.51, "feet"),
  37256. name: "Teeth",
  37257. image: {
  37258. source: "./media/characters/sykes/teeth.svg"
  37259. }
  37260. },
  37261. tongue: {
  37262. height: math.unit(2.13, "feet"),
  37263. name: "Tongue",
  37264. image: {
  37265. source: "./media/characters/sykes/tongue.svg"
  37266. }
  37267. },
  37268. uvula: {
  37269. height: math.unit(0.16, "feet"),
  37270. name: "Uvula",
  37271. image: {
  37272. source: "./media/characters/sykes/uvula.svg"
  37273. }
  37274. },
  37275. collar: {
  37276. height: math.unit(0.287, "feet"),
  37277. name: "Collar",
  37278. image: {
  37279. source: "./media/characters/sykes/collar.svg"
  37280. }
  37281. },
  37282. tail: {
  37283. height: math.unit(3.8, "feet"),
  37284. name: "Tail",
  37285. image: {
  37286. source: "./media/characters/sykes/tail.svg"
  37287. }
  37288. },
  37289. },
  37290. [
  37291. {
  37292. name: "Shrunken",
  37293. height: math.unit(5, "inches")
  37294. },
  37295. {
  37296. name: "Normal",
  37297. height: math.unit(6 + 4 / 12, "feet"),
  37298. default: true
  37299. },
  37300. {
  37301. name: "Big",
  37302. height: math.unit(15, "feet")
  37303. },
  37304. ]
  37305. ))
  37306. characterMakers.push(() => makeCharacter(
  37307. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37308. {
  37309. front: {
  37310. height: math.unit(5 + 8/12, "feet"),
  37311. weight: math.unit(190, "lb"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/oven-otter/front.svg",
  37315. extra: 1809/1740,
  37316. bottom: 181/1990
  37317. }
  37318. },
  37319. back: {
  37320. height: math.unit(5 + 8/12, "feet"),
  37321. weight: math.unit(190, "lb"),
  37322. name: "Back",
  37323. image: {
  37324. source: "./media/characters/oven-otter/back.svg",
  37325. extra: 1709/1635,
  37326. bottom: 118/1827
  37327. }
  37328. },
  37329. hand: {
  37330. height: math.unit(1.07, "feet"),
  37331. name: "Hand",
  37332. image: {
  37333. source: "./media/characters/oven-otter/hand.svg"
  37334. }
  37335. },
  37336. beans: {
  37337. height: math.unit(1.74, "feet"),
  37338. name: "Beans",
  37339. image: {
  37340. source: "./media/characters/oven-otter/beans.svg"
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Micro",
  37347. height: math.unit(0.5, "inches")
  37348. },
  37349. {
  37350. name: "Normal",
  37351. height: math.unit(5 + 8/12, "feet"),
  37352. default: true
  37353. },
  37354. {
  37355. name: "Macro",
  37356. height: math.unit(250, "feet")
  37357. },
  37358. {
  37359. name: "Really High",
  37360. height: math.unit(420, "feet")
  37361. },
  37362. ]
  37363. ))
  37364. characterMakers.push(() => makeCharacter(
  37365. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37366. {
  37367. front: {
  37368. height: math.unit(5, "meters"),
  37369. weight: math.unit(292000000000000, "kg"),
  37370. name: "Front",
  37371. image: {
  37372. source: "./media/characters/devourer/front.svg",
  37373. extra: 1800/1733,
  37374. bottom: 211/2011
  37375. }
  37376. },
  37377. maw: {
  37378. height: math.unit(1.1, "meter"),
  37379. name: "Maw",
  37380. image: {
  37381. source: "./media/characters/devourer/maw.svg"
  37382. }
  37383. },
  37384. },
  37385. [
  37386. {
  37387. name: "Small",
  37388. height: math.unit(3, "meters")
  37389. },
  37390. {
  37391. name: "Large",
  37392. height: math.unit(5, "meters"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37399. {
  37400. front: {
  37401. height: math.unit(6, "feet"),
  37402. weight: math.unit(400, "lb"),
  37403. name: "Front",
  37404. image: {
  37405. source: "./media/characters/ellarby/front.svg",
  37406. extra: 1909/1763,
  37407. bottom: 80/1989
  37408. }
  37409. },
  37410. back: {
  37411. height: math.unit(6, "feet"),
  37412. weight: math.unit(400, "lb"),
  37413. name: "Back",
  37414. image: {
  37415. source: "./media/characters/ellarby/back.svg",
  37416. extra: 1914/1784,
  37417. bottom: 172/2086
  37418. }
  37419. },
  37420. },
  37421. [
  37422. {
  37423. name: "Mischief",
  37424. height: math.unit(18, "inches")
  37425. },
  37426. {
  37427. name: "Trouble",
  37428. height: math.unit(12, "feet")
  37429. },
  37430. {
  37431. name: "Havoc",
  37432. height: math.unit(200, "feet"),
  37433. default: true
  37434. },
  37435. {
  37436. name: "Pandemonium",
  37437. height: math.unit(1, "mile")
  37438. },
  37439. {
  37440. name: "Catastrophe",
  37441. height: math.unit(100, "miles")
  37442. },
  37443. ]
  37444. ))
  37445. characterMakers.push(() => makeCharacter(
  37446. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37447. {
  37448. front: {
  37449. height: math.unit(4.7, "meters"),
  37450. weight: math.unit(6500, "kg"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/vex/front.svg",
  37454. extra: 1288/1140,
  37455. bottom: 100/1388
  37456. }
  37457. },
  37458. },
  37459. [
  37460. {
  37461. name: "Normal",
  37462. height: math.unit(4.7, "meters"),
  37463. default: true
  37464. },
  37465. ]
  37466. ))
  37467. characterMakers.push(() => makeCharacter(
  37468. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37469. {
  37470. normal: {
  37471. height: math.unit(6, "feet"),
  37472. weight: math.unit(350, "lb"),
  37473. name: "Normal",
  37474. image: {
  37475. source: "./media/characters/teshy/normal.svg",
  37476. extra: 1795/1735,
  37477. bottom: 16/1811
  37478. }
  37479. },
  37480. monsterFront: {
  37481. height: math.unit(12, "feet"),
  37482. weight: math.unit(4700, "lb"),
  37483. name: "Monster (Front)",
  37484. image: {
  37485. source: "./media/characters/teshy/monster-front.svg",
  37486. extra: 2042/2034,
  37487. bottom: 128/2170
  37488. }
  37489. },
  37490. monsterSide: {
  37491. height: math.unit(12, "feet"),
  37492. weight: math.unit(4700, "lb"),
  37493. name: "Monster (Side)",
  37494. image: {
  37495. source: "./media/characters/teshy/monster-side.svg",
  37496. extra: 2067/2056,
  37497. bottom: 70/2137
  37498. }
  37499. },
  37500. monsterBack: {
  37501. height: math.unit(12, "feet"),
  37502. weight: math.unit(4700, "lb"),
  37503. name: "Monster (Back)",
  37504. image: {
  37505. source: "./media/characters/teshy/monster-back.svg",
  37506. extra: 1921/1914,
  37507. bottom: 171/2092
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "Normal",
  37514. height: math.unit(6, "feet"),
  37515. default: true
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(6, "feet"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/ramey/front.svg",
  37527. extra: 790/787,
  37528. bottom: 27/817
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Normal",
  37535. height: math.unit(6, "feet"),
  37536. default: true
  37537. },
  37538. ]
  37539. ))
  37540. characterMakers.push(() => makeCharacter(
  37541. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37542. {
  37543. front: {
  37544. height: math.unit(5 + 5/12, "feet"),
  37545. weight: math.unit(120, "lb"),
  37546. name: "Front",
  37547. image: {
  37548. source: "./media/characters/phirae/front.svg",
  37549. extra: 2491/2436,
  37550. bottom: 38/2529
  37551. }
  37552. },
  37553. },
  37554. [
  37555. {
  37556. name: "Normal",
  37557. height: math.unit(5 + 5/12, "feet"),
  37558. default: true
  37559. },
  37560. ]
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37564. {
  37565. front: {
  37566. height: math.unit(5 + 3/12, "feet"),
  37567. name: "Front",
  37568. image: {
  37569. source: "./media/characters/stagglas/front.svg",
  37570. extra: 962/882,
  37571. bottom: 53/1015
  37572. }
  37573. },
  37574. feral: {
  37575. height: math.unit(335, "cm"),
  37576. name: "Feral",
  37577. image: {
  37578. source: "./media/characters/stagglas/feral.svg",
  37579. extra: 1732/1090,
  37580. bottom: 48/1780
  37581. }
  37582. },
  37583. },
  37584. [
  37585. {
  37586. name: "Normal",
  37587. height: math.unit(5 + 3/12, "feet"),
  37588. default: true
  37589. },
  37590. ]
  37591. ))
  37592. characterMakers.push(() => makeCharacter(
  37593. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37594. {
  37595. front: {
  37596. height: math.unit(5 + 4/12, "feet"),
  37597. weight: math.unit(145, "lb"),
  37598. name: "Front",
  37599. image: {
  37600. source: "./media/characters/starra/front.svg",
  37601. extra: 1790/1691,
  37602. bottom: 91/1881
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Normal",
  37609. height: math.unit(5 + 4/12, "feet"),
  37610. default: true
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37616. {
  37617. front: {
  37618. height: math.unit(3.5, "meters"),
  37619. name: "Front",
  37620. image: {
  37621. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37622. extra: 1248/972,
  37623. bottom: 38/1286
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(3.5, "meters"),
  37631. default: true
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37637. {
  37638. side: {
  37639. height: math.unit(8 + 2/12, "feet"),
  37640. weight: math.unit(1240, "lb"),
  37641. name: "Side",
  37642. image: {
  37643. source: "./media/characters/mika-valentine/side.svg",
  37644. extra: 2670/2501,
  37645. bottom: 250/2920
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Normal",
  37652. height: math.unit(8 + 2/12, "feet"),
  37653. default: true
  37654. },
  37655. ]
  37656. ))
  37657. characterMakers.push(() => makeCharacter(
  37658. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37659. {
  37660. front: {
  37661. height: math.unit(7 + 2/12, "feet"),
  37662. name: "Front",
  37663. image: {
  37664. source: "./media/characters/xoltol/front.svg",
  37665. extra: 2212/2124,
  37666. bottom: 84/2296
  37667. }
  37668. },
  37669. side: {
  37670. height: math.unit(7 + 2/12, "feet"),
  37671. name: "Side",
  37672. image: {
  37673. source: "./media/characters/xoltol/side.svg",
  37674. extra: 2273/2197,
  37675. bottom: 26/2299
  37676. }
  37677. },
  37678. hand: {
  37679. height: math.unit(2.5, "feet"),
  37680. name: "Hand",
  37681. image: {
  37682. source: "./media/characters/xoltol/hand.svg"
  37683. }
  37684. },
  37685. },
  37686. [
  37687. {
  37688. name: "Small-ish",
  37689. height: math.unit(5 + 11/12, "feet")
  37690. },
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(7 + 2/12, "feet")
  37694. },
  37695. {
  37696. name: "\"Macro\"",
  37697. height: math.unit(14 + 9/12, "feet"),
  37698. default: true
  37699. },
  37700. {
  37701. name: "Alternate Height",
  37702. height: math.unit(20, "feet")
  37703. },
  37704. {
  37705. name: "Actually Macro",
  37706. height: math.unit(100, "feet")
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(5 + 2/12, "feet"),
  37715. weight: math.unit(75, "kg"),
  37716. name: "Front",
  37717. image: {
  37718. source: "./media/characters/kotetsu-redwood/front.svg",
  37719. extra: 1053/942,
  37720. bottom: 60/1113
  37721. }
  37722. },
  37723. },
  37724. [
  37725. {
  37726. name: "Normal",
  37727. height: math.unit(5 + 2/12, "feet"),
  37728. default: true
  37729. },
  37730. ]
  37731. ))
  37732. characterMakers.push(() => makeCharacter(
  37733. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37734. {
  37735. front: {
  37736. height: math.unit(2.4, "meters"),
  37737. weight: math.unit(125, "kg"),
  37738. name: "Front",
  37739. image: {
  37740. source: "./media/characters/lilith/front.svg",
  37741. extra: 1590/1513,
  37742. bottom: 203/1793
  37743. }
  37744. },
  37745. },
  37746. [
  37747. {
  37748. name: "Humanoid",
  37749. height: math.unit(2.4, "meters")
  37750. },
  37751. {
  37752. name: "Normal",
  37753. height: math.unit(6, "meters"),
  37754. default: true
  37755. },
  37756. {
  37757. name: "Largest",
  37758. height: math.unit(55, "meters")
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37764. {
  37765. front: {
  37766. height: math.unit(8 + 4/12, "feet"),
  37767. weight: math.unit(535, "lb"),
  37768. name: "Front",
  37769. image: {
  37770. source: "./media/characters/beh'kah-bolger/front.svg",
  37771. extra: 1660/1603,
  37772. bottom: 37/1697
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(8 + 4/12, "feet"),
  37780. default: true
  37781. },
  37782. {
  37783. name: "Kaiju",
  37784. height: math.unit(250, "feet")
  37785. },
  37786. {
  37787. name: "Still Growing",
  37788. height: math.unit(10, "miles")
  37789. },
  37790. {
  37791. name: "Continental",
  37792. height: math.unit(5000, "miles")
  37793. },
  37794. {
  37795. name: "Final Form",
  37796. height: math.unit(2500000, "miles")
  37797. },
  37798. ]
  37799. ))
  37800. characterMakers.push(() => makeCharacter(
  37801. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37802. {
  37803. front: {
  37804. height: math.unit(7 + 2/12, "feet"),
  37805. weight: math.unit(230, "kg"),
  37806. name: "Front",
  37807. image: {
  37808. source: "./media/characters/tatyana-milewska/front.svg",
  37809. extra: 1199/1150,
  37810. bottom: 86/1285
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(7 + 2/12, "feet"),
  37818. default: true
  37819. },
  37820. {
  37821. name: "Big",
  37822. height: math.unit(12, "feet")
  37823. },
  37824. {
  37825. name: "Minimacro",
  37826. height: math.unit(20, "feet")
  37827. },
  37828. {
  37829. name: "Macro",
  37830. height: math.unit(120, "feet")
  37831. },
  37832. ]
  37833. ))
  37834. characterMakers.push(() => makeCharacter(
  37835. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37836. {
  37837. front: {
  37838. height: math.unit(7 + 8/12, "feet"),
  37839. weight: math.unit(152, "kg"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/helen-arri/front.svg",
  37843. extra: 440/423,
  37844. bottom: 14/454
  37845. }
  37846. },
  37847. back: {
  37848. height: math.unit(7 + 8/12, "feet"),
  37849. weight: math.unit(152, "kg"),
  37850. name: "Back",
  37851. image: {
  37852. source: "./media/characters/helen-arri/back.svg",
  37853. extra: 443/426,
  37854. bottom: 8/451
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(7 + 8/12, "feet"),
  37862. default: true
  37863. },
  37864. {
  37865. name: "Big",
  37866. height: math.unit(14, "feet")
  37867. },
  37868. {
  37869. name: "Minimacro",
  37870. height: math.unit(24, "feet")
  37871. },
  37872. {
  37873. name: "Macro",
  37874. height: math.unit(140, "feet")
  37875. },
  37876. ]
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(6, "meters"),
  37883. name: "Front",
  37884. image: {
  37885. source: "./media/characters/ehanu-rehu/front.svg",
  37886. extra: 1800/1800,
  37887. bottom: 59/1859
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(6, "meters"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(7 + 3/12, "feet"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/renholder/front.svg",
  37907. extra: 3096/2960,
  37908. bottom: 250/3346
  37909. }
  37910. },
  37911. },
  37912. [
  37913. {
  37914. name: "Normal Bat",
  37915. height: math.unit(7 + 3/12, "feet"),
  37916. default: true
  37917. },
  37918. {
  37919. name: "Slightly Tall Bat",
  37920. height: math.unit(100, "feet")
  37921. },
  37922. {
  37923. name: "Big Bat",
  37924. height: math.unit(1000, "feet")
  37925. },
  37926. {
  37927. name: "City-Sized Bat",
  37928. height: math.unit(200000, "feet")
  37929. },
  37930. {
  37931. name: "Bigger Bat",
  37932. height: math.unit(10000, "miles")
  37933. },
  37934. {
  37935. name: "Solar Sized Bat",
  37936. height: math.unit(100, "AU")
  37937. },
  37938. {
  37939. name: "Galactic Bat",
  37940. height: math.unit(200000, "lightyears")
  37941. },
  37942. {
  37943. name: "Universally Known Bat",
  37944. height: math.unit(1, "universe")
  37945. },
  37946. ]
  37947. ))
  37948. characterMakers.push(() => makeCharacter(
  37949. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37950. {
  37951. front: {
  37952. height: math.unit(6 + 11/12, "feet"),
  37953. weight: math.unit(250, "lb"),
  37954. name: "Front",
  37955. image: {
  37956. source: "./media/characters/cookiecat/front.svg",
  37957. extra: 893/827,
  37958. bottom: 14/907
  37959. }
  37960. },
  37961. },
  37962. [
  37963. {
  37964. name: "Micro",
  37965. height: math.unit(3, "inches")
  37966. },
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(6 + 11/12, "feet"),
  37970. default: true
  37971. },
  37972. {
  37973. name: "Macro",
  37974. height: math.unit(100, "feet")
  37975. },
  37976. {
  37977. name: "Macro+",
  37978. height: math.unit(404, "feet")
  37979. },
  37980. {
  37981. name: "Megamacro",
  37982. height: math.unit(165, "miles")
  37983. },
  37984. {
  37985. name: "Planetary",
  37986. height: math.unit(4600, "miles")
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(10 + 3/12, "feet"),
  37995. weight: math.unit(1500, "lb"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/tux-kusanagi/front.svg",
  37999. extra: 944/840,
  38000. bottom: 39/983
  38001. }
  38002. },
  38003. back: {
  38004. height: math.unit(10 + 3/12, "feet"),
  38005. weight: math.unit(1500, "lb"),
  38006. name: "Back",
  38007. image: {
  38008. source: "./media/characters/tux-kusanagi/back.svg",
  38009. extra: 941/842,
  38010. bottom: 28/969
  38011. }
  38012. },
  38013. rump: {
  38014. height: math.unit(5.25, "feet"),
  38015. name: "Rump",
  38016. image: {
  38017. source: "./media/characters/tux-kusanagi/rump.svg"
  38018. }
  38019. },
  38020. beak: {
  38021. height: math.unit(1.54, "feet"),
  38022. name: "Beak",
  38023. image: {
  38024. source: "./media/characters/tux-kusanagi/beak.svg"
  38025. }
  38026. },
  38027. },
  38028. [
  38029. {
  38030. name: "Normal",
  38031. height: math.unit(10 + 3/12, "feet"),
  38032. default: true
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(58, "feet"),
  38041. weight: math.unit(200, "tons"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/uzarmazari/front.svg",
  38045. extra: 1575/1455,
  38046. bottom: 152/1727
  38047. }
  38048. },
  38049. back: {
  38050. height: math.unit(58, "feet"),
  38051. weight: math.unit(200, "tons"),
  38052. name: "Back",
  38053. image: {
  38054. source: "./media/characters/uzarmazari/back.svg",
  38055. extra: 1585/1510,
  38056. bottom: 157/1742
  38057. }
  38058. },
  38059. head: {
  38060. height: math.unit(26, "feet"),
  38061. name: "Head",
  38062. image: {
  38063. source: "./media/characters/uzarmazari/head.svg"
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(58, "feet"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38077. {
  38078. side: {
  38079. height: math.unit(15, "feet"),
  38080. name: "Side",
  38081. image: {
  38082. source: "./media/characters/akitu/side.svg",
  38083. extra: 1421/1321,
  38084. bottom: 157/1578
  38085. }
  38086. },
  38087. front: {
  38088. height: math.unit(15, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/akitu/front.svg",
  38092. extra: 1435/1326,
  38093. bottom: 232/1667
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(15, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(10 + 8/12, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/azalie-croixland/front.svg",
  38113. extra: 1972/1856,
  38114. bottom: 31/2003
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Original Height",
  38121. height: math.unit(5 + 4/12, "feet")
  38122. },
  38123. {
  38124. name: "Normal Height",
  38125. height: math.unit(10 + 8/12, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38132. {
  38133. side: {
  38134. height: math.unit(7 + 1/12, "feet"),
  38135. weight: math.unit(245, "lb"),
  38136. name: "Side",
  38137. image: {
  38138. source: "./media/characters/kavus-kazian/side.svg",
  38139. extra: 349/342,
  38140. bottom: 15/364
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(7 + 1/12, "feet"),
  38148. default: true
  38149. },
  38150. ]
  38151. ))
  38152. characterMakers.push(() => makeCharacter(
  38153. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38154. {
  38155. normalFront: {
  38156. height: math.unit(5 + 11/12, "feet"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/moonlight-rose/normal-front.svg",
  38160. extra: 1980/1825,
  38161. bottom: 18/1998
  38162. },
  38163. form: "normal",
  38164. default: true
  38165. },
  38166. normalBack: {
  38167. height: math.unit(5 + 11/12, "feet"),
  38168. name: "Back",
  38169. image: {
  38170. source: "./media/characters/moonlight-rose/normal-back.svg",
  38171. extra: 2010/1839,
  38172. bottom: 10/2020
  38173. },
  38174. form: "normal"
  38175. },
  38176. demonFront: {
  38177. height: math.unit(1.5, "earths"),
  38178. name: "Front",
  38179. image: {
  38180. source: "./media/characters/moonlight-rose/demon.svg",
  38181. extra: 1400/1294,
  38182. bottom: 45/1445
  38183. },
  38184. form: "demon",
  38185. default: true
  38186. },
  38187. terraFront: {
  38188. height: math.unit(1.5, "earths"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/moonlight-rose/terra.svg"
  38192. },
  38193. form: "terra",
  38194. default: true
  38195. },
  38196. jupiterFront: {
  38197. height: math.unit(69911*2, "km"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38201. extra: 1367/1286,
  38202. bottom: 55/1422
  38203. },
  38204. form: "jupiter",
  38205. default: true
  38206. },
  38207. neptuneFront: {
  38208. height: math.unit(24622*2, "feet"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38212. extra: 1851/1712,
  38213. bottom: 0/1851
  38214. },
  38215. form: "neptune",
  38216. default: true
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "\"Natural\" Height",
  38222. height: math.unit(5 + 11/12, "feet"),
  38223. form: "normal"
  38224. },
  38225. {
  38226. name: "Smallest comfortable size",
  38227. height: math.unit(40, "meters"),
  38228. form: "normal"
  38229. },
  38230. {
  38231. name: "Common size",
  38232. height: math.unit(50, "km"),
  38233. form: "normal",
  38234. default: true
  38235. },
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(1.5, "earths"),
  38239. form: "demon",
  38240. default: true
  38241. },
  38242. {
  38243. name: "Universal",
  38244. height: math.unit(15, "universes"),
  38245. form: "demon"
  38246. },
  38247. {
  38248. name: "Earth",
  38249. height: math.unit(1.5, "earths"),
  38250. form: "terra",
  38251. default: true
  38252. },
  38253. {
  38254. name: "Super Earth",
  38255. height: math.unit(67.5, "earths"),
  38256. form: "terra"
  38257. },
  38258. {
  38259. name: "Doesn't fit in a solar system...",
  38260. height: math.unit(1, "galaxy"),
  38261. form: "terra"
  38262. },
  38263. {
  38264. name: "Saturn",
  38265. height: math.unit(58232*2, "km"),
  38266. form: "jupiter"
  38267. },
  38268. {
  38269. name: "Jupiter",
  38270. height: math.unit(69911*2, "km"),
  38271. form: "jupiter",
  38272. default: true
  38273. },
  38274. {
  38275. name: "HD 100546 b",
  38276. height: math.unit(482938, "km"),
  38277. form: "jupiter"
  38278. },
  38279. {
  38280. name: "Enceladus",
  38281. height: math.unit(513*2, "km"),
  38282. form: "neptune"
  38283. },
  38284. {
  38285. name: "Europe",
  38286. height: math.unit(1560*2, "km"),
  38287. form: "neptune"
  38288. },
  38289. {
  38290. name: "Neptune",
  38291. height: math.unit(24622*2, "km"),
  38292. form: "neptune",
  38293. default: true
  38294. },
  38295. {
  38296. name: "CoRoT-9b",
  38297. height: math.unit(75067*2, "km"),
  38298. form: "neptune"
  38299. },
  38300. ],
  38301. {
  38302. "normal": {
  38303. name: "Normal",
  38304. default: true
  38305. },
  38306. "demon": {
  38307. name: "Demon"
  38308. },
  38309. "terra": {
  38310. name: "Terra"
  38311. },
  38312. "jupiter": {
  38313. name: "Jupiter"
  38314. },
  38315. "neptune": {
  38316. name: "Neptune"
  38317. }
  38318. }
  38319. ))
  38320. characterMakers.push(() => makeCharacter(
  38321. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38322. {
  38323. front: {
  38324. height: math.unit(16, "feet"),
  38325. weight: math.unit(610, "kg"),
  38326. name: "Front",
  38327. image: {
  38328. source: "./media/characters/huckle/front.svg",
  38329. extra: 1731/1625,
  38330. bottom: 33/1764
  38331. }
  38332. },
  38333. back: {
  38334. height: math.unit(16, "feet"),
  38335. weight: math.unit(610, "kg"),
  38336. name: "Back",
  38337. image: {
  38338. source: "./media/characters/huckle/back.svg",
  38339. extra: 1738/1651,
  38340. bottom: 37/1775
  38341. }
  38342. },
  38343. laughing: {
  38344. height: math.unit(3.75, "feet"),
  38345. name: "Laughing",
  38346. image: {
  38347. source: "./media/characters/huckle/laughing.svg"
  38348. }
  38349. },
  38350. angry: {
  38351. height: math.unit(4.15, "feet"),
  38352. name: "Angry",
  38353. image: {
  38354. source: "./media/characters/huckle/angry.svg"
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(16, "feet"),
  38362. default: true
  38363. },
  38364. {
  38365. name: "Mini Macro",
  38366. height: math.unit(463, "feet")
  38367. },
  38368. {
  38369. name: "Macro",
  38370. height: math.unit(1680, "meters")
  38371. },
  38372. {
  38373. name: "Mega Macro",
  38374. height: math.unit(175, "km")
  38375. },
  38376. {
  38377. name: "Terra Macro",
  38378. height: math.unit(32, "gigameters")
  38379. },
  38380. {
  38381. name: "Multiverse+",
  38382. height: math.unit(2.56e23, "yottameters")
  38383. },
  38384. ]
  38385. ))
  38386. characterMakers.push(() => makeCharacter(
  38387. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38388. {
  38389. front: {
  38390. height: math.unit(6 + 9/12, "feet"),
  38391. weight: math.unit(280, "lb"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/candy/front.svg",
  38395. extra: 234/217,
  38396. bottom: 11/245
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Really Small",
  38403. height: math.unit(0.1, "nm")
  38404. },
  38405. {
  38406. name: "Micro",
  38407. height: math.unit(2, "inches")
  38408. },
  38409. {
  38410. name: "Normal",
  38411. height: math.unit(6 + 9/12, "feet"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Small Macro",
  38416. height: math.unit(69, "feet")
  38417. },
  38418. {
  38419. name: "Macro",
  38420. height: math.unit(160, "feet")
  38421. },
  38422. {
  38423. name: "Megamacro",
  38424. height: math.unit(22000, "miles")
  38425. },
  38426. {
  38427. name: "Gigamacro",
  38428. height: math.unit(50000, "miles")
  38429. },
  38430. ]
  38431. ))
  38432. characterMakers.push(() => makeCharacter(
  38433. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38434. {
  38435. front: {
  38436. height: math.unit(4, "feet"),
  38437. weight: math.unit(90, "lb"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/joey-mcdonald/front.svg",
  38441. extra: 1059/852,
  38442. bottom: 33/1092
  38443. }
  38444. },
  38445. back: {
  38446. height: math.unit(4, "feet"),
  38447. weight: math.unit(90, "lb"),
  38448. name: "Back",
  38449. image: {
  38450. source: "./media/characters/joey-mcdonald/back.svg",
  38451. extra: 1077/879,
  38452. bottom: 5/1082
  38453. }
  38454. },
  38455. frontKobold: {
  38456. height: math.unit(4, "feet"),
  38457. weight: math.unit(100, "lb"),
  38458. name: "Front-kobold",
  38459. image: {
  38460. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38461. extra: 1480/1367,
  38462. bottom: 0/1480
  38463. }
  38464. },
  38465. backKobold: {
  38466. height: math.unit(4, "feet"),
  38467. weight: math.unit(100, "lb"),
  38468. name: "Back-kobold",
  38469. image: {
  38470. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38471. extra: 1449/1361,
  38472. bottom: 0/1449
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(4, "feet"),
  38480. default: true
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(12 + 6/12, "feet"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/kass-lockheed/front.svg",
  38492. extra: 354/343,
  38493. bottom: 9/363
  38494. }
  38495. },
  38496. back: {
  38497. height: math.unit(12 + 6/12, "feet"),
  38498. name: "Back",
  38499. image: {
  38500. source: "./media/characters/kass-lockheed/back.svg",
  38501. extra: 364/352,
  38502. bottom: 3/367
  38503. }
  38504. },
  38505. dick: {
  38506. height: math.unit(3.12, "feet"),
  38507. name: "Dick",
  38508. image: {
  38509. source: "./media/characters/kass-lockheed/dick.svg"
  38510. }
  38511. },
  38512. head: {
  38513. height: math.unit(2.6, "feet"),
  38514. name: "Head",
  38515. image: {
  38516. source: "./media/characters/kass-lockheed/head.svg"
  38517. }
  38518. },
  38519. bleh: {
  38520. height: math.unit(2.85, "feet"),
  38521. name: "Bleh",
  38522. image: {
  38523. source: "./media/characters/kass-lockheed/bleh.svg"
  38524. }
  38525. },
  38526. smug: {
  38527. height: math.unit(2.85, "feet"),
  38528. name: "Smug",
  38529. image: {
  38530. source: "./media/characters/kass-lockheed/smug.svg"
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(12 + 6/12, "feet"),
  38538. default: true
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(6 + 2/12, "feet"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/taylor/front.svg",
  38550. extra: 639/495,
  38551. bottom: 12/651
  38552. }
  38553. },
  38554. },
  38555. [
  38556. {
  38557. name: "Normal",
  38558. height: math.unit(6 + 2/12, "feet"),
  38559. default: true
  38560. },
  38561. {
  38562. name: "Big",
  38563. height: math.unit(15, "feet")
  38564. },
  38565. {
  38566. name: "Lorg",
  38567. height: math.unit(80, "feet")
  38568. },
  38569. {
  38570. name: "Too Lorg",
  38571. height: math.unit(120, "feet")
  38572. },
  38573. ]
  38574. ))
  38575. characterMakers.push(() => makeCharacter(
  38576. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38577. {
  38578. front: {
  38579. height: math.unit(15, "feet"),
  38580. name: "Front",
  38581. image: {
  38582. source: "./media/characters/kaizer/front.svg",
  38583. extra: 1612/1436,
  38584. bottom: 43/1655
  38585. }
  38586. },
  38587. },
  38588. [
  38589. {
  38590. name: "Normal",
  38591. height: math.unit(15, "feet"),
  38592. default: true
  38593. },
  38594. ]
  38595. ))
  38596. characterMakers.push(() => makeCharacter(
  38597. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38598. {
  38599. front: {
  38600. height: math.unit(2, "feet"),
  38601. weight: math.unit(30, "lb"),
  38602. name: "Front",
  38603. image: {
  38604. source: "./media/characters/sandy/front.svg",
  38605. extra: 1439/1307,
  38606. bottom: 194/1633
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(2, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(3, "feet"),
  38623. name: "Front",
  38624. image: {
  38625. source: "./media/characters/mellvi/front.svg",
  38626. extra: 1831/1630,
  38627. bottom: 58/1889
  38628. }
  38629. },
  38630. },
  38631. [
  38632. {
  38633. name: "Normal",
  38634. height: math.unit(3, "feet"),
  38635. default: true
  38636. },
  38637. ]
  38638. ))
  38639. characterMakers.push(() => makeCharacter(
  38640. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38641. {
  38642. front: {
  38643. height: math.unit(5 + 11/12, "feet"),
  38644. weight: math.unit(200, "lb"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/shirou/front.svg",
  38648. extra: 2491/2383,
  38649. bottom: 189/2680
  38650. }
  38651. },
  38652. back: {
  38653. height: math.unit(5 + 11/12, "feet"),
  38654. weight: math.unit(200, "lb"),
  38655. name: "Back",
  38656. image: {
  38657. source: "./media/characters/shirou/back.svg",
  38658. extra: 2554/2450,
  38659. bottom: 76/2630
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Normal",
  38666. height: math.unit(5 + 11/12, "feet"),
  38667. default: true
  38668. },
  38669. ]
  38670. ))
  38671. characterMakers.push(() => makeCharacter(
  38672. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38673. {
  38674. front: {
  38675. height: math.unit(6 + 3/12, "feet"),
  38676. weight: math.unit(177, "lb"),
  38677. name: "Front",
  38678. image: {
  38679. source: "./media/characters/noryu/front.svg",
  38680. extra: 973/885,
  38681. bottom: 10/983
  38682. }
  38683. },
  38684. },
  38685. [
  38686. {
  38687. name: "Normal",
  38688. height: math.unit(6 + 3/12, "feet"),
  38689. default: true
  38690. },
  38691. ]
  38692. ))
  38693. characterMakers.push(() => makeCharacter(
  38694. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38695. {
  38696. front: {
  38697. height: math.unit(5 + 6/12, "feet"),
  38698. weight: math.unit(170, "lb"),
  38699. name: "Front",
  38700. image: {
  38701. source: "./media/characters/mevolas-rubenido/front.svg",
  38702. extra: 2109/1901,
  38703. bottom: 96/2205
  38704. }
  38705. },
  38706. },
  38707. [
  38708. {
  38709. name: "Normal",
  38710. height: math.unit(5 + 6/12, "feet"),
  38711. default: true
  38712. },
  38713. ]
  38714. ))
  38715. characterMakers.push(() => makeCharacter(
  38716. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38717. {
  38718. front: {
  38719. height: math.unit(100, "feet"),
  38720. name: "Front",
  38721. image: {
  38722. source: "./media/characters/dee/front.svg",
  38723. extra: 2153/2036,
  38724. bottom: 59/2212
  38725. }
  38726. },
  38727. back: {
  38728. height: math.unit(100, "feet"),
  38729. name: "Back",
  38730. image: {
  38731. source: "./media/characters/dee/back.svg",
  38732. extra: 2183/2058,
  38733. bottom: 75/2258
  38734. }
  38735. },
  38736. foot: {
  38737. height: math.unit(19.43, "feet"),
  38738. name: "Foot",
  38739. image: {
  38740. source: "./media/characters/dee/foot.svg"
  38741. }
  38742. },
  38743. hoof: {
  38744. height: math.unit(20.6, "feet"),
  38745. name: "Hoof",
  38746. image: {
  38747. source: "./media/characters/dee/hoof.svg"
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Macro",
  38754. height: math.unit(100, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(5 + 6/12, "feet"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/teh/front.svg",
  38767. extra: 1002/847,
  38768. bottom: 62/1064
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(5 + 6/12, "feet"),
  38776. default: true
  38777. },
  38778. ]
  38779. ))
  38780. characterMakers.push(() => makeCharacter(
  38781. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38782. {
  38783. side: {
  38784. height: math.unit(6 + 1/12, "feet"),
  38785. weight: math.unit(204, "lb"),
  38786. name: "Side",
  38787. image: {
  38788. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38789. extra: 974/775,
  38790. bottom: 169/1143
  38791. }
  38792. },
  38793. sitting: {
  38794. height: math.unit(6 + 2/12, "feet"),
  38795. weight: math.unit(204, "lb"),
  38796. name: "Sitting",
  38797. image: {
  38798. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38799. extra: 1175/964,
  38800. bottom: 378/1553
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(6 + 1/12, "feet"),
  38808. default: true
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(6, "inches"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/tululi/front.svg",
  38820. extra: 1997/1876,
  38821. bottom: 20/2017
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(6, "inches"),
  38829. default: true
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(4 + 1/12, "feet"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/star/front.svg",
  38841. extra: 1493/1189,
  38842. bottom: 48/1541
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(4 + 1/12, "feet"),
  38850. default: true
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(6 + 3/12, "feet"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/comet/front.svg",
  38862. extra: 1681/1462,
  38863. bottom: 26/1707
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(6 + 3/12, "feet"),
  38871. default: true
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(950, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/vortex/front.svg",
  38883. extra: 1497/1434,
  38884. bottom: 56/1553
  38885. }
  38886. },
  38887. maw: {
  38888. height: math.unit(285, "feet"),
  38889. name: "Maw",
  38890. image: {
  38891. source: "./media/characters/vortex/maw.svg"
  38892. }
  38893. },
  38894. },
  38895. [
  38896. {
  38897. name: "Macro",
  38898. height: math.unit(950, "feet"),
  38899. default: true
  38900. },
  38901. ]
  38902. ))
  38903. characterMakers.push(() => makeCharacter(
  38904. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38905. {
  38906. front: {
  38907. height: math.unit(600, "feet"),
  38908. weight: math.unit(0.02, "grams"),
  38909. name: "Front",
  38910. image: {
  38911. source: "./media/characters/doodle/front.svg",
  38912. extra: 1578/1413,
  38913. bottom: 37/1615
  38914. }
  38915. },
  38916. },
  38917. [
  38918. {
  38919. name: "Macro",
  38920. height: math.unit(600, "feet"),
  38921. default: true
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(6 + 6/12, "feet"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/jai/front.svg",
  38933. extra: 1645/1534,
  38934. bottom: 115/1760
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Normal",
  38941. height: math.unit(6 + 6/12, "feet"),
  38942. default: true
  38943. },
  38944. ]
  38945. ))
  38946. characterMakers.push(() => makeCharacter(
  38947. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38948. {
  38949. front: {
  38950. height: math.unit(6 + 8/12, "feet"),
  38951. name: "Front",
  38952. image: {
  38953. source: "./media/characters/pixel/front.svg",
  38954. extra: 1900/1735,
  38955. bottom: 63/1963
  38956. }
  38957. },
  38958. },
  38959. [
  38960. {
  38961. name: "Normal",
  38962. height: math.unit(6 + 8/12, "feet"),
  38963. default: true
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38969. {
  38970. back: {
  38971. height: math.unit(4 + 1/12, "feet"),
  38972. weight: math.unit(75, "lb"),
  38973. name: "Back",
  38974. image: {
  38975. source: "./media/characters/rhett/back.svg",
  38976. extra: 930/878,
  38977. bottom: 25/955
  38978. }
  38979. },
  38980. front: {
  38981. height: math.unit(4 + 1/12, "feet"),
  38982. weight: math.unit(75, "lb"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/rhett/front.svg",
  38986. extra: 1682/1586,
  38987. bottom: 92/1774
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Micro",
  38994. height: math.unit(8, "inches")
  38995. },
  38996. {
  38997. name: "Tiny",
  38998. height: math.unit(2, "feet")
  38999. },
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(4 + 1/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(3 + 3/12, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/penny/front.svg",
  39015. extra: 1406/1311,
  39016. bottom: 26/1432
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(3 + 3/12, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(4 + 11/12, "feet"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/monty/front.svg",
  39036. extra: 1479/1209,
  39037. bottom: 0/1479
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(4 + 11/12, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(8 + 4/12, "feet"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/sterling/front.svg",
  39057. extra: 1420/1236,
  39058. bottom: 27/1447
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(8 + 4/12, "feet"),
  39066. default: true
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(15, "feet"),
  39075. name: "Front",
  39076. image: {
  39077. source: "./media/characters/marble/front.svg",
  39078. extra: 973/937,
  39079. bottom: 32/1005
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Normal",
  39086. height: math.unit(15, "feet"),
  39087. default: true
  39088. },
  39089. ]
  39090. ))
  39091. characterMakers.push(() => makeCharacter(
  39092. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39093. {
  39094. front: {
  39095. height: math.unit(3, "inches"),
  39096. name: "Front",
  39097. image: {
  39098. source: "./media/characters/powder/front.svg",
  39099. extra: 1504/1334,
  39100. bottom: 518/2022
  39101. }
  39102. },
  39103. },
  39104. [
  39105. {
  39106. name: "Normal",
  39107. height: math.unit(3, "inches"),
  39108. default: true
  39109. },
  39110. ]
  39111. ))
  39112. characterMakers.push(() => makeCharacter(
  39113. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39114. {
  39115. front: {
  39116. height: math.unit(4 + 5/12, "feet"),
  39117. name: "Front",
  39118. image: {
  39119. source: "./media/characters/joey-raccoon/front.svg",
  39120. extra: 1273/1197,
  39121. bottom: 0/1273
  39122. }
  39123. },
  39124. },
  39125. [
  39126. {
  39127. name: "Normal",
  39128. height: math.unit(4 + 5/12, "feet"),
  39129. default: true
  39130. },
  39131. ]
  39132. ))
  39133. characterMakers.push(() => makeCharacter(
  39134. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39135. {
  39136. front: {
  39137. height: math.unit(8 + 4/12, "feet"),
  39138. name: "Front",
  39139. image: {
  39140. source: "./media/characters/vick/front.svg",
  39141. extra: 2187/2118,
  39142. bottom: 47/2234
  39143. }
  39144. },
  39145. },
  39146. [
  39147. {
  39148. name: "Normal",
  39149. height: math.unit(8 + 4/12, "feet"),
  39150. default: true
  39151. },
  39152. ]
  39153. ))
  39154. characterMakers.push(() => makeCharacter(
  39155. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39156. {
  39157. front: {
  39158. height: math.unit(5 + 5/12, "feet"),
  39159. name: "Front",
  39160. image: {
  39161. source: "./media/characters/mitsy/front.svg",
  39162. extra: 1842/1695,
  39163. bottom: 0/1842
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(5 + 5/12, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(6 + 3/12, "feet"),
  39180. name: "Front",
  39181. image: {
  39182. source: "./media/characters/silvy/front.svg",
  39183. extra: 1995/1836,
  39184. bottom: 225/2220
  39185. }
  39186. },
  39187. },
  39188. [
  39189. {
  39190. name: "Normal",
  39191. height: math.unit(6 + 3/12, "feet"),
  39192. default: true
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(3 + 8/12, "feet"),
  39201. name: "Front",
  39202. image: {
  39203. source: "./media/characters/rodney/front.svg",
  39204. extra: 1956/1747,
  39205. bottom: 31/1987
  39206. }
  39207. },
  39208. frontDressed: {
  39209. height: math.unit(2.9, "feet"),
  39210. name: "Front (Dressed)",
  39211. image: {
  39212. source: "./media/characters/rodney/front-dressed.svg",
  39213. extra: 1382/1241,
  39214. bottom: 385/1767
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(3 + 8/12, "feet"),
  39222. default: true
  39223. },
  39224. ]
  39225. ))
  39226. characterMakers.push(() => makeCharacter(
  39227. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39228. {
  39229. front: {
  39230. height: math.unit(5 + 9/12, "feet"),
  39231. weight: math.unit(194, "lbs"),
  39232. name: "Front",
  39233. image: {
  39234. source: "./media/characters/zakail-sudekai/front.svg",
  39235. extra: 2696/2533,
  39236. bottom: 248/2944
  39237. }
  39238. },
  39239. maw: {
  39240. height: math.unit(1.35, "feet"),
  39241. name: "Maw",
  39242. image: {
  39243. source: "./media/characters/zakail-sudekai/maw.svg"
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(5 + 9/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(8 + 4/12, "feet"),
  39260. weight: math.unit(1200, "lb"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/eleanor/front.svg",
  39264. extra: 1226/1192,
  39265. bottom: 52/1278
  39266. }
  39267. },
  39268. back: {
  39269. height: math.unit(8 + 4/12, "feet"),
  39270. weight: math.unit(1200, "lb"),
  39271. name: "Back",
  39272. image: {
  39273. source: "./media/characters/eleanor/back.svg",
  39274. extra: 1242/1184,
  39275. bottom: 60/1302
  39276. }
  39277. },
  39278. head: {
  39279. height: math.unit(2.62, "feet"),
  39280. name: "Head",
  39281. image: {
  39282. source: "./media/characters/eleanor/head.svg"
  39283. }
  39284. },
  39285. },
  39286. [
  39287. {
  39288. name: "Normal",
  39289. height: math.unit(8 + 4/12, "feet"),
  39290. default: true
  39291. },
  39292. ]
  39293. ))
  39294. characterMakers.push(() => makeCharacter(
  39295. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39296. {
  39297. front: {
  39298. height: math.unit(8 + 4/12, "feet"),
  39299. weight: math.unit(750, "lb"),
  39300. name: "Front",
  39301. image: {
  39302. source: "./media/characters/tanya/front.svg",
  39303. extra: 1749/1615,
  39304. bottom: 33/1782
  39305. }
  39306. },
  39307. },
  39308. [
  39309. {
  39310. name: "Normal",
  39311. height: math.unit(8 + 4/12, "feet"),
  39312. default: true
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(5, "feet"),
  39321. weight: math.unit(225, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/cindy/front.svg",
  39325. extra: 1320/1250,
  39326. bottom: 42/1362
  39327. }
  39328. },
  39329. frontDressed: {
  39330. height: math.unit(5, "feet"),
  39331. weight: math.unit(225, "lb"),
  39332. name: "Front (Dressed)",
  39333. image: {
  39334. source: "./media/characters/cindy/front-dressed.svg",
  39335. extra: 1320/1250,
  39336. bottom: 42/1362
  39337. }
  39338. },
  39339. back: {
  39340. height: math.unit(5, "feet"),
  39341. weight: math.unit(225, "lb"),
  39342. name: "Back",
  39343. image: {
  39344. source: "./media/characters/cindy/back.svg",
  39345. extra: 1384/1346,
  39346. bottom: 14/1398
  39347. }
  39348. },
  39349. },
  39350. [
  39351. {
  39352. name: "Normal",
  39353. height: math.unit(5, "feet"),
  39354. default: true
  39355. },
  39356. ]
  39357. ))
  39358. characterMakers.push(() => makeCharacter(
  39359. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39360. {
  39361. front: {
  39362. height: math.unit(6 + 9/12, "feet"),
  39363. weight: math.unit(440, "lb"),
  39364. name: "Front",
  39365. image: {
  39366. source: "./media/characters/wilbur-owen/front.svg",
  39367. extra: 1575/1448,
  39368. bottom: 72/1647
  39369. }
  39370. },
  39371. back: {
  39372. height: math.unit(6 + 9/12, "feet"),
  39373. weight: math.unit(440, "lb"),
  39374. name: "Back",
  39375. image: {
  39376. source: "./media/characters/wilbur-owen/back.svg",
  39377. extra: 1578/1445,
  39378. bottom: 36/1614
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(6 + 9/12, "feet"),
  39386. default: true
  39387. },
  39388. ]
  39389. ))
  39390. characterMakers.push(() => makeCharacter(
  39391. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39392. {
  39393. front: {
  39394. height: math.unit(6 + 5/12, "feet"),
  39395. weight: math.unit(650, "lb"),
  39396. name: "Front",
  39397. image: {
  39398. source: "./media/characters/keegan/front.svg",
  39399. extra: 2387/2198,
  39400. bottom: 33/2420
  39401. }
  39402. },
  39403. side: {
  39404. height: math.unit(6 + 5/12, "feet"),
  39405. weight: math.unit(650, "lb"),
  39406. name: "Side",
  39407. image: {
  39408. source: "./media/characters/keegan/side.svg",
  39409. extra: 2390/2202,
  39410. bottom: 47/2437
  39411. }
  39412. },
  39413. back: {
  39414. height: math.unit(6 + 5/12, "feet"),
  39415. weight: math.unit(650, "lb"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/keegan/back.svg",
  39419. extra: 2418/2268,
  39420. bottom: 15/2433
  39421. }
  39422. },
  39423. frontSfw: {
  39424. height: math.unit(6 + 5/12, "feet"),
  39425. weight: math.unit(650, "lb"),
  39426. name: "Front (SFW)",
  39427. image: {
  39428. source: "./media/characters/keegan/front-sfw.svg",
  39429. extra: 2387/2198,
  39430. bottom: 33/2420
  39431. }
  39432. },
  39433. beans: {
  39434. height: math.unit(1.85, "feet"),
  39435. name: "Beans",
  39436. image: {
  39437. source: "./media/characters/keegan/beans.svg"
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(6 + 5/12, "feet"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(9, "feet"),
  39454. name: "Front",
  39455. image: {
  39456. source: "./media/characters/colton/front.svg",
  39457. extra: 1589/1326,
  39458. bottom: 139/1728
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Normal",
  39465. height: math.unit(9, "feet"),
  39466. default: true
  39467. },
  39468. ]
  39469. ))
  39470. characterMakers.push(() => makeCharacter(
  39471. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39472. {
  39473. front: {
  39474. height: math.unit(2 + 9/12, "feet"),
  39475. name: "Front",
  39476. image: {
  39477. source: "./media/characters/bora/front.svg",
  39478. extra: 1265/1250,
  39479. bottom: 24/1289
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(2 + 9/12, "feet"),
  39487. default: true
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(8, "feet"),
  39496. name: "Front",
  39497. image: {
  39498. source: "./media/characters/myu-myu/front.svg",
  39499. extra: 1949/1857,
  39500. bottom: 90/2039
  39501. }
  39502. },
  39503. },
  39504. [
  39505. {
  39506. name: "Normal",
  39507. height: math.unit(8, "feet"),
  39508. default: true
  39509. },
  39510. {
  39511. name: "Big",
  39512. height: math.unit(15, "feet")
  39513. },
  39514. {
  39515. name: "BIG",
  39516. height: math.unit(25, "feet")
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39522. {
  39523. side: {
  39524. height: math.unit(7 + 5/12, "feet"),
  39525. weight: math.unit(2800, "lb"),
  39526. name: "Side",
  39527. image: {
  39528. source: "./media/characters/haloren/side.svg",
  39529. extra: 1793/409,
  39530. bottom: 59/1852
  39531. }
  39532. },
  39533. frontPaw: {
  39534. height: math.unit(2.36, "feet"),
  39535. name: "Front paw",
  39536. image: {
  39537. source: "./media/characters/haloren/front-paw.svg"
  39538. }
  39539. },
  39540. hindPaw: {
  39541. height: math.unit(3.18, "feet"),
  39542. name: "Hind paw",
  39543. image: {
  39544. source: "./media/characters/haloren/hind-paw.svg"
  39545. }
  39546. },
  39547. maw: {
  39548. height: math.unit(5.05, "feet"),
  39549. name: "Maw",
  39550. image: {
  39551. source: "./media/characters/haloren/maw.svg"
  39552. }
  39553. },
  39554. dick: {
  39555. height: math.unit(2.90, "feet"),
  39556. name: "Dick",
  39557. image: {
  39558. source: "./media/characters/haloren/dick.svg"
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(7 + 5/12, "feet"),
  39566. default: true
  39567. },
  39568. {
  39569. name: "Enhanced",
  39570. height: math.unit(14 + 3/12, "feet")
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(171, "cm"),
  39579. name: "Front",
  39580. image: {
  39581. source: "./media/characters/kimmy/front.svg",
  39582. extra: 1491/1435,
  39583. bottom: 53/1544
  39584. }
  39585. },
  39586. },
  39587. [
  39588. {
  39589. name: "Small",
  39590. height: math.unit(9, "cm")
  39591. },
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(171, "cm"),
  39595. default: true
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(8, "feet"),
  39604. weight: math.unit(300, "lb"),
  39605. name: "Front",
  39606. image: {
  39607. source: "./media/characters/galeboomer/front.svg",
  39608. extra: 4651/4415,
  39609. bottom: 162/4813
  39610. }
  39611. },
  39612. back: {
  39613. height: math.unit(8, "feet"),
  39614. weight: math.unit(300, "lb"),
  39615. name: "Back",
  39616. image: {
  39617. source: "./media/characters/galeboomer/back.svg",
  39618. extra: 4544/4314,
  39619. bottom: 16/4560
  39620. }
  39621. },
  39622. frontAlt: {
  39623. height: math.unit(8, "feet"),
  39624. weight: math.unit(300, "lb"),
  39625. name: "Front (Alt)",
  39626. image: {
  39627. source: "./media/characters/galeboomer/front-alt.svg",
  39628. extra: 4458/4228,
  39629. bottom: 68/4526
  39630. }
  39631. },
  39632. maw: {
  39633. height: math.unit(1.2, "feet"),
  39634. name: "Maw",
  39635. image: {
  39636. source: "./media/characters/galeboomer/maw.svg"
  39637. }
  39638. },
  39639. },
  39640. [
  39641. {
  39642. name: "Normal",
  39643. height: math.unit(8, "feet"),
  39644. default: true
  39645. },
  39646. ]
  39647. ))
  39648. characterMakers.push(() => makeCharacter(
  39649. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39650. {
  39651. front: {
  39652. height: math.unit(5 + 9/12, "feet"),
  39653. weight: math.unit(120, "lb"),
  39654. name: "Front",
  39655. image: {
  39656. source: "./media/characters/chyr/front.svg",
  39657. extra: 1323/1254,
  39658. bottom: 63/1386
  39659. }
  39660. },
  39661. back: {
  39662. height: math.unit(5 + 9/12, "feet"),
  39663. weight: math.unit(120, "lb"),
  39664. name: "Back",
  39665. image: {
  39666. source: "./media/characters/chyr/back.svg",
  39667. extra: 1323/1252,
  39668. bottom: 48/1371
  39669. }
  39670. },
  39671. },
  39672. [
  39673. {
  39674. name: "Normal",
  39675. height: math.unit(5 + 9/12, "feet"),
  39676. default: true
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39682. {
  39683. front: {
  39684. height: math.unit(7, "feet"),
  39685. weight: math.unit(310, "lb"),
  39686. name: "Front",
  39687. image: {
  39688. source: "./media/characters/solarus/front.svg",
  39689. extra: 2415/2021,
  39690. bottom: 103/2518
  39691. }
  39692. },
  39693. back: {
  39694. height: math.unit(7, "feet"),
  39695. weight: math.unit(310, "lb"),
  39696. name: "Back",
  39697. image: {
  39698. source: "./media/characters/solarus/back.svg",
  39699. extra: 2463/2089,
  39700. bottom: 79/2542
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Normal",
  39707. height: math.unit(7, "feet"),
  39708. default: true
  39709. },
  39710. ]
  39711. ))
  39712. characterMakers.push(() => makeCharacter(
  39713. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39714. {
  39715. front: {
  39716. height: math.unit(16, "feet"),
  39717. name: "Front",
  39718. image: {
  39719. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39720. extra: 1844/1780,
  39721. bottom: 58/1902
  39722. }
  39723. },
  39724. winterCoat: {
  39725. height: math.unit(16, "feet"),
  39726. name: "Winter Coat",
  39727. image: {
  39728. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39729. extra: 1807/1775,
  39730. bottom: 69/1876
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(16, "feet"),
  39738. default: true
  39739. },
  39740. {
  39741. name: "Chicago Size",
  39742. height: math.unit(560, "feet")
  39743. },
  39744. ]
  39745. ))
  39746. characterMakers.push(() => makeCharacter(
  39747. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39748. {
  39749. front: {
  39750. height: math.unit(11 + 6/12, "feet"),
  39751. weight: math.unit(1366, "lb"),
  39752. name: "Front",
  39753. image: {
  39754. source: "./media/characters/lexor/front.svg",
  39755. extra: 1560/1481,
  39756. bottom: 211/1771
  39757. }
  39758. },
  39759. back: {
  39760. height: math.unit(11 + 6/12, "feet"),
  39761. weight: math.unit(1366, "lb"),
  39762. name: "Back",
  39763. image: {
  39764. source: "./media/characters/lexor/back.svg",
  39765. extra: 1614/1533,
  39766. bottom: 76/1690
  39767. }
  39768. },
  39769. maw: {
  39770. height: math.unit(3, "feet"),
  39771. name: "Maw",
  39772. image: {
  39773. source: "./media/characters/lexor/maw.svg"
  39774. }
  39775. },
  39776. dick: {
  39777. height: math.unit(2.59, "feet"),
  39778. name: "Dick",
  39779. image: {
  39780. source: "./media/characters/lexor/dick.svg"
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(11 + 6/12, "feet"),
  39788. default: true
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(5 + 8/12, "feet"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/magnum/front.svg",
  39800. extra: 942/855,
  39801. bottom: 26/968
  39802. }
  39803. },
  39804. },
  39805. [
  39806. {
  39807. name: "Normal",
  39808. height: math.unit(5 + 8/12, "feet"),
  39809. default: true
  39810. },
  39811. ]
  39812. ))
  39813. characterMakers.push(() => makeCharacter(
  39814. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39815. {
  39816. front: {
  39817. height: math.unit(18 + 4/12, "feet"),
  39818. weight: math.unit(1500, "kg"),
  39819. name: "Front",
  39820. image: {
  39821. source: "./media/characters/solas-sharpsman/front.svg",
  39822. extra: 1698/1589,
  39823. bottom: 0/1698
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(18 + 4/12, "feet"),
  39831. default: true
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(5 + 5/12, "feet"),
  39840. weight: math.unit(180, "lb"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/october/front.svg",
  39844. extra: 1800/1650,
  39845. bottom: 0/1800
  39846. }
  39847. },
  39848. frontNsfw: {
  39849. height: math.unit(5 + 5/12, "feet"),
  39850. weight: math.unit(180, "lb"),
  39851. name: "Front (NSFW)",
  39852. image: {
  39853. source: "./media/characters/october/front-nsfw.svg",
  39854. extra: 1392/1307,
  39855. bottom: 42/1434
  39856. }
  39857. },
  39858. },
  39859. [
  39860. {
  39861. name: "Normal",
  39862. height: math.unit(5 + 5/12, "feet"),
  39863. default: true
  39864. },
  39865. ]
  39866. ))
  39867. characterMakers.push(() => makeCharacter(
  39868. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39869. {
  39870. front: {
  39871. height: math.unit(8 + 6/12, "feet"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/essynkardi/front.svg",
  39875. extra: 1541/1457,
  39876. bottom: 47/1588
  39877. }
  39878. },
  39879. },
  39880. [
  39881. {
  39882. name: "Normal",
  39883. height: math.unit(8 + 6/12, "feet"),
  39884. default: true
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(6 + 6/12, "feet"),
  39893. weight: math.unit(7, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/icky/front.svg",
  39897. extra: 813/782,
  39898. bottom: 66/879
  39899. }
  39900. },
  39901. back: {
  39902. height: math.unit(6 + 6/12, "feet"),
  39903. weight: math.unit(7, "lb"),
  39904. name: "Back",
  39905. image: {
  39906. source: "./media/characters/icky/back.svg",
  39907. extra: 754/735,
  39908. bottom: 56/810
  39909. }
  39910. },
  39911. },
  39912. [
  39913. {
  39914. name: "Normal",
  39915. height: math.unit(6 + 6/12, "feet"),
  39916. default: true
  39917. },
  39918. ]
  39919. ))
  39920. characterMakers.push(() => makeCharacter(
  39921. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39922. {
  39923. front: {
  39924. height: math.unit(15, "feet"),
  39925. name: "Front",
  39926. image: {
  39927. source: "./media/characters/rojas/front.svg",
  39928. extra: 1462/1408,
  39929. bottom: 95/1557
  39930. }
  39931. },
  39932. back: {
  39933. height: math.unit(15, "feet"),
  39934. name: "Back",
  39935. image: {
  39936. source: "./media/characters/rojas/back.svg",
  39937. extra: 1023/954,
  39938. bottom: 28/1051
  39939. }
  39940. },
  39941. },
  39942. [
  39943. {
  39944. name: "Normal",
  39945. height: math.unit(15, "feet"),
  39946. default: true
  39947. },
  39948. ]
  39949. ))
  39950. characterMakers.push(() => makeCharacter(
  39951. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39952. {
  39953. frontHuman: {
  39954. height: math.unit(5 + 7/12, "feet"),
  39955. name: "Front (Human)",
  39956. image: {
  39957. source: "./media/characters/alek-dryagan/front-human.svg",
  39958. extra: 1687/1667,
  39959. bottom: 69/1756
  39960. }
  39961. },
  39962. backHuman: {
  39963. height: math.unit(5 + 7/12, "feet"),
  39964. name: "Back (Human)",
  39965. image: {
  39966. source: "./media/characters/alek-dryagan/back-human.svg",
  39967. extra: 1670/1649,
  39968. bottom: 65/1735
  39969. }
  39970. },
  39971. frontDemi: {
  39972. height: math.unit(65, "feet"),
  39973. name: "Front (Demi)",
  39974. image: {
  39975. source: "./media/characters/alek-dryagan/front-demi.svg",
  39976. extra: 1669/1642,
  39977. bottom: 49/1718
  39978. }
  39979. },
  39980. backDemi: {
  39981. height: math.unit(65, "feet"),
  39982. name: "Back (Demi)",
  39983. image: {
  39984. source: "./media/characters/alek-dryagan/back-demi.svg",
  39985. extra: 1658/1637,
  39986. bottom: 40/1698
  39987. }
  39988. },
  39989. mawHuman: {
  39990. height: math.unit(0.3, "feet"),
  39991. name: "Maw (Human)",
  39992. image: {
  39993. source: "./media/characters/alek-dryagan/maw-human.svg"
  39994. }
  39995. },
  39996. mawDemi: {
  39997. height: math.unit(3.8, "feet"),
  39998. name: "Maw (Demi)",
  39999. image: {
  40000. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40001. }
  40002. },
  40003. },
  40004. [
  40005. {
  40006. name: "Normal",
  40007. height: math.unit(5 + 7/12, "feet"),
  40008. default: true
  40009. },
  40010. ]
  40011. ))
  40012. characterMakers.push(() => makeCharacter(
  40013. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40014. {
  40015. frontHuman: {
  40016. height: math.unit(5 + 2/12, "feet"),
  40017. name: "Front (Human)",
  40018. image: {
  40019. source: "./media/characters/gen/front-human.svg",
  40020. extra: 1627/1538,
  40021. bottom: 71/1698
  40022. }
  40023. },
  40024. backHuman: {
  40025. height: math.unit(5 + 2/12, "feet"),
  40026. name: "Back (Human)",
  40027. image: {
  40028. source: "./media/characters/gen/back-human.svg",
  40029. extra: 1638/1548,
  40030. bottom: 69/1707
  40031. }
  40032. },
  40033. frontDemi: {
  40034. height: math.unit(5 + 2/12, "feet"),
  40035. name: "Front (Demi)",
  40036. image: {
  40037. source: "./media/characters/gen/front-demi.svg",
  40038. extra: 1627/1538,
  40039. bottom: 71/1698
  40040. }
  40041. },
  40042. backDemi: {
  40043. height: math.unit(5 + 2/12, "feet"),
  40044. name: "Back (Demi)",
  40045. image: {
  40046. source: "./media/characters/gen/back-demi.svg",
  40047. extra: 1638/1548,
  40048. bottom: 69/1707
  40049. }
  40050. },
  40051. },
  40052. [
  40053. {
  40054. name: "Normal",
  40055. height: math.unit(5 + 2/12, "feet"),
  40056. default: true
  40057. },
  40058. ]
  40059. ))
  40060. characterMakers.push(() => makeCharacter(
  40061. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40062. {
  40063. frontImp: {
  40064. height: math.unit(1 + 11/12, "feet"),
  40065. name: "Front (Imp)",
  40066. image: {
  40067. source: "./media/characters/max-kobold/front-imp.svg",
  40068. extra: 1238/1134,
  40069. bottom: 81/1319
  40070. }
  40071. },
  40072. backImp: {
  40073. height: math.unit(1 + 11/12, "feet"),
  40074. name: "Back (Imp)",
  40075. image: {
  40076. source: "./media/characters/max-kobold/back-imp.svg",
  40077. extra: 1334/1175,
  40078. bottom: 34/1368
  40079. }
  40080. },
  40081. frontDemi: {
  40082. height: math.unit(5 + 9/12, "feet"),
  40083. name: "Front (Demi)",
  40084. image: {
  40085. source: "./media/characters/max-kobold/front-demi.svg",
  40086. extra: 1715/1685,
  40087. bottom: 54/1769
  40088. }
  40089. },
  40090. backDemi: {
  40091. height: math.unit(5 + 9/12, "feet"),
  40092. name: "Back (Demi)",
  40093. image: {
  40094. source: "./media/characters/max-kobold/back-demi.svg",
  40095. extra: 1752/1729,
  40096. bottom: 41/1793
  40097. }
  40098. },
  40099. handImp: {
  40100. height: math.unit(0.45, "feet"),
  40101. name: "Hand (Imp)",
  40102. image: {
  40103. source: "./media/characters/max-kobold/hand.svg"
  40104. }
  40105. },
  40106. pawImp: {
  40107. height: math.unit(0.46, "feet"),
  40108. name: "Paw (Imp)",
  40109. image: {
  40110. source: "./media/characters/max-kobold/paw.svg"
  40111. }
  40112. },
  40113. handDemi: {
  40114. height: math.unit(0.80, "feet"),
  40115. name: "Hand (Demi)",
  40116. image: {
  40117. source: "./media/characters/max-kobold/hand.svg"
  40118. }
  40119. },
  40120. pawDemi: {
  40121. height: math.unit(1.1, "feet"),
  40122. name: "Paw (Demi)",
  40123. image: {
  40124. source: "./media/characters/max-kobold/paw.svg"
  40125. }
  40126. },
  40127. headImp: {
  40128. height: math.unit(1.33, "feet"),
  40129. name: "Head (Imp)",
  40130. image: {
  40131. source: "./media/characters/max-kobold/head-imp.svg"
  40132. }
  40133. },
  40134. mawImp: {
  40135. height: math.unit(0.75, "feet"),
  40136. name: "Maw (Imp)",
  40137. image: {
  40138. source: "./media/characters/max-kobold/maw-imp.svg"
  40139. }
  40140. },
  40141. mawDemi: {
  40142. height: math.unit(0.42, "feet"),
  40143. name: "Maw (Demi)",
  40144. image: {
  40145. source: "./media/characters/max-kobold/maw-demi.svg"
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Normal",
  40152. height: math.unit(1 + 11/12, "feet"),
  40153. default: true
  40154. },
  40155. ]
  40156. ))
  40157. characterMakers.push(() => makeCharacter(
  40158. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40159. {
  40160. front: {
  40161. height: math.unit(7 + 5/12, "feet"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/carbon/front.svg",
  40165. extra: 1754/1689,
  40166. bottom: 65/1819
  40167. }
  40168. },
  40169. back: {
  40170. height: math.unit(7 + 5/12, "feet"),
  40171. name: "Back",
  40172. image: {
  40173. source: "./media/characters/carbon/back.svg",
  40174. extra: 1762/1695,
  40175. bottom: 24/1786
  40176. }
  40177. },
  40178. frontGigantamax: {
  40179. height: math.unit(150, "feet"),
  40180. name: "Front (Gigantamax)",
  40181. image: {
  40182. source: "./media/characters/carbon/front-gigantamax.svg",
  40183. extra: 1826/1669,
  40184. bottom: 59/1885
  40185. }
  40186. },
  40187. backGigantamax: {
  40188. height: math.unit(150, "feet"),
  40189. name: "Back (Gigantamax)",
  40190. image: {
  40191. source: "./media/characters/carbon/back-gigantamax.svg",
  40192. extra: 1796/1653,
  40193. bottom: 53/1849
  40194. }
  40195. },
  40196. maw: {
  40197. height: math.unit(0.48, "feet"),
  40198. name: "Maw",
  40199. image: {
  40200. source: "./media/characters/carbon/maw.svg"
  40201. }
  40202. },
  40203. mawGigantamax: {
  40204. height: math.unit(7.5, "feet"),
  40205. name: "Maw (Gigantamax)",
  40206. image: {
  40207. source: "./media/characters/carbon/maw-gigantamax.svg"
  40208. }
  40209. },
  40210. },
  40211. [
  40212. {
  40213. name: "Normal",
  40214. height: math.unit(7 + 5/12, "feet"),
  40215. default: true
  40216. },
  40217. ]
  40218. ))
  40219. characterMakers.push(() => makeCharacter(
  40220. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40221. {
  40222. front: {
  40223. height: math.unit(6, "feet"),
  40224. name: "Front",
  40225. image: {
  40226. source: "./media/characters/maverick/front.svg",
  40227. extra: 1672/1661,
  40228. bottom: 85/1757
  40229. }
  40230. },
  40231. back: {
  40232. height: math.unit(6, "feet"),
  40233. name: "Back",
  40234. image: {
  40235. source: "./media/characters/maverick/back.svg",
  40236. extra: 1642/1631,
  40237. bottom: 38/1680
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(6, "feet"),
  40245. default: true
  40246. },
  40247. ]
  40248. ))
  40249. characterMakers.push(() => makeCharacter(
  40250. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40251. {
  40252. front: {
  40253. height: math.unit(15, "feet"),
  40254. weight: math.unit(615, "lb"),
  40255. name: "Front",
  40256. image: {
  40257. source: "./media/characters/grockle/front.svg",
  40258. extra: 1535/1427,
  40259. bottom: 56/1591
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Normal",
  40266. height: math.unit(15, "feet"),
  40267. default: true
  40268. },
  40269. {
  40270. name: "Large",
  40271. height: math.unit(150, "feet")
  40272. },
  40273. {
  40274. name: "Macro",
  40275. height: math.unit(1876, "feet")
  40276. },
  40277. {
  40278. name: "Mega Macro",
  40279. height: math.unit(121940, "feet")
  40280. },
  40281. {
  40282. name: "Giga Macro",
  40283. height: math.unit(750, "km")
  40284. },
  40285. {
  40286. name: "Tera Macro",
  40287. height: math.unit(750000, "km")
  40288. },
  40289. {
  40290. name: "Galactic",
  40291. height: math.unit(1.4e5, "km")
  40292. },
  40293. {
  40294. name: "Godlike",
  40295. height: math.unit(9.8e280, "galaxies")
  40296. },
  40297. ]
  40298. ))
  40299. characterMakers.push(() => makeCharacter(
  40300. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40301. {
  40302. front: {
  40303. height: math.unit(11, "meters"),
  40304. weight: math.unit(20, "tonnes"),
  40305. name: "Front",
  40306. image: {
  40307. source: "./media/characters/alistair/front.svg",
  40308. extra: 1265/1009,
  40309. bottom: 93/1358
  40310. }
  40311. },
  40312. },
  40313. [
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(11, "meters"),
  40317. default: true
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(5 + 8/12, "feet"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/haruka/front.svg",
  40329. extra: 2012/1952,
  40330. bottom: 0/2012
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(5 + 8/12, "feet"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40344. {
  40345. back: {
  40346. height: math.unit(9, "feet"),
  40347. name: "Back",
  40348. image: {
  40349. source: "./media/characters/vivian-sylveon/back.svg",
  40350. extra: 1853/1714,
  40351. bottom: 0/1853
  40352. }
  40353. },
  40354. hyper: {
  40355. height: math.unit(5.58, "feet"),
  40356. name: "Hyper",
  40357. preyCapacity: math.unit(2.80616218797, "m^3"),
  40358. image: {
  40359. source: "./media/characters/vivian-sylveon/hyper.svg",
  40360. extra: 999/676,
  40361. bottom: 697/1696
  40362. },
  40363. },
  40364. paw: {
  40365. height: math.unit(1.8, "feet"),
  40366. name: "Paw",
  40367. image: {
  40368. source: "./media/characters/vivian-sylveon/paw.svg"
  40369. }
  40370. },
  40371. danger: {
  40372. height: math.unit(7.5, "feet"),
  40373. name: "DANGER",
  40374. image: {
  40375. source: "./media/characters/vivian-sylveon/danger.svg"
  40376. }
  40377. },
  40378. },
  40379. [
  40380. {
  40381. name: "Normal",
  40382. height: math.unit(9, "feet"),
  40383. default: true
  40384. },
  40385. {
  40386. name: "Macro",
  40387. height: math.unit(500, "feet")
  40388. },
  40389. {
  40390. name: "Megamacro",
  40391. height: math.unit(600, "miles")
  40392. },
  40393. {
  40394. name: "Gigamacro",
  40395. height: math.unit(30000, "miles")
  40396. },
  40397. ]
  40398. ))
  40399. characterMakers.push(() => makeCharacter(
  40400. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40401. {
  40402. anthro: {
  40403. height: math.unit(5 + 10/12, "feet"),
  40404. weight: math.unit(100, "lb"),
  40405. name: "Anthro",
  40406. image: {
  40407. source: "./media/characters/daiki/anthro.svg",
  40408. extra: 1115/1027,
  40409. bottom: 69/1184
  40410. }
  40411. },
  40412. feral: {
  40413. height: math.unit(200, "feet"),
  40414. name: "Feral",
  40415. image: {
  40416. source: "./media/characters/daiki/feral.svg",
  40417. extra: 1256/313,
  40418. bottom: 39/1295
  40419. }
  40420. },
  40421. feralHead: {
  40422. height: math.unit(171, "feet"),
  40423. name: "Feral Head",
  40424. image: {
  40425. source: "./media/characters/daiki/feral-head.svg"
  40426. }
  40427. },
  40428. manaDragon: {
  40429. height: math.unit(170, "meters"),
  40430. name: "Mana-dragon",
  40431. image: {
  40432. source: "./media/characters/daiki/mana-dragon.svg",
  40433. extra: 763/420,
  40434. bottom: 97/860
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(5 + 10/12, "feet"),
  40442. default: true
  40443. },
  40444. ]
  40445. ))
  40446. characterMakers.push(() => makeCharacter(
  40447. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40448. {
  40449. fullyEquippedFront: {
  40450. height: math.unit(3 + 1/12, "feet"),
  40451. weight: math.unit(24, "lb"),
  40452. name: "Fully Equipped (Front)",
  40453. image: {
  40454. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40455. extra: 687/605,
  40456. bottom: 18/705
  40457. }
  40458. },
  40459. fullyEquippedBack: {
  40460. height: math.unit(3 + 1/12, "feet"),
  40461. weight: math.unit(24, "lb"),
  40462. name: "Fully Equipped (Back)",
  40463. image: {
  40464. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40465. extra: 689/590,
  40466. bottom: 18/707
  40467. }
  40468. },
  40469. dailyWear: {
  40470. height: math.unit(3 + 1/12, "feet"),
  40471. weight: math.unit(24, "lb"),
  40472. name: "Daily Wear",
  40473. image: {
  40474. source: "./media/characters/tea-spot/daily-wear.svg",
  40475. extra: 701/620,
  40476. bottom: 21/722
  40477. }
  40478. },
  40479. maidWork: {
  40480. height: math.unit(3 + 1/12, "feet"),
  40481. weight: math.unit(24, "lb"),
  40482. name: "Maid Work",
  40483. image: {
  40484. source: "./media/characters/tea-spot/maid-work.svg",
  40485. extra: 693/609,
  40486. bottom: 15/708
  40487. }
  40488. },
  40489. },
  40490. [
  40491. {
  40492. name: "Normal",
  40493. height: math.unit(3 + 1/12, "feet"),
  40494. default: true
  40495. },
  40496. ]
  40497. ))
  40498. characterMakers.push(() => makeCharacter(
  40499. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40500. {
  40501. front: {
  40502. height: math.unit(175, "cm"),
  40503. weight: math.unit(75, "kg"),
  40504. name: "Front",
  40505. image: {
  40506. source: "./media/characters/chee/front.svg",
  40507. extra: 1796/1740,
  40508. bottom: 40/1836
  40509. }
  40510. },
  40511. },
  40512. [
  40513. {
  40514. name: "Micro-Micro",
  40515. height: math.unit(1, "nm")
  40516. },
  40517. {
  40518. name: "Micro-erst",
  40519. height: math.unit(1, "micrometer")
  40520. },
  40521. {
  40522. name: "Micro-er",
  40523. height: math.unit(1, "cm")
  40524. },
  40525. {
  40526. name: "Normal",
  40527. height: math.unit(175, "cm"),
  40528. default: true
  40529. },
  40530. {
  40531. name: "Macro",
  40532. height: math.unit(100, "m")
  40533. },
  40534. {
  40535. name: "Macro-er",
  40536. height: math.unit(1, "km")
  40537. },
  40538. {
  40539. name: "Macro-erst",
  40540. height: math.unit(10, "km")
  40541. },
  40542. {
  40543. name: "Macro-Macro",
  40544. height: math.unit(100, "km")
  40545. },
  40546. ]
  40547. ))
  40548. characterMakers.push(() => makeCharacter(
  40549. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40550. {
  40551. front: {
  40552. height: math.unit(11 + 9/12, "feet"),
  40553. weight: math.unit(935, "lb"),
  40554. name: "Front",
  40555. image: {
  40556. source: "./media/characters/kingsley/front.svg",
  40557. extra: 1803/1674,
  40558. bottom: 127/1930
  40559. }
  40560. },
  40561. frontNude: {
  40562. height: math.unit(11 + 9/12, "feet"),
  40563. weight: math.unit(935, "lb"),
  40564. name: "Front (Nude)",
  40565. image: {
  40566. source: "./media/characters/kingsley/front-nude.svg",
  40567. extra: 1803/1674,
  40568. bottom: 127/1930
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Normal",
  40575. height: math.unit(11 + 9/12, "feet"),
  40576. default: true
  40577. },
  40578. ]
  40579. ))
  40580. characterMakers.push(() => makeCharacter(
  40581. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40582. {
  40583. side: {
  40584. height: math.unit(9, "feet"),
  40585. name: "Side",
  40586. image: {
  40587. source: "./media/characters/rymel/side.svg",
  40588. extra: 792/469,
  40589. bottom: 121/913
  40590. }
  40591. },
  40592. maw: {
  40593. height: math.unit(2.4, "meters"),
  40594. name: "Maw",
  40595. image: {
  40596. source: "./media/characters/rymel/maw.svg"
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "House Drake",
  40603. height: math.unit(2, "feet")
  40604. },
  40605. {
  40606. name: "Reduced",
  40607. height: math.unit(4.5, "feet")
  40608. },
  40609. {
  40610. name: "Normal",
  40611. height: math.unit(9, "feet"),
  40612. default: true
  40613. },
  40614. ]
  40615. ))
  40616. characterMakers.push(() => makeCharacter(
  40617. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40618. {
  40619. front: {
  40620. height: math.unit(1.74, "meters"),
  40621. weight: math.unit(55, "kg"),
  40622. name: "Front",
  40623. image: {
  40624. source: "./media/characters/rubus/front.svg",
  40625. extra: 1894/1742,
  40626. bottom: 44/1938
  40627. }
  40628. },
  40629. },
  40630. [
  40631. {
  40632. name: "Normal",
  40633. height: math.unit(1.74, "meters"),
  40634. default: true
  40635. },
  40636. ]
  40637. ))
  40638. characterMakers.push(() => makeCharacter(
  40639. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40640. {
  40641. front: {
  40642. height: math.unit(5 + 2/12, "feet"),
  40643. weight: math.unit(112, "lb"),
  40644. name: "Front",
  40645. image: {
  40646. source: "./media/characters/cassie-kingston/front.svg",
  40647. extra: 1438/1390,
  40648. bottom: 47/1485
  40649. }
  40650. },
  40651. },
  40652. [
  40653. {
  40654. name: "Normal",
  40655. height: math.unit(5 + 2/12, "feet"),
  40656. default: true
  40657. },
  40658. {
  40659. name: "Macro",
  40660. height: math.unit(128, "feet")
  40661. },
  40662. {
  40663. name: "Megamacro",
  40664. height: math.unit(2.56, "miles")
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40670. {
  40671. front: {
  40672. height: math.unit(7, "feet"),
  40673. name: "Front",
  40674. image: {
  40675. source: "./media/characters/fox/front.svg",
  40676. extra: 1798/1703,
  40677. bottom: 55/1853
  40678. }
  40679. },
  40680. back: {
  40681. height: math.unit(7, "feet"),
  40682. name: "Back",
  40683. image: {
  40684. source: "./media/characters/fox/back.svg",
  40685. extra: 1748/1649,
  40686. bottom: 32/1780
  40687. }
  40688. },
  40689. head: {
  40690. height: math.unit(1.95, "feet"),
  40691. name: "Head",
  40692. image: {
  40693. source: "./media/characters/fox/head.svg"
  40694. }
  40695. },
  40696. dick: {
  40697. height: math.unit(1.33, "feet"),
  40698. name: "Dick",
  40699. image: {
  40700. source: "./media/characters/fox/dick.svg"
  40701. }
  40702. },
  40703. foot: {
  40704. height: math.unit(1, "feet"),
  40705. name: "Foot",
  40706. image: {
  40707. source: "./media/characters/fox/foot.svg"
  40708. }
  40709. },
  40710. paw: {
  40711. height: math.unit(0.92, "feet"),
  40712. name: "Paw",
  40713. image: {
  40714. source: "./media/characters/fox/paw.svg"
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Small",
  40721. height: math.unit(3, "inches")
  40722. },
  40723. {
  40724. name: "\"Realistic\"",
  40725. height: math.unit(7, "feet")
  40726. },
  40727. {
  40728. name: "Normal",
  40729. height: math.unit(150, "feet"),
  40730. default: true
  40731. },
  40732. {
  40733. name: "BIG",
  40734. height: math.unit(1200, "feet")
  40735. },
  40736. {
  40737. name: "👀",
  40738. height: math.unit(5, "miles")
  40739. },
  40740. {
  40741. name: "👀👀👀",
  40742. height: math.unit(64, "miles")
  40743. },
  40744. ]
  40745. ))
  40746. characterMakers.push(() => makeCharacter(
  40747. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40748. {
  40749. front: {
  40750. height: math.unit(625, "feet"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/asonja-rossa/front.svg",
  40754. extra: 1833/1686,
  40755. bottom: 24/1857
  40756. }
  40757. },
  40758. back: {
  40759. height: math.unit(625, "feet"),
  40760. name: "Back",
  40761. image: {
  40762. source: "./media/characters/asonja-rossa/back.svg",
  40763. extra: 1852/1753,
  40764. bottom: 26/1878
  40765. }
  40766. },
  40767. },
  40768. [
  40769. {
  40770. name: "Macro",
  40771. height: math.unit(625, "feet"),
  40772. default: true
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40778. {
  40779. side: {
  40780. height: math.unit(8, "feet"),
  40781. name: "Side",
  40782. image: {
  40783. source: "./media/characters/rezukii/side.svg",
  40784. extra: 979/542,
  40785. bottom: 87/1066
  40786. }
  40787. },
  40788. sitting: {
  40789. height: math.unit(14.6, "feet"),
  40790. name: "Sitting",
  40791. image: {
  40792. source: "./media/characters/rezukii/sitting.svg",
  40793. extra: 1023/813,
  40794. bottom: 45/1068
  40795. }
  40796. },
  40797. },
  40798. [
  40799. {
  40800. name: "Tiny",
  40801. height: math.unit(2, "feet")
  40802. },
  40803. {
  40804. name: "Smol",
  40805. height: math.unit(4, "feet")
  40806. },
  40807. {
  40808. name: "Normal",
  40809. height: math.unit(8, "feet"),
  40810. default: true
  40811. },
  40812. {
  40813. name: "Big",
  40814. height: math.unit(12, "feet")
  40815. },
  40816. {
  40817. name: "Macro",
  40818. height: math.unit(30, "feet")
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(14, "feet"),
  40827. weight: math.unit(9.5, "tonnes"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/dawnheart/front.svg",
  40831. extra: 2792/2675,
  40832. bottom: 64/2856
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(14, "feet"),
  40840. default: true
  40841. },
  40842. ]
  40843. ))
  40844. characterMakers.push(() => makeCharacter(
  40845. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40846. {
  40847. front: {
  40848. height: math.unit(1.7, "m"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/gladi/front.svg",
  40852. extra: 1460/1362,
  40853. bottom: 19/1479
  40854. }
  40855. },
  40856. back: {
  40857. height: math.unit(1.7, "m"),
  40858. name: "Back",
  40859. image: {
  40860. source: "./media/characters/gladi/back.svg",
  40861. extra: 1459/1357,
  40862. bottom: 12/1471
  40863. }
  40864. },
  40865. feral: {
  40866. height: math.unit(2.05, "m"),
  40867. name: "Feral",
  40868. image: {
  40869. source: "./media/characters/gladi/feral.svg",
  40870. extra: 821/557,
  40871. bottom: 91/912
  40872. }
  40873. },
  40874. },
  40875. [
  40876. {
  40877. name: "Shortest",
  40878. height: math.unit(70, "cm")
  40879. },
  40880. {
  40881. name: "Normal",
  40882. height: math.unit(1.7, "m")
  40883. },
  40884. {
  40885. name: "Macro",
  40886. height: math.unit(10, "m"),
  40887. default: true
  40888. },
  40889. {
  40890. name: "Tallest",
  40891. height: math.unit(200, "m")
  40892. },
  40893. ]
  40894. ))
  40895. characterMakers.push(() => makeCharacter(
  40896. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40897. {
  40898. front: {
  40899. height: math.unit(5 + 7/12, "feet"),
  40900. weight: math.unit(2, "tons"),
  40901. name: "Front",
  40902. image: {
  40903. source: "./media/characters/erdno/front.svg",
  40904. extra: 1234/1129,
  40905. bottom: 35/1269
  40906. }
  40907. },
  40908. angled: {
  40909. height: math.unit(5 + 7/12, "feet"),
  40910. weight: math.unit(2, "tons"),
  40911. name: "Angled",
  40912. image: {
  40913. source: "./media/characters/erdno/angled.svg",
  40914. extra: 1185/1139,
  40915. bottom: 36/1221
  40916. }
  40917. },
  40918. side: {
  40919. height: math.unit(5 + 7/12, "feet"),
  40920. weight: math.unit(2, "tons"),
  40921. name: "Side",
  40922. image: {
  40923. source: "./media/characters/erdno/side.svg",
  40924. extra: 1191/1144,
  40925. bottom: 40/1231
  40926. }
  40927. },
  40928. back: {
  40929. height: math.unit(5 + 7/12, "feet"),
  40930. weight: math.unit(2, "tons"),
  40931. name: "Back",
  40932. image: {
  40933. source: "./media/characters/erdno/back.svg",
  40934. extra: 1202/1146,
  40935. bottom: 17/1219
  40936. }
  40937. },
  40938. frontNsfw: {
  40939. height: math.unit(5 + 7/12, "feet"),
  40940. weight: math.unit(2, "tons"),
  40941. name: "Front (NSFW)",
  40942. image: {
  40943. source: "./media/characters/erdno/front-nsfw.svg",
  40944. extra: 1234/1129,
  40945. bottom: 35/1269
  40946. }
  40947. },
  40948. angledNsfw: {
  40949. height: math.unit(5 + 7/12, "feet"),
  40950. weight: math.unit(2, "tons"),
  40951. name: "Angled (NSFW)",
  40952. image: {
  40953. source: "./media/characters/erdno/angled-nsfw.svg",
  40954. extra: 1185/1139,
  40955. bottom: 36/1221
  40956. }
  40957. },
  40958. sideNsfw: {
  40959. height: math.unit(5 + 7/12, "feet"),
  40960. weight: math.unit(2, "tons"),
  40961. name: "Side (NSFW)",
  40962. image: {
  40963. source: "./media/characters/erdno/side-nsfw.svg",
  40964. extra: 1191/1144,
  40965. bottom: 40/1231
  40966. }
  40967. },
  40968. backNsfw: {
  40969. height: math.unit(5 + 7/12, "feet"),
  40970. weight: math.unit(2, "tons"),
  40971. name: "Back (NSFW)",
  40972. image: {
  40973. source: "./media/characters/erdno/back-nsfw.svg",
  40974. extra: 1202/1146,
  40975. bottom: 17/1219
  40976. }
  40977. },
  40978. frontHyper: {
  40979. height: math.unit(5 + 7/12, "feet"),
  40980. weight: math.unit(2, "tons"),
  40981. name: "Front (Hyper)",
  40982. image: {
  40983. source: "./media/characters/erdno/front-hyper.svg",
  40984. extra: 1298/1136,
  40985. bottom: 35/1333
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Normal",
  40992. height: math.unit(5 + 7/12, "feet"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "Big",
  40997. height: math.unit(5.7, "meters")
  40998. },
  40999. {
  41000. name: "Macro",
  41001. height: math.unit(5.7, "kilometers")
  41002. },
  41003. {
  41004. name: "Megamacro",
  41005. height: math.unit(5.7, "earths")
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(5 + 10/12, "feet"),
  41014. weight: math.unit(150, "lb"),
  41015. name: "Front",
  41016. image: {
  41017. source: "./media/characters/jamie/front.svg",
  41018. extra: 1908/1768,
  41019. bottom: 19/1927
  41020. }
  41021. },
  41022. },
  41023. [
  41024. {
  41025. name: "Minimum",
  41026. height: math.unit(2, "cm")
  41027. },
  41028. {
  41029. name: "Micro",
  41030. height: math.unit(3, "inches")
  41031. },
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(5 + 10/12, "feet"),
  41035. default: true
  41036. },
  41037. {
  41038. name: "Macro",
  41039. height: math.unit(150, "feet")
  41040. },
  41041. {
  41042. name: "Megamacro",
  41043. height: math.unit(10000, "m")
  41044. },
  41045. ]
  41046. ))
  41047. characterMakers.push(() => makeCharacter(
  41048. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41049. {
  41050. front: {
  41051. height: math.unit(2, "meters"),
  41052. weight: math.unit(100, "kg"),
  41053. name: "Front",
  41054. image: {
  41055. source: "./media/characters/shiron/front.svg",
  41056. extra: 2103/1985,
  41057. bottom: 98/2201
  41058. }
  41059. },
  41060. back: {
  41061. height: math.unit(2, "meters"),
  41062. weight: math.unit(100, "kg"),
  41063. name: "Back",
  41064. image: {
  41065. source: "./media/characters/shiron/back.svg",
  41066. extra: 2110/2015,
  41067. bottom: 89/2199
  41068. }
  41069. },
  41070. hand: {
  41071. height: math.unit(0.96, "feet"),
  41072. name: "Hand",
  41073. image: {
  41074. source: "./media/characters/shiron/hand.svg"
  41075. }
  41076. },
  41077. foot: {
  41078. height: math.unit(1.464, "feet"),
  41079. name: "Foot",
  41080. image: {
  41081. source: "./media/characters/shiron/foot.svg"
  41082. }
  41083. },
  41084. },
  41085. [
  41086. {
  41087. name: "Normal",
  41088. height: math.unit(2, "meters")
  41089. },
  41090. {
  41091. name: "Macro",
  41092. height: math.unit(500, "meters"),
  41093. default: true
  41094. },
  41095. {
  41096. name: "Megamacro",
  41097. height: math.unit(20, "km")
  41098. },
  41099. ]
  41100. ))
  41101. characterMakers.push(() => makeCharacter(
  41102. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41103. {
  41104. front: {
  41105. height: math.unit(6, "feet"),
  41106. name: "Front",
  41107. image: {
  41108. source: "./media/characters/sam/front.svg",
  41109. extra: 849/826,
  41110. bottom: 19/868
  41111. }
  41112. },
  41113. },
  41114. [
  41115. {
  41116. name: "Normal",
  41117. height: math.unit(6, "feet"),
  41118. default: true
  41119. },
  41120. ]
  41121. ))
  41122. characterMakers.push(() => makeCharacter(
  41123. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41124. {
  41125. front: {
  41126. height: math.unit(8 + 4/12, "feet"),
  41127. weight: math.unit(122, "kg"),
  41128. name: "Front",
  41129. image: {
  41130. source: "./media/characters/namori-kurogawa/front.svg",
  41131. extra: 1894/1576,
  41132. bottom: 34/1928
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Normal",
  41139. height: math.unit(8 + 4/12, "feet"),
  41140. default: true
  41141. },
  41142. ]
  41143. ))
  41144. characterMakers.push(() => makeCharacter(
  41145. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41146. {
  41147. front: {
  41148. height: math.unit(9, "feet"),
  41149. weight: math.unit(621, "lb"),
  41150. name: "Front",
  41151. image: {
  41152. source: "./media/characters/unmru/front.svg",
  41153. extra: 1853/1747,
  41154. bottom: 73/1926
  41155. }
  41156. },
  41157. side: {
  41158. height: math.unit(9, "feet"),
  41159. weight: math.unit(621, "lb"),
  41160. name: "Side",
  41161. image: {
  41162. source: "./media/characters/unmru/side.svg",
  41163. extra: 1781/1671,
  41164. bottom: 127/1908
  41165. }
  41166. },
  41167. back: {
  41168. height: math.unit(9, "feet"),
  41169. weight: math.unit(621, "lb"),
  41170. name: "Back",
  41171. image: {
  41172. source: "./media/characters/unmru/back.svg",
  41173. extra: 1894/1765,
  41174. bottom: 75/1969
  41175. }
  41176. },
  41177. dick: {
  41178. height: math.unit(3, "feet"),
  41179. weight: math.unit(35, "lb"),
  41180. name: "Dick",
  41181. image: {
  41182. source: "./media/characters/unmru/dick.svg"
  41183. }
  41184. },
  41185. },
  41186. [
  41187. {
  41188. name: "Normal",
  41189. height: math.unit(9, "feet")
  41190. },
  41191. {
  41192. name: "Natural",
  41193. height: math.unit(27, "feet"),
  41194. default: true
  41195. },
  41196. {
  41197. name: "Giant",
  41198. height: math.unit(90, "feet")
  41199. },
  41200. {
  41201. name: "Kaiju",
  41202. height: math.unit(270, "feet")
  41203. },
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(900, "feet")
  41207. },
  41208. {
  41209. name: "Macro+",
  41210. height: math.unit(2700, "feet")
  41211. },
  41212. {
  41213. name: "Megamacro",
  41214. height: math.unit(9000, "feet")
  41215. },
  41216. {
  41217. name: "City-Crushing",
  41218. height: math.unit(27000, "feet")
  41219. },
  41220. {
  41221. name: "Mountain-Mashing",
  41222. height: math.unit(90000, "feet")
  41223. },
  41224. {
  41225. name: "Earth-Eclipsing",
  41226. height: math.unit(2.7e8, "feet")
  41227. },
  41228. {
  41229. name: "Sol-Swallowing",
  41230. height: math.unit(9e10, "feet")
  41231. },
  41232. {
  41233. name: "Majoris-Munching",
  41234. height: math.unit(2.7e13, "feet")
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41240. {
  41241. front: {
  41242. height: math.unit(1, "inch"),
  41243. name: "Front",
  41244. image: {
  41245. source: "./media/characters/squeaks-mouse/front.svg",
  41246. extra: 352/308,
  41247. bottom: 25/377
  41248. }
  41249. },
  41250. },
  41251. [
  41252. {
  41253. name: "Micro",
  41254. height: math.unit(1, "inch"),
  41255. default: true
  41256. },
  41257. ]
  41258. ))
  41259. characterMakers.push(() => makeCharacter(
  41260. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41261. {
  41262. side: {
  41263. height: math.unit(35, "feet"),
  41264. name: "Side",
  41265. image: {
  41266. source: "./media/characters/sayko/side.svg",
  41267. extra: 1697/1021,
  41268. bottom: 82/1779
  41269. }
  41270. },
  41271. head: {
  41272. height: math.unit(16, "feet"),
  41273. name: "Head",
  41274. image: {
  41275. source: "./media/characters/sayko/head.svg"
  41276. }
  41277. },
  41278. forepaw: {
  41279. height: math.unit(7.85, "feet"),
  41280. name: "Forepaw",
  41281. image: {
  41282. source: "./media/characters/sayko/forepaw.svg"
  41283. }
  41284. },
  41285. hindpaw: {
  41286. height: math.unit(8.8, "feet"),
  41287. name: "Hindpaw",
  41288. image: {
  41289. source: "./media/characters/sayko/hindpaw.svg"
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(35, "feet"),
  41297. default: true
  41298. },
  41299. {
  41300. name: "Colossus",
  41301. height: math.unit(100, "meters")
  41302. },
  41303. {
  41304. name: "\"Small\" Deity",
  41305. height: math.unit(1, "km")
  41306. },
  41307. {
  41308. name: "\"Large\" Deity",
  41309. height: math.unit(15, "km")
  41310. },
  41311. ]
  41312. ))
  41313. characterMakers.push(() => makeCharacter(
  41314. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41315. {
  41316. front: {
  41317. height: math.unit(6, "feet"),
  41318. weight: math.unit(250, "lb"),
  41319. name: "Front",
  41320. image: {
  41321. source: "./media/characters/mukiro/front.svg",
  41322. extra: 1368/1310,
  41323. bottom: 34/1402
  41324. }
  41325. },
  41326. },
  41327. [
  41328. {
  41329. name: "Normal",
  41330. height: math.unit(6, "feet"),
  41331. default: true
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(12 + 4/12, "feet"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41343. extra: 1346/1311,
  41344. bottom: 65/1411
  41345. }
  41346. },
  41347. },
  41348. [
  41349. {
  41350. name: "Base",
  41351. height: math.unit(12 + 4/12, "feet"),
  41352. default: true
  41353. },
  41354. {
  41355. name: "Macro",
  41356. height: math.unit(150, "feet")
  41357. },
  41358. {
  41359. name: "Mega",
  41360. height: math.unit(2, "miles")
  41361. },
  41362. {
  41363. name: "Demi God",
  41364. height: math.unit(4, "AU")
  41365. },
  41366. {
  41367. name: "God Size",
  41368. height: math.unit(1, "universe")
  41369. },
  41370. ]
  41371. ))
  41372. characterMakers.push(() => makeCharacter(
  41373. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41374. {
  41375. front: {
  41376. height: math.unit(3 + 3/12, "feet"),
  41377. weight: math.unit(88, "lb"),
  41378. name: "Front",
  41379. image: {
  41380. source: "./media/characters/trey/front.svg",
  41381. extra: 1815/1509,
  41382. bottom: 60/1875
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Normal",
  41389. height: math.unit(3 + 3/12, "feet"),
  41390. default: true
  41391. },
  41392. ]
  41393. ))
  41394. characterMakers.push(() => makeCharacter(
  41395. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41396. {
  41397. front: {
  41398. height: math.unit(4, "meters"),
  41399. name: "Front",
  41400. image: {
  41401. source: "./media/characters/adelonda/front.svg",
  41402. extra: 1077/982,
  41403. bottom: 39/1116
  41404. }
  41405. },
  41406. back: {
  41407. height: math.unit(4, "meters"),
  41408. name: "Back",
  41409. image: {
  41410. source: "./media/characters/adelonda/back.svg",
  41411. extra: 1105/1003,
  41412. bottom: 25/1130
  41413. }
  41414. },
  41415. feral: {
  41416. height: math.unit(40/1.5, "meters"),
  41417. name: "Feral",
  41418. image: {
  41419. source: "./media/characters/adelonda/feral.svg",
  41420. extra: 597/271,
  41421. bottom: 387/984
  41422. }
  41423. },
  41424. },
  41425. [
  41426. {
  41427. name: "Normal",
  41428. height: math.unit(4, "meters"),
  41429. default: true
  41430. },
  41431. ]
  41432. ))
  41433. characterMakers.push(() => makeCharacter(
  41434. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41435. {
  41436. front: {
  41437. height: math.unit(8 + 4/12, "feet"),
  41438. weight: math.unit(670, "lb"),
  41439. name: "Front",
  41440. image: {
  41441. source: "./media/characters/acadiel/front.svg",
  41442. extra: 1901/1595,
  41443. bottom: 142/2043
  41444. }
  41445. },
  41446. },
  41447. [
  41448. {
  41449. name: "Normal",
  41450. height: math.unit(8 + 4/12, "feet"),
  41451. default: true
  41452. },
  41453. {
  41454. name: "Macro",
  41455. height: math.unit(200, "feet")
  41456. },
  41457. ]
  41458. ))
  41459. characterMakers.push(() => makeCharacter(
  41460. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41461. {
  41462. front: {
  41463. height: math.unit(6 + 2/12, "feet"),
  41464. weight: math.unit(185, "lb"),
  41465. name: "Front",
  41466. image: {
  41467. source: "./media/characters/kayne-ein/front.svg",
  41468. extra: 1780/1560,
  41469. bottom: 81/1861
  41470. }
  41471. },
  41472. },
  41473. [
  41474. {
  41475. name: "Normal",
  41476. height: math.unit(6 + 2/12, "feet"),
  41477. default: true
  41478. },
  41479. {
  41480. name: "Transformation Stage",
  41481. height: math.unit(15, "feet")
  41482. },
  41483. {
  41484. name: "Macro",
  41485. height: math.unit(150, "feet")
  41486. },
  41487. {
  41488. name: "Earth's Shadow",
  41489. height: math.unit(6200, "miles")
  41490. },
  41491. {
  41492. name: "Universal Demon",
  41493. height: math.unit(28e9, "parsecs")
  41494. },
  41495. {
  41496. name: "Multiverse God",
  41497. height: math.unit(3, "multiverses")
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41503. {
  41504. front: {
  41505. height: math.unit(5 + 5/12, "feet"),
  41506. name: "Front",
  41507. image: {
  41508. source: "./media/characters/fawn/front.svg",
  41509. extra: 1873/1731,
  41510. bottom: 95/1968
  41511. }
  41512. },
  41513. back: {
  41514. height: math.unit(5 + 5/12, "feet"),
  41515. name: "Back",
  41516. image: {
  41517. source: "./media/characters/fawn/back.svg",
  41518. extra: 1813/1700,
  41519. bottom: 14/1827
  41520. }
  41521. },
  41522. hoof: {
  41523. height: math.unit(1.45, "feet"),
  41524. name: "Hoof",
  41525. image: {
  41526. source: "./media/characters/fawn/hoof.svg"
  41527. }
  41528. },
  41529. },
  41530. [
  41531. {
  41532. name: "Normal",
  41533. height: math.unit(5 + 5/12, "feet"),
  41534. default: true
  41535. },
  41536. ]
  41537. ))
  41538. characterMakers.push(() => makeCharacter(
  41539. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41540. {
  41541. front: {
  41542. height: math.unit(2 + 5/12, "feet"),
  41543. name: "Front",
  41544. image: {
  41545. source: "./media/characters/orion/front.svg",
  41546. extra: 1366/1304,
  41547. bottom: 43/1409
  41548. }
  41549. },
  41550. paw: {
  41551. height: math.unit(0.52, "feet"),
  41552. name: "Paw",
  41553. image: {
  41554. source: "./media/characters/orion/paw.svg"
  41555. }
  41556. },
  41557. },
  41558. [
  41559. {
  41560. name: "Normal",
  41561. height: math.unit(2 + 5/12, "feet"),
  41562. default: true
  41563. },
  41564. ]
  41565. ))
  41566. characterMakers.push(() => makeCharacter(
  41567. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41568. {
  41569. front: {
  41570. height: math.unit(5 + 10/12, "feet"),
  41571. name: "Front",
  41572. image: {
  41573. source: "./media/characters/vera/front.svg",
  41574. extra: 1680/1575,
  41575. bottom: 49/1729
  41576. }
  41577. },
  41578. back: {
  41579. height: math.unit(5 + 10/12, "feet"),
  41580. name: "Back",
  41581. image: {
  41582. source: "./media/characters/vera/back.svg",
  41583. extra: 1700/1588,
  41584. bottom: 18/1718
  41585. }
  41586. },
  41587. arcanine: {
  41588. height: math.unit(6 + 8/12, "feet"),
  41589. name: "Arcanine",
  41590. image: {
  41591. source: "./media/characters/vera/arcanine.svg",
  41592. extra: 1590/1511,
  41593. bottom: 71/1661
  41594. }
  41595. },
  41596. maw: {
  41597. height: math.unit(0.82, "feet"),
  41598. name: "Maw",
  41599. image: {
  41600. source: "./media/characters/vera/maw.svg"
  41601. }
  41602. },
  41603. mawArcanine: {
  41604. height: math.unit(0.97, "feet"),
  41605. name: "Maw (Arcanine)",
  41606. image: {
  41607. source: "./media/characters/vera/maw-arcanine.svg"
  41608. }
  41609. },
  41610. paw: {
  41611. height: math.unit(0.75, "feet"),
  41612. name: "Paw",
  41613. image: {
  41614. source: "./media/characters/vera/paw.svg"
  41615. }
  41616. },
  41617. pawprint: {
  41618. height: math.unit(0.52, "feet"),
  41619. name: "Pawprint",
  41620. image: {
  41621. source: "./media/characters/vera/pawprint.svg"
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Normal",
  41628. height: math.unit(5 + 10/12, "feet"),
  41629. default: true
  41630. },
  41631. {
  41632. name: "Macro",
  41633. height: math.unit(75, "feet")
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41639. {
  41640. front: {
  41641. height: math.unit(4, "feet"),
  41642. weight: math.unit(40, "lb"),
  41643. name: "Front",
  41644. image: {
  41645. source: "./media/characters/orvan-rabbit/front.svg",
  41646. extra: 1896/1642,
  41647. bottom: 29/1925
  41648. }
  41649. },
  41650. },
  41651. [
  41652. {
  41653. name: "Normal",
  41654. height: math.unit(4, "feet"),
  41655. default: true
  41656. },
  41657. ]
  41658. ))
  41659. characterMakers.push(() => makeCharacter(
  41660. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41661. {
  41662. front: {
  41663. height: math.unit(6, "feet"),
  41664. weight: math.unit(168, "lb"),
  41665. name: "Front",
  41666. image: {
  41667. source: "./media/characters/lisa/front.svg",
  41668. extra: 2065/1867,
  41669. bottom: 46/2111
  41670. }
  41671. },
  41672. back: {
  41673. height: math.unit(6, "feet"),
  41674. weight: math.unit(168, "lb"),
  41675. name: "Back",
  41676. image: {
  41677. source: "./media/characters/lisa/back.svg",
  41678. extra: 1982/1838,
  41679. bottom: 29/2011
  41680. }
  41681. },
  41682. maw: {
  41683. height: math.unit(0.81, "feet"),
  41684. name: "Maw",
  41685. image: {
  41686. source: "./media/characters/lisa/maw.svg"
  41687. }
  41688. },
  41689. paw: {
  41690. height: math.unit(0.9, "feet"),
  41691. name: "Paw",
  41692. image: {
  41693. source: "./media/characters/lisa/paw.svg"
  41694. }
  41695. },
  41696. caribousune: {
  41697. height: math.unit(7 + 2/12, "feet"),
  41698. weight: math.unit(268, "lb"),
  41699. name: "Caribousune",
  41700. image: {
  41701. source: "./media/characters/lisa/caribousune.svg",
  41702. extra: 1843/1633,
  41703. bottom: 29/1872
  41704. }
  41705. },
  41706. frontCaribousune: {
  41707. height: math.unit(7 + 2/12, "feet"),
  41708. weight: math.unit(268, "lb"),
  41709. name: "Front (Caribousune)",
  41710. image: {
  41711. source: "./media/characters/lisa/front-caribousune.svg",
  41712. extra: 1818/1638,
  41713. bottom: 52/1870
  41714. }
  41715. },
  41716. sideCaribousune: {
  41717. height: math.unit(7 + 2/12, "feet"),
  41718. weight: math.unit(268, "lb"),
  41719. name: "Side (Caribousune)",
  41720. image: {
  41721. source: "./media/characters/lisa/side-caribousune.svg",
  41722. extra: 1851/1635,
  41723. bottom: 16/1867
  41724. }
  41725. },
  41726. backCaribousune: {
  41727. height: math.unit(7 + 2/12, "feet"),
  41728. weight: math.unit(268, "lb"),
  41729. name: "Back (Caribousune)",
  41730. image: {
  41731. source: "./media/characters/lisa/back-caribousune.svg",
  41732. extra: 1801/1604,
  41733. bottom: 44/1845
  41734. }
  41735. },
  41736. caribou: {
  41737. height: math.unit(7 + 2/12, "feet"),
  41738. weight: math.unit(268, "lb"),
  41739. name: "Caribou",
  41740. image: {
  41741. source: "./media/characters/lisa/caribou.svg",
  41742. extra: 1843/1633,
  41743. bottom: 29/1872
  41744. }
  41745. },
  41746. frontCaribou: {
  41747. height: math.unit(7 + 2/12, "feet"),
  41748. weight: math.unit(268, "lb"),
  41749. name: "Front (Caribou)",
  41750. image: {
  41751. source: "./media/characters/lisa/front-caribou.svg",
  41752. extra: 1818/1638,
  41753. bottom: 52/1870
  41754. }
  41755. },
  41756. sideCaribou: {
  41757. height: math.unit(7 + 2/12, "feet"),
  41758. weight: math.unit(268, "lb"),
  41759. name: "Side (Caribou)",
  41760. image: {
  41761. source: "./media/characters/lisa/side-caribou.svg",
  41762. extra: 1851/1635,
  41763. bottom: 16/1867
  41764. }
  41765. },
  41766. backCaribou: {
  41767. height: math.unit(7 + 2/12, "feet"),
  41768. weight: math.unit(268, "lb"),
  41769. name: "Back (Caribou)",
  41770. image: {
  41771. source: "./media/characters/lisa/back-caribou.svg",
  41772. extra: 1801/1604,
  41773. bottom: 44/1845
  41774. }
  41775. },
  41776. mawCaribou: {
  41777. height: math.unit(1.45, "feet"),
  41778. name: "Maw (Caribou)",
  41779. image: {
  41780. source: "./media/characters/lisa/maw-caribou.svg"
  41781. }
  41782. },
  41783. mawCaribousune: {
  41784. height: math.unit(1.45, "feet"),
  41785. name: "Maw (Caribousune)",
  41786. image: {
  41787. source: "./media/characters/lisa/maw-caribousune.svg"
  41788. }
  41789. },
  41790. pawCaribousune: {
  41791. height: math.unit(1.61, "feet"),
  41792. name: "Paw (Caribou)",
  41793. image: {
  41794. source: "./media/characters/lisa/paw-caribousune.svg"
  41795. }
  41796. },
  41797. },
  41798. [
  41799. {
  41800. name: "Normal",
  41801. height: math.unit(6, "feet")
  41802. },
  41803. {
  41804. name: "God Size",
  41805. height: math.unit(72, "feet"),
  41806. default: true
  41807. },
  41808. {
  41809. name: "Towering",
  41810. height: math.unit(288, "feet")
  41811. },
  41812. {
  41813. name: "City Size",
  41814. height: math.unit(48384, "feet")
  41815. },
  41816. {
  41817. name: "Continental",
  41818. height: math.unit(4200, "miles")
  41819. },
  41820. {
  41821. name: "Planet Eater",
  41822. height: math.unit(42, "earths")
  41823. },
  41824. {
  41825. name: "Star Swallower",
  41826. height: math.unit(42, "solarradii")
  41827. },
  41828. {
  41829. name: "System Swallower",
  41830. height: math.unit(84000, "AU")
  41831. },
  41832. {
  41833. name: "Galaxy Gobbler",
  41834. height: math.unit(42, "galaxies")
  41835. },
  41836. {
  41837. name: "Universe Devourer",
  41838. height: math.unit(42, "universes")
  41839. },
  41840. {
  41841. name: "Multiverse Muncher",
  41842. height: math.unit(42, "multiverses")
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41848. {
  41849. front: {
  41850. height: math.unit(36, "feet"),
  41851. name: "Front",
  41852. image: {
  41853. source: "./media/characters/shadow-rat/front.svg",
  41854. extra: 1845/1758,
  41855. bottom: 83/1928
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Macro",
  41862. height: math.unit(36, "feet"),
  41863. default: true
  41864. },
  41865. ]
  41866. ))
  41867. characterMakers.push(() => makeCharacter(
  41868. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41869. {
  41870. side: {
  41871. height: math.unit(8, "feet"),
  41872. weight: math.unit(2630, "lb"),
  41873. name: "Side",
  41874. image: {
  41875. source: "./media/characters/torallia/side.svg",
  41876. extra: 2164/2021,
  41877. bottom: 371/2535
  41878. }
  41879. },
  41880. },
  41881. [
  41882. {
  41883. name: "Mortal Interaction",
  41884. height: math.unit(8, "feet")
  41885. },
  41886. {
  41887. name: "Natural",
  41888. height: math.unit(24, "feet"),
  41889. default: true
  41890. },
  41891. {
  41892. name: "Giant",
  41893. height: math.unit(80, "feet")
  41894. },
  41895. {
  41896. name: "Kaiju",
  41897. height: math.unit(240, "feet")
  41898. },
  41899. {
  41900. name: "Macro",
  41901. height: math.unit(800, "feet")
  41902. },
  41903. {
  41904. name: "Macro+",
  41905. height: math.unit(2400, "feet")
  41906. },
  41907. {
  41908. name: "Macro++",
  41909. height: math.unit(8000, "feet")
  41910. },
  41911. {
  41912. name: "City-Crushing",
  41913. height: math.unit(24000, "feet")
  41914. },
  41915. {
  41916. name: "Mountain-Mashing",
  41917. height: math.unit(80000, "feet")
  41918. },
  41919. {
  41920. name: "District Demolisher",
  41921. height: math.unit(240000, "feet")
  41922. },
  41923. {
  41924. name: "Tri-County Terror",
  41925. height: math.unit(800000, "feet")
  41926. },
  41927. {
  41928. name: "State Smasher",
  41929. height: math.unit(2.4e6, "feet")
  41930. },
  41931. {
  41932. name: "Nation Nemesis",
  41933. height: math.unit(8e6, "feet")
  41934. },
  41935. {
  41936. name: "Continent Cracker",
  41937. height: math.unit(2.4e7, "feet")
  41938. },
  41939. {
  41940. name: "Planet-Pillaging",
  41941. height: math.unit(8e7, "feet")
  41942. },
  41943. {
  41944. name: "Earth-Eclipsing",
  41945. height: math.unit(2.4e8, "feet")
  41946. },
  41947. {
  41948. name: "Jovian-Jostling",
  41949. height: math.unit(8e8, "feet")
  41950. },
  41951. {
  41952. name: "Gas Giant Gulper",
  41953. height: math.unit(2.4e9, "feet")
  41954. },
  41955. {
  41956. name: "Astral Annihilator",
  41957. height: math.unit(8e9, "feet")
  41958. },
  41959. {
  41960. name: "Celestial Conqueror",
  41961. height: math.unit(2.4e10, "feet")
  41962. },
  41963. {
  41964. name: "Sol-Swallowing",
  41965. height: math.unit(8e10, "feet")
  41966. },
  41967. {
  41968. name: "Hunter of the Heavens",
  41969. height: math.unit(2.4e13, "feet")
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(10, "feet"),
  41978. weight: math.unit(844, "kilograms"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/rebecca-pawlson/front.svg",
  41982. extra: 1196/1099,
  41983. bottom: 81/1277
  41984. },
  41985. extraAttributes: {
  41986. "pawSize": {
  41987. name: "Paw Size",
  41988. power: 2,
  41989. type: "area",
  41990. base: math.unit(0.2 * 0.375, "meters^2")
  41991. },
  41992. "handSize": {
  41993. name: "Hand Size",
  41994. power: 2,
  41995. type: "area",
  41996. base: math.unit(0.2 * 0.35, "meters^2")
  41997. },
  41998. "breastDiameter": {
  41999. name: "Breast Diameter",
  42000. power: 1,
  42001. type: "length",
  42002. base: math.unit(0.5, "meters")
  42003. },
  42004. "breastVolume": {
  42005. name: "Breast Volume",
  42006. power: 3,
  42007. type: "volume",
  42008. base: math.unit(0.065, "m^3")
  42009. },
  42010. "breastMass": {
  42011. name: "Breast Mass",
  42012. power: 3,
  42013. type: "mass",
  42014. base: math.unit(65, "kg")
  42015. },
  42016. "nippleDiameter": {
  42017. name: "Nipple Diameter",
  42018. power: 1,
  42019. type: "length",
  42020. base: math.unit(0.1, "meters")
  42021. },
  42022. }
  42023. },
  42024. back: {
  42025. height: math.unit(10, "feet"),
  42026. weight: math.unit(844, "kilograms"),
  42027. name: "Back",
  42028. image: {
  42029. source: "./media/characters/rebecca-pawlson/back.svg",
  42030. extra: 879/776,
  42031. bottom: 43/922
  42032. },
  42033. extraAttributes: {
  42034. "pawSize": {
  42035. name: "Paw Size",
  42036. power: 2,
  42037. type: "area",
  42038. base: math.unit(0.2 * 0.375, "meters^2")
  42039. },
  42040. "handSize": {
  42041. name: "Hand Size",
  42042. power: 2,
  42043. type: "area",
  42044. base: math.unit(0.2 * 0.35, "meters^2")
  42045. },
  42046. "breastDiameter": {
  42047. name: "Breast Diameter",
  42048. power: 1,
  42049. type: "length",
  42050. base: math.unit(0.5, "meters")
  42051. },
  42052. "breastVolume": {
  42053. name: "Breast Volume",
  42054. power: 3,
  42055. type: "volume",
  42056. base: math.unit(0.065, "m^3")
  42057. },
  42058. "breastMass": {
  42059. name: "Breast Mass",
  42060. power: 3,
  42061. type: "mass",
  42062. base: math.unit(65, "kg")
  42063. },
  42064. "nippleDiameter": {
  42065. name: "Nipple Diameter",
  42066. power: 1,
  42067. type: "length",
  42068. base: math.unit(0.1, "meters")
  42069. },
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Normal",
  42076. height: math.unit(6 + 8/12, "feet")
  42077. },
  42078. {
  42079. name: "Mini Macro",
  42080. height: math.unit(10, "feet"),
  42081. default: true
  42082. },
  42083. {
  42084. name: "Macro",
  42085. height: math.unit(100, "feet")
  42086. },
  42087. {
  42088. name: "Mega Macro",
  42089. height: math.unit(2500, "feet")
  42090. },
  42091. {
  42092. name: "Giga Macro",
  42093. height: math.unit(50, "miles")
  42094. },
  42095. ]
  42096. ))
  42097. characterMakers.push(() => makeCharacter(
  42098. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42099. {
  42100. front: {
  42101. height: math.unit(7 + 6/12, "feet"),
  42102. weight: math.unit(600, "lb"),
  42103. name: "Front",
  42104. image: {
  42105. source: "./media/characters/moxie-nova/front.svg",
  42106. extra: 1734/1652,
  42107. bottom: 41/1775
  42108. }
  42109. },
  42110. },
  42111. [
  42112. {
  42113. name: "Normal",
  42114. height: math.unit(7 + 6/12, "feet"),
  42115. default: true
  42116. },
  42117. ]
  42118. ))
  42119. characterMakers.push(() => makeCharacter(
  42120. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42121. {
  42122. goat: {
  42123. height: math.unit(4, "feet"),
  42124. weight: math.unit(180, "lb"),
  42125. name: "Goat",
  42126. image: {
  42127. source: "./media/characters/tiffany/goat.svg",
  42128. extra: 1845/1595,
  42129. bottom: 106/1951
  42130. }
  42131. },
  42132. front: {
  42133. height: math.unit(5, "feet"),
  42134. weight: math.unit(150, "lb"),
  42135. name: "Foxcoon",
  42136. image: {
  42137. source: "./media/characters/tiffany/foxcoon.svg",
  42138. extra: 1941/1845,
  42139. bottom: 58/1999
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(5, "feet"),
  42147. default: true
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(8, "feet"),
  42156. weight: math.unit(300, "lb"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/raxinath/front.svg",
  42160. extra: 1407/1309,
  42161. bottom: 39/1446
  42162. }
  42163. },
  42164. back: {
  42165. height: math.unit(8, "feet"),
  42166. weight: math.unit(300, "lb"),
  42167. name: "Back",
  42168. image: {
  42169. source: "./media/characters/raxinath/back.svg",
  42170. extra: 1405/1315,
  42171. bottom: 9/1414
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Speck",
  42178. height: math.unit(0.5, "nm")
  42179. },
  42180. {
  42181. name: "Micro",
  42182. height: math.unit(3, "inches")
  42183. },
  42184. {
  42185. name: "Kobold",
  42186. height: math.unit(3, "feet")
  42187. },
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(8, "feet"),
  42191. default: true
  42192. },
  42193. {
  42194. name: "Giant",
  42195. height: math.unit(50, "feet")
  42196. },
  42197. {
  42198. name: "Macro",
  42199. height: math.unit(1000, "feet")
  42200. },
  42201. {
  42202. name: "Megamacro",
  42203. height: math.unit(1, "mile")
  42204. },
  42205. ]
  42206. ))
  42207. characterMakers.push(() => makeCharacter(
  42208. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42209. {
  42210. front: {
  42211. height: math.unit(10, "feet"),
  42212. weight: math.unit(1442, "lb"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/mal-dragon/front.svg",
  42216. extra: 1515/1444,
  42217. bottom: 113/1628
  42218. }
  42219. },
  42220. back: {
  42221. height: math.unit(10, "feet"),
  42222. weight: math.unit(1442, "lb"),
  42223. name: "Back",
  42224. image: {
  42225. source: "./media/characters/mal-dragon/back.svg",
  42226. extra: 1527/1434,
  42227. bottom: 25/1552
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Mortal Interaction",
  42234. height: math.unit(10, "feet"),
  42235. default: true
  42236. },
  42237. {
  42238. name: "Large",
  42239. height: math.unit(30, "feet")
  42240. },
  42241. {
  42242. name: "Kaiju",
  42243. height: math.unit(300, "feet")
  42244. },
  42245. {
  42246. name: "Megamacro",
  42247. height: math.unit(10000, "feet")
  42248. },
  42249. {
  42250. name: "Continent Cracker",
  42251. height: math.unit(30000000, "feet")
  42252. },
  42253. {
  42254. name: "Sol-Swallowing",
  42255. height: math.unit(1e11, "feet")
  42256. },
  42257. {
  42258. name: "Light Universal",
  42259. height: math.unit(5, "universes")
  42260. },
  42261. {
  42262. name: "Universe Atoms",
  42263. height: math.unit(1.829e9, "universes")
  42264. },
  42265. {
  42266. name: "Light Multiversal",
  42267. height: math.unit(5, "multiverses")
  42268. },
  42269. {
  42270. name: "Multiverse Atoms",
  42271. height: math.unit(1.829e9, "multiverses")
  42272. },
  42273. {
  42274. name: "Fabric of Time",
  42275. height: math.unit(1e262, "multiverses")
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42281. {
  42282. front: {
  42283. height: math.unit(9, "feet"),
  42284. weight: math.unit(1050, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/tabitha/front.svg",
  42288. extra: 2083/1994,
  42289. bottom: 68/2151
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Baseline",
  42296. height: math.unit(9, "feet"),
  42297. default: true
  42298. },
  42299. {
  42300. name: "Giant",
  42301. height: math.unit(90, "feet")
  42302. },
  42303. {
  42304. name: "Macro",
  42305. height: math.unit(900, "feet")
  42306. },
  42307. {
  42308. name: "Megamacro",
  42309. height: math.unit(9000, "feet")
  42310. },
  42311. {
  42312. name: "City-Crushing",
  42313. height: math.unit(27000, "feet")
  42314. },
  42315. {
  42316. name: "Mountain-Mashing",
  42317. height: math.unit(90000, "feet")
  42318. },
  42319. {
  42320. name: "Nation Nemesis",
  42321. height: math.unit(9e6, "feet")
  42322. },
  42323. {
  42324. name: "Continent Cracker",
  42325. height: math.unit(27e6, "feet")
  42326. },
  42327. {
  42328. name: "Earth-Eclipsing",
  42329. height: math.unit(2.7e8, "feet")
  42330. },
  42331. {
  42332. name: "Gas Giant Gulper",
  42333. height: math.unit(2.7e9, "feet")
  42334. },
  42335. {
  42336. name: "Sol-Swallowing",
  42337. height: math.unit(9e10, "feet")
  42338. },
  42339. {
  42340. name: "Galaxy Gulper",
  42341. height: math.unit(9, "galaxies")
  42342. },
  42343. {
  42344. name: "Cosmos Churner",
  42345. height: math.unit(9, "universes")
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(160, "cm"),
  42354. weight: math.unit(55, "kg"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/tow/front.svg",
  42358. extra: 1751/1722,
  42359. bottom: 74/1825
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Norm",
  42366. height: math.unit(160, "cm")
  42367. },
  42368. {
  42369. name: "Casual",
  42370. height: math.unit(3200, "m"),
  42371. default: true
  42372. },
  42373. {
  42374. name: "Show-Off",
  42375. height: math.unit(160, "km")
  42376. },
  42377. ]
  42378. ))
  42379. characterMakers.push(() => makeCharacter(
  42380. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42381. {
  42382. front: {
  42383. height: math.unit(7 + 11/12, "feet"),
  42384. weight: math.unit(342.8, "lb"),
  42385. name: "Front",
  42386. image: {
  42387. source: "./media/characters/vivian-orca-dragon/front.svg",
  42388. extra: 1890/1865,
  42389. bottom: 28/1918
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Micro",
  42396. height: math.unit(5, "inches")
  42397. },
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(7 + 11/12, "feet"),
  42401. default: true
  42402. },
  42403. {
  42404. name: "Macro",
  42405. height: math.unit(395 + 7/12, "feet")
  42406. },
  42407. ]
  42408. ))
  42409. characterMakers.push(() => makeCharacter(
  42410. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42411. {
  42412. side: {
  42413. height: math.unit(10, "feet"),
  42414. weight: math.unit(1442, "lb"),
  42415. name: "Side",
  42416. image: {
  42417. source: "./media/characters/lotherakon/side.svg",
  42418. extra: 1604/1497,
  42419. bottom: 89/1693
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Mortal Interaction",
  42426. height: math.unit(10, "feet")
  42427. },
  42428. {
  42429. name: "Large",
  42430. height: math.unit(30, "feet"),
  42431. default: true
  42432. },
  42433. {
  42434. name: "Giant",
  42435. height: math.unit(100, "feet")
  42436. },
  42437. {
  42438. name: "Kaiju",
  42439. height: math.unit(300, "feet")
  42440. },
  42441. {
  42442. name: "Macro",
  42443. height: math.unit(1000, "feet")
  42444. },
  42445. {
  42446. name: "Macro+",
  42447. height: math.unit(3000, "feet")
  42448. },
  42449. {
  42450. name: "Megamacro",
  42451. height: math.unit(10000, "feet")
  42452. },
  42453. {
  42454. name: "City-Crushing",
  42455. height: math.unit(30000, "feet")
  42456. },
  42457. {
  42458. name: "Continent Cracker",
  42459. height: math.unit(30e6, "feet")
  42460. },
  42461. {
  42462. name: "Earth Eclipsing",
  42463. height: math.unit(3e8, "feet")
  42464. },
  42465. {
  42466. name: "Gas Giant Gulper",
  42467. height: math.unit(3e9, "feet")
  42468. },
  42469. {
  42470. name: "Sol-Swallowing",
  42471. height: math.unit(1e11, "feet")
  42472. },
  42473. {
  42474. name: "System Swallower",
  42475. height: math.unit(3e14, "feet")
  42476. },
  42477. {
  42478. name: "Galaxy Gulper",
  42479. height: math.unit(10, "galaxies")
  42480. },
  42481. {
  42482. name: "Light Universal",
  42483. height: math.unit(5, "universes")
  42484. },
  42485. {
  42486. name: "Universe Palm",
  42487. height: math.unit(20, "universes")
  42488. },
  42489. {
  42490. name: "Light Multiversal",
  42491. height: math.unit(5, "multiverses")
  42492. },
  42493. {
  42494. name: "Multiverse Palm",
  42495. height: math.unit(20, "multiverses")
  42496. },
  42497. {
  42498. name: "Inferno Incarnate",
  42499. height: math.unit(1e7, "multiverses")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(8, "feet"),
  42508. weight: math.unit(1200, "lb"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/malithee/front.svg",
  42512. extra: 1675/1640,
  42513. bottom: 162/1837
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Mortal Interaction",
  42520. height: math.unit(8, "feet"),
  42521. default: true
  42522. },
  42523. {
  42524. name: "Large",
  42525. height: math.unit(24, "feet")
  42526. },
  42527. {
  42528. name: "Kaiju",
  42529. height: math.unit(240, "feet")
  42530. },
  42531. {
  42532. name: "Megamacro",
  42533. height: math.unit(8000, "feet")
  42534. },
  42535. {
  42536. name: "Continent Cracker",
  42537. height: math.unit(24e6, "feet")
  42538. },
  42539. {
  42540. name: "Earth-Eclipsing",
  42541. height: math.unit(2.4e8, "feet")
  42542. },
  42543. {
  42544. name: "Sol-Swallowing",
  42545. height: math.unit(8e10, "feet")
  42546. },
  42547. {
  42548. name: "Galaxy Gulper",
  42549. height: math.unit(8, "galaxies")
  42550. },
  42551. {
  42552. name: "Light Universal",
  42553. height: math.unit(4, "universes")
  42554. },
  42555. {
  42556. name: "Universe Atoms",
  42557. height: math.unit(1.829e9, "universes")
  42558. },
  42559. {
  42560. name: "Light Multiversal",
  42561. height: math.unit(4, "multiverses")
  42562. },
  42563. {
  42564. name: "Multiverse Atoms",
  42565. height: math.unit(1.829e9, "multiverses")
  42566. },
  42567. {
  42568. name: "Nigh-Omnipresence",
  42569. height: math.unit(8e261, "multiverses")
  42570. },
  42571. ]
  42572. ))
  42573. characterMakers.push(() => makeCharacter(
  42574. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42575. {
  42576. front: {
  42577. height: math.unit(10, "feet"),
  42578. weight: math.unit(1500, "lb"),
  42579. name: "Front",
  42580. image: {
  42581. source: "./media/characters/miles-thestia/front.svg",
  42582. extra: 1812/1727,
  42583. bottom: 86/1898
  42584. }
  42585. },
  42586. back: {
  42587. height: math.unit(10, "feet"),
  42588. weight: math.unit(1500, "lb"),
  42589. name: "Back",
  42590. image: {
  42591. source: "./media/characters/miles-thestia/back.svg",
  42592. extra: 1799/1690,
  42593. bottom: 47/1846
  42594. }
  42595. },
  42596. frontNsfw: {
  42597. height: math.unit(10, "feet"),
  42598. weight: math.unit(1500, "lb"),
  42599. name: "Front (NSFW)",
  42600. image: {
  42601. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42602. extra: 1812/1727,
  42603. bottom: 86/1898
  42604. }
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Mini-Macro",
  42610. height: math.unit(10, "feet"),
  42611. default: true
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42617. {
  42618. front: {
  42619. height: math.unit(25, "feet"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/titan-s-wulf/front.svg",
  42623. extra: 1560/1484,
  42624. bottom: 76/1636
  42625. }
  42626. },
  42627. },
  42628. [
  42629. {
  42630. name: "Smallest",
  42631. height: math.unit(25, "feet"),
  42632. default: true
  42633. },
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(200, "feet")
  42637. },
  42638. {
  42639. name: "Macro",
  42640. height: math.unit(200000, "feet")
  42641. },
  42642. {
  42643. name: "Multiversal Original",
  42644. height: math.unit(10000, "multiverses")
  42645. },
  42646. ]
  42647. ))
  42648. characterMakers.push(() => makeCharacter(
  42649. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42650. {
  42651. front: {
  42652. height: math.unit(8, "feet"),
  42653. weight: math.unit(553, "lb"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/tawendeh/front.svg",
  42657. extra: 2365/2268,
  42658. bottom: 83/2448
  42659. }
  42660. },
  42661. frontClothed: {
  42662. height: math.unit(8, "feet"),
  42663. weight: math.unit(553, "lb"),
  42664. name: "Front (Clothed)",
  42665. image: {
  42666. source: "./media/characters/tawendeh/front-clothed.svg",
  42667. extra: 2365/2268,
  42668. bottom: 83/2448
  42669. }
  42670. },
  42671. back: {
  42672. height: math.unit(8, "feet"),
  42673. weight: math.unit(553, "lb"),
  42674. name: "Back",
  42675. image: {
  42676. source: "./media/characters/tawendeh/back.svg",
  42677. extra: 2397/2294,
  42678. bottom: 42/2439
  42679. }
  42680. },
  42681. },
  42682. [
  42683. {
  42684. name: "Mortal Interaction",
  42685. height: math.unit(8, "feet"),
  42686. default: true
  42687. },
  42688. {
  42689. name: "Giant",
  42690. height: math.unit(80, "feet")
  42691. },
  42692. {
  42693. name: "Macro",
  42694. height: math.unit(800, "feet")
  42695. },
  42696. {
  42697. name: "Megamacro",
  42698. height: math.unit(8000, "feet")
  42699. },
  42700. {
  42701. name: "City-Crushing",
  42702. height: math.unit(24000, "feet")
  42703. },
  42704. {
  42705. name: "Mountain-Mashing",
  42706. height: math.unit(80000, "feet")
  42707. },
  42708. {
  42709. name: "Nation Nemesis",
  42710. height: math.unit(8e6, "feet")
  42711. },
  42712. {
  42713. name: "Continent Cracker",
  42714. height: math.unit(24e6, "feet")
  42715. },
  42716. {
  42717. name: "Earth-Eclipsing",
  42718. height: math.unit(2.4e8, "feet")
  42719. },
  42720. {
  42721. name: "Gas Giant Gulper",
  42722. height: math.unit(2.4e9, "feet")
  42723. },
  42724. {
  42725. name: "Sol-Swallowing",
  42726. height: math.unit(8e10, "feet")
  42727. },
  42728. {
  42729. name: "Galaxy Gulper",
  42730. height: math.unit(8, "galaxies")
  42731. },
  42732. {
  42733. name: "Cosmos Churner",
  42734. height: math.unit(8, "universes")
  42735. },
  42736. {
  42737. name: "Omnipotent Otter",
  42738. height: math.unit(80, "universes")
  42739. },
  42740. ]
  42741. ))
  42742. characterMakers.push(() => makeCharacter(
  42743. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42744. {
  42745. front: {
  42746. height: math.unit(2.6, "meters"),
  42747. weight: math.unit(900, "kg"),
  42748. name: "Front",
  42749. image: {
  42750. source: "./media/characters/neesha/front.svg",
  42751. extra: 1803/1653,
  42752. bottom: 128/1931
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Normal",
  42759. height: math.unit(2.6, "meters"),
  42760. default: true
  42761. },
  42762. {
  42763. name: "Macro",
  42764. height: math.unit(50, "meters")
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(5, "feet"),
  42773. weight: math.unit(185, "lb"),
  42774. name: "Front",
  42775. image: {
  42776. source: "./media/characters/kyera/front.svg",
  42777. extra: 1875/1790,
  42778. bottom: 96/1971
  42779. }
  42780. },
  42781. },
  42782. [
  42783. {
  42784. name: "Normal",
  42785. height: math.unit(5, "feet"),
  42786. default: true
  42787. },
  42788. ]
  42789. ))
  42790. characterMakers.push(() => makeCharacter(
  42791. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42792. {
  42793. front: {
  42794. height: math.unit(7 + 6/12, "feet"),
  42795. weight: math.unit(540, "lb"),
  42796. name: "Front",
  42797. image: {
  42798. source: "./media/characters/yuko/front.svg",
  42799. extra: 1282/1222,
  42800. bottom: 101/1383
  42801. }
  42802. },
  42803. frontClothed: {
  42804. height: math.unit(7 + 6/12, "feet"),
  42805. weight: math.unit(540, "lb"),
  42806. name: "Front (Clothed)",
  42807. image: {
  42808. source: "./media/characters/yuko/front-clothed.svg",
  42809. extra: 1282/1222,
  42810. bottom: 101/1383
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(7 + 6/12, "feet"),
  42818. default: true
  42819. },
  42820. {
  42821. name: "Macro",
  42822. height: math.unit(26 + 9/12, "feet")
  42823. },
  42824. {
  42825. name: "Megamacro",
  42826. height: math.unit(300, "feet")
  42827. },
  42828. {
  42829. name: "Gigamacro",
  42830. height: math.unit(5000, "feet")
  42831. },
  42832. {
  42833. name: "Planetary",
  42834. height: math.unit(10000, "miles")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(8 + 2/12, "feet"),
  42843. weight: math.unit(600, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/deam-nitrel/front.svg",
  42847. extra: 1308/1234,
  42848. bottom: 125/1433
  42849. }
  42850. },
  42851. },
  42852. [
  42853. {
  42854. name: "Normal",
  42855. height: math.unit(8 + 2/12, "feet"),
  42856. default: true
  42857. },
  42858. ]
  42859. ))
  42860. characterMakers.push(() => makeCharacter(
  42861. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42862. {
  42863. front: {
  42864. height: math.unit(6.1, "feet"),
  42865. weight: math.unit(180, "lb"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/skyress/front.svg",
  42869. extra: 1045/915,
  42870. bottom: 28/1073
  42871. }
  42872. },
  42873. maw: {
  42874. height: math.unit(1, "feet"),
  42875. name: "Maw",
  42876. image: {
  42877. source: "./media/characters/skyress/maw.svg"
  42878. }
  42879. },
  42880. },
  42881. [
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(6.1, "feet"),
  42885. default: true
  42886. },
  42887. {
  42888. name: "Macro",
  42889. height: math.unit(200, "feet")
  42890. },
  42891. ]
  42892. ))
  42893. characterMakers.push(() => makeCharacter(
  42894. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42895. {
  42896. front: {
  42897. height: math.unit(4 + 2/12, "feet"),
  42898. weight: math.unit(40, "kg"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/amethyst-jones/front.svg",
  42902. extra: 1220/1150,
  42903. bottom: 101/1321
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Normal",
  42910. height: math.unit(4 + 2/12, "feet"),
  42911. default: true
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42917. {
  42918. front: {
  42919. height: math.unit(1.7, "m"),
  42920. weight: math.unit(135, "lb"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/jade/front.svg",
  42924. extra: 1818/1767,
  42925. bottom: 32/1850
  42926. }
  42927. },
  42928. back: {
  42929. height: math.unit(1.7, "m"),
  42930. weight: math.unit(135, "lb"),
  42931. name: "Back",
  42932. image: {
  42933. source: "./media/characters/jade/back.svg",
  42934. extra: 1869/1809,
  42935. bottom: 35/1904
  42936. }
  42937. },
  42938. hand: {
  42939. height: math.unit(0.24, "m"),
  42940. name: "Hand",
  42941. image: {
  42942. source: "./media/characters/jade/hand.svg"
  42943. }
  42944. },
  42945. foot: {
  42946. height: math.unit(0.263, "m"),
  42947. name: "Foot",
  42948. image: {
  42949. source: "./media/characters/jade/foot.svg"
  42950. }
  42951. },
  42952. dick: {
  42953. height: math.unit(0.47, "m"),
  42954. name: "Dick",
  42955. image: {
  42956. source: "./media/characters/jade/dick.svg"
  42957. }
  42958. },
  42959. },
  42960. [
  42961. {
  42962. name: "Micro",
  42963. height: math.unit(22, "cm")
  42964. },
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(1.7, "m"),
  42968. default: true
  42969. },
  42970. {
  42971. name: "Macro",
  42972. height: math.unit(152, "m")
  42973. },
  42974. ]
  42975. ))
  42976. characterMakers.push(() => makeCharacter(
  42977. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42978. {
  42979. front: {
  42980. height: math.unit(100, "miles"),
  42981. weight: math.unit(20000, "tons"),
  42982. name: "Front",
  42983. image: {
  42984. source: "./media/characters/cookie/front.svg",
  42985. extra: 1125/1070,
  42986. bottom: 30/1155
  42987. }
  42988. },
  42989. },
  42990. [
  42991. {
  42992. name: "Big",
  42993. height: math.unit(50, "feet")
  42994. },
  42995. {
  42996. name: "Macro",
  42997. height: math.unit(100, "miles"),
  42998. default: true
  42999. },
  43000. {
  43001. name: "Megamacro",
  43002. height: math.unit(90000, "miles")
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43008. {
  43009. front: {
  43010. height: math.unit(6, "feet"),
  43011. weight: math.unit(145, "lb"),
  43012. name: "Front",
  43013. image: {
  43014. source: "./media/characters/farzian/front.svg",
  43015. extra: 1902/1693,
  43016. bottom: 108/2010
  43017. }
  43018. },
  43019. },
  43020. [
  43021. {
  43022. name: "Macro",
  43023. height: math.unit(500, "feet"),
  43024. default: true
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(3 + 6/12, "feet"),
  43033. weight: math.unit(50, "lb"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/kimberly-tilson/front.svg",
  43037. extra: 1400/1322,
  43038. bottom: 36/1436
  43039. }
  43040. },
  43041. back: {
  43042. height: math.unit(3 + 6/12, "feet"),
  43043. weight: math.unit(50, "lb"),
  43044. name: "Back",
  43045. image: {
  43046. source: "./media/characters/kimberly-tilson/back.svg",
  43047. extra: 1370/1307,
  43048. bottom: 20/1390
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Normal",
  43055. height: math.unit(3 + 6/12, "feet"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43062. {
  43063. front: {
  43064. height: math.unit(350, "meters"),
  43065. weight: math.unit(7.57059e+8, "lb"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/harthos/front.svg",
  43069. extra: 455/446,
  43070. bottom: 15/470
  43071. },
  43072. form: "peacekeeper",
  43073. default: true
  43074. },
  43075. allusus_front: {
  43076. height: math.unit(270, "meters"),
  43077. weight: math.unit(3.47550e+8, "lb"),
  43078. name: "Front",
  43079. image: {
  43080. source: "./media/characters/harthos/allusus-front.svg",
  43081. extra: 455/446,
  43082. bottom: 15/470
  43083. },
  43084. form: "allusus",
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Macro",
  43090. height: math.unit(350, "meters"),
  43091. default: true,
  43092. form: "peacekeeper"
  43093. },
  43094. {
  43095. name: "Macro",
  43096. height: math.unit(270, "meters"),
  43097. default: true,
  43098. form: "allusus"
  43099. },
  43100. ],
  43101. {
  43102. "peacekeeper": {
  43103. name: "Peacekeeper",
  43104. default: true
  43105. },
  43106. "allusus": {
  43107. name: "Allusus",
  43108. },
  43109. }
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43113. {
  43114. front: {
  43115. height: math.unit(15, "feet"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/hypatia/front.svg",
  43119. extra: 1653/1591,
  43120. bottom: 79/1732
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(15, "feet")
  43128. },
  43129. {
  43130. name: "Small",
  43131. height: math.unit(300, "feet")
  43132. },
  43133. {
  43134. name: "Macro",
  43135. height: math.unit(2500, "feet"),
  43136. default: true
  43137. },
  43138. {
  43139. name: "Mega Macro",
  43140. height: math.unit(1500, "miles")
  43141. },
  43142. {
  43143. name: "Giga Macro",
  43144. height: math.unit(1.5e6, "miles")
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(6, "feet"),
  43153. weight: math.unit(200, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/wulver/front.svg",
  43157. extra: 1724/1632,
  43158. bottom: 130/1854
  43159. }
  43160. },
  43161. frontNsfw: {
  43162. height: math.unit(6, "feet"),
  43163. weight: math.unit(200, "lb"),
  43164. name: "Front (NSFW)",
  43165. image: {
  43166. source: "./media/characters/wulver/front-nsfw.svg",
  43167. extra: 1724/1632,
  43168. bottom: 130/1854
  43169. }
  43170. },
  43171. },
  43172. [
  43173. {
  43174. name: "Human-Sized",
  43175. height: math.unit(6, "feet")
  43176. },
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(4, "meters"),
  43180. default: true
  43181. },
  43182. {
  43183. name: "Large",
  43184. height: math.unit(6, "m")
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(7, "feet"),
  43193. name: "Front",
  43194. image: {
  43195. source: "./media/characters/maru/front.svg",
  43196. extra: 1595/1570,
  43197. bottom: 0/1595
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Normal",
  43204. height: math.unit(7, "feet"),
  43205. default: true
  43206. },
  43207. {
  43208. name: "Macro",
  43209. height: math.unit(700, "feet")
  43210. },
  43211. {
  43212. name: "Mega Macro",
  43213. height: math.unit(25, "miles")
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(6, "feet"),
  43222. weight: math.unit(170, "lb"),
  43223. name: "Front",
  43224. image: {
  43225. source: "./media/characters/xenon/front.svg",
  43226. extra: 1376/1305,
  43227. bottom: 56/1432
  43228. }
  43229. },
  43230. back: {
  43231. height: math.unit(6, "feet"),
  43232. weight: math.unit(170, "lb"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/xenon/back.svg",
  43236. extra: 1328/1259,
  43237. bottom: 95/1423
  43238. }
  43239. },
  43240. maw: {
  43241. height: math.unit(0.52, "feet"),
  43242. name: "Maw",
  43243. image: {
  43244. source: "./media/characters/xenon/maw.svg"
  43245. }
  43246. },
  43247. handLeft: {
  43248. height: math.unit(0.82 * 169 / 153, "feet"),
  43249. name: "Hand (Left)",
  43250. image: {
  43251. source: "./media/characters/xenon/hand-left.svg"
  43252. }
  43253. },
  43254. handRight: {
  43255. height: math.unit(0.82, "feet"),
  43256. name: "Hand (Right)",
  43257. image: {
  43258. source: "./media/characters/xenon/hand-right.svg"
  43259. }
  43260. },
  43261. footLeft: {
  43262. height: math.unit(1.13, "feet"),
  43263. name: "Foot (Left)",
  43264. image: {
  43265. source: "./media/characters/xenon/foot-left.svg"
  43266. }
  43267. },
  43268. footRight: {
  43269. height: math.unit(1.13 * 194 / 196, "feet"),
  43270. name: "Foot (Right)",
  43271. image: {
  43272. source: "./media/characters/xenon/foot-right.svg"
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Micro",
  43279. height: math.unit(0.8, "inches")
  43280. },
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(6, "feet")
  43284. },
  43285. {
  43286. name: "Macro",
  43287. height: math.unit(50, "feet"),
  43288. default: true
  43289. },
  43290. {
  43291. name: "Macro+",
  43292. height: math.unit(250, "feet")
  43293. },
  43294. {
  43295. name: "Megamacro",
  43296. height: math.unit(1500, "feet")
  43297. },
  43298. ]
  43299. ))
  43300. characterMakers.push(() => makeCharacter(
  43301. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43302. {
  43303. front: {
  43304. height: math.unit(7 + 5/12, "feet"),
  43305. name: "Front",
  43306. image: {
  43307. source: "./media/characters/zane/front.svg",
  43308. extra: 1260/1203,
  43309. bottom: 94/1354
  43310. }
  43311. },
  43312. back: {
  43313. height: math.unit(5.05, "feet"),
  43314. name: "Back",
  43315. image: {
  43316. source: "./media/characters/zane/back.svg",
  43317. extra: 893/829,
  43318. bottom: 30/923
  43319. }
  43320. },
  43321. werewolf: {
  43322. height: math.unit(11, "feet"),
  43323. name: "Werewolf",
  43324. image: {
  43325. source: "./media/characters/zane/werewolf.svg",
  43326. extra: 1383/1323,
  43327. bottom: 89/1472
  43328. }
  43329. },
  43330. foot: {
  43331. height: math.unit(1.46, "feet"),
  43332. name: "Foot",
  43333. image: {
  43334. source: "./media/characters/zane/foot.svg"
  43335. }
  43336. },
  43337. footFront: {
  43338. height: math.unit(0.784, "feet"),
  43339. name: "Foot (Front)",
  43340. image: {
  43341. source: "./media/characters/zane/foot-front.svg"
  43342. }
  43343. },
  43344. dick: {
  43345. height: math.unit(1.95, "feet"),
  43346. name: "Dick",
  43347. image: {
  43348. source: "./media/characters/zane/dick.svg"
  43349. }
  43350. },
  43351. dickWerewolf: {
  43352. height: math.unit(3.77, "feet"),
  43353. name: "Dick (Werewolf)",
  43354. image: {
  43355. source: "./media/characters/zane/dick.svg"
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(7 + 5/12, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(6 + 2/12, "feet"),
  43372. weight: math.unit(284, "lb"),
  43373. name: "Front",
  43374. image: {
  43375. source: "./media/characters/benni-desparque/front.svg",
  43376. extra: 878/729,
  43377. bottom: 58/936
  43378. }
  43379. },
  43380. back: {
  43381. height: math.unit(6 + 2/12, "feet"),
  43382. weight: math.unit(284, "lb"),
  43383. name: "Back",
  43384. image: {
  43385. source: "./media/characters/benni-desparque/back.svg",
  43386. extra: 901/756,
  43387. bottom: 51/952
  43388. }
  43389. },
  43390. dressed: {
  43391. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43392. weight: math.unit(284, "lb"),
  43393. name: "Dressed",
  43394. image: {
  43395. source: "./media/characters/benni-desparque/dressed.svg",
  43396. extra: 1514/1276,
  43397. bottom: 65/1579
  43398. }
  43399. },
  43400. hand: {
  43401. height: math.unit(1.28, "feet"),
  43402. name: "Hand",
  43403. image: {
  43404. source: "./media/characters/benni-desparque/hand.svg"
  43405. }
  43406. },
  43407. foot: {
  43408. height: math.unit(1.53, "feet"),
  43409. name: "Foot",
  43410. image: {
  43411. source: "./media/characters/benni-desparque/foot.svg"
  43412. }
  43413. },
  43414. aiControlUnit: {
  43415. height: math.unit(0.175, "feet"),
  43416. name: "AI Control Unit",
  43417. image: {
  43418. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43419. }
  43420. },
  43421. },
  43422. [
  43423. {
  43424. name: "Civilian",
  43425. height: math.unit(6 + 2/12, "feet")
  43426. },
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(98, "feet"),
  43430. default: true
  43431. },
  43432. {
  43433. name: "Kaiju Fighter",
  43434. height: math.unit(268, "feet")
  43435. },
  43436. ]
  43437. ))
  43438. characterMakers.push(() => makeCharacter(
  43439. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43440. {
  43441. front: {
  43442. height: math.unit(5, "feet"),
  43443. weight: math.unit(105, "lb"),
  43444. name: "Front",
  43445. image: {
  43446. source: "./media/characters/maxine/front.svg",
  43447. extra: 1386/1250,
  43448. bottom: 71/1457
  43449. }
  43450. },
  43451. },
  43452. [
  43453. {
  43454. name: "Normal",
  43455. height: math.unit(5, "feet"),
  43456. default: true
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43462. {
  43463. front: {
  43464. height: math.unit(11 + 7/12, "feet"),
  43465. weight: math.unit(9576, "lb"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/scaly/front.svg",
  43469. extra: 888/867,
  43470. bottom: 36/924
  43471. }
  43472. },
  43473. },
  43474. [
  43475. {
  43476. name: "Normal",
  43477. height: math.unit(11 + 7/12, "feet"),
  43478. default: true
  43479. },
  43480. ]
  43481. ))
  43482. characterMakers.push(() => makeCharacter(
  43483. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43484. {
  43485. front: {
  43486. height: math.unit(6 + 3/12, "feet"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/saelria/front.svg",
  43490. extra: 1243/1138,
  43491. bottom: 46/1289
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Micro",
  43498. height: math.unit(6, "inches"),
  43499. },
  43500. {
  43501. name: "Normal",
  43502. height: math.unit(6 + 3/12, "feet"),
  43503. default: true
  43504. },
  43505. {
  43506. name: "Macro",
  43507. height: math.unit(25, "feet")
  43508. },
  43509. ]
  43510. ))
  43511. characterMakers.push(() => makeCharacter(
  43512. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43513. {
  43514. front: {
  43515. height: math.unit(80, "meters"),
  43516. weight: math.unit(7000, "tonnes"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/tef/front.svg",
  43520. extra: 2036/1991,
  43521. bottom: 54/2090
  43522. }
  43523. },
  43524. back: {
  43525. height: math.unit(80, "meters"),
  43526. weight: math.unit(7000, "tonnes"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/tef/back.svg",
  43530. extra: 2036/1991,
  43531. bottom: 54/2090
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Macro",
  43538. height: math.unit(80, "meters"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(13, "feet"),
  43548. weight: math.unit(6, "tons"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/rover/front.svg",
  43552. extra: 1233/1156,
  43553. bottom: 50/1283
  43554. }
  43555. },
  43556. back: {
  43557. height: math.unit(13, "feet"),
  43558. weight: math.unit(6, "tons"),
  43559. name: "Back",
  43560. image: {
  43561. source: "./media/characters/rover/back.svg",
  43562. extra: 1327/1258,
  43563. bottom: 39/1366
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(13, "feet"),
  43571. default: true
  43572. },
  43573. {
  43574. name: "Macro",
  43575. height: math.unit(1300, "feet")
  43576. },
  43577. {
  43578. name: "Megamacro",
  43579. height: math.unit(1300, "miles")
  43580. },
  43581. {
  43582. name: "Gigamacro",
  43583. height: math.unit(1300000, "miles")
  43584. },
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(10, "feet"),
  43592. weight: math.unit(500, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/ariz/front.svg",
  43596. extra: 461/450,
  43597. bottom: 16/477
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "MiniMacro",
  43604. height: math.unit(10, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(6, "feet"),
  43614. weight: math.unit(140, "lb"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/sigrun/front.svg",
  43618. extra: 1418/1359,
  43619. bottom: 27/1445
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Macro",
  43626. height: math.unit(35, "feet"),
  43627. default: true
  43628. },
  43629. ]
  43630. ))
  43631. characterMakers.push(() => makeCharacter(
  43632. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43633. {
  43634. front: {
  43635. height: math.unit(6, "feet"),
  43636. weight: math.unit(150, "lb"),
  43637. name: "Front",
  43638. image: {
  43639. source: "./media/characters/numin/front.svg",
  43640. extra: 1433/1388,
  43641. bottom: 12/1445
  43642. }
  43643. },
  43644. },
  43645. [
  43646. {
  43647. name: "Macro",
  43648. height: math.unit(21.5, "km"),
  43649. default: true
  43650. },
  43651. ]
  43652. ))
  43653. characterMakers.push(() => makeCharacter(
  43654. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43655. {
  43656. front: {
  43657. height: math.unit(6, "feet"),
  43658. weight: math.unit(463, "lb"),
  43659. name: "Front",
  43660. image: {
  43661. source: "./media/characters/melwa/front.svg",
  43662. extra: 1307/1248,
  43663. bottom: 93/1400
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Macro",
  43670. height: math.unit(50, "meters"),
  43671. default: true
  43672. },
  43673. ]
  43674. ))
  43675. characterMakers.push(() => makeCharacter(
  43676. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43677. {
  43678. front: {
  43679. height: math.unit(325, "feet"),
  43680. name: "Front",
  43681. image: {
  43682. source: "./media/characters/zorkaiju/front.svg",
  43683. extra: 1955/1814,
  43684. bottom: 40/1995
  43685. }
  43686. },
  43687. frontExtended: {
  43688. height: math.unit(325, "feet"),
  43689. name: "Front (Extended)",
  43690. image: {
  43691. source: "./media/characters/zorkaiju/front-extended.svg",
  43692. extra: 1955/1814,
  43693. bottom: 40/1995
  43694. }
  43695. },
  43696. side: {
  43697. height: math.unit(325, "feet"),
  43698. name: "Side",
  43699. image: {
  43700. source: "./media/characters/zorkaiju/side.svg",
  43701. extra: 1495/1396,
  43702. bottom: 17/1512
  43703. }
  43704. },
  43705. sideExtended: {
  43706. height: math.unit(325, "feet"),
  43707. name: "Side (Extended)",
  43708. image: {
  43709. source: "./media/characters/zorkaiju/side-extended.svg",
  43710. extra: 1495/1396,
  43711. bottom: 17/1512
  43712. }
  43713. },
  43714. back: {
  43715. height: math.unit(325, "feet"),
  43716. name: "Back",
  43717. image: {
  43718. source: "./media/characters/zorkaiju/back.svg",
  43719. extra: 1959/1821,
  43720. bottom: 31/1990
  43721. }
  43722. },
  43723. backExtended: {
  43724. height: math.unit(325, "feet"),
  43725. name: "Back (Extended)",
  43726. image: {
  43727. source: "./media/characters/zorkaiju/back-extended.svg",
  43728. extra: 1959/1821,
  43729. bottom: 31/1990
  43730. }
  43731. },
  43732. hand: {
  43733. height: math.unit(58.4, "feet"),
  43734. name: "Hand",
  43735. image: {
  43736. source: "./media/characters/zorkaiju/hand.svg"
  43737. }
  43738. },
  43739. handExtended: {
  43740. height: math.unit(61.4, "feet"),
  43741. name: "Hand (Extended)",
  43742. image: {
  43743. source: "./media/characters/zorkaiju/hand-extended.svg"
  43744. }
  43745. },
  43746. foot: {
  43747. height: math.unit(95, "feet"),
  43748. name: "Foot",
  43749. image: {
  43750. source: "./media/characters/zorkaiju/foot.svg"
  43751. }
  43752. },
  43753. leftArm: {
  43754. height: math.unit(59, "feet"),
  43755. name: "Left Arm",
  43756. image: {
  43757. source: "./media/characters/zorkaiju/left-arm.svg"
  43758. }
  43759. },
  43760. rightArm: {
  43761. height: math.unit(59, "feet"),
  43762. name: "Right Arm",
  43763. image: {
  43764. source: "./media/characters/zorkaiju/right-arm.svg"
  43765. }
  43766. },
  43767. leftArmExtended: {
  43768. height: math.unit(59 * 1.033546, "feet"),
  43769. name: "Left Arm (Extended)",
  43770. image: {
  43771. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43772. }
  43773. },
  43774. rightArmExtended: {
  43775. height: math.unit(59 * 1.0496, "feet"),
  43776. name: "Right Arm (Extended)",
  43777. image: {
  43778. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43779. }
  43780. },
  43781. tail: {
  43782. height: math.unit(104, "feet"),
  43783. name: "Tail",
  43784. image: {
  43785. source: "./media/characters/zorkaiju/tail.svg"
  43786. }
  43787. },
  43788. tailExtended: {
  43789. height: math.unit(104, "feet"),
  43790. name: "Tail (Extended)",
  43791. image: {
  43792. source: "./media/characters/zorkaiju/tail-extended.svg"
  43793. }
  43794. },
  43795. tailBottom: {
  43796. height: math.unit(104, "feet"),
  43797. name: "Tail Bottom",
  43798. image: {
  43799. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43800. }
  43801. },
  43802. crystal: {
  43803. height: math.unit(27.54, "feet"),
  43804. name: "Crystal",
  43805. image: {
  43806. source: "./media/characters/zorkaiju/crystal.svg"
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Kaiju",
  43813. height: math.unit(325, "feet"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43820. {
  43821. front: {
  43822. height: math.unit(6 + 1/12, "feet"),
  43823. weight: math.unit(115, "lb"),
  43824. name: "Front",
  43825. image: {
  43826. source: "./media/characters/bailey-belfry/front.svg",
  43827. extra: 1240/1121,
  43828. bottom: 101/1341
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(6 + 1/12, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43842. {
  43843. side: {
  43844. height: math.unit(4, "meters"),
  43845. weight: math.unit(250, "kg"),
  43846. name: "Side",
  43847. image: {
  43848. source: "./media/characters/blacky/side.svg",
  43849. extra: 1027/919,
  43850. bottom: 43/1070
  43851. }
  43852. },
  43853. maw: {
  43854. height: math.unit(1, "meters"),
  43855. name: "Maw",
  43856. image: {
  43857. source: "./media/characters/blacky/maw.svg"
  43858. }
  43859. },
  43860. paw: {
  43861. height: math.unit(1, "meters"),
  43862. name: "Paw",
  43863. image: {
  43864. source: "./media/characters/blacky/paw.svg"
  43865. }
  43866. },
  43867. },
  43868. [
  43869. {
  43870. name: "Normal",
  43871. height: math.unit(4, "meters"),
  43872. default: true
  43873. },
  43874. ]
  43875. ))
  43876. characterMakers.push(() => makeCharacter(
  43877. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43878. {
  43879. front: {
  43880. height: math.unit(170, "cm"),
  43881. weight: math.unit(66, "kg"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/thux-ei/front.svg",
  43885. extra: 1109/1011,
  43886. bottom: 8/1117
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Normal",
  43893. height: math.unit(170, "cm"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(5, "feet"),
  43903. weight: math.unit(120, "lb"),
  43904. name: "Front",
  43905. image: {
  43906. source: "./media/characters/roxanne-voltaire/front.svg",
  43907. extra: 1901/1779,
  43908. bottom: 53/1954
  43909. }
  43910. },
  43911. },
  43912. [
  43913. {
  43914. name: "Normal",
  43915. height: math.unit(5, "feet"),
  43916. default: true
  43917. },
  43918. {
  43919. name: "Giant",
  43920. height: math.unit(50, "feet")
  43921. },
  43922. {
  43923. name: "Titan",
  43924. height: math.unit(500, "feet")
  43925. },
  43926. {
  43927. name: "Macro",
  43928. height: math.unit(5000, "feet")
  43929. },
  43930. {
  43931. name: "Megamacro",
  43932. height: math.unit(50000, "feet")
  43933. },
  43934. {
  43935. name: "Gigamacro",
  43936. height: math.unit(500000, "feet")
  43937. },
  43938. {
  43939. name: "Teramacro",
  43940. height: math.unit(5e6, "feet")
  43941. },
  43942. ]
  43943. ))
  43944. characterMakers.push(() => makeCharacter(
  43945. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43946. {
  43947. front: {
  43948. height: math.unit(6 + 2/12, "feet"),
  43949. name: "Front",
  43950. image: {
  43951. source: "./media/characters/squeaks/front.svg",
  43952. extra: 1823/1768,
  43953. bottom: 138/1961
  43954. }
  43955. },
  43956. },
  43957. [
  43958. {
  43959. name: "Micro",
  43960. height: math.unit(0.5, "inches")
  43961. },
  43962. {
  43963. name: "Normal",
  43964. height: math.unit(6 + 2/12, "feet"),
  43965. default: true
  43966. },
  43967. {
  43968. name: "Macro",
  43969. height: math.unit(600, "feet")
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43975. {
  43976. front: {
  43977. height: math.unit(1.72, "meters"),
  43978. name: "Front",
  43979. image: {
  43980. source: "./media/characters/archinger/front.svg",
  43981. extra: 1861/1675,
  43982. bottom: 125/1986
  43983. }
  43984. },
  43985. back: {
  43986. height: math.unit(1.72, "meters"),
  43987. name: "Back",
  43988. image: {
  43989. source: "./media/characters/archinger/back.svg",
  43990. extra: 1844/1701,
  43991. bottom: 104/1948
  43992. }
  43993. },
  43994. cock: {
  43995. height: math.unit(0.59, "feet"),
  43996. name: "Cock",
  43997. image: {
  43998. source: "./media/characters/archinger/cock.svg"
  43999. }
  44000. },
  44001. },
  44002. [
  44003. {
  44004. name: "Normal",
  44005. height: math.unit(1.72, "meters"),
  44006. default: true
  44007. },
  44008. {
  44009. name: "Macro",
  44010. height: math.unit(84, "meters")
  44011. },
  44012. {
  44013. name: "Macro+",
  44014. height: math.unit(112, "meters")
  44015. },
  44016. {
  44017. name: "Macro++",
  44018. height: math.unit(960, "meters")
  44019. },
  44020. {
  44021. name: "Macro+++",
  44022. height: math.unit(4, "km")
  44023. },
  44024. {
  44025. name: "Macro++++",
  44026. height: math.unit(48, "km")
  44027. },
  44028. {
  44029. name: "Macro+++++",
  44030. height: math.unit(4500, "km")
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(5 + 5/12, "feet"),
  44039. name: "Front",
  44040. image: {
  44041. source: "./media/characters/alsnapz/front.svg",
  44042. extra: 1157/1065,
  44043. bottom: 42/1199
  44044. }
  44045. },
  44046. },
  44047. [
  44048. {
  44049. name: "Normal",
  44050. height: math.unit(5 + 5/12, "feet"),
  44051. default: true
  44052. },
  44053. ]
  44054. ))
  44055. characterMakers.push(() => makeCharacter(
  44056. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44057. {
  44058. side: {
  44059. height: math.unit(3.2, "earths"),
  44060. name: "Side",
  44061. image: {
  44062. source: "./media/characters/mag/side.svg",
  44063. extra: 1331/1008,
  44064. bottom: 52/1383
  44065. }
  44066. },
  44067. wing: {
  44068. height: math.unit(1.94, "earths"),
  44069. name: "Wing",
  44070. image: {
  44071. source: "./media/characters/mag/wing.svg"
  44072. }
  44073. },
  44074. dick: {
  44075. height: math.unit(1.8, "earths"),
  44076. name: "Dick",
  44077. image: {
  44078. source: "./media/characters/mag/dick.svg"
  44079. }
  44080. },
  44081. ass: {
  44082. height: math.unit(1.33, "earths"),
  44083. name: "Ass",
  44084. image: {
  44085. source: "./media/characters/mag/ass.svg"
  44086. }
  44087. },
  44088. head: {
  44089. height: math.unit(1.1, "earths"),
  44090. name: "Head",
  44091. image: {
  44092. source: "./media/characters/mag/head.svg"
  44093. }
  44094. },
  44095. maw: {
  44096. height: math.unit(1.62, "earths"),
  44097. name: "Maw",
  44098. image: {
  44099. source: "./media/characters/mag/maw.svg"
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Small",
  44106. height: math.unit(162, "feet")
  44107. },
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(3.2, "earths"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44117. {
  44118. front: {
  44119. height: math.unit(512, "feet"),
  44120. weight: math.unit(63509, "tonnes"),
  44121. name: "Front",
  44122. image: {
  44123. source: "./media/characters/vorrel-harroc/front.svg",
  44124. extra: 1075/1063,
  44125. bottom: 62/1137
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(10, "feet")
  44133. },
  44134. {
  44135. name: "Macro",
  44136. height: math.unit(512, "feet"),
  44137. default: true
  44138. },
  44139. {
  44140. name: "Megamacro",
  44141. height: math.unit(256, "miles")
  44142. },
  44143. {
  44144. name: "Gigamacro",
  44145. height: math.unit(4096, "miles")
  44146. },
  44147. ]
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44151. {
  44152. side: {
  44153. height: math.unit(50, "feet"),
  44154. name: "Side",
  44155. image: {
  44156. source: "./media/characters/froimar/side.svg",
  44157. extra: 855/638,
  44158. bottom: 99/954
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Macro",
  44165. height: math.unit(50, "feet"),
  44166. default: true
  44167. },
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44172. {
  44173. front: {
  44174. height: math.unit(210, "miles"),
  44175. name: "Front",
  44176. image: {
  44177. source: "./media/characters/timothy/front.svg",
  44178. extra: 1007/943,
  44179. bottom: 62/1069
  44180. }
  44181. },
  44182. frontSkirt: {
  44183. height: math.unit(210, "miles"),
  44184. name: "Front (Skirt)",
  44185. image: {
  44186. source: "./media/characters/timothy/front-skirt.svg",
  44187. extra: 1007/943,
  44188. bottom: 62/1069
  44189. }
  44190. },
  44191. frontCoat: {
  44192. height: math.unit(210, "miles"),
  44193. name: "Front (Coat)",
  44194. image: {
  44195. source: "./media/characters/timothy/front-coat.svg",
  44196. extra: 1007/943,
  44197. bottom: 62/1069
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Macro",
  44204. height: math.unit(210, "miles"),
  44205. default: true
  44206. },
  44207. {
  44208. name: "Megamacro",
  44209. height: math.unit(210000, "miles")
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44215. {
  44216. front: {
  44217. height: math.unit(188, "feet"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/pyotr/front.svg",
  44221. extra: 1912/1826,
  44222. bottom: 18/1930
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Macro",
  44229. height: math.unit(188, "feet"),
  44230. default: true
  44231. },
  44232. {
  44233. name: "Megamacro",
  44234. height: math.unit(8, "miles")
  44235. },
  44236. ]
  44237. ))
  44238. characterMakers.push(() => makeCharacter(
  44239. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44240. {
  44241. side: {
  44242. height: math.unit(10, "feet"),
  44243. weight: math.unit(4500, "lb"),
  44244. name: "Side",
  44245. image: {
  44246. source: "./media/characters/ackart/side.svg",
  44247. extra: 1776/1668,
  44248. bottom: 116/1892
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(10, "feet"),
  44256. default: true
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44262. {
  44263. side: {
  44264. height: math.unit(21, "feet"),
  44265. name: "Side",
  44266. image: {
  44267. source: "./media/characters/nolow/side.svg",
  44268. extra: 1484/1434,
  44269. bottom: 85/1569
  44270. }
  44271. },
  44272. sideErect: {
  44273. height: math.unit(21, "feet"),
  44274. name: "Side-erect",
  44275. image: {
  44276. source: "./media/characters/nolow/side-erect.svg",
  44277. extra: 1484/1434,
  44278. bottom: 85/1569
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Regular",
  44285. height: math.unit(12, "feet")
  44286. },
  44287. {
  44288. name: "Big Chee",
  44289. height: math.unit(21, "feet"),
  44290. default: true
  44291. },
  44292. ]
  44293. ))
  44294. characterMakers.push(() => makeCharacter(
  44295. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44296. {
  44297. front: {
  44298. height: math.unit(7, "feet"),
  44299. weight: math.unit(250, "lb"),
  44300. name: "Front",
  44301. image: {
  44302. source: "./media/characters/nines/front.svg",
  44303. extra: 1741/1607,
  44304. bottom: 41/1782
  44305. }
  44306. },
  44307. side: {
  44308. height: math.unit(7, "feet"),
  44309. weight: math.unit(250, "lb"),
  44310. name: "Side",
  44311. image: {
  44312. source: "./media/characters/nines/side.svg",
  44313. extra: 1854/1735,
  44314. bottom: 93/1947
  44315. }
  44316. },
  44317. back: {
  44318. height: math.unit(7, "feet"),
  44319. weight: math.unit(250, "lb"),
  44320. name: "Back",
  44321. image: {
  44322. source: "./media/characters/nines/back.svg",
  44323. extra: 1748/1615,
  44324. bottom: 20/1768
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Megamacro",
  44331. height: math.unit(99, "km"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(5 + 10/12, "feet"),
  44341. weight: math.unit(210, "lb"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/zenith/front.svg",
  44345. extra: 1531/1452,
  44346. bottom: 198/1729
  44347. }
  44348. },
  44349. back: {
  44350. height: math.unit(5 + 10/12, "feet"),
  44351. weight: math.unit(210, "lb"),
  44352. name: "Back",
  44353. image: {
  44354. source: "./media/characters/zenith/back.svg",
  44355. extra: 1571/1487,
  44356. bottom: 75/1646
  44357. }
  44358. },
  44359. },
  44360. [
  44361. {
  44362. name: "Normal",
  44363. height: math.unit(5 + 10/12, "feet"),
  44364. default: true
  44365. }
  44366. ]
  44367. ))
  44368. characterMakers.push(() => makeCharacter(
  44369. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44370. {
  44371. front: {
  44372. height: math.unit(4, "feet"),
  44373. weight: math.unit(60, "lb"),
  44374. name: "Front",
  44375. image: {
  44376. source: "./media/characters/jasper/front.svg",
  44377. extra: 1450/1379,
  44378. bottom: 19/1469
  44379. }
  44380. },
  44381. },
  44382. [
  44383. {
  44384. name: "Normal",
  44385. height: math.unit(4, "feet"),
  44386. default: true
  44387. },
  44388. ]
  44389. ))
  44390. characterMakers.push(() => makeCharacter(
  44391. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44392. {
  44393. front: {
  44394. height: math.unit(6 + 5/12, "feet"),
  44395. weight: math.unit(290, "lb"),
  44396. name: "Front",
  44397. image: {
  44398. source: "./media/characters/tiberius-thyben/front.svg",
  44399. extra: 757/739,
  44400. bottom: 39/796
  44401. }
  44402. },
  44403. },
  44404. [
  44405. {
  44406. name: "Micro",
  44407. height: math.unit(1.5, "inches")
  44408. },
  44409. {
  44410. name: "Normal",
  44411. height: math.unit(6 + 5/12, "feet"),
  44412. default: true
  44413. },
  44414. {
  44415. name: "Macro",
  44416. height: math.unit(300, "feet")
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(5 + 6/12, "feet"),
  44425. weight: math.unit(60, "kg"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/sabre/front.svg",
  44429. extra: 738/671,
  44430. bottom: 27/765
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Teeny",
  44437. height: math.unit(2, "inches")
  44438. },
  44439. {
  44440. name: "Smol",
  44441. height: math.unit(8, "inches")
  44442. },
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(5 + 6/12, "feet"),
  44446. default: true
  44447. },
  44448. {
  44449. name: "Mini-Macro",
  44450. height: math.unit(15, "feet")
  44451. },
  44452. {
  44453. name: "Macro",
  44454. height: math.unit(50, "feet")
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(6 + 4/12, "feet"),
  44463. weight: math.unit(170, "lb"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/charlie/front.svg",
  44467. extra: 1348/1228,
  44468. bottom: 15/1363
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Macro",
  44475. height: math.unit(1700, "meters"),
  44476. default: true
  44477. },
  44478. {
  44479. name: "MegaMacro",
  44480. height: math.unit(20400, "meters")
  44481. },
  44482. ]
  44483. ))
  44484. characterMakers.push(() => makeCharacter(
  44485. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44486. {
  44487. front: {
  44488. height: math.unit(1.96, "meters"),
  44489. weight: math.unit(220, "lb"),
  44490. name: "Front",
  44491. image: {
  44492. source: "./media/characters/susan-grant/front.svg",
  44493. extra: 482/478,
  44494. bottom: 7/489
  44495. }
  44496. },
  44497. },
  44498. [
  44499. {
  44500. name: "Normal",
  44501. height: math.unit(1.96, "meters"),
  44502. default: true
  44503. },
  44504. {
  44505. name: "Macro",
  44506. height: math.unit(76.2, "meters")
  44507. },
  44508. {
  44509. name: "MegaMacro",
  44510. height: math.unit(305, "meters")
  44511. },
  44512. {
  44513. name: "GigaMacro",
  44514. height: math.unit(1220, "meters")
  44515. },
  44516. {
  44517. name: "SuperMacro",
  44518. height: math.unit(4878, "meters")
  44519. },
  44520. ]
  44521. ))
  44522. characterMakers.push(() => makeCharacter(
  44523. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44524. {
  44525. front: {
  44526. height: math.unit(5 + 4/12, "feet"),
  44527. weight: math.unit(110, "lb"),
  44528. name: "Front",
  44529. image: {
  44530. source: "./media/characters/axel-isanov/front.svg",
  44531. extra: 1096/1065,
  44532. bottom: 13/1109
  44533. }
  44534. },
  44535. },
  44536. [
  44537. {
  44538. name: "Normal",
  44539. height: math.unit(5 + 4/12, "feet"),
  44540. default: true
  44541. },
  44542. ]
  44543. ))
  44544. characterMakers.push(() => makeCharacter(
  44545. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44546. {
  44547. front: {
  44548. height: math.unit(9, "feet"),
  44549. weight: math.unit(467, "lb"),
  44550. name: "Front",
  44551. image: {
  44552. source: "./media/characters/necahual/front.svg",
  44553. extra: 920/873,
  44554. bottom: 26/946
  44555. }
  44556. },
  44557. back: {
  44558. height: math.unit(9, "feet"),
  44559. weight: math.unit(467, "lb"),
  44560. name: "Back",
  44561. image: {
  44562. source: "./media/characters/necahual/back.svg",
  44563. extra: 930/884,
  44564. bottom: 16/946
  44565. }
  44566. },
  44567. frontUnderwear: {
  44568. height: math.unit(9, "feet"),
  44569. weight: math.unit(467, "lb"),
  44570. name: "Front (Underwear)",
  44571. image: {
  44572. source: "./media/characters/necahual/front-underwear.svg",
  44573. extra: 920/873,
  44574. bottom: 26/946
  44575. }
  44576. },
  44577. frontDressed: {
  44578. height: math.unit(9, "feet"),
  44579. weight: math.unit(467, "lb"),
  44580. name: "Front (Dressed)",
  44581. image: {
  44582. source: "./media/characters/necahual/front-dressed.svg",
  44583. extra: 920/873,
  44584. bottom: 26/946
  44585. }
  44586. },
  44587. },
  44588. [
  44589. {
  44590. name: "Comprsesed",
  44591. height: math.unit(9, "feet")
  44592. },
  44593. {
  44594. name: "Natural",
  44595. height: math.unit(15, "feet"),
  44596. default: true
  44597. },
  44598. {
  44599. name: "Boosted",
  44600. height: math.unit(50, "feet")
  44601. },
  44602. {
  44603. name: "Boosted+",
  44604. height: math.unit(150, "feet")
  44605. },
  44606. {
  44607. name: "Max",
  44608. height: math.unit(500, "feet")
  44609. },
  44610. ]
  44611. ))
  44612. characterMakers.push(() => makeCharacter(
  44613. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44614. {
  44615. front: {
  44616. height: math.unit(22 + 1/12, "feet"),
  44617. weight: math.unit(3200, "lb"),
  44618. name: "Front",
  44619. image: {
  44620. source: "./media/characters/theo-acacia/front.svg",
  44621. extra: 1796/1741,
  44622. bottom: 83/1879
  44623. }
  44624. },
  44625. frontUnderwear: {
  44626. height: math.unit(22 + 1/12, "feet"),
  44627. weight: math.unit(3200, "lb"),
  44628. name: "Front (Underwear)",
  44629. image: {
  44630. source: "./media/characters/theo-acacia/front-underwear.svg",
  44631. extra: 1796/1741,
  44632. bottom: 83/1879
  44633. }
  44634. },
  44635. frontNude: {
  44636. height: math.unit(22 + 1/12, "feet"),
  44637. weight: math.unit(3200, "lb"),
  44638. name: "Front (Nude)",
  44639. image: {
  44640. source: "./media/characters/theo-acacia/front-nude.svg",
  44641. extra: 1796/1741,
  44642. bottom: 83/1879
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Normal",
  44649. height: math.unit(22 + 1/12, "feet"),
  44650. default: true
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44656. {
  44657. front: {
  44658. height: math.unit(20, "feet"),
  44659. name: "Front",
  44660. image: {
  44661. source: "./media/characters/astra/front.svg",
  44662. extra: 1850/1714,
  44663. bottom: 106/1956
  44664. }
  44665. },
  44666. frontUndressed: {
  44667. height: math.unit(20, "feet"),
  44668. name: "Front (Undressed)",
  44669. image: {
  44670. source: "./media/characters/astra/front-undressed.svg",
  44671. extra: 1926/1749,
  44672. bottom: 0/1926
  44673. }
  44674. },
  44675. hand: {
  44676. height: math.unit(1.53, "feet"),
  44677. name: "Hand",
  44678. image: {
  44679. source: "./media/characters/astra/hand.svg"
  44680. }
  44681. },
  44682. paw: {
  44683. height: math.unit(1.53, "feet"),
  44684. name: "Paw",
  44685. image: {
  44686. source: "./media/characters/astra/paw.svg"
  44687. }
  44688. },
  44689. },
  44690. [
  44691. {
  44692. name: "Smallest",
  44693. height: math.unit(20, "feet")
  44694. },
  44695. {
  44696. name: "Normal",
  44697. height: math.unit(1e9, "miles"),
  44698. default: true
  44699. },
  44700. {
  44701. name: "Larger",
  44702. height: math.unit(5, "multiverses")
  44703. },
  44704. {
  44705. name: "Largest",
  44706. height: math.unit(1e9, "multiverses")
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44712. {
  44713. front: {
  44714. height: math.unit(8, "feet"),
  44715. name: "Front",
  44716. image: {
  44717. source: "./media/characters/breanna/front.svg",
  44718. extra: 1912/1632,
  44719. bottom: 33/1945
  44720. }
  44721. },
  44722. },
  44723. [
  44724. {
  44725. name: "Smallest",
  44726. height: math.unit(8, "feet")
  44727. },
  44728. {
  44729. name: "Normal",
  44730. height: math.unit(1, "mile"),
  44731. default: true
  44732. },
  44733. {
  44734. name: "Maximum",
  44735. height: math.unit(1500000000000, "lightyears")
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44741. {
  44742. front: {
  44743. height: math.unit(5 + 11/12, "feet"),
  44744. weight: math.unit(155, "lb"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/cai/front.svg",
  44748. extra: 1823/1702,
  44749. bottom: 32/1855
  44750. }
  44751. },
  44752. back: {
  44753. height: math.unit(5 + 11/12, "feet"),
  44754. weight: math.unit(155, "lb"),
  44755. name: "Back",
  44756. image: {
  44757. source: "./media/characters/cai/back.svg",
  44758. extra: 1809/1708,
  44759. bottom: 31/1840
  44760. }
  44761. },
  44762. },
  44763. [
  44764. {
  44765. name: "Normal",
  44766. height: math.unit(5 + 11/12, "feet"),
  44767. default: true
  44768. },
  44769. {
  44770. name: "Big",
  44771. height: math.unit(15, "feet")
  44772. },
  44773. {
  44774. name: "Macro",
  44775. height: math.unit(200, "feet")
  44776. },
  44777. ]
  44778. ))
  44779. characterMakers.push(() => makeCharacter(
  44780. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44781. {
  44782. front: {
  44783. height: math.unit(5 + 6/12, "feet"),
  44784. weight: math.unit(160, "lb"),
  44785. name: "Front",
  44786. image: {
  44787. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44788. extra: 1227/1174,
  44789. bottom: 37/1264
  44790. }
  44791. },
  44792. },
  44793. [
  44794. {
  44795. name: "Macro",
  44796. height: math.unit(444, "meters"),
  44797. default: true
  44798. },
  44799. ]
  44800. ))
  44801. characterMakers.push(() => makeCharacter(
  44802. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44803. {
  44804. front: {
  44805. height: math.unit(18 + 7/12, "feet"),
  44806. name: "Front",
  44807. image: {
  44808. source: "./media/characters/rex/front.svg",
  44809. extra: 1941/1807,
  44810. bottom: 66/2007
  44811. }
  44812. },
  44813. back: {
  44814. height: math.unit(18 + 7/12, "feet"),
  44815. name: "Back",
  44816. image: {
  44817. source: "./media/characters/rex/back.svg",
  44818. extra: 1937/1822,
  44819. bottom: 42/1979
  44820. }
  44821. },
  44822. boot: {
  44823. height: math.unit(3.45, "feet"),
  44824. name: "Boot",
  44825. image: {
  44826. source: "./media/characters/rex/boot.svg"
  44827. }
  44828. },
  44829. paw: {
  44830. height: math.unit(4.17, "feet"),
  44831. name: "Paw",
  44832. image: {
  44833. source: "./media/characters/rex/paw.svg"
  44834. }
  44835. },
  44836. head: {
  44837. height: math.unit(6.728, "feet"),
  44838. name: "Head",
  44839. image: {
  44840. source: "./media/characters/rex/head.svg"
  44841. }
  44842. },
  44843. },
  44844. [
  44845. {
  44846. name: "Nano",
  44847. height: math.unit(18 + 7/12, "feet")
  44848. },
  44849. {
  44850. name: "Micro",
  44851. height: math.unit(1.5, "megameters")
  44852. },
  44853. {
  44854. name: "Normal",
  44855. height: math.unit(440, "megameters"),
  44856. default: true
  44857. },
  44858. {
  44859. name: "Macro",
  44860. height: math.unit(2.5, "gigameters")
  44861. },
  44862. {
  44863. name: "Gigamacro",
  44864. height: math.unit(2, "galaxies")
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44870. {
  44871. side: {
  44872. height: math.unit(32, "feet"),
  44873. weight: math.unit(250000, "lb"),
  44874. name: "Side",
  44875. image: {
  44876. source: "./media/characters/silverwing/side.svg",
  44877. extra: 1100/1019,
  44878. bottom: 204/1304
  44879. }
  44880. },
  44881. },
  44882. [
  44883. {
  44884. name: "Normal",
  44885. height: math.unit(32, "feet"),
  44886. default: true
  44887. },
  44888. ]
  44889. ))
  44890. characterMakers.push(() => makeCharacter(
  44891. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44892. {
  44893. front: {
  44894. height: math.unit(6 + 6/12, "feet"),
  44895. weight: math.unit(350, "lb"),
  44896. name: "Front",
  44897. image: {
  44898. source: "./media/characters/tristan-hawthorne/front.svg",
  44899. extra: 1159/1124,
  44900. bottom: 37/1196
  44901. },
  44902. form: "labrador",
  44903. default: true
  44904. },
  44905. skunkFront: {
  44906. height: math.unit(4 + 6/12, "feet"),
  44907. weight: math.unit(120, "lb"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44911. extra: 1609/1551,
  44912. bottom: 169/1778
  44913. },
  44914. form: "skunk",
  44915. default: true
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "Normal",
  44921. height: math.unit(6 + 6/12, "feet"),
  44922. form: "labrador",
  44923. default: true
  44924. },
  44925. {
  44926. name: "Normal",
  44927. height: math.unit(4 + 6/12, "feet"),
  44928. form: "skunk",
  44929. default: true
  44930. },
  44931. ],
  44932. {
  44933. "labrador": {
  44934. name: "Labrador",
  44935. default: true
  44936. },
  44937. "skunk": {
  44938. name: "Skunk"
  44939. }
  44940. }
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44944. {
  44945. front: {
  44946. height: math.unit(5 + 11/12, "feet"),
  44947. weight: math.unit(190, "lb"),
  44948. name: "Front",
  44949. image: {
  44950. source: "./media/characters/mizu/front.svg",
  44951. extra: 1988/1788,
  44952. bottom: 14/2002
  44953. }
  44954. },
  44955. },
  44956. [
  44957. {
  44958. name: "Normal",
  44959. height: math.unit(5 + 11/12, "feet"),
  44960. default: true
  44961. },
  44962. ]
  44963. ))
  44964. characterMakers.push(() => makeCharacter(
  44965. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44966. {
  44967. front: {
  44968. height: math.unit(1.7, "feet"),
  44969. weight: math.unit(50, "lb"),
  44970. name: "Front",
  44971. image: {
  44972. source: "./media/characters/dechroma/front.svg",
  44973. extra: 1095/859,
  44974. bottom: 64/1159
  44975. }
  44976. },
  44977. },
  44978. [
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(1.7, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44988. {
  44989. side: {
  44990. height: math.unit(30, "feet"),
  44991. name: "Side",
  44992. image: {
  44993. source: "./media/characters/veluren-thanazel/side.svg",
  44994. extra: 1611/633,
  44995. bottom: 118/1729
  44996. }
  44997. },
  44998. front: {
  44999. height: math.unit(30, "feet"),
  45000. name: "Front",
  45001. image: {
  45002. source: "./media/characters/veluren-thanazel/front.svg",
  45003. extra: 1486/636,
  45004. bottom: 238/1724
  45005. }
  45006. },
  45007. head: {
  45008. height: math.unit(21.4, "feet"),
  45009. name: "Head",
  45010. image: {
  45011. source: "./media/characters/veluren-thanazel/head.svg"
  45012. }
  45013. },
  45014. genitals: {
  45015. height: math.unit(19.4, "feet"),
  45016. name: "Genitals",
  45017. image: {
  45018. source: "./media/characters/veluren-thanazel/genitals.svg"
  45019. }
  45020. },
  45021. },
  45022. [
  45023. {
  45024. name: "Social",
  45025. height: math.unit(6, "feet")
  45026. },
  45027. {
  45028. name: "Play",
  45029. height: math.unit(12, "feet")
  45030. },
  45031. {
  45032. name: "True",
  45033. height: math.unit(30, "feet"),
  45034. default: true
  45035. },
  45036. ]
  45037. ))
  45038. characterMakers.push(() => makeCharacter(
  45039. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45040. {
  45041. front: {
  45042. height: math.unit(7 + 6/12, "feet"),
  45043. weight: math.unit(500, "kg"),
  45044. name: "Front",
  45045. image: {
  45046. source: "./media/characters/arcturas/front.svg",
  45047. extra: 1700/1500,
  45048. bottom: 145/1845
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Normal",
  45055. height: math.unit(7 + 6/12, "feet"),
  45056. default: true
  45057. },
  45058. ]
  45059. ))
  45060. characterMakers.push(() => makeCharacter(
  45061. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45062. {
  45063. side: {
  45064. height: math.unit(6, "feet"),
  45065. weight: math.unit(2, "tons"),
  45066. name: "Side",
  45067. image: {
  45068. source: "./media/characters/vitaen/side.svg",
  45069. extra: 1157/617,
  45070. bottom: 122/1279
  45071. }
  45072. },
  45073. },
  45074. [
  45075. {
  45076. name: "Normal",
  45077. height: math.unit(6, "feet"),
  45078. default: true
  45079. },
  45080. ]
  45081. ))
  45082. characterMakers.push(() => makeCharacter(
  45083. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45084. {
  45085. front: {
  45086. height: math.unit(19, "feet"),
  45087. name: "Front",
  45088. image: {
  45089. source: "./media/characters/fia-dreamweaver/front.svg",
  45090. extra: 1630/1504,
  45091. bottom: 25/1655
  45092. }
  45093. },
  45094. },
  45095. [
  45096. {
  45097. name: "Normal",
  45098. height: math.unit(19, "feet"),
  45099. default: true
  45100. },
  45101. ]
  45102. ))
  45103. characterMakers.push(() => makeCharacter(
  45104. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45105. {
  45106. front: {
  45107. height: math.unit(5 + 4/12, "feet"),
  45108. name: "Front",
  45109. image: {
  45110. source: "./media/characters/artan/front.svg",
  45111. extra: 1618/1535,
  45112. bottom: 46/1664
  45113. }
  45114. },
  45115. back: {
  45116. height: math.unit(5 + 4/12, "feet"),
  45117. name: "Back",
  45118. image: {
  45119. source: "./media/characters/artan/back.svg",
  45120. extra: 1618/1543,
  45121. bottom: 31/1649
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(5 + 4/12, "feet"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45135. {
  45136. side: {
  45137. height: math.unit(182, "cm"),
  45138. weight: math.unit(1000, "lb"),
  45139. name: "Side",
  45140. image: {
  45141. source: "./media/characters/silver-dragon/side.svg",
  45142. extra: 710/287,
  45143. bottom: 88/798
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Normal",
  45150. height: math.unit(182, "cm"),
  45151. default: true
  45152. },
  45153. ]
  45154. ))
  45155. characterMakers.push(() => makeCharacter(
  45156. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45157. {
  45158. side: {
  45159. height: math.unit(6 + 6/12, "feet"),
  45160. weight: math.unit(1.5, "tons"),
  45161. name: "Side",
  45162. image: {
  45163. source: "./media/characters/zephyr/side.svg",
  45164. extra: 1433/586,
  45165. bottom: 109/1542
  45166. }
  45167. },
  45168. },
  45169. [
  45170. {
  45171. name: "Normal",
  45172. height: math.unit(6 + 6/12, "feet"),
  45173. default: true
  45174. },
  45175. ]
  45176. ))
  45177. characterMakers.push(() => makeCharacter(
  45178. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45179. {
  45180. side: {
  45181. height: math.unit(1, "feet"),
  45182. name: "Side",
  45183. image: {
  45184. source: "./media/characters/vixye/side.svg",
  45185. extra: 632/541,
  45186. bottom: 0/632
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Normal",
  45193. height: math.unit(1, "feet"),
  45194. default: true
  45195. },
  45196. {
  45197. name: "True",
  45198. height: math.unit(1e15, "multiverses")
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45204. {
  45205. front: {
  45206. height: math.unit(8 + 2/12, "feet"),
  45207. weight: math.unit(650, "lb"),
  45208. name: "Front",
  45209. image: {
  45210. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45211. extra: 1174/1137,
  45212. bottom: 82/1256
  45213. }
  45214. },
  45215. back: {
  45216. height: math.unit(8 + 2/12, "feet"),
  45217. weight: math.unit(650, "lb"),
  45218. name: "Back",
  45219. image: {
  45220. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45221. extra: 1204/1157,
  45222. bottom: 46/1250
  45223. }
  45224. },
  45225. },
  45226. [
  45227. {
  45228. name: "Wildform",
  45229. height: math.unit(8 + 2/12, "feet"),
  45230. default: true
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(18, "feet"),
  45239. name: "Front",
  45240. image: {
  45241. source: "./media/characters/cyphin/front.svg",
  45242. extra: 970/886,
  45243. bottom: 42/1012
  45244. }
  45245. },
  45246. back: {
  45247. height: math.unit(18, "feet"),
  45248. name: "Back",
  45249. image: {
  45250. source: "./media/characters/cyphin/back.svg",
  45251. extra: 1009/894,
  45252. bottom: 24/1033
  45253. }
  45254. },
  45255. head: {
  45256. height: math.unit(5.05, "feet"),
  45257. name: "Head",
  45258. image: {
  45259. source: "./media/characters/cyphin/head.svg"
  45260. }
  45261. },
  45262. tailbud: {
  45263. height: math.unit(5, "feet"),
  45264. name: "Tailbud",
  45265. image: {
  45266. source: "./media/characters/cyphin/tailbud.svg"
  45267. }
  45268. },
  45269. },
  45270. [
  45271. ]
  45272. ))
  45273. characterMakers.push(() => makeCharacter(
  45274. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45275. {
  45276. side: {
  45277. height: math.unit(10, "feet"),
  45278. weight: math.unit(6, "tons"),
  45279. name: "Side",
  45280. image: {
  45281. source: "./media/characters/raijin/side.svg",
  45282. extra: 1529/613,
  45283. bottom: 337/1866
  45284. }
  45285. },
  45286. },
  45287. [
  45288. {
  45289. name: "Normal",
  45290. height: math.unit(10, "feet"),
  45291. default: true
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45297. {
  45298. side: {
  45299. height: math.unit(9, "feet"),
  45300. name: "Side",
  45301. image: {
  45302. source: "./media/characters/nilghais/side.svg",
  45303. extra: 1047/744,
  45304. bottom: 91/1138
  45305. }
  45306. },
  45307. head: {
  45308. height: math.unit(3.14, "feet"),
  45309. name: "Head",
  45310. image: {
  45311. source: "./media/characters/nilghais/head.svg"
  45312. }
  45313. },
  45314. mouth: {
  45315. height: math.unit(4.6, "feet"),
  45316. name: "Mouth",
  45317. image: {
  45318. source: "./media/characters/nilghais/mouth.svg"
  45319. }
  45320. },
  45321. wings: {
  45322. height: math.unit(24, "feet"),
  45323. name: "Wings",
  45324. image: {
  45325. source: "./media/characters/nilghais/wings.svg"
  45326. }
  45327. },
  45328. ass: {
  45329. height: math.unit(6.12, "feet"),
  45330. name: "Ass",
  45331. image: {
  45332. source: "./media/characters/nilghais/ass.svg"
  45333. }
  45334. },
  45335. },
  45336. [
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(9, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45346. {
  45347. regular: {
  45348. height: math.unit(16 + 2/12, "feet"),
  45349. weight: math.unit(2300, "lb"),
  45350. name: "Regular",
  45351. image: {
  45352. source: "./media/characters/zolgar/regular.svg",
  45353. extra: 1246/1004,
  45354. bottom: 124/1370
  45355. }
  45356. },
  45357. boxers: {
  45358. height: math.unit(16 + 2/12, "feet"),
  45359. weight: math.unit(2300, "lb"),
  45360. name: "Boxers",
  45361. image: {
  45362. source: "./media/characters/zolgar/boxers.svg",
  45363. extra: 1246/1004,
  45364. bottom: 124/1370
  45365. }
  45366. },
  45367. armored: {
  45368. height: math.unit(16 + 2/12, "feet"),
  45369. weight: math.unit(2300, "lb"),
  45370. name: "Armored",
  45371. image: {
  45372. source: "./media/characters/zolgar/armored.svg",
  45373. extra: 1246/1004,
  45374. bottom: 124/1370
  45375. }
  45376. },
  45377. goth: {
  45378. height: math.unit(16 + 2/12, "feet"),
  45379. weight: math.unit(2300, "lb"),
  45380. name: "Goth",
  45381. image: {
  45382. source: "./media/characters/zolgar/goth.svg",
  45383. extra: 1246/1004,
  45384. bottom: 124/1370
  45385. }
  45386. },
  45387. },
  45388. [
  45389. {
  45390. name: "Shrunken Down",
  45391. height: math.unit(9 + 2/12, "feet")
  45392. },
  45393. {
  45394. name: "Normal",
  45395. height: math.unit(16 + 2/12, "feet"),
  45396. default: true
  45397. },
  45398. ]
  45399. ))
  45400. characterMakers.push(() => makeCharacter(
  45401. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45402. {
  45403. front: {
  45404. height: math.unit(6, "feet"),
  45405. weight: math.unit(168, "lb"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/luca/front.svg",
  45409. extra: 841/667,
  45410. bottom: 102/943
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(6, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45424. {
  45425. side: {
  45426. height: math.unit(7 + 3/12, "feet"),
  45427. weight: math.unit(312, "lb"),
  45428. name: "Side",
  45429. image: {
  45430. source: "./media/characters/zezo/side.svg",
  45431. extra: 1192/1067,
  45432. bottom: 63/1255
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Normal",
  45439. height: math.unit(7 + 3/12, "feet"),
  45440. default: true
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(5 + 5/12, "feet"),
  45449. weight: math.unit(170, "lb"),
  45450. name: "Front",
  45451. image: {
  45452. source: "./media/characters/mayso/front.svg",
  45453. extra: 1215/1108,
  45454. bottom: 16/1231
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(5 + 5/12, "feet"),
  45462. default: true
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45468. {
  45469. front: {
  45470. height: math.unit(4 + 3/12, "feet"),
  45471. weight: math.unit(80, "lb"),
  45472. name: "Front",
  45473. image: {
  45474. source: "./media/characters/hess/front.svg",
  45475. extra: 1200/1123,
  45476. bottom: 16/1216
  45477. }
  45478. },
  45479. },
  45480. [
  45481. {
  45482. name: "Normal",
  45483. height: math.unit(4 + 3/12, "feet"),
  45484. default: true
  45485. },
  45486. ]
  45487. ))
  45488. characterMakers.push(() => makeCharacter(
  45489. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45490. {
  45491. front: {
  45492. height: math.unit(1.9, "meters"),
  45493. name: "Front",
  45494. image: {
  45495. source: "./media/characters/ashgar/front.svg",
  45496. extra: 1177/1146,
  45497. bottom: 99/1276
  45498. }
  45499. },
  45500. back: {
  45501. height: math.unit(1.9, "meters"),
  45502. name: "Back",
  45503. image: {
  45504. source: "./media/characters/ashgar/back.svg",
  45505. extra: 1201/1183,
  45506. bottom: 53/1254
  45507. }
  45508. },
  45509. feral: {
  45510. height: math.unit(1.4, "meters"),
  45511. name: "Feral",
  45512. image: {
  45513. source: "./media/characters/ashgar/feral.svg",
  45514. extra: 370/345,
  45515. bottom: 45/415
  45516. }
  45517. },
  45518. },
  45519. [
  45520. {
  45521. name: "Normal",
  45522. height: math.unit(1.9, "meters"),
  45523. default: true
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45529. {
  45530. regular: {
  45531. height: math.unit(6, "feet"),
  45532. weight: math.unit(220, "lb"),
  45533. name: "Regular",
  45534. image: {
  45535. source: "./media/characters/phillip/regular.svg",
  45536. extra: 1373/1277,
  45537. bottom: 75/1448
  45538. }
  45539. },
  45540. dressed: {
  45541. height: math.unit(6, "feet"),
  45542. weight: math.unit(220, "lb"),
  45543. name: "Dressed",
  45544. image: {
  45545. source: "./media/characters/phillip/dressed.svg",
  45546. extra: 1373/1277,
  45547. bottom: 75/1448
  45548. }
  45549. },
  45550. paw: {
  45551. height: math.unit(1.44, "feet"),
  45552. name: "Paw",
  45553. image: {
  45554. source: "./media/characters/phillip/paw.svg"
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(6, "feet"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45568. {
  45569. side: {
  45570. height: math.unit(42, "feet"),
  45571. name: "Side",
  45572. image: {
  45573. source: "./media/characters/uvula/side.svg",
  45574. extra: 683/586,
  45575. bottom: 60/743
  45576. }
  45577. },
  45578. front: {
  45579. height: math.unit(42, "feet"),
  45580. name: "Front",
  45581. image: {
  45582. source: "./media/characters/uvula/front.svg",
  45583. extra: 705/613,
  45584. bottom: 54/759
  45585. }
  45586. },
  45587. maw: {
  45588. height: math.unit(23.5, "feet"),
  45589. name: "Maw",
  45590. image: {
  45591. source: "./media/characters/uvula/maw.svg"
  45592. }
  45593. },
  45594. },
  45595. [
  45596. {
  45597. name: "Original Size",
  45598. height: math.unit(14, "inches")
  45599. },
  45600. {
  45601. name: "Human Size",
  45602. height: math.unit(6, "feet")
  45603. },
  45604. {
  45605. name: "Big",
  45606. height: math.unit(42, "feet"),
  45607. default: true
  45608. },
  45609. {
  45610. name: "Bigger",
  45611. height: math.unit(100, "feet")
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45617. {
  45618. front: {
  45619. height: math.unit(5 + 11/12, "feet"),
  45620. name: "Front",
  45621. image: {
  45622. source: "./media/characters/lannah/front.svg",
  45623. extra: 1208/1113,
  45624. bottom: 97/1305
  45625. }
  45626. },
  45627. },
  45628. [
  45629. {
  45630. name: "Normal",
  45631. height: math.unit(5 + 11/12, "feet"),
  45632. default: true
  45633. },
  45634. ]
  45635. ))
  45636. characterMakers.push(() => makeCharacter(
  45637. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45638. {
  45639. front: {
  45640. height: math.unit(6 + 3/12, "feet"),
  45641. weight: math.unit(3.5, "tons"),
  45642. name: "Front",
  45643. image: {
  45644. source: "./media/characters/emberflame/front.svg",
  45645. extra: 1198/672,
  45646. bottom: 82/1280
  45647. }
  45648. },
  45649. side: {
  45650. height: math.unit(6 + 3/12, "feet"),
  45651. weight: math.unit(3.5, "tons"),
  45652. name: "Side",
  45653. image: {
  45654. source: "./media/characters/emberflame/side.svg",
  45655. extra: 938/527,
  45656. bottom: 56/994
  45657. }
  45658. },
  45659. },
  45660. [
  45661. {
  45662. name: "Normal",
  45663. height: math.unit(6 + 3/12, "feet"),
  45664. default: true
  45665. },
  45666. ]
  45667. ))
  45668. characterMakers.push(() => makeCharacter(
  45669. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45670. {
  45671. side: {
  45672. height: math.unit(17.5, "feet"),
  45673. weight: math.unit(35, "tons"),
  45674. name: "Side",
  45675. image: {
  45676. source: "./media/characters/sophie-ambrose/side.svg",
  45677. extra: 1573/1242,
  45678. bottom: 71/1644
  45679. }
  45680. },
  45681. maw: {
  45682. height: math.unit(7.4, "feet"),
  45683. name: "Maw",
  45684. image: {
  45685. source: "./media/characters/sophie-ambrose/maw.svg"
  45686. }
  45687. },
  45688. },
  45689. [
  45690. {
  45691. name: "Normal",
  45692. height: math.unit(17.5, "feet"),
  45693. default: true
  45694. },
  45695. ]
  45696. ))
  45697. characterMakers.push(() => makeCharacter(
  45698. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45699. {
  45700. front: {
  45701. height: math.unit(280, "feet"),
  45702. weight: math.unit(550, "tons"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/king-mugi/front.svg",
  45706. extra: 1102/947,
  45707. bottom: 104/1206
  45708. }
  45709. },
  45710. },
  45711. [
  45712. {
  45713. name: "King Mugi",
  45714. height: math.unit(280, "feet"),
  45715. default: true
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45721. {
  45722. female: {
  45723. height: math.unit(300, "meters"),
  45724. name: "Front",
  45725. image: {
  45726. source: "./media/characters/nova-fox/female.svg",
  45727. extra: 664/632,
  45728. bottom: 51/715
  45729. },
  45730. form: "female",
  45731. default: true
  45732. },
  45733. male: {
  45734. height: math.unit(300, "meters"),
  45735. name: "Front",
  45736. image: {
  45737. source: "./media/characters/nova-fox/male.svg",
  45738. extra: 663/631,
  45739. bottom: 30/693
  45740. },
  45741. form: "male",
  45742. default: true
  45743. },
  45744. },
  45745. [
  45746. {
  45747. name: "Macro",
  45748. height: math.unit(300, "meters"),
  45749. default: true,
  45750. allForms: true
  45751. },
  45752. ],
  45753. {
  45754. "female": {
  45755. name: "Female",
  45756. default: true
  45757. },
  45758. "male": {
  45759. name: "Male",
  45760. },
  45761. }
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45765. {
  45766. front: {
  45767. height: math.unit(6 + 3/12, "feet"),
  45768. weight: math.unit(170, "lb"),
  45769. name: "Front",
  45770. image: {
  45771. source: "./media/characters/sam-bat/front.svg",
  45772. extra: 1601/1411,
  45773. bottom: 125/1726
  45774. }
  45775. },
  45776. back: {
  45777. height: math.unit(6 + 3/12, "feet"),
  45778. weight: math.unit(170, "lb"),
  45779. name: "Back",
  45780. image: {
  45781. source: "./media/characters/sam-bat/back.svg",
  45782. extra: 1577/1405,
  45783. bottom: 58/1635
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Normal",
  45790. height: math.unit(6 + 3/12, "feet"),
  45791. default: true
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45797. {
  45798. front: {
  45799. height: math.unit(59, "feet"),
  45800. weight: math.unit(40000, "lb"),
  45801. name: "Front",
  45802. image: {
  45803. source: "./media/characters/inari/front.svg",
  45804. extra: 1884/1350,
  45805. bottom: 95/1979
  45806. }
  45807. },
  45808. },
  45809. [
  45810. {
  45811. name: "Gigantamax",
  45812. height: math.unit(59, "feet"),
  45813. default: true
  45814. },
  45815. ]
  45816. ))
  45817. characterMakers.push(() => makeCharacter(
  45818. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45819. {
  45820. front: {
  45821. height: math.unit(5 + 8/12, "feet"),
  45822. name: "Front",
  45823. image: {
  45824. source: "./media/characters/elizabeth/front.svg",
  45825. extra: 1395/1298,
  45826. bottom: 54/1449
  45827. }
  45828. },
  45829. mouth: {
  45830. height: math.unit(1.97, "feet"),
  45831. name: "Mouth",
  45832. image: {
  45833. source: "./media/characters/elizabeth/mouth.svg"
  45834. }
  45835. },
  45836. foot: {
  45837. height: math.unit(1.17, "feet"),
  45838. name: "Foot",
  45839. image: {
  45840. source: "./media/characters/elizabeth/foot.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(5 + 8/12, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Minimacro",
  45852. height: math.unit(18, "feet")
  45853. },
  45854. {
  45855. name: "Macro",
  45856. height: math.unit(180, "feet")
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(5 + 2/12, "feet"),
  45865. name: "Front",
  45866. image: {
  45867. source: "./media/characters/october-gossamer/front.svg",
  45868. extra: 505/454,
  45869. bottom: 7/512
  45870. }
  45871. },
  45872. back: {
  45873. height: math.unit(5 + 2/12, "feet"),
  45874. name: "Back",
  45875. image: {
  45876. source: "./media/characters/october-gossamer/back.svg",
  45877. extra: 501/454,
  45878. bottom: 11/512
  45879. }
  45880. },
  45881. },
  45882. [
  45883. {
  45884. name: "Normal",
  45885. height: math.unit(5 + 2/12, "feet"),
  45886. default: true
  45887. },
  45888. ]
  45889. ))
  45890. characterMakers.push(() => makeCharacter(
  45891. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45892. {
  45893. front: {
  45894. height: math.unit(5, "feet"),
  45895. name: "Front",
  45896. image: {
  45897. source: "./media/characters/epiglottis/front.svg",
  45898. extra: 923/849,
  45899. bottom: 17/940
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Original Size",
  45906. height: math.unit(10, "inches")
  45907. },
  45908. {
  45909. name: "Human Size",
  45910. height: math.unit(5, "feet"),
  45911. default: true
  45912. },
  45913. {
  45914. name: "Big",
  45915. height: math.unit(25, "feet")
  45916. },
  45917. {
  45918. name: "Bigger",
  45919. height: math.unit(50, "feet")
  45920. },
  45921. {
  45922. name: "oh lawd",
  45923. height: math.unit(75, "feet")
  45924. },
  45925. ]
  45926. ))
  45927. characterMakers.push(() => makeCharacter(
  45928. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45929. {
  45930. front: {
  45931. height: math.unit(2 + 4/12, "feet"),
  45932. weight: math.unit(60, "lb"),
  45933. name: "Front",
  45934. image: {
  45935. source: "./media/characters/lerm/front.svg",
  45936. extra: 796/790,
  45937. bottom: 79/875
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(2 + 4/12, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(5.5, "feet"),
  45954. weight: math.unit(130, "lb"),
  45955. name: "Front",
  45956. image: {
  45957. source: "./media/characters/xena-nebadon/front.svg",
  45958. extra: 1828/1730,
  45959. bottom: 79/1907
  45960. }
  45961. },
  45962. },
  45963. [
  45964. {
  45965. name: "Tiny Puppy",
  45966. height: math.unit(3, "inches")
  45967. },
  45968. {
  45969. name: "Normal",
  45970. height: math.unit(5.5, "feet"),
  45971. default: true
  45972. },
  45973. {
  45974. name: "Lotta Lady",
  45975. height: math.unit(12, "feet")
  45976. },
  45977. {
  45978. name: "Pretty Big",
  45979. height: math.unit(100, "feet")
  45980. },
  45981. {
  45982. name: "Big",
  45983. height: math.unit(500, "feet")
  45984. },
  45985. {
  45986. name: "Skyscraper Toys",
  45987. height: math.unit(2500, "feet")
  45988. },
  45989. {
  45990. name: "Plane Catcher",
  45991. height: math.unit(8, "miles")
  45992. },
  45993. {
  45994. name: "Planet Toys",
  45995. height: math.unit(15, "earths")
  45996. },
  45997. {
  45998. name: "Stardust",
  45999. height: math.unit(0.25, "galaxies")
  46000. },
  46001. {
  46002. name: "Snacks",
  46003. height: math.unit(70, "universes")
  46004. },
  46005. ]
  46006. ))
  46007. characterMakers.push(() => makeCharacter(
  46008. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46009. {
  46010. front: {
  46011. height: math.unit(1.6, "meters"),
  46012. weight: math.unit(60, "kg"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/bounty/front.svg",
  46016. extra: 1426/1308,
  46017. bottom: 15/1441
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(1.6, "meters"),
  46022. weight: math.unit(60, "kg"),
  46023. name: "Back",
  46024. image: {
  46025. source: "./media/characters/bounty/back.svg",
  46026. extra: 1417/1307,
  46027. bottom: 8/1425
  46028. }
  46029. },
  46030. },
  46031. [
  46032. {
  46033. name: "Normal",
  46034. height: math.unit(1.6, "meters"),
  46035. default: true
  46036. },
  46037. {
  46038. name: "Macro",
  46039. height: math.unit(300, "meters")
  46040. },
  46041. ]
  46042. ))
  46043. characterMakers.push(() => makeCharacter(
  46044. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46045. {
  46046. front: {
  46047. height: math.unit(2 + 8/12, "feet"),
  46048. weight: math.unit(15, "lb"),
  46049. name: "Front",
  46050. image: {
  46051. source: "./media/characters/mochi/front.svg",
  46052. extra: 1022/852,
  46053. bottom: 435/1457
  46054. }
  46055. },
  46056. back: {
  46057. height: math.unit(2 + 8/12, "feet"),
  46058. weight: math.unit(15, "lb"),
  46059. name: "Back",
  46060. image: {
  46061. source: "./media/characters/mochi/back.svg",
  46062. extra: 1335/1119,
  46063. bottom: 39/1374
  46064. }
  46065. },
  46066. bird: {
  46067. height: math.unit(2 + 8/12, "feet"),
  46068. weight: math.unit(15, "lb"),
  46069. name: "Bird",
  46070. image: {
  46071. source: "./media/characters/mochi/bird.svg",
  46072. extra: 1251/1113,
  46073. bottom: 178/1429
  46074. }
  46075. },
  46076. kaiju: {
  46077. height: math.unit(154, "feet"),
  46078. weight: math.unit(1e7, "lb"),
  46079. name: "Kaiju",
  46080. image: {
  46081. source: "./media/characters/mochi/kaiju.svg",
  46082. extra: 460/324,
  46083. bottom: 40/500
  46084. }
  46085. },
  46086. head: {
  46087. height: math.unit(1.21, "feet"),
  46088. name: "Head",
  46089. image: {
  46090. source: "./media/characters/mochi/head.svg"
  46091. }
  46092. },
  46093. alternateTail: {
  46094. height: math.unit(2 + 8/12, "feet"),
  46095. weight: math.unit(45, "lb"),
  46096. name: "Alternate Tail",
  46097. image: {
  46098. source: "./media/characters/mochi/alternate-tail.svg",
  46099. extra: 139/76,
  46100. bottom: 45/184
  46101. }
  46102. },
  46103. },
  46104. [
  46105. {
  46106. name: "Micro",
  46107. height: math.unit(2, "inches")
  46108. },
  46109. {
  46110. name: "Normal",
  46111. height: math.unit(2 + 8/12, "feet"),
  46112. default: true
  46113. },
  46114. {
  46115. name: "Macro",
  46116. height: math.unit(106, "feet")
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46122. {
  46123. front: {
  46124. height: math.unit(5.67, "feet"),
  46125. weight: math.unit(135, "lb"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/sarel/front.svg",
  46129. extra: 865/788,
  46130. bottom: 97/962
  46131. }
  46132. },
  46133. back: {
  46134. height: math.unit(5.67, "feet"),
  46135. weight: math.unit(135, "lb"),
  46136. name: "Back",
  46137. image: {
  46138. source: "./media/characters/sarel/back.svg",
  46139. extra: 857/777,
  46140. bottom: 32/889
  46141. }
  46142. },
  46143. chozoan: {
  46144. height: math.unit(5.67, "feet"),
  46145. weight: math.unit(135, "lb"),
  46146. name: "Chozoan",
  46147. image: {
  46148. source: "./media/characters/sarel/chozoan.svg",
  46149. extra: 865/788,
  46150. bottom: 97/962
  46151. }
  46152. },
  46153. current: {
  46154. height: math.unit(5.67, "feet"),
  46155. weight: math.unit(135, "lb"),
  46156. name: "Current",
  46157. image: {
  46158. source: "./media/characters/sarel/current.svg",
  46159. extra: 865/788,
  46160. bottom: 97/962
  46161. }
  46162. },
  46163. head: {
  46164. height: math.unit(1.77, "feet"),
  46165. name: "Head",
  46166. image: {
  46167. source: "./media/characters/sarel/head.svg"
  46168. }
  46169. },
  46170. claws: {
  46171. height: math.unit(1.8, "feet"),
  46172. name: "Claws",
  46173. image: {
  46174. source: "./media/characters/sarel/claws.svg"
  46175. }
  46176. },
  46177. clawsAlt: {
  46178. height: math.unit(1.8, "feet"),
  46179. name: "Claws-alt",
  46180. image: {
  46181. source: "./media/characters/sarel/claws-alt.svg"
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(5.67, "feet"),
  46189. default: true
  46190. },
  46191. ]
  46192. ))
  46193. characterMakers.push(() => makeCharacter(
  46194. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46195. {
  46196. front: {
  46197. height: math.unit(5500, "feet"),
  46198. name: "Front",
  46199. image: {
  46200. source: "./media/characters/alyonia/front.svg",
  46201. extra: 1200/1135,
  46202. bottom: 29/1229
  46203. }
  46204. },
  46205. back: {
  46206. height: math.unit(5500, "feet"),
  46207. name: "Back",
  46208. image: {
  46209. source: "./media/characters/alyonia/back.svg",
  46210. extra: 1205/1138,
  46211. bottom: 10/1215
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Small",
  46218. height: math.unit(10, "feet")
  46219. },
  46220. {
  46221. name: "Macro",
  46222. height: math.unit(500, "feet")
  46223. },
  46224. {
  46225. name: "Mega Macro",
  46226. height: math.unit(5500, "feet"),
  46227. default: true
  46228. },
  46229. {
  46230. name: "Mega Macro+",
  46231. height: math.unit(500000, "feet")
  46232. },
  46233. {
  46234. name: "Giga Macro",
  46235. height: math.unit(3000, "miles")
  46236. },
  46237. {
  46238. name: "Tera Macro",
  46239. height: math.unit(2.8e6, "miles")
  46240. },
  46241. {
  46242. name: "Galactic",
  46243. height: math.unit(120000, "lightyears")
  46244. },
  46245. ]
  46246. ))
  46247. characterMakers.push(() => makeCharacter(
  46248. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46249. {
  46250. werewolf: {
  46251. height: math.unit(8, "feet"),
  46252. weight: math.unit(425, "lb"),
  46253. name: "Werewolf",
  46254. image: {
  46255. source: "./media/characters/autumn/werewolf.svg",
  46256. extra: 2154/2031,
  46257. bottom: 160/2314
  46258. }
  46259. },
  46260. human: {
  46261. height: math.unit(5 + 8/12, "feet"),
  46262. weight: math.unit(150, "lb"),
  46263. name: "Human",
  46264. image: {
  46265. source: "./media/characters/autumn/human.svg",
  46266. extra: 1200/1149,
  46267. bottom: 30/1230
  46268. }
  46269. },
  46270. },
  46271. [
  46272. {
  46273. name: "Normal",
  46274. height: math.unit(8, "feet"),
  46275. default: true
  46276. },
  46277. ]
  46278. ))
  46279. characterMakers.push(() => makeCharacter(
  46280. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46281. {
  46282. front: {
  46283. height: math.unit(8 + 5/12, "feet"),
  46284. weight: math.unit(825, "lb"),
  46285. name: "Front",
  46286. image: {
  46287. source: "./media/characters/cobalt-charizard/front.svg",
  46288. extra: 1268/1155,
  46289. bottom: 122/1390
  46290. }
  46291. },
  46292. side: {
  46293. height: math.unit(8 + 5/12, "feet"),
  46294. weight: math.unit(825, "lb"),
  46295. name: "Side",
  46296. image: {
  46297. source: "./media/characters/cobalt-charizard/side.svg",
  46298. extra: 1348/1257,
  46299. bottom: 58/1406
  46300. }
  46301. },
  46302. gMax: {
  46303. height: math.unit(134 + 11/12, "feet"),
  46304. name: "G-Max",
  46305. image: {
  46306. source: "./media/characters/cobalt-charizard/g-max.svg",
  46307. extra: 1835/1541,
  46308. bottom: 151/1986
  46309. }
  46310. },
  46311. },
  46312. [
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(8 + 5/12, "feet"),
  46316. default: true
  46317. },
  46318. ]
  46319. ))
  46320. characterMakers.push(() => makeCharacter(
  46321. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46322. {
  46323. front: {
  46324. height: math.unit(6 + 3/12, "feet"),
  46325. weight: math.unit(210, "lb"),
  46326. name: "Front",
  46327. image: {
  46328. source: "./media/characters/stella/front.svg",
  46329. extra: 3549/3335,
  46330. bottom: 51/3600
  46331. }
  46332. },
  46333. },
  46334. [
  46335. {
  46336. name: "Normal",
  46337. height: math.unit(6 + 3/12, "feet"),
  46338. default: true
  46339. },
  46340. ]
  46341. ))
  46342. characterMakers.push(() => makeCharacter(
  46343. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46344. {
  46345. front: {
  46346. height: math.unit(5, "feet"),
  46347. weight: math.unit(90, "lb"),
  46348. name: "Front",
  46349. image: {
  46350. source: "./media/characters/riley-bishop/front.svg",
  46351. extra: 1450/1428,
  46352. bottom: 152/1602
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(5, "feet"),
  46360. default: true
  46361. },
  46362. ]
  46363. ))
  46364. characterMakers.push(() => makeCharacter(
  46365. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46366. {
  46367. side: {
  46368. height: math.unit(8 + 2/12, "feet"),
  46369. weight: math.unit(500, "kg"),
  46370. name: "Side",
  46371. image: {
  46372. source: "./media/characters/theo-arcanine/side.svg",
  46373. extra: 1342/1074,
  46374. bottom: 111/1453
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(8 + 2/12, "feet"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(4, "feet"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/kali/front.svg",
  46394. extra: 1074/867,
  46395. bottom: 34/1108
  46396. }
  46397. },
  46398. back: {
  46399. height: math.unit(4, "feet"),
  46400. name: "Back",
  46401. image: {
  46402. source: "./media/characters/kali/back.svg",
  46403. extra: 1068/863,
  46404. bottom: 26/1094
  46405. }
  46406. },
  46407. frontAlt: {
  46408. height: math.unit(4, "feet"),
  46409. name: "Front (Alt)",
  46410. image: {
  46411. source: "./media/characters/kali/front-alt.svg",
  46412. extra: 1921/1357,
  46413. bottom: 70/1991
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Normal",
  46420. height: math.unit(4, "feet"),
  46421. default: true
  46422. },
  46423. {
  46424. name: "Big'vali",
  46425. height: math.unit(11, "feet")
  46426. },
  46427. {
  46428. name: "Macro",
  46429. height: math.unit(32, "meters")
  46430. },
  46431. {
  46432. name: "Macro+",
  46433. height: math.unit(150, "meters")
  46434. },
  46435. {
  46436. name: "Megamacro",
  46437. height: math.unit(7500, "meters")
  46438. },
  46439. {
  46440. name: "Megamacro+",
  46441. height: math.unit(80, "kilometers")
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46447. {
  46448. side: {
  46449. height: math.unit(5 + 11/12, "feet"),
  46450. weight: math.unit(236, "lb"),
  46451. name: "Side",
  46452. image: {
  46453. source: "./media/characters/gapp/side.svg",
  46454. extra: 775/340,
  46455. bottom: 58/833
  46456. }
  46457. },
  46458. mouth: {
  46459. height: math.unit(2.98, "feet"),
  46460. name: "Mouth",
  46461. image: {
  46462. source: "./media/characters/gapp/mouth.svg"
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(5 + 1/12, "feet"),
  46470. default: true
  46471. },
  46472. ]
  46473. ))
  46474. characterMakers.push(() => makeCharacter(
  46475. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46476. {
  46477. front: {
  46478. height: math.unit(6, "feet"),
  46479. name: "Front",
  46480. image: {
  46481. source: "./media/characters/persephone/front.svg",
  46482. extra: 1895/1717,
  46483. bottom: 96/1991
  46484. }
  46485. },
  46486. back: {
  46487. height: math.unit(6, "feet"),
  46488. name: "Back",
  46489. image: {
  46490. source: "./media/characters/persephone/back.svg",
  46491. extra: 1868/1679,
  46492. bottom: 26/1894
  46493. }
  46494. },
  46495. casual: {
  46496. height: math.unit(6, "feet"),
  46497. name: "Casual",
  46498. image: {
  46499. source: "./media/characters/persephone/casual.svg",
  46500. extra: 1713/1541,
  46501. bottom: 76/1789
  46502. }
  46503. },
  46504. gaming: {
  46505. height: math.unit(3.55, "feet"),
  46506. name: "Gaming",
  46507. image: {
  46508. source: "./media/characters/persephone/gaming.svg",
  46509. extra: 1242/1038,
  46510. bottom: 66/1308
  46511. }
  46512. },
  46513. head: {
  46514. height: math.unit(2.15, "feet"),
  46515. name: "😐",
  46516. image: {
  46517. source: "./media/characters/persephone/head.svg"
  46518. }
  46519. },
  46520. talking: {
  46521. height: math.unit(2.5, "feet"),
  46522. name: "💬",
  46523. image: {
  46524. source: "./media/characters/persephone/talking.svg"
  46525. }
  46526. },
  46527. hmm: {
  46528. height: math.unit(2.28, "feet"),
  46529. name: "🤨",
  46530. image: {
  46531. source: "./media/characters/persephone/hmm.svg"
  46532. }
  46533. },
  46534. },
  46535. [
  46536. {
  46537. name: "Human Size",
  46538. height: math.unit(6, "feet")
  46539. },
  46540. {
  46541. name: "Big Steppy",
  46542. height: math.unit(600, "meters"),
  46543. default: true
  46544. },
  46545. {
  46546. name: "Galaxy Brain",
  46547. height: math.unit(1, "zettameter")
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(1.85, "meters"),
  46556. name: "Front",
  46557. image: {
  46558. source: "./media/characters/riley-foxthing/front.svg",
  46559. extra: 1495/1354,
  46560. bottom: 122/1617
  46561. }
  46562. },
  46563. frontAlt: {
  46564. height: math.unit(1.85, "meters"),
  46565. name: "Front (Alt)",
  46566. image: {
  46567. source: "./media/characters/riley-foxthing/front-alt.svg",
  46568. extra: 1572/1389,
  46569. bottom: 116/1688
  46570. }
  46571. },
  46572. },
  46573. [
  46574. {
  46575. name: "Normal Sized",
  46576. height: math.unit(1.85, "meters"),
  46577. default: true
  46578. },
  46579. {
  46580. name: "Quite Sizable",
  46581. height: math.unit(5, "meters")
  46582. },
  46583. {
  46584. name: "Rather Large",
  46585. height: math.unit(20, "meters")
  46586. },
  46587. {
  46588. name: "Macro",
  46589. height: math.unit(450, "meters")
  46590. },
  46591. {
  46592. name: "Giga",
  46593. height: math.unit(5, "km")
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46599. {
  46600. front: {
  46601. height: math.unit(6, "feet"),
  46602. weight: math.unit(200, "lb"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/blizzard/front.svg",
  46606. extra: 1136/990,
  46607. bottom: 136/1272
  46608. }
  46609. },
  46610. back: {
  46611. height: math.unit(6, "feet"),
  46612. weight: math.unit(200, "lb"),
  46613. name: "Back",
  46614. image: {
  46615. source: "./media/characters/blizzard/back.svg",
  46616. extra: 1175/1034,
  46617. bottom: 97/1272
  46618. }
  46619. },
  46620. sitting: {
  46621. height: math.unit(3.725, "feet"),
  46622. weight: math.unit(200, "lb"),
  46623. name: "Sitting",
  46624. image: {
  46625. source: "./media/characters/blizzard/sitting.svg",
  46626. extra: 581/485,
  46627. bottom: 90/671
  46628. }
  46629. },
  46630. frontWizard: {
  46631. height: math.unit(7.9, "feet"),
  46632. weight: math.unit(200, "lb"),
  46633. name: "Front (Wizard)",
  46634. image: {
  46635. source: "./media/characters/blizzard/front-wizard.svg"
  46636. }
  46637. },
  46638. backWizard: {
  46639. height: math.unit(7.9, "feet"),
  46640. weight: math.unit(200, "lb"),
  46641. name: "Back (Wizard)",
  46642. image: {
  46643. source: "./media/characters/blizzard/back-wizard.svg"
  46644. }
  46645. },
  46646. frontNsfw: {
  46647. height: math.unit(6, "feet"),
  46648. weight: math.unit(200, "lb"),
  46649. name: "Front (NSFW)",
  46650. image: {
  46651. source: "./media/characters/blizzard/front-nsfw.svg",
  46652. extra: 1136/990,
  46653. bottom: 136/1272
  46654. }
  46655. },
  46656. backNsfw: {
  46657. height: math.unit(6, "feet"),
  46658. weight: math.unit(200, "lb"),
  46659. name: "Back (NSFW)",
  46660. image: {
  46661. source: "./media/characters/blizzard/back-nsfw.svg",
  46662. extra: 1175/1034,
  46663. bottom: 97/1272
  46664. }
  46665. },
  46666. sittingNsfw: {
  46667. height: math.unit(3.725, "feet"),
  46668. weight: math.unit(200, "lb"),
  46669. name: "Sitting (NSFW)",
  46670. image: {
  46671. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46672. extra: 581/485,
  46673. bottom: 90/671
  46674. }
  46675. },
  46676. wizardFrontNsfw: {
  46677. height: math.unit(7.9, "feet"),
  46678. weight: math.unit(200, "lb"),
  46679. name: "Wizard (Front, NSFW)",
  46680. image: {
  46681. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46682. }
  46683. },
  46684. },
  46685. [
  46686. {
  46687. name: "Normal",
  46688. height: math.unit(6, "feet"),
  46689. default: true
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46695. {
  46696. front: {
  46697. height: math.unit(5 + 2/12, "feet"),
  46698. name: "Front",
  46699. image: {
  46700. source: "./media/characters/lumi/front.svg",
  46701. extra: 1328/1268,
  46702. bottom: 103/1431
  46703. }
  46704. },
  46705. back: {
  46706. height: math.unit(5 + 2/12, "feet"),
  46707. name: "Back",
  46708. image: {
  46709. source: "./media/characters/lumi/back.svg",
  46710. extra: 1381/1327,
  46711. bottom: 43/1424
  46712. }
  46713. },
  46714. },
  46715. [
  46716. {
  46717. name: "Normal",
  46718. height: math.unit(5 + 2/12, "feet"),
  46719. default: true
  46720. },
  46721. ]
  46722. ))
  46723. characterMakers.push(() => makeCharacter(
  46724. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46725. {
  46726. front: {
  46727. height: math.unit(5 + 9/12, "feet"),
  46728. name: "Front",
  46729. image: {
  46730. source: "./media/characters/aliya-cotton/front.svg",
  46731. extra: 577/564,
  46732. bottom: 29/606
  46733. }
  46734. },
  46735. },
  46736. [
  46737. {
  46738. name: "Normal",
  46739. height: math.unit(5 + 9/12, "feet"),
  46740. default: true
  46741. },
  46742. ]
  46743. ))
  46744. characterMakers.push(() => makeCharacter(
  46745. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46746. {
  46747. front: {
  46748. height: math.unit(2.7, "meters"),
  46749. weight: math.unit(25000, "lb"),
  46750. name: "Front",
  46751. image: {
  46752. source: "./media/characters/noah-luxray/front.svg",
  46753. extra: 1644/825,
  46754. bottom: 339/1983
  46755. }
  46756. },
  46757. side: {
  46758. height: math.unit(2.97, "meters"),
  46759. weight: math.unit(25000, "lb"),
  46760. name: "Side",
  46761. image: {
  46762. source: "./media/characters/noah-luxray/side.svg",
  46763. extra: 1319/650,
  46764. bottom: 163/1482
  46765. }
  46766. },
  46767. dick: {
  46768. height: math.unit(7.4, "feet"),
  46769. weight: math.unit(2500, "lb"),
  46770. name: "Dick",
  46771. image: {
  46772. source: "./media/characters/noah-luxray/dick.svg"
  46773. }
  46774. },
  46775. dickAlt: {
  46776. height: math.unit(10.83, "feet"),
  46777. weight: math.unit(2500, "lb"),
  46778. name: "Dick-alt",
  46779. image: {
  46780. source: "./media/characters/noah-luxray/dick-alt.svg"
  46781. }
  46782. },
  46783. },
  46784. [
  46785. {
  46786. name: "BIG",
  46787. height: math.unit(2.7, "meters"),
  46788. default: true
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46794. {
  46795. standing: {
  46796. height: math.unit(183, "cm"),
  46797. weight: math.unit(68, "kg"),
  46798. name: "Standing",
  46799. image: {
  46800. source: "./media/characters/arion/standing.svg",
  46801. extra: 1869/1807,
  46802. bottom: 93/1962
  46803. }
  46804. },
  46805. reclining: {
  46806. height: math.unit(70.5, "cm"),
  46807. weight: math.unit(68, "lb"),
  46808. name: "Reclining",
  46809. image: {
  46810. source: "./media/characters/arion/reclining.svg",
  46811. extra: 937/870,
  46812. bottom: 63/1000
  46813. }
  46814. },
  46815. },
  46816. [
  46817. {
  46818. name: "Colossus Size, Low",
  46819. height: math.unit(33, "meters"),
  46820. default: true
  46821. },
  46822. {
  46823. name: "Colossus Size, Mid",
  46824. height: math.unit(52, "meters")
  46825. },
  46826. {
  46827. name: "Colossus Size, High",
  46828. height: math.unit(60, "meters")
  46829. },
  46830. {
  46831. name: "Titan Size, Low",
  46832. height: math.unit(91, "meters"),
  46833. },
  46834. {
  46835. name: "Titan Size, Mid",
  46836. height: math.unit(122, "meters")
  46837. },
  46838. {
  46839. name: "Titan Size, High",
  46840. height: math.unit(162, "meters")
  46841. },
  46842. ]
  46843. ))
  46844. characterMakers.push(() => makeCharacter(
  46845. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46846. {
  46847. front: {
  46848. height: math.unit(53, "meters"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/stellar-marbey/front.svg",
  46852. extra: 1913/1805,
  46853. bottom: 92/2005
  46854. }
  46855. },
  46856. back: {
  46857. height: math.unit(53, "meters"),
  46858. name: "Back",
  46859. image: {
  46860. source: "./media/characters/stellar-marbey/back.svg",
  46861. extra: 1960/1851,
  46862. bottom: 28/1988
  46863. }
  46864. },
  46865. mouth: {
  46866. height: math.unit(3.5, "meters"),
  46867. name: "Mouth",
  46868. image: {
  46869. source: "./media/characters/stellar-marbey/mouth.svg"
  46870. }
  46871. },
  46872. },
  46873. [
  46874. {
  46875. name: "Macro",
  46876. height: math.unit(53, "meters"),
  46877. default: true
  46878. },
  46879. ]
  46880. ))
  46881. characterMakers.push(() => makeCharacter(
  46882. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46883. {
  46884. front: {
  46885. height: math.unit(8 + 1/12, "feet"),
  46886. weight: math.unit(233, "lb"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/matsu/front.svg",
  46890. extra: 832/772,
  46891. bottom: 40/872
  46892. }
  46893. },
  46894. back: {
  46895. height: math.unit(8 + 1/12, "feet"),
  46896. weight: math.unit(233, "lb"),
  46897. name: "Back",
  46898. image: {
  46899. source: "./media/characters/matsu/back.svg",
  46900. extra: 839/780,
  46901. bottom: 47/886
  46902. }
  46903. },
  46904. },
  46905. [
  46906. {
  46907. name: "Normal",
  46908. height: math.unit(8 + 1/12, "feet"),
  46909. default: true
  46910. },
  46911. ]
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46915. {
  46916. front: {
  46917. height: math.unit(4, "feet"),
  46918. weight: math.unit(148, "lb"),
  46919. name: "Front",
  46920. image: {
  46921. source: "./media/characters/thiz/front.svg",
  46922. extra: 1913/1748,
  46923. bottom: 62/1975
  46924. }
  46925. },
  46926. },
  46927. [
  46928. {
  46929. name: "Normal",
  46930. height: math.unit(4, "feet"),
  46931. default: true
  46932. },
  46933. ]
  46934. ))
  46935. characterMakers.push(() => makeCharacter(
  46936. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46937. {
  46938. front: {
  46939. height: math.unit(7 + 6/12, "feet"),
  46940. weight: math.unit(267, "lb"),
  46941. name: "Front",
  46942. image: {
  46943. source: "./media/characters/marcel/front.svg",
  46944. extra: 1221/1096,
  46945. bottom: 76/1297
  46946. }
  46947. },
  46948. },
  46949. [
  46950. {
  46951. name: "Normal",
  46952. height: math.unit(7 + 6/12, "feet"),
  46953. default: true
  46954. },
  46955. ]
  46956. ))
  46957. characterMakers.push(() => makeCharacter(
  46958. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46959. {
  46960. side: {
  46961. height: math.unit(42, "meters"),
  46962. name: "Side",
  46963. image: {
  46964. source: "./media/characters/flake/side.svg",
  46965. extra: 1525/1306,
  46966. bottom: 209/1734
  46967. }
  46968. },
  46969. },
  46970. [
  46971. {
  46972. name: "Normal",
  46973. height: math.unit(42, "meters"),
  46974. default: true
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46980. {
  46981. dressed: {
  46982. height: math.unit(6 + 4/12, "feet"),
  46983. weight: math.unit(520, "lb"),
  46984. name: "Dressed",
  46985. image: {
  46986. source: "./media/characters/someonne/dressed.svg",
  46987. extra: 1020/1010,
  46988. bottom: 178/1198
  46989. }
  46990. },
  46991. undressed: {
  46992. height: math.unit(6 + 4/12, "feet"),
  46993. weight: math.unit(520, "lb"),
  46994. name: "Undressed",
  46995. image: {
  46996. source: "./media/characters/someonne/undressed.svg",
  46997. extra: 1019/1014,
  46998. bottom: 169/1188
  46999. }
  47000. },
  47001. },
  47002. [
  47003. {
  47004. name: "Normal",
  47005. height: math.unit(6 + 4/12, "feet"),
  47006. default: true
  47007. },
  47008. ]
  47009. ))
  47010. characterMakers.push(() => makeCharacter(
  47011. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47012. {
  47013. front: {
  47014. height: math.unit(3, "feet"),
  47015. weight: math.unit(30, "lb"),
  47016. name: "Front",
  47017. image: {
  47018. source: "./media/characters/till/front.svg",
  47019. extra: 892/823,
  47020. bottom: 55/947
  47021. }
  47022. },
  47023. },
  47024. [
  47025. {
  47026. name: "Normal",
  47027. height: math.unit(3, "feet"),
  47028. default: true
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(9 + 8/12, "feet"),
  47037. weight: math.unit(800, "lb"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/sydney-heki/front.svg",
  47041. extra: 1360/1300,
  47042. bottom: 22/1382
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(9 + 8/12, "feet"),
  47047. weight: math.unit(800, "lb"),
  47048. name: "Back",
  47049. image: {
  47050. source: "./media/characters/sydney-heki/back.svg",
  47051. extra: 1356/1293,
  47052. bottom: 12/1368
  47053. }
  47054. },
  47055. frontDressed: {
  47056. height: math.unit(9 + 8/12, "feet"),
  47057. weight: math.unit(800, "lb"),
  47058. name: "Front-dressed",
  47059. image: {
  47060. source: "./media/characters/sydney-heki/front-dressed.svg",
  47061. extra: 1360/1300,
  47062. bottom: 22/1382
  47063. }
  47064. },
  47065. },
  47066. [
  47067. {
  47068. name: "Normal",
  47069. height: math.unit(9 + 8/12, "feet"),
  47070. default: true
  47071. },
  47072. {
  47073. name: "Macro",
  47074. height: math.unit(500, "feet")
  47075. },
  47076. {
  47077. name: "Megamacro",
  47078. height: math.unit(3.6, "miles")
  47079. },
  47080. ]
  47081. ))
  47082. characterMakers.push(() => makeCharacter(
  47083. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47084. {
  47085. front: {
  47086. height: math.unit(200, "cm"),
  47087. weight: math.unit(250, "lb"),
  47088. name: "Front",
  47089. image: {
  47090. source: "./media/characters/fowler-karlsson/front.svg",
  47091. extra: 897/845,
  47092. bottom: 123/1020
  47093. }
  47094. },
  47095. back: {
  47096. height: math.unit(200, "cm"),
  47097. weight: math.unit(250, "lb"),
  47098. name: "Back",
  47099. image: {
  47100. source: "./media/characters/fowler-karlsson/back.svg",
  47101. extra: 999/944,
  47102. bottom: 26/1025
  47103. }
  47104. },
  47105. dick: {
  47106. height: math.unit(1.92, "feet"),
  47107. weight: math.unit(150, "lb"),
  47108. name: "Dick",
  47109. image: {
  47110. source: "./media/characters/fowler-karlsson/dick.svg"
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(200, "cm"),
  47118. default: true
  47119. },
  47120. {
  47121. name: "Smaller Macro",
  47122. height: math.unit(90, "m")
  47123. },
  47124. {
  47125. name: "Macro",
  47126. height: math.unit(150, "m")
  47127. },
  47128. {
  47129. name: "Bigger Macro",
  47130. height: math.unit(300, "m")
  47131. },
  47132. ]
  47133. ))
  47134. characterMakers.push(() => makeCharacter(
  47135. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47136. {
  47137. side: {
  47138. height: math.unit(8 + 2/12, "feet"),
  47139. weight: math.unit(1, "tonne"),
  47140. name: "Side",
  47141. image: {
  47142. source: "./media/characters/rylide/side.svg",
  47143. extra: 1318/1034,
  47144. bottom: 106/1424
  47145. }
  47146. },
  47147. sitting: {
  47148. height: math.unit(303, "cm"),
  47149. weight: math.unit(1, "tonne"),
  47150. name: "Sitting",
  47151. image: {
  47152. source: "./media/characters/rylide/sitting.svg",
  47153. extra: 1303/1103,
  47154. bottom: 36/1339
  47155. }
  47156. },
  47157. },
  47158. [
  47159. {
  47160. name: "Normal",
  47161. height: math.unit(8 + 2/12, "feet"),
  47162. default: true
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47168. {
  47169. front: {
  47170. height: math.unit(5 + 10/12, "feet"),
  47171. weight: math.unit(160, "lb"),
  47172. name: "Front",
  47173. image: {
  47174. source: "./media/characters/pudask/front.svg",
  47175. extra: 1616/1590,
  47176. bottom: 161/1777
  47177. }
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Ferret Height",
  47183. height: math.unit(2 + 5/12, "feet")
  47184. },
  47185. {
  47186. name: "Canon Height",
  47187. height: math.unit(5 + 10/12, "feet"),
  47188. default: true
  47189. },
  47190. ]
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47194. {
  47195. front: {
  47196. height: math.unit(3 + 6/12, "feet"),
  47197. weight: math.unit(60, "lb"),
  47198. name: "Front",
  47199. image: {
  47200. source: "./media/characters/ramita/front.svg",
  47201. extra: 1402/1232,
  47202. bottom: 62/1464
  47203. }
  47204. },
  47205. dressed: {
  47206. height: math.unit(3 + 6/12, "feet"),
  47207. weight: math.unit(60, "lb"),
  47208. name: "Dressed",
  47209. image: {
  47210. source: "./media/characters/ramita/dressed.svg",
  47211. extra: 1534/1249,
  47212. bottom: 50/1584
  47213. }
  47214. },
  47215. },
  47216. [
  47217. {
  47218. name: "Normal",
  47219. height: math.unit(3 + 6/12, "feet"),
  47220. default: true
  47221. },
  47222. ]
  47223. ))
  47224. characterMakers.push(() => makeCharacter(
  47225. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47226. {
  47227. front: {
  47228. height: math.unit(8, "feet"),
  47229. name: "Front",
  47230. image: {
  47231. source: "./media/characters/ark/front.svg",
  47232. extra: 772/693,
  47233. bottom: 45/817
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(8, "feet"),
  47241. default: true
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47247. {
  47248. front: {
  47249. height: math.unit(6, "feet"),
  47250. weight: math.unit(250, "lb"),
  47251. volume: math.unit(5/8, "gallons"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/ludwig-horn/front.svg",
  47255. extra: 1782/1635,
  47256. bottom: 96/1878
  47257. }
  47258. },
  47259. back: {
  47260. height: math.unit(6, "feet"),
  47261. weight: math.unit(250, "lb"),
  47262. volume: math.unit(5/8, "gallons"),
  47263. name: "Back",
  47264. image: {
  47265. source: "./media/characters/ludwig-horn/back.svg",
  47266. extra: 1874/1729,
  47267. bottom: 27/1901
  47268. }
  47269. },
  47270. dick: {
  47271. height: math.unit(1.05, "feet"),
  47272. weight: math.unit(15, "lb"),
  47273. volume: math.unit(5/8, "gallons"),
  47274. name: "Dick",
  47275. image: {
  47276. source: "./media/characters/ludwig-horn/dick.svg"
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Small",
  47283. height: math.unit(6, "feet")
  47284. },
  47285. {
  47286. name: "Typical",
  47287. height: math.unit(12, "feet"),
  47288. default: true
  47289. },
  47290. {
  47291. name: "Building",
  47292. height: math.unit(80, "feet")
  47293. },
  47294. {
  47295. name: "Town",
  47296. height: math.unit(800, "feet")
  47297. },
  47298. {
  47299. name: "Kingdom",
  47300. height: math.unit(80000, "feet")
  47301. },
  47302. {
  47303. name: "Planet",
  47304. height: math.unit(8000000, "feet")
  47305. },
  47306. {
  47307. name: "Universe",
  47308. height: math.unit(8000000000, "feet")
  47309. },
  47310. {
  47311. name: "Transcended",
  47312. height: math.unit(8e27, "feet")
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(5, "feet"),
  47321. weight: math.unit(50, "kg"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/biot-avery/front.svg",
  47325. extra: 1295/1232,
  47326. bottom: 86/1381
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(5, "feet"),
  47334. default: true
  47335. },
  47336. ]
  47337. ))
  47338. characterMakers.push(() => makeCharacter(
  47339. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47340. {
  47341. front: {
  47342. height: math.unit(6, "feet"),
  47343. name: "Front",
  47344. image: {
  47345. source: "./media/characters/kitsune-kiro/front.svg",
  47346. extra: 1270/1158,
  47347. bottom: 42/1312
  47348. }
  47349. },
  47350. frontAlt: {
  47351. height: math.unit(6, "feet"),
  47352. name: "Front-alt",
  47353. image: {
  47354. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47355. extra: 1130/1081,
  47356. bottom: 36/1166
  47357. }
  47358. },
  47359. },
  47360. [
  47361. {
  47362. name: "Smol",
  47363. height: math.unit(3, "feet")
  47364. },
  47365. {
  47366. name: "Normal",
  47367. height: math.unit(6, "feet"),
  47368. default: true
  47369. },
  47370. ]
  47371. ))
  47372. characterMakers.push(() => makeCharacter(
  47373. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47374. {
  47375. front: {
  47376. height: math.unit(6, "feet"),
  47377. weight: math.unit(125, "lb"),
  47378. name: "Front",
  47379. image: {
  47380. source: "./media/characters/jack-thatcher/front.svg",
  47381. extra: 1474/1370,
  47382. bottom: 26/1500
  47383. }
  47384. },
  47385. back: {
  47386. height: math.unit(6, "feet"),
  47387. weight: math.unit(125, "lb"),
  47388. name: "Back",
  47389. image: {
  47390. source: "./media/characters/jack-thatcher/back.svg",
  47391. extra: 1489/1384,
  47392. bottom: 18/1507
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(6, "feet"),
  47400. default: true
  47401. },
  47402. {
  47403. name: "Macro",
  47404. height: math.unit(75, "feet")
  47405. },
  47406. {
  47407. name: "Macro-er",
  47408. height: math.unit(250, "feet")
  47409. },
  47410. ]
  47411. ))
  47412. characterMakers.push(() => makeCharacter(
  47413. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47414. {
  47415. front: {
  47416. height: math.unit(7, "feet"),
  47417. weight: math.unit(110, "kg"),
  47418. name: "Front",
  47419. image: {
  47420. source: "./media/characters/max-hyper/front.svg",
  47421. extra: 1969/1881,
  47422. bottom: 49/2018
  47423. }
  47424. },
  47425. },
  47426. [
  47427. {
  47428. name: "Normal",
  47429. height: math.unit(7, "feet"),
  47430. default: true
  47431. },
  47432. ]
  47433. ))
  47434. characterMakers.push(() => makeCharacter(
  47435. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47436. {
  47437. front: {
  47438. height: math.unit(5 + 5/12, "feet"),
  47439. weight: math.unit(160, "lb"),
  47440. name: "Front",
  47441. image: {
  47442. source: "./media/characters/spook/front.svg",
  47443. extra: 794/791,
  47444. bottom: 54/848
  47445. }
  47446. },
  47447. back: {
  47448. height: math.unit(5 + 5/12, "feet"),
  47449. weight: math.unit(160, "lb"),
  47450. name: "Back",
  47451. image: {
  47452. source: "./media/characters/spook/back.svg",
  47453. extra: 812/798,
  47454. bottom: 32/844
  47455. }
  47456. },
  47457. },
  47458. [
  47459. {
  47460. name: "Normal",
  47461. height: math.unit(5 + 5/12, "feet"),
  47462. default: true
  47463. },
  47464. ]
  47465. ))
  47466. characterMakers.push(() => makeCharacter(
  47467. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47468. {
  47469. front: {
  47470. height: math.unit(18, "feet"),
  47471. name: "Front",
  47472. image: {
  47473. source: "./media/characters/xeaduulix/front.svg",
  47474. extra: 1380/1166,
  47475. bottom: 110/1490
  47476. }
  47477. },
  47478. back: {
  47479. height: math.unit(18, "feet"),
  47480. name: "Back",
  47481. image: {
  47482. source: "./media/characters/xeaduulix/back.svg",
  47483. extra: 1592/1170,
  47484. bottom: 128/1720
  47485. }
  47486. },
  47487. frontNsfw: {
  47488. height: math.unit(18, "feet"),
  47489. name: "Front (NSFW)",
  47490. image: {
  47491. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47492. extra: 1380/1166,
  47493. bottom: 110/1490
  47494. }
  47495. },
  47496. backNsfw: {
  47497. height: math.unit(18, "feet"),
  47498. name: "Back (NSFW)",
  47499. image: {
  47500. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47501. extra: 1592/1170,
  47502. bottom: 128/1720
  47503. }
  47504. },
  47505. },
  47506. [
  47507. {
  47508. name: "Normal",
  47509. height: math.unit(18, "feet"),
  47510. default: true
  47511. },
  47512. ]
  47513. ))
  47514. characterMakers.push(() => makeCharacter(
  47515. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47516. {
  47517. spreadWings: {
  47518. height: math.unit(20, "feet"),
  47519. name: "Spread Wings",
  47520. image: {
  47521. source: "./media/characters/fledge/spread-wings.svg",
  47522. extra: 693/635,
  47523. bottom: 26/719
  47524. }
  47525. },
  47526. front: {
  47527. height: math.unit(20, "feet"),
  47528. name: "Front",
  47529. image: {
  47530. source: "./media/characters/fledge/front.svg",
  47531. extra: 684/637,
  47532. bottom: 18/702
  47533. }
  47534. },
  47535. frontAlt: {
  47536. height: math.unit(20, "feet"),
  47537. name: "Front (Alt)",
  47538. image: {
  47539. source: "./media/characters/fledge/front-alt.svg",
  47540. extra: 708/664,
  47541. bottom: 13/721
  47542. }
  47543. },
  47544. back: {
  47545. height: math.unit(20, "feet"),
  47546. name: "Back",
  47547. image: {
  47548. source: "./media/characters/fledge/back.svg",
  47549. extra: 718/634,
  47550. bottom: 22/740
  47551. }
  47552. },
  47553. head: {
  47554. height: math.unit(5.55, "feet"),
  47555. name: "Head",
  47556. image: {
  47557. source: "./media/characters/fledge/head.svg"
  47558. }
  47559. },
  47560. headAlt: {
  47561. height: math.unit(5.1, "feet"),
  47562. name: "Head (Alt)",
  47563. image: {
  47564. source: "./media/characters/fledge/head-alt.svg"
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Small",
  47571. height: math.unit(6 + 2/12, "feet")
  47572. },
  47573. {
  47574. name: "Big",
  47575. height: math.unit(20, "feet"),
  47576. default: true
  47577. },
  47578. {
  47579. name: "Giant",
  47580. height: math.unit(100, "feet")
  47581. },
  47582. {
  47583. name: "Macro",
  47584. height: math.unit(200, "feet")
  47585. },
  47586. ]
  47587. ))
  47588. characterMakers.push(() => makeCharacter(
  47589. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47590. {
  47591. front: {
  47592. height: math.unit(1, "meter"),
  47593. name: "Front",
  47594. image: {
  47595. source: "./media/characters/atlas-morenai/front.svg",
  47596. extra: 1275/1043,
  47597. bottom: 19/1294
  47598. }
  47599. },
  47600. back: {
  47601. height: math.unit(1, "meter"),
  47602. name: "Back",
  47603. image: {
  47604. source: "./media/characters/atlas-morenai/back.svg",
  47605. extra: 1141/1001,
  47606. bottom: 25/1166
  47607. }
  47608. },
  47609. },
  47610. [
  47611. {
  47612. name: "Normal",
  47613. height: math.unit(1, "meter"),
  47614. default: true
  47615. },
  47616. {
  47617. name: "Magic-Infused",
  47618. height: math.unit(5, "meters")
  47619. },
  47620. ]
  47621. ))
  47622. characterMakers.push(() => makeCharacter(
  47623. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47624. {
  47625. front: {
  47626. height: math.unit(5, "meters"),
  47627. name: "Front",
  47628. image: {
  47629. source: "./media/characters/cintia/front.svg",
  47630. extra: 1312/1228,
  47631. bottom: 38/1350
  47632. }
  47633. },
  47634. back: {
  47635. height: math.unit(5, "meters"),
  47636. name: "Back",
  47637. image: {
  47638. source: "./media/characters/cintia/back.svg",
  47639. extra: 1260/1166,
  47640. bottom: 98/1358
  47641. }
  47642. },
  47643. frontDick: {
  47644. height: math.unit(5, "meters"),
  47645. name: "Front (Dick)",
  47646. image: {
  47647. source: "./media/characters/cintia/front-dick.svg",
  47648. extra: 1312/1228,
  47649. bottom: 38/1350
  47650. }
  47651. },
  47652. backDick: {
  47653. height: math.unit(5, "meters"),
  47654. name: "Back (Dick)",
  47655. image: {
  47656. source: "./media/characters/cintia/back-dick.svg",
  47657. extra: 1260/1166,
  47658. bottom: 98/1358
  47659. }
  47660. },
  47661. bust: {
  47662. height: math.unit(1.97, "meters"),
  47663. name: "Bust",
  47664. image: {
  47665. source: "./media/characters/cintia/bust.svg",
  47666. extra: 617/565,
  47667. bottom: 0/617
  47668. }
  47669. },
  47670. },
  47671. [
  47672. {
  47673. name: "Normal",
  47674. height: math.unit(5, "meters"),
  47675. default: true
  47676. },
  47677. ]
  47678. ))
  47679. characterMakers.push(() => makeCharacter(
  47680. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47681. {
  47682. side: {
  47683. height: math.unit(100, "feet"),
  47684. name: "Side",
  47685. image: {
  47686. source: "./media/characters/denora/side.svg",
  47687. extra: 875/803,
  47688. bottom: 9/884
  47689. }
  47690. },
  47691. },
  47692. [
  47693. {
  47694. name: "Standard",
  47695. height: math.unit(100, "feet"),
  47696. default: true
  47697. },
  47698. {
  47699. name: "Grand",
  47700. height: math.unit(1000, "feet")
  47701. },
  47702. {
  47703. name: "Conquering",
  47704. height: math.unit(10000, "feet")
  47705. },
  47706. ]
  47707. ))
  47708. characterMakers.push(() => makeCharacter(
  47709. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47710. {
  47711. dressed: {
  47712. height: math.unit(8 + 5/12, "feet"),
  47713. weight: math.unit(700, "lb"),
  47714. name: "Dressed",
  47715. image: {
  47716. source: "./media/characters/kiva/dressed.svg",
  47717. extra: 1102/1055,
  47718. bottom: 60/1162
  47719. }
  47720. },
  47721. nude: {
  47722. height: math.unit(8 + 5/12, "feet"),
  47723. weight: math.unit(700, "lb"),
  47724. name: "Nude",
  47725. image: {
  47726. source: "./media/characters/kiva/nude.svg",
  47727. extra: 1102/1055,
  47728. bottom: 60/1162
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Base Height",
  47735. height: math.unit(8 + 5/12, "feet"),
  47736. default: true
  47737. },
  47738. {
  47739. name: "Macro",
  47740. height: math.unit(100, "feet")
  47741. },
  47742. {
  47743. name: "Max",
  47744. height: math.unit(3280, "feet")
  47745. },
  47746. ]
  47747. ))
  47748. characterMakers.push(() => makeCharacter(
  47749. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47750. {
  47751. front: {
  47752. height: math.unit(6 + 8/12, "feet"),
  47753. weight: math.unit(250, "lb"),
  47754. name: "Front",
  47755. image: {
  47756. source: "./media/characters/ztragon/front.svg",
  47757. extra: 1825/1684,
  47758. bottom: 98/1923
  47759. }
  47760. },
  47761. },
  47762. [
  47763. {
  47764. name: "Normal",
  47765. height: math.unit(6 + 8/12, "feet"),
  47766. default: true
  47767. },
  47768. {
  47769. name: "Macro",
  47770. height: math.unit(80, "feet")
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47776. {
  47777. front: {
  47778. height: math.unit(10.4, "feet"),
  47779. weight: math.unit(2, "tons"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/yesenia/front.svg",
  47783. extra: 1479/1474,
  47784. bottom: 233/1712
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Normal",
  47791. height: math.unit(10.4, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47798. {
  47799. normal: {
  47800. height: math.unit(6 + 1/12, "feet"),
  47801. weight: math.unit(180, "lb"),
  47802. name: "Normal",
  47803. image: {
  47804. source: "./media/characters/leanne-lycheborne/normal.svg",
  47805. extra: 1748/1660,
  47806. bottom: 98/1846
  47807. }
  47808. },
  47809. were: {
  47810. height: math.unit(12, "feet"),
  47811. weight: math.unit(1600, "lb"),
  47812. name: "Were",
  47813. image: {
  47814. source: "./media/characters/leanne-lycheborne/were.svg",
  47815. extra: 1485/1432,
  47816. bottom: 66/1551
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(6 + 1/12, "feet"),
  47824. default: true
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47830. {
  47831. side: {
  47832. height: math.unit(13, "feet"),
  47833. name: "Side",
  47834. image: {
  47835. source: "./media/characters/kira-tyler/side.svg",
  47836. extra: 693/393,
  47837. bottom: 58/751
  47838. }
  47839. },
  47840. },
  47841. [
  47842. {
  47843. name: "Normal",
  47844. height: math.unit(13, "feet"),
  47845. default: true
  47846. },
  47847. ]
  47848. ))
  47849. characterMakers.push(() => makeCharacter(
  47850. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47851. {
  47852. front: {
  47853. height: math.unit(10.3, "feet"),
  47854. weight: math.unit(150, "lb"),
  47855. name: "Front",
  47856. image: {
  47857. source: "./media/characters/blaze/front.svg",
  47858. extra: 1378/1286,
  47859. bottom: 172/1550
  47860. }
  47861. },
  47862. },
  47863. [
  47864. {
  47865. name: "Normal",
  47866. height: math.unit(10.3, "feet"),
  47867. default: true
  47868. },
  47869. ]
  47870. ))
  47871. characterMakers.push(() => makeCharacter(
  47872. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47873. {
  47874. side: {
  47875. height: math.unit(2, "meters"),
  47876. weight: math.unit(400, "kg"),
  47877. name: "Side",
  47878. image: {
  47879. source: "./media/characters/anu/side.svg",
  47880. extra: 506/394,
  47881. bottom: 18/524
  47882. }
  47883. },
  47884. },
  47885. [
  47886. {
  47887. name: "Humanoid",
  47888. height: math.unit(2, "meters")
  47889. },
  47890. {
  47891. name: "Normal",
  47892. height: math.unit(5, "meters"),
  47893. default: true
  47894. },
  47895. ]
  47896. ))
  47897. characterMakers.push(() => makeCharacter(
  47898. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47899. {
  47900. front: {
  47901. height: math.unit(5 + 5/12, "feet"),
  47902. weight: math.unit(170, "lb"),
  47903. name: "Front",
  47904. image: {
  47905. source: "./media/characters/synx-the-lynx/front.svg",
  47906. extra: 1893/1745,
  47907. bottom: 17/1910
  47908. }
  47909. },
  47910. side: {
  47911. height: math.unit(5 + 5/12, "feet"),
  47912. weight: math.unit(170, "lb"),
  47913. name: "Side",
  47914. image: {
  47915. source: "./media/characters/synx-the-lynx/side.svg",
  47916. extra: 1884/1740,
  47917. bottom: 39/1923
  47918. }
  47919. },
  47920. back: {
  47921. height: math.unit(5 + 5/12, "feet"),
  47922. weight: math.unit(170, "lb"),
  47923. name: "Back",
  47924. image: {
  47925. source: "./media/characters/synx-the-lynx/back.svg",
  47926. extra: 1903/1755,
  47927. bottom: 14/1917
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(5 + 5/12, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47941. {
  47942. back: {
  47943. height: math.unit(15, "feet"),
  47944. name: "Back",
  47945. image: {
  47946. source: "./media/characters/nadezda-fex/back.svg",
  47947. extra: 1695/1481,
  47948. bottom: 25/1720
  47949. }
  47950. },
  47951. },
  47952. [
  47953. {
  47954. name: "Normal",
  47955. height: math.unit(15, "feet"),
  47956. default: true
  47957. },
  47958. {
  47959. name: "Macro",
  47960. height: math.unit(2.5, "miles")
  47961. },
  47962. {
  47963. name: "Goddess",
  47964. height: math.unit(2, "multiverses")
  47965. },
  47966. ]
  47967. ))
  47968. characterMakers.push(() => makeCharacter(
  47969. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47970. {
  47971. front: {
  47972. height: math.unit(216, "cm"),
  47973. name: "Front",
  47974. image: {
  47975. source: "./media/characters/lev/front.svg",
  47976. extra: 1728/1670,
  47977. bottom: 82/1810
  47978. }
  47979. },
  47980. back: {
  47981. height: math.unit(216, "cm"),
  47982. name: "Back",
  47983. image: {
  47984. source: "./media/characters/lev/back.svg",
  47985. extra: 1738/1675,
  47986. bottom: 24/1762
  47987. }
  47988. },
  47989. dressed: {
  47990. height: math.unit(216, "cm"),
  47991. name: "Dressed",
  47992. image: {
  47993. source: "./media/characters/lev/dressed.svg",
  47994. extra: 1397/1351,
  47995. bottom: 73/1470
  47996. }
  47997. },
  47998. head: {
  47999. height: math.unit(0.51, "meter"),
  48000. name: "Head",
  48001. image: {
  48002. source: "./media/characters/lev/head.svg"
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(216, "cm"),
  48010. default: true
  48011. },
  48012. {
  48013. name: "Relatively Macro",
  48014. height: math.unit(80, "meters")
  48015. },
  48016. {
  48017. name: "Megamacro",
  48018. height: math.unit(21600, "meters")
  48019. },
  48020. {
  48021. name: "Megamacro+",
  48022. height: math.unit(64800, "meters")
  48023. },
  48024. ]
  48025. ))
  48026. characterMakers.push(() => makeCharacter(
  48027. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48028. {
  48029. front: {
  48030. height: math.unit(2, "meters"),
  48031. weight: math.unit(80, "kg"),
  48032. name: "Front",
  48033. image: {
  48034. source: "./media/characters/moka/front.svg",
  48035. extra: 1337/1255,
  48036. bottom: 58/1395
  48037. }
  48038. },
  48039. },
  48040. [
  48041. {
  48042. name: "Micro",
  48043. height: math.unit(15, "cm")
  48044. },
  48045. {
  48046. name: "Normal",
  48047. height: math.unit(2, "meters"),
  48048. default: true
  48049. },
  48050. {
  48051. name: "Macro",
  48052. height: math.unit(20, "meters"),
  48053. },
  48054. ]
  48055. ))
  48056. characterMakers.push(() => makeCharacter(
  48057. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48058. {
  48059. front: {
  48060. height: math.unit(9, "feet"),
  48061. weight: math.unit(240, "lb"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/kuzco/front.svg",
  48065. extra: 1593/1487,
  48066. bottom: 32/1625
  48067. }
  48068. },
  48069. side: {
  48070. height: math.unit(9, "feet"),
  48071. weight: math.unit(240, "lb"),
  48072. name: "Side",
  48073. image: {
  48074. source: "./media/characters/kuzco/side.svg",
  48075. extra: 1575/1485,
  48076. bottom: 30/1605
  48077. }
  48078. },
  48079. back: {
  48080. height: math.unit(9, "feet"),
  48081. weight: math.unit(240, "lb"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/kuzco/back.svg",
  48085. extra: 1603/1514,
  48086. bottom: 14/1617
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(9, "feet"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48100. {
  48101. side: {
  48102. height: math.unit(2, "meters"),
  48103. weight: math.unit(300, "kg"),
  48104. name: "Side",
  48105. image: {
  48106. source: "./media/characters/ceruleus/side.svg",
  48107. extra: 1068/974,
  48108. bottom: 126/1194
  48109. }
  48110. },
  48111. maw: {
  48112. height: math.unit(0.8125, "meter"),
  48113. name: "Maw",
  48114. image: {
  48115. source: "./media/characters/ceruleus/maw.svg"
  48116. }
  48117. },
  48118. },
  48119. [
  48120. {
  48121. name: "Normal",
  48122. height: math.unit(16, "meters"),
  48123. default: true
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48129. {
  48130. front: {
  48131. height: math.unit(9, "feet"),
  48132. weight: math.unit(500, "kg"),
  48133. name: "Front",
  48134. image: {
  48135. source: "./media/characters/acouya/front.svg",
  48136. extra: 1660/1473,
  48137. bottom: 28/1688
  48138. }
  48139. },
  48140. },
  48141. [
  48142. {
  48143. name: "Normal",
  48144. height: math.unit(9, "feet"),
  48145. default: true
  48146. },
  48147. ]
  48148. ))
  48149. characterMakers.push(() => makeCharacter(
  48150. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48151. {
  48152. front: {
  48153. height: math.unit(5 + 6/12, "feet"),
  48154. weight: math.unit(195, "lb"),
  48155. name: "Front",
  48156. image: {
  48157. source: "./media/characters/vant/front.svg",
  48158. extra: 1396/1320,
  48159. bottom: 20/1416
  48160. }
  48161. },
  48162. back: {
  48163. height: math.unit(5 + 6/12, "feet"),
  48164. weight: math.unit(195, "lb"),
  48165. name: "Back",
  48166. image: {
  48167. source: "./media/characters/vant/back.svg",
  48168. extra: 1396/1320,
  48169. bottom: 20/1416
  48170. }
  48171. },
  48172. maw: {
  48173. height: math.unit(0.75, "feet"),
  48174. name: "Maw",
  48175. image: {
  48176. source: "./media/characters/vant/maw.svg"
  48177. }
  48178. },
  48179. paw: {
  48180. height: math.unit(1.07, "feet"),
  48181. name: "Paw",
  48182. image: {
  48183. source: "./media/characters/vant/paw.svg"
  48184. }
  48185. },
  48186. },
  48187. [
  48188. {
  48189. name: "Micro",
  48190. height: math.unit(0.25, "inches")
  48191. },
  48192. {
  48193. name: "Normal",
  48194. height: math.unit(5 + 6/12, "feet"),
  48195. default: true
  48196. },
  48197. {
  48198. name: "Macro",
  48199. height: math.unit(75, "feet")
  48200. },
  48201. ]
  48202. ))
  48203. characterMakers.push(() => makeCharacter(
  48204. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48205. {
  48206. front: {
  48207. height: math.unit(30, "meters"),
  48208. weight: math.unit(363, "tons"),
  48209. name: "Front",
  48210. image: {
  48211. source: "./media/characters/ahra/front.svg",
  48212. extra: 1914/1814,
  48213. bottom: 46/1960
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Macro",
  48220. height: math.unit(30, "meters"),
  48221. default: true
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48227. {
  48228. undressed: {
  48229. height: math.unit(2, "m"),
  48230. weight: math.unit(250, "kg"),
  48231. name: "Undressed",
  48232. image: {
  48233. source: "./media/characters/coriander/undressed.svg",
  48234. extra: 1757/1606,
  48235. bottom: 107/1864
  48236. }
  48237. },
  48238. dressed: {
  48239. height: math.unit(2, "m"),
  48240. weight: math.unit(250, "kg"),
  48241. name: "Dressed",
  48242. image: {
  48243. source: "./media/characters/coriander/dressed.svg",
  48244. extra: 1757/1606,
  48245. bottom: 107/1864
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(4, "meters"),
  48253. default: true
  48254. },
  48255. {
  48256. name: "XL",
  48257. height: math.unit(6, "meters")
  48258. },
  48259. {
  48260. name: "XXL",
  48261. height: math.unit(8, "meters")
  48262. },
  48263. ]
  48264. ))
  48265. characterMakers.push(() => makeCharacter(
  48266. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48267. {
  48268. front: {
  48269. height: math.unit(6, "feet"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/syrinx/front.svg",
  48273. extra: 1557/1259,
  48274. bottom: 171/1728
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(6 + 3/12, "feet"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(11 + 6/12, "feet"),
  48291. weight: math.unit(1.5, "tons"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/bor/front.svg",
  48295. extra: 1189/1109,
  48296. bottom: 170/1359
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(11 + 6/12, "feet"),
  48304. default: true
  48305. },
  48306. {
  48307. name: "Macro",
  48308. height: math.unit(32 + 9/12, "feet")
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48314. {
  48315. anthro: {
  48316. height: math.unit(9, "feet"),
  48317. weight: math.unit(2076, "lb"),
  48318. name: "Anthro",
  48319. image: {
  48320. source: "./media/characters/abacus/anthro.svg",
  48321. extra: 1540/1494,
  48322. bottom: 233/1773
  48323. }
  48324. },
  48325. pigeon: {
  48326. height: math.unit(1, "feet"),
  48327. name: "Pigeon",
  48328. image: {
  48329. source: "./media/characters/abacus/pigeon.svg",
  48330. extra: 528/525,
  48331. bottom: 46/574
  48332. }
  48333. },
  48334. },
  48335. [
  48336. {
  48337. name: "Normal",
  48338. height: math.unit(9, "feet"),
  48339. default: true
  48340. },
  48341. ]
  48342. ))
  48343. characterMakers.push(() => makeCharacter(
  48344. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48345. {
  48346. side: {
  48347. height: math.unit(6, "feet"),
  48348. name: "Side",
  48349. image: {
  48350. source: "./media/characters/delkhan/side.svg",
  48351. extra: 1884/1786,
  48352. bottom: 308/2192
  48353. }
  48354. },
  48355. head: {
  48356. height: math.unit(3.38, "feet"),
  48357. name: "Head",
  48358. image: {
  48359. source: "./media/characters/delkhan/head.svg"
  48360. }
  48361. },
  48362. },
  48363. [
  48364. {
  48365. name: "Normal",
  48366. height: math.unit(72, "feet"),
  48367. default: true
  48368. },
  48369. {
  48370. name: "Giant",
  48371. height: math.unit(172, "feet")
  48372. },
  48373. ]
  48374. ))
  48375. characterMakers.push(() => makeCharacter(
  48376. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48377. {
  48378. standing: {
  48379. height: math.unit(6, "feet"),
  48380. name: "Standing",
  48381. image: {
  48382. source: "./media/characters/euchidat/standing.svg",
  48383. extra: 1612/1553,
  48384. bottom: 116/1728
  48385. }
  48386. },
  48387. leaning: {
  48388. height: math.unit(6, "feet"),
  48389. name: "Leaning",
  48390. image: {
  48391. source: "./media/characters/euchidat/leaning.svg",
  48392. extra: 1719/1674,
  48393. bottom: 27/1746
  48394. }
  48395. },
  48396. },
  48397. [
  48398. {
  48399. name: "Normal",
  48400. height: math.unit(175, "feet"),
  48401. default: true
  48402. },
  48403. {
  48404. name: "Megamacro",
  48405. height: math.unit(190, "miles")
  48406. },
  48407. {
  48408. name: "Gigamacro",
  48409. height: math.unit(190000, "miles")
  48410. },
  48411. ]
  48412. ))
  48413. characterMakers.push(() => makeCharacter(
  48414. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48415. {
  48416. front: {
  48417. height: math.unit(6, "feet"),
  48418. weight: math.unit(150, "lb"),
  48419. name: "Front",
  48420. image: {
  48421. source: "./media/characters/rebecca-stack/front.svg",
  48422. extra: 1256/1201,
  48423. bottom: 18/1274
  48424. }
  48425. },
  48426. },
  48427. [
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(5 + 8/12, "feet"),
  48431. default: true
  48432. },
  48433. {
  48434. name: "Demolitionist",
  48435. height: math.unit(200, "feet")
  48436. },
  48437. {
  48438. name: "Out of Control",
  48439. height: math.unit(2, "miles")
  48440. },
  48441. {
  48442. name: "Giga",
  48443. height: math.unit(7200, "miles")
  48444. },
  48445. ]
  48446. ))
  48447. characterMakers.push(() => makeCharacter(
  48448. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48449. {
  48450. front: {
  48451. height: math.unit(6, "feet"),
  48452. weight: math.unit(150, "lb"),
  48453. name: "Front",
  48454. image: {
  48455. source: "./media/characters/jenny-cartwright/front.svg",
  48456. extra: 1384/1376,
  48457. bottom: 58/1442
  48458. }
  48459. },
  48460. },
  48461. [
  48462. {
  48463. name: "Normal",
  48464. height: math.unit(6 + 7/12, "feet"),
  48465. default: true
  48466. },
  48467. {
  48468. name: "Librarian",
  48469. height: math.unit(55, "feet")
  48470. },
  48471. {
  48472. name: "Sightseer",
  48473. height: math.unit(50, "miles")
  48474. },
  48475. {
  48476. name: "Giga",
  48477. height: math.unit(30000, "miles")
  48478. },
  48479. ]
  48480. ))
  48481. characterMakers.push(() => makeCharacter(
  48482. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48483. {
  48484. nude: {
  48485. height: math.unit(8, "feet"),
  48486. weight: math.unit(225, "lb"),
  48487. name: "Nude",
  48488. image: {
  48489. source: "./media/characters/marvy/nude.svg",
  48490. extra: 1900/1683,
  48491. bottom: 89/1989
  48492. }
  48493. },
  48494. dressed: {
  48495. height: math.unit(8, "feet"),
  48496. weight: math.unit(225, "lb"),
  48497. name: "Dressed",
  48498. image: {
  48499. source: "./media/characters/marvy/dressed.svg",
  48500. extra: 1900/1683,
  48501. bottom: 89/1989
  48502. }
  48503. },
  48504. head: {
  48505. height: math.unit(2.85, "feet"),
  48506. name: "Head",
  48507. image: {
  48508. source: "./media/characters/marvy/head.svg"
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(8, "feet"),
  48516. default: true
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48522. {
  48523. front: {
  48524. height: math.unit(8, "feet"),
  48525. weight: math.unit(250, "lb"),
  48526. name: "Front",
  48527. image: {
  48528. source: "./media/characters/leah/front.svg",
  48529. extra: 1257/1149,
  48530. bottom: 109/1366
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(8, "feet"),
  48538. default: true
  48539. },
  48540. {
  48541. name: "Minimacro",
  48542. height: math.unit(40, "feet")
  48543. },
  48544. {
  48545. name: "Macro",
  48546. height: math.unit(124, "feet")
  48547. },
  48548. {
  48549. name: "Megamacro",
  48550. height: math.unit(850, "feet")
  48551. },
  48552. ]
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48556. {
  48557. side: {
  48558. height: math.unit(13 + 6/12, "feet"),
  48559. weight: math.unit(3200, "lb"),
  48560. name: "Side",
  48561. image: {
  48562. source: "./media/characters/alvir/side.svg",
  48563. extra: 896/589,
  48564. bottom: 26/922
  48565. }
  48566. },
  48567. },
  48568. [
  48569. {
  48570. name: "Normal",
  48571. height: math.unit(13 + 6/12, "feet"),
  48572. default: true
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48578. {
  48579. front: {
  48580. height: math.unit(5 + 4/12, "feet"),
  48581. weight: math.unit(236, "lb"),
  48582. name: "Front",
  48583. image: {
  48584. source: "./media/characters/zaina-khalil/front.svg",
  48585. extra: 1533/1485,
  48586. bottom: 94/1627
  48587. }
  48588. },
  48589. side: {
  48590. height: math.unit(5 + 4/12, "feet"),
  48591. weight: math.unit(236, "lb"),
  48592. name: "Side",
  48593. image: {
  48594. source: "./media/characters/zaina-khalil/side.svg",
  48595. extra: 1537/1498,
  48596. bottom: 66/1603
  48597. }
  48598. },
  48599. back: {
  48600. height: math.unit(5 + 4/12, "feet"),
  48601. weight: math.unit(236, "lb"),
  48602. name: "Back",
  48603. image: {
  48604. source: "./media/characters/zaina-khalil/back.svg",
  48605. extra: 1546/1494,
  48606. bottom: 89/1635
  48607. }
  48608. },
  48609. },
  48610. [
  48611. {
  48612. name: "Normal",
  48613. height: math.unit(5 + 4/12, "feet"),
  48614. default: true
  48615. },
  48616. ]
  48617. ))
  48618. characterMakers.push(() => makeCharacter(
  48619. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48620. {
  48621. side: {
  48622. height: math.unit(12, "feet"),
  48623. weight: math.unit(4000, "lb"),
  48624. name: "Side",
  48625. image: {
  48626. source: "./media/characters/terry/side.svg",
  48627. extra: 1518/1439,
  48628. bottom: 149/1667
  48629. }
  48630. },
  48631. },
  48632. [
  48633. {
  48634. name: "Normal",
  48635. height: math.unit(12, "feet"),
  48636. default: true
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(12, "feet"),
  48645. weight: math.unit(1500, "lb"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/kahea/front.svg",
  48649. extra: 1722/1617,
  48650. bottom: 179/1901
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(12, "feet"),
  48658. default: true
  48659. },
  48660. ]
  48661. ))
  48662. characterMakers.push(() => makeCharacter(
  48663. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48664. {
  48665. demonFront: {
  48666. height: math.unit(36, "feet"),
  48667. name: "Front",
  48668. image: {
  48669. source: "./media/characters/alex-xuria/demon-front.svg",
  48670. extra: 1705/1673,
  48671. bottom: 198/1903
  48672. },
  48673. form: "demon",
  48674. default: true
  48675. },
  48676. demonBack: {
  48677. height: math.unit(36, "feet"),
  48678. name: "Back",
  48679. image: {
  48680. source: "./media/characters/alex-xuria/demon-back.svg",
  48681. extra: 1725/1693,
  48682. bottom: 70/1795
  48683. },
  48684. form: "demon"
  48685. },
  48686. demonHead: {
  48687. height: math.unit(2.14, "meters"),
  48688. name: "Head",
  48689. image: {
  48690. source: "./media/characters/alex-xuria/demon-head.svg"
  48691. },
  48692. form: "demon"
  48693. },
  48694. demonHand: {
  48695. height: math.unit(1.61, "meters"),
  48696. name: "Hand",
  48697. image: {
  48698. source: "./media/characters/alex-xuria/demon-hand.svg"
  48699. },
  48700. form: "demon"
  48701. },
  48702. demonPaw: {
  48703. height: math.unit(1.35, "meters"),
  48704. name: "Paw",
  48705. image: {
  48706. source: "./media/characters/alex-xuria/demon-paw.svg"
  48707. },
  48708. form: "demon"
  48709. },
  48710. demonFoot: {
  48711. height: math.unit(2.2, "meters"),
  48712. name: "Foot",
  48713. image: {
  48714. source: "./media/characters/alex-xuria/demon-foot.svg"
  48715. },
  48716. form: "demon"
  48717. },
  48718. demonCock: {
  48719. height: math.unit(1.74, "meters"),
  48720. name: "Cock",
  48721. image: {
  48722. source: "./media/characters/alex-xuria/demon-cock.svg"
  48723. },
  48724. form: "demon"
  48725. },
  48726. demonTailClosed: {
  48727. height: math.unit(1.47, "meters"),
  48728. name: "Tail (Closed)",
  48729. image: {
  48730. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48731. },
  48732. form: "demon"
  48733. },
  48734. demonTailOpen: {
  48735. height: math.unit(2.85, "meters"),
  48736. name: "Tail (Open)",
  48737. image: {
  48738. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48739. },
  48740. form: "demon"
  48741. },
  48742. incubusFront: {
  48743. height: math.unit(12, "feet"),
  48744. name: "Front",
  48745. image: {
  48746. source: "./media/characters/alex-xuria/incubus-front.svg",
  48747. extra: 1754/1677,
  48748. bottom: 125/1879
  48749. },
  48750. form: "incubus",
  48751. default: true
  48752. },
  48753. incubusBack: {
  48754. height: math.unit(12, "feet"),
  48755. name: "Back",
  48756. image: {
  48757. source: "./media/characters/alex-xuria/incubus-back.svg",
  48758. extra: 1702/1647,
  48759. bottom: 30/1732
  48760. },
  48761. form: "incubus"
  48762. },
  48763. incubusHead: {
  48764. height: math.unit(3.45, "feet"),
  48765. name: "Head",
  48766. image: {
  48767. source: "./media/characters/alex-xuria/incubus-head.svg"
  48768. },
  48769. form: "incubus"
  48770. },
  48771. rabbitFront: {
  48772. height: math.unit(6, "feet"),
  48773. name: "Front",
  48774. image: {
  48775. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48776. extra: 1369/1349,
  48777. bottom: 45/1414
  48778. },
  48779. form: "rabbit",
  48780. default: true
  48781. },
  48782. rabbitSide: {
  48783. height: math.unit(6, "feet"),
  48784. name: "Side",
  48785. image: {
  48786. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48787. extra: 1370/1356,
  48788. bottom: 37/1407
  48789. },
  48790. form: "rabbit"
  48791. },
  48792. rabbitBack: {
  48793. height: math.unit(6, "feet"),
  48794. name: "Back",
  48795. image: {
  48796. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48797. extra: 1375/1358,
  48798. bottom: 43/1418
  48799. },
  48800. form: "rabbit"
  48801. },
  48802. },
  48803. [
  48804. {
  48805. name: "Normal",
  48806. height: math.unit(6, "feet"),
  48807. default: true,
  48808. form: "rabbit"
  48809. },
  48810. {
  48811. name: "Incubus",
  48812. height: math.unit(12, "feet"),
  48813. default: true,
  48814. form: "incubus"
  48815. },
  48816. {
  48817. name: "Demon",
  48818. height: math.unit(36, "feet"),
  48819. default: true,
  48820. form: "demon"
  48821. }
  48822. ],
  48823. {
  48824. "demon": {
  48825. name: "Demon",
  48826. default: true
  48827. },
  48828. "incubus": {
  48829. name: "Incubus",
  48830. },
  48831. "rabbit": {
  48832. name: "Rabbit"
  48833. }
  48834. }
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48838. {
  48839. front: {
  48840. height: math.unit(7 + 5/12, "feet"),
  48841. weight: math.unit(510, "lb"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/syrup/front.svg",
  48845. extra: 932/916,
  48846. bottom: 26/958
  48847. }
  48848. },
  48849. },
  48850. [
  48851. {
  48852. name: "Normal",
  48853. height: math.unit(7 + 5/12, "feet"),
  48854. default: true
  48855. },
  48856. {
  48857. name: "Big",
  48858. height: math.unit(50, "feet")
  48859. },
  48860. {
  48861. name: "Macro",
  48862. height: math.unit(300, "feet")
  48863. },
  48864. {
  48865. name: "Megamacro",
  48866. height: math.unit(1, "mile")
  48867. },
  48868. ]
  48869. ))
  48870. characterMakers.push(() => makeCharacter(
  48871. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48872. {
  48873. front: {
  48874. height: math.unit(6 + 9/12, "feet"),
  48875. name: "Front",
  48876. image: {
  48877. source: "./media/characters/zeimne/front.svg",
  48878. extra: 1969/1806,
  48879. bottom: 53/2022
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Normal",
  48886. height: math.unit(6 + 9/12, "feet"),
  48887. default: true
  48888. },
  48889. {
  48890. name: "Giant",
  48891. height: math.unit(550, "feet")
  48892. },
  48893. {
  48894. name: "Mega",
  48895. height: math.unit(3, "miles")
  48896. },
  48897. {
  48898. name: "Giga",
  48899. height: math.unit(250, "miles")
  48900. },
  48901. {
  48902. name: "Tera",
  48903. height: math.unit(1, "AU")
  48904. },
  48905. ]
  48906. ))
  48907. characterMakers.push(() => makeCharacter(
  48908. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48909. {
  48910. front: {
  48911. height: math.unit(5 + 2/12, "feet"),
  48912. name: "Front",
  48913. image: {
  48914. source: "./media/characters/grar/front.svg",
  48915. extra: 1331/1119,
  48916. bottom: 60/1391
  48917. }
  48918. },
  48919. back: {
  48920. height: math.unit(5 + 2/12, "feet"),
  48921. name: "Back",
  48922. image: {
  48923. source: "./media/characters/grar/back.svg",
  48924. extra: 1385/1169,
  48925. bottom: 23/1408
  48926. }
  48927. },
  48928. },
  48929. [
  48930. {
  48931. name: "Normal",
  48932. height: math.unit(5 + 2/12, "feet"),
  48933. default: true
  48934. },
  48935. ]
  48936. ))
  48937. characterMakers.push(() => makeCharacter(
  48938. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48939. {
  48940. front: {
  48941. height: math.unit(13 + 7/12, "feet"),
  48942. weight: math.unit(2200, "lb"),
  48943. name: "Front",
  48944. image: {
  48945. source: "./media/characters/endraya/front.svg",
  48946. extra: 1289/1215,
  48947. bottom: 50/1339
  48948. }
  48949. },
  48950. nude: {
  48951. height: math.unit(13 + 7/12, "feet"),
  48952. weight: math.unit(2200, "lb"),
  48953. name: "Nude",
  48954. image: {
  48955. source: "./media/characters/endraya/nude.svg",
  48956. extra: 1247/1171,
  48957. bottom: 40/1287
  48958. }
  48959. },
  48960. head: {
  48961. height: math.unit(2.6, "feet"),
  48962. name: "Head",
  48963. image: {
  48964. source: "./media/characters/endraya/head.svg"
  48965. }
  48966. },
  48967. slit: {
  48968. height: math.unit(3.4, "feet"),
  48969. name: "Slit",
  48970. image: {
  48971. source: "./media/characters/endraya/slit.svg"
  48972. }
  48973. },
  48974. },
  48975. [
  48976. {
  48977. name: "Normal",
  48978. height: math.unit(13 + 7/12, "feet"),
  48979. default: true
  48980. },
  48981. {
  48982. name: "Macro",
  48983. height: math.unit(200, "feet")
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48989. {
  48990. front: {
  48991. height: math.unit(1.81, "meters"),
  48992. weight: math.unit(69, "kg"),
  48993. name: "Front",
  48994. image: {
  48995. source: "./media/characters/rodryana/front.svg",
  48996. extra: 2002/1921,
  48997. bottom: 53/2055
  48998. }
  48999. },
  49000. back: {
  49001. height: math.unit(1.81, "meters"),
  49002. weight: math.unit(69, "kg"),
  49003. name: "Back",
  49004. image: {
  49005. source: "./media/characters/rodryana/back.svg",
  49006. extra: 1993/1926,
  49007. bottom: 48/2041
  49008. }
  49009. },
  49010. maw: {
  49011. height: math.unit(0.19769417475, "meters"),
  49012. name: "Maw",
  49013. image: {
  49014. source: "./media/characters/rodryana/maw.svg"
  49015. }
  49016. },
  49017. slit: {
  49018. height: math.unit(0.31631067961, "meters"),
  49019. name: "Slit",
  49020. image: {
  49021. source: "./media/characters/rodryana/slit.svg"
  49022. }
  49023. },
  49024. },
  49025. [
  49026. {
  49027. name: "Normal",
  49028. height: math.unit(1.81, "meters")
  49029. },
  49030. {
  49031. name: "Mini Macro",
  49032. height: math.unit(181, "meters")
  49033. },
  49034. {
  49035. name: "Macro",
  49036. height: math.unit(452, "meters"),
  49037. default: true
  49038. },
  49039. {
  49040. name: "Mega Macro",
  49041. height: math.unit(1.375, "km")
  49042. },
  49043. {
  49044. name: "Giga Macro",
  49045. height: math.unit(13.575, "km")
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(6, "feet"),
  49054. weight: math.unit(1000, "lb"),
  49055. name: "Front",
  49056. image: {
  49057. source: "./media/characters/asaya/front.svg",
  49058. extra: 1460/1200,
  49059. bottom: 71/1531
  49060. }
  49061. },
  49062. },
  49063. [
  49064. {
  49065. name: "Normal",
  49066. height: math.unit(8, "km"),
  49067. default: true
  49068. },
  49069. ]
  49070. ))
  49071. characterMakers.push(() => makeCharacter(
  49072. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49073. {
  49074. front: {
  49075. height: math.unit(3.5, "meters"),
  49076. name: "Front",
  49077. image: {
  49078. source: "./media/characters/sarzu-and-israz/front.svg",
  49079. extra: 1570/1558,
  49080. bottom: 150/1720
  49081. },
  49082. },
  49083. back: {
  49084. height: math.unit(3.5, "meters"),
  49085. name: "Back",
  49086. image: {
  49087. source: "./media/characters/sarzu-and-israz/back.svg",
  49088. extra: 1523/1509,
  49089. bottom: 132/1655
  49090. },
  49091. },
  49092. frontFemale: {
  49093. height: math.unit(3.5, "meters"),
  49094. name: "Front (Female)",
  49095. image: {
  49096. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49097. extra: 1570/1558,
  49098. bottom: 150/1720
  49099. },
  49100. },
  49101. frontHerm: {
  49102. height: math.unit(3.5, "meters"),
  49103. name: "Front (Herm)",
  49104. image: {
  49105. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49106. extra: 1570/1558,
  49107. bottom: 150/1720
  49108. },
  49109. },
  49110. },
  49111. [
  49112. {
  49113. name: "Normal",
  49114. height: math.unit(3.5, "meters"),
  49115. default: true,
  49116. },
  49117. {
  49118. name: "Macro",
  49119. height: math.unit(65.5, "meters"),
  49120. },
  49121. ],
  49122. ))
  49123. characterMakers.push(() => makeCharacter(
  49124. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49125. {
  49126. front: {
  49127. height: math.unit(6, "feet"),
  49128. weight: math.unit(250, "lb"),
  49129. name: "Front",
  49130. image: {
  49131. source: "./media/characters/zenimma/front.svg",
  49132. extra: 1346/1320,
  49133. bottom: 58/1404
  49134. }
  49135. },
  49136. back: {
  49137. height: math.unit(6, "feet"),
  49138. weight: math.unit(250, "lb"),
  49139. name: "Back",
  49140. image: {
  49141. source: "./media/characters/zenimma/back.svg",
  49142. extra: 1324/1308,
  49143. bottom: 44/1368
  49144. }
  49145. },
  49146. dick: {
  49147. height: math.unit(1.44, "feet"),
  49148. name: "Dick",
  49149. image: {
  49150. source: "./media/characters/zenimma/dick.svg"
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Canon Height",
  49157. height: math.unit(66, "miles"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49164. {
  49165. nude: {
  49166. height: math.unit(6, "feet"),
  49167. weight: math.unit(150, "lb"),
  49168. name: "Nude",
  49169. image: {
  49170. source: "./media/characters/shavon/nude.svg",
  49171. extra: 1242/1096,
  49172. bottom: 98/1340
  49173. }
  49174. },
  49175. dressed: {
  49176. height: math.unit(6, "feet"),
  49177. weight: math.unit(150, "lb"),
  49178. name: "Dressed",
  49179. image: {
  49180. source: "./media/characters/shavon/dressed.svg",
  49181. extra: 1242/1096,
  49182. bottom: 98/1340
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Macro",
  49189. height: math.unit(255, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49196. {
  49197. front: {
  49198. height: math.unit(6, "feet"),
  49199. name: "Front",
  49200. image: {
  49201. source: "./media/characters/steph/front.svg",
  49202. extra: 1430/1330,
  49203. bottom: 54/1484
  49204. }
  49205. },
  49206. },
  49207. [
  49208. {
  49209. name: "Normal",
  49210. height: math.unit(6, "feet"),
  49211. default: true
  49212. },
  49213. ]
  49214. ))
  49215. characterMakers.push(() => makeCharacter(
  49216. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49217. {
  49218. front: {
  49219. height: math.unit(9, "feet"),
  49220. weight: math.unit(400, "lb"),
  49221. name: "Front",
  49222. image: {
  49223. source: "./media/characters/kil'aman/front.svg",
  49224. extra: 1210/1159,
  49225. bottom: 109/1319
  49226. }
  49227. },
  49228. head: {
  49229. height: math.unit(2.14, "feet"),
  49230. name: "Head",
  49231. image: {
  49232. source: "./media/characters/kil'aman/head.svg"
  49233. }
  49234. },
  49235. maw: {
  49236. height: math.unit(1.21, "feet"),
  49237. name: "Maw",
  49238. image: {
  49239. source: "./media/characters/kil'aman/maw.svg"
  49240. }
  49241. },
  49242. foot: {
  49243. height: math.unit(1.7, "feet"),
  49244. name: "Foot",
  49245. image: {
  49246. source: "./media/characters/kil'aman/foot.svg"
  49247. }
  49248. },
  49249. dick: {
  49250. height: math.unit(2.1, "feet"),
  49251. name: "Dick",
  49252. image: {
  49253. source: "./media/characters/kil'aman/dick.svg"
  49254. }
  49255. },
  49256. },
  49257. [
  49258. {
  49259. name: "Normal",
  49260. height: math.unit(9, "feet")
  49261. },
  49262. {
  49263. name: "Canon Height",
  49264. height: math.unit(10, "miles"),
  49265. default: true
  49266. },
  49267. {
  49268. name: "Maximum",
  49269. height: math.unit(6e9, "miles")
  49270. },
  49271. ]
  49272. ))
  49273. characterMakers.push(() => makeCharacter(
  49274. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49275. {
  49276. front: {
  49277. height: math.unit(90, "feet"),
  49278. weight: math.unit(675000, "lb"),
  49279. name: "Front",
  49280. image: {
  49281. source: "./media/characters/qadan/front.svg",
  49282. extra: 1012/1004,
  49283. bottom: 78/1090
  49284. }
  49285. },
  49286. back: {
  49287. height: math.unit(90, "feet"),
  49288. weight: math.unit(675000, "lb"),
  49289. name: "Back",
  49290. image: {
  49291. source: "./media/characters/qadan/back.svg",
  49292. extra: 1042/1031,
  49293. bottom: 55/1097
  49294. }
  49295. },
  49296. armored: {
  49297. height: math.unit(90, "feet"),
  49298. weight: math.unit(675000, "lb"),
  49299. name: "Armored",
  49300. image: {
  49301. source: "./media/characters/qadan/armored.svg",
  49302. extra: 1047/1037,
  49303. bottom: 48/1095
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Normal",
  49310. height: math.unit(90, "feet"),
  49311. default: true
  49312. },
  49313. ]
  49314. ))
  49315. characterMakers.push(() => makeCharacter(
  49316. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49317. {
  49318. front: {
  49319. height: math.unit(6, "feet"),
  49320. weight: math.unit(225, "lb"),
  49321. name: "Front",
  49322. image: {
  49323. source: "./media/characters/brooke/front.svg",
  49324. extra: 1050/1010,
  49325. bottom: 66/1116
  49326. }
  49327. },
  49328. back: {
  49329. height: math.unit(6, "feet"),
  49330. weight: math.unit(225, "lb"),
  49331. name: "Back",
  49332. image: {
  49333. source: "./media/characters/brooke/back.svg",
  49334. extra: 1053/1013,
  49335. bottom: 41/1094
  49336. }
  49337. },
  49338. dressed: {
  49339. height: math.unit(6, "feet"),
  49340. weight: math.unit(225, "lb"),
  49341. name: "Dressed",
  49342. image: {
  49343. source: "./media/characters/brooke/dressed.svg",
  49344. extra: 1050/1010,
  49345. bottom: 66/1116
  49346. }
  49347. },
  49348. },
  49349. [
  49350. {
  49351. name: "Canon Height",
  49352. height: math.unit(500, "miles"),
  49353. default: true
  49354. },
  49355. ]
  49356. ))
  49357. characterMakers.push(() => makeCharacter(
  49358. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49359. {
  49360. front: {
  49361. height: math.unit(6 + 2/12, "feet"),
  49362. weight: math.unit(210, "lb"),
  49363. name: "Front",
  49364. image: {
  49365. source: "./media/characters/wubs/front.svg",
  49366. extra: 1345/1325,
  49367. bottom: 70/1415
  49368. }
  49369. },
  49370. back: {
  49371. height: math.unit(6 + 2/12, "feet"),
  49372. weight: math.unit(210, "lb"),
  49373. name: "Back",
  49374. image: {
  49375. source: "./media/characters/wubs/back.svg",
  49376. extra: 1296/1275,
  49377. bottom: 58/1354
  49378. }
  49379. },
  49380. },
  49381. [
  49382. {
  49383. name: "Normal",
  49384. height: math.unit(6 + 2/12, "feet"),
  49385. default: true
  49386. },
  49387. {
  49388. name: "Macro",
  49389. height: math.unit(1000, "feet")
  49390. },
  49391. {
  49392. name: "Megamacro",
  49393. height: math.unit(1, "mile")
  49394. },
  49395. ]
  49396. ))
  49397. characterMakers.push(() => makeCharacter(
  49398. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49399. {
  49400. front: {
  49401. height: math.unit(4, "feet"),
  49402. weight: math.unit(120, "lb"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/blue/front.svg",
  49406. extra: 1636/1525,
  49407. bottom: 43/1679
  49408. }
  49409. },
  49410. back: {
  49411. height: math.unit(4, "feet"),
  49412. weight: math.unit(120, "lb"),
  49413. name: "Back",
  49414. image: {
  49415. source: "./media/characters/blue/back.svg",
  49416. extra: 1660/1560,
  49417. bottom: 57/1717
  49418. }
  49419. },
  49420. paws: {
  49421. height: math.unit(0.826, "feet"),
  49422. name: "Paws",
  49423. image: {
  49424. source: "./media/characters/blue/paws.svg"
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Micro",
  49431. height: math.unit(3, "inches")
  49432. },
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(4, "feet"),
  49436. default: true
  49437. },
  49438. {
  49439. name: "Femenine Form",
  49440. height: math.unit(14, "feet")
  49441. },
  49442. {
  49443. name: "Werebat Form",
  49444. height: math.unit(18, "feet")
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49450. {
  49451. female: {
  49452. height: math.unit(7 + 4/12, "feet"),
  49453. weight: math.unit(243, "lb"),
  49454. name: "Female",
  49455. image: {
  49456. source: "./media/characters/kaya/female.svg",
  49457. extra: 975/898,
  49458. bottom: 34/1009
  49459. }
  49460. },
  49461. herm: {
  49462. height: math.unit(7 + 4/12, "feet"),
  49463. weight: math.unit(243, "lb"),
  49464. name: "Herm",
  49465. image: {
  49466. source: "./media/characters/kaya/herm.svg",
  49467. extra: 975/898,
  49468. bottom: 34/1009
  49469. }
  49470. },
  49471. },
  49472. [
  49473. {
  49474. name: "Normal",
  49475. height: math.unit(7 + 4/12, "feet"),
  49476. default: true
  49477. },
  49478. ]
  49479. ))
  49480. characterMakers.push(() => makeCharacter(
  49481. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49482. {
  49483. female: {
  49484. height: math.unit(9 + 4/12, "feet"),
  49485. weight: math.unit(398, "lb"),
  49486. name: "Female",
  49487. image: {
  49488. source: "./media/characters/kassandra/female.svg",
  49489. extra: 908/839,
  49490. bottom: 61/969
  49491. }
  49492. },
  49493. intersex: {
  49494. height: math.unit(9 + 4/12, "feet"),
  49495. weight: math.unit(398, "lb"),
  49496. name: "Intersex",
  49497. image: {
  49498. source: "./media/characters/kassandra/intersex.svg",
  49499. extra: 908/839,
  49500. bottom: 61/969
  49501. }
  49502. },
  49503. },
  49504. [
  49505. {
  49506. name: "Normal",
  49507. height: math.unit(9 + 4/12, "feet"),
  49508. default: true
  49509. },
  49510. ]
  49511. ))
  49512. characterMakers.push(() => makeCharacter(
  49513. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49514. {
  49515. front: {
  49516. height: math.unit(3, "meters"),
  49517. name: "Front",
  49518. image: {
  49519. source: "./media/characters/amy/front.svg",
  49520. extra: 1380/1343,
  49521. bottom: 70/1450
  49522. }
  49523. },
  49524. back: {
  49525. height: math.unit(3, "meters"),
  49526. name: "Back",
  49527. image: {
  49528. source: "./media/characters/amy/back.svg",
  49529. extra: 1380/1347,
  49530. bottom: 66/1446
  49531. }
  49532. },
  49533. },
  49534. [
  49535. {
  49536. name: "Normal",
  49537. height: math.unit(3, "meters"),
  49538. default: true
  49539. },
  49540. ]
  49541. ))
  49542. characterMakers.push(() => makeCharacter(
  49543. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49544. {
  49545. side: {
  49546. height: math.unit(47, "cm"),
  49547. weight: math.unit(10.8, "kg"),
  49548. name: "Side",
  49549. image: {
  49550. source: "./media/characters/alphaschakal/side.svg",
  49551. extra: 1058/568,
  49552. bottom: 62/1120
  49553. }
  49554. },
  49555. back: {
  49556. height: math.unit(78, "cm"),
  49557. weight: math.unit(10.8, "kg"),
  49558. name: "Back",
  49559. image: {
  49560. source: "./media/characters/alphaschakal/back.svg",
  49561. extra: 1102/942,
  49562. bottom: 185/1287
  49563. }
  49564. },
  49565. head: {
  49566. height: math.unit(28, "cm"),
  49567. name: "Head",
  49568. image: {
  49569. source: "./media/characters/alphaschakal/head.svg",
  49570. extra: 696/508,
  49571. bottom: 0/696
  49572. }
  49573. },
  49574. paw: {
  49575. height: math.unit(16, "cm"),
  49576. name: "Paw",
  49577. image: {
  49578. source: "./media/characters/alphaschakal/paw.svg"
  49579. }
  49580. },
  49581. },
  49582. [
  49583. {
  49584. name: "Normal",
  49585. height: math.unit(47, "cm"),
  49586. default: true
  49587. },
  49588. {
  49589. name: "Macro",
  49590. height: math.unit(340, "cm")
  49591. },
  49592. ]
  49593. ))
  49594. characterMakers.push(() => makeCharacter(
  49595. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49596. {
  49597. front: {
  49598. height: math.unit(36, "earths"),
  49599. name: "Front",
  49600. image: {
  49601. source: "./media/characters/ecobyss/front.svg",
  49602. extra: 1282/1215,
  49603. bottom: 11/1293
  49604. }
  49605. },
  49606. back: {
  49607. height: math.unit(36, "earths"),
  49608. name: "Back",
  49609. image: {
  49610. source: "./media/characters/ecobyss/back.svg",
  49611. extra: 1291/1222,
  49612. bottom: 8/1299
  49613. }
  49614. },
  49615. },
  49616. [
  49617. {
  49618. name: "Normal",
  49619. height: math.unit(36, "earths"),
  49620. default: true
  49621. },
  49622. ]
  49623. ))
  49624. characterMakers.push(() => makeCharacter(
  49625. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49626. {
  49627. front: {
  49628. height: math.unit(12, "feet"),
  49629. name: "Front",
  49630. image: {
  49631. source: "./media/characters/vasuk/front.svg",
  49632. extra: 1326/1207,
  49633. bottom: 64/1390
  49634. }
  49635. },
  49636. },
  49637. [
  49638. {
  49639. name: "Normal",
  49640. height: math.unit(12, "feet"),
  49641. default: true
  49642. },
  49643. ]
  49644. ))
  49645. characterMakers.push(() => makeCharacter(
  49646. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49647. {
  49648. side: {
  49649. height: math.unit(100, "feet"),
  49650. name: "Side",
  49651. image: {
  49652. source: "./media/characters/linneaus/side.svg",
  49653. extra: 987/807,
  49654. bottom: 47/1034
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Macro",
  49661. height: math.unit(100, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49668. {
  49669. front: {
  49670. height: math.unit(8, "feet"),
  49671. weight: math.unit(1200, "lb"),
  49672. name: "Front",
  49673. image: {
  49674. source: "./media/characters/nyterious-daligdig/front.svg",
  49675. extra: 1284/1094,
  49676. bottom: 84/1368
  49677. }
  49678. },
  49679. back: {
  49680. height: math.unit(8, "feet"),
  49681. weight: math.unit(1200, "lb"),
  49682. name: "Back",
  49683. image: {
  49684. source: "./media/characters/nyterious-daligdig/back.svg",
  49685. extra: 1301/1121,
  49686. bottom: 129/1430
  49687. }
  49688. },
  49689. mouth: {
  49690. height: math.unit(1.464, "feet"),
  49691. name: "Mouth",
  49692. image: {
  49693. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49694. }
  49695. },
  49696. },
  49697. [
  49698. {
  49699. name: "Small",
  49700. height: math.unit(8, "feet"),
  49701. default: true
  49702. },
  49703. {
  49704. name: "Normal",
  49705. height: math.unit(15, "feet")
  49706. },
  49707. {
  49708. name: "Macro",
  49709. height: math.unit(90, "feet")
  49710. },
  49711. ]
  49712. ))
  49713. characterMakers.push(() => makeCharacter(
  49714. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49715. {
  49716. front: {
  49717. height: math.unit(7 + 4/12, "feet"),
  49718. weight: math.unit(252, "lb"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/bandel/front.svg",
  49722. extra: 1946/1775,
  49723. bottom: 26/1972
  49724. }
  49725. },
  49726. back: {
  49727. height: math.unit(7 + 4/12, "feet"),
  49728. weight: math.unit(252, "lb"),
  49729. name: "Back",
  49730. image: {
  49731. source: "./media/characters/bandel/back.svg",
  49732. extra: 1940/1770,
  49733. bottom: 25/1965
  49734. }
  49735. },
  49736. maw: {
  49737. height: math.unit(2.15, "feet"),
  49738. name: "Maw",
  49739. image: {
  49740. source: "./media/characters/bandel/maw.svg"
  49741. }
  49742. },
  49743. stomach: {
  49744. height: math.unit(1.95, "feet"),
  49745. name: "Stomach",
  49746. image: {
  49747. source: "./media/characters/bandel/stomach.svg"
  49748. }
  49749. },
  49750. },
  49751. [
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(7 + 4/12, "feet"),
  49755. default: true
  49756. },
  49757. ]
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(10 + 5/12, "feet"),
  49764. weight: math.unit(773.5, "kg"),
  49765. name: "Front",
  49766. image: {
  49767. source: "./media/characters/zed/front.svg",
  49768. extra: 987/941,
  49769. bottom: 52/1039
  49770. }
  49771. },
  49772. },
  49773. [
  49774. {
  49775. name: "Short",
  49776. height: math.unit(5 + 4/12, "feet")
  49777. },
  49778. {
  49779. name: "Average",
  49780. height: math.unit(10 + 5/12, "feet"),
  49781. default: true
  49782. },
  49783. {
  49784. name: "Mini-Macro",
  49785. height: math.unit(24 + 9/12, "feet")
  49786. },
  49787. {
  49788. name: "Macro",
  49789. height: math.unit(249, "feet")
  49790. },
  49791. {
  49792. name: "Mega-Macro",
  49793. height: math.unit(12490, "feet")
  49794. },
  49795. {
  49796. name: "Giga-Macro",
  49797. height: math.unit(24.9, "miles")
  49798. },
  49799. {
  49800. name: "Tera-Macro",
  49801. height: math.unit(24900, "miles")
  49802. },
  49803. {
  49804. name: "Cosmic Scale",
  49805. height: math.unit(38.9, "lightyears")
  49806. },
  49807. {
  49808. name: "Universal Scale",
  49809. height: math.unit(138e12, "lightyears")
  49810. },
  49811. ]
  49812. ))
  49813. characterMakers.push(() => makeCharacter(
  49814. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49815. {
  49816. front: {
  49817. height: math.unit(1561, "inches"),
  49818. name: "Front",
  49819. image: {
  49820. source: "./media/characters/ivan/front.svg",
  49821. extra: 1126/1071,
  49822. bottom: 26/1152
  49823. }
  49824. },
  49825. back: {
  49826. height: math.unit(1561, "inches"),
  49827. name: "Back",
  49828. image: {
  49829. source: "./media/characters/ivan/back.svg",
  49830. extra: 1134/1079,
  49831. bottom: 30/1164
  49832. }
  49833. },
  49834. },
  49835. [
  49836. {
  49837. name: "Normal",
  49838. height: math.unit(1561, "inches"),
  49839. default: true
  49840. },
  49841. ]
  49842. ))
  49843. characterMakers.push(() => makeCharacter(
  49844. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49845. {
  49846. front: {
  49847. height: math.unit(5 + 7/12, "feet"),
  49848. weight: math.unit(150, "lb"),
  49849. name: "Front",
  49850. image: {
  49851. source: "./media/characters/robin-arctic-hare/front.svg",
  49852. extra: 1148/974,
  49853. bottom: 20/1168
  49854. }
  49855. },
  49856. },
  49857. [
  49858. {
  49859. name: "Normal",
  49860. height: math.unit(5 + 7/12, "feet"),
  49861. default: true
  49862. },
  49863. ]
  49864. ))
  49865. characterMakers.push(() => makeCharacter(
  49866. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49867. {
  49868. side: {
  49869. height: math.unit(5, "feet"),
  49870. name: "Side",
  49871. image: {
  49872. source: "./media/characters/birch/side.svg",
  49873. extra: 985/796,
  49874. bottom: 111/1096
  49875. }
  49876. },
  49877. },
  49878. [
  49879. {
  49880. name: "Normal",
  49881. height: math.unit(5, "feet"),
  49882. default: true
  49883. },
  49884. ]
  49885. ))
  49886. characterMakers.push(() => makeCharacter(
  49887. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49888. {
  49889. front: {
  49890. height: math.unit(4, "feet"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/rasp/front.svg",
  49894. extra: 561/478,
  49895. bottom: 74/635
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(4, "feet"),
  49903. default: true
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49909. {
  49910. front: {
  49911. height: math.unit(4 + 6/12, "feet"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/agatha/front.svg",
  49915. extra: 947/933,
  49916. bottom: 42/989
  49917. }
  49918. },
  49919. back: {
  49920. height: math.unit(4 + 6/12, "feet"),
  49921. name: "Back",
  49922. image: {
  49923. source: "./media/characters/agatha/back.svg",
  49924. extra: 935/922,
  49925. bottom: 48/983
  49926. }
  49927. },
  49928. },
  49929. [
  49930. {
  49931. name: "Normal",
  49932. height: math.unit(4 + 6 /12, "feet"),
  49933. default: true
  49934. },
  49935. {
  49936. name: "Max Size",
  49937. height: math.unit(500, "feet")
  49938. },
  49939. ]
  49940. ))
  49941. characterMakers.push(() => makeCharacter(
  49942. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49943. {
  49944. side: {
  49945. height: math.unit(30, "feet"),
  49946. name: "Side",
  49947. image: {
  49948. source: "./media/characters/roggy/side.svg",
  49949. extra: 909/643,
  49950. bottom: 63/972
  49951. }
  49952. },
  49953. lounging: {
  49954. height: math.unit(20, "feet"),
  49955. name: "Lounging",
  49956. image: {
  49957. source: "./media/characters/roggy/lounging.svg",
  49958. extra: 643/479,
  49959. bottom: 145/788
  49960. }
  49961. },
  49962. handpaw: {
  49963. height: math.unit(13.1, "feet"),
  49964. name: "Handpaw",
  49965. image: {
  49966. source: "./media/characters/roggy/handpaw.svg"
  49967. }
  49968. },
  49969. footpaw: {
  49970. height: math.unit(15.8, "feet"),
  49971. name: "Footpaw",
  49972. image: {
  49973. source: "./media/characters/roggy/footpaw.svg"
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Menacing",
  49980. height: math.unit(30, "feet"),
  49981. default: true
  49982. },
  49983. ]
  49984. ))
  49985. characterMakers.push(() => makeCharacter(
  49986. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49987. {
  49988. front: {
  49989. height: math.unit(5 + 7/12, "feet"),
  49990. weight: math.unit(135, "lb"),
  49991. name: "Front",
  49992. image: {
  49993. source: "./media/characters/naomi/front.svg",
  49994. extra: 1209/1154,
  49995. bottom: 129/1338
  49996. }
  49997. },
  49998. back: {
  49999. height: math.unit(5 + 7/12, "feet"),
  50000. weight: math.unit(135, "lb"),
  50001. name: "Back",
  50002. image: {
  50003. source: "./media/characters/naomi/back.svg",
  50004. extra: 1252/1190,
  50005. bottom: 23/1275
  50006. }
  50007. },
  50008. },
  50009. [
  50010. {
  50011. name: "Normal",
  50012. height: math.unit(5 + 7 /12, "feet"),
  50013. default: true
  50014. },
  50015. ]
  50016. ))
  50017. characterMakers.push(() => makeCharacter(
  50018. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50019. {
  50020. side: {
  50021. height: math.unit(35, "meters"),
  50022. name: "Side",
  50023. image: {
  50024. source: "./media/characters/kimpi/side.svg",
  50025. extra: 419/382,
  50026. bottom: 63/482
  50027. }
  50028. },
  50029. hand: {
  50030. height: math.unit(8.96, "meters"),
  50031. name: "Hand",
  50032. image: {
  50033. source: "./media/characters/kimpi/hand.svg"
  50034. }
  50035. },
  50036. },
  50037. [
  50038. {
  50039. name: "Normal",
  50040. height: math.unit(35, "meters"),
  50041. default: true
  50042. },
  50043. ]
  50044. ))
  50045. characterMakers.push(() => makeCharacter(
  50046. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50047. {
  50048. front: {
  50049. height: math.unit(4 + 4/12, "feet"),
  50050. name: "Front",
  50051. image: {
  50052. source: "./media/characters/pepper-purrloin/front.svg",
  50053. extra: 1141/1024,
  50054. bottom: 21/1162
  50055. }
  50056. },
  50057. },
  50058. [
  50059. {
  50060. name: "Normal",
  50061. height: math.unit(4 + 4/12, "feet"),
  50062. default: true
  50063. },
  50064. ]
  50065. ))
  50066. characterMakers.push(() => makeCharacter(
  50067. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50068. {
  50069. front: {
  50070. height: math.unit(6 + 2/12, "feet"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/raphael/front.svg",
  50074. extra: 1101/962,
  50075. bottom: 59/1160
  50076. }
  50077. },
  50078. },
  50079. [
  50080. {
  50081. name: "Normal",
  50082. height: math.unit(6 + 2/12, "feet"),
  50083. default: true
  50084. },
  50085. ]
  50086. ))
  50087. characterMakers.push(() => makeCharacter(
  50088. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50089. {
  50090. front: {
  50091. height: math.unit(6, "feet"),
  50092. weight: math.unit(150, "lb"),
  50093. name: "Front",
  50094. image: {
  50095. source: "./media/characters/victor-williams/front.svg",
  50096. extra: 1894/1825,
  50097. bottom: 67/1961
  50098. }
  50099. },
  50100. },
  50101. [
  50102. {
  50103. name: "Normal",
  50104. height: math.unit(6, "feet"),
  50105. default: true
  50106. },
  50107. ]
  50108. ))
  50109. characterMakers.push(() => makeCharacter(
  50110. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50111. {
  50112. front: {
  50113. height: math.unit(5 + 8/12, "feet"),
  50114. weight: math.unit(150, "lb"),
  50115. name: "Front",
  50116. image: {
  50117. source: "./media/characters/rachel/front.svg",
  50118. extra: 1902/1787,
  50119. bottom: 46/1948
  50120. }
  50121. },
  50122. },
  50123. [
  50124. {
  50125. name: "Base Height",
  50126. height: math.unit(5 + 8/12, "feet"),
  50127. default: true
  50128. },
  50129. {
  50130. name: "Macro",
  50131. height: math.unit(200, "feet")
  50132. },
  50133. {
  50134. name: "Mega Macro",
  50135. height: math.unit(1, "mile")
  50136. },
  50137. {
  50138. name: "Giga Macro",
  50139. height: math.unit(1500, "miles")
  50140. },
  50141. {
  50142. name: "Tera Macro",
  50143. height: math.unit(8000, "miles")
  50144. },
  50145. {
  50146. name: "Tera Macro+",
  50147. height: math.unit(2e5, "miles")
  50148. },
  50149. ]
  50150. ))
  50151. characterMakers.push(() => makeCharacter(
  50152. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50153. {
  50154. front: {
  50155. height: math.unit(6.5, "feet"),
  50156. name: "Front",
  50157. image: {
  50158. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50159. extra: 860/819,
  50160. bottom: 307/1167
  50161. }
  50162. },
  50163. back: {
  50164. height: math.unit(6.5, "feet"),
  50165. name: "Back",
  50166. image: {
  50167. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50168. extra: 880/837,
  50169. bottom: 395/1275
  50170. }
  50171. },
  50172. sleeping: {
  50173. height: math.unit(2.79, "feet"),
  50174. name: "Sleeping",
  50175. image: {
  50176. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50177. extra: 465/383,
  50178. bottom: 263/728
  50179. }
  50180. },
  50181. maw: {
  50182. height: math.unit(2.52, "feet"),
  50183. name: "Maw",
  50184. image: {
  50185. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50186. }
  50187. },
  50188. },
  50189. [
  50190. {
  50191. name: "Normal",
  50192. height: math.unit(6.5, "feet"),
  50193. default: true
  50194. },
  50195. ]
  50196. ))
  50197. characterMakers.push(() => makeCharacter(
  50198. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50199. {
  50200. front: {
  50201. height: math.unit(5, "feet"),
  50202. name: "Front",
  50203. image: {
  50204. source: "./media/characters/nova-nerium/front.svg",
  50205. extra: 1548/1392,
  50206. bottom: 374/1922
  50207. }
  50208. },
  50209. back: {
  50210. height: math.unit(5, "feet"),
  50211. name: "Back",
  50212. image: {
  50213. source: "./media/characters/nova-nerium/back.svg",
  50214. extra: 1658/1468,
  50215. bottom: 257/1915
  50216. }
  50217. },
  50218. },
  50219. [
  50220. {
  50221. name: "Normal",
  50222. height: math.unit(5, "feet"),
  50223. default: true
  50224. },
  50225. ]
  50226. ))
  50227. characterMakers.push(() => makeCharacter(
  50228. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50229. {
  50230. front: {
  50231. height: math.unit(5 + 4/12, "feet"),
  50232. name: "Front",
  50233. image: {
  50234. source: "./media/characters/ashe-pyriph/front.svg",
  50235. extra: 1935/1747,
  50236. bottom: 60/1995
  50237. }
  50238. },
  50239. },
  50240. [
  50241. {
  50242. name: "Normal",
  50243. height: math.unit(5 + 4/12, "feet"),
  50244. default: true
  50245. },
  50246. ]
  50247. ))
  50248. characterMakers.push(() => makeCharacter(
  50249. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50250. {
  50251. front: {
  50252. height: math.unit(8.7, "feet"),
  50253. name: "Front",
  50254. image: {
  50255. source: "./media/characters/flicker-wisp/front.svg",
  50256. extra: 1835/1613,
  50257. bottom: 449/2284
  50258. }
  50259. },
  50260. side: {
  50261. height: math.unit(8.7, "feet"),
  50262. name: "Side",
  50263. image: {
  50264. source: "./media/characters/flicker-wisp/side.svg",
  50265. extra: 1841/1642,
  50266. bottom: 336/2177
  50267. },
  50268. default: true
  50269. },
  50270. maw: {
  50271. height: math.unit(3.35, "feet"),
  50272. name: "Maw",
  50273. image: {
  50274. source: "./media/characters/flicker-wisp/maw.svg",
  50275. extra: 2338/1506,
  50276. bottom: 0/2338
  50277. }
  50278. },
  50279. ovipositor: {
  50280. height: math.unit(4.95, "feet"),
  50281. name: "Ovipositor",
  50282. image: {
  50283. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50284. }
  50285. },
  50286. egg: {
  50287. height: math.unit(0.385, "feet"),
  50288. weight: math.unit(2, "lb"),
  50289. name: "Egg",
  50290. image: {
  50291. source: "./media/characters/flicker-wisp/egg.svg"
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Normal",
  50298. height: math.unit(8.7, "feet"),
  50299. default: true
  50300. },
  50301. ]
  50302. ))
  50303. characterMakers.push(() => makeCharacter(
  50304. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50305. {
  50306. side: {
  50307. height: math.unit(11, "feet"),
  50308. name: "Side",
  50309. image: {
  50310. source: "./media/characters/faefnul/side.svg",
  50311. extra: 1100/1007,
  50312. bottom: 0/1100
  50313. }
  50314. },
  50315. },
  50316. [
  50317. {
  50318. name: "Normal",
  50319. height: math.unit(11, "feet"),
  50320. default: true
  50321. },
  50322. ]
  50323. ))
  50324. characterMakers.push(() => makeCharacter(
  50325. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50326. {
  50327. front: {
  50328. height: math.unit(6 + 2/12, "feet"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/shady/front.svg",
  50332. extra: 502/461,
  50333. bottom: 9/511
  50334. }
  50335. },
  50336. kneeling: {
  50337. height: math.unit(4.6, "feet"),
  50338. name: "Kneeling",
  50339. image: {
  50340. source: "./media/characters/shady/kneeling.svg",
  50341. extra: 1328/1219,
  50342. bottom: 117/1445
  50343. }
  50344. },
  50345. maw: {
  50346. height: math.unit(2, "feet"),
  50347. name: "Maw",
  50348. image: {
  50349. source: "./media/characters/shady/maw.svg"
  50350. }
  50351. },
  50352. },
  50353. [
  50354. {
  50355. name: "Nano",
  50356. height: math.unit(1, "mm")
  50357. },
  50358. {
  50359. name: "Micro",
  50360. height: math.unit(12, "mm")
  50361. },
  50362. {
  50363. name: "Tiny",
  50364. height: math.unit(3, "inches")
  50365. },
  50366. {
  50367. name: "Normal",
  50368. height: math.unit(6 + 2/12, "feet"),
  50369. default: true
  50370. },
  50371. {
  50372. name: "Big",
  50373. height: math.unit(15, "feet")
  50374. },
  50375. {
  50376. name: "Macro",
  50377. height: math.unit(150, "feet")
  50378. },
  50379. {
  50380. name: "Titanic",
  50381. height: math.unit(500, "feet")
  50382. },
  50383. ]
  50384. ))
  50385. characterMakers.push(() => makeCharacter(
  50386. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50387. {
  50388. front: {
  50389. height: math.unit(12, "feet"),
  50390. name: "Front",
  50391. image: {
  50392. source: "./media/characters/fenrir/front.svg",
  50393. extra: 968/875,
  50394. bottom: 22/990
  50395. }
  50396. },
  50397. },
  50398. [
  50399. {
  50400. name: "Big",
  50401. height: math.unit(12, "feet"),
  50402. default: true
  50403. },
  50404. ]
  50405. ))
  50406. characterMakers.push(() => makeCharacter(
  50407. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50408. {
  50409. front: {
  50410. height: math.unit(5 + 4/12, "feet"),
  50411. name: "Front",
  50412. image: {
  50413. source: "./media/characters/makar/front.svg",
  50414. extra: 1181/1112,
  50415. bottom: 78/1259
  50416. }
  50417. },
  50418. },
  50419. [
  50420. {
  50421. name: "Normal",
  50422. height: math.unit(5 + 4/12, "feet"),
  50423. default: true
  50424. },
  50425. ]
  50426. ))
  50427. characterMakers.push(() => makeCharacter(
  50428. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50429. {
  50430. front: {
  50431. height: math.unit(5 + 7/12, "feet"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/callow/front.svg",
  50435. extra: 1482/1304,
  50436. bottom: 23/1505
  50437. }
  50438. },
  50439. back: {
  50440. height: math.unit(5 + 7/12, "feet"),
  50441. name: "Back",
  50442. image: {
  50443. source: "./media/characters/callow/back.svg",
  50444. extra: 1484/1296,
  50445. bottom: 25/1509
  50446. }
  50447. },
  50448. },
  50449. [
  50450. {
  50451. name: "Micro",
  50452. height: math.unit(3, "inches"),
  50453. default: true
  50454. },
  50455. {
  50456. name: "Normal",
  50457. height: math.unit(5 + 7/12, "feet")
  50458. },
  50459. ]
  50460. ))
  50461. characterMakers.push(() => makeCharacter(
  50462. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(6 + 2/12, "feet"),
  50466. name: "Front",
  50467. image: {
  50468. source: "./media/characters/natel/front.svg",
  50469. extra: 1833/1692,
  50470. bottom: 166/1999
  50471. }
  50472. },
  50473. },
  50474. [
  50475. {
  50476. name: "Normal",
  50477. height: math.unit(6 + 2/12, "feet"),
  50478. default: true
  50479. },
  50480. ]
  50481. ))
  50482. characterMakers.push(() => makeCharacter(
  50483. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50484. {
  50485. front: {
  50486. height: math.unit(1.75, "meters"),
  50487. name: "Front",
  50488. image: {
  50489. source: "./media/characters/misu/front.svg",
  50490. extra: 1690/1558,
  50491. bottom: 234/1924
  50492. }
  50493. },
  50494. back: {
  50495. height: math.unit(1.75, "meters"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/misu/back.svg",
  50499. extra: 1762/1618,
  50500. bottom: 146/1908
  50501. }
  50502. },
  50503. frontNude: {
  50504. height: math.unit(1.75, "meters"),
  50505. name: "Front (Nude)",
  50506. image: {
  50507. source: "./media/characters/misu/front-nude.svg",
  50508. extra: 1690/1558,
  50509. bottom: 234/1924
  50510. }
  50511. },
  50512. backNude: {
  50513. height: math.unit(1.75, "meters"),
  50514. name: "Back (Nude)",
  50515. image: {
  50516. source: "./media/characters/misu/back-nude.svg",
  50517. extra: 1762/1618,
  50518. bottom: 146/1908
  50519. }
  50520. },
  50521. frontErect: {
  50522. height: math.unit(1.75, "meters"),
  50523. name: "Front (Erect)",
  50524. image: {
  50525. source: "./media/characters/misu/front-erect.svg",
  50526. extra: 1690/1558,
  50527. bottom: 234/1924
  50528. }
  50529. },
  50530. maw: {
  50531. height: math.unit(0.47, "meters"),
  50532. name: "Maw",
  50533. image: {
  50534. source: "./media/characters/misu/maw.svg"
  50535. }
  50536. },
  50537. head: {
  50538. height: math.unit(0.35, "meters"),
  50539. name: "Head",
  50540. image: {
  50541. source: "./media/characters/misu/head.svg"
  50542. }
  50543. },
  50544. rear: {
  50545. height: math.unit(0.47, "meters"),
  50546. name: "Rear",
  50547. image: {
  50548. source: "./media/characters/misu/rear.svg"
  50549. }
  50550. },
  50551. },
  50552. [
  50553. {
  50554. name: "Normal",
  50555. height: math.unit(1.75, "meters")
  50556. },
  50557. {
  50558. name: "Not good for the people",
  50559. height: math.unit(42, "meters")
  50560. },
  50561. {
  50562. name: "Not good for the neighborhood",
  50563. height: math.unit(135, "meters")
  50564. },
  50565. {
  50566. name: "Bit bigger problem",
  50567. height: math.unit(380, "meters"),
  50568. default: true
  50569. },
  50570. {
  50571. name: "Not good for the city",
  50572. height: math.unit(1.5, "km")
  50573. },
  50574. {
  50575. name: "Not good for the county",
  50576. height: math.unit(5.5, "km")
  50577. },
  50578. {
  50579. name: "Not good for the state",
  50580. height: math.unit(25, "km")
  50581. },
  50582. {
  50583. name: "Not good for the country",
  50584. height: math.unit(125, "km")
  50585. },
  50586. {
  50587. name: "Not good for the continent",
  50588. height: math.unit(2100, "km")
  50589. },
  50590. {
  50591. name: "Not good for the planet",
  50592. height: math.unit(35000, "km")
  50593. },
  50594. {
  50595. name: "Just no",
  50596. height: math.unit(8.5e18, "km")
  50597. },
  50598. ]
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50602. {
  50603. front: {
  50604. height: math.unit(6.5, "feet"),
  50605. name: "Front",
  50606. image: {
  50607. source: "./media/characters/poppy/front.svg",
  50608. extra: 1878/1812,
  50609. bottom: 43/1921
  50610. }
  50611. },
  50612. feet: {
  50613. height: math.unit(1.06, "feet"),
  50614. name: "Feet",
  50615. image: {
  50616. source: "./media/characters/poppy/feet.svg",
  50617. extra: 1083/1083,
  50618. bottom: 87/1170
  50619. }
  50620. },
  50621. },
  50622. [
  50623. {
  50624. name: "Human",
  50625. height: math.unit(6.5, "feet")
  50626. },
  50627. {
  50628. name: "Default",
  50629. height: math.unit(300, "feet"),
  50630. default: true
  50631. },
  50632. {
  50633. name: "Huge",
  50634. height: math.unit(850, "feet")
  50635. },
  50636. {
  50637. name: "Mega",
  50638. height: math.unit(8000, "feet")
  50639. },
  50640. {
  50641. name: "Giga",
  50642. height: math.unit(300, "miles")
  50643. },
  50644. ]
  50645. ))
  50646. characterMakers.push(() => makeCharacter(
  50647. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50648. {
  50649. bipedal: {
  50650. height: math.unit(7, "feet"),
  50651. name: "Bipedal",
  50652. image: {
  50653. source: "./media/characters/zener/bipedal.svg",
  50654. extra: 874/805,
  50655. bottom: 109/983
  50656. }
  50657. },
  50658. quadrupedal: {
  50659. height: math.unit(4.64, "feet"),
  50660. name: "Quadrupedal",
  50661. image: {
  50662. source: "./media/characters/zener/quadrupedal.svg",
  50663. extra: 638/507,
  50664. bottom: 190/828
  50665. }
  50666. },
  50667. cock: {
  50668. height: math.unit(18, "inches"),
  50669. name: "Cock",
  50670. image: {
  50671. source: "./media/characters/zener/cock.svg"
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Normal",
  50678. height: math.unit(7, "feet"),
  50679. default: true
  50680. },
  50681. ]
  50682. ))
  50683. characterMakers.push(() => makeCharacter(
  50684. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50685. {
  50686. nude: {
  50687. height: math.unit(5 + 6/12, "feet"),
  50688. name: "Nude",
  50689. image: {
  50690. source: "./media/characters/charlie-dog/nude.svg",
  50691. extra: 768/734,
  50692. bottom: 26/794
  50693. }
  50694. },
  50695. dressed: {
  50696. height: math.unit(5 + 6/12, "feet"),
  50697. name: "Dressed",
  50698. image: {
  50699. source: "./media/characters/charlie-dog/dressed.svg",
  50700. extra: 768/734,
  50701. bottom: 26/794
  50702. }
  50703. },
  50704. },
  50705. [
  50706. {
  50707. name: "Normal",
  50708. height: math.unit(5 + 6/12, "feet"),
  50709. default: true
  50710. },
  50711. ]
  50712. ))
  50713. characterMakers.push(() => makeCharacter(
  50714. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50715. {
  50716. front: {
  50717. height: math.unit(6 + 4/12, "feet"),
  50718. name: "Front",
  50719. image: {
  50720. source: "./media/characters/ir'istrasz/front.svg",
  50721. extra: 1014/977,
  50722. bottom: 65/1079
  50723. }
  50724. },
  50725. back: {
  50726. height: math.unit(6 + 4/12, "feet"),
  50727. name: "Back",
  50728. image: {
  50729. source: "./media/characters/ir'istrasz/back.svg",
  50730. extra: 1024/992,
  50731. bottom: 34/1058
  50732. }
  50733. },
  50734. },
  50735. [
  50736. {
  50737. name: "Normal",
  50738. height: math.unit(6 + 4/12, "feet"),
  50739. default: true
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50745. {
  50746. front: {
  50747. height: math.unit(5 + 8/12, "feet"),
  50748. name: "Front",
  50749. image: {
  50750. source: "./media/characters/dee-ditto/front.svg",
  50751. extra: 1874/1785,
  50752. bottom: 68/1942
  50753. }
  50754. },
  50755. back: {
  50756. height: math.unit(5 + 8/12, "feet"),
  50757. name: "Back",
  50758. image: {
  50759. source: "./media/characters/dee-ditto/back.svg",
  50760. extra: 1870/1783,
  50761. bottom: 77/1947
  50762. }
  50763. },
  50764. },
  50765. [
  50766. {
  50767. name: "Normal",
  50768. height: math.unit(5 + 8/12, "feet"),
  50769. default: true
  50770. },
  50771. ]
  50772. ))
  50773. characterMakers.push(() => makeCharacter(
  50774. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50775. {
  50776. front: {
  50777. height: math.unit(7 + 6/12, "feet"),
  50778. name: "Front",
  50779. image: {
  50780. source: "./media/characters/fey/front.svg",
  50781. extra: 995/979,
  50782. bottom: 30/1025
  50783. }
  50784. },
  50785. back: {
  50786. height: math.unit(7 + 6/12, "feet"),
  50787. name: "Back",
  50788. image: {
  50789. source: "./media/characters/fey/back.svg",
  50790. extra: 1079/1008,
  50791. bottom: 5/1084
  50792. }
  50793. },
  50794. dressed: {
  50795. height: math.unit(7 + 6/12, "feet"),
  50796. name: "Dressed",
  50797. image: {
  50798. source: "./media/characters/fey/dressed.svg",
  50799. extra: 995/979,
  50800. bottom: 30/1025
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(7 + 6/12, "feet"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50814. {
  50815. standing: {
  50816. height: math.unit(17, "feet"),
  50817. name: "Standing",
  50818. image: {
  50819. source: "./media/characters/aster/standing.svg",
  50820. extra: 1798/1598,
  50821. bottom: 117/1915
  50822. }
  50823. },
  50824. },
  50825. [
  50826. {
  50827. name: "Normal",
  50828. height: math.unit(17, "feet"),
  50829. default: true
  50830. },
  50831. {
  50832. name: "Homewrecker",
  50833. height: math.unit(95, "feet")
  50834. },
  50835. {
  50836. name: "Planet Devourer",
  50837. height: math.unit(1008000, "miles")
  50838. },
  50839. ]
  50840. ))
  50841. characterMakers.push(() => makeCharacter(
  50842. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50843. {
  50844. front: {
  50845. height: math.unit(6 + 5/12, "feet"),
  50846. weight: math.unit(265, "lb"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/devon-childs/front.svg",
  50850. extra: 1795/1721,
  50851. bottom: 41/1836
  50852. }
  50853. },
  50854. side: {
  50855. height: math.unit(6 + 5/12, "feet"),
  50856. weight: math.unit(265, "lb"),
  50857. name: "Side",
  50858. image: {
  50859. source: "./media/characters/devon-childs/side.svg",
  50860. extra: 1812/1738,
  50861. bottom: 30/1842
  50862. }
  50863. },
  50864. back: {
  50865. height: math.unit(6 + 5/12, "feet"),
  50866. weight: math.unit(265, "lb"),
  50867. name: "Back",
  50868. image: {
  50869. source: "./media/characters/devon-childs/back.svg",
  50870. extra: 1808/1735,
  50871. bottom: 23/1831
  50872. }
  50873. },
  50874. hand: {
  50875. height: math.unit(1.464, "feet"),
  50876. name: "Hand",
  50877. image: {
  50878. source: "./media/characters/devon-childs/hand.svg"
  50879. }
  50880. },
  50881. foot: {
  50882. height: math.unit(1.6, "feet"),
  50883. name: "Foot",
  50884. image: {
  50885. source: "./media/characters/devon-childs/foot.svg"
  50886. }
  50887. },
  50888. },
  50889. [
  50890. {
  50891. name: "Micro",
  50892. height: math.unit(7, "cm")
  50893. },
  50894. {
  50895. name: "Normal",
  50896. height: math.unit(6 + 5/12, "feet"),
  50897. default: true
  50898. },
  50899. {
  50900. name: "Macro",
  50901. height: math.unit(154, "feet")
  50902. },
  50903. ]
  50904. ))
  50905. characterMakers.push(() => makeCharacter(
  50906. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50907. {
  50908. front: {
  50909. height: math.unit(6, "feet"),
  50910. weight: math.unit(180, "lb"),
  50911. name: "Front",
  50912. image: {
  50913. source: "./media/characters/lydemox-vir/front.svg",
  50914. extra: 1632/1435,
  50915. bottom: 58/1690
  50916. }
  50917. },
  50918. frontSFW: {
  50919. height: math.unit(6, "feet"),
  50920. weight: math.unit(180, "lb"),
  50921. name: "Front (SFW)",
  50922. image: {
  50923. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50924. extra: 1632/1435,
  50925. bottom: 58/1690
  50926. }
  50927. },
  50928. back: {
  50929. height: math.unit(6, "feet"),
  50930. weight: math.unit(180, "lb"),
  50931. name: "Back",
  50932. image: {
  50933. source: "./media/characters/lydemox-vir/back.svg",
  50934. extra: 1593/1408,
  50935. bottom: 31/1624
  50936. }
  50937. },
  50938. paw: {
  50939. height: math.unit(1.85, "feet"),
  50940. name: "Paw",
  50941. image: {
  50942. source: "./media/characters/lydemox-vir/paw.svg"
  50943. }
  50944. },
  50945. dick: {
  50946. height: math.unit(1.8, "feet"),
  50947. name: "Dick",
  50948. image: {
  50949. source: "./media/characters/lydemox-vir/dick.svg"
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Macro",
  50956. height: math.unit(100, "feet"),
  50957. default: true
  50958. },
  50959. {
  50960. name: "Teramacro",
  50961. height: math.unit(1, "earth")
  50962. },
  50963. {
  50964. name: "Planetary",
  50965. height: math.unit(20, "earths")
  50966. },
  50967. ]
  50968. ))
  50969. characterMakers.push(() => makeCharacter(
  50970. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50971. {
  50972. front: {
  50973. height: math.unit(15 + 8/12, "feet"),
  50974. weight: math.unit(1237, "kg"),
  50975. name: "Front",
  50976. image: {
  50977. source: "./media/characters/mia/front.svg",
  50978. extra: 1573/1446,
  50979. bottom: 58/1631
  50980. }
  50981. },
  50982. },
  50983. [
  50984. {
  50985. name: "Small",
  50986. height: math.unit(9 + 5/12, "feet")
  50987. },
  50988. {
  50989. name: "Normal",
  50990. height: math.unit(15 + 8/12, "feet"),
  50991. default: true
  50992. },
  50993. ]
  50994. ))
  50995. characterMakers.push(() => makeCharacter(
  50996. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50997. {
  50998. front: {
  50999. height: math.unit(10 + 6/12, "feet"),
  51000. weight: math.unit(1.3, "tons"),
  51001. name: "Front",
  51002. image: {
  51003. source: "./media/characters/mr-graves/front.svg",
  51004. extra: 1779/1695,
  51005. bottom: 198/1977
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(10 + 6 /12, "feet"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51019. {
  51020. dressedFront: {
  51021. height: math.unit(5 + 8/12, "feet"),
  51022. weight: math.unit(125, "lb"),
  51023. name: "Dressed (Front)",
  51024. image: {
  51025. source: "./media/characters/jess/dressed-front.svg",
  51026. extra: 1176/1152,
  51027. bottom: 42/1218
  51028. }
  51029. },
  51030. dressedSide: {
  51031. height: math.unit(5 + 8/12, "feet"),
  51032. weight: math.unit(125, "lb"),
  51033. name: "Dressed (Side)",
  51034. image: {
  51035. source: "./media/characters/jess/dressed-side.svg",
  51036. extra: 1204/1190,
  51037. bottom: 6/1210
  51038. }
  51039. },
  51040. nudeFront: {
  51041. height: math.unit(5 + 8/12, "feet"),
  51042. weight: math.unit(125, "lb"),
  51043. name: "Nude (Front)",
  51044. image: {
  51045. source: "./media/characters/jess/nude-front.svg",
  51046. extra: 1176/1152,
  51047. bottom: 42/1218
  51048. }
  51049. },
  51050. nudeSide: {
  51051. height: math.unit(5 + 8/12, "feet"),
  51052. weight: math.unit(125, "lb"),
  51053. name: "Nude (Side)",
  51054. image: {
  51055. source: "./media/characters/jess/nude-side.svg",
  51056. extra: 1204/1190,
  51057. bottom: 6/1210
  51058. }
  51059. },
  51060. organsFront: {
  51061. height: math.unit(2.83799342105, "feet"),
  51062. name: "Organs (Front)",
  51063. image: {
  51064. source: "./media/characters/jess/organs-front.svg"
  51065. }
  51066. },
  51067. organsSide: {
  51068. height: math.unit(2.64225290474, "feet"),
  51069. name: "Organs (Side)",
  51070. image: {
  51071. source: "./media/characters/jess/organs-side.svg"
  51072. }
  51073. },
  51074. digestiveTractFront: {
  51075. height: math.unit(2.8106580871, "feet"),
  51076. name: "Digestive Tract (Front)",
  51077. image: {
  51078. source: "./media/characters/jess/digestive-tract-front.svg"
  51079. }
  51080. },
  51081. digestiveTractSide: {
  51082. height: math.unit(2.54365045014, "feet"),
  51083. name: "Digestive Tract (Side)",
  51084. image: {
  51085. source: "./media/characters/jess/digestive-tract-side.svg"
  51086. }
  51087. },
  51088. respiratorySystemFront: {
  51089. height: math.unit(1.11196233456, "feet"),
  51090. name: "Respiratory System (Front)",
  51091. image: {
  51092. source: "./media/characters/jess/respiratory-system-front.svg"
  51093. }
  51094. },
  51095. respiratorySystemSide: {
  51096. height: math.unit(0.89327966297, "feet"),
  51097. name: "Respiratory System (Side)",
  51098. image: {
  51099. source: "./media/characters/jess/respiratory-system-side.svg"
  51100. }
  51101. },
  51102. urinaryTractFront: {
  51103. height: math.unit(1.16126356186, "feet"),
  51104. name: "Urinary Tract (Front)",
  51105. image: {
  51106. source: "./media/characters/jess/urinary-tract-front.svg"
  51107. }
  51108. },
  51109. urinaryTractSide: {
  51110. height: math.unit(1.20910039627, "feet"),
  51111. name: "Urinary Tract (Side)",
  51112. image: {
  51113. source: "./media/characters/jess/urinary-tract-side.svg"
  51114. }
  51115. },
  51116. reproductiveOrgansFront: {
  51117. height: math.unit(0.48422591566, "feet"),
  51118. name: "Reproductive Organs (Front)",
  51119. image: {
  51120. source: "./media/characters/jess/reproductive-organs-front.svg"
  51121. }
  51122. },
  51123. reproductiveOrgansSide: {
  51124. height: math.unit(0.61553314481, "feet"),
  51125. name: "Reproductive Organs (Side)",
  51126. image: {
  51127. source: "./media/characters/jess/reproductive-organs-side.svg"
  51128. }
  51129. },
  51130. breastsFront: {
  51131. height: math.unit(0.47690395121, "feet"),
  51132. name: "Breasts (Front)",
  51133. image: {
  51134. source: "./media/characters/jess/breasts-front.svg"
  51135. }
  51136. },
  51137. breastsSide: {
  51138. height: math.unit(0.30556998307, "feet"),
  51139. name: "Breasts (Side)",
  51140. image: {
  51141. source: "./media/characters/jess/breasts-side.svg"
  51142. }
  51143. },
  51144. heartFront: {
  51145. height: math.unit(0.53011022622, "feet"),
  51146. name: "Heart (Front)",
  51147. image: {
  51148. source: "./media/characters/jess/heart-front.svg"
  51149. }
  51150. },
  51151. heartSide: {
  51152. height: math.unit(0.51790695213, "feet"),
  51153. name: "Heart (Side)",
  51154. image: {
  51155. source: "./media/characters/jess/heart-side.svg"
  51156. }
  51157. },
  51158. earsAndNoseFront: {
  51159. height: math.unit(0.29385483995, "feet"),
  51160. name: "Ears and Nose (Front)",
  51161. image: {
  51162. source: "./media/characters/jess/ears-and-nose-front.svg"
  51163. }
  51164. },
  51165. earsAndNoseSide: {
  51166. height: math.unit(0.18109658741, "feet"),
  51167. name: "Ears and Nose (Side)",
  51168. image: {
  51169. source: "./media/characters/jess/ears-and-nose-side.svg"
  51170. }
  51171. },
  51172. },
  51173. [
  51174. {
  51175. name: "Normal",
  51176. height: math.unit(5 + 8/12, "feet"),
  51177. default: true
  51178. },
  51179. ]
  51180. ))
  51181. characterMakers.push(() => makeCharacter(
  51182. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51183. {
  51184. front: {
  51185. height: math.unit(6, "feet"),
  51186. weight: math.unit(6.64467e-7, "grams"),
  51187. name: "Front",
  51188. image: {
  51189. source: "./media/characters/wimpering/front.svg",
  51190. extra: 597/587,
  51191. bottom: 34/631
  51192. }
  51193. },
  51194. },
  51195. [
  51196. {
  51197. name: "Micro",
  51198. height: math.unit(0.4, "mm"),
  51199. default: true
  51200. },
  51201. ]
  51202. ))
  51203. characterMakers.push(() => makeCharacter(
  51204. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51205. {
  51206. front: {
  51207. height: math.unit(5 + 2/12, "feet"),
  51208. weight: math.unit(110, "lb"),
  51209. name: "Front",
  51210. image: {
  51211. source: "./media/characters/keltre/front.svg",
  51212. extra: 1099/1057,
  51213. bottom: 22/1121
  51214. }
  51215. },
  51216. back: {
  51217. height: math.unit(5 + 2/12, "feet"),
  51218. weight: math.unit(110, "lb"),
  51219. name: "Back",
  51220. image: {
  51221. source: "./media/characters/keltre/back.svg",
  51222. extra: 1095/1053,
  51223. bottom: 17/1112
  51224. }
  51225. },
  51226. dressed: {
  51227. height: math.unit(5 + 2/12, "feet"),
  51228. weight: math.unit(110, "lb"),
  51229. name: "Dressed",
  51230. image: {
  51231. source: "./media/characters/keltre/dressed.svg",
  51232. extra: 1099/1057,
  51233. bottom: 22/1121
  51234. }
  51235. },
  51236. winter: {
  51237. height: math.unit(5 + 2/12, "feet"),
  51238. weight: math.unit(110, "lb"),
  51239. name: "Winter",
  51240. image: {
  51241. source: "./media/characters/keltre/winter.svg",
  51242. extra: 1099/1057,
  51243. bottom: 22/1121
  51244. }
  51245. },
  51246. head: {
  51247. height: math.unit(1.61 * 0.86, "feet"),
  51248. name: "Head",
  51249. image: {
  51250. source: "./media/characters/keltre/head.svg",
  51251. extra: 534/421,
  51252. bottom: 0/534
  51253. }
  51254. },
  51255. hand: {
  51256. height: math.unit(1.3 * 0.86, "feet"),
  51257. name: "Hand",
  51258. image: {
  51259. source: "./media/characters/keltre/hand.svg"
  51260. }
  51261. },
  51262. foot: {
  51263. height: math.unit(1.8 * 0.86, "feet"),
  51264. name: "Foot",
  51265. image: {
  51266. source: "./media/characters/keltre/foot.svg"
  51267. }
  51268. },
  51269. },
  51270. [
  51271. {
  51272. name: "Fine",
  51273. height: math.unit(1, "inch")
  51274. },
  51275. {
  51276. name: "Dimnutive",
  51277. height: math.unit(4, "inches")
  51278. },
  51279. {
  51280. name: "Tiny",
  51281. height: math.unit(1, "foot")
  51282. },
  51283. {
  51284. name: "Small",
  51285. height: math.unit(3, "feet")
  51286. },
  51287. {
  51288. name: "Normal",
  51289. height: math.unit(5 + 2/12, "feet"),
  51290. default: true
  51291. },
  51292. ]
  51293. ))
  51294. characterMakers.push(() => makeCharacter(
  51295. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51296. {
  51297. front: {
  51298. height: math.unit(6 + 2/12, "feet"),
  51299. name: "Front",
  51300. image: {
  51301. source: "./media/characters/nox/front.svg",
  51302. extra: 1917/1830,
  51303. bottom: 74/1991
  51304. }
  51305. },
  51306. back: {
  51307. height: math.unit(6 + 2/12, "feet"),
  51308. name: "Back",
  51309. image: {
  51310. source: "./media/characters/nox/back.svg",
  51311. extra: 1896/1815,
  51312. bottom: 21/1917
  51313. }
  51314. },
  51315. head: {
  51316. height: math.unit(1.1, "feet"),
  51317. name: "Head",
  51318. image: {
  51319. source: "./media/characters/nox/head.svg",
  51320. extra: 874/704,
  51321. bottom: 0/874
  51322. }
  51323. },
  51324. tattoo: {
  51325. height: math.unit(0.729, "feet"),
  51326. name: "Tattoo",
  51327. image: {
  51328. source: "./media/characters/nox/tattoo.svg"
  51329. }
  51330. },
  51331. },
  51332. [
  51333. {
  51334. name: "Normal",
  51335. height: math.unit(6 + 2/12, "feet")
  51336. },
  51337. {
  51338. name: "Gigamacro",
  51339. height: math.unit(2, "earths"),
  51340. default: true
  51341. },
  51342. {
  51343. name: "Cosmic",
  51344. height: math.unit(867, "yottameters")
  51345. },
  51346. ]
  51347. ))
  51348. characterMakers.push(() => makeCharacter(
  51349. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51350. {
  51351. front: {
  51352. height: math.unit(6, "feet"),
  51353. weight: math.unit(150, "lb"),
  51354. name: "Front",
  51355. image: {
  51356. source: "./media/characters/caspian/front.svg",
  51357. extra: 1443/1359,
  51358. bottom: 0/1443
  51359. }
  51360. },
  51361. back: {
  51362. height: math.unit(6, "feet"),
  51363. weight: math.unit(150, "lb"),
  51364. name: "Back",
  51365. image: {
  51366. source: "./media/characters/caspian/back.svg",
  51367. extra: 1379/1309,
  51368. bottom: 0/1379
  51369. }
  51370. },
  51371. head: {
  51372. height: math.unit(0.9, "feet"),
  51373. name: "Head",
  51374. image: {
  51375. source: "./media/characters/caspian/head.svg",
  51376. extra: 692/492,
  51377. bottom: 0/692
  51378. }
  51379. },
  51380. headAlt: {
  51381. height: math.unit(0.95, "feet"),
  51382. name: "Head (Alt)",
  51383. image: {
  51384. source: "./media/characters/caspian/head-alt.svg",
  51385. extra: 668/508,
  51386. bottom: 0/668
  51387. }
  51388. },
  51389. hand: {
  51390. height: math.unit(0.8, "feet"),
  51391. name: "Hand",
  51392. image: {
  51393. source: "./media/characters/caspian/hand.svg"
  51394. }
  51395. },
  51396. paw: {
  51397. height: math.unit(0.95, "feet"),
  51398. name: "Paw",
  51399. image: {
  51400. source: "./media/characters/caspian/paw.svg"
  51401. }
  51402. },
  51403. },
  51404. [
  51405. {
  51406. name: "Normal",
  51407. height: math.unit(162, "feet"),
  51408. default: true
  51409. },
  51410. ]
  51411. ))
  51412. characterMakers.push(() => makeCharacter(
  51413. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51414. {
  51415. front: {
  51416. height: math.unit(6, "feet"),
  51417. name: "Front",
  51418. image: {
  51419. source: "./media/characters/myra-aisling/front.svg",
  51420. extra: 1268/1166,
  51421. bottom: 73/1341
  51422. }
  51423. },
  51424. back: {
  51425. height: math.unit(6, "feet"),
  51426. name: "Back",
  51427. image: {
  51428. source: "./media/characters/myra-aisling/back.svg",
  51429. extra: 1249/1149,
  51430. bottom: 79/1328
  51431. }
  51432. },
  51433. dressed: {
  51434. height: math.unit(6, "feet"),
  51435. name: "Dressed",
  51436. image: {
  51437. source: "./media/characters/myra-aisling/dressed.svg",
  51438. extra: 1290/1189,
  51439. bottom: 47/1337
  51440. }
  51441. },
  51442. hand: {
  51443. height: math.unit(1.1, "feet"),
  51444. name: "Hand",
  51445. image: {
  51446. source: "./media/characters/myra-aisling/hand.svg"
  51447. }
  51448. },
  51449. paw: {
  51450. height: math.unit(1.23, "feet"),
  51451. name: "Paw",
  51452. image: {
  51453. source: "./media/characters/myra-aisling/paw.svg"
  51454. }
  51455. },
  51456. },
  51457. [
  51458. {
  51459. name: "Normal",
  51460. height: math.unit(160, "feet"),
  51461. default: true
  51462. },
  51463. ]
  51464. ))
  51465. characterMakers.push(() => makeCharacter(
  51466. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51467. {
  51468. front: {
  51469. height: math.unit(6, "feet"),
  51470. name: "Front",
  51471. image: {
  51472. source: "./media/characters/tenley-sidero/front.svg",
  51473. extra: 1365/1276,
  51474. bottom: 47/1412
  51475. }
  51476. },
  51477. back: {
  51478. height: math.unit(6, "feet"),
  51479. name: "Back",
  51480. image: {
  51481. source: "./media/characters/tenley-sidero/back.svg",
  51482. extra: 1383/1283,
  51483. bottom: 35/1418
  51484. }
  51485. },
  51486. dressed: {
  51487. height: math.unit(6, "feet"),
  51488. name: "Dressed",
  51489. image: {
  51490. source: "./media/characters/tenley-sidero/dressed.svg",
  51491. extra: 1364/1275,
  51492. bottom: 42/1406
  51493. }
  51494. },
  51495. head: {
  51496. height: math.unit(1.47, "feet"),
  51497. name: "Head",
  51498. image: {
  51499. source: "./media/characters/tenley-sidero/head.svg",
  51500. extra: 610/490,
  51501. bottom: 0/610
  51502. }
  51503. },
  51504. },
  51505. [
  51506. {
  51507. name: "Normal",
  51508. height: math.unit(154, "feet"),
  51509. default: true
  51510. },
  51511. ]
  51512. ))
  51513. characterMakers.push(() => makeCharacter(
  51514. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51515. {
  51516. front: {
  51517. height: math.unit(5, "inches"),
  51518. name: "Front",
  51519. image: {
  51520. source: "./media/characters/mallory/front.svg",
  51521. extra: 1919/1678,
  51522. bottom: 29/1948
  51523. }
  51524. },
  51525. hand: {
  51526. height: math.unit(0.73, "inches"),
  51527. name: "Hand",
  51528. image: {
  51529. source: "./media/characters/mallory/hand.svg"
  51530. }
  51531. },
  51532. paw: {
  51533. height: math.unit(0.68, "inches"),
  51534. name: "Paw",
  51535. image: {
  51536. source: "./media/characters/mallory/paw.svg"
  51537. }
  51538. },
  51539. },
  51540. [
  51541. {
  51542. name: "Small",
  51543. height: math.unit(5, "inches"),
  51544. default: true
  51545. },
  51546. ]
  51547. ))
  51548. characterMakers.push(() => makeCharacter(
  51549. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51550. {
  51551. naked: {
  51552. height: math.unit(6, "feet"),
  51553. name: "Naked",
  51554. image: {
  51555. source: "./media/characters/mab/naked.svg",
  51556. extra: 1855/1757,
  51557. bottom: 208/2063
  51558. }
  51559. },
  51560. outside: {
  51561. height: math.unit(6, "feet"),
  51562. name: "Outside",
  51563. image: {
  51564. source: "./media/characters/mab/outside.svg",
  51565. extra: 1855/1757,
  51566. bottom: 208/2063
  51567. }
  51568. },
  51569. party: {
  51570. height: math.unit(6, "feet"),
  51571. name: "Party",
  51572. image: {
  51573. source: "./media/characters/mab/party.svg",
  51574. extra: 1855/1757,
  51575. bottom: 208/2063
  51576. }
  51577. },
  51578. },
  51579. [
  51580. {
  51581. name: "Normal",
  51582. height: math.unit(165, "feet"),
  51583. default: true
  51584. },
  51585. ]
  51586. ))
  51587. characterMakers.push(() => makeCharacter(
  51588. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51589. {
  51590. feral: {
  51591. height: math.unit(12, "feet"),
  51592. weight: math.unit(20000, "lb"),
  51593. name: "Side",
  51594. image: {
  51595. source: "./media/characters/winter/feral.svg",
  51596. extra: 1286/943,
  51597. bottom: 112/1398
  51598. },
  51599. form: "feral",
  51600. default: true
  51601. },
  51602. feralNsfw: {
  51603. height: math.unit(12, "feet"),
  51604. weight: math.unit(20000, "lb"),
  51605. name: "Side (NSFW)",
  51606. image: {
  51607. source: "./media/characters/winter/feral-nsfw.svg",
  51608. extra: 1286/943,
  51609. bottom: 112/1398
  51610. },
  51611. form: "feral"
  51612. },
  51613. dick: {
  51614. height: math.unit(3.79, "feet"),
  51615. name: "Dick",
  51616. image: {
  51617. source: "./media/characters/winter/dick.svg"
  51618. },
  51619. form: "feral"
  51620. },
  51621. anthro: {
  51622. height: math.unit(12, "feet"),
  51623. weight: math.unit(10, "tons"),
  51624. name: "Anthro",
  51625. image: {
  51626. source: "./media/characters/winter/anthro.svg",
  51627. extra: 1701/1553,
  51628. bottom: 64/1765
  51629. },
  51630. form: "anthro",
  51631. default: true
  51632. },
  51633. },
  51634. [
  51635. {
  51636. name: "Big",
  51637. height: math.unit(12, "feet"),
  51638. default: true,
  51639. form: "feral"
  51640. },
  51641. {
  51642. name: "Big",
  51643. height: math.unit(12, "feet"),
  51644. default: true,
  51645. form: "anthro"
  51646. },
  51647. ],
  51648. {
  51649. "feral": {
  51650. name: "Feral",
  51651. default: true
  51652. },
  51653. "anthro": {
  51654. name: "Anthro"
  51655. }
  51656. }
  51657. ))
  51658. characterMakers.push(() => makeCharacter(
  51659. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51660. {
  51661. front: {
  51662. height: math.unit(4.1, "inches"),
  51663. name: "Front",
  51664. image: {
  51665. source: "./media/characters/alto/front.svg",
  51666. extra: 736/627,
  51667. bottom: 90/826
  51668. }
  51669. },
  51670. },
  51671. [
  51672. {
  51673. name: "Normal",
  51674. height: math.unit(4.1, "inches"),
  51675. default: true
  51676. },
  51677. ]
  51678. ))
  51679. characterMakers.push(() => makeCharacter(
  51680. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51681. {
  51682. sitting: {
  51683. height: math.unit(3, "feet"),
  51684. name: "Sitting",
  51685. image: {
  51686. source: "./media/characters/ratstrid-v/sitting.svg",
  51687. extra: 355/310,
  51688. bottom: 136/491
  51689. }
  51690. },
  51691. },
  51692. [
  51693. {
  51694. name: "Normal",
  51695. height: math.unit(3, "feet"),
  51696. default: true
  51697. },
  51698. ]
  51699. ))
  51700. characterMakers.push(() => makeCharacter(
  51701. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51702. {
  51703. back: {
  51704. height: math.unit(6, "feet"),
  51705. weight: math.unit(450, "lb"),
  51706. name: "Back",
  51707. image: {
  51708. source: "./media/characters/siz/back.svg",
  51709. extra: 1449/1274,
  51710. bottom: 13/1462
  51711. }
  51712. },
  51713. },
  51714. [
  51715. {
  51716. name: "Smallest",
  51717. height: math.unit(18 + 3/12, "feet")
  51718. },
  51719. {
  51720. name: "Modest",
  51721. height: math.unit(56 + 8/12, "feet"),
  51722. default: true
  51723. },
  51724. {
  51725. name: "Largest",
  51726. height: math.unit(3590, "feet")
  51727. },
  51728. ]
  51729. ))
  51730. characterMakers.push(() => makeCharacter(
  51731. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51732. {
  51733. front: {
  51734. height: math.unit(5 + 9/12, "feet"),
  51735. weight: math.unit(150, "lb"),
  51736. name: "Front",
  51737. image: {
  51738. source: "./media/characters/ven/front.svg",
  51739. extra: 1372/1320,
  51740. bottom: 73/1445
  51741. }
  51742. },
  51743. side: {
  51744. height: math.unit(5 + 9/12, "feet"),
  51745. weight: math.unit(1150, "lb"),
  51746. name: "Side",
  51747. image: {
  51748. source: "./media/characters/ven/side.svg",
  51749. extra: 1119/1070,
  51750. bottom: 42/1161
  51751. },
  51752. default: true
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(5 + 9/12, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(12, "feet"),
  51768. weight: math.unit(1000, "kg"),
  51769. name: "Front",
  51770. image: {
  51771. source: "./media/characters/maple/front.svg",
  51772. extra: 1193/1081,
  51773. bottom: 22/1215
  51774. }
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Compressed",
  51780. height: math.unit(7, "feet")
  51781. },
  51782. {
  51783. name: "Normal",
  51784. height: math.unit(12, "feet"),
  51785. default: true
  51786. },
  51787. ]
  51788. ))
  51789. characterMakers.push(() => makeCharacter(
  51790. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51791. {
  51792. front: {
  51793. height: math.unit(9, "feet"),
  51794. weight: math.unit(1500, "lb"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/nora/front.svg",
  51798. extra: 1348/1286,
  51799. bottom: 218/1566
  51800. }
  51801. },
  51802. erect: {
  51803. height: math.unit(9, "feet"),
  51804. weight: math.unit(11500, "lb"),
  51805. name: "Erect",
  51806. image: {
  51807. source: "./media/characters/nora/erect.svg",
  51808. extra: 1488/1433,
  51809. bottom: 133/1621
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Normal",
  51816. height: math.unit(9, "feet"),
  51817. default: true
  51818. },
  51819. ]
  51820. ))
  51821. characterMakers.push(() => makeCharacter(
  51822. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51823. {
  51824. front: {
  51825. height: math.unit(25, "feet"),
  51826. weight: math.unit(27500, "lb"),
  51827. name: "Front",
  51828. image: {
  51829. source: "./media/characters/north-caudin/front.svg",
  51830. extra: 1184/1082,
  51831. bottom: 23/1207
  51832. }
  51833. },
  51834. },
  51835. [
  51836. {
  51837. name: "Compressed",
  51838. height: math.unit(10, "feet")
  51839. },
  51840. {
  51841. name: "Normal",
  51842. height: math.unit(25, "feet"),
  51843. default: true
  51844. },
  51845. ]
  51846. ))
  51847. characterMakers.push(() => makeCharacter(
  51848. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51849. {
  51850. front: {
  51851. height: math.unit(9, "feet"),
  51852. weight: math.unit(1250, "lb"),
  51853. name: "Front",
  51854. image: {
  51855. source: "./media/characters/merrian/front.svg",
  51856. extra: 2393/2304,
  51857. bottom: 40/2433
  51858. }
  51859. },
  51860. },
  51861. [
  51862. {
  51863. name: "Normal",
  51864. height: math.unit(9, "feet"),
  51865. default: true
  51866. },
  51867. ]
  51868. ))
  51869. characterMakers.push(() => makeCharacter(
  51870. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51871. {
  51872. front: {
  51873. height: math.unit(9, "feet"),
  51874. weight: math.unit(1000, "lb"),
  51875. name: "Front",
  51876. image: {
  51877. source: "./media/characters/hazel/front.svg",
  51878. extra: 2351/2298,
  51879. bottom: 38/2389
  51880. }
  51881. },
  51882. },
  51883. [
  51884. {
  51885. name: "Normal",
  51886. height: math.unit(9, "feet"),
  51887. default: true
  51888. },
  51889. ]
  51890. ))
  51891. characterMakers.push(() => makeCharacter(
  51892. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51893. {
  51894. front: {
  51895. height: math.unit(13, "feet"),
  51896. weight: math.unit(3200, "lb"),
  51897. name: "Front",
  51898. image: {
  51899. source: "./media/characters/emma/front.svg",
  51900. extra: 2263/2029,
  51901. bottom: 68/2331
  51902. }
  51903. },
  51904. },
  51905. [
  51906. {
  51907. name: "Normal",
  51908. height: math.unit(13, "feet"),
  51909. default: true
  51910. },
  51911. ]
  51912. ))
  51913. characterMakers.push(() => makeCharacter(
  51914. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51915. {
  51916. front: {
  51917. height: math.unit(11 + 9/12, "feet"),
  51918. weight: math.unit(2500, "lb"),
  51919. name: "Front",
  51920. image: {
  51921. source: "./media/characters/ilumina/front.svg",
  51922. extra: 2248/2209,
  51923. bottom: 164/2412
  51924. }
  51925. },
  51926. },
  51927. [
  51928. {
  51929. name: "Normal",
  51930. height: math.unit(11 + 9/12, "feet"),
  51931. default: true
  51932. },
  51933. ]
  51934. ))
  51935. characterMakers.push(() => makeCharacter(
  51936. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51937. {
  51938. front: {
  51939. height: math.unit(8 + 10/12, "feet"),
  51940. weight: math.unit(1350, "lb"),
  51941. name: "Front",
  51942. image: {
  51943. source: "./media/characters/moonshine/front.svg",
  51944. extra: 2395/2288,
  51945. bottom: 40/2435
  51946. }
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Normal",
  51952. height: math.unit(8 + 10/12, "feet"),
  51953. default: true
  51954. },
  51955. ]
  51956. ))
  51957. characterMakers.push(() => makeCharacter(
  51958. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51959. {
  51960. front: {
  51961. height: math.unit(14, "feet"),
  51962. weight: math.unit(3400, "lb"),
  51963. name: "Front",
  51964. image: {
  51965. source: "./media/characters/aletia/front.svg",
  51966. extra: 1185/1052,
  51967. bottom: 21/1206
  51968. }
  51969. },
  51970. },
  51971. [
  51972. {
  51973. name: "Compressed",
  51974. height: math.unit(8, "feet")
  51975. },
  51976. {
  51977. name: "Normal",
  51978. height: math.unit(14, "feet"),
  51979. default: true
  51980. },
  51981. ]
  51982. ))
  51983. characterMakers.push(() => makeCharacter(
  51984. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51985. {
  51986. front: {
  51987. height: math.unit(17, "feet"),
  51988. weight: math.unit(6500, "lb"),
  51989. name: "Front",
  51990. image: {
  51991. source: "./media/characters/deidra/front.svg",
  51992. extra: 1201/1081,
  51993. bottom: 16/1217
  51994. }
  51995. },
  51996. },
  51997. [
  51998. {
  51999. name: "Compressed",
  52000. height: math.unit(9 + 6/12, "feet")
  52001. },
  52002. {
  52003. name: "Normal",
  52004. height: math.unit(17, "feet"),
  52005. default: true
  52006. },
  52007. ]
  52008. ))
  52009. characterMakers.push(() => makeCharacter(
  52010. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52011. {
  52012. front: {
  52013. height: math.unit(7 + 4/12, "feet"),
  52014. weight: math.unit(280, "lb"),
  52015. name: "Front",
  52016. image: {
  52017. source: "./media/characters/freki-yrmori/front.svg",
  52018. extra: 1286/1182,
  52019. bottom: 29/1315
  52020. }
  52021. },
  52022. maw: {
  52023. height: math.unit(0.9, "feet"),
  52024. name: "Maw",
  52025. image: {
  52026. source: "./media/characters/freki-yrmori/maw.svg"
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(7 + 4/12, "feet"),
  52034. default: true
  52035. },
  52036. {
  52037. name: "Macro",
  52038. height: math.unit(38.5, "meters")
  52039. },
  52040. ]
  52041. ))
  52042. characterMakers.push(() => makeCharacter(
  52043. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52044. {
  52045. side: {
  52046. height: math.unit(47.2, "meters"),
  52047. weight: math.unit(10000, "tons"),
  52048. name: "Side",
  52049. image: {
  52050. source: "./media/characters/aetherios/side.svg",
  52051. extra: 2363/642,
  52052. bottom: 221/2584
  52053. }
  52054. },
  52055. top: {
  52056. height: math.unit(240, "meters"),
  52057. weight: math.unit(10000, "tons"),
  52058. name: "Top",
  52059. image: {
  52060. source: "./media/characters/aetherios/top.svg"
  52061. }
  52062. },
  52063. bottom: {
  52064. height: math.unit(240, "meters"),
  52065. weight: math.unit(10000, "tons"),
  52066. name: "Bottom",
  52067. image: {
  52068. source: "./media/characters/aetherios/bottom.svg"
  52069. }
  52070. },
  52071. head: {
  52072. height: math.unit(38.6, "meters"),
  52073. name: "Head",
  52074. image: {
  52075. source: "./media/characters/aetherios/head.svg",
  52076. extra: 1335/1112,
  52077. bottom: 0/1335
  52078. }
  52079. },
  52080. front: {
  52081. height: math.unit(29, "meters"),
  52082. name: "Front",
  52083. image: {
  52084. source: "./media/characters/aetherios/front.svg",
  52085. extra: 1266/953,
  52086. bottom: 158/1424
  52087. }
  52088. },
  52089. maw: {
  52090. height: math.unit(16.37, "meters"),
  52091. name: "Maw",
  52092. image: {
  52093. source: "./media/characters/aetherios/maw.svg",
  52094. extra: 748/637,
  52095. bottom: 0/748
  52096. },
  52097. extraAttributes: {
  52098. preyCapacity: {
  52099. name: "Capacity",
  52100. power: 3,
  52101. type: "volume",
  52102. base: math.unit(1000, "people")
  52103. },
  52104. tongueSize: {
  52105. name: "Tongue Size",
  52106. power: 2,
  52107. type: "area",
  52108. base: math.unit(21, "m^2")
  52109. }
  52110. }
  52111. },
  52112. forepaw: {
  52113. height: math.unit(18, "meters"),
  52114. name: "Forepaw",
  52115. image: {
  52116. source: "./media/characters/aetherios/forepaw.svg"
  52117. }
  52118. },
  52119. hindpaw: {
  52120. height: math.unit(23, "meters"),
  52121. name: "Hindpaw",
  52122. image: {
  52123. source: "./media/characters/aetherios/hindpaw.svg"
  52124. }
  52125. },
  52126. genitals: {
  52127. height: math.unit(42, "meters"),
  52128. name: "Genitals",
  52129. image: {
  52130. source: "./media/characters/aetherios/genitals.svg"
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(47.2, "meters"),
  52138. default: true
  52139. },
  52140. {
  52141. name: "Macro",
  52142. height: math.unit(160, "meters")
  52143. },
  52144. {
  52145. name: "Mega",
  52146. height: math.unit(1.87, "km")
  52147. },
  52148. {
  52149. name: "Giga",
  52150. height: math.unit(40000, "km")
  52151. },
  52152. {
  52153. name: "Stellar",
  52154. height: math.unit(158000000, "km")
  52155. },
  52156. {
  52157. name: "Cosmic",
  52158. height: math.unit(9.46e12, "km")
  52159. },
  52160. ]
  52161. ))
  52162. characterMakers.push(() => makeCharacter(
  52163. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52164. {
  52165. front: {
  52166. height: math.unit(5 + 4/12, "feet"),
  52167. weight: math.unit(80, "lb"),
  52168. name: "Front",
  52169. image: {
  52170. source: "./media/characters/mizu-gieeg/front.svg",
  52171. extra: 850/709,
  52172. bottom: 52/902
  52173. }
  52174. },
  52175. back: {
  52176. height: math.unit(5 + 4/12, "feet"),
  52177. weight: math.unit(80, "lb"),
  52178. name: "Back",
  52179. image: {
  52180. source: "./media/characters/mizu-gieeg/back.svg",
  52181. extra: 882/745,
  52182. bottom: 25/907
  52183. }
  52184. },
  52185. },
  52186. [
  52187. {
  52188. name: "Normal",
  52189. height: math.unit(5 + 4/12, "feet"),
  52190. default: true
  52191. },
  52192. ]
  52193. ))
  52194. characterMakers.push(() => makeCharacter(
  52195. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52196. {
  52197. front: {
  52198. height: math.unit(6, "feet"),
  52199. name: "Front",
  52200. image: {
  52201. source: "./media/characters/roselle-st-papier/front.svg",
  52202. extra: 1430/1280,
  52203. bottom: 37/1467
  52204. }
  52205. },
  52206. back: {
  52207. height: math.unit(6, "feet"),
  52208. name: "Back",
  52209. image: {
  52210. source: "./media/characters/roselle-st-papier/back.svg",
  52211. extra: 1491/1296,
  52212. bottom: 23/1514
  52213. }
  52214. },
  52215. ear: {
  52216. height: math.unit(1.26, "feet"),
  52217. name: "Ear",
  52218. image: {
  52219. source: "./media/characters/roselle-st-papier/ear.svg"
  52220. }
  52221. },
  52222. },
  52223. [
  52224. {
  52225. name: "Normal",
  52226. height: math.unit(150, "feet"),
  52227. default: true
  52228. },
  52229. ]
  52230. ))
  52231. characterMakers.push(() => makeCharacter(
  52232. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52233. {
  52234. front: {
  52235. height: math.unit(1, "inches"),
  52236. name: "Front",
  52237. image: {
  52238. source: "./media/characters/valargent/front.svg",
  52239. extra: 1825/1694,
  52240. bottom: 62/1887
  52241. }
  52242. },
  52243. back: {
  52244. height: math.unit(1, "inches"),
  52245. name: "Back",
  52246. image: {
  52247. source: "./media/characters/valargent/back.svg",
  52248. extra: 1775/1682,
  52249. bottom: 88/1863
  52250. }
  52251. },
  52252. },
  52253. [
  52254. {
  52255. name: "Micro",
  52256. height: math.unit(1, "inch"),
  52257. default: true
  52258. },
  52259. ]
  52260. ))
  52261. characterMakers.push(() => makeCharacter(
  52262. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52263. {
  52264. front: {
  52265. height: math.unit(3.4, "meters"),
  52266. name: "Front",
  52267. image: {
  52268. source: "./media/characters/zarina/front.svg",
  52269. extra: 1733/1425,
  52270. bottom: 93/1826
  52271. }
  52272. },
  52273. squatting: {
  52274. height: math.unit(2.14, "meters"),
  52275. name: "Squatting",
  52276. image: {
  52277. source: "./media/characters/zarina/squatting.svg",
  52278. extra: 1073/788,
  52279. bottom: 63/1136
  52280. }
  52281. },
  52282. back: {
  52283. height: math.unit(2.14, "meters"),
  52284. name: "Back",
  52285. image: {
  52286. source: "./media/characters/zarina/back.svg",
  52287. extra: 1128/885,
  52288. bottom: 0/1128
  52289. }
  52290. },
  52291. },
  52292. [
  52293. {
  52294. name: "Normal",
  52295. height: math.unit(3.4, "meters"),
  52296. default: true
  52297. },
  52298. {
  52299. name: "Big",
  52300. height: math.unit(5, "meters")
  52301. },
  52302. {
  52303. name: "Macro",
  52304. height: math.unit(110, "meters")
  52305. },
  52306. ]
  52307. ))
  52308. characterMakers.push(() => makeCharacter(
  52309. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52310. {
  52311. front: {
  52312. height: math.unit(7, "feet"),
  52313. name: "Front",
  52314. image: {
  52315. source: "./media/characters/ventus-astro-fox/front.svg",
  52316. extra: 1792/1623,
  52317. bottom: 28/1820
  52318. }
  52319. },
  52320. back: {
  52321. height: math.unit(7, "feet"),
  52322. name: "Back",
  52323. image: {
  52324. source: "./media/characters/ventus-astro-fox/back.svg",
  52325. extra: 1789/1620,
  52326. bottom: 31/1820
  52327. }
  52328. },
  52329. outfit: {
  52330. height: math.unit(7, "feet"),
  52331. name: "Outfit",
  52332. image: {
  52333. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52334. extra: 1054/925,
  52335. bottom: 15/1069
  52336. }
  52337. },
  52338. head: {
  52339. height: math.unit(1.12, "feet"),
  52340. name: "Head",
  52341. image: {
  52342. source: "./media/characters/ventus-astro-fox/head.svg",
  52343. extra: 866/504,
  52344. bottom: 0/866
  52345. }
  52346. },
  52347. hand: {
  52348. height: math.unit(1, "feet"),
  52349. name: "Hand",
  52350. image: {
  52351. source: "./media/characters/ventus-astro-fox/hand.svg"
  52352. }
  52353. },
  52354. paw: {
  52355. height: math.unit(1.5, "feet"),
  52356. name: "Paw",
  52357. image: {
  52358. source: "./media/characters/ventus-astro-fox/paw.svg"
  52359. }
  52360. },
  52361. },
  52362. [
  52363. {
  52364. name: "Normal",
  52365. height: math.unit(7, "feet"),
  52366. default: true
  52367. },
  52368. {
  52369. name: "Macro",
  52370. height: math.unit(200, "feet")
  52371. },
  52372. {
  52373. name: "Cosmic",
  52374. height: math.unit(3, "universes")
  52375. },
  52376. ]
  52377. ))
  52378. characterMakers.push(() => makeCharacter(
  52379. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52380. {
  52381. front: {
  52382. height: math.unit(3, "meters"),
  52383. weight: math.unit(7000, "lb"),
  52384. name: "Front",
  52385. image: {
  52386. source: "./media/characters/core-t/front.svg",
  52387. extra: 5729/4941,
  52388. bottom: 1129/6858
  52389. }
  52390. },
  52391. },
  52392. [
  52393. {
  52394. name: "Big",
  52395. height: math.unit(3, "meters"),
  52396. default: true
  52397. },
  52398. ]
  52399. ))
  52400. characterMakers.push(() => makeCharacter(
  52401. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52402. {
  52403. normal: {
  52404. height: math.unit(6 + 6/12, "feet"),
  52405. weight: math.unit(275, "lb"),
  52406. name: "Front",
  52407. image: {
  52408. source: "./media/characters/cadbunny/normal.svg",
  52409. extra: 1129/947,
  52410. bottom: 93/1222
  52411. },
  52412. default: true,
  52413. form: "normal"
  52414. },
  52415. gigantamax: {
  52416. height: math.unit(26, "feet"),
  52417. weight: math.unit(16000, "lb"),
  52418. name: "Front",
  52419. image: {
  52420. source: "./media/characters/cadbunny/gigantamax.svg",
  52421. extra: 1133/944,
  52422. bottom: 90/1223
  52423. },
  52424. default: true,
  52425. form: "gigantamax"
  52426. },
  52427. },
  52428. [
  52429. {
  52430. name: "Normal",
  52431. height: math.unit(6 + 6/12, "feet"),
  52432. default: true,
  52433. form: "normal"
  52434. },
  52435. {
  52436. name: "Small",
  52437. height: math.unit(26, "feet"),
  52438. default: true,
  52439. form: "gigantamax"
  52440. },
  52441. {
  52442. name: "Large",
  52443. height: math.unit(78, "feet"),
  52444. form: "gigantamax"
  52445. },
  52446. ],
  52447. {
  52448. "normal": {
  52449. name: "Normal",
  52450. default: true
  52451. },
  52452. "gigantamax": {
  52453. name: "Gigantamax"
  52454. }
  52455. }
  52456. ))
  52457. characterMakers.push(() => makeCharacter(
  52458. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52459. {
  52460. anthroFront: {
  52461. height: math.unit(8, "feet"),
  52462. weight: math.unit(300, "lb"),
  52463. name: "Front",
  52464. image: {
  52465. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52466. extra: 1272/1176,
  52467. bottom: 53/1325
  52468. },
  52469. form: "anthro",
  52470. default: true
  52471. },
  52472. feralSide: {
  52473. height: math.unit(4, "feet"),
  52474. weight: math.unit(250, "lb"),
  52475. name: "Side",
  52476. image: {
  52477. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52478. extra: 731/621,
  52479. bottom: 0/731
  52480. },
  52481. form: "feral",
  52482. default: true
  52483. },
  52484. },
  52485. [
  52486. {
  52487. name: "Regular",
  52488. height: math.unit(8, "feet"),
  52489. form: "anthro"
  52490. },
  52491. {
  52492. name: "Macro",
  52493. height: math.unit(250, "feet"),
  52494. form: "anthro",
  52495. default: true
  52496. },
  52497. {
  52498. name: "Regular",
  52499. height: math.unit(4, "feet"),
  52500. form: "feral"
  52501. },
  52502. {
  52503. name: "Macro",
  52504. height: math.unit(125, "feet"),
  52505. form: "feral",
  52506. default: true
  52507. },
  52508. ],
  52509. {
  52510. "anthro": {
  52511. name: "Anthro",
  52512. default: true
  52513. },
  52514. "feral": {
  52515. name: "Feral",
  52516. },
  52517. }
  52518. ))
  52519. characterMakers.push(() => makeCharacter(
  52520. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52521. {
  52522. front: {
  52523. height: math.unit(11 + 10/12, "feet"),
  52524. weight: math.unit(1587, "kg"),
  52525. name: "Front",
  52526. image: {
  52527. source: "./media/characters/maple-javira-dragon/front.svg",
  52528. extra: 1136/744,
  52529. bottom: 73/1209
  52530. }
  52531. },
  52532. side: {
  52533. height: math.unit(11 + 10/12, "feet"),
  52534. weight: math.unit(1587, "kg"),
  52535. name: "Side",
  52536. image: {
  52537. source: "./media/characters/maple-javira-dragon/side.svg",
  52538. extra: 712/505,
  52539. bottom: 17/729
  52540. }
  52541. },
  52542. head: {
  52543. height: math.unit(8.05, "feet"),
  52544. name: "Head",
  52545. image: {
  52546. source: "./media/characters/maple-javira-dragon/head.svg",
  52547. extra: 1420/1344,
  52548. bottom: 0/1420
  52549. }
  52550. },
  52551. },
  52552. [
  52553. {
  52554. name: "Normal",
  52555. height: math.unit(11 + 10/12, "feet"),
  52556. default: true
  52557. },
  52558. ]
  52559. ))
  52560. characterMakers.push(() => makeCharacter(
  52561. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52562. {
  52563. front: {
  52564. height: math.unit(117, "cm"),
  52565. weight: math.unit(50, "kg"),
  52566. name: "Front",
  52567. image: {
  52568. source: "./media/characters/sonia-wyverntail/front.svg",
  52569. extra: 708/592,
  52570. bottom: 25/733
  52571. }
  52572. },
  52573. },
  52574. [
  52575. {
  52576. name: "Normal",
  52577. height: math.unit(117, "cm"),
  52578. default: true
  52579. },
  52580. ]
  52581. ))
  52582. characterMakers.push(() => makeCharacter(
  52583. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52584. {
  52585. front: {
  52586. height: math.unit(6 + 5/12, "feet"),
  52587. name: "Front",
  52588. image: {
  52589. source: "./media/characters/micah/front.svg",
  52590. extra: 1758/1546,
  52591. bottom: 214/1972
  52592. }
  52593. },
  52594. },
  52595. [
  52596. {
  52597. name: "Normal",
  52598. height: math.unit(6 + 5/12, "feet"),
  52599. default: true
  52600. },
  52601. ]
  52602. ))
  52603. characterMakers.push(() => makeCharacter(
  52604. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52605. {
  52606. front: {
  52607. height: math.unit(1.75, "meters"),
  52608. weight: math.unit(100, "kg"),
  52609. name: "Front",
  52610. image: {
  52611. source: "./media/characters/zarya/front.svg",
  52612. extra: 741/735,
  52613. bottom: 44/785
  52614. },
  52615. extraAttributes: {
  52616. "tailLength": {
  52617. name: "Tail Length",
  52618. power: 1,
  52619. type: "length",
  52620. base: math.unit(180, "cm")
  52621. },
  52622. "pawLength": {
  52623. name: "Paw Length",
  52624. power: 1,
  52625. type: "length",
  52626. base: math.unit(31, "cm")
  52627. },
  52628. }
  52629. },
  52630. side: {
  52631. height: math.unit(1.75, "meters"),
  52632. weight: math.unit(100, "kg"),
  52633. name: "Side",
  52634. image: {
  52635. source: "./media/characters/zarya/side.svg",
  52636. extra: 776/770,
  52637. bottom: 17/793
  52638. },
  52639. extraAttributes: {
  52640. "tailLength": {
  52641. name: "Tail Length",
  52642. power: 1,
  52643. type: "length",
  52644. base: math.unit(180, "cm")
  52645. },
  52646. "pawLength": {
  52647. name: "Paw Length",
  52648. power: 1,
  52649. type: "length",
  52650. base: math.unit(31, "cm")
  52651. },
  52652. }
  52653. },
  52654. back: {
  52655. height: math.unit(1.75, "meters"),
  52656. weight: math.unit(100, "kg"),
  52657. name: "Back",
  52658. image: {
  52659. source: "./media/characters/zarya/back.svg",
  52660. extra: 741/735,
  52661. bottom: 44/785
  52662. },
  52663. extraAttributes: {
  52664. "tailLength": {
  52665. name: "Tail Length",
  52666. power: 1,
  52667. type: "length",
  52668. base: math.unit(180, "cm")
  52669. },
  52670. "pawLength": {
  52671. name: "Paw Length",
  52672. power: 1,
  52673. type: "length",
  52674. base: math.unit(31, "cm")
  52675. },
  52676. }
  52677. },
  52678. frontNoTail: {
  52679. height: math.unit(1.75, "meters"),
  52680. weight: math.unit(100, "kg"),
  52681. name: "Front (No Tail)",
  52682. image: {
  52683. source: "./media/characters/zarya/front-no-tail.svg",
  52684. extra: 741/735,
  52685. bottom: 44/785
  52686. },
  52687. extraAttributes: {
  52688. "tailLength": {
  52689. name: "Tail Length",
  52690. power: 1,
  52691. type: "length",
  52692. base: math.unit(180, "cm")
  52693. },
  52694. "pawLength": {
  52695. name: "Paw Length",
  52696. power: 1,
  52697. type: "length",
  52698. base: math.unit(31, "cm")
  52699. },
  52700. }
  52701. },
  52702. dressed: {
  52703. height: math.unit(1.75, "meters"),
  52704. weight: math.unit(100, "kg"),
  52705. name: "Dressed",
  52706. image: {
  52707. source: "./media/characters/zarya/dressed.svg",
  52708. extra: 683/672,
  52709. bottom: 79/762
  52710. },
  52711. extraAttributes: {
  52712. "tailLength": {
  52713. name: "Tail Length",
  52714. power: 1,
  52715. type: "length",
  52716. base: math.unit(180, "cm")
  52717. },
  52718. "pawLength": {
  52719. name: "Paw Length",
  52720. power: 1,
  52721. type: "length",
  52722. base: math.unit(31, "cm")
  52723. },
  52724. }
  52725. },
  52726. },
  52727. [
  52728. {
  52729. name: "Micro",
  52730. height: math.unit(5, "cm")
  52731. },
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(1.75, "meters"),
  52735. default: true
  52736. },
  52737. {
  52738. name: "Macro",
  52739. height: math.unit(122, "meters")
  52740. },
  52741. ]
  52742. ))
  52743. characterMakers.push(() => makeCharacter(
  52744. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52745. {
  52746. front: {
  52747. height: math.unit(7.5, "feet"),
  52748. name: "Front",
  52749. image: {
  52750. source: "./media/characters/sven-hatisson/front.svg",
  52751. extra: 917/857,
  52752. bottom: 42/959
  52753. }
  52754. },
  52755. back: {
  52756. height: math.unit(7.5, "feet"),
  52757. name: "Back",
  52758. image: {
  52759. source: "./media/characters/sven-hatisson/back.svg",
  52760. extra: 903/856,
  52761. bottom: 15/918
  52762. }
  52763. },
  52764. },
  52765. [
  52766. {
  52767. name: "Base Height",
  52768. height: math.unit(7.5, "feet")
  52769. },
  52770. {
  52771. name: "Usual Height",
  52772. height: math.unit(13.5, "feet"),
  52773. default: true
  52774. },
  52775. {
  52776. name: "Smaller Macro",
  52777. height: math.unit(85, "feet")
  52778. },
  52779. {
  52780. name: "Moderate Macro",
  52781. height: math.unit(320, "feet")
  52782. },
  52783. {
  52784. name: "Large Macro",
  52785. height: math.unit(1000, "feet")
  52786. },
  52787. {
  52788. name: "Largest Size",
  52789. height: math.unit(2, "miles")
  52790. },
  52791. ]
  52792. ))
  52793. characterMakers.push(() => makeCharacter(
  52794. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52795. {
  52796. side: {
  52797. height: math.unit(1.8, "meters"),
  52798. weight: math.unit(275, "kg"),
  52799. name: "Side",
  52800. image: {
  52801. source: "./media/characters/terra/side.svg",
  52802. extra: 1273/1147,
  52803. bottom: 0/1273
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Normal",
  52810. height: math.unit(16.2, "meters"),
  52811. default: true
  52812. },
  52813. ]
  52814. ))
  52815. characterMakers.push(() => makeCharacter(
  52816. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52817. {
  52818. borzoiFront: {
  52819. height: math.unit(6 + 9/12, "feet"),
  52820. name: "Front",
  52821. image: {
  52822. source: "./media/characters/rae/borzoi-front.svg",
  52823. extra: 1161/1098,
  52824. bottom: 31/1192
  52825. },
  52826. form: "borzoi",
  52827. default: true
  52828. },
  52829. werewolfFront: {
  52830. height: math.unit(8 + 7/12, "feet"),
  52831. name: "Front",
  52832. image: {
  52833. source: "./media/characters/rae/werewolf-front.svg",
  52834. extra: 1411/1334,
  52835. bottom: 127/1538
  52836. },
  52837. form: "werewolf",
  52838. default: true
  52839. },
  52840. },
  52841. [
  52842. {
  52843. name: "Normal",
  52844. height: math.unit(6 + 9/12, "feet"),
  52845. default: true,
  52846. form: "borzoi"
  52847. },
  52848. {
  52849. name: "Normal",
  52850. height: math.unit(8 + 7/12, "feet"),
  52851. default: true,
  52852. form: "werewolf"
  52853. },
  52854. ],
  52855. {
  52856. "borzoi": {
  52857. name: "Borzoi",
  52858. default: true
  52859. },
  52860. "werewolf": {
  52861. name: "Werewolf",
  52862. },
  52863. }
  52864. ))
  52865. characterMakers.push(() => makeCharacter(
  52866. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52867. {
  52868. front: {
  52869. height: math.unit(8 + 7/12, "feet"),
  52870. weight: math.unit(482, "lb"),
  52871. name: "Front",
  52872. image: {
  52873. source: "./media/characters/kit/front.svg",
  52874. extra: 1247/1103,
  52875. bottom: 41/1288
  52876. }
  52877. },
  52878. back: {
  52879. height: math.unit(8 + 7/12, "feet"),
  52880. weight: math.unit(482, "lb"),
  52881. name: "Back",
  52882. image: {
  52883. source: "./media/characters/kit/back.svg",
  52884. extra: 1252/1123,
  52885. bottom: 21/1273
  52886. }
  52887. },
  52888. paw: {
  52889. height: math.unit(1.46, "feet"),
  52890. name: "Paw",
  52891. image: {
  52892. source: "./media/characters/kit/paw.svg"
  52893. }
  52894. },
  52895. },
  52896. [
  52897. {
  52898. name: "Normal",
  52899. height: math.unit(2.61, "meters"),
  52900. default: true
  52901. },
  52902. {
  52903. name: "\"Tall\"",
  52904. height: math.unit(8.21, "meters")
  52905. },
  52906. {
  52907. name: "Tall",
  52908. height: math.unit(19.6, "meters")
  52909. },
  52910. {
  52911. name: "Very Tall",
  52912. height: math.unit(57.91, "meters")
  52913. },
  52914. {
  52915. name: "Semi-Macro",
  52916. height: math.unit(138.64, "meters")
  52917. },
  52918. {
  52919. name: "Macro",
  52920. height: math.unit(831.99, "meters")
  52921. },
  52922. {
  52923. name: "EX-Macro",
  52924. height: math.unit(96451121, "meters")
  52925. },
  52926. {
  52927. name: "S1-Omnipotent",
  52928. height: math.unit(4.42074e+9, "meters")
  52929. },
  52930. {
  52931. name: "S2-Omnipotent",
  52932. height: math.unit(9.42074e+17, "meters")
  52933. },
  52934. {
  52935. name: "Omnipotent",
  52936. height: math.unit(4.23112e+24, "meters")
  52937. },
  52938. {
  52939. name: "Hypergod",
  52940. height: math.unit(5.05176e+27, "meters")
  52941. },
  52942. {
  52943. name: "Hypergod-EX",
  52944. height: math.unit(9.45532e+49, "meters")
  52945. },
  52946. {
  52947. name: "Hypergod-SP",
  52948. height: math.unit(9.45532e+195, "meters")
  52949. },
  52950. ]
  52951. ))
  52952. characterMakers.push(() => makeCharacter(
  52953. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52954. {
  52955. side: {
  52956. height: math.unit(0.6, "meters"),
  52957. weight: math.unit(24, "kg"),
  52958. name: "Side",
  52959. image: {
  52960. source: "./media/characters/celeste/side.svg",
  52961. extra: 810/517,
  52962. bottom: 53/863
  52963. }
  52964. },
  52965. },
  52966. [
  52967. {
  52968. name: "Velociraptor",
  52969. height: math.unit(0.6, "meters"),
  52970. default: true
  52971. },
  52972. {
  52973. name: "Utahraptor",
  52974. height: math.unit(1.8, "meters")
  52975. },
  52976. {
  52977. name: "Gallimimus",
  52978. height: math.unit(4.0, "meters")
  52979. },
  52980. {
  52981. name: "Large",
  52982. height: math.unit(20, "meters")
  52983. },
  52984. {
  52985. name: "Planetary",
  52986. height: math.unit(50, "megameters")
  52987. },
  52988. {
  52989. name: "Stellar",
  52990. height: math.unit(1.5, "gigameters")
  52991. },
  52992. {
  52993. name: "Galactic",
  52994. height: math.unit(100, "exameters")
  52995. },
  52996. ]
  52997. ))
  52998. characterMakers.push(() => makeCharacter(
  52999. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53000. {
  53001. front: {
  53002. height: math.unit(6, "feet"),
  53003. weight: math.unit(210, "lb"),
  53004. name: "Front",
  53005. image: {
  53006. source: "./media/characters/glacia/front.svg",
  53007. extra: 958/901,
  53008. bottom: 45/1003
  53009. }
  53010. },
  53011. },
  53012. [
  53013. {
  53014. name: "Macro",
  53015. height: math.unit(1000, "meters"),
  53016. default: true
  53017. },
  53018. ]
  53019. ))
  53020. characterMakers.push(() => makeCharacter(
  53021. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53022. {
  53023. front: {
  53024. height: math.unit(4, "meters"),
  53025. name: "Front",
  53026. image: {
  53027. source: "./media/characters/giri/front.svg",
  53028. extra: 966/894,
  53029. bottom: 21/987
  53030. }
  53031. },
  53032. },
  53033. [
  53034. {
  53035. name: "Normal",
  53036. height: math.unit(4, "meters"),
  53037. default: true
  53038. },
  53039. ]
  53040. ))
  53041. characterMakers.push(() => makeCharacter(
  53042. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53043. {
  53044. back: {
  53045. height: math.unit(4, "feet"),
  53046. weight: math.unit(37, "lb"),
  53047. name: "Back",
  53048. image: {
  53049. source: "./media/characters/tin/back.svg",
  53050. extra: 845/780,
  53051. bottom: 28/873
  53052. }
  53053. },
  53054. },
  53055. [
  53056. {
  53057. name: "Normal",
  53058. height: math.unit(4, "feet"),
  53059. default: true
  53060. },
  53061. ]
  53062. ))
  53063. characterMakers.push(() => makeCharacter(
  53064. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53065. {
  53066. front: {
  53067. height: math.unit(25, "feet"),
  53068. name: "Front",
  53069. image: {
  53070. source: "./media/characters/cadenza-vivace/front.svg",
  53071. extra: 1842/1578,
  53072. bottom: 30/1872
  53073. }
  53074. },
  53075. },
  53076. [
  53077. {
  53078. name: "Macro",
  53079. height: math.unit(25, "feet"),
  53080. default: true
  53081. },
  53082. ]
  53083. ))
  53084. characterMakers.push(() => makeCharacter(
  53085. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53086. {
  53087. front: {
  53088. height: math.unit(10, "feet"),
  53089. weight: math.unit(625, "kg"),
  53090. name: "Front",
  53091. image: {
  53092. source: "./media/characters/zain/front.svg",
  53093. extra: 1682/1498,
  53094. bottom: 223/1905
  53095. }
  53096. },
  53097. back: {
  53098. height: math.unit(10, "feet"),
  53099. weight: math.unit(625, "kg"),
  53100. name: "Back",
  53101. image: {
  53102. source: "./media/characters/zain/back.svg",
  53103. extra: 1814/1657,
  53104. bottom: 152/1966
  53105. }
  53106. },
  53107. head: {
  53108. height: math.unit(10, "feet"),
  53109. weight: math.unit(625, "kg"),
  53110. name: "Head",
  53111. image: {
  53112. source: "./media/characters/zain/head.svg",
  53113. extra: 1059/762,
  53114. bottom: 0/1059
  53115. }
  53116. },
  53117. },
  53118. [
  53119. {
  53120. name: "Normal",
  53121. height: math.unit(10, "feet"),
  53122. default: true
  53123. },
  53124. ]
  53125. ))
  53126. characterMakers.push(() => makeCharacter(
  53127. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53128. {
  53129. front: {
  53130. height: math.unit(6 + 5/12, "feet"),
  53131. weight: math.unit(750, "lb"),
  53132. name: "Front",
  53133. image: {
  53134. source: "./media/characters/ruchex/front.svg",
  53135. extra: 877/820,
  53136. bottom: 17/894
  53137. },
  53138. extraAttributes: {
  53139. "width": {
  53140. name: "Width",
  53141. power: 1,
  53142. type: "length",
  53143. base: math.unit(4.757, "feet")
  53144. },
  53145. }
  53146. },
  53147. },
  53148. [
  53149. {
  53150. name: "Normal",
  53151. height: math.unit(6 + 5/12, "feet"),
  53152. default: true
  53153. },
  53154. ]
  53155. ))
  53156. characterMakers.push(() => makeCharacter(
  53157. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53158. {
  53159. dressedFront: {
  53160. height: math.unit(191, "cm"),
  53161. weight: math.unit(80, "kg"),
  53162. name: "Front",
  53163. image: {
  53164. source: "./media/characters/buster/dressed-front.svg",
  53165. extra: 1022/973,
  53166. bottom: 69/1091
  53167. }
  53168. },
  53169. dressedBack: {
  53170. height: math.unit(191, "cm"),
  53171. weight: math.unit(80, "kg"),
  53172. name: "Back",
  53173. image: {
  53174. source: "./media/characters/buster/dressed-back.svg",
  53175. extra: 1018/970,
  53176. bottom: 55/1073
  53177. }
  53178. },
  53179. nudeFront: {
  53180. height: math.unit(191, "cm"),
  53181. weight: math.unit(80, "kg"),
  53182. name: "Front (Nude)",
  53183. image: {
  53184. source: "./media/characters/buster/nude-front.svg",
  53185. extra: 1022/973,
  53186. bottom: 69/1091
  53187. }
  53188. },
  53189. nudeBack: {
  53190. height: math.unit(191, "cm"),
  53191. weight: math.unit(80, "kg"),
  53192. name: "Back (Nude)",
  53193. image: {
  53194. source: "./media/characters/buster/nude-back.svg",
  53195. extra: 1018/970,
  53196. bottom: 55/1073
  53197. }
  53198. },
  53199. dick: {
  53200. height: math.unit(2.59, "feet"),
  53201. name: "Dick",
  53202. image: {
  53203. source: "./media/characters/buster/dick.svg"
  53204. }
  53205. },
  53206. ass: {
  53207. height: math.unit(1.2, "feet"),
  53208. name: "Ass",
  53209. image: {
  53210. source: "./media/characters/buster/ass.svg"
  53211. }
  53212. },
  53213. },
  53214. [
  53215. {
  53216. name: "Normal",
  53217. height: math.unit(191, "cm"),
  53218. default: true
  53219. },
  53220. ]
  53221. ))
  53222. characterMakers.push(() => makeCharacter(
  53223. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53224. {
  53225. side: {
  53226. height: math.unit(8.1, "feet"),
  53227. weight: math.unit(3500, "lb"),
  53228. name: "Side",
  53229. image: {
  53230. source: "./media/characters/sonya/side.svg",
  53231. extra: 1730/1317,
  53232. bottom: 86/1816
  53233. }
  53234. },
  53235. },
  53236. [
  53237. {
  53238. name: "Normal",
  53239. height: math.unit(8.1, "feet"),
  53240. default: true
  53241. },
  53242. ]
  53243. ))
  53244. characterMakers.push(() => makeCharacter(
  53245. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53246. {
  53247. front: {
  53248. height: math.unit(6, "feet"),
  53249. weight: math.unit(150, "lb"),
  53250. name: "Front",
  53251. image: {
  53252. source: "./media/characters/cadence-andrysiak/front.svg",
  53253. extra: 1164/1121,
  53254. bottom: 60/1224
  53255. }
  53256. },
  53257. back: {
  53258. height: math.unit(6, "feet"),
  53259. weight: math.unit(150, "lb"),
  53260. name: "Back",
  53261. image: {
  53262. source: "./media/characters/cadence-andrysiak/back.svg",
  53263. extra: 1200/1165,
  53264. bottom: 9/1209
  53265. }
  53266. },
  53267. dressed: {
  53268. height: math.unit(6, "feet"),
  53269. weight: math.unit(150, "lb"),
  53270. name: "Dressed",
  53271. image: {
  53272. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53273. extra: 1164/1121,
  53274. bottom: 60/1224
  53275. }
  53276. },
  53277. },
  53278. [
  53279. {
  53280. name: "Micro",
  53281. height: math.unit(1, "mm")
  53282. },
  53283. {
  53284. name: "Normal",
  53285. height: math.unit(6, "feet"),
  53286. default: true
  53287. },
  53288. ]
  53289. ))
  53290. characterMakers.push(() => makeCharacter(
  53291. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53292. {
  53293. front: {
  53294. height: math.unit(60, "inches"),
  53295. weight: math.unit(16, "lb"),
  53296. preyCapacity: math.unit(80, "liters"),
  53297. name: "Front",
  53298. image: {
  53299. source: "./media/characters/penny-lynx/front.svg",
  53300. extra: 1959/1769,
  53301. bottom: 49/2008
  53302. }
  53303. },
  53304. },
  53305. [
  53306. {
  53307. name: "Nokia",
  53308. height: math.unit(2, "inches")
  53309. },
  53310. {
  53311. name: "Desktop",
  53312. height: math.unit(24, "inches")
  53313. },
  53314. {
  53315. name: "TV",
  53316. height: math.unit(60, "inches")
  53317. },
  53318. {
  53319. name: "Jumbotron",
  53320. height: math.unit(12, "feet")
  53321. },
  53322. {
  53323. name: "Billboard",
  53324. height: math.unit(48, "feet"),
  53325. default: true
  53326. },
  53327. {
  53328. name: "IMAX",
  53329. height: math.unit(96, "feet")
  53330. },
  53331. {
  53332. name: "SINGULARITY",
  53333. height: math.unit(864938, "miles")
  53334. },
  53335. ]
  53336. ))
  53337. characterMakers.push(() => makeCharacter(
  53338. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53339. {
  53340. front: {
  53341. height: math.unit(5 + 4/12, "feet"),
  53342. weight: math.unit(230, "lb"),
  53343. name: "Front",
  53344. image: {
  53345. source: "./media/characters/sukebe/front.svg",
  53346. extra: 2130/2038,
  53347. bottom: 90/2220
  53348. }
  53349. },
  53350. back: {
  53351. height: math.unit(3.48, "feet"),
  53352. weight: math.unit(230, "lb"),
  53353. name: "Back",
  53354. image: {
  53355. source: "./media/characters/sukebe/back.svg",
  53356. extra: 1670/1604,
  53357. bottom: 0/1670
  53358. }
  53359. },
  53360. },
  53361. [
  53362. {
  53363. name: "Normal",
  53364. height: math.unit(5 + 4/12, "feet"),
  53365. default: true
  53366. },
  53367. ]
  53368. ))
  53369. characterMakers.push(() => makeCharacter(
  53370. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53371. {
  53372. front: {
  53373. height: math.unit(6, "feet"),
  53374. name: "Front",
  53375. image: {
  53376. source: "./media/characters/nylla/front.svg",
  53377. extra: 1868/1699,
  53378. bottom: 97/1965
  53379. }
  53380. },
  53381. back: {
  53382. height: math.unit(6, "feet"),
  53383. name: "Back",
  53384. image: {
  53385. source: "./media/characters/nylla/back.svg",
  53386. extra: 1889/1712,
  53387. bottom: 93/1982
  53388. }
  53389. },
  53390. frontNsfw: {
  53391. height: math.unit(6, "feet"),
  53392. name: "Front (NSFW)",
  53393. image: {
  53394. source: "./media/characters/nylla/front-nsfw.svg",
  53395. extra: 1868/1699,
  53396. bottom: 97/1965
  53397. },
  53398. extraAttributes: {
  53399. "dickLength": {
  53400. name: "Dick Length",
  53401. power: 1,
  53402. type: "length",
  53403. base: math.unit(1.4, "feet")
  53404. },
  53405. "cumVolume": {
  53406. name: "Cum Volume",
  53407. power: 3,
  53408. type: "volume",
  53409. base: math.unit(100, "mL")
  53410. },
  53411. }
  53412. },
  53413. backNsfw: {
  53414. height: math.unit(6, "feet"),
  53415. name: "Back (NSFW)",
  53416. image: {
  53417. source: "./media/characters/nylla/back-nsfw.svg",
  53418. extra: 1889/1712,
  53419. bottom: 93/1982
  53420. }
  53421. },
  53422. maw: {
  53423. height: math.unit(2.10, "feet"),
  53424. name: "Maw",
  53425. image: {
  53426. source: "./media/characters/nylla/maw.svg"
  53427. }
  53428. },
  53429. paws: {
  53430. height: math.unit(2.06, "feet"),
  53431. name: "Paws",
  53432. image: {
  53433. source: "./media/characters/nylla/paws.svg"
  53434. }
  53435. },
  53436. muzzle: {
  53437. height: math.unit(0.61, "feet"),
  53438. name: "Muzzle",
  53439. image: {
  53440. source: "./media/characters/nylla/muzzle.svg"
  53441. }
  53442. },
  53443. sheath: {
  53444. height: math.unit(1.305, "feet"),
  53445. name: "Sheath",
  53446. image: {
  53447. source: "./media/characters/nylla/sheath.svg"
  53448. }
  53449. },
  53450. },
  53451. [
  53452. {
  53453. name: "Micro",
  53454. height: math.unit(7.5, "inches")
  53455. },
  53456. {
  53457. name: "Normal",
  53458. height: math.unit(7, "feet"),
  53459. default: true
  53460. },
  53461. {
  53462. name: "Macro",
  53463. height: math.unit(60, "feet")
  53464. },
  53465. {
  53466. name: "Mega",
  53467. height: math.unit(200, "feet")
  53468. },
  53469. ]
  53470. ))
  53471. characterMakers.push(() => makeCharacter(
  53472. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53473. {
  53474. front: {
  53475. height: math.unit(10, "feet"),
  53476. weight: math.unit(2300, "lb"),
  53477. name: "Front",
  53478. image: {
  53479. source: "./media/characters/hunt3r/front.svg",
  53480. extra: 1909/1742,
  53481. bottom: 46/1955
  53482. }
  53483. },
  53484. },
  53485. [
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(10, "feet"),
  53489. default: true
  53490. },
  53491. ]
  53492. ))
  53493. characterMakers.push(() => makeCharacter(
  53494. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53495. {
  53496. dressed: {
  53497. height: math.unit(11, "feet"),
  53498. weight: math.unit(18500, "lb"),
  53499. preyCapacity: math.unit(9, "people"),
  53500. name: "Dressed",
  53501. image: {
  53502. source: "./media/characters/cylphis/dressed.svg",
  53503. extra: 1028/1003,
  53504. bottom: 75/1103
  53505. },
  53506. },
  53507. undressed: {
  53508. height: math.unit(11, "feet"),
  53509. weight: math.unit(18500, "lb"),
  53510. preyCapacity: math.unit(9, "people"),
  53511. name: "Undressed",
  53512. image: {
  53513. source: "./media/characters/cylphis/undressed.svg",
  53514. extra: 1028/1003,
  53515. bottom: 75/1103
  53516. }
  53517. },
  53518. full: {
  53519. height: math.unit(11, "feet"),
  53520. weight: math.unit(18500 + 150*9, "lb"),
  53521. preyCapacity: math.unit(9, "people"),
  53522. name: "Full",
  53523. image: {
  53524. source: "./media/characters/cylphis/full.svg",
  53525. extra: 1028/1003,
  53526. bottom: 75/1103
  53527. }
  53528. },
  53529. },
  53530. [
  53531. {
  53532. name: "Small",
  53533. height: math.unit(8, "feet")
  53534. },
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(11, "feet"),
  53538. default: true
  53539. },
  53540. ]
  53541. ))
  53542. characterMakers.push(() => makeCharacter(
  53543. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53544. {
  53545. front: {
  53546. height: math.unit(2 + 7/12, "feet"),
  53547. name: "Front",
  53548. image: {
  53549. source: "./media/characters/orishan/front.svg",
  53550. extra: 1058/1023,
  53551. bottom: 23/1081
  53552. }
  53553. },
  53554. back: {
  53555. height: math.unit(2 + 7/12, "feet"),
  53556. name: "Back",
  53557. image: {
  53558. source: "./media/characters/orishan/back.svg",
  53559. extra: 1058/1023,
  53560. bottom: 23/1081
  53561. }
  53562. },
  53563. },
  53564. [
  53565. {
  53566. name: "Micro",
  53567. height: math.unit(2, "cm")
  53568. },
  53569. {
  53570. name: "Normal",
  53571. height: math.unit(2 + 7/12, "feet"),
  53572. default: true
  53573. },
  53574. ]
  53575. ))
  53576. characterMakers.push(() => makeCharacter(
  53577. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53578. {
  53579. front: {
  53580. height: math.unit(3, "meters"),
  53581. weight: math.unit(508, "kg"),
  53582. name: "Front",
  53583. image: {
  53584. source: "./media/characters/seranis/front.svg",
  53585. extra: 1478/1454,
  53586. bottom: 41/1519
  53587. }
  53588. },
  53589. },
  53590. [
  53591. {
  53592. name: "Normal",
  53593. height: math.unit(3, "meters"),
  53594. default: true
  53595. },
  53596. {
  53597. name: "Macro",
  53598. height: math.unit(108, "meters")
  53599. },
  53600. {
  53601. name: "Megamacro",
  53602. height: math.unit(1250, "meters")
  53603. },
  53604. ]
  53605. ))
  53606. characterMakers.push(() => makeCharacter(
  53607. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53608. {
  53609. undressed: {
  53610. height: math.unit(5 + 3/12, "feet"),
  53611. name: "Undressed",
  53612. image: {
  53613. source: "./media/characters/ankou/undressed.svg",
  53614. extra: 1301/1213,
  53615. bottom: 87/1388
  53616. }
  53617. },
  53618. dressed: {
  53619. height: math.unit(5 + 3/12, "feet"),
  53620. name: "Dressed",
  53621. image: {
  53622. source: "./media/characters/ankou/dressed.svg",
  53623. extra: 1301/1213,
  53624. bottom: 87/1388
  53625. }
  53626. },
  53627. head: {
  53628. height: math.unit(1.61, "feet"),
  53629. name: "Head",
  53630. image: {
  53631. source: "./media/characters/ankou/head.svg"
  53632. }
  53633. },
  53634. },
  53635. [
  53636. {
  53637. name: "Normal",
  53638. height: math.unit(5 + 3/12, "feet"),
  53639. default: true
  53640. },
  53641. ]
  53642. ))
  53643. characterMakers.push(() => makeCharacter(
  53644. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53645. {
  53646. side: {
  53647. height: math.unit(6 + 3/12, "feet"),
  53648. weight: math.unit(200, "kg"),
  53649. name: "Side",
  53650. image: {
  53651. source: "./media/characters/juniper-skunktaur/side.svg",
  53652. extra: 1574/1229,
  53653. bottom: 38/1612
  53654. }
  53655. },
  53656. front: {
  53657. height: math.unit(6 + 3/12, "feet"),
  53658. weight: math.unit(200, "kg"),
  53659. name: "Front",
  53660. image: {
  53661. source: "./media/characters/juniper-skunktaur/front.svg",
  53662. extra: 1337/1278,
  53663. bottom: 22/1359
  53664. }
  53665. },
  53666. back: {
  53667. height: math.unit(6 + 3/12, "feet"),
  53668. weight: math.unit(200, "kg"),
  53669. name: "Back",
  53670. image: {
  53671. source: "./media/characters/juniper-skunktaur/back.svg",
  53672. extra: 1618/1273,
  53673. bottom: 13/1631
  53674. }
  53675. },
  53676. top: {
  53677. height: math.unit(2.62, "feet"),
  53678. weight: math.unit(200, "kg"),
  53679. name: "Top",
  53680. image: {
  53681. source: "./media/characters/juniper-skunktaur/top.svg"
  53682. }
  53683. },
  53684. },
  53685. [
  53686. {
  53687. name: "Normal",
  53688. height: math.unit(6 + 3/12, "feet"),
  53689. default: true
  53690. },
  53691. ]
  53692. ))
  53693. characterMakers.push(() => makeCharacter(
  53694. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53695. {
  53696. front: {
  53697. height: math.unit(20.5, "feet"),
  53698. name: "Front",
  53699. image: {
  53700. source: "./media/characters/rei/front.svg",
  53701. extra: 1349/1195,
  53702. bottom: 31/1380
  53703. }
  53704. },
  53705. back: {
  53706. height: math.unit(20.5, "feet"),
  53707. name: "Back",
  53708. image: {
  53709. source: "./media/characters/rei/back.svg",
  53710. extra: 1358/1204,
  53711. bottom: 22/1380
  53712. }
  53713. },
  53714. pawsDigi: {
  53715. height: math.unit(3.45, "feet"),
  53716. name: "Paws (Digi)",
  53717. image: {
  53718. source: "./media/characters/rei/paws-digi.svg"
  53719. }
  53720. },
  53721. pawsPlanti: {
  53722. height: math.unit(3.45, "feet"),
  53723. name: "Paws (Planti)",
  53724. image: {
  53725. source: "./media/characters/rei/paws-planti.svg"
  53726. }
  53727. },
  53728. },
  53729. [
  53730. {
  53731. name: "Normal",
  53732. height: math.unit(20.5, "feet"),
  53733. default: true
  53734. },
  53735. ]
  53736. ))
  53737. characterMakers.push(() => makeCharacter(
  53738. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53739. {
  53740. front: {
  53741. height: math.unit(5 + 11/12, "feet"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/carina/front.svg",
  53745. extra: 1720/1449,
  53746. bottom: 14/1734
  53747. }
  53748. },
  53749. back: {
  53750. height: math.unit(5 + 11/12, "feet"),
  53751. name: "Back",
  53752. image: {
  53753. source: "./media/characters/carina/back.svg",
  53754. extra: 1493/1445,
  53755. bottom: 17/1510
  53756. }
  53757. },
  53758. paw: {
  53759. height: math.unit(0.92, "feet"),
  53760. name: "Paw",
  53761. image: {
  53762. source: "./media/characters/carina/paw.svg"
  53763. }
  53764. },
  53765. },
  53766. [
  53767. {
  53768. name: "Normal",
  53769. height: math.unit(5 + 11/12, "feet"),
  53770. default: true
  53771. },
  53772. ]
  53773. ))
  53774. characterMakers.push(() => makeCharacter(
  53775. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53776. {
  53777. normal_front: {
  53778. height: math.unit(4.88, "meters"),
  53779. name: "Front",
  53780. image: {
  53781. source: "./media/characters/maya/normal-front.svg",
  53782. extra: 1222/1145,
  53783. bottom: 57/1279
  53784. },
  53785. form: "normal",
  53786. default: true
  53787. },
  53788. monstrous_front: {
  53789. height: math.unit(10, "meters"),
  53790. name: "Front",
  53791. image: {
  53792. source: "./media/characters/maya/monstrous-front.svg",
  53793. extra: 1523/1109,
  53794. bottom: 113/1636
  53795. },
  53796. form: "monstrous",
  53797. extraAttributes: {
  53798. "swallowSize": {
  53799. name: "Tailmaw Bite Size",
  53800. power: 3,
  53801. type: "volume",
  53802. base: math.unit(43000, "liters")
  53803. },
  53804. }
  53805. },
  53806. taur_front: {
  53807. height: math.unit(10, "meters"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/maya/taur-front.svg",
  53811. extra: 743/506,
  53812. bottom: 101/844
  53813. },
  53814. form: "taur",
  53815. },
  53816. },
  53817. [
  53818. {
  53819. name: "Normal",
  53820. height: math.unit(4.88, "meters"),
  53821. default: true,
  53822. form: "normal"
  53823. },
  53824. {
  53825. name: "Macro",
  53826. height: math.unit(38.1, "meters"),
  53827. form: "normal"
  53828. },
  53829. {
  53830. name: "Macro+",
  53831. height: math.unit(152.4, "meters"),
  53832. form: "normal"
  53833. },
  53834. {
  53835. name: "Macro++",
  53836. height: math.unit(16.09, "km"),
  53837. form: "normal"
  53838. },
  53839. {
  53840. name: "Mega-macro",
  53841. height: math.unit(700, "megameters"),
  53842. form: "normal"
  53843. },
  53844. {
  53845. name: "Satiated",
  53846. height: math.unit(10, "meters"),
  53847. default: true,
  53848. form: "monstrous"
  53849. },
  53850. {
  53851. name: "Hungry",
  53852. height: math.unit(75, "meters"),
  53853. form: "monstrous"
  53854. },
  53855. {
  53856. name: "Ravenous",
  53857. height: math.unit(500, "meters"),
  53858. form: "monstrous"
  53859. },
  53860. {
  53861. name: "\"Normal\"",
  53862. height: math.unit(10, "meters"),
  53863. form: "taur"
  53864. },
  53865. {
  53866. name: "Macro",
  53867. height: math.unit(50, "meters"),
  53868. form: "taur"
  53869. },
  53870. ],
  53871. {
  53872. "normal": {
  53873. name: "Normal",
  53874. default: true
  53875. },
  53876. "monstrous": {
  53877. name: "Monstrous",
  53878. },
  53879. "taur": {
  53880. name: "Taur",
  53881. },
  53882. }
  53883. ))
  53884. characterMakers.push(() => makeCharacter(
  53885. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53886. {
  53887. front: {
  53888. height: math.unit(6 + 2/12, "feet"),
  53889. weight: math.unit(500, "lb"),
  53890. preyCapacity: math.unit(4, "people"),
  53891. name: "Front",
  53892. image: {
  53893. source: "./media/characters/yepir/front.svg"
  53894. }
  53895. },
  53896. side: {
  53897. height: math.unit(6 + 2/12, "feet"),
  53898. weight: math.unit(500, "lb"),
  53899. preyCapacity: math.unit(4, "people"),
  53900. name: "Side",
  53901. image: {
  53902. source: "./media/characters/yepir/side.svg"
  53903. }
  53904. },
  53905. paw: {
  53906. height: math.unit(1.05, "feet"),
  53907. name: "Paw",
  53908. image: {
  53909. source: "./media/characters/yepir/paw.svg"
  53910. }
  53911. },
  53912. },
  53913. [
  53914. {
  53915. name: "Normal",
  53916. height: math.unit(6 + 2/12, "feet"),
  53917. default: true
  53918. },
  53919. ]
  53920. ))
  53921. characterMakers.push(() => makeCharacter(
  53922. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53923. {
  53924. front: {
  53925. height: math.unit(5 + 4/12, "feet"),
  53926. name: "Front",
  53927. image: {
  53928. source: "./media/characters/russec/front.svg",
  53929. extra: 1926/1626,
  53930. bottom: 72/1998
  53931. }
  53932. },
  53933. back: {
  53934. height: math.unit(5 + 4/12, "feet"),
  53935. name: "Back",
  53936. image: {
  53937. source: "./media/characters/russec/back.svg",
  53938. extra: 1910/1591,
  53939. bottom: 48/1958
  53940. }
  53941. },
  53942. },
  53943. [
  53944. {
  53945. name: "Small",
  53946. height: math.unit(5 + 4/12, "feet")
  53947. },
  53948. {
  53949. name: "Normal",
  53950. height: math.unit(72, "feet"),
  53951. default: true
  53952. },
  53953. ]
  53954. ))
  53955. characterMakers.push(() => makeCharacter(
  53956. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53957. {
  53958. side: {
  53959. height: math.unit(12, "feet"),
  53960. name: "Side",
  53961. image: {
  53962. source: "./media/characters/cianus/side.svg",
  53963. extra: 808/526,
  53964. bottom: 61/869
  53965. }
  53966. },
  53967. },
  53968. [
  53969. {
  53970. name: "Normal",
  53971. height: math.unit(12, "feet"),
  53972. default: true
  53973. },
  53974. ]
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53978. {
  53979. front: {
  53980. height: math.unit(9 + 6/12, "feet"),
  53981. weight: math.unit(300, "lb"),
  53982. name: "Front",
  53983. image: {
  53984. source: "./media/characters/ahab/front.svg",
  53985. extra: 1897/1868,
  53986. bottom: 121/2018
  53987. }
  53988. },
  53989. frontNsfw: {
  53990. height: math.unit(9 + 6/12, "feet"),
  53991. weight: math.unit(300, "lb"),
  53992. name: "Front-nsfw",
  53993. image: {
  53994. source: "./media/characters/ahab/front-nsfw.svg",
  53995. extra: 1897/1868,
  53996. bottom: 121/2018
  53997. }
  53998. },
  53999. },
  54000. [
  54001. {
  54002. name: "Normal",
  54003. height: math.unit(9 + 6/12, "feet")
  54004. },
  54005. {
  54006. name: "Macro",
  54007. height: math.unit(657, "feet"),
  54008. default: true
  54009. },
  54010. ]
  54011. ))
  54012. characterMakers.push(() => makeCharacter(
  54013. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54014. {
  54015. front: {
  54016. height: math.unit(2.69, "meters"),
  54017. weight: math.unit(132, "kg"),
  54018. name: "Front",
  54019. image: {
  54020. source: "./media/characters/aarkus/front.svg",
  54021. extra: 1400/1231,
  54022. bottom: 34/1434
  54023. }
  54024. },
  54025. back: {
  54026. height: math.unit(2.69, "meters"),
  54027. weight: math.unit(132, "kg"),
  54028. name: "Back",
  54029. image: {
  54030. source: "./media/characters/aarkus/back.svg",
  54031. extra: 1381/1218,
  54032. bottom: 30/1411
  54033. }
  54034. },
  54035. frontNsfw: {
  54036. height: math.unit(2.69, "meters"),
  54037. weight: math.unit(132, "kg"),
  54038. name: "Front (NSFW)",
  54039. image: {
  54040. source: "./media/characters/aarkus/front-nsfw.svg",
  54041. extra: 1400/1231,
  54042. bottom: 34/1434
  54043. }
  54044. },
  54045. foot: {
  54046. height: math.unit(1.45, "feet"),
  54047. name: "Foot",
  54048. image: {
  54049. source: "./media/characters/aarkus/foot.svg"
  54050. }
  54051. },
  54052. head: {
  54053. height: math.unit(2.85, "feet"),
  54054. name: "Head",
  54055. image: {
  54056. source: "./media/characters/aarkus/head.svg"
  54057. }
  54058. },
  54059. headAlt: {
  54060. height: math.unit(3.07, "feet"),
  54061. name: "Head (Alt)",
  54062. image: {
  54063. source: "./media/characters/aarkus/head-alt.svg"
  54064. }
  54065. },
  54066. mouth: {
  54067. height: math.unit(1.25, "feet"),
  54068. name: "Mouth",
  54069. image: {
  54070. source: "./media/characters/aarkus/mouth.svg"
  54071. }
  54072. },
  54073. dick: {
  54074. height: math.unit(1.77, "feet"),
  54075. name: "Dick",
  54076. image: {
  54077. source: "./media/characters/aarkus/dick.svg"
  54078. }
  54079. },
  54080. },
  54081. [
  54082. {
  54083. name: "Normal",
  54084. height: math.unit(2.69, "meters"),
  54085. default: true
  54086. },
  54087. {
  54088. name: "Macro",
  54089. height: math.unit(269, "meters")
  54090. },
  54091. {
  54092. name: "Macro+",
  54093. height: math.unit(672.5, "meters")
  54094. },
  54095. {
  54096. name: "Megamacro",
  54097. height: math.unit(2.017, "km")
  54098. },
  54099. ]
  54100. ))
  54101. characterMakers.push(() => makeCharacter(
  54102. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54103. {
  54104. front: {
  54105. height: math.unit(23.47, "cm"),
  54106. weight: math.unit(600, "grams"),
  54107. name: "Front",
  54108. image: {
  54109. source: "./media/characters/diode/front.svg",
  54110. extra: 1778/1396,
  54111. bottom: 95/1873
  54112. }
  54113. },
  54114. side: {
  54115. height: math.unit(23.47, "cm"),
  54116. weight: math.unit(600, "grams"),
  54117. name: "Side",
  54118. image: {
  54119. source: "./media/characters/diode/side.svg",
  54120. extra: 1831/1404,
  54121. bottom: 86/1917
  54122. }
  54123. },
  54124. wings: {
  54125. height: math.unit(0.683, "feet"),
  54126. name: "Wings",
  54127. image: {
  54128. source: "./media/characters/diode/wings.svg"
  54129. }
  54130. },
  54131. },
  54132. [
  54133. {
  54134. name: "Normal",
  54135. height: math.unit(23.47, "cm"),
  54136. default: true
  54137. },
  54138. ]
  54139. ))
  54140. characterMakers.push(() => makeCharacter(
  54141. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54142. {
  54143. front: {
  54144. height: math.unit(6 + 3/12, "feet"),
  54145. weight: math.unit(250, "lb"),
  54146. name: "Front",
  54147. image: {
  54148. source: "./media/characters/reika/front.svg",
  54149. extra: 1120/1078,
  54150. bottom: 86/1206
  54151. }
  54152. },
  54153. },
  54154. [
  54155. {
  54156. name: "Normal",
  54157. height: math.unit(6 + 3/12, "feet"),
  54158. default: true
  54159. },
  54160. ]
  54161. ))
  54162. characterMakers.push(() => makeCharacter(
  54163. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54164. {
  54165. front: {
  54166. height: math.unit(16 + 8/12, "feet"),
  54167. weight: math.unit(9000, "lb"),
  54168. name: "Front",
  54169. image: {
  54170. source: "./media/characters/lokuto-takama/front.svg",
  54171. extra: 1774/1632,
  54172. bottom: 147/1921
  54173. },
  54174. extraAttributes: {
  54175. "bustWidth": {
  54176. name: "Bust Width",
  54177. power: 1,
  54178. type: "length",
  54179. base: math.unit(2.4, "meters")
  54180. },
  54181. "breastWeight": {
  54182. name: "Breast Weight",
  54183. power: 3,
  54184. type: "mass",
  54185. base: math.unit(1000, "kg")
  54186. },
  54187. }
  54188. },
  54189. },
  54190. [
  54191. {
  54192. name: "Normal",
  54193. height: math.unit(16 + 8/12, "feet"),
  54194. default: true
  54195. },
  54196. ]
  54197. ))
  54198. characterMakers.push(() => makeCharacter(
  54199. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54200. {
  54201. front: {
  54202. height: math.unit(10, "cm"),
  54203. weight: math.unit(850, "grams"),
  54204. name: "Front",
  54205. image: {
  54206. source: "./media/characters/owak-bone/front.svg",
  54207. extra: 1965/1801,
  54208. bottom: 31/1996
  54209. }
  54210. },
  54211. },
  54212. [
  54213. {
  54214. name: "Normal",
  54215. height: math.unit(10, "cm"),
  54216. default: true
  54217. },
  54218. ]
  54219. ))
  54220. characterMakers.push(() => makeCharacter(
  54221. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54222. {
  54223. front: {
  54224. height: math.unit(2 + 6/12, "feet"),
  54225. weight: math.unit(9, "lb"),
  54226. name: "Front",
  54227. image: {
  54228. source: "./media/characters/muffin/front.svg",
  54229. extra: 1220/1195,
  54230. bottom: 84/1304
  54231. }
  54232. },
  54233. },
  54234. [
  54235. {
  54236. name: "Normal",
  54237. height: math.unit(2 + 6/12, "feet"),
  54238. default: true
  54239. },
  54240. ]
  54241. ))
  54242. characterMakers.push(() => makeCharacter(
  54243. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54244. {
  54245. front: {
  54246. height: math.unit(7, "feet"),
  54247. name: "Front",
  54248. image: {
  54249. source: "./media/characters/chimera/front.svg",
  54250. extra: 1752/1614,
  54251. bottom: 68/1820
  54252. }
  54253. },
  54254. },
  54255. [
  54256. {
  54257. name: "Normal",
  54258. height: math.unit(7, "feet")
  54259. },
  54260. {
  54261. name: "Gigamacro",
  54262. height: math.unit(2.9, "gigameters"),
  54263. default: true
  54264. },
  54265. {
  54266. name: "Universal",
  54267. height: math.unit(1.56e26, "yottameters")
  54268. },
  54269. ]
  54270. ))
  54271. characterMakers.push(() => makeCharacter(
  54272. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54273. {
  54274. front: {
  54275. height: math.unit(3, "feet"),
  54276. weight: math.unit(20, "lb"),
  54277. name: "Front",
  54278. image: {
  54279. source: "./media/characters/kit-fennec-fox/front.svg",
  54280. extra: 1027/932,
  54281. bottom: 16/1043
  54282. }
  54283. },
  54284. back: {
  54285. height: math.unit(3, "feet"),
  54286. weight: math.unit(20, "lb"),
  54287. name: "Back",
  54288. image: {
  54289. source: "./media/characters/kit-fennec-fox/back.svg",
  54290. extra: 1027/932,
  54291. bottom: 16/1043
  54292. }
  54293. },
  54294. },
  54295. [
  54296. {
  54297. name: "Normal",
  54298. height: math.unit(3, "feet"),
  54299. default: true
  54300. },
  54301. ]
  54302. ))
  54303. characterMakers.push(() => makeCharacter(
  54304. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54305. {
  54306. front: {
  54307. height: math.unit(167, "cm"),
  54308. name: "Front",
  54309. image: {
  54310. source: "./media/characters/blue-otter/front.svg",
  54311. extra: 1951/1920,
  54312. bottom: 31/1982
  54313. }
  54314. },
  54315. },
  54316. [
  54317. {
  54318. name: "Otter-Sized",
  54319. height: math.unit(100, "cm")
  54320. },
  54321. {
  54322. name: "Normal",
  54323. height: math.unit(167, "cm"),
  54324. default: true
  54325. },
  54326. ]
  54327. ))
  54328. characterMakers.push(() => makeCharacter(
  54329. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54330. {
  54331. front: {
  54332. height: math.unit(4 + 4/12, "feet"),
  54333. name: "Front",
  54334. image: {
  54335. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54336. extra: 1072/1067,
  54337. bottom: 117/1189
  54338. }
  54339. },
  54340. back: {
  54341. height: math.unit(4 + 4/12, "feet"),
  54342. name: "Back",
  54343. image: {
  54344. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54345. extra: 1135/1129,
  54346. bottom: 57/1192
  54347. }
  54348. },
  54349. head: {
  54350. height: math.unit(1.77, "feet"),
  54351. name: "Head",
  54352. image: {
  54353. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54354. }
  54355. },
  54356. },
  54357. [
  54358. {
  54359. name: "Normal",
  54360. height: math.unit(4 + 4/12, "feet"),
  54361. default: true
  54362. },
  54363. ]
  54364. ))
  54365. characterMakers.push(() => makeCharacter(
  54366. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54367. {
  54368. front: {
  54369. height: math.unit(2, "inches"),
  54370. name: "Front",
  54371. image: {
  54372. source: "./media/characters/carley-hartford/front.svg",
  54373. extra: 1035/988,
  54374. bottom: 23/1058
  54375. }
  54376. },
  54377. back: {
  54378. height: math.unit(2, "inches"),
  54379. name: "Back",
  54380. image: {
  54381. source: "./media/characters/carley-hartford/back.svg",
  54382. extra: 1035/988,
  54383. bottom: 23/1058
  54384. }
  54385. },
  54386. dressed: {
  54387. height: math.unit(2, "inches"),
  54388. name: "Dressed",
  54389. image: {
  54390. source: "./media/characters/carley-hartford/dressed.svg",
  54391. extra: 651/620,
  54392. bottom: 0/651
  54393. }
  54394. },
  54395. },
  54396. [
  54397. {
  54398. name: "Micro",
  54399. height: math.unit(2, "inches"),
  54400. default: true
  54401. },
  54402. {
  54403. name: "Macro",
  54404. height: math.unit(6 + 3/12, "feet")
  54405. },
  54406. ]
  54407. ))
  54408. characterMakers.push(() => makeCharacter(
  54409. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54410. {
  54411. front: {
  54412. height: math.unit(2 + 3/12, "feet"),
  54413. weight: math.unit(15 + 7/16, "lb"),
  54414. name: "Front",
  54415. image: {
  54416. source: "./media/characters/duke/front.svg",
  54417. extra: 910/815,
  54418. bottom: 30/940
  54419. }
  54420. },
  54421. },
  54422. [
  54423. {
  54424. name: "Normal",
  54425. height: math.unit(2 + 3/12, "feet"),
  54426. default: true
  54427. },
  54428. ]
  54429. ))
  54430. characterMakers.push(() => makeCharacter(
  54431. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54432. {
  54433. front: {
  54434. height: math.unit(5 + 4/12, "feet"),
  54435. weight: math.unit(156, "lb"),
  54436. name: "Front",
  54437. image: {
  54438. source: "./media/characters/dein/front.svg",
  54439. extra: 855/815,
  54440. bottom: 48/903
  54441. }
  54442. },
  54443. side: {
  54444. height: math.unit(5 + 4/12, "feet"),
  54445. weight: math.unit(156, "lb"),
  54446. name: "side",
  54447. image: {
  54448. source: "./media/characters/dein/side.svg",
  54449. extra: 846/803,
  54450. bottom: 25/871
  54451. }
  54452. },
  54453. maw: {
  54454. height: math.unit(1.45, "feet"),
  54455. name: "Maw",
  54456. image: {
  54457. source: "./media/characters/dein/maw.svg"
  54458. }
  54459. },
  54460. },
  54461. [
  54462. {
  54463. name: "Ferret Sized",
  54464. height: math.unit(2 + 5/12, "feet")
  54465. },
  54466. {
  54467. name: "Normal",
  54468. height: math.unit(5 + 4/12, "feet"),
  54469. default: true
  54470. },
  54471. ]
  54472. ))
  54473. characterMakers.push(() => makeCharacter(
  54474. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54475. {
  54476. front: {
  54477. height: math.unit(84 + 8/12, "feet"),
  54478. weight: math.unit(942180, "lb"),
  54479. name: "Front",
  54480. image: {
  54481. source: "./media/characters/daurine-arima/front.svg",
  54482. extra: 1989/1782,
  54483. bottom: 37/2026
  54484. }
  54485. },
  54486. side: {
  54487. height: math.unit(84 + 8/12, "feet"),
  54488. weight: math.unit(942180, "lb"),
  54489. name: "Side",
  54490. image: {
  54491. source: "./media/characters/daurine-arima/side.svg",
  54492. extra: 1997/1790,
  54493. bottom: 21/2018
  54494. }
  54495. },
  54496. back: {
  54497. height: math.unit(84 + 8/12, "feet"),
  54498. weight: math.unit(942180, "lb"),
  54499. name: "Back",
  54500. image: {
  54501. source: "./media/characters/daurine-arima/back.svg",
  54502. extra: 1992/1800,
  54503. bottom: 12/2004
  54504. }
  54505. },
  54506. head: {
  54507. height: math.unit(15.5, "feet"),
  54508. name: "Head",
  54509. image: {
  54510. source: "./media/characters/daurine-arima/head.svg"
  54511. }
  54512. },
  54513. headAlt: {
  54514. height: math.unit(19.19, "feet"),
  54515. name: "Head (Alt)",
  54516. image: {
  54517. source: "./media/characters/daurine-arima/head-alt.svg"
  54518. }
  54519. },
  54520. },
  54521. [
  54522. {
  54523. name: "Minimum height",
  54524. height: math.unit(8 + 10/12, "feet")
  54525. },
  54526. {
  54527. name: "Comfort height",
  54528. height: math.unit(19 + 6 /12, "feet")
  54529. },
  54530. {
  54531. name: "\"Normal\" height",
  54532. height: math.unit(28 + 10/12, "feet")
  54533. },
  54534. {
  54535. name: "Base height",
  54536. height: math.unit(84 + 8/12, "feet"),
  54537. default: true
  54538. },
  54539. {
  54540. name: "Mini-macro",
  54541. height: math.unit(2360, "feet")
  54542. },
  54543. {
  54544. name: "Macro",
  54545. height: math.unit(10, "miles")
  54546. },
  54547. {
  54548. name: "Goddess",
  54549. height: math.unit(9.99e40, "yottameters")
  54550. },
  54551. ]
  54552. ))
  54553. characterMakers.push(() => makeCharacter(
  54554. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54555. {
  54556. front: {
  54557. height: math.unit(2.3, "meters"),
  54558. name: "Front",
  54559. image: {
  54560. source: "./media/characters/cilenomon/front.svg",
  54561. extra: 1963/1778,
  54562. bottom: 54/2017
  54563. }
  54564. },
  54565. },
  54566. [
  54567. {
  54568. name: "Normal",
  54569. height: math.unit(2.3, "meters"),
  54570. default: true
  54571. },
  54572. {
  54573. name: "Big",
  54574. height: math.unit(5, "meters")
  54575. },
  54576. {
  54577. name: "Macro",
  54578. height: math.unit(30, "meters")
  54579. },
  54580. {
  54581. name: "True",
  54582. height: math.unit(1, "universe")
  54583. },
  54584. ]
  54585. ))
  54586. characterMakers.push(() => makeCharacter(
  54587. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54588. {
  54589. front: {
  54590. height: math.unit(5, "feet"),
  54591. name: "Front",
  54592. image: {
  54593. source: "./media/characters/sen-mink/front.svg",
  54594. extra: 1727/1675,
  54595. bottom: 35/1762
  54596. }
  54597. },
  54598. },
  54599. [
  54600. {
  54601. name: "Normal",
  54602. height: math.unit(5, "feet"),
  54603. default: true
  54604. },
  54605. ]
  54606. ))
  54607. characterMakers.push(() => makeCharacter(
  54608. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54609. {
  54610. front: {
  54611. height: math.unit(5.42999, "feet"),
  54612. weight: math.unit(100, "lb"),
  54613. name: "Front",
  54614. image: {
  54615. source: "./media/characters/ophois/front.svg",
  54616. extra: 1429/1286,
  54617. bottom: 60/1489
  54618. }
  54619. },
  54620. },
  54621. [
  54622. {
  54623. name: "Normal",
  54624. height: math.unit(5.42999, "feet"),
  54625. default: true
  54626. },
  54627. ]
  54628. ))
  54629. characterMakers.push(() => makeCharacter(
  54630. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54631. {
  54632. front: {
  54633. height: math.unit(2, "meters"),
  54634. name: "Front",
  54635. image: {
  54636. source: "./media/characters/riley/front.svg",
  54637. extra: 1779/1754,
  54638. bottom: 139/1918
  54639. }
  54640. },
  54641. },
  54642. [
  54643. {
  54644. name: "Normal",
  54645. height: math.unit(2, "meters"),
  54646. default: true
  54647. },
  54648. ]
  54649. ))
  54650. characterMakers.push(() => makeCharacter(
  54651. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54652. {
  54653. front: {
  54654. height: math.unit(6 + 2/12, "feet"),
  54655. weight: math.unit(195, "lb"),
  54656. preyCapacity: math.unit(6, "people"),
  54657. name: "Front",
  54658. image: {
  54659. source: "./media/characters/shuken-flash/front.svg",
  54660. extra: 1905/1739,
  54661. bottom: 65/1970
  54662. }
  54663. },
  54664. back: {
  54665. height: math.unit(6 + 2/12, "feet"),
  54666. weight: math.unit(195, "lb"),
  54667. preyCapacity: math.unit(6, "people"),
  54668. name: "Back",
  54669. image: {
  54670. source: "./media/characters/shuken-flash/back.svg",
  54671. extra: 1912/1751,
  54672. bottom: 13/1925
  54673. }
  54674. },
  54675. },
  54676. [
  54677. {
  54678. name: "Normal",
  54679. height: math.unit(6 + 2/12, "feet"),
  54680. default: true
  54681. },
  54682. ]
  54683. ))
  54684. characterMakers.push(() => makeCharacter(
  54685. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54686. {
  54687. front: {
  54688. height: math.unit(5 + 9/12, "feet"),
  54689. weight: math.unit(150, "lb"),
  54690. name: "Front",
  54691. image: {
  54692. source: "./media/characters/plat/front.svg",
  54693. extra: 1816/1703,
  54694. bottom: 43/1859
  54695. }
  54696. },
  54697. side: {
  54698. height: math.unit(5 + 9/12, "feet"),
  54699. weight: math.unit(300, "lb"),
  54700. name: "Side",
  54701. image: {
  54702. source: "./media/characters/plat/side.svg",
  54703. extra: 1824/1699,
  54704. bottom: 18/1842
  54705. }
  54706. },
  54707. },
  54708. [
  54709. {
  54710. name: "Normal",
  54711. height: math.unit(5 + 9/12, "feet"),
  54712. default: true
  54713. },
  54714. ]
  54715. ))
  54716. characterMakers.push(() => makeCharacter(
  54717. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54718. {
  54719. front: {
  54720. height: math.unit(9, "feet"),
  54721. weight: math.unit(1800, "lb"),
  54722. name: "Front",
  54723. image: {
  54724. source: "./media/characters/elaine/front.svg",
  54725. extra: 1833/1354,
  54726. bottom: 25/1858
  54727. }
  54728. },
  54729. back: {
  54730. height: math.unit(8.8, "feet"),
  54731. weight: math.unit(1800, "lb"),
  54732. name: "Back",
  54733. image: {
  54734. source: "./media/characters/elaine/back.svg",
  54735. extra: 1641/1233,
  54736. bottom: 53/1694
  54737. }
  54738. },
  54739. },
  54740. [
  54741. {
  54742. name: "Normal",
  54743. height: math.unit(9, "feet"),
  54744. default: true
  54745. },
  54746. ]
  54747. ))
  54748. characterMakers.push(() => makeCharacter(
  54749. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54750. {
  54751. front: {
  54752. height: math.unit(17 + 9/12, "feet"),
  54753. weight: math.unit(8000, "lb"),
  54754. name: "Front",
  54755. image: {
  54756. source: "./media/characters/vera-raven/front.svg",
  54757. extra: 1457/1412,
  54758. bottom: 121/1578
  54759. }
  54760. },
  54761. side: {
  54762. height: math.unit(17 + 9/12, "feet"),
  54763. weight: math.unit(8000, "lb"),
  54764. name: "Side",
  54765. image: {
  54766. source: "./media/characters/vera-raven/side.svg",
  54767. extra: 1510/1464,
  54768. bottom: 54/1564
  54769. }
  54770. },
  54771. },
  54772. [
  54773. {
  54774. name: "Normal",
  54775. height: math.unit(17 + 9/12, "feet"),
  54776. default: true
  54777. },
  54778. ]
  54779. ))
  54780. characterMakers.push(() => makeCharacter(
  54781. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54782. {
  54783. dressed: {
  54784. height: math.unit(6 + 9/12, "feet"),
  54785. name: "Dressed",
  54786. image: {
  54787. source: "./media/characters/nakisha/dressed.svg",
  54788. extra: 1909/1757,
  54789. bottom: 48/1957
  54790. }
  54791. },
  54792. nude: {
  54793. height: math.unit(6 + 9/12, "feet"),
  54794. name: "Nude",
  54795. image: {
  54796. source: "./media/characters/nakisha/nude.svg",
  54797. extra: 1917/1765,
  54798. bottom: 34/1951
  54799. }
  54800. },
  54801. },
  54802. [
  54803. {
  54804. name: "Normal",
  54805. height: math.unit(6 + 9/12, "feet"),
  54806. default: true
  54807. },
  54808. ]
  54809. ))
  54810. characterMakers.push(() => makeCharacter(
  54811. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54812. {
  54813. front: {
  54814. height: math.unit(87, "meters"),
  54815. name: "Front",
  54816. image: {
  54817. source: "./media/characters/serafin/front.svg",
  54818. extra: 1919/1776,
  54819. bottom: 65/1984
  54820. }
  54821. },
  54822. },
  54823. [
  54824. {
  54825. name: "Normal",
  54826. height: math.unit(87, "meters"),
  54827. default: true
  54828. },
  54829. ]
  54830. ))
  54831. characterMakers.push(() => makeCharacter(
  54832. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54833. {
  54834. front: {
  54835. height: math.unit(6, "feet"),
  54836. weight: math.unit(200, "lb"),
  54837. name: "Front",
  54838. image: {
  54839. source: "./media/characters/poptart/front.svg",
  54840. extra: 615/583,
  54841. bottom: 23/638
  54842. }
  54843. },
  54844. back: {
  54845. height: math.unit(6, "feet"),
  54846. weight: math.unit(200, "lb"),
  54847. name: "Back",
  54848. image: {
  54849. source: "./media/characters/poptart/back.svg",
  54850. extra: 617/584,
  54851. bottom: 22/639
  54852. }
  54853. },
  54854. frontNsfw: {
  54855. height: math.unit(6, "feet"),
  54856. weight: math.unit(200, "lb"),
  54857. name: "Front (NSFW)",
  54858. image: {
  54859. source: "./media/characters/poptart/front-nsfw.svg",
  54860. extra: 615/583,
  54861. bottom: 23/638
  54862. }
  54863. },
  54864. backNsfw: {
  54865. height: math.unit(6, "feet"),
  54866. weight: math.unit(200, "lb"),
  54867. name: "Back (NSFW)",
  54868. image: {
  54869. source: "./media/characters/poptart/back-nsfw.svg",
  54870. extra: 617/584,
  54871. bottom: 22/639
  54872. }
  54873. },
  54874. hand: {
  54875. height: math.unit(1.14, "feet"),
  54876. name: "Hand",
  54877. image: {
  54878. source: "./media/characters/poptart/hand.svg"
  54879. }
  54880. },
  54881. foot: {
  54882. height: math.unit(1.5, "feet"),
  54883. name: "Foot",
  54884. image: {
  54885. source: "./media/characters/poptart/foot.svg"
  54886. }
  54887. },
  54888. },
  54889. [
  54890. {
  54891. name: "Normal",
  54892. height: math.unit(6, "feet"),
  54893. default: true
  54894. },
  54895. {
  54896. name: "Grande",
  54897. height: math.unit(350, "feet")
  54898. },
  54899. {
  54900. name: "Massif",
  54901. height: math.unit(967, "feet")
  54902. },
  54903. ]
  54904. ))
  54905. characterMakers.push(() => makeCharacter(
  54906. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54907. {
  54908. hyenaSide: {
  54909. height: math.unit(120, "cm"),
  54910. weight: math.unit(120, "lb"),
  54911. name: "Side",
  54912. image: {
  54913. source: "./media/characters/trance/hyena-side.svg",
  54914. extra: 998/904,
  54915. bottom: 76/1074
  54916. }
  54917. },
  54918. },
  54919. [
  54920. {
  54921. name: "Normal",
  54922. height: math.unit(120, "cm"),
  54923. default: true
  54924. },
  54925. {
  54926. name: "Dire",
  54927. height: math.unit(230, "cm")
  54928. },
  54929. {
  54930. name: "Macro",
  54931. height: math.unit(37, "feet")
  54932. },
  54933. ]
  54934. ))
  54935. characterMakers.push(() => makeCharacter(
  54936. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54937. {
  54938. front: {
  54939. height: math.unit(6 + 3/12, "feet"),
  54940. name: "Front",
  54941. image: {
  54942. source: "./media/characters/michael-berretta/front.svg",
  54943. extra: 515/494,
  54944. bottom: 20/535
  54945. }
  54946. },
  54947. back: {
  54948. height: math.unit(6 + 3/12, "feet"),
  54949. name: "Back",
  54950. image: {
  54951. source: "./media/characters/michael-berretta/back.svg",
  54952. extra: 520/497,
  54953. bottom: 21/541
  54954. }
  54955. },
  54956. frontNsfw: {
  54957. height: math.unit(6 + 3/12, "feet"),
  54958. name: "Front (NSFW)",
  54959. image: {
  54960. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54961. extra: 515/494,
  54962. bottom: 20/535
  54963. }
  54964. },
  54965. dick: {
  54966. height: math.unit(1, "feet"),
  54967. name: "Dick",
  54968. image: {
  54969. source: "./media/characters/michael-berretta/dick.svg"
  54970. }
  54971. },
  54972. },
  54973. [
  54974. {
  54975. name: "Normal",
  54976. height: math.unit(6 + 3/12, "feet"),
  54977. default: true
  54978. },
  54979. {
  54980. name: "Big",
  54981. height: math.unit(12, "feet")
  54982. },
  54983. {
  54984. name: "Macro",
  54985. height: math.unit(187.5, "feet")
  54986. },
  54987. ]
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54991. {
  54992. front: {
  54993. height: math.unit(9 + 9/12, "feet"),
  54994. weight: math.unit(1244, "lb"),
  54995. name: "Front",
  54996. image: {
  54997. source: "./media/characters/stella-edgecomb/front.svg",
  54998. extra: 1835/1706,
  54999. bottom: 49/1884
  55000. }
  55001. },
  55002. pen: {
  55003. height: math.unit(0.95, "feet"),
  55004. name: "Pen",
  55005. image: {
  55006. source: "./media/characters/stella-edgecomb/pen.svg"
  55007. }
  55008. },
  55009. },
  55010. [
  55011. {
  55012. name: "Cozy Bear",
  55013. height: math.unit(0.5, "inches")
  55014. },
  55015. {
  55016. name: "Normal",
  55017. height: math.unit(9 + 9/12, "feet"),
  55018. default: true
  55019. },
  55020. {
  55021. name: "Giga Bear",
  55022. height: math.unit(1, "mile")
  55023. },
  55024. {
  55025. name: "Great Bear",
  55026. height: math.unit(53, "miles")
  55027. },
  55028. {
  55029. name: "Goddess Bear",
  55030. height: math.unit(40000, "miles")
  55031. },
  55032. {
  55033. name: "Sun Bear",
  55034. height: math.unit(900000, "miles")
  55035. },
  55036. ]
  55037. ))
  55038. characterMakers.push(() => makeCharacter(
  55039. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55040. {
  55041. anthroFront: {
  55042. height: math.unit(556, "cm"),
  55043. weight: math.unit(2650, "kg"),
  55044. preyCapacity: math.unit(3, "people"),
  55045. name: "Front",
  55046. image: {
  55047. source: "./media/characters/ash´iika/front.svg",
  55048. extra: 710/673,
  55049. bottom: 15/725
  55050. },
  55051. form: "anthro",
  55052. default: true
  55053. },
  55054. anthroSide: {
  55055. height: math.unit(556, "cm"),
  55056. weight: math.unit(2650, "kg"),
  55057. preyCapacity: math.unit(3, "people"),
  55058. name: "Side",
  55059. image: {
  55060. source: "./media/characters/ash´iika/side.svg",
  55061. extra: 696/676,
  55062. bottom: 13/709
  55063. },
  55064. form: "anthro"
  55065. },
  55066. anthroDressed: {
  55067. height: math.unit(556, "cm"),
  55068. weight: math.unit(2650, "kg"),
  55069. preyCapacity: math.unit(3, "people"),
  55070. name: "Dressed",
  55071. image: {
  55072. source: "./media/characters/ash´iika/dressed.svg",
  55073. extra: 710/673,
  55074. bottom: 15/725
  55075. },
  55076. form: "anthro"
  55077. },
  55078. anthroHead: {
  55079. height: math.unit(3.5, "feet"),
  55080. name: "Head",
  55081. image: {
  55082. source: "./media/characters/ash´iika/head.svg",
  55083. extra: 348/291,
  55084. bottom: 45/393
  55085. },
  55086. form: "anthro"
  55087. },
  55088. feralSide: {
  55089. height: math.unit(870, "cm"),
  55090. weight: math.unit(17500, "kg"),
  55091. preyCapacity: math.unit(15, "people"),
  55092. name: "Side",
  55093. image: {
  55094. source: "./media/characters/ash´iika/feral.svg",
  55095. extra: 595/199,
  55096. bottom: 7/602
  55097. },
  55098. form: "feral",
  55099. default: true,
  55100. },
  55101. },
  55102. [
  55103. {
  55104. name: "Normal",
  55105. height: math.unit(556, "cm"),
  55106. default: true,
  55107. form: "anthro"
  55108. },
  55109. {
  55110. name: "Macro",
  55111. height: math.unit(88, "meters"),
  55112. form: "anthro"
  55113. },
  55114. {
  55115. name: "Normal",
  55116. height: math.unit(870, "cm"),
  55117. default: true,
  55118. form: "feral"
  55119. },
  55120. {
  55121. name: "Large",
  55122. height: math.unit(25, "meters"),
  55123. form: "feral"
  55124. },
  55125. ],
  55126. {
  55127. "anthro": {
  55128. name: "Anthro",
  55129. default: true
  55130. },
  55131. "feral": {
  55132. name: "Feral",
  55133. },
  55134. }
  55135. ))
  55136. characterMakers.push(() => makeCharacter(
  55137. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55138. {
  55139. front: {
  55140. height: math.unit(10, "feet"),
  55141. weight: math.unit(800, "lb"),
  55142. name: "Front",
  55143. image: {
  55144. source: "./media/characters/yen/front.svg",
  55145. extra: 443/411,
  55146. bottom: 6/449
  55147. }
  55148. },
  55149. sleeping: {
  55150. height: math.unit(10, "feet"),
  55151. weight: math.unit(800, "lb"),
  55152. name: "Sleeping",
  55153. image: {
  55154. source: "./media/characters/yen/sleeping.svg",
  55155. extra: 470/422,
  55156. bottom: 0/470
  55157. }
  55158. },
  55159. head: {
  55160. height: math.unit(2.2, "feet"),
  55161. name: "Head",
  55162. image: {
  55163. source: "./media/characters/yen/head.svg"
  55164. }
  55165. },
  55166. headAlt: {
  55167. height: math.unit(2.1, "feet"),
  55168. name: "Head (Alt)",
  55169. image: {
  55170. source: "./media/characters/yen/head-alt.svg"
  55171. }
  55172. },
  55173. },
  55174. [
  55175. {
  55176. name: "Normal",
  55177. height: math.unit(10, "feet"),
  55178. default: true
  55179. },
  55180. ]
  55181. ))
  55182. characterMakers.push(() => makeCharacter(
  55183. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55184. {
  55185. front: {
  55186. height: math.unit(12, "feet"),
  55187. name: "Front",
  55188. image: {
  55189. source: "./media/characters/citra/front.svg",
  55190. extra: 1950/1710,
  55191. bottom: 47/1997
  55192. }
  55193. },
  55194. },
  55195. [
  55196. {
  55197. name: "Normal",
  55198. height: math.unit(12, "feet"),
  55199. default: true
  55200. },
  55201. ]
  55202. ))
  55203. characterMakers.push(() => makeCharacter(
  55204. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55205. {
  55206. side: {
  55207. height: math.unit(7 + 10/12, "feet"),
  55208. name: "Side",
  55209. image: {
  55210. source: "./media/characters/sholstim/side.svg",
  55211. extra: 786/682,
  55212. bottom: 40/826
  55213. }
  55214. },
  55215. },
  55216. [
  55217. {
  55218. name: "Normal",
  55219. height: math.unit(7 + 10/12, "feet"),
  55220. default: true
  55221. },
  55222. ]
  55223. ))
  55224. characterMakers.push(() => makeCharacter(
  55225. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55226. {
  55227. front: {
  55228. height: math.unit(3.10, "meters"),
  55229. name: "Front",
  55230. image: {
  55231. source: "./media/characters/aggyn/front.svg",
  55232. extra: 1188/963,
  55233. bottom: 24/1212
  55234. }
  55235. },
  55236. },
  55237. [
  55238. {
  55239. name: "Normal",
  55240. height: math.unit(3.10, "meters"),
  55241. default: true
  55242. },
  55243. ]
  55244. ))
  55245. characterMakers.push(() => makeCharacter(
  55246. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55247. {
  55248. front: {
  55249. height: math.unit(7 + 5/12, "feet"),
  55250. weight: math.unit(687, "lb"),
  55251. name: "Front",
  55252. image: {
  55253. source: "./media/characters/alsandair-hergenroether/front.svg",
  55254. extra: 1251/1186,
  55255. bottom: 75/1326
  55256. }
  55257. },
  55258. back: {
  55259. height: math.unit(7 + 5/12, "feet"),
  55260. weight: math.unit(687, "lb"),
  55261. name: "Back",
  55262. image: {
  55263. source: "./media/characters/alsandair-hergenroether/back.svg",
  55264. extra: 1290/1229,
  55265. bottom: 17/1307
  55266. }
  55267. },
  55268. },
  55269. [
  55270. {
  55271. name: "Max Compression",
  55272. height: math.unit(7 + 5/12, "feet"),
  55273. default: true
  55274. },
  55275. {
  55276. name: "\"Normal\"",
  55277. height: math.unit(2, "universes")
  55278. },
  55279. ]
  55280. ))
  55281. characterMakers.push(() => makeCharacter(
  55282. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55283. {
  55284. front: {
  55285. height: math.unit(4 + 1/12, "feet"),
  55286. weight: math.unit(92, "lb"),
  55287. name: "Front",
  55288. image: {
  55289. source: "./media/characters/ie/front.svg",
  55290. extra: 1585/1352,
  55291. bottom: 91/1676
  55292. }
  55293. },
  55294. },
  55295. [
  55296. {
  55297. name: "Normal",
  55298. height: math.unit(4 + 1/12, "feet"),
  55299. default: true
  55300. },
  55301. ]
  55302. ))
  55303. characterMakers.push(() => makeCharacter(
  55304. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55305. {
  55306. anthro: {
  55307. height: math.unit(6, "feet"),
  55308. weight: math.unit(150, "lb"),
  55309. name: "Front",
  55310. image: {
  55311. source: "./media/characters/willow/anthro.svg",
  55312. extra: 1073/986,
  55313. bottom: 34/1107
  55314. },
  55315. form: "anthro",
  55316. default: true
  55317. },
  55318. taur: {
  55319. height: math.unit(6, "feet"),
  55320. weight: math.unit(150, "lb"),
  55321. name: "Side",
  55322. image: {
  55323. source: "./media/characters/willow/taur.svg",
  55324. extra: 647/512,
  55325. bottom: 136/783
  55326. },
  55327. form: "taur",
  55328. default: true
  55329. },
  55330. },
  55331. [
  55332. {
  55333. name: "Humanoid",
  55334. height: math.unit(2.7, "meters"),
  55335. form: "anthro"
  55336. },
  55337. {
  55338. name: "Normal",
  55339. height: math.unit(9, "meters"),
  55340. form: "anthro",
  55341. default: true
  55342. },
  55343. {
  55344. name: "Humanoid",
  55345. height: math.unit(2.1, "meters"),
  55346. form: "taur"
  55347. },
  55348. {
  55349. name: "Normal",
  55350. height: math.unit(7, "meters"),
  55351. form: "taur",
  55352. default: true
  55353. },
  55354. ],
  55355. {
  55356. "anthro": {
  55357. name: "Anthro",
  55358. default: true
  55359. },
  55360. "taur": {
  55361. name: "Taur",
  55362. },
  55363. }
  55364. ))
  55365. characterMakers.push(() => makeCharacter(
  55366. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55367. {
  55368. front: {
  55369. height: math.unit(2 + 5/12, "feet"),
  55370. name: "Front",
  55371. image: {
  55372. source: "./media/characters/kyan/front.svg",
  55373. extra: 460/334,
  55374. bottom: 23/483
  55375. },
  55376. extraAttributes: {
  55377. "toeLength": {
  55378. name: "Toe Length",
  55379. power: 1,
  55380. type: "length",
  55381. base: math.unit(7, "cm")
  55382. },
  55383. "toeclawLength": {
  55384. name: "Toeclaw Length",
  55385. power: 1,
  55386. type: "length",
  55387. base: math.unit(4.7, "cm")
  55388. },
  55389. "earHeight": {
  55390. name: "Ear Height",
  55391. power: 1,
  55392. type: "length",
  55393. base: math.unit(14.1, "cm")
  55394. },
  55395. }
  55396. },
  55397. paws: {
  55398. height: math.unit(0.45, "feet"),
  55399. name: "Paws",
  55400. image: {
  55401. source: "./media/characters/kyan/paws.svg",
  55402. extra: 581/581,
  55403. bottom: 114/695
  55404. }
  55405. },
  55406. },
  55407. [
  55408. {
  55409. name: "Normal",
  55410. height: math.unit(2 + 5/12, "feet"),
  55411. default: true
  55412. },
  55413. ]
  55414. ))
  55415. characterMakers.push(() => makeCharacter(
  55416. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55417. {
  55418. front: {
  55419. height: math.unit(2 + 2/3, "feet"),
  55420. name: "Front",
  55421. image: {
  55422. source: "./media/characters/xazzon/front.svg",
  55423. extra: 1109/984,
  55424. bottom: 42/1151
  55425. }
  55426. },
  55427. back: {
  55428. height: math.unit(2 + 2/3, "feet"),
  55429. name: "Back",
  55430. image: {
  55431. source: "./media/characters/xazzon/back.svg",
  55432. extra: 1095/971,
  55433. bottom: 23/1118
  55434. }
  55435. },
  55436. },
  55437. [
  55438. {
  55439. name: "Normal",
  55440. height: math.unit(2 + 2/3, "feet"),
  55441. default: true
  55442. },
  55443. ]
  55444. ))
  55445. characterMakers.push(() => makeCharacter(
  55446. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55447. {
  55448. front: {
  55449. height: math.unit(8, "feet"),
  55450. weight: math.unit(300, "lb"),
  55451. name: "Front",
  55452. image: {
  55453. source: "./media/characters/khyla-shadowsong/front.svg",
  55454. extra: 861/798,
  55455. bottom: 32/893
  55456. }
  55457. },
  55458. side: {
  55459. height: math.unit(8, "feet"),
  55460. weight: math.unit(300, "lb"),
  55461. name: "Side",
  55462. image: {
  55463. source: "./media/characters/khyla-shadowsong/side.svg",
  55464. extra: 790/750,
  55465. bottom: 87/877
  55466. }
  55467. },
  55468. back: {
  55469. height: math.unit(8, "feet"),
  55470. weight: math.unit(300, "lb"),
  55471. name: "Back",
  55472. image: {
  55473. source: "./media/characters/khyla-shadowsong/back.svg",
  55474. extra: 855/808,
  55475. bottom: 14/869
  55476. }
  55477. },
  55478. head: {
  55479. height: math.unit(2.7, "feet"),
  55480. name: "Head",
  55481. image: {
  55482. source: "./media/characters/khyla-shadowsong/head.svg"
  55483. }
  55484. },
  55485. },
  55486. [
  55487. {
  55488. name: "Micro",
  55489. height: math.unit(6, "inches")
  55490. },
  55491. {
  55492. name: "Normal",
  55493. height: math.unit(8, "feet"),
  55494. default: true
  55495. },
  55496. ]
  55497. ))
  55498. characterMakers.push(() => makeCharacter(
  55499. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55500. {
  55501. hyperFront: {
  55502. height: math.unit(9 + 4/12, "feet"),
  55503. weight: math.unit(2000, "lb"),
  55504. name: "Front",
  55505. image: {
  55506. source: "./media/characters/tiden/hyper-front.svg",
  55507. extra: 400/382,
  55508. bottom: 6/406
  55509. },
  55510. form: "hyper",
  55511. },
  55512. regularFront: {
  55513. height: math.unit(7 + 10/12, "feet"),
  55514. weight: math.unit(470, "lb"),
  55515. name: "Front",
  55516. image: {
  55517. source: "./media/characters/tiden/regular-front.svg",
  55518. extra: 468/442,
  55519. bottom: 6/474
  55520. },
  55521. form: "regular",
  55522. },
  55523. },
  55524. [
  55525. {
  55526. name: "Normal",
  55527. height: math.unit(9 + 4/12, "feet"),
  55528. default: true,
  55529. form: "hyper"
  55530. },
  55531. {
  55532. name: "Normal",
  55533. height: math.unit(7 + 10/12, "feet"),
  55534. default: true,
  55535. form: "regular"
  55536. },
  55537. ],
  55538. {
  55539. "hyper": {
  55540. name: "Hyper",
  55541. default: true
  55542. },
  55543. "regular": {
  55544. name: "Regular",
  55545. },
  55546. }
  55547. ))
  55548. characterMakers.push(() => makeCharacter(
  55549. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55550. {
  55551. side: {
  55552. height: math.unit(6, "feet"),
  55553. weight: math.unit(150, "lb"),
  55554. name: "Side",
  55555. image: {
  55556. source: "./media/characters/jason-crowe/side.svg",
  55557. extra: 1771/766,
  55558. bottom: 219/1990
  55559. }
  55560. },
  55561. },
  55562. [
  55563. {
  55564. name: "Pocket Gryphon",
  55565. height: math.unit(6, "cm")
  55566. },
  55567. {
  55568. name: "Raven",
  55569. height: math.unit(60, "cm")
  55570. },
  55571. {
  55572. name: "Normal",
  55573. height: math.unit(1, "meter"),
  55574. default: true
  55575. },
  55576. ]
  55577. ))
  55578. characterMakers.push(() => makeCharacter(
  55579. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55580. {
  55581. front: {
  55582. height: math.unit(9 + 6/12, "feet"),
  55583. weight: math.unit(1100, "lb"),
  55584. name: "Front",
  55585. image: {
  55586. source: "./media/characters/django/front.svg",
  55587. extra: 1231/1136,
  55588. bottom: 34/1265
  55589. }
  55590. },
  55591. side: {
  55592. height: math.unit(9 + 6/12, "feet"),
  55593. weight: math.unit(1100, "lb"),
  55594. name: "Side",
  55595. image: {
  55596. source: "./media/characters/django/side.svg",
  55597. extra: 1267/1174,
  55598. bottom: 9/1276
  55599. }
  55600. },
  55601. },
  55602. [
  55603. {
  55604. name: "Normal",
  55605. height: math.unit(9 + 6/12, "feet"),
  55606. default: true
  55607. },
  55608. {
  55609. name: "Macro 1",
  55610. height: math.unit(50, "feet")
  55611. },
  55612. {
  55613. name: "Macro 2",
  55614. height: math.unit(500, "feet")
  55615. },
  55616. {
  55617. name: "Mega Macro",
  55618. height: math.unit(5300, "feet")
  55619. },
  55620. ]
  55621. ))
  55622. characterMakers.push(() => makeCharacter(
  55623. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55624. {
  55625. frontSfw: {
  55626. height: math.unit(120, "cm"),
  55627. weight: math.unit(15, "kg"),
  55628. name: "Front (SFW)",
  55629. image: {
  55630. source: "./media/characters/eri/front-sfw.svg",
  55631. extra: 1014/939,
  55632. bottom: 37/1051
  55633. },
  55634. form: "moth",
  55635. },
  55636. frontNsfw: {
  55637. height: math.unit(120, "cm"),
  55638. weight: math.unit(15, "kg"),
  55639. name: "Front (NSFW)",
  55640. image: {
  55641. source: "./media/characters/eri/front-nsfw.svg",
  55642. extra: 1014/939,
  55643. bottom: 37/1051
  55644. },
  55645. form: "moth",
  55646. default: true
  55647. },
  55648. egg: {
  55649. height: math.unit(10, "cm"),
  55650. name: "Egg",
  55651. image: {
  55652. source: "./media/characters/eri/egg.svg"
  55653. },
  55654. form: "egg",
  55655. default: true
  55656. },
  55657. },
  55658. [
  55659. {
  55660. name: "Normal",
  55661. height: math.unit(120, "cm"),
  55662. default: true,
  55663. form: "moth"
  55664. },
  55665. {
  55666. name: "Normal",
  55667. height: math.unit(10, "cm"),
  55668. default: true,
  55669. form: "egg"
  55670. },
  55671. ],
  55672. {
  55673. "moth": {
  55674. name: "Moth",
  55675. default: true
  55676. },
  55677. "egg": {
  55678. name: "Egg",
  55679. },
  55680. }
  55681. ))
  55682. characterMakers.push(() => makeCharacter(
  55683. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55684. {
  55685. front: {
  55686. height: math.unit(200, "feet"),
  55687. name: "Front",
  55688. image: {
  55689. source: "./media/characters/bishop-dowser/front.svg",
  55690. extra: 933/868,
  55691. bottom: 106/1039
  55692. }
  55693. },
  55694. },
  55695. [
  55696. {
  55697. name: "Giant",
  55698. height: math.unit(200, "feet"),
  55699. default: true
  55700. },
  55701. ]
  55702. ))
  55703. characterMakers.push(() => makeCharacter(
  55704. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55705. {
  55706. front: {
  55707. height: math.unit(2, "meters"),
  55708. preyCapacity: math.unit(3, "people"),
  55709. name: "Front",
  55710. image: {
  55711. source: "./media/characters/fryra/front.svg",
  55712. extra: 1025/948,
  55713. bottom: 30/1055
  55714. },
  55715. extraAttributes: {
  55716. "breastVolume": {
  55717. name: "Breast Volume",
  55718. power: 3,
  55719. type: "volume",
  55720. base: math.unit(8, "liters")
  55721. },
  55722. }
  55723. },
  55724. back: {
  55725. height: math.unit(2, "meters"),
  55726. preyCapacity: math.unit(3, "people"),
  55727. name: "Back",
  55728. image: {
  55729. source: "./media/characters/fryra/back.svg",
  55730. extra: 993/938,
  55731. bottom: 38/1031
  55732. },
  55733. extraAttributes: {
  55734. "breastVolume": {
  55735. name: "Breast Volume",
  55736. power: 3,
  55737. type: "volume",
  55738. base: math.unit(8, "liters")
  55739. },
  55740. }
  55741. },
  55742. head: {
  55743. height: math.unit(1.33, "feet"),
  55744. name: "Head",
  55745. image: {
  55746. source: "./media/characters/fryra/head.svg"
  55747. }
  55748. },
  55749. maw: {
  55750. height: math.unit(0.56, "feet"),
  55751. name: "Maw",
  55752. image: {
  55753. source: "./media/characters/fryra/maw.svg"
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Micro",
  55760. height: math.unit(5, "cm")
  55761. },
  55762. {
  55763. name: "Normal",
  55764. height: math.unit(2, "meters"),
  55765. default: true
  55766. },
  55767. {
  55768. name: "Small Macro",
  55769. height: math.unit(8, "meters")
  55770. },
  55771. {
  55772. name: "Macro",
  55773. height: math.unit(50, "meters")
  55774. },
  55775. {
  55776. name: "Megamacro",
  55777. height: math.unit(1, "km")
  55778. },
  55779. {
  55780. name: "Planetary",
  55781. height: math.unit(300000, "km")
  55782. },
  55783. {
  55784. name: "Universal",
  55785. height: math.unit(250, "lightyears")
  55786. },
  55787. {
  55788. name: "Fabric of Reality",
  55789. height: math.unit(1000, "multiverses")
  55790. },
  55791. ]
  55792. ))
  55793. characterMakers.push(() => makeCharacter(
  55794. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55795. {
  55796. frontDressed: {
  55797. height: math.unit(6 + 2/12, "feet"),
  55798. name: "Front (Dressed)",
  55799. image: {
  55800. source: "./media/characters/fiera/front-dressed.svg",
  55801. extra: 1883/1793,
  55802. bottom: 70/1953
  55803. }
  55804. },
  55805. backDressed: {
  55806. height: math.unit(6 + 2/12, "feet"),
  55807. name: "Back (Dressed)",
  55808. image: {
  55809. source: "./media/characters/fiera/back-dressed.svg",
  55810. extra: 1847/1780,
  55811. bottom: 70/1917
  55812. }
  55813. },
  55814. frontNude: {
  55815. height: math.unit(6 + 2/12, "feet"),
  55816. name: "Front (Nude)",
  55817. image: {
  55818. source: "./media/characters/fiera/front-nude.svg",
  55819. extra: 1875/1785,
  55820. bottom: 66/1941
  55821. }
  55822. },
  55823. backNude: {
  55824. height: math.unit(6 + 2/12, "feet"),
  55825. name: "Back (Nude)",
  55826. image: {
  55827. source: "./media/characters/fiera/back-nude.svg",
  55828. extra: 1855/1788,
  55829. bottom: 44/1899
  55830. }
  55831. },
  55832. maw: {
  55833. height: math.unit(1.3, "feet"),
  55834. name: "Maw",
  55835. image: {
  55836. source: "./media/characters/fiera/maw.svg"
  55837. }
  55838. },
  55839. paw: {
  55840. height: math.unit(1, "feet"),
  55841. name: "Paw",
  55842. image: {
  55843. source: "./media/characters/fiera/paw.svg"
  55844. }
  55845. },
  55846. shoe: {
  55847. height: math.unit(1.05, "feet"),
  55848. name: "Shoe",
  55849. image: {
  55850. source: "./media/characters/fiera/shoe.svg"
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Normal",
  55857. height: math.unit(6 + 2/12, "feet"),
  55858. default: true
  55859. },
  55860. {
  55861. name: "Size Difference",
  55862. height: math.unit(13, "feet")
  55863. },
  55864. {
  55865. name: "Macro",
  55866. height: math.unit(60, "feet")
  55867. },
  55868. {
  55869. name: "Mega Macro",
  55870. height: math.unit(200, "feet")
  55871. },
  55872. ]
  55873. ))
  55874. characterMakers.push(() => makeCharacter(
  55875. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55876. {
  55877. back: {
  55878. height: math.unit(6, "feet"),
  55879. name: "Back",
  55880. image: {
  55881. source: "./media/characters/flare/back.svg",
  55882. extra: 1883/1765,
  55883. bottom: 32/1915
  55884. }
  55885. },
  55886. },
  55887. [
  55888. {
  55889. name: "Normal",
  55890. height: math.unit(6 + 2/12, "feet"),
  55891. default: true
  55892. },
  55893. {
  55894. name: "Size Difference",
  55895. height: math.unit(13, "feet")
  55896. },
  55897. {
  55898. name: "Macro",
  55899. height: math.unit(60, "feet")
  55900. },
  55901. {
  55902. name: "Macro 2",
  55903. height: math.unit(100, "feet")
  55904. },
  55905. {
  55906. name: "Mega Macro",
  55907. height: math.unit(200, "feet")
  55908. },
  55909. ]
  55910. ))
  55911. characterMakers.push(() => makeCharacter(
  55912. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55913. {
  55914. front: {
  55915. height: math.unit(2.2, "m"),
  55916. weight: math.unit(300, "kg"),
  55917. name: "Front",
  55918. image: {
  55919. source: "./media/characters/hanna/front.svg",
  55920. extra: 1696/1502,
  55921. bottom: 206/1902
  55922. }
  55923. },
  55924. },
  55925. [
  55926. {
  55927. name: "Humanoid",
  55928. height: math.unit(2.2, "meters")
  55929. },
  55930. {
  55931. name: "Normal",
  55932. height: math.unit(4.8, "meters"),
  55933. default: true
  55934. },
  55935. ]
  55936. ))
  55937. characterMakers.push(() => makeCharacter(
  55938. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55939. {
  55940. front: {
  55941. height: math.unit(2.8, "meters"),
  55942. name: "Front",
  55943. image: {
  55944. source: "./media/characters/argo/front.svg",
  55945. extra: 731/518,
  55946. bottom: 84/815
  55947. }
  55948. },
  55949. },
  55950. [
  55951. {
  55952. name: "Normal",
  55953. height: math.unit(3, "meters"),
  55954. default: true
  55955. },
  55956. ]
  55957. ))
  55958. characterMakers.push(() => makeCharacter(
  55959. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55960. {
  55961. side: {
  55962. height: math.unit(3.8, "meters"),
  55963. name: "Side",
  55964. image: {
  55965. source: "./media/characters/sybil/side.svg",
  55966. extra: 382/361,
  55967. bottom: 25/407
  55968. }
  55969. },
  55970. },
  55971. [
  55972. {
  55973. name: "Normal",
  55974. height: math.unit(3.8, "meters"),
  55975. default: true
  55976. },
  55977. ]
  55978. ))
  55979. characterMakers.push(() => makeCharacter(
  55980. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55981. {
  55982. side: {
  55983. height: math.unit(6, "meters"),
  55984. name: "Side",
  55985. image: {
  55986. source: "./media/characters/plum/side.svg",
  55987. extra: 858/755,
  55988. bottom: 45/903
  55989. },
  55990. form: "taur",
  55991. default: true
  55992. },
  55993. back: {
  55994. height: math.unit(6.3, "meters"),
  55995. name: "Back",
  55996. image: {
  55997. source: "./media/characters/plum/back.svg",
  55998. extra: 887/813,
  55999. bottom: 32/919
  56000. },
  56001. form: "taur",
  56002. },
  56003. feral: {
  56004. height: math.unit(5.5, "meter"),
  56005. name: "Front",
  56006. image: {
  56007. source: "./media/characters/plum/feral.svg",
  56008. extra: 568/403,
  56009. bottom: 51/619
  56010. },
  56011. form: "feral",
  56012. default: true
  56013. },
  56014. head: {
  56015. height: math.unit(1.46, "meter"),
  56016. name: "Head",
  56017. image: {
  56018. source: "./media/characters/plum/head.svg"
  56019. },
  56020. form: "taur"
  56021. },
  56022. tailTop: {
  56023. height: math.unit(5.6, "meter"),
  56024. name: "Tail (Top)",
  56025. image: {
  56026. source: "./media/characters/plum/tail-top.svg"
  56027. },
  56028. form: "taur",
  56029. },
  56030. tailBottom: {
  56031. height: math.unit(5.6, "meter"),
  56032. name: "Tail (Bottom)",
  56033. image: {
  56034. source: "./media/characters/plum/tail-bottom.svg"
  56035. },
  56036. form: "taur",
  56037. },
  56038. feralHead: {
  56039. height: math.unit(2.56549521, "meter"),
  56040. name: "Head",
  56041. image: {
  56042. source: "./media/characters/plum/head.svg"
  56043. },
  56044. form: "feral"
  56045. },
  56046. feralTailTop: {
  56047. height: math.unit(5.44728435, "meter"),
  56048. name: "Tail (Top)",
  56049. image: {
  56050. source: "./media/characters/plum/tail-top.svg"
  56051. },
  56052. form: "feral",
  56053. },
  56054. feralTailBottom: {
  56055. height: math.unit(5.44728435, "meter"),
  56056. name: "Tail (Bottom)",
  56057. image: {
  56058. source: "./media/characters/plum/tail-bottom.svg"
  56059. },
  56060. form: "feral",
  56061. },
  56062. },
  56063. [
  56064. {
  56065. name: "Normal",
  56066. height: math.unit(6, "meters"),
  56067. default: true,
  56068. form: "taur"
  56069. },
  56070. {
  56071. name: "Normal",
  56072. height: math.unit(5.5, "meters"),
  56073. default: true,
  56074. form: "feral"
  56075. },
  56076. ],
  56077. {
  56078. "taur": {
  56079. name: "Taur",
  56080. default: true
  56081. },
  56082. "feral": {
  56083. name: "Feral",
  56084. },
  56085. }
  56086. ))
  56087. characterMakers.push(() => makeCharacter(
  56088. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56089. {
  56090. front: {
  56091. height: math.unit(6, "feet"),
  56092. weight: math.unit(115, "lb"),
  56093. name: "Front",
  56094. image: {
  56095. source: "./media/characters/celeste-kitsune/front.svg",
  56096. extra: 393/366,
  56097. bottom: 7/400
  56098. }
  56099. },
  56100. side: {
  56101. height: math.unit(6, "feet"),
  56102. weight: math.unit(115, "lb"),
  56103. name: "Side",
  56104. image: {
  56105. source: "./media/characters/celeste-kitsune/side.svg",
  56106. extra: 818/765,
  56107. bottom: 40/858
  56108. }
  56109. },
  56110. },
  56111. [
  56112. {
  56113. name: "Megamacro",
  56114. height: math.unit(1500, "miles"),
  56115. default: true
  56116. },
  56117. ]
  56118. ))
  56119. characterMakers.push(() => makeCharacter(
  56120. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56121. {
  56122. front: {
  56123. height: math.unit(8, "meters"),
  56124. name: "Front",
  56125. image: {
  56126. source: "./media/characters/io/front.svg",
  56127. extra: 865/722,
  56128. bottom: 58/923
  56129. }
  56130. },
  56131. back: {
  56132. height: math.unit(8, "meters"),
  56133. name: "Back",
  56134. image: {
  56135. source: "./media/characters/io/back.svg",
  56136. extra: 920/776,
  56137. bottom: 42/962
  56138. }
  56139. },
  56140. head: {
  56141. height: math.unit(5.09, "meters"),
  56142. name: "Head",
  56143. image: {
  56144. source: "./media/characters/io/head.svg"
  56145. }
  56146. },
  56147. hand: {
  56148. height: math.unit(1.6, "meters"),
  56149. name: "Hand",
  56150. image: {
  56151. source: "./media/characters/io/hand.svg"
  56152. }
  56153. },
  56154. foot: {
  56155. height: math.unit(2.4, "meters"),
  56156. name: "Foot",
  56157. image: {
  56158. source: "./media/characters/io/foot.svg"
  56159. }
  56160. },
  56161. },
  56162. [
  56163. {
  56164. name: "Normal",
  56165. height: math.unit(8, "meters"),
  56166. default: true
  56167. },
  56168. ]
  56169. ))
  56170. characterMakers.push(() => makeCharacter(
  56171. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56172. {
  56173. side: {
  56174. height: math.unit(6 + 3/12, "feet"),
  56175. weight: math.unit(225, "lb"),
  56176. name: "Side",
  56177. image: {
  56178. source: "./media/characters/silas/side.svg",
  56179. extra: 703/653,
  56180. bottom: 23/726
  56181. },
  56182. extraAttributes: {
  56183. "pawLength": {
  56184. name: "Paw Length",
  56185. power: 1,
  56186. type: "length",
  56187. base: math.unit(12, "inches")
  56188. },
  56189. "pawWidth": {
  56190. name: "Paw Width",
  56191. power: 1,
  56192. type: "length",
  56193. base: math.unit(4.5, "inches")
  56194. },
  56195. "pawArea": {
  56196. name: "Paw Area",
  56197. power: 2,
  56198. type: "area",
  56199. base: math.unit(12 * 4.5, "inches^2")
  56200. },
  56201. }
  56202. },
  56203. },
  56204. [
  56205. {
  56206. name: "Normal",
  56207. height: math.unit(6 + 3/12, "feet"),
  56208. default: true
  56209. },
  56210. ]
  56211. ))
  56212. characterMakers.push(() => makeCharacter(
  56213. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56214. {
  56215. back: {
  56216. height: math.unit(1.6, "meters"),
  56217. weight: math.unit(150, "lb"),
  56218. name: "Back",
  56219. image: {
  56220. source: "./media/characters/zari/back.svg",
  56221. extra: 424/411,
  56222. bottom: 32/456
  56223. },
  56224. extraAttributes: {
  56225. "bladderCapacity": {
  56226. name: "Bladder Size",
  56227. power: 3,
  56228. type: "volume",
  56229. base: math.unit(500, "mL")
  56230. },
  56231. "bladderFlow": {
  56232. name: "Flow Rate",
  56233. power: 3,
  56234. type: "volume",
  56235. base: math.unit(25, "mL")
  56236. },
  56237. }
  56238. },
  56239. },
  56240. [
  56241. {
  56242. name: "Normal",
  56243. height: math.unit(1.6, "meters"),
  56244. default: true
  56245. },
  56246. ]
  56247. ))
  56248. characterMakers.push(() => makeCharacter(
  56249. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56250. {
  56251. front: {
  56252. height: math.unit(25, "feet"),
  56253. weight: math.unit(5, "tons"),
  56254. name: "Front",
  56255. image: {
  56256. source: "./media/characters/charlie-human/front.svg",
  56257. extra: 1870/1740,
  56258. bottom: 102/1972
  56259. },
  56260. extraAttributes: {
  56261. "dickLength": {
  56262. name: "Dick Length",
  56263. power: 1,
  56264. type: "length",
  56265. base: math.unit(9, "feet")
  56266. },
  56267. }
  56268. },
  56269. back: {
  56270. height: math.unit(25, "feet"),
  56271. weight: math.unit(5, "tons"),
  56272. name: "Back",
  56273. image: {
  56274. source: "./media/characters/charlie-human/back.svg",
  56275. extra: 1858/1733,
  56276. bottom: 105/1963
  56277. },
  56278. extraAttributes: {
  56279. "dickLength": {
  56280. name: "Dick Length",
  56281. power: 1,
  56282. type: "length",
  56283. base: math.unit(9, "feet")
  56284. },
  56285. }
  56286. },
  56287. },
  56288. [
  56289. {
  56290. name: "\"Normal\"",
  56291. height: math.unit(6 + 4/12, "feet")
  56292. },
  56293. {
  56294. name: "Big",
  56295. height: math.unit(25, "feet"),
  56296. default: true
  56297. },
  56298. ]
  56299. ))
  56300. characterMakers.push(() => makeCharacter(
  56301. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56302. {
  56303. front: {
  56304. height: math.unit(6 + 4/12, "feet"),
  56305. weight: math.unit(320, "lb"),
  56306. name: "Front",
  56307. image: {
  56308. source: "./media/characters/ookitsu/front.svg",
  56309. extra: 1160/976,
  56310. bottom: 38/1198
  56311. }
  56312. },
  56313. frontNsfw: {
  56314. height: math.unit(6 + 4/12, "feet"),
  56315. weight: math.unit(320, "lb"),
  56316. name: "Front (NSFW)",
  56317. image: {
  56318. source: "./media/characters/ookitsu/front-nsfw.svg",
  56319. extra: 1160/976,
  56320. bottom: 38/1198
  56321. }
  56322. },
  56323. back: {
  56324. height: math.unit(6 + 4/12, "feet"),
  56325. weight: math.unit(320, "lb"),
  56326. name: "Back",
  56327. image: {
  56328. source: "./media/characters/ookitsu/back.svg",
  56329. extra: 1030/975,
  56330. bottom: 70/1100
  56331. }
  56332. },
  56333. head: {
  56334. height: math.unit(1.79, "feet"),
  56335. name: "Head",
  56336. image: {
  56337. source: "./media/characters/ookitsu/head.svg"
  56338. }
  56339. },
  56340. hand: {
  56341. height: math.unit(0.92, "feet"),
  56342. name: "Hand",
  56343. image: {
  56344. source: "./media/characters/ookitsu/hand.svg"
  56345. }
  56346. },
  56347. tails: {
  56348. height: math.unit(3.3, "feet"),
  56349. name: "Tails",
  56350. image: {
  56351. source: "./media/characters/ookitsu/tails.svg"
  56352. }
  56353. },
  56354. dick: {
  56355. height: math.unit(1.10833, "feet"),
  56356. name: "Dick",
  56357. image: {
  56358. source: "./media/characters/ookitsu/dick.svg"
  56359. }
  56360. },
  56361. },
  56362. [
  56363. {
  56364. name: "Normal",
  56365. height: math.unit(6 + 4/12, "feet"),
  56366. default: true
  56367. },
  56368. {
  56369. name: "Macro",
  56370. height: math.unit(30, "feet")
  56371. },
  56372. ]
  56373. ))
  56374. characterMakers.push(() => makeCharacter(
  56375. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56376. {
  56377. anthroFront: {
  56378. height: math.unit(6, "feet"),
  56379. weight: math.unit(250, "lb"),
  56380. name: "Front",
  56381. image: {
  56382. source: "./media/characters/jhusky/anthro-front.svg",
  56383. extra: 474/439,
  56384. bottom: 7/481
  56385. },
  56386. form: "anthro",
  56387. default: true
  56388. },
  56389. taurSideSfw: {
  56390. height: math.unit(6 + 4/12, "feet"),
  56391. weight: math.unit(500, "lb"),
  56392. name: "Side (SFW)",
  56393. image: {
  56394. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56395. extra: 1741/1629,
  56396. bottom: 196/1937
  56397. },
  56398. form: "taur",
  56399. default: true
  56400. },
  56401. taurSideNsfw: {
  56402. height: math.unit(6 + 4/12, "feet"),
  56403. weight: math.unit(500, "lb"),
  56404. name: "Taur (NSFW)",
  56405. image: {
  56406. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56407. extra: 1741/1629,
  56408. bottom: 196/1937
  56409. },
  56410. form: "taur",
  56411. },
  56412. },
  56413. [
  56414. {
  56415. name: "Huge",
  56416. height: math.unit(500, "feet"),
  56417. form: "anthro"
  56418. },
  56419. {
  56420. name: "Macro",
  56421. height: math.unit(1000, "feet"),
  56422. default: true,
  56423. form: "anthro"
  56424. },
  56425. {
  56426. name: "Megamacro",
  56427. height: math.unit(10000, "feet"),
  56428. form: "anthro"
  56429. },
  56430. {
  56431. name: "Huge",
  56432. height: math.unit(528, "feet"),
  56433. form: "taur"
  56434. },
  56435. {
  56436. name: "Macro",
  56437. height: math.unit(1056, "feet"),
  56438. default: true,
  56439. form: "taur"
  56440. },
  56441. {
  56442. name: "Megamacro",
  56443. height: math.unit(10556, "feet"),
  56444. form: "taur"
  56445. },
  56446. ],
  56447. {
  56448. "anthro": {
  56449. name: "Anthro",
  56450. default: true
  56451. },
  56452. "taur": {
  56453. name: "Taur",
  56454. },
  56455. }
  56456. ))
  56457. characterMakers.push(() => makeCharacter(
  56458. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56459. {
  56460. front: {
  56461. height: math.unit(8, "feet"),
  56462. weight: math.unit(500, "lb"),
  56463. name: "Front",
  56464. image: {
  56465. source: "./media/characters/armail/front.svg",
  56466. extra: 1753/1669,
  56467. bottom: 155/1908
  56468. }
  56469. },
  56470. back: {
  56471. height: math.unit(8, "feet"),
  56472. weight: math.unit(500, "lb"),
  56473. name: "Back",
  56474. image: {
  56475. source: "./media/characters/armail/back.svg",
  56476. extra: 1872/1803,
  56477. bottom: 63/1935
  56478. }
  56479. },
  56480. },
  56481. [
  56482. {
  56483. name: "Micro",
  56484. height: math.unit(0.25, "feet")
  56485. },
  56486. {
  56487. name: "Normal",
  56488. height: math.unit(8, "feet"),
  56489. default: true
  56490. },
  56491. {
  56492. name: "Mini-macro",
  56493. height: math.unit(30, "feet")
  56494. },
  56495. {
  56496. name: "Macro",
  56497. height: math.unit(400, "feet")
  56498. },
  56499. {
  56500. name: "Mega-macro",
  56501. height: math.unit(6000, "feet")
  56502. },
  56503. ]
  56504. ))
  56505. characterMakers.push(() => makeCharacter(
  56506. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56507. {
  56508. front: {
  56509. height: math.unit(6 + 7/12, "feet"),
  56510. weight: math.unit(210, "lb"),
  56511. name: "Front",
  56512. image: {
  56513. source: "./media/characters/wilfred-t-buxton/front.svg",
  56514. extra: 1068/882,
  56515. bottom: 28/1096
  56516. }
  56517. },
  56518. },
  56519. [
  56520. {
  56521. name: "Normal",
  56522. height: math.unit(6 + 7/12, "feet"),
  56523. default: true
  56524. },
  56525. ]
  56526. ))
  56527. characterMakers.push(() => makeCharacter(
  56528. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56529. {
  56530. front: {
  56531. height: math.unit(5 + 2/12, "feet"),
  56532. weight: math.unit(120, "lb"),
  56533. name: "Front",
  56534. image: {
  56535. source: "./media/characters/leighton-marrow/front.svg",
  56536. extra: 441/409,
  56537. bottom: 37/478
  56538. }
  56539. },
  56540. },
  56541. [
  56542. {
  56543. name: "Normal",
  56544. height: math.unit(5 + 2/12, "feet"),
  56545. default: true
  56546. },
  56547. ]
  56548. ))
  56549. characterMakers.push(() => makeCharacter(
  56550. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56551. {
  56552. front: {
  56553. height: math.unit(4, "meters"),
  56554. weight: math.unit(1200, "kg"),
  56555. name: "Front",
  56556. image: {
  56557. source: "./media/characters/licos/front.svg",
  56558. extra: 1727/1604,
  56559. bottom: 101/1828
  56560. },
  56561. form: "anthro",
  56562. default: true
  56563. },
  56564. taur_side: {
  56565. height: math.unit(20, "meters"),
  56566. weight: math.unit(1100000, "kg"),
  56567. name: "Side",
  56568. image: {
  56569. source: "./media/characters/licos/taur.svg",
  56570. extra: 1158/1091,
  56571. bottom: 80/1238
  56572. },
  56573. form: "taur",
  56574. default: true
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(4, "meters"),
  56581. default: true,
  56582. form: "anthro"
  56583. },
  56584. {
  56585. name: "Normal",
  56586. height: math.unit(20, "meters"),
  56587. default: true,
  56588. form: "taur"
  56589. },
  56590. ],
  56591. {
  56592. "anthro": {
  56593. name: "Anthro",
  56594. default: true
  56595. },
  56596. "taur": {
  56597. name: "Taur",
  56598. },
  56599. }
  56600. ))
  56601. characterMakers.push(() => makeCharacter(
  56602. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56603. {
  56604. front: {
  56605. height: math.unit(10 + 3/12, "feet"),
  56606. name: "Front",
  56607. image: {
  56608. source: "./media/characters/theo-monkey/front.svg",
  56609. extra: 1735/1658,
  56610. bottom: 73/1808
  56611. }
  56612. },
  56613. back: {
  56614. height: math.unit(10 + 3/12, "feet"),
  56615. name: "Back",
  56616. image: {
  56617. source: "./media/characters/theo-monkey/back.svg",
  56618. extra: 1742/1664,
  56619. bottom: 33/1775
  56620. }
  56621. },
  56622. head: {
  56623. height: math.unit(2.29, "feet"),
  56624. name: "Head",
  56625. image: {
  56626. source: "./media/characters/theo-monkey/head.svg"
  56627. }
  56628. },
  56629. handPalm: {
  56630. height: math.unit(1.73, "feet"),
  56631. name: "Hand (Palm)",
  56632. image: {
  56633. source: "./media/characters/theo-monkey/hand-palm.svg"
  56634. }
  56635. },
  56636. handBack: {
  56637. height: math.unit(1.63, "feet"),
  56638. name: "Hand (Back)",
  56639. image: {
  56640. source: "./media/characters/theo-monkey/hand-back.svg"
  56641. }
  56642. },
  56643. footSole: {
  56644. height: math.unit(2.15, "feet"),
  56645. name: "Foot (Sole)",
  56646. image: {
  56647. source: "./media/characters/theo-monkey/foot-sole.svg"
  56648. }
  56649. },
  56650. footSide: {
  56651. height: math.unit(1.6, "feet"),
  56652. name: "Foot (Side)",
  56653. image: {
  56654. source: "./media/characters/theo-monkey/foot-side.svg"
  56655. }
  56656. },
  56657. },
  56658. [
  56659. {
  56660. name: "Normal",
  56661. height: math.unit(10 + 3/12, "feet"),
  56662. default: true
  56663. },
  56664. ]
  56665. ))
  56666. characterMakers.push(() => makeCharacter(
  56667. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56668. {
  56669. front: {
  56670. height: math.unit(11, "feet"),
  56671. weight: math.unit(3000, "lb"),
  56672. preyCapacity: math.unit(10, "people"),
  56673. name: "Front",
  56674. image: {
  56675. source: "./media/characters/brook/front.svg",
  56676. extra: 909/835,
  56677. bottom: 108/1017
  56678. }
  56679. },
  56680. back: {
  56681. height: math.unit(11, "feet"),
  56682. weight: math.unit(3000, "lb"),
  56683. preyCapacity: math.unit(10, "people"),
  56684. name: "Back",
  56685. image: {
  56686. source: "./media/characters/brook/back.svg",
  56687. extra: 976/916,
  56688. bottom: 34/1010
  56689. }
  56690. },
  56691. backAlt: {
  56692. height: math.unit(11, "feet"),
  56693. weight: math.unit(3000, "lb"),
  56694. preyCapacity: math.unit(10, "people"),
  56695. name: "Back (Alt)",
  56696. image: {
  56697. source: "./media/characters/brook/back-alt.svg",
  56698. extra: 1283/1213,
  56699. bottom: 35/1318
  56700. }
  56701. },
  56702. bust: {
  56703. height: math.unit(9.0859030837, "feet"),
  56704. weight: math.unit(3000, "lb"),
  56705. preyCapacity: math.unit(10, "people"),
  56706. name: "Bust",
  56707. image: {
  56708. source: "./media/characters/brook/bust.svg",
  56709. extra: 2043/1923,
  56710. bottom: 0/2043
  56711. }
  56712. },
  56713. },
  56714. [
  56715. {
  56716. name: "Small",
  56717. height: math.unit(11, "feet"),
  56718. default: true
  56719. },
  56720. {
  56721. name: "Towering",
  56722. height: math.unit(5, "km")
  56723. },
  56724. {
  56725. name: "Enormous",
  56726. height: math.unit(25, "earths")
  56727. },
  56728. ]
  56729. ))
  56730. characterMakers.push(() => makeCharacter(
  56731. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56732. {
  56733. front: {
  56734. height: math.unit(4, "feet"),
  56735. weight: math.unit(150, "lb"),
  56736. name: "Front",
  56737. image: {
  56738. source: "./media/characters/squishi/front.svg",
  56739. extra: 1428/1271,
  56740. bottom: 30/1458
  56741. },
  56742. extraAttributes: {
  56743. "pawSize": {
  56744. name: "Paw Size",
  56745. power: 1,
  56746. type: "length",
  56747. base: math.unit(14, "ShoeSizeMensUS"),
  56748. defaultUnit: "ShoeSizeMensUS"
  56749. },
  56750. }
  56751. },
  56752. side: {
  56753. height: math.unit(4, "feet"),
  56754. weight: math.unit(150, "lb"),
  56755. name: "Side",
  56756. image: {
  56757. source: "./media/characters/squishi/side.svg",
  56758. extra: 1428/1271,
  56759. bottom: 30/1458
  56760. },
  56761. extraAttributes: {
  56762. "pawSize": {
  56763. name: "Paw Size",
  56764. power: 1,
  56765. type: "length",
  56766. base: math.unit(14, "ShoeSizeMensUS"),
  56767. defaultUnit: "ShoeSizeMensUS"
  56768. },
  56769. }
  56770. },
  56771. back: {
  56772. height: math.unit(4, "feet"),
  56773. weight: math.unit(150, "lb"),
  56774. name: "Back",
  56775. image: {
  56776. source: "./media/characters/squishi/back.svg",
  56777. extra: 1428/1271,
  56778. bottom: 30/1458
  56779. },
  56780. extraAttributes: {
  56781. "pawSize": {
  56782. name: "Paw Size",
  56783. power: 1,
  56784. type: "length",
  56785. base: math.unit(14, "ShoeSizeMensUS"),
  56786. defaultUnit: "ShoeSizeMensUS"
  56787. },
  56788. }
  56789. },
  56790. },
  56791. [
  56792. {
  56793. name: "Normal",
  56794. height: math.unit(4, "feet"),
  56795. default: true
  56796. },
  56797. ]
  56798. ))
  56799. characterMakers.push(() => makeCharacter(
  56800. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56801. {
  56802. front: {
  56803. height: math.unit(7 + 8/12, "feet"),
  56804. weight: math.unit(333, "lb"),
  56805. name: "Front",
  56806. image: {
  56807. source: "./media/characters/vincent-vasroc/front.svg",
  56808. extra: 1962/1860,
  56809. bottom: 41/2003
  56810. }
  56811. },
  56812. back: {
  56813. height: math.unit(7 + 8/12, "feet"),
  56814. weight: math.unit(333, "lb"),
  56815. name: "Back",
  56816. image: {
  56817. source: "./media/characters/vincent-vasroc/back.svg",
  56818. extra: 1952/1815,
  56819. bottom: 33/1985
  56820. }
  56821. },
  56822. paw: {
  56823. height: math.unit(1.24, "feet"),
  56824. name: "Paw",
  56825. image: {
  56826. source: "./media/characters/vincent-vasroc/paw.svg"
  56827. }
  56828. },
  56829. ear: {
  56830. height: math.unit(0.75, "feet"),
  56831. name: "Ear",
  56832. image: {
  56833. source: "./media/characters/vincent-vasroc/ear.svg"
  56834. }
  56835. },
  56836. },
  56837. [
  56838. {
  56839. name: "Nano",
  56840. height: math.unit(92, "micrometers")
  56841. },
  56842. {
  56843. name: "Normal",
  56844. height: math.unit(7 + 8/12, "feet"),
  56845. default: true
  56846. },
  56847. ]
  56848. ))
  56849. characterMakers.push(() => makeCharacter(
  56850. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56851. {
  56852. frontNsfw: {
  56853. height: math.unit(40, "feet"),
  56854. weight: math.unit(58, "tons"),
  56855. name: "Front (NSFW)",
  56856. image: {
  56857. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56858. extra: 1265/965,
  56859. bottom: 155/1420
  56860. }
  56861. },
  56862. frontSfw: {
  56863. height: math.unit(40, "feet"),
  56864. weight: math.unit(58, "tons"),
  56865. name: "Front (SFW)",
  56866. image: {
  56867. source: "./media/characters/ru-kahn/front-sfw.svg",
  56868. extra: 1265/965,
  56869. bottom: 80/1345
  56870. }
  56871. },
  56872. },
  56873. [
  56874. {
  56875. name: "Small",
  56876. height: math.unit(4, "feet")
  56877. },
  56878. {
  56879. name: "Normal",
  56880. height: math.unit(40, "feet"),
  56881. default: true
  56882. },
  56883. {
  56884. name: "Macro",
  56885. height: math.unit(400, "feet")
  56886. },
  56887. ]
  56888. ))
  56889. characterMakers.push(() => makeCharacter(
  56890. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56891. {
  56892. frontNude: {
  56893. height: math.unit(6 + 5/12, "feet"),
  56894. name: "Front (Nude)",
  56895. image: {
  56896. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56897. extra: 1369/1366,
  56898. bottom: 68/1437
  56899. }
  56900. },
  56901. frontDressed: {
  56902. height: math.unit(6 + 5/12, "feet"),
  56903. name: "Front (Dressed)",
  56904. image: {
  56905. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56906. extra: 1369/1366,
  56907. bottom: 68/1437
  56908. }
  56909. },
  56910. },
  56911. [
  56912. {
  56913. name: "Normal",
  56914. height: math.unit(6 + 5/12, "feet"),
  56915. default: true
  56916. },
  56917. {
  56918. name: "Maximum",
  56919. height: math.unit(1930, "feet")
  56920. },
  56921. ]
  56922. ))
  56923. characterMakers.push(() => makeCharacter(
  56924. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56925. {
  56926. front: {
  56927. height: math.unit(5 + 6/12, "feet"),
  56928. name: "Front",
  56929. image: {
  56930. source: "./media/characters/kaja/front.svg",
  56931. extra: 1874/1514,
  56932. bottom: 117/1991
  56933. }
  56934. },
  56935. },
  56936. [
  56937. {
  56938. name: "Normal",
  56939. height: math.unit(5 + 6/12, "feet"),
  56940. default: true
  56941. },
  56942. ]
  56943. ))
  56944. characterMakers.push(() => makeCharacter(
  56945. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56946. {
  56947. front: {
  56948. height: math.unit(5 + 9/12, "feet"),
  56949. weight: math.unit(200, "lb"),
  56950. name: "Front",
  56951. image: {
  56952. source: "./media/characters/mark-smith/front.svg",
  56953. extra: 1004/943,
  56954. bottom: 58/1062
  56955. }
  56956. },
  56957. back: {
  56958. height: math.unit(5 + 9/12, "feet"),
  56959. weight: math.unit(200, "lb"),
  56960. name: "Back",
  56961. image: {
  56962. source: "./media/characters/mark-smith/back.svg",
  56963. extra: 1023/953,
  56964. bottom: 24/1047
  56965. }
  56966. },
  56967. head: {
  56968. height: math.unit(1.82, "feet"),
  56969. name: "Head",
  56970. image: {
  56971. source: "./media/characters/mark-smith/head.svg"
  56972. }
  56973. },
  56974. hand: {
  56975. height: math.unit(1.4, "feet"),
  56976. name: "Hand",
  56977. image: {
  56978. source: "./media/characters/mark-smith/hand.svg"
  56979. }
  56980. },
  56981. paw: {
  56982. height: math.unit(1.69, "feet"),
  56983. name: "Paw",
  56984. image: {
  56985. source: "./media/characters/mark-smith/paw.svg"
  56986. }
  56987. },
  56988. },
  56989. [
  56990. {
  56991. name: "Micro",
  56992. height: math.unit(0.25, "inches")
  56993. },
  56994. {
  56995. name: "Normal",
  56996. height: math.unit(5 + 9/12, "feet"),
  56997. default: true
  56998. },
  56999. {
  57000. name: "Macro",
  57001. height: math.unit(500, "feet")
  57002. },
  57003. ]
  57004. ))
  57005. characterMakers.push(() => makeCharacter(
  57006. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57007. {
  57008. frontNude: {
  57009. height: math.unit(6, "feet"),
  57010. name: "Front (Nude)",
  57011. image: {
  57012. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57013. extra: 1384/1321,
  57014. bottom: 57/1441
  57015. }
  57016. },
  57017. frontDressed: {
  57018. height: math.unit(6, "feet"),
  57019. name: "Front (Dressed)",
  57020. image: {
  57021. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57022. extra: 1384/1321,
  57023. bottom: 57/1441
  57024. }
  57025. },
  57026. },
  57027. [
  57028. {
  57029. name: "Normal",
  57030. height: math.unit(6, "feet"),
  57031. default: true
  57032. },
  57033. {
  57034. name: "Maximum",
  57035. height: math.unit(1776, "feet")
  57036. },
  57037. ]
  57038. ))
  57039. characterMakers.push(() => makeCharacter(
  57040. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57041. {
  57042. front: {
  57043. height: math.unit(2 + 4/12, "feet"),
  57044. weight: math.unit(350, "lb"),
  57045. name: "Front",
  57046. image: {
  57047. source: "./media/characters/devos/front.svg",
  57048. extra: 958/852,
  57049. bottom: 143/1101
  57050. }
  57051. },
  57052. },
  57053. [
  57054. {
  57055. name: "Base",
  57056. height: math.unit(2 + 4/12, "feet"),
  57057. default: true
  57058. },
  57059. ]
  57060. ))
  57061. characterMakers.push(() => makeCharacter(
  57062. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57063. {
  57064. front: {
  57065. height: math.unit(9 + 2/12, "feet"),
  57066. name: "Front",
  57067. image: {
  57068. source: "./media/characters/hiveheart/front.svg",
  57069. extra: 394/364,
  57070. bottom: 65/459
  57071. }
  57072. },
  57073. back: {
  57074. height: math.unit(9 + 2/12, "feet"),
  57075. name: "Back",
  57076. image: {
  57077. source: "./media/characters/hiveheart/back.svg",
  57078. extra: 374/357,
  57079. bottom: 63/437
  57080. }
  57081. },
  57082. },
  57083. [
  57084. {
  57085. name: "Base",
  57086. height: math.unit(9 + 2/12, "feet"),
  57087. default: true
  57088. },
  57089. ]
  57090. ))
  57091. characterMakers.push(() => makeCharacter(
  57092. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57093. {
  57094. front: {
  57095. height: math.unit(2.5, "inches"),
  57096. weight: math.unit(0.6, "oz"),
  57097. name: "Front",
  57098. image: {
  57099. source: "./media/characters/bryn/front.svg",
  57100. extra: 1484/1119,
  57101. bottom: 66/1550
  57102. }
  57103. },
  57104. back: {
  57105. height: math.unit(2.5, "inches"),
  57106. weight: math.unit(0.6, "oz"),
  57107. name: "Back",
  57108. image: {
  57109. source: "./media/characters/bryn/back.svg",
  57110. extra: 1472/1170,
  57111. bottom: 32/1504
  57112. }
  57113. },
  57114. wings: {
  57115. height: math.unit(2.5, "inches"),
  57116. weight: math.unit(0.6, "oz"),
  57117. name: "Wings",
  57118. image: {
  57119. source: "./media/characters/bryn/wings.svg",
  57120. extra: 567/448,
  57121. bottom: 10/577
  57122. }
  57123. },
  57124. dressed: {
  57125. height: math.unit(2.5, "inches"),
  57126. weight: math.unit(0.6, "oz"),
  57127. name: "Dressed",
  57128. image: {
  57129. source: "./media/characters/bryn/dressed.svg",
  57130. extra: 719/589,
  57131. bottom: 54/773
  57132. }
  57133. },
  57134. head: {
  57135. height: math.unit(1.75, "inches"),
  57136. name: "Head",
  57137. image: {
  57138. source: "./media/characters/bryn/head.svg"
  57139. }
  57140. },
  57141. foot: {
  57142. height: math.unit(0.4, "inches"),
  57143. name: "Foot",
  57144. image: {
  57145. source: "./media/characters/bryn/foot.svg"
  57146. }
  57147. },
  57148. },
  57149. [
  57150. {
  57151. name: "Normal",
  57152. height: math.unit(2.5, "inches"),
  57153. default: true
  57154. },
  57155. ]
  57156. ))
  57157. characterMakers.push(() => makeCharacter(
  57158. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57159. {
  57160. side: {
  57161. height: math.unit(7, "feet"),
  57162. weight: math.unit(657, "kg"),
  57163. name: "Side",
  57164. image: {
  57165. source: "./media/characters/delta/side.svg",
  57166. extra: 781/212,
  57167. bottom: 7/788
  57168. },
  57169. extraAttributes: {
  57170. "wingspan": {
  57171. name: "Wingspan",
  57172. power: 1,
  57173. type: "length",
  57174. base: math.unit(48, "feet")
  57175. },
  57176. "length": {
  57177. name: "Length",
  57178. power: 1,
  57179. type: "length",
  57180. base: math.unit(21, "feet")
  57181. },
  57182. "pawSize": {
  57183. name: "Paw Size",
  57184. power: 2,
  57185. type: "area",
  57186. base: math.unit(1.5*1.4, "feet^2")
  57187. },
  57188. }
  57189. },
  57190. },
  57191. [
  57192. {
  57193. name: "Normal",
  57194. height: math.unit(6, "feet"),
  57195. default: true
  57196. },
  57197. ]
  57198. ))
  57199. characterMakers.push(() => makeCharacter(
  57200. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57201. {
  57202. front: {
  57203. height: math.unit(6, "feet"),
  57204. name: "Front",
  57205. image: {
  57206. source: "./media/characters/pyrow/front.svg",
  57207. extra: 513/486,
  57208. bottom: 14/527
  57209. }
  57210. },
  57211. frontWing: {
  57212. height: math.unit(6, "feet"),
  57213. name: "Front (Wing)",
  57214. image: {
  57215. source: "./media/characters/pyrow/front-wing.svg",
  57216. extra: 539/383,
  57217. bottom: 20/559
  57218. }
  57219. },
  57220. back: {
  57221. height: math.unit(6, "feet"),
  57222. name: "Back",
  57223. image: {
  57224. source: "./media/characters/pyrow/back.svg",
  57225. extra: 500/473,
  57226. bottom: 9/509
  57227. }
  57228. },
  57229. },
  57230. [
  57231. {
  57232. name: "Normal",
  57233. height: math.unit(6, "feet"),
  57234. default: true
  57235. },
  57236. ]
  57237. ))
  57238. characterMakers.push(() => makeCharacter(
  57239. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57240. {
  57241. front: {
  57242. height: math.unit(5, "meters"),
  57243. weight: math.unit(3, "tonnes"),
  57244. name: "Front",
  57245. image: {
  57246. source: "./media/characters/velikan/front.svg",
  57247. extra: 867/744,
  57248. bottom: 71/938
  57249. },
  57250. extraAttributes: {
  57251. "shoeSize": {
  57252. name: "Shoe Size",
  57253. power: 1,
  57254. type: "length",
  57255. base: math.unit(135, "ShoeSizeUK"),
  57256. defaultUnit: "ShoeSizeUK"
  57257. },
  57258. }
  57259. },
  57260. },
  57261. [
  57262. {
  57263. name: "Normal",
  57264. height: math.unit(5, "meters"),
  57265. default: true
  57266. },
  57267. {
  57268. name: "Macro",
  57269. height: math.unit(1, "km")
  57270. },
  57271. {
  57272. name: "Mega Macro",
  57273. height: math.unit(100, "km")
  57274. },
  57275. {
  57276. name: "Giga Macro",
  57277. height: math.unit(2, "megameters")
  57278. },
  57279. {
  57280. name: "Planetary",
  57281. height: math.unit(22, "megameters")
  57282. },
  57283. {
  57284. name: "Solar",
  57285. height: math.unit(8, "gigameters")
  57286. },
  57287. {
  57288. name: "Cosmic",
  57289. height: math.unit(10, "zettameters")
  57290. },
  57291. {
  57292. name: "Omni",
  57293. height: math.unit(9e260, "multiverses")
  57294. },
  57295. ]
  57296. ))
  57297. characterMakers.push(() => makeCharacter(
  57298. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57299. {
  57300. front: {
  57301. height: math.unit(4 + 3/12, "feet"),
  57302. weight: math.unit(90, "lb"),
  57303. name: "Front",
  57304. image: {
  57305. source: "./media/characters/sabiki/front.svg",
  57306. extra: 1662/1423,
  57307. bottom: 65/1727
  57308. }
  57309. },
  57310. },
  57311. [
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(4 + 3/12, "feet"),
  57315. default: true
  57316. },
  57317. ]
  57318. ))
  57319. characterMakers.push(() => makeCharacter(
  57320. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57321. {
  57322. frontSfw: {
  57323. height: math.unit(2, "mm"),
  57324. name: "Front (SFW)",
  57325. image: {
  57326. source: "./media/characters/carmel/front-sfw.svg",
  57327. extra: 1131/1006,
  57328. bottom: 66/1197
  57329. }
  57330. },
  57331. frontNsfw: {
  57332. height: math.unit(2, "mm"),
  57333. name: "Front (NSFW)",
  57334. image: {
  57335. source: "./media/characters/carmel/front-nsfw.svg",
  57336. extra: 1131/1006,
  57337. bottom: 66/1197
  57338. }
  57339. },
  57340. foot: {
  57341. height: math.unit(0.3, "mm"),
  57342. name: "Foot",
  57343. image: {
  57344. source: "./media/characters/carmel/foot.svg"
  57345. }
  57346. },
  57347. tongue: {
  57348. height: math.unit(0.71, "mm"),
  57349. name: "Tongue",
  57350. image: {
  57351. source: "./media/characters/carmel/tongue.svg"
  57352. }
  57353. },
  57354. dick: {
  57355. height: math.unit(0.085, "mm"),
  57356. name: "Dick",
  57357. image: {
  57358. source: "./media/characters/carmel/dick.svg"
  57359. }
  57360. },
  57361. },
  57362. [
  57363. {
  57364. name: "Micro",
  57365. height: math.unit(2, "mm"),
  57366. default: true
  57367. },
  57368. {
  57369. name: "Normal",
  57370. height: math.unit(4 + 8/12, "feet")
  57371. },
  57372. {
  57373. name: "Mega Macro",
  57374. height: math.unit(250, "feet")
  57375. },
  57376. {
  57377. name: "BIGGER",
  57378. height: math.unit(1000, "feet")
  57379. },
  57380. {
  57381. name: "BIGGEST",
  57382. height: math.unit(2, "miles")
  57383. },
  57384. ]
  57385. ))
  57386. characterMakers.push(() => makeCharacter(
  57387. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57388. {
  57389. front: {
  57390. height: math.unit(6.5, "feet"),
  57391. weight: math.unit(198, "lb"),
  57392. name: "Front",
  57393. image: {
  57394. source: "./media/characters/tamani/anthro.svg",
  57395. extra: 930/890,
  57396. bottom: 34/964
  57397. },
  57398. form: "anthro",
  57399. default: true
  57400. },
  57401. side: {
  57402. height: math.unit(6, "feet"),
  57403. weight: math.unit(198*2, "lb"),
  57404. name: "Side",
  57405. image: {
  57406. source: "./media/characters/tamani/feral.svg",
  57407. extra: 559/519,
  57408. bottom: 43/602
  57409. },
  57410. form: "feral"
  57411. },
  57412. },
  57413. [
  57414. {
  57415. name: "Normal",
  57416. height: math.unit(6.5, "feet"),
  57417. default: true,
  57418. form: "anthro"
  57419. },
  57420. {
  57421. name: "Normal",
  57422. height: math.unit(6, "feet"),
  57423. default: true,
  57424. form: "feral"
  57425. },
  57426. ],
  57427. {
  57428. "anthro": {
  57429. name: "Anthro",
  57430. default: true
  57431. },
  57432. "feral": {
  57433. name: "Feral",
  57434. },
  57435. }
  57436. ))
  57437. characterMakers.push(() => makeCharacter(
  57438. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57439. {
  57440. front: {
  57441. height: math.unit(4 + 1/12, "feet"),
  57442. weight: math.unit(114, "lb"),
  57443. name: "Front",
  57444. image: {
  57445. source: "./media/characters/dex/front.svg",
  57446. extra: 787/680,
  57447. bottom: 18/805
  57448. }
  57449. },
  57450. side: {
  57451. height: math.unit(4 + 1/12, "feet"),
  57452. weight: math.unit(114, "lb"),
  57453. name: "Side",
  57454. image: {
  57455. source: "./media/characters/dex/side.svg",
  57456. extra: 785/680,
  57457. bottom: 12/797
  57458. }
  57459. },
  57460. back: {
  57461. height: math.unit(4 + 1/12, "feet"),
  57462. weight: math.unit(114, "lb"),
  57463. name: "Back",
  57464. image: {
  57465. source: "./media/characters/dex/back.svg",
  57466. extra: 785/681,
  57467. bottom: 17/802
  57468. }
  57469. },
  57470. loungewear: {
  57471. height: math.unit(4 + 1/12, "feet"),
  57472. weight: math.unit(114, "lb"),
  57473. name: "Loungewear",
  57474. image: {
  57475. source: "./media/characters/dex/loungewear.svg",
  57476. extra: 787/680,
  57477. bottom: 18/805
  57478. }
  57479. },
  57480. workout: {
  57481. height: math.unit(4 + 1/12, "feet"),
  57482. weight: math.unit(114, "lb"),
  57483. name: "Workout",
  57484. image: {
  57485. source: "./media/characters/dex/workout.svg",
  57486. extra: 787/680,
  57487. bottom: 18/805
  57488. }
  57489. },
  57490. schoolUniform: {
  57491. height: math.unit(4 + 1/12, "feet"),
  57492. weight: math.unit(114, "lb"),
  57493. name: "School-uniform",
  57494. image: {
  57495. source: "./media/characters/dex/school-uniform.svg",
  57496. extra: 787/680,
  57497. bottom: 18/805
  57498. }
  57499. },
  57500. maw: {
  57501. height: math.unit(0.55, "feet"),
  57502. name: "Maw",
  57503. image: {
  57504. source: "./media/characters/dex/maw.svg"
  57505. }
  57506. },
  57507. paw: {
  57508. height: math.unit(0.87, "feet"),
  57509. name: "Paw",
  57510. image: {
  57511. source: "./media/characters/dex/paw.svg"
  57512. }
  57513. },
  57514. bust: {
  57515. height: math.unit(1.67, "feet"),
  57516. name: "Bust",
  57517. image: {
  57518. source: "./media/characters/dex/bust.svg"
  57519. }
  57520. },
  57521. },
  57522. [
  57523. {
  57524. name: "Normal",
  57525. height: math.unit(4 + 1/12, "feet"),
  57526. default: true
  57527. },
  57528. ]
  57529. ))
  57530. characterMakers.push(() => makeCharacter(
  57531. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57532. {
  57533. front: {
  57534. height: math.unit(4 + 3/12, "feet"),
  57535. weight: math.unit(60, "lb"),
  57536. name: "Front",
  57537. image: {
  57538. source: "./media/characters/silke/front.svg",
  57539. extra: 1334/1122,
  57540. bottom: 21/1355
  57541. }
  57542. },
  57543. back: {
  57544. height: math.unit(4 + 3/12, "feet"),
  57545. weight: math.unit(60, "lb"),
  57546. name: "Back",
  57547. image: {
  57548. source: "./media/characters/silke/back.svg",
  57549. extra: 1328/1092,
  57550. bottom: 16/1344
  57551. }
  57552. },
  57553. dressed: {
  57554. height: math.unit(4 + 3/12, "feet"),
  57555. weight: math.unit(60, "lb"),
  57556. name: "Dressed",
  57557. image: {
  57558. source: "./media/characters/silke/dressed.svg",
  57559. extra: 1334/1122,
  57560. bottom: 43/1377
  57561. }
  57562. },
  57563. },
  57564. [
  57565. {
  57566. name: "Normal",
  57567. height: math.unit(4 + 3/12, "feet"),
  57568. default: true
  57569. },
  57570. ]
  57571. ))
  57572. characterMakers.push(() => makeCharacter(
  57573. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57574. {
  57575. front: {
  57576. height: math.unit(1.58, "meters"),
  57577. weight: math.unit(47, "kg"),
  57578. name: "Front",
  57579. image: {
  57580. source: "./media/characters/wireshark/front.svg",
  57581. extra: 883/838,
  57582. bottom: 66/949
  57583. }
  57584. },
  57585. },
  57586. [
  57587. {
  57588. name: "Normal",
  57589. height: math.unit(1.58, "meters"),
  57590. default: true
  57591. },
  57592. ]
  57593. ))
  57594. characterMakers.push(() => makeCharacter(
  57595. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57596. {
  57597. front: {
  57598. height: math.unit(6, "meters"),
  57599. weight: math.unit(15000, "kg"),
  57600. name: "Front",
  57601. image: {
  57602. source: "./media/characters/gallagher/front.svg",
  57603. extra: 532/493,
  57604. bottom: 0/532
  57605. }
  57606. },
  57607. },
  57608. [
  57609. {
  57610. name: "Normal",
  57611. height: math.unit(6, "meters"),
  57612. default: true
  57613. },
  57614. ]
  57615. ))
  57616. characterMakers.push(() => makeCharacter(
  57617. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57618. {
  57619. front: {
  57620. height: math.unit(2.4, "meters"),
  57621. weight: math.unit(270, "kg"),
  57622. name: "Front",
  57623. image: {
  57624. source: "./media/characters/alice/front.svg",
  57625. extra: 950/900,
  57626. bottom: 36/986
  57627. }
  57628. },
  57629. side: {
  57630. height: math.unit(2.4, "meters"),
  57631. weight: math.unit(270, "kg"),
  57632. name: "Side",
  57633. image: {
  57634. source: "./media/characters/alice/side.svg",
  57635. extra: 921/876,
  57636. bottom: 19/940
  57637. }
  57638. },
  57639. dressed: {
  57640. height: math.unit(2.4, "meters"),
  57641. weight: math.unit(270, "kg"),
  57642. name: "Dressed",
  57643. image: {
  57644. source: "./media/characters/alice/dressed.svg",
  57645. extra: 905/850,
  57646. bottom: 81/986
  57647. }
  57648. },
  57649. fishnet: {
  57650. height: math.unit(2.4, "meters"),
  57651. weight: math.unit(270, "kg"),
  57652. name: "Fishnet",
  57653. image: {
  57654. source: "./media/characters/alice/fishnet.svg",
  57655. extra: 905/850,
  57656. bottom: 81/986
  57657. }
  57658. },
  57659. },
  57660. [
  57661. {
  57662. name: "Normal",
  57663. height: math.unit(2.4, "meters"),
  57664. default: true
  57665. },
  57666. ]
  57667. ))
  57668. characterMakers.push(() => makeCharacter(
  57669. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57670. {
  57671. front: {
  57672. height: math.unit(175.25, "feet"),
  57673. name: "Front",
  57674. image: {
  57675. source: "./media/characters/fio/front.svg",
  57676. extra: 1883/1591,
  57677. bottom: 34/1917
  57678. }
  57679. },
  57680. },
  57681. [
  57682. {
  57683. name: "Normal",
  57684. height: math.unit(175.25, "cm"),
  57685. default: true
  57686. },
  57687. ]
  57688. ))
  57689. characterMakers.push(() => makeCharacter(
  57690. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57691. {
  57692. side: {
  57693. height: math.unit(6, "meters"),
  57694. weight: math.unit(3400, "kg"),
  57695. preyCapacity: math.unit(1700, "liters"),
  57696. name: "Side",
  57697. image: {
  57698. source: "./media/characters/hass/side.svg",
  57699. extra: 1058/997,
  57700. bottom: 177/1235
  57701. }
  57702. },
  57703. feeding: {
  57704. height: math.unit(6*0.63, "meters"),
  57705. weight: math.unit(3400, "kg"),
  57706. preyCapacity: math.unit(1700, "liters"),
  57707. name: "Feeding",
  57708. image: {
  57709. source: "./media/characters/hass/feeding.svg",
  57710. extra: 689/579,
  57711. bottom: 146/835
  57712. }
  57713. },
  57714. guts: {
  57715. height: math.unit(6, "meters"),
  57716. weight: math.unit(3400, "kg"),
  57717. name: "Guts",
  57718. image: {
  57719. source: "./media/characters/hass/guts.svg",
  57720. extra: 1223/1198,
  57721. bottom: 182/1405
  57722. }
  57723. },
  57724. dickFront: {
  57725. height: math.unit(1.4, "meters"),
  57726. name: "Dick (Front)",
  57727. image: {
  57728. source: "./media/characters/hass/dick-front.svg"
  57729. }
  57730. },
  57731. dickSide: {
  57732. height: math.unit(1.3, "meters"),
  57733. name: "Dick (Side)",
  57734. image: {
  57735. source: "./media/characters/hass/dick-side.svg"
  57736. }
  57737. },
  57738. dickBack: {
  57739. height: math.unit(1.4, "meters"),
  57740. name: "Dick (Back)",
  57741. image: {
  57742. source: "./media/characters/hass/dick-back.svg"
  57743. }
  57744. },
  57745. },
  57746. [
  57747. {
  57748. name: "Normal",
  57749. height: math.unit(6, "meters"),
  57750. default: true
  57751. },
  57752. ]
  57753. ))
  57754. characterMakers.push(() => makeCharacter(
  57755. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57756. {
  57757. front: {
  57758. height: math.unit(4, "feet"),
  57759. weight: math.unit(60, "lb"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/hickory-finnegan/front.svg",
  57763. extra: 444/411,
  57764. bottom: 10/454
  57765. }
  57766. },
  57767. side: {
  57768. height: math.unit(4, "feet"),
  57769. weight: math.unit(60, "lb"),
  57770. name: "Side",
  57771. image: {
  57772. source: "./media/characters/hickory-finnegan/side.svg",
  57773. extra: 444/411,
  57774. bottom: 10/454
  57775. }
  57776. },
  57777. back: {
  57778. height: math.unit(4, "feet"),
  57779. weight: math.unit(60, "lb"),
  57780. name: "Back",
  57781. image: {
  57782. source: "./media/characters/hickory-finnegan/back.svg",
  57783. extra: 444/411,
  57784. bottom: 10/454
  57785. }
  57786. },
  57787. },
  57788. [
  57789. {
  57790. name: "Normal",
  57791. height: math.unit(4, "feet"),
  57792. default: true
  57793. },
  57794. ]
  57795. ))
  57796. characterMakers.push(() => makeCharacter(
  57797. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57798. {
  57799. snivy_front: {
  57800. height: math.unit(2, "feet"),
  57801. weight: math.unit(17.9, "lb"),
  57802. name: "Front",
  57803. image: {
  57804. source: "./media/characters/robin-phox/snivy-front.svg",
  57805. extra: 569/504,
  57806. bottom: 33/602
  57807. },
  57808. form: "snivy",
  57809. default: true
  57810. },
  57811. snivy_frontNsfw: {
  57812. height: math.unit(2, "feet"),
  57813. weight: math.unit(17.9, "lb"),
  57814. name: "Front (NSFW)",
  57815. image: {
  57816. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57817. extra: 569/504,
  57818. bottom: 33/602
  57819. },
  57820. form: "snivy",
  57821. },
  57822. snivy_back: {
  57823. height: math.unit(2, "feet"),
  57824. weight: math.unit(17.9, "lb"),
  57825. name: "Back",
  57826. image: {
  57827. source: "./media/characters/robin-phox/snivy-back.svg",
  57828. extra: 577/508,
  57829. bottom: 21/598
  57830. },
  57831. form: "snivy",
  57832. },
  57833. snivy_foot: {
  57834. height: math.unit(0.68, "feet"),
  57835. name: "Foot",
  57836. image: {
  57837. source: "./media/characters/robin-phox/snivy-foot.svg"
  57838. },
  57839. form: "snivy",
  57840. },
  57841. snivy_sole: {
  57842. height: math.unit(0.68, "feet"),
  57843. name: "Sole",
  57844. image: {
  57845. source: "./media/characters/robin-phox/snivy-sole.svg"
  57846. },
  57847. form: "snivy",
  57848. },
  57849. yoshi_front: {
  57850. height: math.unit(6, "feet"),
  57851. weight: math.unit(150, "lb"),
  57852. name: "Front",
  57853. image: {
  57854. source: "./media/characters/robin-phox/yoshi-front.svg",
  57855. extra: 890/792,
  57856. bottom: 29/919
  57857. },
  57858. form: "yoshi",
  57859. default: true
  57860. },
  57861. yoshi_frontNsfw: {
  57862. height: math.unit(6, "feet"),
  57863. weight: math.unit(150, "lb"),
  57864. name: "Front (NSFW)",
  57865. image: {
  57866. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57867. extra: 890/792,
  57868. bottom: 29/919
  57869. },
  57870. form: "yoshi",
  57871. },
  57872. yoshi_back: {
  57873. height: math.unit(6, "feet"),
  57874. weight: math.unit(150, "lb"),
  57875. name: "Back",
  57876. image: {
  57877. source: "./media/characters/robin-phox/yoshi-back.svg",
  57878. extra: 890/792,
  57879. bottom: 29/919
  57880. },
  57881. form: "yoshi",
  57882. },
  57883. yoshi_foot: {
  57884. height: math.unit(1.5, "feet"),
  57885. name: "Foot",
  57886. image: {
  57887. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57888. },
  57889. form: "yoshi",
  57890. },
  57891. delphox_front: {
  57892. height: math.unit(4 + 11/12, "feet"),
  57893. weight: math.unit(86, "lb"),
  57894. name: "Front",
  57895. image: {
  57896. source: "./media/characters/robin-phox/delphox-front.svg",
  57897. extra: 1266/1069,
  57898. bottom: 32/1298
  57899. },
  57900. form: "delphox",
  57901. default: true
  57902. },
  57903. delphox_frontNsfw: {
  57904. height: math.unit(4 + 11/12, "feet"),
  57905. weight: math.unit(86, "lb"),
  57906. name: "Front (NSFW)",
  57907. image: {
  57908. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57909. extra: 1266/1069,
  57910. bottom: 32/1298
  57911. },
  57912. form: "delphox",
  57913. },
  57914. delphox_back: {
  57915. height: math.unit(4 + 11/12, "feet"),
  57916. weight: math.unit(86, "lb"),
  57917. name: "Back",
  57918. image: {
  57919. source: "./media/characters/robin-phox/delphox-back.svg",
  57920. extra: 1269/1083,
  57921. bottom: 15/1284
  57922. },
  57923. form: "delphox",
  57924. },
  57925. mienshao_front: {
  57926. height: math.unit(4 + 7/12, "feet"),
  57927. weight: math.unit(78.3, "lb"),
  57928. name: "Front",
  57929. image: {
  57930. source: "./media/characters/robin-phox/mienshao-front.svg",
  57931. extra: 1052/970,
  57932. bottom: 108/1160
  57933. },
  57934. form: "mienshao",
  57935. default: true
  57936. },
  57937. mienshao_frontNsfw: {
  57938. height: math.unit(4 + 7/12, "feet"),
  57939. weight: math.unit(78.3, "lb"),
  57940. name: "Front (NSFW)",
  57941. image: {
  57942. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57943. extra: 1052/970,
  57944. bottom: 108/1160
  57945. },
  57946. form: "mienshao",
  57947. },
  57948. mienshao_back: {
  57949. height: math.unit(4 + 7/12, "feet"),
  57950. weight: math.unit(78.3, "lb"),
  57951. name: "Back",
  57952. image: {
  57953. source: "./media/characters/robin-phox/mienshao-back.svg",
  57954. extra: 1102/982,
  57955. bottom: 32/1134
  57956. },
  57957. form: "mienshao",
  57958. },
  57959. inteleon_front: {
  57960. height: math.unit(6 + 3/12, "feet"),
  57961. weight: math.unit(99.6, "lb"),
  57962. name: "Front",
  57963. image: {
  57964. source: "./media/characters/robin-phox/inteleon-front.svg",
  57965. extra: 910/799,
  57966. bottom: 76/986
  57967. },
  57968. form: "inteleon",
  57969. default: true
  57970. },
  57971. inteleon_frontNsfw: {
  57972. height: math.unit(6 + 3/12, "feet"),
  57973. weight: math.unit(99.6, "lb"),
  57974. name: "Front (NSFW)",
  57975. image: {
  57976. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57977. extra: 910/799,
  57978. bottom: 76/986
  57979. },
  57980. form: "inteleon",
  57981. },
  57982. inteleon_back: {
  57983. height: math.unit(6 + 3/12, "feet"),
  57984. weight: math.unit(99.6, "lb"),
  57985. name: "Back",
  57986. image: {
  57987. source: "./media/characters/robin-phox/inteleon-back.svg",
  57988. extra: 907/796,
  57989. bottom: 25/932
  57990. },
  57991. form: "inteleon",
  57992. },
  57993. reshiram_front: {
  57994. height: math.unit(10 + 6/12, "feet"),
  57995. weight: math.unit(727.5, "lb"),
  57996. name: "Front",
  57997. image: {
  57998. source: "./media/characters/robin-phox/reshiram-front.svg",
  57999. extra: 1198/940,
  58000. bottom: 123/1321
  58001. },
  58002. form: "reshiram",
  58003. },
  58004. reshiram_frontNsfw: {
  58005. height: math.unit(10 + 6/12, "feet"),
  58006. weight: math.unit(727.5, "lb"),
  58007. name: "Front-nsfw",
  58008. image: {
  58009. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58010. extra: 1198/940,
  58011. bottom: 123/1321
  58012. },
  58013. form: "reshiram",
  58014. },
  58015. reshiram_back: {
  58016. height: math.unit(10 + 6/12, "feet"),
  58017. weight: math.unit(727.5, "lb"),
  58018. name: "Back",
  58019. image: {
  58020. source: "./media/characters/robin-phox/reshiram-back.svg",
  58021. extra: 1024/904,
  58022. bottom: 85/1109
  58023. },
  58024. form: "reshiram",
  58025. },
  58026. samurott_front: {
  58027. height: math.unit(8, "feet"),
  58028. weight: math.unit(208.6, "lb"),
  58029. name: "Front",
  58030. image: {
  58031. source: "./media/characters/robin-phox/samurott-front.svg",
  58032. extra: 1048/984,
  58033. bottom: 100/1148
  58034. },
  58035. form: "samurott",
  58036. },
  58037. samurott_frontNsfw: {
  58038. height: math.unit(8, "feet"),
  58039. weight: math.unit(208.6, "lb"),
  58040. name: "Front-nsfw",
  58041. image: {
  58042. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58043. extra: 1048/984,
  58044. bottom: 100/1148
  58045. },
  58046. form: "samurott",
  58047. },
  58048. samurott_back: {
  58049. height: math.unit(8, "feet"),
  58050. weight: math.unit(208.6, "lb"),
  58051. name: "Back",
  58052. image: {
  58053. source: "./media/characters/robin-phox/samurott-back.svg",
  58054. extra: 1110/1042,
  58055. bottom: 12/1122
  58056. },
  58057. form: "samurott",
  58058. },
  58059. samurott_feral: {
  58060. height: math.unit(4 + 11/12, "feet"),
  58061. weight: math.unit(208.6, "lb"),
  58062. name: "Feral",
  58063. image: {
  58064. source: "./media/characters/robin-phox/samurott-feral.svg",
  58065. extra: 766/681,
  58066. bottom: 108/874
  58067. },
  58068. form: "samurott",
  58069. },
  58070. },
  58071. [
  58072. {
  58073. name: "Normal",
  58074. height: math.unit(2, "feet"),
  58075. default: true,
  58076. form: "snivy"
  58077. },
  58078. {
  58079. name: "Normal",
  58080. height: math.unit(6, "feet"),
  58081. default: true,
  58082. form: "yoshi"
  58083. },
  58084. {
  58085. name: "Normal",
  58086. height: math.unit(4 + 11/12, "feet"),
  58087. default: true,
  58088. form: "delphox"
  58089. },
  58090. {
  58091. name: "Normal",
  58092. height: math.unit(4 + 7/12, "feet"),
  58093. default: true,
  58094. form: "mienshao"
  58095. },
  58096. {
  58097. name: "Normal",
  58098. height: math.unit(6 + 3/12, "feet"),
  58099. default: true,
  58100. form: "inteleon"
  58101. },
  58102. {
  58103. name: "Normal",
  58104. height: math.unit(10 + 6/12, "feet"),
  58105. default: true,
  58106. form: "reshiram"
  58107. },
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(8, "feet"),
  58111. default: true,
  58112. form: "samurott"
  58113. },
  58114. {
  58115. name: "Macro",
  58116. height: math.unit(500, "feet"),
  58117. allForms: true
  58118. },
  58119. {
  58120. name: "Mega Macro",
  58121. height: math.unit(10, "earths"),
  58122. allForms: true
  58123. },
  58124. {
  58125. name: "Giga Macro",
  58126. height: math.unit(1, "galaxy"),
  58127. allForms: true
  58128. },
  58129. {
  58130. name: "Godly Macro",
  58131. height: math.unit(1e10, "multiverses"),
  58132. allForms: true
  58133. },
  58134. ],
  58135. {
  58136. "snivy": {
  58137. name: "Snivy",
  58138. default: true
  58139. },
  58140. "yoshi": {
  58141. name: "Yoshi",
  58142. },
  58143. "delphox": {
  58144. name: "Delphox",
  58145. },
  58146. "mienshao": {
  58147. name: "Mienshao",
  58148. },
  58149. "inteleon": {
  58150. name: "Inteleon",
  58151. },
  58152. "reshiram": {
  58153. name: "Reshiram",
  58154. },
  58155. "samurott": {
  58156. name: "Samurott",
  58157. },
  58158. }
  58159. ))
  58160. characterMakers.push(() => makeCharacter(
  58161. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58162. {
  58163. front: {
  58164. height: math.unit(4, "feet"),
  58165. name: "Front",
  58166. image: {
  58167. source: "./media/characters/ash-leung/front.svg",
  58168. extra: 1916/1792,
  58169. bottom: 50/1966
  58170. }
  58171. },
  58172. },
  58173. [
  58174. {
  58175. name: "Atomic",
  58176. height: math.unit(1, "angstrom")
  58177. },
  58178. {
  58179. name: "Microscopic",
  58180. height: math.unit(4000, "angstroms")
  58181. },
  58182. {
  58183. name: "Speck",
  58184. height: math.unit(1, "mm")
  58185. },
  58186. {
  58187. name: "Small",
  58188. height: math.unit(1, "inch")
  58189. },
  58190. {
  58191. name: "Normal",
  58192. height: math.unit(4, "feet"),
  58193. default: true
  58194. },
  58195. ]
  58196. ))
  58197. characterMakers.push(() => makeCharacter(
  58198. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58199. {
  58200. frontDressed: {
  58201. height: math.unit(2.08, "meters"),
  58202. weight: math.unit(175, "lb"),
  58203. name: "Front (Dressed)",
  58204. image: {
  58205. source: "./media/characters/carie/front-dressed.svg",
  58206. extra: 456/417,
  58207. bottom: 7/463
  58208. }
  58209. },
  58210. backDressed: {
  58211. height: math.unit(2.08, "meters"),
  58212. weight: math.unit(175, "lb"),
  58213. name: "Back (Dressed)",
  58214. image: {
  58215. source: "./media/characters/carie/back-dressed.svg",
  58216. extra: 455/414,
  58217. bottom: 11/466
  58218. }
  58219. },
  58220. front: {
  58221. height: math.unit(2, "meters"),
  58222. weight: math.unit(175, "lb"),
  58223. name: "Front",
  58224. image: {
  58225. source: "./media/characters/carie/front.svg",
  58226. extra: 438/399,
  58227. bottom: 12/450
  58228. }
  58229. },
  58230. back: {
  58231. height: math.unit(2, "meters"),
  58232. weight: math.unit(175, "lb"),
  58233. name: "Back",
  58234. image: {
  58235. source: "./media/characters/carie/back.svg",
  58236. extra: 438/397,
  58237. bottom: 7/445
  58238. }
  58239. },
  58240. },
  58241. [
  58242. {
  58243. name: "Normal",
  58244. height: math.unit(2.08, "meters"),
  58245. default: true
  58246. },
  58247. {
  58248. name: "Macro",
  58249. height: math.unit(2.08e3, "meters")
  58250. },
  58251. {
  58252. name: "Mega Macro",
  58253. height: math.unit(2.08e6, "meters")
  58254. },
  58255. {
  58256. name: "Giga Macro",
  58257. height: math.unit(2.08e9, "meters")
  58258. },
  58259. {
  58260. name: "Tera Macro",
  58261. height: math.unit(2.08e12, "meters")
  58262. },
  58263. {
  58264. name: "Peta Macro",
  58265. height: math.unit(2.08e15, "meters")
  58266. },
  58267. {
  58268. name: "Exa Macro",
  58269. height: math.unit(2.08e18, "meters")
  58270. },
  58271. {
  58272. name: "Zetta Macro",
  58273. height: math.unit(2.08e21, "meters")
  58274. },
  58275. {
  58276. name: "Yotta Macro",
  58277. height: math.unit(2.08e24, "meters")
  58278. },
  58279. ]
  58280. ))
  58281. characterMakers.push(() => makeCharacter(
  58282. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58283. {
  58284. front: {
  58285. height: math.unit(5 + 2/12, "feet"),
  58286. weight: math.unit(120, "lb"),
  58287. name: "Front",
  58288. image: {
  58289. source: "./media/characters/sai-bree/front.svg",
  58290. extra: 1843/1702,
  58291. bottom: 91/1934
  58292. }
  58293. },
  58294. back: {
  58295. height: math.unit(5 + 2/12, "feet"),
  58296. weight: math.unit(120, "lb"),
  58297. name: "Back",
  58298. image: {
  58299. source: "./media/characters/sai-bree/back.svg",
  58300. extra: 1809/1637,
  58301. bottom: 56/1865
  58302. }
  58303. },
  58304. },
  58305. [
  58306. {
  58307. name: "Normal",
  58308. height: math.unit(5 + 2/12, "feet"),
  58309. default: true
  58310. },
  58311. {
  58312. name: "Macro",
  58313. height: math.unit(500, "feet")
  58314. },
  58315. ]
  58316. ))
  58317. characterMakers.push(() => makeCharacter(
  58318. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58319. {
  58320. side: {
  58321. height: math.unit(0.77, "meters"),
  58322. weight: math.unit(120, "lb"),
  58323. name: "Side",
  58324. image: {
  58325. source: "./media/characters/davwyn/side.svg",
  58326. extra: 1557/1225,
  58327. bottom: 131/1688
  58328. }
  58329. },
  58330. front: {
  58331. height: math.unit(0.835410, "meters"),
  58332. weight: math.unit(120, "lb"),
  58333. name: "Front",
  58334. image: {
  58335. source: "./media/characters/davwyn/front.svg",
  58336. extra: 870/843,
  58337. bottom: 175/1045
  58338. }
  58339. },
  58340. },
  58341. [
  58342. {
  58343. name: "Minidrake",
  58344. height: math.unit(0.77/4, "meters")
  58345. },
  58346. {
  58347. name: "Normal",
  58348. height: math.unit(0.77, "meters"),
  58349. default: true
  58350. },
  58351. ]
  58352. ))
  58353. characterMakers.push(() => makeCharacter(
  58354. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58355. {
  58356. front: {
  58357. height: math.unit(10 + 3/12, "feet"),
  58358. weight: math.unit(2857, "lb"),
  58359. name: "Front",
  58360. image: {
  58361. source: "./media/characters/balans/front.svg",
  58362. extra: 427/402,
  58363. bottom: 26/453
  58364. }
  58365. },
  58366. side: {
  58367. height: math.unit(10 + 3/12, "feet"),
  58368. weight: math.unit(2857, "lb"),
  58369. name: "Side",
  58370. image: {
  58371. source: "./media/characters/balans/side.svg",
  58372. extra: 397/371,
  58373. bottom: 17/414
  58374. }
  58375. },
  58376. back: {
  58377. height: math.unit(10 + 3/12, "feet"),
  58378. weight: math.unit(2857, "lb"),
  58379. name: "Back",
  58380. image: {
  58381. source: "./media/characters/balans/back.svg",
  58382. extra: 408/381,
  58383. bottom: 14/422
  58384. }
  58385. },
  58386. hand: {
  58387. height: math.unit(1.15, "feet"),
  58388. name: "Hand",
  58389. image: {
  58390. source: "./media/characters/balans/hand.svg"
  58391. }
  58392. },
  58393. footRest: {
  58394. height: math.unit(3.1, "feet"),
  58395. name: "Foot (Rest)",
  58396. image: {
  58397. source: "./media/characters/balans/foot-rest.svg"
  58398. }
  58399. },
  58400. footActive: {
  58401. height: math.unit(3.5, "feet"),
  58402. name: "Foot (Active)",
  58403. image: {
  58404. source: "./media/characters/balans/foot-active.svg"
  58405. }
  58406. },
  58407. },
  58408. [
  58409. {
  58410. name: "Normal",
  58411. height: math.unit(10 + 3/12, "feet"),
  58412. default: true
  58413. },
  58414. ]
  58415. ))
  58416. characterMakers.push(() => makeCharacter(
  58417. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58418. {
  58419. side: {
  58420. height: math.unit(9, "meters"),
  58421. weight: math.unit(114, "tonnes"),
  58422. name: "Side",
  58423. image: {
  58424. source: "./media/characters/eldkveikir/side.svg",
  58425. extra: 1927/338,
  58426. bottom: 42/1969
  58427. }
  58428. },
  58429. sitting: {
  58430. height: math.unit(13.4, "meters"),
  58431. weight: math.unit(114, "tonnes"),
  58432. name: "Sitting",
  58433. image: {
  58434. source: "./media/characters/eldkveikir/sitting.svg",
  58435. extra: 1108/963,
  58436. bottom: 610/1718
  58437. }
  58438. },
  58439. maw: {
  58440. height: math.unit(8.36, "meters"),
  58441. name: "Maw",
  58442. image: {
  58443. source: "./media/characters/eldkveikir/maw.svg"
  58444. }
  58445. },
  58446. hand: {
  58447. height: math.unit(4.84, "meters"),
  58448. name: "Hand",
  58449. image: {
  58450. source: "./media/characters/eldkveikir/hand.svg"
  58451. }
  58452. },
  58453. foot: {
  58454. height: math.unit(6.9, "meters"),
  58455. name: "Foot",
  58456. image: {
  58457. source: "./media/characters/eldkveikir/foot.svg"
  58458. }
  58459. },
  58460. genitals: {
  58461. height: math.unit(9.6, "meters"),
  58462. name: "Genitals",
  58463. image: {
  58464. source: "./media/characters/eldkveikir/genitals.svg"
  58465. }
  58466. },
  58467. },
  58468. [
  58469. {
  58470. name: "Normal",
  58471. height: math.unit(9, "meters"),
  58472. default: true
  58473. },
  58474. ]
  58475. ))
  58476. characterMakers.push(() => makeCharacter(
  58477. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58478. {
  58479. front: {
  58480. height: math.unit(14, "feet"),
  58481. weight: math.unit(4100, "lb"),
  58482. name: "Front",
  58483. image: {
  58484. source: "./media/characters/arrow/front.svg",
  58485. extra: 330/318,
  58486. bottom: 56/386
  58487. }
  58488. },
  58489. },
  58490. [
  58491. {
  58492. name: "Normal",
  58493. height: math.unit(14, "feet"),
  58494. default: true
  58495. },
  58496. {
  58497. name: "Minimacro",
  58498. height: math.unit(63, "feet")
  58499. },
  58500. {
  58501. name: "Macro",
  58502. height: math.unit(630, "feet")
  58503. },
  58504. {
  58505. name: "Megamacro",
  58506. height: math.unit(12600, "feet")
  58507. },
  58508. {
  58509. name: "Gigamacro",
  58510. height: math.unit(18000, "miles")
  58511. },
  58512. ]
  58513. ))
  58514. characterMakers.push(() => makeCharacter(
  58515. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58516. {
  58517. front: {
  58518. height: math.unit(10, "feet"),
  58519. weight: math.unit(2.4, "tons"),
  58520. name: "Front",
  58521. image: {
  58522. source: "./media/characters/3yk-k0-unit/front.svg",
  58523. extra: 573/561,
  58524. bottom: 33/606
  58525. }
  58526. },
  58527. back: {
  58528. height: math.unit(10, "feet"),
  58529. weight: math.unit(2.4, "tons"),
  58530. name: "Back",
  58531. image: {
  58532. source: "./media/characters/3yk-k0-unit/back.svg",
  58533. extra: 614/573,
  58534. bottom: 32/646
  58535. }
  58536. },
  58537. maw: {
  58538. height: math.unit(2.15, "feet"),
  58539. name: "Maw",
  58540. image: {
  58541. source: "./media/characters/3yk-k0-unit/maw.svg"
  58542. }
  58543. },
  58544. },
  58545. [
  58546. {
  58547. name: "Normal",
  58548. height: math.unit(10, "feet"),
  58549. default: true
  58550. },
  58551. ]
  58552. ))
  58553. characterMakers.push(() => makeCharacter(
  58554. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58555. {
  58556. front: {
  58557. height: math.unit(8 + 8/12, "feet"),
  58558. name: "Front",
  58559. image: {
  58560. source: "./media/characters/nemo/front.svg",
  58561. extra: 1308/1217,
  58562. bottom: 57/1365
  58563. }
  58564. },
  58565. },
  58566. [
  58567. {
  58568. name: "Normal",
  58569. height: math.unit(8 + 8/12, "feet"),
  58570. default: true
  58571. },
  58572. ]
  58573. ))
  58574. characterMakers.push(() => makeCharacter(
  58575. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58576. {
  58577. front: {
  58578. height: math.unit(8, "feet"),
  58579. weight: math.unit(760, "lb"),
  58580. name: "Front",
  58581. image: {
  58582. source: "./media/characters/rexx/front.svg",
  58583. extra: 786/750,
  58584. bottom: 17/803
  58585. },
  58586. extraAttributes: {
  58587. "pawLength": {
  58588. name: "Paw Length",
  58589. power: 1,
  58590. type: "length",
  58591. base: math.unit(27, "inches")
  58592. },
  58593. }
  58594. },
  58595. },
  58596. [
  58597. {
  58598. name: "Micro",
  58599. height: math.unit(2, "inches")
  58600. },
  58601. {
  58602. name: "Normal",
  58603. height: math.unit(8, "feet"),
  58604. default: true
  58605. },
  58606. {
  58607. name: "Macro",
  58608. height: math.unit(150, "feet")
  58609. },
  58610. ]
  58611. ))
  58612. characterMakers.push(() => makeCharacter(
  58613. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58614. {
  58615. front: {
  58616. height: math.unit(18, "feet"),
  58617. weight: math.unit(1975, "lb"),
  58618. name: "Front",
  58619. image: {
  58620. source: "./media/characters/draco/front.svg",
  58621. extra: 1325/1241,
  58622. bottom: 83/1408
  58623. }
  58624. },
  58625. back: {
  58626. height: math.unit(18, "feet"),
  58627. weight: math.unit(1975, "lb"),
  58628. name: "Back",
  58629. image: {
  58630. source: "./media/characters/draco/back.svg",
  58631. extra: 1332/1250,
  58632. bottom: 43/1375
  58633. }
  58634. },
  58635. dick: {
  58636. height: math.unit(7.5, "feet"),
  58637. name: "Dick",
  58638. image: {
  58639. source: "./media/characters/draco/dick.svg"
  58640. }
  58641. },
  58642. },
  58643. [
  58644. {
  58645. name: "Normal",
  58646. height: math.unit(18, "feet"),
  58647. default: true
  58648. },
  58649. ]
  58650. ))
  58651. characterMakers.push(() => makeCharacter(
  58652. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58653. {
  58654. front: {
  58655. height: math.unit(3.2, "meters"),
  58656. name: "Front",
  58657. image: {
  58658. source: "./media/characters/harriett/front.svg",
  58659. extra: 1966/1915,
  58660. bottom: 9/1975
  58661. }
  58662. },
  58663. },
  58664. [
  58665. {
  58666. name: "Normal",
  58667. height: math.unit(3.2, "meters"),
  58668. default: true
  58669. },
  58670. ]
  58671. ))
  58672. characterMakers.push(() => makeCharacter(
  58673. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58674. {
  58675. standing: {
  58676. height: math.unit(180, "cm"),
  58677. weight: math.unit(185, "lb"),
  58678. name: "Standing",
  58679. image: {
  58680. source: "./media/characters/serpentus/standing.svg",
  58681. extra: 882/878,
  58682. bottom: 16/898
  58683. }
  58684. },
  58685. sitting: {
  58686. height: math.unit(0.8, "meter"),
  58687. weight: math.unit(155, "lb"),
  58688. name: "Sitting",
  58689. image: {
  58690. source: "./media/characters/serpentus/sitting.svg",
  58691. extra: 293/290,
  58692. bottom: 140/433
  58693. }
  58694. },
  58695. },
  58696. [
  58697. {
  58698. name: "Normal",
  58699. height: math.unit(1.8, "meter"),
  58700. default: true
  58701. },
  58702. ]
  58703. ))
  58704. characterMakers.push(() => makeCharacter(
  58705. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58706. {
  58707. front: {
  58708. height: math.unit(5.7174385736, "feet"),
  58709. name: "Front",
  58710. image: {
  58711. source: "./media/characters/nova-polecat/front.svg",
  58712. extra: 1317/1216,
  58713. bottom: 92/1409
  58714. }
  58715. },
  58716. },
  58717. [
  58718. {
  58719. name: "Normal",
  58720. height: math.unit(5.7174385736, "feet"),
  58721. default: true
  58722. },
  58723. ]
  58724. ))
  58725. characterMakers.push(() => makeCharacter(
  58726. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58727. {
  58728. front: {
  58729. height: math.unit(5 + 4/12, "feet"),
  58730. weight: math.unit(250, "lb"),
  58731. name: "Front",
  58732. image: {
  58733. source: "./media/characters/mook/front.svg",
  58734. extra: 1088/1037,
  58735. bottom: 132/1220
  58736. }
  58737. },
  58738. back: {
  58739. height: math.unit(5 + 1/12, "feet"),
  58740. weight: math.unit(250, "lb"),
  58741. name: "Back",
  58742. image: {
  58743. source: "./media/characters/mook/back.svg",
  58744. extra: 1184/905,
  58745. bottom: 96/1280
  58746. }
  58747. },
  58748. head: {
  58749. height: math.unit(1.85, "feet"),
  58750. name: "Head",
  58751. image: {
  58752. source: "./media/characters/mook/head.svg"
  58753. }
  58754. },
  58755. hand: {
  58756. height: math.unit(1.9, "feet"),
  58757. name: "Hand",
  58758. image: {
  58759. source: "./media/characters/mook/hand.svg"
  58760. }
  58761. },
  58762. palm: {
  58763. height: math.unit(1.84, "feet"),
  58764. name: "Palm",
  58765. image: {
  58766. source: "./media/characters/mook/palm.svg"
  58767. }
  58768. },
  58769. foot: {
  58770. height: math.unit(1.44, "feet"),
  58771. name: "Foot",
  58772. image: {
  58773. source: "./media/characters/mook/foot.svg"
  58774. }
  58775. },
  58776. sole: {
  58777. height: math.unit(1.44, "feet"),
  58778. name: "Sole",
  58779. image: {
  58780. source: "./media/characters/mook/sole.svg"
  58781. }
  58782. },
  58783. },
  58784. [
  58785. {
  58786. name: "Normal",
  58787. height: math.unit(5 + 4/12, "feet"),
  58788. default: true
  58789. },
  58790. {
  58791. name: "Big",
  58792. height: math.unit(12, "feet")
  58793. },
  58794. ]
  58795. ))
  58796. characterMakers.push(() => makeCharacter(
  58797. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58798. {
  58799. front: {
  58800. height: math.unit(6 + 10/12, "feet"),
  58801. weight: math.unit(233, "lb"),
  58802. name: "Front",
  58803. image: {
  58804. source: "./media/characters/kayla/front.svg",
  58805. extra: 1850/1775,
  58806. bottom: 65/1915
  58807. }
  58808. },
  58809. },
  58810. [
  58811. {
  58812. name: "Normal",
  58813. height: math.unit(6 + 10/12, "feet"),
  58814. default: true
  58815. },
  58816. {
  58817. name: "Amazonian",
  58818. height: math.unit(12 + 5/12, "feet")
  58819. },
  58820. {
  58821. name: "Mini Giantess",
  58822. height: math.unit(26, "feet")
  58823. },
  58824. {
  58825. name: "Giantess",
  58826. height: math.unit(200, "feet")
  58827. },
  58828. {
  58829. name: "Mega Giantess",
  58830. height: math.unit(2500, "feet")
  58831. },
  58832. {
  58833. name: "City Sized",
  58834. height: math.unit(50, "miles")
  58835. },
  58836. {
  58837. name: "Country Sized",
  58838. height: math.unit(500, "miles")
  58839. },
  58840. {
  58841. name: "Continent Sized",
  58842. height: math.unit(2500, "miles")
  58843. },
  58844. {
  58845. name: "Planet Sized",
  58846. height: math.unit(10000, "miles")
  58847. },
  58848. {
  58849. name: "Star Sized",
  58850. height: math.unit(5e6, "miles")
  58851. },
  58852. {
  58853. name: "Solar System Sized",
  58854. height: math.unit(125, "AU")
  58855. },
  58856. {
  58857. name: "Galaxy Sized",
  58858. height: math.unit(300e3, "lightyears")
  58859. },
  58860. {
  58861. name: "Universe Sized",
  58862. height: math.unit(200e9, "lightyears")
  58863. },
  58864. {
  58865. name: "Multiverse Sized",
  58866. height: math.unit(20, "exauniverses")
  58867. },
  58868. {
  58869. name: "Mother of Existence",
  58870. height: math.unit(1e6, "yottauniverses")
  58871. },
  58872. ]
  58873. ))
  58874. characterMakers.push(() => makeCharacter(
  58875. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58876. {
  58877. side: {
  58878. height: math.unit(9.5, "meters"),
  58879. name: "Side",
  58880. image: {
  58881. source: "./media/characters/kulve-ragnarok/side.svg",
  58882. extra: 364/326,
  58883. bottom: 50/414
  58884. }
  58885. },
  58886. },
  58887. [
  58888. {
  58889. name: "Normal",
  58890. height: math.unit(9.5, "meters"),
  58891. default: true
  58892. },
  58893. ]
  58894. ))
  58895. characterMakers.push(() => makeCharacter(
  58896. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58897. {
  58898. front: {
  58899. height: math.unit(8 + 9/12, "feet"),
  58900. name: "Front",
  58901. image: {
  58902. source: "./media/characters/atlas-goat/front.svg",
  58903. extra: 1462/1323,
  58904. bottom: 12/1474
  58905. }
  58906. },
  58907. },
  58908. [
  58909. {
  58910. name: "Normal",
  58911. height: math.unit(8 + 9/12, "feet"),
  58912. default: true
  58913. },
  58914. {
  58915. name: "Skyline",
  58916. height: math.unit(845, "feet")
  58917. },
  58918. {
  58919. name: "Orbital",
  58920. height: math.unit(93000, "miles")
  58921. },
  58922. {
  58923. name: "Constellation",
  58924. height: math.unit(27000, "lightyears")
  58925. },
  58926. ]
  58927. ))
  58928. characterMakers.push(() => makeCharacter(
  58929. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58930. {
  58931. side: {
  58932. height: math.unit(1.8, "meters"),
  58933. weight: math.unit(120, "kg"),
  58934. name: "Side",
  58935. image: {
  58936. source: "./media/characters/xie-ling/side.svg",
  58937. extra: 646/574,
  58938. bottom: 44/690
  58939. }
  58940. },
  58941. },
  58942. [
  58943. {
  58944. name: "Tiny",
  58945. height: math.unit(1.80, "meters")
  58946. },
  58947. {
  58948. name: "Small",
  58949. height: math.unit(6, "meters")
  58950. },
  58951. {
  58952. name: "Medium",
  58953. height: math.unit(15, "meters")
  58954. },
  58955. {
  58956. name: "Normal",
  58957. height: math.unit(30, "meters"),
  58958. default: true
  58959. },
  58960. {
  58961. name: "Above Normal",
  58962. height: math.unit(60, "meters")
  58963. },
  58964. {
  58965. name: "Big",
  58966. height: math.unit(220, "meters")
  58967. },
  58968. {
  58969. name: "Giant",
  58970. height: math.unit(2.2, "km")
  58971. },
  58972. {
  58973. name: "Macro",
  58974. height: math.unit(25, "km")
  58975. },
  58976. {
  58977. name: "Mega Macro",
  58978. height: math.unit(350, "km")
  58979. },
  58980. {
  58981. name: "Mega Macro+",
  58982. height: math.unit(5000, "km")
  58983. },
  58984. {
  58985. name: "Goddess",
  58986. height: math.unit(3, "multiverses")
  58987. },
  58988. ]
  58989. ))
  58990. characterMakers.push(() => makeCharacter(
  58991. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58992. {
  58993. frontSfw: {
  58994. height: math.unit(5 + 11/12, "feet"),
  58995. weight: math.unit(210, "lb"),
  58996. name: "Front",
  58997. image: {
  58998. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58999. extra: 1928/1821,
  59000. bottom: 45/1973
  59001. }
  59002. },
  59003. backSfw: {
  59004. height: math.unit(5 + 11/12, "feet"),
  59005. weight: math.unit(210, "lb"),
  59006. name: "Back",
  59007. image: {
  59008. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59009. extra: 1920/1813,
  59010. bottom: 34/1954
  59011. }
  59012. },
  59013. frontNsfw: {
  59014. height: math.unit(5 + 11/12, "feet"),
  59015. weight: math.unit(210, "lb"),
  59016. name: "Front (NSFW)",
  59017. image: {
  59018. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59019. extra: 1928/1821,
  59020. bottom: 45/1973
  59021. }
  59022. },
  59023. backNsfw: {
  59024. height: math.unit(5 + 11/12, "feet"),
  59025. weight: math.unit(210, "lb"),
  59026. name: "Back (NSFW)",
  59027. image: {
  59028. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59029. extra: 1920/1813,
  59030. bottom: 34/1954
  59031. }
  59032. },
  59033. },
  59034. [
  59035. {
  59036. name: "Normal",
  59037. height: math.unit(5 + 11/12, "feet"),
  59038. default: true
  59039. },
  59040. {
  59041. name: "Goddess",
  59042. height: math.unit(20 + 3/12, "feet")
  59043. },
  59044. {
  59045. name: "Breaker of Man",
  59046. height: math.unit(329 + 9/12, "feet")
  59047. },
  59048. {
  59049. name: "Solar Justice",
  59050. height: math.unit(0.6, "solarradii")
  59051. },
  59052. {
  59053. name: "She Who Judges",
  59054. height: math.unit(1, "universe")
  59055. },
  59056. ]
  59057. ))
  59058. characterMakers.push(() => makeCharacter(
  59059. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59060. {
  59061. casual_front: {
  59062. height: math.unit(6 + 1/12, "feet"),
  59063. weight: math.unit(190, "lb"),
  59064. preyCapacity: math.unit(1, "people"),
  59065. name: "Front",
  59066. image: {
  59067. source: "./media/characters/managarmr/casual-front.svg",
  59068. extra: 411/381,
  59069. bottom: 15/426
  59070. },
  59071. extraAttributes: {
  59072. "pawSize": {
  59073. name: "Paw Size",
  59074. power: 1,
  59075. type: "length",
  59076. base: math.unit(0.2, "meters")
  59077. },
  59078. },
  59079. form: "casual",
  59080. },
  59081. casual_back: {
  59082. height: math.unit(6 + 1/12, "feet"),
  59083. weight: math.unit(190, "lb"),
  59084. preyCapacity: math.unit(1, "people"),
  59085. name: "Back",
  59086. image: {
  59087. source: "./media/characters/managarmr/casual-back.svg",
  59088. extra: 413/383,
  59089. bottom: 13/426
  59090. },
  59091. extraAttributes: {
  59092. "pawSize": {
  59093. name: "Paw Size",
  59094. power: 1,
  59095. type: "length",
  59096. base: math.unit(0.2, "meters")
  59097. },
  59098. },
  59099. form: "casual",
  59100. },
  59101. base_front: {
  59102. height: math.unit(7, "feet"),
  59103. weight: math.unit(210, "lb"),
  59104. preyCapacity: math.unit(2, "people"),
  59105. name: "Front",
  59106. image: {
  59107. source: "./media/characters/managarmr/base-front.svg",
  59108. extra: 580/485,
  59109. bottom: 32/612
  59110. },
  59111. extraAttributes: {
  59112. "wingspan": {
  59113. name: "Wingspan",
  59114. power: 1,
  59115. type: "length",
  59116. base: math.unit(4, "meters")
  59117. },
  59118. "pawSize": {
  59119. name: "Paw Size",
  59120. power: 1,
  59121. type: "length",
  59122. base: math.unit(0.2, "meters")
  59123. },
  59124. },
  59125. form: "base",
  59126. },
  59127. "true-divine_front": {
  59128. height: math.unit(40, "feet"),
  59129. weight: math.unit(39000, "lb"),
  59130. preyCapacity: math.unit(375, "people"),
  59131. name: "Front",
  59132. image: {
  59133. source: "./media/characters/managarmr/true-divine-front.svg",
  59134. extra: 725/573,
  59135. bottom: 120/845
  59136. },
  59137. extraAttributes: {
  59138. "wingspan": {
  59139. name: "Wingspan",
  59140. power: 1,
  59141. type: "length",
  59142. base: math.unit(20, "meters")
  59143. },
  59144. "pawSize": {
  59145. name: "Paw Size",
  59146. power: 1,
  59147. type: "length",
  59148. base: math.unit(1.5, "meters")
  59149. },
  59150. },
  59151. form: "true-divine",
  59152. },
  59153. },
  59154. [
  59155. {
  59156. name: "Normal",
  59157. height: math.unit(6 + 1/12, "feet"),
  59158. form: "casual",
  59159. default: true
  59160. },
  59161. {
  59162. name: "Normal",
  59163. height: math.unit(7, "feet"),
  59164. form: "base",
  59165. default: true
  59166. },
  59167. ],
  59168. {
  59169. "casual": {
  59170. name: "Casual",
  59171. default: true
  59172. },
  59173. "base": {
  59174. name: "Base",
  59175. },
  59176. "true-divine": {
  59177. name: "True Divine",
  59178. },
  59179. }
  59180. ))
  59181. characterMakers.push(() => makeCharacter(
  59182. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59183. {
  59184. front: {
  59185. height: math.unit(1.8, "meters"),
  59186. weight: math.unit(110, "kg"),
  59187. name: "Front",
  59188. image: {
  59189. source: "./media/characters/mystra/front.svg",
  59190. extra: 529/442,
  59191. bottom: 31/560
  59192. }
  59193. },
  59194. frontLewd: {
  59195. height: math.unit(1.8, "meters"),
  59196. weight: math.unit(110, "kg"),
  59197. name: "Front (Lewd)",
  59198. image: {
  59199. source: "./media/characters/mystra/front-lewd.svg",
  59200. extra: 529/442,
  59201. bottom: 31/560
  59202. }
  59203. },
  59204. head: {
  59205. height: math.unit(1.63, "feet"),
  59206. name: "Head",
  59207. image: {
  59208. source: "./media/characters/mystra/head.svg"
  59209. }
  59210. },
  59211. paw: {
  59212. height: math.unit(1.9, "feet"),
  59213. name: "Paw",
  59214. image: {
  59215. source: "./media/characters/mystra/paw.svg"
  59216. }
  59217. },
  59218. },
  59219. [
  59220. {
  59221. name: "Incognito",
  59222. height: math.unit(2.3, "meters")
  59223. },
  59224. {
  59225. name: "Small Macro",
  59226. height: math.unit(300, "meters")
  59227. },
  59228. {
  59229. name: "Small Mega",
  59230. height: math.unit(2, "km")
  59231. },
  59232. {
  59233. name: "Mega",
  59234. height: math.unit(30, "km")
  59235. },
  59236. {
  59237. name: "Small Giga",
  59238. height: math.unit(100, "km")
  59239. },
  59240. {
  59241. name: "Giga",
  59242. height: math.unit(1000, "km"),
  59243. default: true
  59244. },
  59245. {
  59246. name: "Continental",
  59247. height: math.unit(5000, "km")
  59248. },
  59249. {
  59250. name: "Terra",
  59251. height: math.unit(20000, "km")
  59252. },
  59253. {
  59254. name: "Solar",
  59255. height: math.unit(2e6, "km")
  59256. },
  59257. {
  59258. name: "Galactic",
  59259. height: math.unit(528502, "lightyears")
  59260. },
  59261. {
  59262. name: "Universal",
  59263. height: math.unit(20, "universes")
  59264. },
  59265. ]
  59266. ))
  59267. characterMakers.push(() => makeCharacter(
  59268. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59269. {
  59270. front: {
  59271. height: math.unit(2, "meters"),
  59272. weight: math.unit(140, "kg"),
  59273. name: "Front",
  59274. image: {
  59275. source: "./media/characters/caleb/front.svg",
  59276. extra: 873/817,
  59277. bottom: 47/920
  59278. }
  59279. },
  59280. back: {
  59281. height: math.unit(2, "meters"),
  59282. weight: math.unit(140, "kg"),
  59283. name: "Back",
  59284. image: {
  59285. source: "./media/characters/caleb/back.svg",
  59286. extra: 877/828,
  59287. bottom: 24/901
  59288. }
  59289. },
  59290. snakeTail: {
  59291. height: math.unit(1.44, "feet"),
  59292. name: "Snake Tail",
  59293. image: {
  59294. source: "./media/characters/caleb/snake-tail.svg"
  59295. }
  59296. },
  59297. dick: {
  59298. height: math.unit(2.6, "feet"),
  59299. name: "Dick",
  59300. image: {
  59301. source: "./media/characters/caleb/dick.svg"
  59302. }
  59303. },
  59304. },
  59305. [
  59306. {
  59307. name: "Incognito",
  59308. height: math.unit(3, "meters")
  59309. },
  59310. {
  59311. name: "Home Size",
  59312. height: math.unit(200, "meters"),
  59313. default: true
  59314. },
  59315. {
  59316. name: "Macro",
  59317. height: math.unit(500, "meters")
  59318. },
  59319. {
  59320. name: "Big Macro",
  59321. height: math.unit(5, "km")
  59322. },
  59323. {
  59324. name: "Giga",
  59325. height: math.unit(250, "km")
  59326. },
  59327. {
  59328. name: "Giga+",
  59329. height: math.unit(5000, "km")
  59330. },
  59331. {
  59332. name: "Small Terra",
  59333. height: math.unit(35e3, "km")
  59334. },
  59335. {
  59336. name: "Terra",
  59337. height: math.unit(2e6, "km")
  59338. },
  59339. {
  59340. name: "Terra+",
  59341. height: math.unit(1.5e6, "km")
  59342. },
  59343. ]
  59344. ))
  59345. characterMakers.push(() => makeCharacter(
  59346. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59347. {
  59348. front: {
  59349. height: math.unit(2, "meters"),
  59350. weight: math.unit(120, "kg"),
  59351. name: "Front",
  59352. image: {
  59353. source: "./media/characters/gilirian/front.svg",
  59354. extra: 805/737,
  59355. bottom: 13/818
  59356. }
  59357. },
  59358. side: {
  59359. height: math.unit(2, "meters"),
  59360. weight: math.unit(120, "kg"),
  59361. name: "Side",
  59362. image: {
  59363. source: "./media/characters/gilirian/side.svg",
  59364. extra: 810/746,
  59365. bottom: 6/816
  59366. }
  59367. },
  59368. back: {
  59369. height: math.unit(2, "meters"),
  59370. weight: math.unit(120, "kg"),
  59371. name: "Back",
  59372. image: {
  59373. source: "./media/characters/gilirian/back.svg",
  59374. extra: 815/745,
  59375. bottom: 15/830
  59376. }
  59377. },
  59378. frontNsfw: {
  59379. height: math.unit(2, "meters"),
  59380. weight: math.unit(120, "kg"),
  59381. name: "Front (NSFW)",
  59382. image: {
  59383. source: "./media/characters/gilirian/front-nsfw.svg",
  59384. extra: 805/737,
  59385. bottom: 13/818
  59386. }
  59387. },
  59388. sideNsfw: {
  59389. height: math.unit(2, "meters"),
  59390. weight: math.unit(120, "kg"),
  59391. name: "Side (NSFW)",
  59392. image: {
  59393. source: "./media/characters/gilirian/side-nsfw.svg",
  59394. extra: 810/746,
  59395. bottom: 6/816
  59396. }
  59397. },
  59398. },
  59399. [
  59400. {
  59401. name: "Incognito",
  59402. height: math.unit(2, "meters"),
  59403. default: true
  59404. },
  59405. {
  59406. name: "Macro",
  59407. height: math.unit(250, "meters")
  59408. },
  59409. {
  59410. name: "Big Macro",
  59411. height: math.unit(1500, "meters")
  59412. },
  59413. {
  59414. name: "Mega",
  59415. height: math.unit(40, "km")
  59416. },
  59417. {
  59418. name: "Giga",
  59419. height: math.unit(300, "km")
  59420. },
  59421. {
  59422. name: "Extra Giga",
  59423. height: math.unit(5000, "km")
  59424. },
  59425. {
  59426. name: "Small Terra",
  59427. height: math.unit(10e3, "km")
  59428. },
  59429. {
  59430. name: "Terra",
  59431. height: math.unit(3e5, "km")
  59432. },
  59433. {
  59434. name: "Galactic",
  59435. height: math.unit(369950, "lightyears")
  59436. },
  59437. ]
  59438. ))
  59439. characterMakers.push(() => makeCharacter(
  59440. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59441. {
  59442. front: {
  59443. height: math.unit(2.5, "meters"),
  59444. weight: math.unit(230, "lb"),
  59445. name: "Front",
  59446. image: {
  59447. source: "./media/characters/tarken/front.svg",
  59448. extra: 764/720,
  59449. bottom: 49/813
  59450. }
  59451. },
  59452. back: {
  59453. height: math.unit(2.5, "meters"),
  59454. weight: math.unit(230, "lb"),
  59455. name: "Back",
  59456. image: {
  59457. source: "./media/characters/tarken/back.svg",
  59458. extra: 756/720,
  59459. bottom: 35/791
  59460. }
  59461. },
  59462. frontNsfw: {
  59463. height: math.unit(2.5, "meters"),
  59464. weight: math.unit(230, "lb"),
  59465. name: "Front (NSFW)",
  59466. image: {
  59467. source: "./media/characters/tarken/front-nsfw.svg",
  59468. extra: 764/720,
  59469. bottom: 49/813
  59470. }
  59471. },
  59472. backNsfw: {
  59473. height: math.unit(2.5, "meters"),
  59474. weight: math.unit(230, "lb"),
  59475. name: "Back (NSFW)",
  59476. image: {
  59477. source: "./media/characters/tarken/back-nsfw.svg",
  59478. extra: 756/720,
  59479. bottom: 35/791
  59480. }
  59481. },
  59482. head: {
  59483. height: math.unit(2.22, "feet"),
  59484. name: "Head",
  59485. image: {
  59486. source: "./media/characters/tarken/head.svg"
  59487. }
  59488. },
  59489. tail: {
  59490. height: math.unit(5.25, "feet"),
  59491. name: "Tail",
  59492. image: {
  59493. source: "./media/characters/tarken/tail.svg"
  59494. }
  59495. },
  59496. dick: {
  59497. height: math.unit(1.95, "feet"),
  59498. name: "Dick",
  59499. image: {
  59500. source: "./media/characters/tarken/dick.svg"
  59501. }
  59502. },
  59503. hand: {
  59504. height: math.unit(1.78, "feet"),
  59505. name: "Hand",
  59506. image: {
  59507. source: "./media/characters/tarken/hand.svg"
  59508. }
  59509. },
  59510. beam: {
  59511. height: math.unit(1.5, "feet"),
  59512. name: "Beam",
  59513. image: {
  59514. source: "./media/characters/tarken/beam.svg"
  59515. }
  59516. },
  59517. },
  59518. [
  59519. {
  59520. name: "Original Size",
  59521. height: math.unit(2.5, "meters")
  59522. },
  59523. {
  59524. name: "Macro",
  59525. height: math.unit(150, "meters"),
  59526. default: true
  59527. },
  59528. {
  59529. name: "Macro+",
  59530. height: math.unit(300, "meters")
  59531. },
  59532. {
  59533. name: "Mega",
  59534. height: math.unit(2, "km")
  59535. },
  59536. {
  59537. name: "Mega+",
  59538. height: math.unit(35, "km")
  59539. },
  59540.  {
  59541. name: "Mega++",
  59542. height: math.unit(60, "km")
  59543. },
  59544. {
  59545. name: "Giga",
  59546. height: math.unit(200, "km")
  59547. },
  59548. {
  59549. name: "Giga+",
  59550. height: math.unit(2500, "km")
  59551. },
  59552. {
  59553. name: "Giga++",
  59554. height: math.unit(6600, "km")
  59555. },
  59556. {
  59557. name: "Terra",
  59558. height: math.unit(20000, "km")
  59559. },
  59560. {
  59561. name: "Terra+",
  59562. height: math.unit(300000, "km")
  59563. },
  59564. ]
  59565. ))
  59566. characterMakers.push(() => makeCharacter(
  59567. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59568. {
  59569. magpie_dressed: {
  59570. height: math.unit(1.7, "meters"),
  59571. weight: math.unit(70, "kg"),
  59572. name: "Dressed",
  59573. image: {
  59574. source: "./media/characters/otreus/magpie-dressed.svg",
  59575. extra: 691/672,
  59576. bottom: 116/807
  59577. },
  59578. form: "magpie",
  59579. default: true
  59580. },
  59581. magpie_nude: {
  59582. height: math.unit(1.7, "meters"),
  59583. weight: math.unit(70, "kg"),
  59584. name: "Nude",
  59585. image: {
  59586. source: "./media/characters/otreus/magpie-nude.svg",
  59587. extra: 691/672,
  59588. bottom: 116/807
  59589. },
  59590. form: "magpie",
  59591. },
  59592. magpie_dressedLewd: {
  59593. height: math.unit(1.7, "meters"),
  59594. weight: math.unit(70, "kg"),
  59595. name: "Dressed (Lewd)",
  59596. image: {
  59597. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59598. extra: 691/672,
  59599. bottom: 116/807
  59600. },
  59601. form: "magpie",
  59602. },
  59603. magpie_nudeLewd: {
  59604. height: math.unit(1.7, "meters"),
  59605. weight: math.unit(70, "kg"),
  59606. name: "Nude (Lewd)",
  59607. image: {
  59608. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59609. extra: 691/672,
  59610. bottom: 116/807
  59611. },
  59612. form: "magpie",
  59613. },
  59614. magpie_leftFoot: {
  59615. height: math.unit(1.58, "feet"),
  59616. name: "Left Foot",
  59617. image: {
  59618. source: "./media/characters/otreus/magpie-left-foot.svg"
  59619. },
  59620. form: "magpie",
  59621. },
  59622. magpie_rightFoot: {
  59623. height: math.unit(1.58, "feet"),
  59624. name: "Right Foot",
  59625. image: {
  59626. source: "./media/characters/otreus/magpie-right-foot.svg"
  59627. },
  59628. form: "magpie",
  59629. },
  59630. magpie_wingspan: {
  59631. height: math.unit(2, "meters"),
  59632. weight: math.unit(70, "kg"),
  59633. name: "Wingspan",
  59634. image: {
  59635. source: "./media/characters/otreus/magpie-wingspan.svg"
  59636. },
  59637. extraAttributes: {
  59638. "wingspan": {
  59639. name: "Wingspan",
  59640. power: 1,
  59641. type: "length",
  59642. base: math.unit(3.35, "meters")
  59643. },
  59644. },
  59645. form: "magpie",
  59646. },
  59647. hippogriff_dressed: {
  59648. height: math.unit(1.7, "meters"),
  59649. weight: math.unit(70, "kg"),
  59650. name: "Dressed",
  59651. image: {
  59652. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59653. extra: 710/689,
  59654. bottom: 67/777
  59655. },
  59656. form: "hippogriff",
  59657. default: true
  59658. },
  59659. hippogriff_nude: {
  59660. height: math.unit(1.7, "meters"),
  59661. weight: math.unit(70, "kg"),
  59662. name: "Nude",
  59663. image: {
  59664. source: "./media/characters/otreus/hippogriff-nude.svg",
  59665. extra: 710/689,
  59666. bottom: 67/777
  59667. },
  59668. form: "hippogriff",
  59669. },
  59670. hippogriff_dressedLewd: {
  59671. height: math.unit(1.7, "meters"),
  59672. weight: math.unit(70, "kg"),
  59673. name: "Dressed (Lewd)",
  59674. image: {
  59675. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59676. extra: 710/689,
  59677. bottom: 67/777
  59678. },
  59679. form: "hippogriff",
  59680. },
  59681. hippogriff_nudeLewd: {
  59682. height: math.unit(1.7, "meters"),
  59683. weight: math.unit(70, "kg"),
  59684. name: "Nude (Lewd)",
  59685. image: {
  59686. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59687. extra: 710/689,
  59688. bottom: 67/777
  59689. },
  59690. form: "hippogriff",
  59691. },
  59692. },
  59693. [
  59694. {
  59695. name: "Original Size",
  59696. height: math.unit(1.7, "meters"),
  59697. allForms: true
  59698. },
  59699. {
  59700. name: "Incognito Size",
  59701. height: math.unit(2, "meters"),
  59702. allForms: true
  59703. },
  59704. {
  59705. name: "Mega",
  59706. height: math.unit(2, "km"),
  59707. allForms: true
  59708. },
  59709. {
  59710. name: "Mega+",
  59711. height: math.unit(40, "km"),
  59712. allForms: true
  59713. },
  59714. {
  59715. name: "Giga",
  59716. height: math.unit(250, "km"),
  59717. allForms: true
  59718. },
  59719. {
  59720. name: "Giga+",
  59721. height: math.unit(3000, "km"),
  59722. allForms: true
  59723. },
  59724. {
  59725. name: "Terra",
  59726. height: math.unit(20000, "km"),
  59727. allForms: true
  59728. },
  59729. {
  59730. name: "Solar (Home Size)",
  59731. height: math.unit(3e6, "km"),
  59732. allForms: true,
  59733. default: true
  59734. },
  59735. ],
  59736. {
  59737. "magpie": {
  59738. name: "Magpie",
  59739. default: true
  59740. },
  59741. "hippogriff": {
  59742. name: "Hippogriff",
  59743. },
  59744. }
  59745. ))
  59746. characterMakers.push(() => makeCharacter(
  59747. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59748. {
  59749. frontDressed: {
  59750. height: math.unit(1.8, "meters"),
  59751. weight: math.unit(90, "kg"),
  59752. name: "Front (Dressed)",
  59753. image: {
  59754. source: "./media/characters/thalia/front-dressed.svg",
  59755. extra: 478/402,
  59756. bottom: 55/533
  59757. }
  59758. },
  59759. backDressed: {
  59760. height: math.unit(1.8, "meters"),
  59761. weight: math.unit(90, "kg"),
  59762. name: "Back (Dressed)",
  59763. image: {
  59764. source: "./media/characters/thalia/back-dressed.svg",
  59765. extra: 500/424,
  59766. bottom: 15/515
  59767. }
  59768. },
  59769. frontNude: {
  59770. height: math.unit(1.8, "meters"),
  59771. weight: math.unit(90, "kg"),
  59772. name: "Front (Nude)",
  59773. image: {
  59774. source: "./media/characters/thalia/front-nude.svg",
  59775. extra: 478/402,
  59776. bottom: 55/533
  59777. }
  59778. },
  59779. backNude: {
  59780. height: math.unit(1.8, "meters"),
  59781. weight: math.unit(90, "kg"),
  59782. name: "Back (Nude)",
  59783. image: {
  59784. source: "./media/characters/thalia/back-nude.svg",
  59785. extra: 500/424,
  59786. bottom: 15/515
  59787. }
  59788. },
  59789. },
  59790. [
  59791. {
  59792. name: "Incognito",
  59793. height: math.unit(3, "meters")
  59794. },
  59795. {
  59796. name: "Macro",
  59797. height: math.unit(500, "meters")
  59798. },
  59799. {
  59800. name: "Mega",
  59801. height: math.unit(5, "km")
  59802. },
  59803. {
  59804. name: "Mega+",
  59805. height: math.unit(30, "km")
  59806. },
  59807. {
  59808. name: "Giga",
  59809. height: math.unit(350, "km")
  59810. },
  59811. {
  59812. name: "Giga+",
  59813. height: math.unit(4000, "km")
  59814. },
  59815. {
  59816. name: "Terra",
  59817. height: math.unit(35000, "km")
  59818. },
  59819. {
  59820. name: "Original Size",
  59821. height: math.unit(130000, "km")
  59822. },
  59823. {
  59824. name: "Solar (Home Size)",
  59825. height: math.unit(4e6, "km"),
  59826. default: true
  59827. },
  59828. ]
  59829. ))
  59830. characterMakers.push(() => makeCharacter(
  59831. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59832. {
  59833. front: {
  59834. height: math.unit(1.8, "meters"),
  59835. weight: math.unit(95, "kg"),
  59836. name: "Front",
  59837. image: {
  59838. source: "./media/characters/shango/front.svg",
  59839. extra: 1925/1774,
  59840. bottom: 67/1992
  59841. }
  59842. },
  59843. back: {
  59844. height: math.unit(1.8, "meters"),
  59845. weight: math.unit(95, "kg"),
  59846. name: "Back",
  59847. image: {
  59848. source: "./media/characters/shango/back.svg",
  59849. extra: 1915/1766,
  59850. bottom: 52/1967
  59851. }
  59852. },
  59853. frontLewd: {
  59854. height: math.unit(1.8, "meters"),
  59855. weight: math.unit(95, "kg"),
  59856. name: "Front (Lewd)",
  59857. image: {
  59858. source: "./media/characters/shango/front-lewd.svg",
  59859. extra: 1925/1774,
  59860. bottom: 67/1992
  59861. }
  59862. },
  59863. backLewd: {
  59864. height: math.unit(1.8, "meters"),
  59865. weight: math.unit(95, "kg"),
  59866. name: "Back (Lewd)",
  59867. image: {
  59868. source: "./media/characters/shango/back-lewd.svg",
  59869. extra: 1915/1766,
  59870. bottom: 52/1967
  59871. }
  59872. },
  59873. maw: {
  59874. height: math.unit(1.64, "feet"),
  59875. name: "Maw",
  59876. image: {
  59877. source: "./media/characters/shango/maw.svg"
  59878. }
  59879. },
  59880. dick: {
  59881. height: math.unit(2.14, "feet"),
  59882. name: "Dick",
  59883. image: {
  59884. source: "./media/characters/shango/dick.svg"
  59885. }
  59886. },
  59887. },
  59888. [
  59889. {
  59890. name: "Incognito",
  59891. height: math.unit(1.8, "meters")
  59892. },
  59893. {
  59894. name: "Home Size",
  59895. height: math.unit(60, "meters"),
  59896. default: true
  59897. },
  59898. {
  59899. name: "Macro",
  59900. height: math.unit(450, "meters")
  59901. },
  59902. {
  59903. name: "Mega",
  59904. height: math.unit(6, "km")
  59905. },
  59906. {
  59907. name: "Mega+",
  59908. height: math.unit(35, "km")
  59909. },
  59910. {
  59911. name: "Giga",
  59912. height: math.unit(500, "km")
  59913. },
  59914. {
  59915. name: "Giga+",
  59916. height: math.unit(5000, "km")
  59917. },
  59918. {
  59919. name: "Terra",
  59920. height: math.unit(60000, "km")
  59921. },
  59922. {
  59923. name: "Terra+",
  59924. height: math.unit(400000, "km")
  59925. },
  59926. ]
  59927. ))
  59928. characterMakers.push(() => makeCharacter(
  59929. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59930. {
  59931. front: {
  59932. height: math.unit(2, "meters"),
  59933. weight: math.unit(95, "kg"),
  59934. name: "Front",
  59935. image: {
  59936. source: "./media/characters/osiris-gryphon/front.svg",
  59937. extra: 1508/1313,
  59938. bottom: 87/1595
  59939. }
  59940. },
  59941. back: {
  59942. height: math.unit(2, "meters"),
  59943. weight: math.unit(95, "kg"),
  59944. name: "Back",
  59945. image: {
  59946. source: "./media/characters/osiris-gryphon/back.svg",
  59947. extra: 1436/1309,
  59948. bottom: 64/1500
  59949. }
  59950. },
  59951. frontLewd: {
  59952. height: math.unit(2, "meters"),
  59953. weight: math.unit(95, "kg"),
  59954. name: "Front-lewd",
  59955. image: {
  59956. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59957. extra: 1508/1313,
  59958. bottom: 87/1595
  59959. }
  59960. },
  59961. wing: {
  59962. height: math.unit(6.3333, "feet"),
  59963. name: "Wing",
  59964. image: {
  59965. source: "./media/characters/osiris-gryphon/wing.svg"
  59966. }
  59967. },
  59968. },
  59969. [
  59970. {
  59971. name: "Incognito",
  59972. height: math.unit(2, "meters")
  59973. },
  59974. {
  59975. name: "Home Size",
  59976. height: math.unit(30, "meters"),
  59977. default: true
  59978. },
  59979. {
  59980. name: "Macro",
  59981. height: math.unit(100, "meters")
  59982. },
  59983. {
  59984. name: "Macro+",
  59985. height: math.unit(350, "meters")
  59986. },
  59987. {
  59988. name: "Mega",
  59989. height: math.unit(40, "km")
  59990. },
  59991. {
  59992. name: "Giga",
  59993. height: math.unit(300, "km")
  59994. },
  59995. {
  59996. name: "Giga+",
  59997. height: math.unit(2000, "km")
  59998. },
  59999. {
  60000. name: "Terra",
  60001. height: math.unit(30000, "km")
  60002. },
  60003. ]
  60004. ))
  60005. characterMakers.push(() => makeCharacter(
  60006. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60007. {
  60008. front: {
  60009. height: math.unit(2.5, "meters"),
  60010. weight: math.unit(200, "kg"),
  60011. name: "Front",
  60012. image: {
  60013. source: "./media/characters/atlas-dragon/front.svg",
  60014. extra: 745/462,
  60015. bottom: 36/781
  60016. }
  60017. },
  60018. back: {
  60019. height: math.unit(2.5, "meters"),
  60020. weight: math.unit(200, "kg"),
  60021. name: "Back",
  60022. image: {
  60023. source: "./media/characters/atlas-dragon/back.svg",
  60024. extra: 848/822,
  60025. bottom: 57/905
  60026. }
  60027. },
  60028. frontLewd: {
  60029. height: math.unit(2.5, "meters"),
  60030. weight: math.unit(200, "kg"),
  60031. name: "Front (Lewd)",
  60032. image: {
  60033. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60034. extra: 745/462,
  60035. bottom: 36/781
  60036. }
  60037. },
  60038. backLewd: {
  60039. height: math.unit(2.5, "meters"),
  60040. weight: math.unit(200, "kg"),
  60041. name: "Back (Lewd)",
  60042. image: {
  60043. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60044. extra: 848/822,
  60045. bottom: 57/905
  60046. }
  60047. },
  60048. },
  60049. [
  60050. {
  60051. name: "Incognito",
  60052. height: math.unit(2.5, "meters")
  60053. },
  60054. {
  60055. name: "Small Macro",
  60056. height: math.unit(50, "meters")
  60057. },
  60058. {
  60059. name: "Macro",
  60060. height: math.unit(350, "meters")
  60061. },
  60062. {
  60063. name: "Mega",
  60064. height: math.unit(5.5, "kilometers")
  60065. },
  60066. {
  60067. name: "Mega+",
  60068. height: math.unit(50, "km")
  60069. },
  60070. {
  60071. name: "Giga",
  60072. height: math.unit(350, "km")
  60073. },
  60074. {
  60075. name: "Giga+",
  60076. height: math.unit(2000, "km")
  60077. },
  60078. {
  60079. name: "Giga++",
  60080. height: math.unit(6500, "km")
  60081. },
  60082. {
  60083. name: "Terra",
  60084. height: math.unit(30000, "km")
  60085. },
  60086. {
  60087. name: "Terra+",
  60088. height: math.unit(250000, "km")
  60089. },
  60090. {
  60091. name: "True Size",
  60092. height: math.unit(100, "multiverses"),
  60093. default: true
  60094. },
  60095. ]
  60096. ))
  60097. characterMakers.push(() => makeCharacter(
  60098. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60099. {
  60100. front: {
  60101. height: math.unit(1.8, "m"),
  60102. weight: math.unit(120, "kg"),
  60103. name: "Front",
  60104. image: {
  60105. source: "./media/characters/chey/front.svg",
  60106. extra: 1359/1270,
  60107. bottom: 18/1377
  60108. }
  60109. },
  60110. arm: {
  60111. height: math.unit(2.05, "feet"),
  60112. name: "Arm",
  60113. image: {
  60114. source: "./media/characters/chey/arm.svg"
  60115. }
  60116. },
  60117. head: {
  60118. height: math.unit(1.89, "feet"),
  60119. name: "Head",
  60120. image: {
  60121. source: "./media/characters/chey/head.svg"
  60122. }
  60123. },
  60124. },
  60125. [
  60126. {
  60127. name: "Original Size",
  60128. height: math.unit(5, "cm")
  60129. },
  60130. {
  60131. name: "Incognito Size",
  60132. height: math.unit(2.4, "m")
  60133. },
  60134. {
  60135. name: "Home Size",
  60136. height: math.unit(200, "meters"),
  60137. default: true
  60138. },
  60139. {
  60140. name: "Mega",
  60141. height: math.unit(2, "km")
  60142. },
  60143. {
  60144. name: "Giga (Preferred Size)",
  60145. height: math.unit(2000, "km")
  60146. },
  60147. {
  60148. name: "Giga+",
  60149. height: math.unit(6000, "km")
  60150. },
  60151. {
  60152. name: "Terra",
  60153. height: math.unit(17000, "km")
  60154. },
  60155. {
  60156. name: "Terra+",
  60157. height: math.unit(75000, "km")
  60158. },
  60159. {
  60160. name: "Terra++",
  60161. height: math.unit(225000, "km")
  60162. },
  60163. ]
  60164. ))
  60165. characterMakers.push(() => makeCharacter(
  60166. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60167. {
  60168. side: {
  60169. height: math.unit(7.8, "meters"),
  60170. name: "Side",
  60171. image: {
  60172. source: "./media/characters/ragnarok/side.svg",
  60173. extra: 725/621,
  60174. bottom: 72/797
  60175. }
  60176. },
  60177. },
  60178. [
  60179. {
  60180. name: "Normal",
  60181. height: math.unit(7.8, "meters"),
  60182. default: true
  60183. },
  60184. ]
  60185. ))
  60186. characterMakers.push(() => makeCharacter(
  60187. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60188. {
  60189. hyena_front: {
  60190. height: math.unit(2.1, "meters"),
  60191. weight: math.unit(110, "kg"),
  60192. name: "Front",
  60193. image: {
  60194. source: "./media/characters/nima/hyena-front.svg",
  60195. extra: 1904/1796,
  60196. bottom: 67/1971
  60197. },
  60198. form: "hyena",
  60199. },
  60200. hyena_back: {
  60201. height: math.unit(2.1, "meters"),
  60202. weight: math.unit(110, "kg"),
  60203. name: "Back",
  60204. image: {
  60205. source: "./media/characters/nima/hyena-back.svg",
  60206. extra: 1964/1884,
  60207. bottom: 35/1999
  60208. },
  60209. form: "hyena",
  60210. },
  60211. shark_front: {
  60212. height: math.unit(1.95, "meters"),
  60213. weight: math.unit(110, "kg"),
  60214. name: "Front",
  60215. image: {
  60216. source: "./media/characters/nima/shark-front.svg",
  60217. extra: 2238/2013,
  60218. bottom: 0/223
  60219. },
  60220. form: "shark",
  60221. },
  60222. paw: {
  60223. height: math.unit(1, "feet"),
  60224. name: "Paw",
  60225. image: {
  60226. source: "./media/characters/nima/paw.svg"
  60227. }
  60228. },
  60229. circlet: {
  60230. height: math.unit(0.3, "feet"),
  60231. name: "Circlet",
  60232. image: {
  60233. source: "./media/characters/nima/circlet.svg"
  60234. }
  60235. },
  60236. necklace: {
  60237. height: math.unit(1.2, "feet"),
  60238. name: "Necklace",
  60239. image: {
  60240. source: "./media/characters/nima/necklace.svg"
  60241. }
  60242. },
  60243. bracelet: {
  60244. height: math.unit(0.51, "feet"),
  60245. name: "Bracelet",
  60246. image: {
  60247. source: "./media/characters/nima/bracelet.svg"
  60248. }
  60249. },
  60250. armband: {
  60251. height: math.unit(1.3, "feet"),
  60252. name: "Armband",
  60253. image: {
  60254. source: "./media/characters/nima/armband.svg"
  60255. }
  60256. },
  60257. },
  60258. [
  60259. {
  60260. name: "Incognito",
  60261. height: math.unit(2.1, "meters"),
  60262. allForms: true
  60263. },
  60264. {
  60265. name: "Small Macro",
  60266. height: math.unit(50, "meters"),
  60267. allForms: true
  60268. },
  60269. {
  60270. name: "Macro",
  60271. height: math.unit(200, "meters"),
  60272. allForms: true
  60273. },
  60274. {
  60275. name: "Mega",
  60276. height: math.unit(2.5, "km"),
  60277. allForms: true
  60278. },
  60279. {
  60280. name: "Mega+",
  60281. height: math.unit(30, "km"),
  60282. allForms: true
  60283. },
  60284. {
  60285. name: "Giga (Home Size)",
  60286. height: math.unit(400, "km"),
  60287. allForms: true,
  60288. default: true
  60289. },
  60290. {
  60291. name: "Giga+",
  60292. height: math.unit(2500, "km"),
  60293. allForms: true
  60294. },
  60295. {
  60296. name: "Giga++",
  60297. height: math.unit(8000, "km"),
  60298. allForms: true
  60299. },
  60300. {
  60301. name: "Terra",
  60302. height: math.unit(20000, "km"),
  60303. allForms: true
  60304. },
  60305. {
  60306. name: "Terra+",
  60307. height: math.unit(70000, "km"),
  60308. allForms: true
  60309. },
  60310. {
  60311. name: "Terra++",
  60312. height: math.unit(600000, "km"),
  60313. allForms: true
  60314. },
  60315. {
  60316. name: "Galactic",
  60317. height: math.unit(40, "galaxies"),
  60318. allForms: true
  60319. },
  60320. {
  60321. name: "Universal",
  60322. height: math.unit(40, "universes"),
  60323. allForms: true
  60324. },
  60325. ],
  60326. {
  60327. "hyena": {
  60328. name: "Hyena",
  60329. default: true
  60330. },
  60331. "shark": {
  60332. name: "Shark",
  60333. },
  60334. }
  60335. ))
  60336. characterMakers.push(() => makeCharacter(
  60337. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60338. {
  60339. anthro_front: {
  60340. height: math.unit(1.5, "meters"),
  60341. name: "Front",
  60342. image: {
  60343. source: "./media/characters/adelaide/anthro-front.svg",
  60344. extra: 860/783,
  60345. bottom: 60/920
  60346. },
  60347. form: "anthro",
  60348. default: true
  60349. },
  60350. hand: {
  60351. height: math.unit(0.65, "feet"),
  60352. name: "Hand",
  60353. image: {
  60354. source: "./media/characters/adelaide/hand.svg"
  60355. },
  60356. form: "anthro"
  60357. },
  60358. foot: {
  60359. height: math.unit(1.38 * 259 / 314, "feet"),
  60360. name: "Foot",
  60361. image: {
  60362. source: "./media/characters/adelaide/foot.svg",
  60363. extra: 259/259,
  60364. bottom: 55/314
  60365. },
  60366. form: "anthro"
  60367. },
  60368. feather: {
  60369. height: math.unit(0.85, "feet"),
  60370. name: "Feather",
  60371. image: {
  60372. source: "./media/characters/adelaide/feather.svg"
  60373. },
  60374. form: "anthro"
  60375. },
  60376. feral_side: {
  60377. height: math.unit(1, "meters"),
  60378. name: "Side",
  60379. image: {
  60380. source: "./media/characters/adelaide/feral-side.svg",
  60381. extra: 550/467,
  60382. bottom: 37/587
  60383. },
  60384. form: "feral",
  60385. default: true
  60386. },
  60387. feral_hand: {
  60388. height: math.unit(0.58, "feet"),
  60389. name: "Hand",
  60390. image: {
  60391. source: "./media/characters/adelaide/hand.svg"
  60392. },
  60393. form: "feral"
  60394. },
  60395. feral_foot: {
  60396. height: math.unit(1.2 * 259 / 314, "feet"),
  60397. name: "Foot",
  60398. image: {
  60399. source: "./media/characters/adelaide/foot.svg",
  60400. extra: 259/259,
  60401. bottom: 55/314
  60402. },
  60403. form: "feral"
  60404. },
  60405. feral_feather: {
  60406. height: math.unit(0.63, "feet"),
  60407. name: "Feather",
  60408. image: {
  60409. source: "./media/characters/adelaide/feather.svg"
  60410. },
  60411. form: "feral"
  60412. },
  60413. },
  60414. [
  60415. {
  60416. name: "Normal",
  60417. height: math.unit(1.5, "meters"),
  60418. form: "anthro",
  60419. default: true
  60420. },
  60421. {
  60422. name: "Normal",
  60423. height: math.unit(1, "meters"),
  60424. form: "feral",
  60425. default: true
  60426. },
  60427. ],
  60428. {
  60429. "anthro": {
  60430. name: "Anthro",
  60431. default: true
  60432. },
  60433. "feral": {
  60434. name: "Feral",
  60435. },
  60436. }
  60437. ))
  60438. characterMakers.push(() => makeCharacter(
  60439. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60440. {
  60441. front: {
  60442. height: math.unit(2.5, "meters"),
  60443. name: "Front",
  60444. image: {
  60445. source: "./media/characters/goa/front.svg",
  60446. extra: 1109/1013,
  60447. bottom: 150/1259
  60448. }
  60449. },
  60450. },
  60451. [
  60452. {
  60453. name: "Normal",
  60454. height: math.unit(2.5, "meters"),
  60455. default: true
  60456. },
  60457. ]
  60458. ))
  60459. characterMakers.push(() => makeCharacter(
  60460. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60461. {
  60462. front: {
  60463. height: math.unit(2, "meters"),
  60464. weight: math.unit(100, "kg"),
  60465. name: "Front",
  60466. image: {
  60467. source: "./media/characters/kiki-weavile/front.svg",
  60468. extra: 357/332,
  60469. bottom: 60/417
  60470. }
  60471. },
  60472. },
  60473. [
  60474. {
  60475. name: "Normal",
  60476. height: math.unit(2, "meters"),
  60477. default: true
  60478. },
  60479. ]
  60480. ))
  60481. characterMakers.push(() => makeCharacter(
  60482. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60483. {
  60484. side: {
  60485. height: math.unit(1.6, "meters"),
  60486. name: "Side",
  60487. image: {
  60488. source: "./media/characters/liza/side.svg",
  60489. extra: 943/915,
  60490. bottom: 72/1015
  60491. }
  60492. },
  60493. },
  60494. [
  60495. {
  60496. name: "Normal",
  60497. height: math.unit(1.6, "meters"),
  60498. default: true
  60499. },
  60500. ]
  60501. ))
  60502. characterMakers.push(() => makeCharacter(
  60503. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60504. {
  60505. side: {
  60506. height: math.unit(2.5, "meters"),
  60507. preyCapacity: math.unit(1, "people"),
  60508. name: "Side",
  60509. image: {
  60510. source: "./media/characters/persephone-sweetbreath/side.svg",
  60511. extra: 796/700,
  60512. bottom: 44/840
  60513. }
  60514. },
  60515. sideVore: {
  60516. height: math.unit(2.5, "meters"),
  60517. preyCapacity: math.unit(1, "people"),
  60518. name: "Side (Full)",
  60519. image: {
  60520. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60521. extra: 796/700,
  60522. bottom: 44/840
  60523. }
  60524. },
  60525. },
  60526. [
  60527. {
  60528. name: "Normal",
  60529. height: math.unit(2.5, "meters"),
  60530. default: true
  60531. },
  60532. ]
  60533. ))
  60534. characterMakers.push(() => makeCharacter(
  60535. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60536. {
  60537. front: {
  60538. height: math.unit(32, "meters"),
  60539. name: "Front",
  60540. image: {
  60541. source: "./media/characters/pierce/front.svg",
  60542. extra: 1695/1475,
  60543. bottom: 185/1880
  60544. }
  60545. },
  60546. side: {
  60547. height: math.unit(32, "meters"),
  60548. name: "Side",
  60549. image: {
  60550. source: "./media/characters/pierce/side.svg",
  60551. extra: 974/859,
  60552. bottom: 43/1017
  60553. }
  60554. },
  60555. frontWingless: {
  60556. height: math.unit(32, "meters"),
  60557. name: "Front (Wingless)",
  60558. image: {
  60559. source: "./media/characters/pierce/front-wingless.svg",
  60560. extra: 1695/1475,
  60561. bottom: 185/1880
  60562. }
  60563. },
  60564. sideWingless: {
  60565. height: math.unit(32, "meters"),
  60566. name: "Side (Wingless)",
  60567. image: {
  60568. source: "./media/characters/pierce/side-wingless.svg",
  60569. extra: 974/859,
  60570. bottom: 43/1017
  60571. }
  60572. },
  60573. maw: {
  60574. height: math.unit(19.3, "meters"),
  60575. name: "Maw",
  60576. image: {
  60577. source: "./media/characters/pierce/maw.svg"
  60578. }
  60579. },
  60580. },
  60581. [
  60582. {
  60583. name: "Small",
  60584. height: math.unit(8.5, "meters")
  60585. },
  60586. {
  60587. name: "Normal",
  60588. height: math.unit(32, "meters"),
  60589. default: true
  60590. },
  60591. ]
  60592. ))
  60593. characterMakers.push(() => makeCharacter(
  60594. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60595. {
  60596. front: {
  60597. height: math.unit(2.3, "meters"),
  60598. weight: math.unit(165, "kg"),
  60599. name: "Front",
  60600. image: {
  60601. source: "./media/characters/shira/front.svg",
  60602. extra: 924/919,
  60603. bottom: 17/941
  60604. },
  60605. form: "cobra",
  60606. default: true
  60607. },
  60608. back: {
  60609. height: math.unit(2.3, "meters"),
  60610. weight: math.unit(165, "kg"),
  60611. name: "Back",
  60612. image: {
  60613. source: "./media/characters/shira/back.svg",
  60614. extra: 928/922,
  60615. bottom: 18/946
  60616. },
  60617. form: "cobra"
  60618. },
  60619. frontLewd: {
  60620. height: math.unit(2.3, "meters"),
  60621. weight: math.unit(165, "kg"),
  60622. name: "Front (Lewd)",
  60623. image: {
  60624. source: "./media/characters/shira/front-lewd.svg",
  60625. extra: 924/919,
  60626. bottom: 17/941
  60627. },
  60628. form: "cobra"
  60629. },
  60630. backLewd: {
  60631. height: math.unit(2.3, "meters"),
  60632. weight: math.unit(165, "kg"),
  60633. name: "Back (Lewd)",
  60634. image: {
  60635. source: "./media/characters/shira/back-lewd.svg",
  60636. extra: 928/922,
  60637. bottom: 18/946
  60638. },
  60639. form: "cobra"
  60640. },
  60641. maw: {
  60642. height: math.unit(1.14, "feet"),
  60643. name: "Maw",
  60644. image: {
  60645. source: "./media/characters/shira/maw.svg"
  60646. },
  60647. form: "cobra"
  60648. },
  60649. magma_front: {
  60650. height: math.unit(2.3, "meters"),
  60651. weight: math.unit(165, "kg"),
  60652. name: "Front",
  60653. image: {
  60654. source: "./media/characters/shira/magma-front.svg",
  60655. extra: 1870/1693,
  60656. bottom: 24/1894
  60657. },
  60658. form: "magma",
  60659. },
  60660. magma_back: {
  60661. height: math.unit(2.3, "meters"),
  60662. weight: math.unit(165, "kg"),
  60663. name: "Back",
  60664. image: {
  60665. source: "./media/characters/shira/magma-back.svg",
  60666. extra: 1918/1756,
  60667. bottom: 46/1964
  60668. },
  60669. form: "magma",
  60670. },
  60671. },
  60672. [
  60673. {
  60674. name: "Incognito",
  60675. height: math.unit(2.3, "meters"),
  60676. allForms: true
  60677. },
  60678. {
  60679. name: "Home Size",
  60680. height: math.unit(150, "meters"),
  60681. default: true,
  60682. allForms: true
  60683. },
  60684. {
  60685. name: "Macro",
  60686. height: math.unit(2, "km"),
  60687. allForms: true
  60688. },
  60689. {
  60690. name: "Mega",
  60691. height: math.unit(30, "km"),
  60692. allForms: true
  60693. },
  60694. {
  60695. name: "Giga",
  60696. height: math.unit(450, "km"),
  60697. allForms: true
  60698. },
  60699. {
  60700. name: "Giga+",
  60701. height: math.unit(3000, "km"),
  60702. allForms: true
  60703. },
  60704. {
  60705. name: "Giga++",
  60706. height: math.unit(6000, "km"),
  60707. allForms: true
  60708. },
  60709. {
  60710. name: "Terra",
  60711. height: math.unit(80000, "km"),
  60712. allForms: true
  60713. },
  60714. {
  60715. name: "Terra+",
  60716. height: math.unit(350000, "km"),
  60717. allForms: true
  60718. },
  60719. {
  60720. name: "Solar",
  60721. height: math.unit(1e6, "km"),
  60722. allForms: true
  60723. },
  60724. ],
  60725. {
  60726. "cobra": {
  60727. name: "Cobra",
  60728. default: true
  60729. },
  60730. "magma": {
  60731. name: "Magma Dragon",
  60732. },
  60733. }
  60734. ))
  60735. characterMakers.push(() => makeCharacter(
  60736. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60737. {
  60738. front: {
  60739. height: math.unit(2, "meters"),
  60740. weight: math.unit(160, "kg"),
  60741. name: "Front",
  60742. image: {
  60743. source: "./media/characters/daxerios/front.svg",
  60744. extra: 1334/1277,
  60745. bottom: 45/1379
  60746. }
  60747. },
  60748. frontLewd: {
  60749. height: math.unit(2, "meters"),
  60750. weight: math.unit(160, "kg"),
  60751. name: "Front (Lewd)",
  60752. image: {
  60753. source: "./media/characters/daxerios/front-lewd.svg",
  60754. extra: 1334/1277,
  60755. bottom: 45/1379
  60756. }
  60757. },
  60758. dick: {
  60759. height: math.unit(2.35, "feet"),
  60760. name: "Dick",
  60761. image: {
  60762. source: "./media/characters/daxerios/dick.svg"
  60763. }
  60764. },
  60765. },
  60766. [
  60767. {
  60768. name: "\"Small\"",
  60769. height: math.unit(5, "meters")
  60770. },
  60771. {
  60772. name: "Original Size",
  60773. height: math.unit(500, "meters"),
  60774. default: true
  60775. },
  60776. {
  60777. name: "Mega",
  60778. height: math.unit(2, "km")
  60779. },
  60780. {
  60781. name: "Mega+",
  60782. height: math.unit(35, "km")
  60783. },
  60784. {
  60785. name: "Giga",
  60786. height: math.unit(250, "km")
  60787. },
  60788. {
  60789. name: "Giga+",
  60790. height: math.unit(3000, "km")
  60791. },
  60792. {
  60793. name: "Terra",
  60794. height: math.unit(25000, "km")
  60795. },
  60796. {
  60797. name: "Terra+",
  60798. height: math.unit(300000, "km")
  60799. },
  60800. {
  60801. name: "Solar",
  60802. height: math.unit(1e6, "km")
  60803. },
  60804. ]
  60805. ))
  60806. characterMakers.push(() => makeCharacter(
  60807. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60808. {
  60809. front: {
  60810. height: math.unit(8 + 4/12, "feet"),
  60811. weight: math.unit(464, "lb"),
  60812. name: "Front",
  60813. image: {
  60814. source: "./media/characters/caveat/front.svg",
  60815. extra: 1861/1678,
  60816. bottom: 40/1901
  60817. }
  60818. },
  60819. },
  60820. [
  60821. {
  60822. name: "Normal",
  60823. height: math.unit(8 + 4/12, "feet"),
  60824. default: true
  60825. },
  60826. ]
  60827. ))
  60828. characterMakers.push(() => makeCharacter(
  60829. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60830. {
  60831. front: {
  60832. height: math.unit(12, "feet"),
  60833. weight: math.unit(1800, "lb"),
  60834. name: "Front",
  60835. image: {
  60836. source: "./media/characters/centbair/front.svg",
  60837. extra: 781/663,
  60838. bottom: 25/806
  60839. }
  60840. },
  60841. frontNsfw: {
  60842. height: math.unit(12, "feet"),
  60843. weight: math.unit(1800, "lb"),
  60844. name: "Front (NSFW)",
  60845. image: {
  60846. source: "./media/characters/centbair/front-nsfw.svg",
  60847. extra: 781/663,
  60848. bottom: 25/806
  60849. }
  60850. },
  60851. back: {
  60852. height: math.unit(12, "feet"),
  60853. weight: math.unit(1800, "lb"),
  60854. name: "Back",
  60855. image: {
  60856. source: "./media/characters/centbair/back.svg",
  60857. extra: 808/761,
  60858. bottom: 19/827
  60859. }
  60860. },
  60861. dick: {
  60862. height: math.unit(6.5, "feet"),
  60863. name: "Dick",
  60864. image: {
  60865. source: "./media/characters/centbair/dick.svg"
  60866. }
  60867. },
  60868. slit: {
  60869. height: math.unit(3.25, "feet"),
  60870. name: "Slit",
  60871. image: {
  60872. source: "./media/characters/centbair/slit.svg"
  60873. }
  60874. },
  60875. },
  60876. [
  60877. {
  60878. name: "Normal",
  60879. height: math.unit(12, "feet"),
  60880. default: true
  60881. },
  60882. ]
  60883. ))
  60884. characterMakers.push(() => makeCharacter(
  60885. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60886. {
  60887. front: {
  60888. height: math.unit(5 + 7/12, "feet"),
  60889. name: "Front",
  60890. image: {
  60891. source: "./media/characters/andy/front.svg",
  60892. extra: 634/588,
  60893. bottom: 36/670
  60894. },
  60895. extraAttributes: {
  60896. "pawLength": {
  60897. name: "Paw Length",
  60898. power: 1,
  60899. type: "length",
  60900. base: math.unit(1, "feet")
  60901. },
  60902. }
  60903. },
  60904. side: {
  60905. height: math.unit(5 + 7/12, "feet"),
  60906. name: "Side",
  60907. image: {
  60908. source: "./media/characters/andy/side.svg",
  60909. extra: 641/596,
  60910. bottom: 34/675
  60911. },
  60912. extraAttributes: {
  60913. "pawLength": {
  60914. name: "Paw Length",
  60915. power: 1,
  60916. type: "length",
  60917. base: math.unit(1, "feet")
  60918. },
  60919. }
  60920. },
  60921. back: {
  60922. height: math.unit(5 + 7/12, "feet"),
  60923. name: "Back",
  60924. image: {
  60925. source: "./media/characters/andy/back.svg",
  60926. extra: 618/583,
  60927. bottom: 39/657
  60928. },
  60929. extraAttributes: {
  60930. "pawLength": {
  60931. name: "Paw Length",
  60932. power: 1,
  60933. type: "length",
  60934. base: math.unit(1, "feet")
  60935. },
  60936. }
  60937. },
  60938. paw: {
  60939. height: math.unit(1.13, "feet"),
  60940. name: "Paw",
  60941. image: {
  60942. source: "./media/characters/andy/paw.svg"
  60943. }
  60944. },
  60945. },
  60946. [
  60947. {
  60948. name: "Micro",
  60949. height: math.unit(4, "inches")
  60950. },
  60951. {
  60952. name: "Normal",
  60953. height: math.unit(5 + 7/12, "feet"),
  60954. default: true
  60955. },
  60956. {
  60957. name: "Macro",
  60958. height: math.unit(390.42, "feet")
  60959. },
  60960. ]
  60961. ))
  60962. characterMakers.push(() => makeCharacter(
  60963. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60964. {
  60965. front: {
  60966. height: math.unit(7, "feet"),
  60967. weight: math.unit(250, "lb"),
  60968. name: "Front",
  60969. image: {
  60970. source: "./media/characters/vix-titan/front.svg",
  60971. extra: 460/428,
  60972. bottom: 15/475
  60973. },
  60974. extraAttributes: {
  60975. "pawWidth": {
  60976. name: "Paw Width",
  60977. power: 1,
  60978. type: "length",
  60979. base: math.unit(0.75, "feet")
  60980. },
  60981. }
  60982. },
  60983. },
  60984. [
  60985. {
  60986. name: "Normal",
  60987. height: math.unit(7, "feet"),
  60988. default: true
  60989. },
  60990. {
  60991. name: "Giant",
  60992. height: math.unit(1500, "feet")
  60993. },
  60994. {
  60995. name: "Mega",
  60996. height: math.unit(10, "miles")
  60997. },
  60998. {
  60999. name: "Giga",
  61000. height: math.unit(150, "miles")
  61001. },
  61002. {
  61003. name: "Tera",
  61004. height: math.unit(144000, "miles")
  61005. },
  61006. ]
  61007. ))
  61008. characterMakers.push(() => makeCharacter(
  61009. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61010. {
  61011. front: {
  61012. height: math.unit(6 + 2/12, "feet"),
  61013. name: "Front",
  61014. image: {
  61015. source: "./media/characters/reiku/front.svg",
  61016. extra: 1910/1757,
  61017. bottom: 103/2013
  61018. },
  61019. extraAttributes: {
  61020. "thighThickness": {
  61021. name: "Thigh Thickness",
  61022. power: 1,
  61023. type: "length",
  61024. base: math.unit(1.12, "feet")
  61025. },
  61026. "assThickness": {
  61027. name: "Ass Thickness",
  61028. power: 1,
  61029. type: "length",
  61030. base: math.unit(1.12*2, "feet")
  61031. },
  61032. }
  61033. },
  61034. side: {
  61035. height: math.unit(6 + 2/12, "feet"),
  61036. name: "Side",
  61037. image: {
  61038. source: "./media/characters/reiku/side.svg",
  61039. extra: 1846/1748,
  61040. bottom: 99/1945
  61041. },
  61042. extraAttributes: {
  61043. "thighThickness": {
  61044. name: "Thigh Thickness",
  61045. power: 1,
  61046. type: "length",
  61047. base: math.unit(1.12, "feet")
  61048. },
  61049. "assThickness": {
  61050. name: "Ass Thickness",
  61051. power: 1,
  61052. type: "length",
  61053. base: math.unit(1.12*2, "feet")
  61054. },
  61055. }
  61056. },
  61057. back: {
  61058. height: math.unit(6 + 2/12, "feet"),
  61059. name: "Back",
  61060. image: {
  61061. source: "./media/characters/reiku/back.svg",
  61062. extra: 1941/1786,
  61063. bottom: 34/1975
  61064. },
  61065. extraAttributes: {
  61066. "thighThickness": {
  61067. name: "Thigh Thickness",
  61068. power: 1,
  61069. type: "length",
  61070. base: math.unit(1.12, "feet")
  61071. },
  61072. "assThickness": {
  61073. name: "Ass Thickness",
  61074. power: 1,
  61075. type: "length",
  61076. base: math.unit(1.12*2, "feet")
  61077. },
  61078. }
  61079. },
  61080. head: {
  61081. height: math.unit(1.8, "feet"),
  61082. name: "Head",
  61083. image: {
  61084. source: "./media/characters/reiku/head.svg"
  61085. }
  61086. },
  61087. tailTop: {
  61088. height: math.unit(8.4, "feet"),
  61089. name: "Tail (Top)",
  61090. image: {
  61091. source: "./media/characters/reiku/tail-top.svg"
  61092. }
  61093. },
  61094. tailBottom: {
  61095. height: math.unit(8.4, "feet"),
  61096. name: "Tail (Bottom)",
  61097. image: {
  61098. source: "./media/characters/reiku/tail-bottom.svg"
  61099. }
  61100. },
  61101. foot: {
  61102. height: math.unit(2.6, "feet"),
  61103. name: "Foot",
  61104. image: {
  61105. source: "./media/characters/reiku/foot.svg"
  61106. }
  61107. },
  61108. footCurled: {
  61109. height: math.unit(2.3, "feet"),
  61110. name: "Foot (Curled)",
  61111. image: {
  61112. source: "./media/characters/reiku/foot-curled.svg"
  61113. }
  61114. },
  61115. footSide: {
  61116. height: math.unit(1.26, "feet"),
  61117. name: "Foot (Side)",
  61118. image: {
  61119. source: "./media/characters/reiku/foot-side.svg"
  61120. }
  61121. },
  61122. },
  61123. [
  61124. {
  61125. name: "Normal",
  61126. height: math.unit(6 + 2/12, "feet"),
  61127. default: true
  61128. },
  61129. ]
  61130. ))
  61131. characterMakers.push(() => makeCharacter(
  61132. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61133. {
  61134. front: {
  61135. height: math.unit(7, "feet"),
  61136. weight: math.unit(500, "kg"),
  61137. name: "Front",
  61138. image: {
  61139. source: "./media/characters/cialda/front.svg",
  61140. extra: 912/745,
  61141. bottom: 55/967
  61142. }
  61143. },
  61144. },
  61145. [
  61146. {
  61147. name: "Normal",
  61148. height: math.unit(7, "feet"),
  61149. default: true
  61150. },
  61151. ]
  61152. ))
  61153. characterMakers.push(() => makeCharacter(
  61154. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61155. {
  61156. side: {
  61157. height: math.unit(6, "feet"),
  61158. weight: math.unit(600, "lb"),
  61159. preyCapacity: math.unit(25, "liters"),
  61160. name: "Side",
  61161. image: {
  61162. source: "./media/characters/darkkin/side.svg",
  61163. extra: 1597/1447,
  61164. bottom: 101/1698
  61165. }
  61166. },
  61167. },
  61168. [
  61169. {
  61170. name: "Canon Height",
  61171. height: math.unit(568, "feet"),
  61172. default: true
  61173. },
  61174. ]
  61175. ))
  61176. characterMakers.push(() => makeCharacter(
  61177. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61178. {
  61179. front: {
  61180. height: math.unit(6, "feet"),
  61181. weight: math.unit(1500, "lb"),
  61182. preyCapacity: math.unit(3, "people"),
  61183. name: "Front",
  61184. image: {
  61185. source: "./media/characters/livnia/front.svg",
  61186. extra: 934/932,
  61187. bottom: 83/1017
  61188. }
  61189. },
  61190. back: {
  61191. height: math.unit(6, "feet"),
  61192. weight: math.unit(1500, "lb"),
  61193. preyCapacity: math.unit(3, "people"),
  61194. name: "Back",
  61195. image: {
  61196. source: "./media/characters/livnia/back.svg",
  61197. extra: 916/915,
  61198. bottom: 58/974
  61199. }
  61200. },
  61201. head: {
  61202. height: math.unit(1.53, "feet"),
  61203. name: "Head",
  61204. image: {
  61205. source: "./media/characters/livnia/head.svg"
  61206. }
  61207. },
  61208. maw: {
  61209. height: math.unit(0.78, "feet"),
  61210. name: "Maw",
  61211. image: {
  61212. source: "./media/characters/livnia/maw.svg"
  61213. }
  61214. },
  61215. genitals: {
  61216. height: math.unit(0.35, "feet"),
  61217. name: "Genitals",
  61218. image: {
  61219. source: "./media/characters/livnia/genitals.svg"
  61220. }
  61221. },
  61222. },
  61223. [
  61224. {
  61225. name: "Normal",
  61226. height: math.unit(1000, "feet"),
  61227. default: true
  61228. },
  61229. ]
  61230. ))
  61231. characterMakers.push(() => makeCharacter(
  61232. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61233. {
  61234. front: {
  61235. height: math.unit(4, "feet"),
  61236. weight: math.unit(73, "lb"),
  61237. name: "Front",
  61238. image: {
  61239. source: "./media/characters/hayaku/front.svg",
  61240. extra: 1011/888,
  61241. bottom: 33/1044
  61242. }
  61243. },
  61244. back: {
  61245. height: math.unit(4, "feet"),
  61246. weight: math.unit(73, "lb"),
  61247. name: "Back",
  61248. image: {
  61249. source: "./media/characters/hayaku/back.svg",
  61250. extra: 1040/930,
  61251. bottom: 20/1060
  61252. }
  61253. },
  61254. },
  61255. [
  61256. {
  61257. name: "Normal",
  61258. height: math.unit(4, "feet"),
  61259. default: true
  61260. },
  61261. ]
  61262. ))
  61263. characterMakers.push(() => makeCharacter(
  61264. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61265. {
  61266. front: {
  61267. height: math.unit(6 + 7/12, "feet"),
  61268. weight: math.unit(300, "lb"),
  61269. name: "Front",
  61270. image: {
  61271. source: "./media/characters/athena-bryzant/front.svg",
  61272. extra: 870/835,
  61273. bottom: 33/903
  61274. }
  61275. },
  61276. back: {
  61277. height: math.unit(6 + 7/12, "feet"),
  61278. weight: math.unit(300, "lb"),
  61279. name: "Back",
  61280. image: {
  61281. source: "./media/characters/athena-bryzant/back.svg",
  61282. extra: 858/823,
  61283. bottom: 30/888
  61284. }
  61285. },
  61286. head: {
  61287. height: math.unit(2.38, "feet"),
  61288. name: "Head",
  61289. image: {
  61290. source: "./media/characters/athena-bryzant/head.svg"
  61291. }
  61292. },
  61293. wings: {
  61294. height: math.unit(2.85, "feet"),
  61295. name: "Wings",
  61296. image: {
  61297. source: "./media/characters/athena-bryzant/wings.svg"
  61298. }
  61299. },
  61300. },
  61301. [
  61302. {
  61303. name: "Normal",
  61304. height: math.unit(6 + 7/12, "feet"),
  61305. default: true
  61306. },
  61307. {
  61308. name: "Big",
  61309. height: math.unit(8, "feet")
  61310. },
  61311. {
  61312. name: "Very Big",
  61313. height: math.unit(11, "feet")
  61314. },
  61315. ]
  61316. ))
  61317. characterMakers.push(() => makeCharacter(
  61318. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61319. {
  61320. side: {
  61321. height: math.unit(3, "meters"),
  61322. weight: math.unit(7500, "kg"),
  61323. preyCapacity: math.unit(1e12, "people"),
  61324. name: "Side",
  61325. image: {
  61326. source: "./media/characters/zel-kesh/side.svg",
  61327. extra: 910/407,
  61328. bottom: 147/1057
  61329. }
  61330. },
  61331. },
  61332. [
  61333. {
  61334. name: "Normal",
  61335. height: math.unit(3, "meters"),
  61336. default: true
  61337. },
  61338. ]
  61339. ))
  61340. characterMakers.push(() => makeCharacter(
  61341. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61342. {
  61343. front: {
  61344. height: math.unit(2, "meters"),
  61345. weight: math.unit(95, "kg"),
  61346. name: "Front",
  61347. image: {
  61348. source: "./media/characters/kane-fox/front.svg",
  61349. extra: 945/888,
  61350. bottom: 27/972
  61351. }
  61352. },
  61353. back: {
  61354. height: math.unit(2, "meters"),
  61355. weight: math.unit(95, "kg"),
  61356. name: "Back",
  61357. image: {
  61358. source: "./media/characters/kane-fox/back.svg",
  61359. extra: 959/914,
  61360. bottom: 15/974
  61361. }
  61362. },
  61363. frontLewd: {
  61364. height: math.unit(2, "meters"),
  61365. weight: math.unit(95, "kg"),
  61366. name: "Front (Lewd)",
  61367. image: {
  61368. source: "./media/characters/kane-fox/front-lewd.svg",
  61369. extra: 945/888,
  61370. bottom: 27/972
  61371. }
  61372. },
  61373. },
  61374. [
  61375. {
  61376. name: "Home Size",
  61377. height: math.unit(2, "meters"),
  61378. default: true
  61379. },
  61380. {
  61381. name: "Macro",
  61382. height: math.unit(200, "meters")
  61383. },
  61384. {
  61385. name: "Small Mega",
  61386. height: math.unit(3, "km")
  61387. },
  61388. {
  61389. name: "Mega",
  61390. height: math.unit(50, "km")
  61391. },
  61392. {
  61393. name: "Giga",
  61394. height: math.unit(200, "km")
  61395. },
  61396. {
  61397. name: "Giga+",
  61398. height: math.unit(2500, "km")
  61399. },
  61400. {
  61401. name: "Terra",
  61402. height: math.unit(70000, "km")
  61403. },
  61404. {
  61405. name: "Terra+",
  61406. height: math.unit(150000, "km")
  61407. },
  61408. {
  61409. name: "Terra++",
  61410. height: math.unit(400000, "km")
  61411. },
  61412. ]
  61413. ))
  61414. characterMakers.push(() => makeCharacter(
  61415. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61416. {
  61417. otter_front: {
  61418. height: math.unit(1.8, "meters"),
  61419. weight: math.unit(90, "kg"),
  61420. name: "Front",
  61421. image: {
  61422. source: "./media/characters/ayranus/otter-front.svg",
  61423. extra: 468/452,
  61424. bottom: 43/511
  61425. },
  61426. form: "otter",
  61427. },
  61428. otter_frontLewd: {
  61429. height: math.unit(1.8, "meters"),
  61430. weight: math.unit(90, "kg"),
  61431. name: "Front (Lewd)",
  61432. image: {
  61433. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61434. extra: 468/452,
  61435. bottom: 43/511
  61436. },
  61437. form: "otter",
  61438. },
  61439. lionbat_front: {
  61440. height: math.unit(1.8, "meters"),
  61441. weight: math.unit(90, "kg"),
  61442. name: "Front (Lewd)",
  61443. image: {
  61444. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61445. extra: 797/740,
  61446. bottom: 78/875
  61447. },
  61448. form: "lionbat",
  61449. },
  61450. paw: {
  61451. height: math.unit(1.5, "feet"),
  61452. name: "Paw",
  61453. image: {
  61454. source: "./media/characters/ayranus/paw.svg"
  61455. },
  61456. },
  61457. },
  61458. [
  61459. {
  61460. name: "Incognito",
  61461. height: math.unit(1.8, "meters"),
  61462. allForms: true
  61463. },
  61464. {
  61465. name: "Macro",
  61466. height: math.unit(60, "meters"),
  61467. allForms: true
  61468. },
  61469. {
  61470. name: "Macro+",
  61471. height: math.unit(200, "meters"),
  61472. allForms: true
  61473. },
  61474. {
  61475. name: "Mega",
  61476. height: math.unit(35, "km"),
  61477. allForms: true
  61478. },
  61479. {
  61480. name: "Giga",
  61481. height: math.unit(220, "km"),
  61482. allForms: true
  61483. },
  61484. {
  61485. name: "Giga+",
  61486. height: math.unit(1500, "km"),
  61487. allForms: true
  61488. },
  61489. {
  61490. name: "Terra",
  61491. height: math.unit(13000, "km"),
  61492. allForms: true
  61493. },
  61494. {
  61495. name: "Terra+",
  61496. height: math.unit(500000, "km"),
  61497. allForms: true
  61498. },
  61499. {
  61500. name: "Galactic",
  61501. height: math.unit(486080, "parsecs"),
  61502. default: true,
  61503. allForms: true
  61504. },
  61505. ],
  61506. {
  61507. "otter": {
  61508. name: "Otter",
  61509. default: true
  61510. },
  61511. "lionbat": {
  61512. name: "Lionbat",
  61513. },
  61514. }
  61515. ))
  61516. characterMakers.push(() => makeCharacter(
  61517. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61518. {
  61519. front: {
  61520. height: math.unit(7 + 4/12, "feet"),
  61521. weight: math.unit(400, "lb"),
  61522. name: "Front",
  61523. image: {
  61524. source: "./media/characters/proxy/front.svg",
  61525. extra: 1605/1542,
  61526. bottom: 55/1660
  61527. }
  61528. },
  61529. side: {
  61530. height: math.unit(7 + 4/12, "feet"),
  61531. weight: math.unit(400, "lb"),
  61532. name: "Side",
  61533. image: {
  61534. source: "./media/characters/proxy/side.svg",
  61535. extra: 794/759,
  61536. bottom: 6/800
  61537. }
  61538. },
  61539. hand: {
  61540. height: math.unit(1.54, "feet"),
  61541. name: "Hand",
  61542. image: {
  61543. source: "./media/characters/proxy/hand.svg"
  61544. }
  61545. },
  61546. paw: {
  61547. height: math.unit(1.53, "feet"),
  61548. name: "Paw",
  61549. image: {
  61550. source: "./media/characters/proxy/paw.svg"
  61551. }
  61552. },
  61553. maw: {
  61554. height: math.unit(1.9, "feet"),
  61555. name: "Maw",
  61556. image: {
  61557. source: "./media/characters/proxy/maw.svg"
  61558. }
  61559. },
  61560. },
  61561. [
  61562. {
  61563. name: "Normal",
  61564. height: math.unit(7 + 4/12, "feet"),
  61565. default: true
  61566. },
  61567. ]
  61568. ))
  61569. characterMakers.push(() => makeCharacter(
  61570. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61571. {
  61572. front: {
  61573. height: math.unit(4, "meters"),
  61574. name: "Front",
  61575. image: {
  61576. source: "./media/characters/crocozilla/front.svg",
  61577. extra: 1790/1742,
  61578. bottom: 78/1868
  61579. }
  61580. },
  61581. },
  61582. [
  61583. {
  61584. name: "Normal",
  61585. height: math.unit(4, "meters"),
  61586. default: true
  61587. },
  61588. ]
  61589. ))
  61590. characterMakers.push(() => makeCharacter(
  61591. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61592. {
  61593. front: {
  61594. height: math.unit(1.8, "meters"),
  61595. weight: math.unit(120, "kg"),
  61596. name: "Front",
  61597. image: {
  61598. source: "./media/characters/kurz/front.svg",
  61599. extra: 1960/1824,
  61600. bottom: 41/2001
  61601. }
  61602. },
  61603. back: {
  61604. height: math.unit(1.8, "meters"),
  61605. weight: math.unit(120, "kg"),
  61606. name: "Back",
  61607. image: {
  61608. source: "./media/characters/kurz/back.svg",
  61609. extra: 1906/1787,
  61610. bottom: 60/1966
  61611. }
  61612. },
  61613. frontLewd: {
  61614. height: math.unit(1.8, "meters"),
  61615. weight: math.unit(120, "kg"),
  61616. name: "Front (Lewd)",
  61617. image: {
  61618. source: "./media/characters/kurz/front-lewd.svg",
  61619. extra: 1960/1824,
  61620. bottom: 41/2001
  61621. }
  61622. },
  61623. maw: {
  61624. height: math.unit(0.69, "meters"),
  61625. name: "Maw",
  61626. image: {
  61627. source: "./media/characters/kurz/maw.svg"
  61628. }
  61629. },
  61630. },
  61631. [
  61632. {
  61633. name: "Original Size",
  61634. height: math.unit(1.8, "meters")
  61635. },
  61636. {
  61637. name: "Incognito Size",
  61638. height: math.unit(2.4, "meters"),
  61639. default: true
  61640. },
  61641. {
  61642. name: "Macro",
  61643. height: math.unit(30, "meters")
  61644. },
  61645. {
  61646. name: "Macro+",
  61647. height: math.unit(250, "meters")
  61648. },
  61649. {
  61650. name: "Mega",
  61651. height: math.unit(2, "km")
  61652. },
  61653. {
  61654. name: "Mega+",
  61655. height: math.unit(35, "km")
  61656. },
  61657. {
  61658. name: "Mega++",
  61659. height: math.unit(75, "km")
  61660. },
  61661. {
  61662. name: "Giga",
  61663. height: math.unit(250, "km")
  61664. },
  61665. {
  61666. name: "Terra",
  61667. height: math.unit(15000, "km")
  61668. },
  61669. {
  61670. name: "Terra+",
  61671. height: math.unit(2250000, "km")
  61672. },
  61673. ]
  61674. ))
  61675. characterMakers.push(() => makeCharacter(
  61676. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61677. {
  61678. front: {
  61679. height: math.unit(16 + 3/12, "feet"),
  61680. weight: math.unit(3575, "lb"),
  61681. name: "Front",
  61682. image: {
  61683. source: "./media/characters/nikita/front.svg",
  61684. extra: 1064/955,
  61685. bottom: 47/1111
  61686. }
  61687. },
  61688. },
  61689. [
  61690. {
  61691. name: "Normal",
  61692. height: math.unit(16 + 3/12, "feet"),
  61693. default: true
  61694. },
  61695. {
  61696. name: "Big",
  61697. height: math.unit(21, "feet")
  61698. },
  61699. {
  61700. name: "Biggest",
  61701. height: math.unit(50, "feet")
  61702. },
  61703. ]
  61704. ))
  61705. characterMakers.push(() => makeCharacter(
  61706. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61707. {
  61708. front: {
  61709. height: math.unit(1.92, "m"),
  61710. weight: math.unit(76, "kg"),
  61711. name: "Front",
  61712. image: {
  61713. source: "./media/characters/kyara/front.svg",
  61714. extra: 1550/1438,
  61715. bottom: 139/1689
  61716. }
  61717. },
  61718. back: {
  61719. height: math.unit(1.92, "m"),
  61720. weight: math.unit(76, "kg"),
  61721. name: "Back",
  61722. image: {
  61723. source: "./media/characters/kyara/back.svg",
  61724. extra: 1523/1427,
  61725. bottom: 83/1606
  61726. }
  61727. },
  61728. head: {
  61729. height: math.unit(1.22, "feet"),
  61730. name: "Head",
  61731. image: {
  61732. source: "./media/characters/kyara/head.svg"
  61733. }
  61734. },
  61735. maw: {
  61736. height: math.unit(0.73, "feet"),
  61737. name: "Maw",
  61738. image: {
  61739. source: "./media/characters/kyara/maw.svg"
  61740. }
  61741. },
  61742. paws: {
  61743. height: math.unit(0.95, "feet"),
  61744. name: "Paws",
  61745. image: {
  61746. source: "./media/characters/kyara/paws.svg"
  61747. }
  61748. },
  61749. },
  61750. [
  61751. {
  61752. name: "Normal",
  61753. height: math.unit(1.92, "meters"),
  61754. default: true
  61755. },
  61756. {
  61757. name: "Mini Macro",
  61758. height: math.unit(192, "meters")
  61759. },
  61760. {
  61761. name: "Macro",
  61762. height: math.unit(480, "meters")
  61763. },
  61764. {
  61765. name: "Mega Macro",
  61766. height: math.unit(1440, "meters")
  61767. },
  61768. ]
  61769. ))
  61770. characterMakers.push(() => makeCharacter(
  61771. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61772. {
  61773. front: {
  61774. height: math.unit(6, "feet"),
  61775. weight: math.unit(160, "lbs"),
  61776. preyCapacity: math.unit(0.05, "people"),
  61777. name: "Front",
  61778. image: {
  61779. source: "./media/characters/layla-amari/front.svg",
  61780. extra: 1922/1723,
  61781. bottom: 90/2012
  61782. }
  61783. },
  61784. back: {
  61785. height: math.unit(6, "feet"),
  61786. weight: math.unit(160, "lbs"),
  61787. preyCapacity: math.unit(0.05, "people"),
  61788. name: "Back",
  61789. image: {
  61790. source: "./media/characters/layla-amari/back.svg",
  61791. extra: 1917/1718,
  61792. bottom: 50/1967
  61793. }
  61794. },
  61795. frontDressed: {
  61796. height: math.unit(6, "feet"),
  61797. weight: math.unit(160, "lbs"),
  61798. preyCapacity: math.unit(0.05, "people"),
  61799. name: "Front (Dressed)",
  61800. image: {
  61801. source: "./media/characters/layla-amari/front-dressed.svg",
  61802. extra: 1922/1723,
  61803. bottom: 90/2012
  61804. }
  61805. },
  61806. face: {
  61807. height: math.unit(0.93, "feet"),
  61808. name: "Face",
  61809. image: {
  61810. source: "./media/characters/layla-amari/face.svg"
  61811. }
  61812. },
  61813. hand: {
  61814. height: math.unit(0.66 , "feet"),
  61815. name: "Hand",
  61816. image: {
  61817. source: "./media/characters/layla-amari/hand.svg"
  61818. }
  61819. },
  61820. foot: {
  61821. height: math.unit(1, "feet"),
  61822. name: "Foot",
  61823. image: {
  61824. source: "./media/characters/layla-amari/foot.svg"
  61825. }
  61826. },
  61827. necklace: {
  61828. height: math.unit(0.32, "feet"),
  61829. name: "Necklace",
  61830. image: {
  61831. source: "./media/characters/layla-amari/necklace.svg"
  61832. }
  61833. },
  61834. nipple: {
  61835. height: math.unit(0.2, "feet"),
  61836. name: "Nipple",
  61837. image: {
  61838. source: "./media/characters/layla-amari/nipple.svg"
  61839. }
  61840. },
  61841. slit: {
  61842. height: math.unit(0.26, "feet"),
  61843. name: "Slit",
  61844. image: {
  61845. source: "./media/characters/layla-amari/slit.svg"
  61846. }
  61847. },
  61848. },
  61849. [
  61850. {
  61851. name: "Natural",
  61852. height: math.unit(825, "feet"),
  61853. default: true
  61854. },
  61855. {
  61856. name: "Enhanced",
  61857. height: math.unit(8250, "feet")
  61858. },
  61859. {
  61860. name: "Apparent Size",
  61861. height: math.unit(9.04363e+8, "meters")
  61862. },
  61863. ]
  61864. ))
  61865. characterMakers.push(() => makeCharacter(
  61866. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61867. {
  61868. front: {
  61869. height: math.unit(1.3, "meters"),
  61870. name: "Front",
  61871. image: {
  61872. source: "./media/characters/percy/front.svg",
  61873. extra: 1444/1289,
  61874. bottom: 54/1498
  61875. }
  61876. },
  61877. },
  61878. [
  61879. {
  61880. name: "Normal",
  61881. height: math.unit(1.3, "meters"),
  61882. default: true
  61883. },
  61884. ]
  61885. ))
  61886. characterMakers.push(() => makeCharacter(
  61887. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61888. {
  61889. side: {
  61890. height: math.unit(10, "meters"),
  61891. name: "Side",
  61892. image: {
  61893. source: "./media/characters/grev/side.svg",
  61894. extra: 653/266,
  61895. bottom: 77/730
  61896. }
  61897. },
  61898. head: {
  61899. height: math.unit(16.2, "m"),
  61900. name: "Head",
  61901. image: {
  61902. source: "./media/characters/grev/head.svg"
  61903. }
  61904. },
  61905. dick: {
  61906. height: math.unit(2.8135932034, "m"),
  61907. name: "Dick",
  61908. image: {
  61909. source: "./media/characters/grev/dick.svg"
  61910. }
  61911. },
  61912. },
  61913. [
  61914. {
  61915. name: "Friend-Sized",
  61916. height: math.unit(80, "cm")
  61917. },
  61918. {
  61919. name: "Normal",
  61920. height: math.unit(10, "meters"),
  61921. default: true
  61922. },
  61923. {
  61924. name: "Macro",
  61925. height: math.unit(200, "meters")
  61926. },
  61927. ]
  61928. ))
  61929. characterMakers.push(() => makeCharacter(
  61930. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61931. {
  61932. front: {
  61933. height: math.unit(19.75, "feet"),
  61934. weight: math.unit(20000, "lb"),
  61935. name: "Front",
  61936. image: {
  61937. source: "./media/characters/azuuca/front.svg",
  61938. extra: 1593/1511,
  61939. bottom: 55/1648
  61940. }
  61941. },
  61942. },
  61943. [
  61944. {
  61945. name: "Normal",
  61946. height: math.unit(19.75, "feet"),
  61947. default: true
  61948. },
  61949. ]
  61950. ))
  61951. characterMakers.push(() => makeCharacter(
  61952. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61953. {
  61954. front: {
  61955. height: math.unit(15, "feet"),
  61956. weight: math.unit(1500, "lb"),
  61957. name: "Front",
  61958. image: {
  61959. source: "./media/characters/valuria/front.svg",
  61960. extra: 1588/1486,
  61961. bottom: 31/1619
  61962. }
  61963. },
  61964. },
  61965. [
  61966. {
  61967. name: "Normal",
  61968. height: math.unit(15, "feet"),
  61969. default: true
  61970. },
  61971. {
  61972. name: "Small",
  61973. height: math.unit(500, "feet")
  61974. },
  61975. {
  61976. name: "Macro",
  61977. height: math.unit(4000, "feet")
  61978. },
  61979. {
  61980. name: "Mega Macro",
  61981. height: math.unit(2000, "miles")
  61982. },
  61983. {
  61984. name: "Giga Macro",
  61985. height: math.unit(3e6, "miles")
  61986. },
  61987. ]
  61988. ))
  61989. characterMakers.push(() => makeCharacter(
  61990. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61991. {
  61992. front: {
  61993. height: math.unit(3500, "solarradii"),
  61994. name: "Front",
  61995. image: {
  61996. source: "./media/characters/terigaia/front.svg",
  61997. extra: 1531/1451,
  61998. bottom: 98/1629
  61999. }
  62000. },
  62001. },
  62002. [
  62003. {
  62004. name: "Normal",
  62005. height: math.unit(3500, "solarradii"),
  62006. default: true
  62007. },
  62008. ]
  62009. ))
  62010. characterMakers.push(() => makeCharacter(
  62011. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62012. {
  62013. front: {
  62014. height: math.unit(9.34, "feet"),
  62015. weight: math.unit(600, "lb"),
  62016. name: "Front",
  62017. image: {
  62018. source: "./media/characters/blair-blaziken/front.svg",
  62019. extra: 1557/1462,
  62020. bottom: 55/1612
  62021. }
  62022. },
  62023. },
  62024. [
  62025. {
  62026. name: "Normal",
  62027. height: math.unit(9.34, "feet"),
  62028. default: true
  62029. },
  62030. ]
  62031. ))
  62032. characterMakers.push(() => makeCharacter(
  62033. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62034. {
  62035. pistrogre_front: {
  62036. height: math.unit(10, "feet"),
  62037. weight: math.unit(10, "tons"),
  62038. name: "Front",
  62039. image: {
  62040. source: "./media/characters/braxia/pistrogre-front.svg",
  62041. extra: 1531/1334,
  62042. bottom: 114/1645
  62043. },
  62044. form: "pistrogre",
  62045. default: true
  62046. },
  62047. human_front: {
  62048. height: math.unit(10, "feet"),
  62049. weight: math.unit(10, "tons"),
  62050. name: "Front",
  62051. image: {
  62052. source: "./media/characters/braxia/human-front.svg",
  62053. extra: 1574/1501,
  62054. bottom: 37/1611
  62055. },
  62056. form: "human",
  62057. default: true
  62058. },
  62059. },
  62060. [
  62061. {
  62062. name: "Normal",
  62063. height: math.unit(10, "feet"),
  62064. default: true,
  62065. allForms: true
  62066. },
  62067. {
  62068. name: "Macro",
  62069. height: math.unit(1000, "feet"),
  62070. allForms: true
  62071. },
  62072. {
  62073. name: "Mega Macro",
  62074. height: math.unit(100, "miles"),
  62075. allForms: true
  62076. },
  62077. {
  62078. name: "Cosmic",
  62079. height: math.unit(1000000, "lightyears"),
  62080. allForms: true
  62081. },
  62082. {
  62083. name: "ϐѮԆԬӁꭍϞԢ",
  62084. height: math.unit(1000, "multiverses"),
  62085. allForms: true
  62086. },
  62087. ],
  62088. {
  62089. "pistrogre": {
  62090. name: "Pistrogre",
  62091. default: true
  62092. },
  62093. "human": {
  62094. name: "Human",
  62095. },
  62096. }
  62097. ))
  62098. characterMakers.push(() => makeCharacter(
  62099. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62100. {
  62101. front: {
  62102. height: math.unit(6 + 1/12, "feet"),
  62103. weight: math.unit(280, "lb"),
  62104. name: "Front",
  62105. image: {
  62106. source: "./media/characters/kiriga-yato/front.svg",
  62107. extra: 445/394,
  62108. bottom: 11/456
  62109. }
  62110. },
  62111. },
  62112. [
  62113. {
  62114. name: "Descended",
  62115. height: math.unit(3, "feet")
  62116. },
  62117. {
  62118. name: "Average",
  62119. height: math.unit(6 + 1/12, "feet"),
  62120. default: true
  62121. },
  62122. {
  62123. name: "Ascended",
  62124. height: math.unit(9 + 2/12, "feet")
  62125. },
  62126. ]
  62127. ))
  62128. characterMakers.push(() => makeCharacter(
  62129. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62130. {
  62131. front: {
  62132. height: math.unit(6, "feet"),
  62133. weight: math.unit(150, "lb"),
  62134. name: "Front",
  62135. image: {
  62136. source: "./media/characters/kylie/front.svg",
  62137. extra: 1114/1046,
  62138. bottom: 65/1179
  62139. },
  62140. extraAttributes: {
  62141. "hoofSize": {
  62142. name: "Hoof Size",
  62143. power: 2,
  62144. type: "area",
  62145. base: math.unit(0.034, "m^2")
  62146. },
  62147. "footSize": {
  62148. name: "Foot Size",
  62149. power: 2,
  62150. type: "area",
  62151. base: math.unit(0.75, "m^2")
  62152. },
  62153. }
  62154. },
  62155. side: {
  62156. height: math.unit(6, "feet"),
  62157. weight: math.unit(150, "lb"),
  62158. name: "Side",
  62159. image: {
  62160. source: "./media/characters/kylie/side.svg",
  62161. extra: 1178/1110,
  62162. bottom: 21/1199
  62163. },
  62164. extraAttributes: {
  62165. "hoofSize": {
  62166. name: "Hoof Size",
  62167. power: 2,
  62168. type: "area",
  62169. base: math.unit(0.034, "m^2")
  62170. },
  62171. "footSize": {
  62172. name: "Foot Size",
  62173. power: 2,
  62174. type: "area",
  62175. base: math.unit(0.75, "m^2")
  62176. },
  62177. }
  62178. },
  62179. back: {
  62180. height: math.unit(6, "feet"),
  62181. weight: math.unit(150, "lb"),
  62182. name: "Back",
  62183. image: {
  62184. source: "./media/characters/kylie/back.svg",
  62185. extra: 1115/1047,
  62186. bottom: 66/1181
  62187. },
  62188. extraAttributes: {
  62189. "hoofSize": {
  62190. name: "Hoof Size",
  62191. power: 2,
  62192. type: "area",
  62193. base: math.unit(0.034, "m^2")
  62194. },
  62195. "footSize": {
  62196. name: "Foot Size",
  62197. power: 2,
  62198. type: "area",
  62199. base: math.unit(0.75, "m^2")
  62200. },
  62201. }
  62202. },
  62203. head: {
  62204. height: math.unit(1.85, "feet"),
  62205. name: "Head",
  62206. image: {
  62207. source: "./media/characters/kylie/head.svg"
  62208. }
  62209. },
  62210. },
  62211. [
  62212. {
  62213. name: "Normal",
  62214. height: math.unit(90, "meters"),
  62215. default: true
  62216. },
  62217. ]
  62218. ))
  62219. characterMakers.push(() => makeCharacter(
  62220. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62221. {
  62222. front: {
  62223. height: math.unit(245, "feet"),
  62224. weight: math.unit(400000, "lb"),
  62225. name: "Front",
  62226. image: {
  62227. source: "./media/characters/sabado/front.svg",
  62228. extra: 1309/1164,
  62229. bottom: 29/1338
  62230. }
  62231. },
  62232. },
  62233. [
  62234. {
  62235. name: "Normal",
  62236. height: math.unit(245, "feet"),
  62237. default: true
  62238. },
  62239. ]
  62240. ))
  62241. characterMakers.push(() => makeCharacter(
  62242. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62243. {
  62244. shark_front: {
  62245. height: math.unit(2, "meters"),
  62246. weight: math.unit(200, "kg"),
  62247. name: "Front",
  62248. image: {
  62249. source: "./media/characters/zechal/shark-front.svg",
  62250. extra: 969/925,
  62251. bottom: 74/1043
  62252. },
  62253. form: "shark",
  62254. },
  62255. shark_back: {
  62256. height: math.unit(2, "meters"),
  62257. weight: math.unit(200, "kg"),
  62258. name: "Back",
  62259. image: {
  62260. source: "./media/characters/zechal/shark-back.svg",
  62261. extra: 994/949,
  62262. bottom: 176/1170
  62263. },
  62264. form: "shark",
  62265. },
  62266. shark_frontLewd: {
  62267. height: math.unit(2, "meters"),
  62268. weight: math.unit(200, "kg"),
  62269. name: "Front (Lewd)",
  62270. image: {
  62271. source: "./media/characters/zechal/shark-front-lewd.svg",
  62272. extra: 969/925,
  62273. bottom: 74/1043
  62274. },
  62275. form: "shark",
  62276. },
  62277. shark_side: {
  62278. height: math.unit(1.56, "meters"),
  62279. weight: math.unit(200, "kg"),
  62280. name: "Side",
  62281. image: {
  62282. source: "./media/characters/zechal/shark-side.svg"
  62283. },
  62284. form: "shark",
  62285. },
  62286. dragon_front: {
  62287. height: math.unit(2, "meters"),
  62288. weight: math.unit(200, "kg"),
  62289. name: "Front",
  62290. image: {
  62291. source: "./media/characters/zechal/dragon-front.svg",
  62292. extra: 1041/925,
  62293. bottom: 74/1115
  62294. },
  62295. form: "dragon",
  62296. },
  62297. dragon_back: {
  62298. height: math.unit(2, "meters"),
  62299. weight: math.unit(200, "kg"),
  62300. name: "Back",
  62301. image: {
  62302. source: "./media/characters/zechal/dragon-back.svg",
  62303. extra: 1061/949,
  62304. bottom: 176/1237
  62305. },
  62306. form: "dragon",
  62307. },
  62308. dragon_frontLewd: {
  62309. height: math.unit(2, "meters"),
  62310. weight: math.unit(200, "kg"),
  62311. name: "Front (Lewd)",
  62312. image: {
  62313. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62314. extra: 1041/925,
  62315. bottom: 74/1115
  62316. },
  62317. form: "dragon",
  62318. },
  62319. dragon_side: {
  62320. height: math.unit(1.56, "meters"),
  62321. weight: math.unit(200, "kg"),
  62322. name: "Side",
  62323. image: {
  62324. source: "./media/characters/zechal/dragon-side.svg"
  62325. },
  62326. form: "dragon",
  62327. },
  62328. foot: {
  62329. height: math.unit(0.5, "meters"),
  62330. name: "Foot",
  62331. image: {
  62332. source: "./media/characters/zechal/foot.svg"
  62333. }
  62334. },
  62335. sheathFront: {
  62336. height: math.unit(0.45, "meters"),
  62337. name: "Sheath (Front)",
  62338. image: {
  62339. source: "./media/characters/zechal/sheath-front.svg"
  62340. }
  62341. },
  62342. sheathSide: {
  62343. height: math.unit(0.45, "meters"),
  62344. name: "Sheath (Side)",
  62345. image: {
  62346. source: "./media/characters/zechal/sheath-side.svg"
  62347. }
  62348. },
  62349. },
  62350. [
  62351. {
  62352. name: "Incognito",
  62353. height: math.unit(2, "meters"),
  62354. allForms: true
  62355. },
  62356. {
  62357. name: "Small Rampage",
  62358. height: math.unit(25, "meters"),
  62359. allForms: true
  62360. },
  62361. {
  62362. name: "Home Size",
  62363. height: math.unit(250, "meters"),
  62364. allForms: true,
  62365. default: true
  62366. },
  62367. {
  62368. name: "Macro+",
  62369. height: math.unit(700, "meters"),
  62370. allForms: true
  62371. },
  62372. {
  62373. name: "Small Mega",
  62374. height: math.unit(3, "km"),
  62375. allForms: true
  62376. },
  62377. {
  62378. name: "Mega",
  62379. height: math.unit(15, "km"),
  62380. allForms: true
  62381. },
  62382. {
  62383. name: "Giga",
  62384. height: math.unit(300, "km"),
  62385. allForms: true
  62386. },
  62387. {
  62388. name: "Giga+",
  62389. height: math.unit(1750, "km"),
  62390. allForms: true
  62391. },
  62392. {
  62393. name: "Continental",
  62394. height: math.unit(5000, "km"),
  62395. allForms: true
  62396. },
  62397. {
  62398. name: "Terra",
  62399. height: math.unit(20000, "km"),
  62400. allForms: true
  62401. },
  62402. {
  62403. name: "Terra+",
  62404. height: math.unit(300000, "km"),
  62405. allForms: true
  62406. },
  62407. {
  62408. name: "Solar",
  62409. height: math.unit(40000000, "km"),
  62410. allForms: true
  62411. },
  62412. {
  62413. name: "Galactic",
  62414. height: math.unit(810133, "parsecs"),
  62415. allForms: true
  62416. },
  62417. {
  62418. name: "Universal",
  62419. height: math.unit(25, "universes"),
  62420. allForms: true
  62421. },
  62422. ],
  62423. {
  62424. "shark": {
  62425. name: "Shark",
  62426. default: true
  62427. },
  62428. "dragon": {
  62429. name: "Dragon",
  62430. },
  62431. }
  62432. ))
  62433. characterMakers.push(() => makeCharacter(
  62434. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62435. {
  62436. front: {
  62437. height: math.unit(2.2, "meters"),
  62438. weight: math.unit(150, "kg"),
  62439. name: "Front",
  62440. image: {
  62441. source: "./media/characters/sergis/front.svg",
  62442. extra: 1314/1312,
  62443. bottom: 112/1426
  62444. }
  62445. },
  62446. back: {
  62447. height: math.unit(2.2, "meters"),
  62448. weight: math.unit(150, "kg"),
  62449. name: "Back",
  62450. image: {
  62451. source: "./media/characters/sergis/back.svg",
  62452. extra: 1335/1333,
  62453. bottom: 19/1354
  62454. }
  62455. },
  62456. frontLewd: {
  62457. height: math.unit(2.2, "meters"),
  62458. weight: math.unit(150, "kg"),
  62459. name: "Front (Lewd)",
  62460. image: {
  62461. source: "./media/characters/sergis/front-lewd.svg",
  62462. extra: 1314/1312,
  62463. bottom: 112/1426
  62464. }
  62465. },
  62466. frontDressed: {
  62467. height: math.unit(2.2, "meters"),
  62468. weight: math.unit(150, "kg"),
  62469. name: "Front (Dressed)",
  62470. image: {
  62471. source: "./media/characters/sergis/front-dressed.svg",
  62472. extra: 1330/1328,
  62473. bottom: 95/1425
  62474. }
  62475. },
  62476. frontDressedLewd: {
  62477. height: math.unit(2.2, "meters"),
  62478. weight: math.unit(150, "kg"),
  62479. name: "Front (Dressed, Lewd)",
  62480. image: {
  62481. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62482. extra: 1330/1328,
  62483. bottom: 95/1425
  62484. }
  62485. },
  62486. maw: {
  62487. height: math.unit(0.48, "meters"),
  62488. name: "Maw",
  62489. image: {
  62490. source: "./media/characters/sergis/maw.svg"
  62491. }
  62492. },
  62493. sheath: {
  62494. height: math.unit(0.38, "meters"),
  62495. name: "Sheath",
  62496. image: {
  62497. source: "./media/characters/sergis/sheath.svg"
  62498. }
  62499. },
  62500. },
  62501. [
  62502. {
  62503. name: "Incognito Size",
  62504. height: math.unit(2.2, "meters")
  62505. },
  62506. {
  62507. name: "Small Macro",
  62508. height: math.unit(40, "meters")
  62509. },
  62510. {
  62511. name: "Macro",
  62512. height: math.unit(150, "meters")
  62513. },
  62514. {
  62515. name: "Macro+",
  62516. height: math.unit(300, "meters")
  62517. },
  62518. {
  62519. name: "Mega",
  62520. height: math.unit(2.5, "km")
  62521. },
  62522. {
  62523. name: "Mega+",
  62524. height: math.unit(30, "km")
  62525. },
  62526. {
  62527. name: "Home Size",
  62528. height: math.unit(300, "km"),
  62529. default: true
  62530. },
  62531. {
  62532. name: "Giga+",
  62533. height: math.unit(1000, "km")
  62534. },
  62535. {
  62536. name: "Giga++",
  62537. height: math.unit(6000, "km")
  62538. },
  62539. {
  62540. name: "Terra",
  62541. height: math.unit(70000, "km")
  62542. },
  62543. {
  62544. name: "Terra+",
  62545. height: math.unit(200000, "km")
  62546. },
  62547. {
  62548. name: "Galactic",
  62549. height: math.unit(634200, "lightyears")
  62550. },
  62551. ]
  62552. ))
  62553. characterMakers.push(() => makeCharacter(
  62554. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62555. {
  62556. standard: {
  62557. height: math.unit(1 + 5/12, "feet"),
  62558. name: "Standard",
  62559. image: {
  62560. source: "./media/characters/spade/standard.svg",
  62561. extra: 1794/1703,
  62562. bottom: 115/1909
  62563. }
  62564. },
  62565. disguised: {
  62566. height: math.unit(1 + 5/12, "feet"),
  62567. name: "Disguised",
  62568. image: {
  62569. source: "./media/characters/spade/disguised.svg",
  62570. extra: 1794/1700,
  62571. bottom: 98/1892
  62572. }
  62573. },
  62574. },
  62575. [
  62576. {
  62577. name: "Normal",
  62578. height: math.unit(1 + 5/12, "feet"),
  62579. default: true
  62580. },
  62581. ]
  62582. ))
  62583. characterMakers.push(() => makeCharacter(
  62584. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62585. {
  62586. frontNsfw: {
  62587. height: math.unit(5, "meters"),
  62588. weight: math.unit(2000, "kg"),
  62589. preyCapacity: math.unit(5, "people"),
  62590. name: "Front (NSFW)",
  62591. image: {
  62592. source: "./media/characters/zeanlain/front-nsfw.svg",
  62593. extra: 1087/938,
  62594. bottom: 93/1180
  62595. },
  62596. extraAttributes: {
  62597. "wingspan": {
  62598. name: "Wingspan",
  62599. power: 1,
  62600. type: "length",
  62601. base: math.unit(10, "meters")
  62602. },
  62603. "footSize": {
  62604. name: "Foot Size",
  62605. power: 1,
  62606. type: "length",
  62607. base: math.unit(0.68, "meters")
  62608. },
  62609. "cockLength": {
  62610. name: "Cock Length",
  62611. power: 1,
  62612. type: "length",
  62613. base: math.unit(1.69, "meters")
  62614. },
  62615. "ballVolume": {
  62616. name: "Ball Volume",
  62617. power: 3,
  62618. type: "volume",
  62619. base: math.unit(0.028, "m^3")
  62620. },
  62621. }
  62622. },
  62623. front: {
  62624. height: math.unit(5, "meters"),
  62625. weight: math.unit(2000, "kg"),
  62626. preyCapacity: math.unit(3, "people"),
  62627. name: "Front",
  62628. image: {
  62629. source: "./media/characters/zeanlain/front.svg",
  62630. extra: 1087/938,
  62631. bottom: 93/1180
  62632. },
  62633. extraAttributes: {
  62634. "wingspan": {
  62635. name: "Wingspan",
  62636. power: 1,
  62637. type: "length",
  62638. base: math.unit(10, "meters")
  62639. },
  62640. "footSize": {
  62641. name: "Foot Size",
  62642. power: 1,
  62643. type: "length",
  62644. base: math.unit(0.68, "meters")
  62645. },
  62646. }
  62647. },
  62648. },
  62649. [
  62650. {
  62651. name: "Normal",
  62652. height: math.unit(5, "meters"),
  62653. default: true
  62654. },
  62655. ]
  62656. ))
  62657. characterMakers.push(() => makeCharacter(
  62658. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62659. {
  62660. front: {
  62661. height: math.unit(10, "meters"),
  62662. weight: math.unit(250000, "kg"),
  62663. name: "Front",
  62664. image: {
  62665. source: "./media/characters/airamis/front.svg",
  62666. extra: 865/835,
  62667. bottom: 13/878
  62668. }
  62669. },
  62670. },
  62671. [
  62672. {
  62673. name: "Normal",
  62674. height: math.unit(10, "meters"),
  62675. default: true
  62676. },
  62677. ]
  62678. ))
  62679. characterMakers.push(() => makeCharacter(
  62680. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62681. {
  62682. front: {
  62683. height: math.unit(3 + 3/12, "feet"),
  62684. weight: math.unit(75, "lb"),
  62685. name: "Front",
  62686. image: {
  62687. source: "./media/characters/corra-tourmaline/front.svg",
  62688. extra: 1037/864,
  62689. bottom: 39/1076
  62690. }
  62691. },
  62692. back: {
  62693. height: math.unit(3 + 3/12, "feet"),
  62694. weight: math.unit(75, "lb"),
  62695. name: "Back",
  62696. image: {
  62697. source: "./media/characters/corra-tourmaline/back.svg",
  62698. extra: 1022/849,
  62699. bottom: 26/1048
  62700. }
  62701. },
  62702. dressed: {
  62703. height: math.unit(3 + 3/12, "feet"),
  62704. weight: math.unit(75, "lb"),
  62705. name: "Dressed",
  62706. image: {
  62707. source: "./media/characters/corra-tourmaline/dressed.svg",
  62708. extra: 1037/864,
  62709. bottom: 39/1076
  62710. }
  62711. },
  62712. beans: {
  62713. height: math.unit(0.37, "feet"),
  62714. name: "Beans",
  62715. image: {
  62716. source: "./media/characters/corra-tourmaline/beans.svg"
  62717. }
  62718. },
  62719. },
  62720. [
  62721. {
  62722. name: "Normal",
  62723. height: math.unit(3 + 3/12, "feet"),
  62724. default: true
  62725. },
  62726. {
  62727. name: "Macro",
  62728. height: math.unit(32, "feet")
  62729. },
  62730. ]
  62731. ))
  62732. characterMakers.push(() => makeCharacter(
  62733. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62734. {
  62735. front: {
  62736. height: math.unit(6 + 2/12, "feet"),
  62737. weight: math.unit(203, "lb"),
  62738. name: "Front",
  62739. image: {
  62740. source: "./media/characters/maki-kawa/front.svg",
  62741. extra: 950/890,
  62742. bottom: 62/1012
  62743. }
  62744. },
  62745. back: {
  62746. height: math.unit(6 + 2/12, "feet"),
  62747. weight: math.unit(203, "lb"),
  62748. name: "Back",
  62749. image: {
  62750. source: "./media/characters/maki-kawa/back.svg",
  62751. extra: 953/878,
  62752. bottom: 49/1002
  62753. }
  62754. },
  62755. frontBarista: {
  62756. height: math.unit(6 + 2/12, "feet"),
  62757. weight: math.unit(203, "lb"),
  62758. name: "Front (Barista)",
  62759. image: {
  62760. source: "./media/characters/maki-kawa/front-barista.svg",
  62761. extra: 943/883,
  62762. bottom: 69/1012
  62763. }
  62764. },
  62765. backBarista: {
  62766. height: math.unit(6 + 2/12, "feet"),
  62767. weight: math.unit(203, "lb"),
  62768. name: "Back (Barista)",
  62769. image: {
  62770. source: "./media/characters/maki-kawa/back-barista.svg",
  62771. extra: 953/878,
  62772. bottom: 49/1002
  62773. }
  62774. },
  62775. frontWrestler: {
  62776. height: math.unit(6 + 2/12, "feet"),
  62777. weight: math.unit(203, "lb"),
  62778. name: "Front (Wrestler)",
  62779. image: {
  62780. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62781. extra: 950/890,
  62782. bottom: 62/1012
  62783. }
  62784. },
  62785. backWrestler: {
  62786. height: math.unit(6 + 2/12, "feet"),
  62787. weight: math.unit(203, "lb"),
  62788. name: "Back (Wrestler)",
  62789. image: {
  62790. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62791. extra: 953/878,
  62792. bottom: 49/1002
  62793. }
  62794. },
  62795. headFront: {
  62796. height: math.unit(1.64, "feet"),
  62797. name: "Head (Front)",
  62798. image: {
  62799. source: "./media/characters/maki-kawa/head-front.svg"
  62800. }
  62801. },
  62802. headSide: {
  62803. height: math.unit(1.59, "feet"),
  62804. name: "Head (Side)",
  62805. image: {
  62806. source: "./media/characters/maki-kawa/head-side.svg"
  62807. }
  62808. },
  62809. paw: {
  62810. height: math.unit(0.9, "feet"),
  62811. name: "Paw",
  62812. image: {
  62813. source: "./media/characters/maki-kawa/paw.svg"
  62814. }
  62815. },
  62816. },
  62817. [
  62818. {
  62819. name: "Normal",
  62820. height: math.unit(6 + 2/12, "feet"),
  62821. default: true
  62822. },
  62823. {
  62824. name: "Macro",
  62825. height: math.unit(617, "feet")
  62826. },
  62827. ]
  62828. ))
  62829. characterMakers.push(() => makeCharacter(
  62830. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62831. {
  62832. front: {
  62833. height: math.unit(10, "feet"),
  62834. weight: math.unit(1500, "lb"),
  62835. name: "Front",
  62836. image: {
  62837. source: "./media/characters/lennox/front.svg",
  62838. extra: 1623/1496,
  62839. bottom: 18/1641
  62840. }
  62841. },
  62842. back: {
  62843. height: math.unit(10, "feet"),
  62844. weight: math.unit(1500, "lb"),
  62845. name: "Back",
  62846. image: {
  62847. source: "./media/characters/lennox/back.svg",
  62848. extra: 1641/1481,
  62849. bottom: 13/1654
  62850. }
  62851. },
  62852. maw: {
  62853. height: math.unit(2.94, "feet"),
  62854. name: "Maw",
  62855. image: {
  62856. source: "./media/characters/lennox/maw.svg"
  62857. }
  62858. },
  62859. },
  62860. [
  62861. {
  62862. name: "Micro",
  62863. height: math.unit(1, "inch")
  62864. },
  62865. {
  62866. name: "Normal",
  62867. height: math.unit(10, "feet"),
  62868. default: true
  62869. },
  62870. {
  62871. name: "Macro",
  62872. height: math.unit(200, "feet")
  62873. },
  62874. ]
  62875. ))
  62876. characterMakers.push(() => makeCharacter(
  62877. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62878. {
  62879. frontDressed: {
  62880. height: math.unit(15 + 7/12, "feet"),
  62881. weight: math.unit(5000, "lb"),
  62882. name: "Front (Dressed)",
  62883. image: {
  62884. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62885. extra: 1136/1023,
  62886. bottom: 51/1187
  62887. }
  62888. },
  62889. backDressed: {
  62890. height: math.unit(15 + 7/12, "feet"),
  62891. weight: math.unit(5000, "lb"),
  62892. name: "Back (Dressed)",
  62893. image: {
  62894. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62895. extra: 2359/2143,
  62896. bottom: 103/2462
  62897. }
  62898. },
  62899. front: {
  62900. height: math.unit(15 + 7/12, "feet"),
  62901. weight: math.unit(5000, "lb"),
  62902. name: "Front",
  62903. image: {
  62904. source: "./media/characters/vyse-iron-thunder/front.svg",
  62905. extra: 1136/1023,
  62906. bottom: 51/1187
  62907. }
  62908. },
  62909. hand: {
  62910. height: math.unit(2.36, "feet"),
  62911. name: "Hand",
  62912. image: {
  62913. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62914. }
  62915. },
  62916. foot: {
  62917. height: math.unit(1.72, "feet"),
  62918. name: "Foot",
  62919. image: {
  62920. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62921. }
  62922. },
  62923. mouth: {
  62924. height: math.unit(2, "feet"),
  62925. name: "Mouth",
  62926. image: {
  62927. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62928. }
  62929. },
  62930. eye: {
  62931. height: math.unit(0.58, "feet"),
  62932. name: "Eye",
  62933. image: {
  62934. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62935. }
  62936. },
  62937. },
  62938. [
  62939. {
  62940. name: "Normal",
  62941. height: math.unit(15 + 7/12, "feet"),
  62942. default: true
  62943. },
  62944. {
  62945. name: "Macro",
  62946. height: math.unit(157, "feet")
  62947. },
  62948. {
  62949. name: "Macro+",
  62950. height: math.unit(1570, "feet")
  62951. },
  62952. {
  62953. name: "Macro++",
  62954. height: math.unit(15700, "feet")
  62955. },
  62956. {
  62957. name: "Macro+++",
  62958. height: math.unit(157000, "feet")
  62959. },
  62960. {
  62961. name: "Macro++++",
  62962. height: math.unit(1570000, "feet")
  62963. },
  62964. ]
  62965. ))
  62966. characterMakers.push(() => makeCharacter(
  62967. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62968. {
  62969. side: {
  62970. height: math.unit(6, "feet"),
  62971. weight: math.unit(115, "lb"),
  62972. name: "Side",
  62973. image: {
  62974. source: "./media/characters/moonbeam/side.svg",
  62975. extra: 839/485,
  62976. bottom: 60/899
  62977. }
  62978. },
  62979. },
  62980. [
  62981. {
  62982. name: "Normal",
  62983. height: math.unit(6, "feet"),
  62984. default: true
  62985. },
  62986. ]
  62987. ))
  62988. characterMakers.push(() => makeCharacter(
  62989. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62990. {
  62991. front: {
  62992. height: math.unit(3500, "miles"),
  62993. weight: math.unit(1659, "petatonnes"),
  62994. name: "Front",
  62995. image: {
  62996. source: "./media/characters/baltica/front.svg",
  62997. extra: 429/428,
  62998. bottom: 41/470
  62999. }
  63000. },
  63001. back: {
  63002. height: math.unit(3500, "miles"),
  63003. weight: math.unit(1659, "petatonnes"),
  63004. name: "Back",
  63005. image: {
  63006. source: "./media/characters/baltica/back.svg",
  63007. extra: 452/451,
  63008. bottom: 8/460
  63009. }
  63010. },
  63011. },
  63012. [
  63013. {
  63014. name: "Gigamacro",
  63015. height: math.unit(3500, "miles"),
  63016. default: true
  63017. },
  63018. ]
  63019. ))
  63020. characterMakers.push(() => makeCharacter(
  63021. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63022. {
  63023. front: {
  63024. height: math.unit(6 + 10/12, "feet"),
  63025. weight: math.unit(200, "lb"),
  63026. name: "Front",
  63027. image: {
  63028. source: "./media/characters/shadow-wolf/front.svg",
  63029. extra: 1931/1760,
  63030. bottom: 88/2019
  63031. }
  63032. },
  63033. },
  63034. [
  63035. {
  63036. name: "Normal",
  63037. height: math.unit(6 + 10/12, "feet"),
  63038. default: true
  63039. },
  63040. ]
  63041. ))
  63042. characterMakers.push(() => makeCharacter(
  63043. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63044. {
  63045. front: {
  63046. height: math.unit(5 + 10/12, "feet"),
  63047. name: "Front",
  63048. image: {
  63049. source: "./media/characters/quincy-praying-mantis/front.svg",
  63050. extra: 1055/891,
  63051. bottom: 92/1147
  63052. }
  63053. },
  63054. soles: {
  63055. height: math.unit(0.85, "feet"),
  63056. name: "Soles",
  63057. image: {
  63058. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63059. extra: 429/324,
  63060. bottom: 89/518
  63061. },
  63062. extraAttributes: {
  63063. "shoeSize": {
  63064. name: "Shoe Size",
  63065. power: 1,
  63066. type: "length",
  63067. base: math.unit(23, "ShoeSizeMensUS"),
  63068. defaultUnit: "ShoeSizeMensUS"
  63069. },
  63070. }
  63071. },
  63072. foot: {
  63073. height: math.unit(0.72, "feet"),
  63074. name: "Foot",
  63075. image: {
  63076. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63077. extra: 349/349,
  63078. bottom: 76/425
  63079. }
  63080. },
  63081. },
  63082. [
  63083. {
  63084. name: "Normal",
  63085. height: math.unit(5 + 10/12, "feet"),
  63086. default: true
  63087. },
  63088. ]
  63089. ))
  63090. characterMakers.push(() => makeCharacter(
  63091. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63092. {
  63093. front: {
  63094. height: math.unit(6, "feet"),
  63095. name: "Front",
  63096. image: {
  63097. source: "./media/characters/christopher-redwood/front.svg",
  63098. extra: 1402/1341,
  63099. bottom: 23/1425
  63100. }
  63101. },
  63102. back: {
  63103. height: math.unit(6, "feet"),
  63104. name: "Back",
  63105. image: {
  63106. source: "./media/characters/christopher-redwood/back.svg",
  63107. extra: 1406/1345,
  63108. bottom: 36/1442
  63109. }
  63110. },
  63111. head: {
  63112. height: math.unit(1.685, "feet"),
  63113. name: "Head",
  63114. image: {
  63115. source: "./media/characters/christopher-redwood/head.svg"
  63116. }
  63117. },
  63118. },
  63119. [
  63120. {
  63121. name: "Normal",
  63122. height: math.unit(6, "feet"),
  63123. default: true
  63124. },
  63125. ]
  63126. ))
  63127. characterMakers.push(() => makeCharacter(
  63128. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63129. {
  63130. front: {
  63131. height: math.unit(1.9, "meters"),
  63132. weight: math.unit(140, "lb"),
  63133. name: "Front",
  63134. image: {
  63135. source: "./media/characters/kara-fox/front.svg",
  63136. extra: 766/711,
  63137. bottom: 41/807
  63138. }
  63139. },
  63140. back: {
  63141. height: math.unit(1.9, "meters"),
  63142. weight: math.unit(140, "lb"),
  63143. name: "Back",
  63144. image: {
  63145. source: "./media/characters/kara-fox/back.svg",
  63146. extra: 766/596,
  63147. bottom: 29/795
  63148. }
  63149. },
  63150. maw: {
  63151. height: math.unit(0.78, "feet"),
  63152. name: "Maw",
  63153. image: {
  63154. source: "./media/characters/kara-fox/maw.svg"
  63155. }
  63156. },
  63157. pawpads: {
  63158. height: math.unit(0.96, "feet"),
  63159. name: "Pawpads",
  63160. image: {
  63161. source: "./media/characters/kara-fox/pawpads.svg"
  63162. }
  63163. },
  63164. },
  63165. [
  63166. {
  63167. name: "Normal",
  63168. height: math.unit(1.9, "meters"),
  63169. default: true
  63170. },
  63171. {
  63172. name: "Giantess",
  63173. height: math.unit(80, "meters")
  63174. },
  63175. ]
  63176. ))
  63177. characterMakers.push(() => makeCharacter(
  63178. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63179. {
  63180. front: {
  63181. height: math.unit(12, "feet"),
  63182. name: "Front",
  63183. image: {
  63184. source: "./media/characters/naomi-espeon/front.svg",
  63185. extra: 892/797,
  63186. bottom: 5/897
  63187. }
  63188. },
  63189. back: {
  63190. height: math.unit(12, "feet"),
  63191. name: "Back",
  63192. image: {
  63193. source: "./media/characters/naomi-espeon/back.svg",
  63194. extra: 890/785,
  63195. bottom: 12/902
  63196. }
  63197. },
  63198. },
  63199. [
  63200. {
  63201. name: "Normal",
  63202. height: math.unit(12, "feet"),
  63203. default: true
  63204. },
  63205. ]
  63206. ))
  63207. characterMakers.push(() => makeCharacter(
  63208. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63209. {
  63210. anthro_front: {
  63211. height: math.unit(8, "feet"),
  63212. weight: math.unit(625, "lb"),
  63213. name: "Front",
  63214. image: {
  63215. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63216. extra: 638/574,
  63217. bottom: 73/711
  63218. },
  63219. form: "anthro",
  63220. default: true
  63221. },
  63222. anthro_back: {
  63223. height: math.unit(8, "feet"),
  63224. weight: math.unit(625, "lb"),
  63225. name: "Back",
  63226. image: {
  63227. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63228. extra: 674/614,
  63229. bottom: 7/681
  63230. },
  63231. form: "anthro",
  63232. },
  63233. taur_side: {
  63234. height: math.unit(16, "feet"),
  63235. weight: math.unit(4.5, "tons"),
  63236. name: "Side",
  63237. image: {
  63238. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63239. extra: 704/646,
  63240. bottom: 132/836
  63241. },
  63242. form: "taur",
  63243. default: true
  63244. },
  63245. },
  63246. [
  63247. {
  63248. name: "Normal",
  63249. height: math.unit(8, "feet"),
  63250. default: true,
  63251. form: "anthro"
  63252. },
  63253. {
  63254. name: "Normal",
  63255. height: math.unit(16, "feet"),
  63256. default: true,
  63257. form: "taur"
  63258. },
  63259. ],
  63260. {
  63261. "anthro": {
  63262. name: "Anthro",
  63263. default: true
  63264. },
  63265. "taur": {
  63266. name: "Taur",
  63267. },
  63268. }
  63269. ))
  63270. characterMakers.push(() => makeCharacter(
  63271. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63272. {
  63273. front: {
  63274. height: math.unit(190, "cm"),
  63275. weight: math.unit(110, "kg"),
  63276. name: "Front",
  63277. image: {
  63278. source: "./media/characters/amelie/front.svg",
  63279. extra: 530/442,
  63280. bottom: 35/565
  63281. }
  63282. },
  63283. },
  63284. [
  63285. {
  63286. name: "Normal",
  63287. height: math.unit(190, "cm"),
  63288. default: true
  63289. },
  63290. ]
  63291. ))
  63292. characterMakers.push(() => makeCharacter(
  63293. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63294. {
  63295. front: {
  63296. height: math.unit(21, "feet"),
  63297. weight: math.unit(30000, "lb"),
  63298. name: "Front",
  63299. image: {
  63300. source: "./media/characters/valence/front.svg",
  63301. extra: 1430/1306,
  63302. bottom: 51/1481
  63303. }
  63304. },
  63305. },
  63306. [
  63307. {
  63308. name: "Normal",
  63309. height: math.unit(21, "feet"),
  63310. default: true
  63311. },
  63312. ]
  63313. ))
  63314. characterMakers.push(() => makeCharacter(
  63315. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63316. {
  63317. front: {
  63318. height: math.unit(5 + 9/12, "feet"),
  63319. weight: math.unit(170, "lb"),
  63320. name: "Front",
  63321. image: {
  63322. source: "./media/characters/aurora-adkins/front.svg",
  63323. extra: 1141/1089,
  63324. bottom: 41/1182
  63325. }
  63326. },
  63327. },
  63328. [
  63329. {
  63330. name: "Tiny",
  63331. height: math.unit(7, "mm")
  63332. },
  63333. {
  63334. name: "Small",
  63335. height: math.unit(3.4, "inches")
  63336. },
  63337. {
  63338. name: "Normal",
  63339. height: math.unit(5 + 9/12, "feet"),
  63340. default: true
  63341. },
  63342. {
  63343. name: "Big",
  63344. height: math.unit(31, "feet")
  63345. },
  63346. {
  63347. name: "Giant",
  63348. height: math.unit(300, "feet")
  63349. },
  63350. ]
  63351. ))
  63352. characterMakers.push(() => makeCharacter(
  63353. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63354. {
  63355. front: {
  63356. height: math.unit(5 + 6/12, "feet"),
  63357. weight: math.unit(210, "lb"),
  63358. name: "Front",
  63359. image: {
  63360. source: "./media/characters/cyber/front.svg",
  63361. extra: 1968/1798,
  63362. bottom: 10/1978
  63363. },
  63364. extraAttributes: {
  63365. "shoeSize": {
  63366. name: "Shoe Size",
  63367. power: 1,
  63368. type: "length",
  63369. base: math.unit(30, "ShoeSizeMensUS")
  63370. },
  63371. }
  63372. },
  63373. },
  63374. [
  63375. {
  63376. name: "Normal",
  63377. height: math.unit(5 + 6/12, "feet"),
  63378. default: true
  63379. },
  63380. ]
  63381. ))
  63382. characterMakers.push(() => makeCharacter(
  63383. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63384. {
  63385. front: {
  63386. height: math.unit(6 + 6/12, "feet"),
  63387. weight: math.unit(140, "lb"),
  63388. name: "Front",
  63389. image: {
  63390. source: "./media/characters/sapphire-wairimea/front.svg",
  63391. extra: 475/458,
  63392. bottom: 14/489
  63393. }
  63394. },
  63395. },
  63396. [
  63397. {
  63398. name: "Normal",
  63399. height: math.unit(6 + 6/12, "feet")
  63400. },
  63401. {
  63402. name: "Macro",
  63403. height: math.unit(132, "feet"),
  63404. default: true
  63405. },
  63406. ]
  63407. ))
  63408. characterMakers.push(() => makeCharacter(
  63409. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63410. {
  63411. front: {
  63412. height: math.unit(1.6, "meters"),
  63413. weight: math.unit(100, "lb"),
  63414. name: "Front",
  63415. image: {
  63416. source: "./media/characters/cirkazi/front.svg",
  63417. extra: 489/477,
  63418. bottom: 0/489
  63419. }
  63420. },
  63421. },
  63422. [
  63423. {
  63424. name: "Normal",
  63425. height: math.unit(1.6, "meters")
  63426. },
  63427. {
  63428. name: "Macro",
  63429. height: math.unit(800, "feet"),
  63430. default: true
  63431. },
  63432. ]
  63433. ))
  63434. characterMakers.push(() => makeCharacter(
  63435. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63436. {
  63437. front: {
  63438. height: math.unit(5 + 10/12, "feet"),
  63439. weight: math.unit(145, "lb"),
  63440. name: "Front",
  63441. image: {
  63442. source: "./media/characters/corrin-cavelli/front.svg",
  63443. extra: 483/464,
  63444. bottom: 6/489
  63445. }
  63446. },
  63447. },
  63448. [
  63449. {
  63450. name: "Human",
  63451. height: math.unit(5 + 10/12, "feet")
  63452. },
  63453. {
  63454. name: "Giant",
  63455. height: math.unit(210, "feet"),
  63456. default: true
  63457. },
  63458. ]
  63459. ))
  63460. characterMakers.push(() => makeCharacter(
  63461. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63462. {
  63463. back: {
  63464. height: math.unit(5 + 6/12, "feet"),
  63465. weight: math.unit(115, "lb"),
  63466. name: "Back",
  63467. image: {
  63468. source: "./media/characters/lori-lopez/back.svg",
  63469. extra: 483/474,
  63470. bottom: 6/489
  63471. }
  63472. },
  63473. },
  63474. [
  63475. {
  63476. name: "Human",
  63477. height: math.unit(5 + 6/12, "feet")
  63478. },
  63479. {
  63480. name: "Macro",
  63481. height: math.unit(198, "feet"),
  63482. default: true
  63483. },
  63484. ]
  63485. ))
  63486. characterMakers.push(() => makeCharacter(
  63487. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63488. {
  63489. front: {
  63490. height: math.unit(6, "feet"),
  63491. weight: math.unit(220, "lb"),
  63492. name: "Front",
  63493. image: {
  63494. source: "./media/characters/sylvia-beauregard/front.svg",
  63495. extra: 483/479,
  63496. bottom: 6/489
  63497. }
  63498. },
  63499. },
  63500. [
  63501. {
  63502. name: "Macro",
  63503. height: math.unit(2071, "feet"),
  63504. default: true
  63505. },
  63506. ]
  63507. ))
  63508. characterMakers.push(() => makeCharacter(
  63509. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63510. {
  63511. back: {
  63512. height: math.unit(5 + 6/12, "feet"),
  63513. weight: math.unit(160, "lb"),
  63514. name: "Back",
  63515. image: {
  63516. source: "./media/characters/akiko-takahashi/back.svg",
  63517. extra: 459/454,
  63518. bottom: 27/486
  63519. }
  63520. },
  63521. },
  63522. [
  63523. {
  63524. name: "Human",
  63525. height: math.unit(5 + 6/12, "feet")
  63526. },
  63527. {
  63528. name: "Macro",
  63529. height: math.unit(198, "feet"),
  63530. default: true
  63531. },
  63532. {
  63533. name: "Megamacro",
  63534. height: math.unit(7128, "feet")
  63535. },
  63536. ]
  63537. ))
  63538. characterMakers.push(() => makeCharacter(
  63539. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63540. {
  63541. front: {
  63542. height: math.unit(6, "feet"),
  63543. weight: math.unit(140, "lb"),
  63544. name: "Front",
  63545. image: {
  63546. source: "./media/characters/velvet-garza/front.svg",
  63547. extra: 480/462,
  63548. bottom: 7/487
  63549. }
  63550. },
  63551. },
  63552. [
  63553. {
  63554. name: "Macro",
  63555. height: math.unit(37, "feet"),
  63556. default: true
  63557. },
  63558. ]
  63559. ))
  63560. characterMakers.push(() => makeCharacter(
  63561. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63562. {
  63563. front: {
  63564. height: math.unit(7 + 6/12, "feet"),
  63565. weight: math.unit(400, "lb"),
  63566. name: "Front",
  63567. image: {
  63568. source: "./media/characters/gaia/front.svg",
  63569. extra: 474/463,
  63570. bottom: 13/487
  63571. }
  63572. },
  63573. },
  63574. [
  63575. {
  63576. name: "MiniMacro",
  63577. height: math.unit(7 + 6/12, "feet")
  63578. },
  63579. {
  63580. name: "GigaMacro",
  63581. height: math.unit(14500, "feet"),
  63582. default: true
  63583. },
  63584. ]
  63585. ))
  63586. characterMakers.push(() => makeCharacter(
  63587. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63588. {
  63589. front: {
  63590. height: math.unit(6, "feet"),
  63591. weight: math.unit(150, "lb"),
  63592. name: "Front",
  63593. image: {
  63594. source: "./media/characters/tim/front.svg",
  63595. extra: 1878/1743,
  63596. bottom: 9/1887
  63597. }
  63598. },
  63599. frontDressed: {
  63600. height: math.unit(6, "feet"),
  63601. weight: math.unit(150, "lb"),
  63602. name: "Front (Dressed)",
  63603. image: {
  63604. source: "./media/characters/tim/front-dressed.svg",
  63605. extra: 1765/1485,
  63606. bottom: 48/1813
  63607. }
  63608. },
  63609. backDressed: {
  63610. height: math.unit(6, "feet"),
  63611. weight: math.unit(150, "lb"),
  63612. name: "Back (Dressed)",
  63613. image: {
  63614. source: "./media/characters/tim/back-dressed.svg",
  63615. extra: 1750/1465,
  63616. bottom: 25/1775
  63617. }
  63618. },
  63619. dick: {
  63620. height: math.unit(1.5, "feet"),
  63621. weight: math.unit(6, "lb"),
  63622. name: "Dick",
  63623. image: {
  63624. source: "./media/characters/tim/dick.svg"
  63625. }
  63626. },
  63627. hand: {
  63628. height: math.unit(0.522, "feet"),
  63629. name: "Hand",
  63630. image: {
  63631. source: "./media/characters/tim/hand.svg"
  63632. }
  63633. },
  63634. palm: {
  63635. height: math.unit(0.48, "feet"),
  63636. name: "Palm",
  63637. image: {
  63638. source: "./media/characters/tim/palm.svg"
  63639. }
  63640. },
  63641. paw: {
  63642. height: math.unit(0.9, "feet"),
  63643. name: "Paw",
  63644. image: {
  63645. source: "./media/characters/tim/paw.svg"
  63646. }
  63647. },
  63648. sole: {
  63649. height: math.unit(0.88, "feet"),
  63650. name: "Sole",
  63651. image: {
  63652. source: "./media/characters/tim/sole.svg"
  63653. }
  63654. },
  63655. },
  63656. [
  63657. {
  63658. name: "Macro",
  63659. height: math.unit(1000, "feet")
  63660. },
  63661. {
  63662. name: "Megamacro",
  63663. height: math.unit(10000, "feet"),
  63664. default: true
  63665. },
  63666. {
  63667. name: "Megamacro+",
  63668. height: math.unit(50000, "feet")
  63669. },
  63670. {
  63671. name: "Gigamacro",
  63672. height: math.unit(150000, "km")
  63673. },
  63674. ]
  63675. ))
  63676. characterMakers.push(() => makeCharacter(
  63677. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63678. {
  63679. front: {
  63680. height: math.unit(5 + 8/12, "feet"),
  63681. weight: math.unit(170, "lb"),
  63682. name: "Front",
  63683. image: {
  63684. source: "./media/characters/abel-delreoux/front.svg",
  63685. extra: 1615/1500,
  63686. bottom: 82/1697
  63687. }
  63688. },
  63689. back: {
  63690. height: math.unit(5 + 8/12, "feet"),
  63691. weight: math.unit(170, "lb"),
  63692. name: "Back",
  63693. image: {
  63694. source: "./media/characters/abel-delreoux/back.svg",
  63695. extra: 1644/1534,
  63696. bottom: 24/1668
  63697. }
  63698. },
  63699. casual: {
  63700. height: math.unit(5 + 8/12, "feet"),
  63701. weight: math.unit(170, "lb"),
  63702. name: "Casual",
  63703. image: {
  63704. source: "./media/characters/abel-delreoux/casual.svg",
  63705. extra: 1716/1598,
  63706. bottom: 29/1745
  63707. }
  63708. },
  63709. sleepy: {
  63710. height: math.unit(5 + 8/12, "feet"),
  63711. weight: math.unit(170, "lb"),
  63712. name: "Sleepy",
  63713. image: {
  63714. source: "./media/characters/abel-delreoux/sleepy.svg",
  63715. extra: 1649/1573,
  63716. bottom: 22/1671
  63717. }
  63718. },
  63719. fem: {
  63720. height: math.unit(5 + 8/12, "feet"),
  63721. weight: math.unit(170, "lb"),
  63722. name: "Fem",
  63723. image: {
  63724. source: "./media/characters/abel-delreoux/fem.svg",
  63725. extra: 1680/1564,
  63726. bottom: 17/1697
  63727. }
  63728. },
  63729. hand: {
  63730. height: math.unit(0.78, "feet"),
  63731. name: "Hand",
  63732. image: {
  63733. source: "./media/characters/abel-delreoux/hand.svg"
  63734. }
  63735. },
  63736. paw: {
  63737. height: math.unit(0.78, "feet"),
  63738. name: "Paw",
  63739. image: {
  63740. source: "./media/characters/abel-delreoux/paw.svg"
  63741. }
  63742. },
  63743. },
  63744. [
  63745. {
  63746. name: "Normal",
  63747. height: math.unit(5 + 8/12, "feet"),
  63748. default: true
  63749. },
  63750. ]
  63751. ))
  63752. characterMakers.push(() => makeCharacter(
  63753. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63754. {
  63755. front: {
  63756. height: math.unit(6, "feet"),
  63757. weight: math.unit(159, "lb"),
  63758. name: "Front",
  63759. image: {
  63760. source: "./media/characters/meus/front.svg",
  63761. extra: 938/843,
  63762. bottom: 37/975
  63763. }
  63764. },
  63765. back: {
  63766. height: math.unit(6, "feet"),
  63767. weight: math.unit(159, "lb"),
  63768. name: "Back",
  63769. image: {
  63770. source: "./media/characters/meus/back.svg",
  63771. extra: 967/873,
  63772. bottom: 12/979
  63773. }
  63774. },
  63775. },
  63776. [
  63777. {
  63778. name: "Micro",
  63779. height: math.unit(2, "inches")
  63780. },
  63781. {
  63782. name: "Mini",
  63783. height: math.unit(6, "inches")
  63784. },
  63785. {
  63786. name: "Normal",
  63787. height: math.unit(6, "feet"),
  63788. default: true
  63789. },
  63790. {
  63791. name: "Macro",
  63792. height: math.unit(84, "feet")
  63793. },
  63794. ]
  63795. ))
  63796. characterMakers.push(() => makeCharacter(
  63797. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63798. {
  63799. front: {
  63800. height: math.unit(60, "cm"),
  63801. weight: math.unit(18, "kg"),
  63802. name: "Front",
  63803. image: {
  63804. source: "./media/characters/yamato/front.svg",
  63805. extra: 733/688,
  63806. bottom: 29/762
  63807. }
  63808. },
  63809. },
  63810. [
  63811. {
  63812. name: "Micro",
  63813. height: math.unit(6, "cm")
  63814. },
  63815. {
  63816. name: "Normal",
  63817. height: math.unit(60, "cm"),
  63818. default: true
  63819. },
  63820. ]
  63821. ))
  63822. characterMakers.push(() => makeCharacter(
  63823. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63824. {
  63825. front: {
  63826. height: math.unit(9, "feet"),
  63827. weight: math.unit(518, "lb"),
  63828. name: "Front",
  63829. image: {
  63830. source: "./media/characters/barus/front.svg",
  63831. extra: 1877/1795,
  63832. bottom: 55/1932
  63833. }
  63834. },
  63835. },
  63836. [
  63837. {
  63838. name: "Base Height",
  63839. height: math.unit(9, "feet"),
  63840. default: true
  63841. },
  63842. {
  63843. name: "Large",
  63844. height: math.unit(18, "feet")
  63845. },
  63846. {
  63847. name: "Giant",
  63848. height: math.unit(100, "feet")
  63849. },
  63850. {
  63851. name: "Huge",
  63852. height: math.unit(500, "feet")
  63853. },
  63854. {
  63855. name: "Enormous",
  63856. height: math.unit(300, "meters")
  63857. },
  63858. {
  63859. name: "Deity Among Man",
  63860. height: math.unit(3000, "meters")
  63861. },
  63862. ]
  63863. ))
  63864. characterMakers.push(() => makeCharacter(
  63865. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63866. {
  63867. front: {
  63868. height: math.unit(1.7, "meters"),
  63869. name: "Front",
  63870. image: {
  63871. source: "./media/characters/yari/front.svg",
  63872. extra: 1210/1125,
  63873. bottom: 283/1493
  63874. }
  63875. },
  63876. back: {
  63877. height: math.unit(1.7, "meters"),
  63878. name: "Back",
  63879. image: {
  63880. source: "./media/characters/yari/back.svg",
  63881. extra: 1240/1195,
  63882. bottom: 180/1420
  63883. }
  63884. },
  63885. head: {
  63886. height: math.unit(1.26, "feet"),
  63887. name: "Head",
  63888. image: {
  63889. source: "./media/characters/yari/head.svg"
  63890. }
  63891. },
  63892. },
  63893. [
  63894. {
  63895. name: "Nano",
  63896. height: math.unit(0.5, "mm")
  63897. },
  63898. {
  63899. name: "Micro",
  63900. height: math.unit(3, "inches")
  63901. },
  63902. {
  63903. name: "Short",
  63904. height: math.unit(1.5, "meters")
  63905. },
  63906. {
  63907. name: "Norm",
  63908. height: math.unit(1.7, "meters"),
  63909. default: true
  63910. },
  63911. ]
  63912. ))
  63913. characterMakers.push(() => makeCharacter(
  63914. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63915. {
  63916. front: {
  63917. height: math.unit(5 + 2/12, "feet"),
  63918. weight: math.unit(110, "lb"),
  63919. name: "Front",
  63920. image: {
  63921. source: "./media/characters/salem/front.svg",
  63922. extra: 1895/1800,
  63923. bottom: 23/1918
  63924. }
  63925. },
  63926. back: {
  63927. height: math.unit(5 + 2/12, "feet"),
  63928. weight: math.unit(110, "lb"),
  63929. name: "Back",
  63930. image: {
  63931. source: "./media/characters/salem/back.svg",
  63932. extra: 1875/1802,
  63933. bottom: 20/1895
  63934. }
  63935. },
  63936. head: {
  63937. height: math.unit(1, "feet"),
  63938. name: "Head",
  63939. image: {
  63940. source: "./media/characters/salem/head.svg"
  63941. }
  63942. },
  63943. paw: {
  63944. height: math.unit(0.59, "feet"),
  63945. name: "Paw",
  63946. image: {
  63947. source: "./media/characters/salem/paw.svg"
  63948. }
  63949. },
  63950. beans: {
  63951. height: math.unit(0.66, "feet"),
  63952. name: "Beans",
  63953. image: {
  63954. source: "./media/characters/salem/beans.svg"
  63955. }
  63956. },
  63957. eye: {
  63958. height: math.unit(0.224, "feet"),
  63959. name: "Eye",
  63960. image: {
  63961. source: "./media/characters/salem/eye.svg"
  63962. }
  63963. },
  63964. semiferal: {
  63965. height: math.unit(2.3, "feet"),
  63966. name: "Semiferal",
  63967. image: {
  63968. source: "./media/characters/salem/semiferal.svg",
  63969. extra: 914/839,
  63970. bottom: 32/946
  63971. }
  63972. },
  63973. },
  63974. [
  63975. {
  63976. name: "Micro",
  63977. height: math.unit(4, "inches")
  63978. },
  63979. {
  63980. name: "Normal",
  63981. height: math.unit(5 + 2/12, "feet"),
  63982. default: true
  63983. },
  63984. {
  63985. name: "Macro",
  63986. height: math.unit(108, "feet")
  63987. },
  63988. {
  63989. name: "Macro+",
  63990. height: math.unit(1500, "feet")
  63991. },
  63992. ]
  63993. ))
  63994. characterMakers.push(() => makeCharacter(
  63995. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63996. {
  63997. front: {
  63998. height: math.unit(7 + 6/12, "feet"),
  63999. weight: math.unit(600, "kg"),
  64000. preyCapacity: math.unit(10, "people"),
  64001. name: "Front",
  64002. image: {
  64003. source: "./media/characters/kii/front.svg",
  64004. extra: 3296/3087,
  64005. bottom: 130/3426
  64006. }
  64007. },
  64008. },
  64009. [
  64010. {
  64011. name: "Normal",
  64012. height: math.unit(7 + 6/12, "feet"),
  64013. default: true
  64014. },
  64015. ]
  64016. ))
  64017. characterMakers.push(() => makeCharacter(
  64018. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64019. {
  64020. front: {
  64021. height: math.unit(2, "meters"),
  64022. weight: math.unit(200, "lb"),
  64023. name: "Front",
  64024. image: {
  64025. source: "./media/characters/taffy/front.svg",
  64026. extra: 1666/1618,
  64027. bottom: 157/1823
  64028. }
  64029. },
  64030. back: {
  64031. height: math.unit(2, "meters"),
  64032. weight: math.unit(200, "lb"),
  64033. name: "Back",
  64034. image: {
  64035. source: "./media/characters/taffy/back.svg",
  64036. extra: 1635/1583,
  64037. bottom: 153/1788
  64038. }
  64039. },
  64040. },
  64041. [
  64042. {
  64043. name: "Normal",
  64044. height: math.unit(2, "meters"),
  64045. default: true
  64046. },
  64047. ]
  64048. ))
  64049. characterMakers.push(() => makeCharacter(
  64050. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64051. {
  64052. front: {
  64053. height: math.unit(1.55, "meters"),
  64054. weight: math.unit(60, "kg"),
  64055. name: "Front",
  64056. image: {
  64057. source: "./media/characters/barley/front.svg",
  64058. extra: 1520/1340,
  64059. bottom: 47/1567
  64060. }
  64061. },
  64062. back: {
  64063. height: math.unit(1.55, "meters"),
  64064. weight: math.unit(60, "kg"),
  64065. name: "Back",
  64066. image: {
  64067. source: "./media/characters/barley/back.svg",
  64068. extra: 1543/1341,
  64069. bottom: 12/1555
  64070. }
  64071. },
  64072. feet: {
  64073. height: math.unit(2.18, "feet"),
  64074. name: "Feet",
  64075. image: {
  64076. source: "./media/characters/barley/feet.svg"
  64077. }
  64078. },
  64079. },
  64080. [
  64081. {
  64082. name: "Normal",
  64083. height: math.unit(1.55, "meters"),
  64084. default: true
  64085. },
  64086. ]
  64087. ))
  64088. characterMakers.push(() => makeCharacter(
  64089. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64090. {
  64091. dressed: {
  64092. height: math.unit(6, "feet"),
  64093. name: "Dressed",
  64094. image: {
  64095. source: "./media/characters/lydia-lopez/dressed.svg",
  64096. extra: 1319/1277,
  64097. bottom: 90/1409
  64098. }
  64099. },
  64100. nude: {
  64101. height: math.unit(6, "feet"),
  64102. name: "Nude",
  64103. image: {
  64104. source: "./media/characters/lydia-lopez/nude.svg",
  64105. extra: 1319/1277,
  64106. bottom: 90/1409
  64107. }
  64108. },
  64109. },
  64110. [
  64111. {
  64112. name: "Normal",
  64113. height: math.unit(6, "feet"),
  64114. default: true
  64115. },
  64116. {
  64117. name: "Maximum",
  64118. height: math.unit(2101, "feet")
  64119. },
  64120. ]
  64121. ))
  64122. characterMakers.push(() => makeCharacter(
  64123. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64124. {
  64125. front: {
  64126. height: math.unit(5 + 4/12, "feet"),
  64127. weight: math.unit(250, "lb"),
  64128. volume: math.unit(20, "gallons"),
  64129. name: "Front",
  64130. image: {
  64131. source: "./media/characters/kira-slime/front.svg",
  64132. extra: 442/403,
  64133. bottom: 18/460
  64134. }
  64135. },
  64136. frontNsfw: {
  64137. height: math.unit(5 + 4/12, "feet"),
  64138. weight: math.unit(250, "lb"),
  64139. volume: math.unit(20, "gallons"),
  64140. name: "Front (NSFW)",
  64141. image: {
  64142. source: "./media/characters/kira-slime/front-nsfw.svg",
  64143. extra: 442/403,
  64144. bottom: 18/460
  64145. }
  64146. },
  64147. },
  64148. [
  64149. {
  64150. name: "Droplet",
  64151. height: math.unit(0.0464452, "feet")
  64152. },
  64153. {
  64154. name: "Pint",
  64155. height: math.unit(0.9824, "feet")
  64156. },
  64157. {
  64158. name: "Bucket",
  64159. height: math.unit(2.83, "feet")
  64160. },
  64161. {
  64162. name: "Normal",
  64163. height: math.unit(5 + 4/12, "feet"),
  64164. default: true
  64165. },
  64166. {
  64167. name: "Tub",
  64168. height: math.unit(8.46614, "feet")
  64169. },
  64170. {
  64171. name: "Pool",
  64172. height: math.unit(31.1895, "feet")
  64173. },
  64174. {
  64175. name: "Pond",
  64176. height: math.unit(170.349, "feet")
  64177. },
  64178. {
  64179. name: "Lake",
  64180. height: math.unit(289334, "feet")
  64181. },
  64182. {
  64183. name: "Ocean",
  64184. height: math.unit(1.11940e+7, "feet")
  64185. },
  64186. ]
  64187. ))
  64188. characterMakers.push(() => makeCharacter(
  64189. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64190. {
  64191. front: {
  64192. height: math.unit(5 + 6/12, "feet"),
  64193. weight: math.unit(120, "lb"),
  64194. name: "Front",
  64195. image: {
  64196. source: "./media/characters/holiday/front.svg",
  64197. extra: 456/403,
  64198. bottom: 4/460
  64199. }
  64200. },
  64201. back: {
  64202. height: math.unit(5 + 6/12, "feet"),
  64203. weight: math.unit(120, "lb"),
  64204. name: "Back",
  64205. image: {
  64206. source: "./media/characters/holiday/back.svg",
  64207. extra: 450/404,
  64208. bottom: 12/462
  64209. }
  64210. },
  64211. head: {
  64212. height: math.unit(2.3, "feet"),
  64213. name: "Head",
  64214. image: {
  64215. source: "./media/characters/holiday/head.svg"
  64216. }
  64217. },
  64218. },
  64219. [
  64220. {
  64221. name: "Normal",
  64222. height: math.unit(5 + 6/12, "feet"),
  64223. default: true
  64224. },
  64225. {
  64226. name: "Macro",
  64227. height: math.unit(6574.25, "feet")
  64228. },
  64229. ]
  64230. ))
  64231. characterMakers.push(() => makeCharacter(
  64232. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64233. {
  64234. front: {
  64235. height: math.unit(6 + 2/12, "feet"),
  64236. weight: math.unit(200, "lb"),
  64237. name: "Front",
  64238. image: {
  64239. source: "./media/characters/camina/front.svg",
  64240. extra: 1048/985,
  64241. bottom: 30/1078
  64242. }
  64243. },
  64244. },
  64245. [
  64246. {
  64247. name: "Normal",
  64248. height: math.unit(6 + 2/12, "feet"),
  64249. default: true
  64250. },
  64251. ]
  64252. ))
  64253. characterMakers.push(() => makeCharacter(
  64254. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64255. {
  64256. front: {
  64257. height: math.unit(30, "cm"),
  64258. weight: math.unit(420, "grams"),
  64259. name: "Front",
  64260. image: {
  64261. source: "./media/characters/smuck/front.svg",
  64262. extra: 379/345,
  64263. bottom: 36/415
  64264. }
  64265. },
  64266. },
  64267. [
  64268. {
  64269. name: "Smuck-Sized",
  64270. height: math.unit(30, "cm"),
  64271. default: true
  64272. },
  64273. ]
  64274. ))
  64275. characterMakers.push(() => makeCharacter(
  64276. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64277. {
  64278. frontSfw: {
  64279. height: math.unit(10, "feet"),
  64280. weight: math.unit(1000, "kg"),
  64281. preyCapacity: math.unit(2, "people"),
  64282. name: "Front (SFW)",
  64283. image: {
  64284. source: "./media/characters/bylur/front-sfw.svg",
  64285. extra: 419/343,
  64286. bottom: 3/422
  64287. },
  64288. default: true
  64289. },
  64290. frontSheath: {
  64291. height: math.unit(10, "feet"),
  64292. weight: math.unit(1000, "kg"),
  64293. preyCapacity: math.unit(2, "people"),
  64294. name: "Front (Sheath)",
  64295. image: {
  64296. source: "./media/characters/bylur/front-sheath.svg",
  64297. extra: 419/343,
  64298. bottom: 3/422
  64299. }
  64300. },
  64301. frontErect: {
  64302. height: math.unit(10, "feet"),
  64303. weight: math.unit(1000, "kg"),
  64304. preyCapacity: math.unit(2, "people"),
  64305. name: "Front (Erect)",
  64306. image: {
  64307. source: "./media/characters/bylur/front-erect.svg",
  64308. extra: 419/343,
  64309. bottom: 3/422
  64310. }
  64311. },
  64312. back: {
  64313. height: math.unit(10, "feet"),
  64314. weight: math.unit(1000, "kg"),
  64315. preyCapacity: math.unit(2, "people"),
  64316. name: "Back",
  64317. image: {
  64318. source: "./media/characters/bylur/back.svg",
  64319. extra: 392/315,
  64320. bottom: 3/395
  64321. }
  64322. },
  64323. maw: {
  64324. height: math.unit(3.65, "feet"),
  64325. name: "Maw",
  64326. image: {
  64327. source: "./media/characters/bylur/maw.svg"
  64328. }
  64329. },
  64330. },
  64331. [
  64332. {
  64333. name: "Slightly Human Sized",
  64334. height: math.unit(10, "feet")
  64335. },
  64336. {
  64337. name: "Normal",
  64338. height: math.unit(35, "feet"),
  64339. default: true
  64340. },
  64341. {
  64342. name: "Macro",
  64343. height: math.unit(130, "feet")
  64344. },
  64345. ]
  64346. ))
  64347. characterMakers.push(() => makeCharacter(
  64348. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64349. {
  64350. frontNsfw: {
  64351. height: math.unit(6, "feet"),
  64352. weight: math.unit(250, "lb"),
  64353. preyCapacity: math.unit(0.05, "people"),
  64354. name: "Front (NSFW)",
  64355. image: {
  64356. source: "./media/characters/oarven/front-nsfw.svg",
  64357. extra: 1795/1783,
  64358. bottom: 142/1937
  64359. }
  64360. },
  64361. frontSfw: {
  64362. height: math.unit(6, "feet"),
  64363. weight: math.unit(250, "lb"),
  64364. preyCapacity: math.unit(0.05, "people"),
  64365. name: "Front (SFW)",
  64366. image: {
  64367. source: "./media/characters/oarven/front-sfw.svg",
  64368. extra: 1795/1783,
  64369. bottom: 142/1937
  64370. }
  64371. },
  64372. },
  64373. [
  64374. {
  64375. name: "Megamacro",
  64376. height: math.unit(5, "miles"),
  64377. default: true
  64378. },
  64379. {
  64380. name: "Maximum Height",
  64381. height: math.unit(5, "AUs")
  64382. },
  64383. ]
  64384. ))
  64385. characterMakers.push(() => makeCharacter(
  64386. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64387. {
  64388. side: {
  64389. height: math.unit(1065, "meters"),
  64390. weight: math.unit(1e12, "kg"),
  64391. volume: math.unit(3265000000, "m^3"),
  64392. name: "Side",
  64393. image: {
  64394. source: "./media/characters/solidarity/side.svg"
  64395. }
  64396. },
  64397. front: {
  64398. height: math.unit(1065, "meters"),
  64399. weight: math.unit(3265000000000, "kg"),
  64400. volume: math.unit(3265000000, "m^3"),
  64401. name: "Front",
  64402. image: {
  64403. source: "./media/characters/solidarity/front.svg"
  64404. }
  64405. },
  64406. top: {
  64407. height: math.unit(5823, "meters"),
  64408. weight: math.unit(3265000000000, "kg"),
  64409. volume: math.unit(3265000000, "m^3"),
  64410. name: "Top",
  64411. image: {
  64412. source: "./media/characters/solidarity/top.svg"
  64413. }
  64414. },
  64415. },
  64416. [
  64417. {
  64418. name: "Normal",
  64419. height: math.unit(1065, "meters"),
  64420. default: true
  64421. },
  64422. ]
  64423. ))
  64424. characterMakers.push(() => makeCharacter(
  64425. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64426. {
  64427. side: {
  64428. height: math.unit(18 + 4/12, "feet"),
  64429. weight: math.unit(13000, "kg"),
  64430. name: "Side",
  64431. image: {
  64432. source: "./media/characters/ani'szi/side.svg",
  64433. extra: 468/459,
  64434. bottom: 60/528
  64435. }
  64436. },
  64437. head: {
  64438. height: math.unit(4.8, "feet"),
  64439. name: "Head",
  64440. image: {
  64441. source: "./media/characters/ani'szi/head.svg"
  64442. }
  64443. },
  64444. jaws: {
  64445. height: math.unit(2.25, "feet"),
  64446. name: "Jaws",
  64447. image: {
  64448. source: "./media/characters/ani'szi/jaws.svg"
  64449. }
  64450. },
  64451. bust: {
  64452. height: math.unit(8.9, "feet"),
  64453. name: "Bust",
  64454. image: {
  64455. source: "./media/characters/ani'szi/bust.svg"
  64456. }
  64457. },
  64458. back: {
  64459. height: math.unit(13.53, "feet"),
  64460. name: "Back",
  64461. image: {
  64462. source: "./media/characters/ani'szi/back.svg"
  64463. }
  64464. },
  64465. eye: {
  64466. height: math.unit(0.44, "feet"),
  64467. name: "Eye",
  64468. image: {
  64469. source: "./media/characters/ani'szi/eye.svg"
  64470. }
  64471. },
  64472. },
  64473. [
  64474. {
  64475. name: "Normal",
  64476. height: math.unit(18 + 4/12, "feet"),
  64477. default: true
  64478. },
  64479. ]
  64480. ))
  64481. characterMakers.push(() => makeCharacter(
  64482. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64483. {
  64484. front: {
  64485. height: math.unit(7 + 6/12, "feet"),
  64486. weight: math.unit(300, "lb"),
  64487. name: "Front",
  64488. image: {
  64489. source: "./media/characters/rain/front.svg",
  64490. extra: 2955/2698,
  64491. bottom: 235/3190
  64492. }
  64493. },
  64494. dressed: {
  64495. height: math.unit(7 + 6/12, "feet"),
  64496. weight: math.unit(300, "lb"),
  64497. name: "Dressed",
  64498. image: {
  64499. source: "./media/characters/rain/dressed.svg",
  64500. extra: 2783/2572,
  64501. bottom: 430/3213
  64502. }
  64503. },
  64504. },
  64505. [
  64506. {
  64507. name: "Normal",
  64508. height: math.unit(7 + 6/12, "feet"),
  64509. default: true
  64510. },
  64511. {
  64512. name: "Macro",
  64513. height: math.unit(200, "feet")
  64514. },
  64515. {
  64516. name: "Macro+",
  64517. height: math.unit(500, "feet")
  64518. },
  64519. {
  64520. name: "Megamacro",
  64521. height: math.unit(5, "miles")
  64522. },
  64523. ]
  64524. ))
  64525. characterMakers.push(() => makeCharacter(
  64526. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64527. {
  64528. taur_side: {
  64529. height: math.unit(3, "meters"),
  64530. name: "Side",
  64531. image: {
  64532. source: "./media/characters/anise/taur-side.svg",
  64533. extra: 1833/926,
  64534. bottom: 134/1967
  64535. },
  64536. form: "taur",
  64537. default: true
  64538. },
  64539. feral_side: {
  64540. height: math.unit(3, "meters"),
  64541. name: "Side",
  64542. image: {
  64543. source: "./media/characters/anise/feral-side.svg",
  64544. extra: 681/349,
  64545. bottom: 26/707
  64546. },
  64547. form: "feral"
  64548. },
  64549. },
  64550. [
  64551. {
  64552. name: "Normal",
  64553. height: math.unit(3, "meters"),
  64554. default: true,
  64555. allForms: true
  64556. },
  64557. ],
  64558. {
  64559. "taur": {
  64560. name: "Taur",
  64561. default: true
  64562. },
  64563. "feral": {
  64564. name: "Feral",
  64565. },
  64566. }
  64567. ))
  64568. characterMakers.push(() => makeCharacter(
  64569. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64570. {
  64571. front: {
  64572. height: math.unit(1.9, "meters"),
  64573. weight: math.unit(75, "kg"),
  64574. name: "Front",
  64575. image: {
  64576. source: "./media/characters/sarina/front.svg",
  64577. extra: 1275/1200,
  64578. bottom: 49/1324
  64579. }
  64580. },
  64581. back: {
  64582. height: math.unit(1.9, "meters"),
  64583. weight: math.unit(75, "kg"),
  64584. name: "Back",
  64585. image: {
  64586. source: "./media/characters/sarina/back.svg",
  64587. extra: 1279/1209,
  64588. bottom: 14/1293
  64589. }
  64590. },
  64591. dressed: {
  64592. height: math.unit(1.9, "meters"),
  64593. weight: math.unit(75, "kg"),
  64594. name: "Dressed",
  64595. image: {
  64596. source: "./media/characters/sarina/dressed.svg",
  64597. extra: 1256/1187,
  64598. bottom: 56/1312
  64599. }
  64600. },
  64601. paw: {
  64602. height: math.unit(0.57, "feet"),
  64603. name: "Paw",
  64604. image: {
  64605. source: "./media/characters/sarina/paw.svg"
  64606. }
  64607. },
  64608. toering: {
  64609. height: math.unit(0.27, "feet"),
  64610. name: "Toering",
  64611. image: {
  64612. source: "./media/characters/sarina/toering.svg"
  64613. }
  64614. },
  64615. },
  64616. [
  64617. {
  64618. name: "Incognito",
  64619. height: math.unit(1.9, "meters")
  64620. },
  64621. {
  64622. name: "Home Size",
  64623. height: math.unit(160, "meters"),
  64624. default: true
  64625. },
  64626. {
  64627. name: "Mega",
  64628. height: math.unit(50, "km")
  64629. },
  64630. {
  64631. name: "Small Giga",
  64632. height: math.unit(250, "km")
  64633. },
  64634. {
  64635. name: "Giga (Preferred Size)",
  64636. height: math.unit(3000, "km")
  64637. },
  64638. {
  64639. name: "Terra",
  64640. height: math.unit(40000, "km")
  64641. },
  64642. {
  64643. name: "Terra+",
  64644. height: math.unit(400000, "km")
  64645. },
  64646. {
  64647. name: "Solar",
  64648. height: math.unit(35e6, "km")
  64649. },
  64650. {
  64651. name: "Galactic",
  64652. height: math.unit(648106, "parsecs")
  64653. },
  64654. {
  64655. name: "Universal",
  64656. height: math.unit(7, "universes")
  64657. },
  64658. {
  64659. name: "Universal+",
  64660. height: math.unit(30, "universes")
  64661. },
  64662. ]
  64663. ))
  64664. characterMakers.push(() => makeCharacter(
  64665. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64666. {
  64667. front: {
  64668. height: math.unit(5 + 6/12, "feet"),
  64669. name: "Front",
  64670. image: {
  64671. source: "./media/characters/sifray/front.svg",
  64672. extra: 722/691,
  64673. bottom: 64/786
  64674. }
  64675. },
  64676. },
  64677. [
  64678. {
  64679. name: "Normal",
  64680. height: math.unit(5 + 6/12, "feet"),
  64681. default: true
  64682. },
  64683. ]
  64684. ))
  64685. characterMakers.push(() => makeCharacter(
  64686. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64687. {
  64688. side: {
  64689. height: math.unit(2.64, "feet"),
  64690. weight: math.unit(100, "lb"),
  64691. preyCapacity: math.unit(3, "people"),
  64692. name: "Side",
  64693. image: {
  64694. source: "./media/characters/spots/side.svg",
  64695. extra: 1859/977,
  64696. bottom: 19/1878
  64697. },
  64698. extraAttributes: {
  64699. "preyPerMinute": {
  64700. name: "Prey Per Minute",
  64701. power: 3,
  64702. type: "volume",
  64703. base: math.unit(6, "people"),
  64704. defaultUnit: "people"
  64705. },
  64706. "preyPerDay": {
  64707. name: "Prey Per Day",
  64708. power: 3,
  64709. type: "volume",
  64710. base: math.unit(6 * 60 * 24, "people"),
  64711. defaultUnit: "people"
  64712. },
  64713. }
  64714. },
  64715. },
  64716. [
  64717. {
  64718. name: "Normal",
  64719. height: math.unit(2.64, "feet"),
  64720. default: true
  64721. },
  64722. ]
  64723. ))
  64724. characterMakers.push(() => makeCharacter(
  64725. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64726. {
  64727. front: {
  64728. height: math.unit(29 + 11/12, "feet"),
  64729. weight: math.unit(40, "tons"),
  64730. name: "Front",
  64731. image: {
  64732. source: "./media/characters/mona/front.svg",
  64733. extra: 1257/1116,
  64734. bottom: 34/1291
  64735. }
  64736. },
  64737. },
  64738. [
  64739. {
  64740. name: "Normal",
  64741. height: math.unit(29 + 11/12, "feet"),
  64742. default: true
  64743. },
  64744. ]
  64745. ))
  64746. characterMakers.push(() => makeCharacter(
  64747. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64748. {
  64749. front: {
  64750. height: math.unit(15, "feet"),
  64751. weight: math.unit(3000, "kg"),
  64752. preyCapacity: math.unit(5, "people"),
  64753. name: "Front",
  64754. image: {
  64755. source: "./media/characters/frostfire/front.svg",
  64756. extra: 675/558,
  64757. bottom: 73/748
  64758. }
  64759. },
  64760. side: {
  64761. height: math.unit(15, "feet"),
  64762. weight: math.unit(3000, "kg"),
  64763. preyCapacity: math.unit(5, "people"),
  64764. name: "Side",
  64765. image: {
  64766. source: "./media/characters/frostfire/side.svg",
  64767. extra: 687/585,
  64768. bottom: 50/737
  64769. }
  64770. },
  64771. back: {
  64772. height: math.unit(15, "feet"),
  64773. weight: math.unit(3000, "kg"),
  64774. preyCapacity: math.unit(5, "people"),
  64775. name: "Back",
  64776. image: {
  64777. source: "./media/characters/frostfire/back.svg",
  64778. extra: 707/607,
  64779. bottom: 16/723
  64780. }
  64781. },
  64782. head: {
  64783. height: math.unit(9.35, "feet"),
  64784. name: "Head",
  64785. image: {
  64786. source: "./media/characters/frostfire/head.svg"
  64787. }
  64788. },
  64789. maw: {
  64790. height: math.unit(3.32, "feet"),
  64791. name: "Maw",
  64792. image: {
  64793. source: "./media/characters/frostfire/maw.svg"
  64794. }
  64795. },
  64796. hand: {
  64797. height: math.unit(3.7, "feet"),
  64798. name: "Hand",
  64799. image: {
  64800. source: "./media/characters/frostfire/hand.svg"
  64801. }
  64802. },
  64803. paw: {
  64804. height: math.unit(5.8, "feet"),
  64805. name: "Paw",
  64806. image: {
  64807. source: "./media/characters/frostfire/paw.svg"
  64808. }
  64809. },
  64810. },
  64811. [
  64812. {
  64813. name: "Normal",
  64814. height: math.unit(15, "feet"),
  64815. default: true
  64816. },
  64817. ]
  64818. ))
  64819. characterMakers.push(() => makeCharacter(
  64820. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64821. {
  64822. front: {
  64823. height: math.unit(5 + 2/12, "feet"),
  64824. weight: math.unit(122, "lb"),
  64825. name: "Front",
  64826. image: {
  64827. source: "./media/characters/valeroo/front.svg",
  64828. extra: 1789/1534,
  64829. bottom: 66/1855
  64830. }
  64831. },
  64832. back: {
  64833. height: math.unit(5 + 2/12, "feet"),
  64834. weight: math.unit(122, "lb"),
  64835. name: "Back",
  64836. image: {
  64837. source: "./media/characters/valeroo/back.svg",
  64838. extra: 1848/1588,
  64839. bottom: 68/1916
  64840. }
  64841. },
  64842. head: {
  64843. height: math.unit(1.87, "feet"),
  64844. name: "Head",
  64845. image: {
  64846. source: "./media/characters/valeroo/head.svg"
  64847. }
  64848. },
  64849. hand: {
  64850. height: math.unit(0.82, "feet"),
  64851. name: "Hand",
  64852. image: {
  64853. source: "./media/characters/valeroo/hand.svg"
  64854. }
  64855. },
  64856. foot: {
  64857. height: math.unit(2.42, "feet"),
  64858. name: "Foot",
  64859. image: {
  64860. source: "./media/characters/valeroo/foot.svg"
  64861. }
  64862. },
  64863. },
  64864. [
  64865. {
  64866. name: "Normal",
  64867. height: math.unit(5 + 2/12, "feet"),
  64868. default: true
  64869. },
  64870. ]
  64871. ))
  64872. characterMakers.push(() => makeCharacter(
  64873. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64874. {
  64875. front: {
  64876. height: math.unit(11 + 3/12, "feet"),
  64877. name: "Front",
  64878. image: {
  64879. source: "./media/characters/corrin/front.svg",
  64880. extra: 665/597,
  64881. bottom: 74/739
  64882. }
  64883. },
  64884. },
  64885. [
  64886. {
  64887. name: "Standard",
  64888. height: math.unit(11 + 3/12, "feet"),
  64889. default: true
  64890. },
  64891. {
  64892. name: "The Boss",
  64893. height: math.unit(110, "feet")
  64894. },
  64895. {
  64896. name: "Shipbreaker",
  64897. height: math.unit(38, "km")
  64898. },
  64899. ]
  64900. ))
  64901. characterMakers.push(() => makeCharacter(
  64902. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64903. {
  64904. front: {
  64905. height: math.unit(10, "feet"),
  64906. weight: math.unit(1750, "lb"),
  64907. name: "Front",
  64908. image: {
  64909. source: "./media/characters/kiba-ulrich/front.svg",
  64910. extra: 1037/973,
  64911. bottom: 36/1073
  64912. }
  64913. },
  64914. },
  64915. [
  64916. {
  64917. name: "Normal",
  64918. height: math.unit(10, "feet"),
  64919. default: true
  64920. },
  64921. {
  64922. name: "Minimacro",
  64923. height: math.unit(20, "feet")
  64924. },
  64925. {
  64926. name: "Macro",
  64927. height: math.unit(200, "feet")
  64928. },
  64929. {
  64930. name: "Megamacro",
  64931. height: math.unit(22500, "feet")
  64932. },
  64933. {
  64934. name: "Gigamacro",
  64935. height: math.unit(2700, "miles")
  64936. },
  64937. {
  64938. name: "Teramacro",
  64939. height: math.unit(10000, "miles")
  64940. },
  64941. ]
  64942. ))
  64943. characterMakers.push(() => makeCharacter(
  64944. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64945. {
  64946. gryphon_front: {
  64947. height: math.unit(220, "cm"),
  64948. weight: math.unit(160, "kg"),
  64949. name: "Front",
  64950. image: {
  64951. source: "./media/characters/ceanoth/gryphon-front.svg",
  64952. extra: 616/552,
  64953. bottom: 33/649
  64954. },
  64955. form: "gryphon",
  64956. default: true
  64957. },
  64958. },
  64959. [
  64960. {
  64961. name: "Normal",
  64962. height: math.unit(220, "cm"),
  64963. form: "gryphon",
  64964. default: true
  64965. },
  64966. ],
  64967. {
  64968. "gryphon": {
  64969. name: "Grpyhon",
  64970. default: true
  64971. },
  64972. }
  64973. ))
  64974. characterMakers.push(() => makeCharacter(
  64975. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64976. {
  64977. dressed: {
  64978. height: math.unit(2.2 * 0.79, "meters"),
  64979. weight: math.unit(0.5, "tonnes"),
  64980. name: "Dressed",
  64981. image: {
  64982. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64983. extra: 665/315,
  64984. bottom: 106/771
  64985. },
  64986. extraAttributes: {
  64987. "bodyLength": {
  64988. name: "Body Length",
  64989. power: 1,
  64990. type: "length",
  64991. base: math.unit(2.5, "meters")
  64992. },
  64993. "tailLength": {
  64994. name: "Tail Length",
  64995. power: 1,
  64996. type: "length",
  64997. base: math.unit(4.5, "meters")
  64998. },
  64999. "wingspan": {
  65000. name: "Wingspan",
  65001. power: 1,
  65002. type: "length",
  65003. base: math.unit(6, "meters")
  65004. },
  65005. "taurStomachCapacity": {
  65006. name: "Taur Stomach Capacity",
  65007. power: 3,
  65008. type: "volume",
  65009. base: math.unit(4, "people"),
  65010. defaultUnit: "people"
  65011. },
  65012. "anthroStomachCapacity": {
  65013. name: "Anthro Stomach Capacity",
  65014. power: 3,
  65015. type: "volume",
  65016. base: math.unit(1, "people"),
  65017. defaultUnit: "people"
  65018. },
  65019. }
  65020. },
  65021. nude: {
  65022. height: math.unit(2.2 * 0.79, "meters"),
  65023. weight: math.unit(0.5, "tonnes"),
  65024. name: "Nude",
  65025. image: {
  65026. source: "./media/characters/vanadiya-athelya/nude.svg",
  65027. extra: 665/315,
  65028. bottom: 106/771
  65029. },
  65030. extraAttributes: {
  65031. "bodyLength": {
  65032. name: "Body Length",
  65033. power: 1,
  65034. type: "length",
  65035. base: math.unit(2.5, "meters")
  65036. },
  65037. "tailLength": {
  65038. name: "Tail Length",
  65039. power: 1,
  65040. type: "length",
  65041. base: math.unit(4.5, "meters")
  65042. },
  65043. "wingspan": {
  65044. name: "Wingspan",
  65045. power: 1,
  65046. type: "length",
  65047. base: math.unit(6, "meters")
  65048. },
  65049. "taurStomachCapacity": {
  65050. name: "Taur Stomach Capacity",
  65051. power: 3,
  65052. type: "volume",
  65053. base: math.unit(4, "people"),
  65054. defaultUnit: "people"
  65055. },
  65056. "anthroStomachCapacity": {
  65057. name: "Anthro Stomach Capacity",
  65058. power: 3,
  65059. type: "volume",
  65060. base: math.unit(1, "people"),
  65061. defaultUnit: "people"
  65062. },
  65063. }
  65064. },
  65065. },
  65066. [
  65067. {
  65068. name: "Handheld",
  65069. height: math.unit(0.79 * 0.06, "meters")
  65070. },
  65071. {
  65072. name: "Mini",
  65073. height: math.unit(0.79 * 0.7, "meters")
  65074. },
  65075. {
  65076. name: "Short",
  65077. height: math.unit(0.79 * 1.4, "meters")
  65078. },
  65079. {
  65080. name: "Imposing",
  65081. height: math.unit(0.79 * 2.2, "meters"),
  65082. default: true
  65083. },
  65084. {
  65085. name: "Big",
  65086. height: math.unit(0.79 * 3.8, "meters")
  65087. },
  65088. {
  65089. name: "Giant",
  65090. height: math.unit(0.79 * 6.7, "meters")
  65091. },
  65092. {
  65093. name: "Airliner",
  65094. height: math.unit(0.79 * 64, "meters")
  65095. },
  65096. {
  65097. name: "Skyscraper",
  65098. height: math.unit(0.79 * 220, "meters")
  65099. },
  65100. {
  65101. name: "Mountain",
  65102. height: math.unit(0.79 * 3.6, "km")
  65103. },
  65104. {
  65105. name: "Spacescraper",
  65106. height: math.unit(0.79 * 70, "km")
  65107. },
  65108. {
  65109. name: "Continental",
  65110. height: math.unit(0.79 * 1290, "km")
  65111. },
  65112. {
  65113. name: "Moon",
  65114. height: math.unit(0.79 * 32200, "km")
  65115. },
  65116. {
  65117. name: "Planetary",
  65118. height: math.unit(0.79 * 145000, "km")
  65119. },
  65120. {
  65121. name: "Stellar",
  65122. height: math.unit(0.79 * 19e6, "km")
  65123. },
  65124. {
  65125. name: "Solar",
  65126. height: math.unit(0.79 * 40, "AU")
  65127. },
  65128. {
  65129. name: "Intersteller",
  65130. height: math.unit(0.79 * 3, "lightyears")
  65131. },
  65132. {
  65133. name: "Star Cluster",
  65134. height: math.unit(0.79 * 80, "lightyears")
  65135. },
  65136. {
  65137. name: "Ecumenical",
  65138. height: math.unit(0.79 * 2e3, "lightyears")
  65139. },
  65140. {
  65141. name: "Galactic",
  65142. height: math.unit(0.79 * 175000, "lightyears")
  65143. },
  65144. {
  65145. name: "Galaxy Cluster",
  65146. height: math.unit(0.79 * 25e6, "lightyears")
  65147. },
  65148. ]
  65149. ))
  65150. characterMakers.push(() => makeCharacter(
  65151. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65152. {
  65153. front: {
  65154. height: math.unit(6 + 2/12, "feet"),
  65155. weight: math.unit(160, "lb"),
  65156. name: "Front",
  65157. image: {
  65158. source: "./media/characters/yana-amelin/front.svg",
  65159. extra: 1413/1295,
  65160. bottom: 42/1455
  65161. }
  65162. },
  65163. back: {
  65164. height: math.unit(6 + 2/12, "feet"),
  65165. weight: math.unit(160, "lb"),
  65166. name: "Back",
  65167. image: {
  65168. source: "./media/characters/yana-amelin/back.svg",
  65169. extra: 1424/1310,
  65170. bottom: 24/1448
  65171. }
  65172. },
  65173. paws: {
  65174. height: math.unit(1.48, "feet"),
  65175. name: "Paws",
  65176. image: {
  65177. source: "./media/characters/yana-amelin/paws.svg",
  65178. extra: 304/304,
  65179. bottom: 49/353
  65180. }
  65181. },
  65182. },
  65183. [
  65184. {
  65185. name: "Micro",
  65186. height: math.unit(4, "inches")
  65187. },
  65188. {
  65189. name: "Normal",
  65190. height: math.unit(6 + 2/12, "feet"),
  65191. default: true
  65192. },
  65193. {
  65194. name: "Minimacro",
  65195. height: math.unit(20, "feet")
  65196. },
  65197. {
  65198. name: "Macro",
  65199. height: math.unit(70, "feet")
  65200. },
  65201. ]
  65202. ))
  65203. characterMakers.push(() => makeCharacter(
  65204. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65205. {
  65206. frontNsfw: {
  65207. height: math.unit(2.48, "meters"),
  65208. weight: math.unit(112, "kg"),
  65209. name: "Front (NSFW)",
  65210. image: {
  65211. source: "./media/characters/titania/front-nsfw.svg",
  65212. extra: 1302/1232,
  65213. bottom: 90/1392
  65214. }
  65215. },
  65216. backNsfw: {
  65217. height: math.unit(2.48, "meters"),
  65218. weight: math.unit(112, "kg"),
  65219. name: "Back (NSFW)",
  65220. image: {
  65221. source: "./media/characters/titania/back-nsfw.svg",
  65222. extra: 1355/1288,
  65223. bottom: 18/1373
  65224. }
  65225. },
  65226. frontSfw: {
  65227. height: math.unit(2.48, "meters"),
  65228. weight: math.unit(112, "kg"),
  65229. name: "Front (SFW)",
  65230. image: {
  65231. source: "./media/characters/titania/front-sfw.svg",
  65232. extra: 1302/1232,
  65233. bottom: 90/1392
  65234. }
  65235. },
  65236. backSfw: {
  65237. height: math.unit(2.48, "meters"),
  65238. weight: math.unit(112, "kg"),
  65239. name: "Back (SFW)",
  65240. image: {
  65241. source: "./media/characters/titania/back-sfw.svg",
  65242. extra: 1355/1288,
  65243. bottom: 18/1373
  65244. }
  65245. },
  65246. head: {
  65247. height: math.unit(2.06, "feet"),
  65248. name: "Head",
  65249. image: {
  65250. source: "./media/characters/titania/head.svg"
  65251. }
  65252. },
  65253. maw: {
  65254. height: math.unit(0.8, "feet"),
  65255. name: "Maw",
  65256. image: {
  65257. source: "./media/characters/titania/maw.svg"
  65258. }
  65259. },
  65260. foot: {
  65261. height: math.unit(1.65, "feet"),
  65262. name: "Foot",
  65263. image: {
  65264. source: "./media/characters/titania/foot.svg"
  65265. }
  65266. },
  65267. nethers: {
  65268. height: math.unit(1.7, "feet"),
  65269. name: "Nethers",
  65270. image: {
  65271. source: "./media/characters/titania/nethers.svg"
  65272. }
  65273. },
  65274. },
  65275. [
  65276. {
  65277. name: "Normal",
  65278. height: math.unit(2.48, "meters"),
  65279. default: true
  65280. },
  65281. {
  65282. name: "Mini Macro",
  65283. height: math.unit(248, "meters")
  65284. },
  65285. {
  65286. name: "Macro",
  65287. height: math.unit(620, "meters")
  65288. },
  65289. {
  65290. name: "Mega Macro",
  65291. height: math.unit(1860, "meters")
  65292. },
  65293. ]
  65294. ))
  65295. characterMakers.push(() => makeCharacter(
  65296. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65297. {
  65298. front: {
  65299. height: math.unit(5 + 9/12, "feet"),
  65300. weight: math.unit(1500, "lb"),
  65301. name: "Front",
  65302. image: {
  65303. source: "./media/characters/tony-gray/front.svg",
  65304. extra: 700/575,
  65305. bottom: 71/771
  65306. }
  65307. },
  65308. },
  65309. [
  65310. {
  65311. name: "Normal",
  65312. height: math.unit(5 + 9/12, "feet"),
  65313. default: true
  65314. },
  65315. ]
  65316. ))
  65317. characterMakers.push(() => makeCharacter(
  65318. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65319. {
  65320. side: {
  65321. height: math.unit(8 + 2/12, "feet"),
  65322. name: "Side",
  65323. image: {
  65324. source: "./media/characters/kelby/side.svg",
  65325. extra: 804/578,
  65326. bottom: 70/874
  65327. },
  65328. form: "regular",
  65329. default: true
  65330. },
  65331. lounging: {
  65332. height: math.unit(12.41, "feet"),
  65333. name: "Lounging",
  65334. image: {
  65335. source: "./media/characters/kelby/lounging.svg"
  65336. },
  65337. form: "regular"
  65338. },
  65339. maw: {
  65340. height: math.unit(5, "feet"),
  65341. name: "Maw",
  65342. image: {
  65343. source: "./media/characters/kelby/maw.svg"
  65344. },
  65345. form: "regular"
  65346. },
  65347. dick: {
  65348. height: math.unit(2.4, "feet"),
  65349. name: "Dick",
  65350. image: {
  65351. source: "./media/characters/kelby/dick.svg"
  65352. },
  65353. form: "regular"
  65354. },
  65355. slit: {
  65356. height: math.unit(1.2, "feet"),
  65357. name: "Slit",
  65358. image: {
  65359. source: "./media/characters/kelby/slit.svg"
  65360. },
  65361. form: "regular"
  65362. },
  65363. chibi: {
  65364. height: math.unit(5, "feet"),
  65365. name: "Chibi",
  65366. image: {
  65367. source: "./media/characters/kelby/chibi.svg",
  65368. extra: 245/200,
  65369. bottom: 43/288
  65370. },
  65371. form: "chibi",
  65372. default: true
  65373. },
  65374. },
  65375. [
  65376. {
  65377. name: "Normal",
  65378. height: math.unit(8 + 2/12, "feet"),
  65379. default: true,
  65380. form: "regular"
  65381. },
  65382. {
  65383. name: "Normal",
  65384. height: math.unit(5, "feet"),
  65385. default: true,
  65386. form: "chibi"
  65387. },
  65388. ],
  65389. {
  65390. "regular": {
  65391. name: "Regular",
  65392. default: true
  65393. },
  65394. "chibi": {
  65395. name: "Chibi",
  65396. },
  65397. }
  65398. ))
  65399. characterMakers.push(() => makeCharacter(
  65400. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65401. {
  65402. front: {
  65403. height: math.unit(7 + 10/12, "feet"),
  65404. weight: math.unit(300, "lb"),
  65405. name: "Front",
  65406. image: {
  65407. source: "./media/characters/elisa-mitchell/front.svg",
  65408. extra: 2562/2355,
  65409. bottom: 62/2624
  65410. }
  65411. },
  65412. maw: {
  65413. height: math.unit(2.37, "feet"),
  65414. name: "Maw",
  65415. image: {
  65416. source: "./media/characters/elisa-mitchell/maw.svg"
  65417. }
  65418. },
  65419. },
  65420. [
  65421. {
  65422. name: "Normal",
  65423. height: math.unit(7 + 10/12, "feet"),
  65424. default: true
  65425. },
  65426. {
  65427. name: "Macro",
  65428. height: math.unit(1490, "feet"),
  65429. default: true
  65430. },
  65431. ]
  65432. ))
  65433. characterMakers.push(() => makeCharacter(
  65434. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65435. {
  65436. front: {
  65437. height: math.unit(122, "cm"),
  65438. weight: math.unit(40, "lb"),
  65439. name: "Front",
  65440. image: {
  65441. source: "./media/characters/camia-vertigo-zott/front.svg",
  65442. extra: 2112/1902,
  65443. bottom: 21/2133
  65444. }
  65445. },
  65446. },
  65447. [
  65448. {
  65449. name: "Base Height",
  65450. height: math.unit(122, "cm")
  65451. },
  65452. {
  65453. name: "Macro Height",
  65454. height: math.unit(345, "meters"),
  65455. default: true
  65456. },
  65457. ]
  65458. ))
  65459. characterMakers.push(() => makeCharacter(
  65460. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65461. {
  65462. front: {
  65463. height: math.unit(6 + 3/12, "feet"),
  65464. weight: math.unit(180, "lb"),
  65465. name: "Front",
  65466. image: {
  65467. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65468. extra: 2580/2457,
  65469. bottom: 131/2711
  65470. }
  65471. },
  65472. },
  65473. [
  65474. {
  65475. name: "Normal",
  65476. height: math.unit(6 + 3/12, "feet"),
  65477. default: true
  65478. },
  65479. ]
  65480. ))
  65481. characterMakers.push(() => makeCharacter(
  65482. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65483. {
  65484. front: {
  65485. height: math.unit(165, "cm"),
  65486. weight: math.unit(130, "lb"),
  65487. name: "Front",
  65488. image: {
  65489. source: "./media/characters/sleeka/front.svg",
  65490. extra: 1252/1200,
  65491. bottom: 46/1298
  65492. }
  65493. },
  65494. },
  65495. [
  65496. {
  65497. name: "Normal",
  65498. height: math.unit(165, "cm")
  65499. },
  65500. {
  65501. name: "Galactic",
  65502. height: math.unit(5.8e22, "meters"),
  65503. default: true
  65504. },
  65505. {
  65506. name: "Universal",
  65507. height: math.unit(1.02e29, "meters")
  65508. },
  65509. ]
  65510. ))
  65511. characterMakers.push(() => makeCharacter(
  65512. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65513. {
  65514. front: {
  65515. height: math.unit(5 + 11/12, "feet"),
  65516. weight: math.unit(145, "lb"),
  65517. name: "Front",
  65518. image: {
  65519. source: "./media/characters/emily-whitetail/front.svg",
  65520. extra: 2510/2280,
  65521. bottom: 128/2638
  65522. }
  65523. },
  65524. },
  65525. [
  65526. {
  65527. name: "Normal",
  65528. height: math.unit(5 + 11/12, "feet")
  65529. },
  65530. {
  65531. name: "Galactic",
  65532. height: math.unit(6.3e22, "meters"),
  65533. default: true
  65534. },
  65535. {
  65536. name: "Universal",
  65537. height: math.unit(1.12e29, "meters")
  65538. },
  65539. ]
  65540. ))
  65541. characterMakers.push(() => makeCharacter(
  65542. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65543. {
  65544. front: {
  65545. height: math.unit(5 + 4/12, "feet"),
  65546. weight: math.unit(110, "lb"),
  65547. name: "Front",
  65548. image: {
  65549. source: "./media/characters/buck-whitetail/front.svg",
  65550. extra: 2430/2186,
  65551. bottom: 125/2555
  65552. }
  65553. },
  65554. },
  65555. [
  65556. {
  65557. name: "Normal",
  65558. height: math.unit(5 + 4/12, "feet")
  65559. },
  65560. {
  65561. name: "Galactic",
  65562. height: math.unit(5.4e22, "meters"),
  65563. default: true
  65564. },
  65565. {
  65566. name: "Universal",
  65567. height: math.unit(9.6e28, "meters")
  65568. },
  65569. ]
  65570. ))
  65571. characterMakers.push(() => makeCharacter(
  65572. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65573. {
  65574. front: {
  65575. height: math.unit(5 + 3/12, "feet"),
  65576. name: "Front",
  65577. image: {
  65578. source: "./media/characters/zoey-frisk/front.svg",
  65579. extra: 2825/2646,
  65580. bottom: 57/2882
  65581. }
  65582. },
  65583. },
  65584. [
  65585. {
  65586. name: "Normal",
  65587. height: math.unit(5 + 3/12, "feet"),
  65588. default: true
  65589. },
  65590. {
  65591. name: "Macro",
  65592. height: math.unit(800, "feet")
  65593. },
  65594. ]
  65595. ))
  65596. characterMakers.push(() => makeCharacter(
  65597. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65598. {
  65599. front: {
  65600. height: math.unit(210, "cm"),
  65601. weight: math.unit(102, "kg"),
  65602. name: "Front",
  65603. image: {
  65604. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65605. extra: 831/790,
  65606. bottom: 19/850
  65607. }
  65608. },
  65609. },
  65610. [
  65611. {
  65612. name: "Micro",
  65613. height: math.unit(1, "mm")
  65614. },
  65615. {
  65616. name: "Small",
  65617. height: math.unit(1, "cm")
  65618. },
  65619. {
  65620. name: "Short",
  65621. height: math.unit(1, "foot")
  65622. },
  65623. {
  65624. name: "Normal",
  65625. height: math.unit(210, "cm"),
  65626. default: true
  65627. },
  65628. {
  65629. name: "Big",
  65630. height: math.unit(15, "feet")
  65631. },
  65632. {
  65633. name: "Macro",
  65634. height: math.unit(50, "feet")
  65635. },
  65636. ]
  65637. ))
  65638. characterMakers.push(() => makeCharacter(
  65639. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65640. {
  65641. front: {
  65642. height: math.unit(80, "feet"),
  65643. weight: math.unit(410000, "lb"),
  65644. name: "Front",
  65645. image: {
  65646. source: "./media/characters/trouble/front.svg",
  65647. extra: 780/723,
  65648. bottom: 11/791
  65649. },
  65650. extraAttributes: {
  65651. "pawArea": {
  65652. name: "Paw Area",
  65653. power: 2,
  65654. type: "area",
  65655. base: math.unit(49, "feet^2")
  65656. },
  65657. }
  65658. },
  65659. },
  65660. [
  65661. {
  65662. name: "Normal",
  65663. height: math.unit(80, "feet"),
  65664. default: true
  65665. },
  65666. ]
  65667. ))
  65668. characterMakers.push(() => makeCharacter(
  65669. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65670. {
  65671. front: {
  65672. height: math.unit(5 + 7/12, "feet"),
  65673. weight: math.unit(140, "lb"),
  65674. name: "Front",
  65675. image: {
  65676. source: "./media/characters/bastion-aralus/front.svg",
  65677. extra: 1122/1045,
  65678. bottom: 24/1146
  65679. }
  65680. },
  65681. back: {
  65682. height: math.unit(5 + 7/12, "feet"),
  65683. weight: math.unit(140, "lb"),
  65684. name: "Back",
  65685. image: {
  65686. source: "./media/characters/bastion-aralus/back.svg",
  65687. extra: 1158/1078,
  65688. bottom: 39/1197
  65689. }
  65690. },
  65691. dick: {
  65692. height: math.unit(1.16, "feet"),
  65693. name: "Dick",
  65694. image: {
  65695. source: "./media/characters/bastion-aralus/dick.svg"
  65696. }
  65697. },
  65698. },
  65699. [
  65700. {
  65701. name: "Micro",
  65702. height: math.unit(1, "mm")
  65703. },
  65704. {
  65705. name: "Normal",
  65706. height: math.unit(5 + 7/12, "feet"),
  65707. default: true
  65708. },
  65709. {
  65710. name: "Macro",
  65711. height: math.unit(57, "feet")
  65712. },
  65713. ]
  65714. ))
  65715. characterMakers.push(() => makeCharacter(
  65716. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65717. {
  65718. sona_front: {
  65719. height: math.unit(6, "feet"),
  65720. weight: math.unit(350, "lb"),
  65721. name: "Front",
  65722. image: {
  65723. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65724. extra: 1099/1005,
  65725. bottom: 22/1121
  65726. },
  65727. form: "sona",
  65728. default: true
  65729. },
  65730. sona_side: {
  65731. height: math.unit(6, "feet"),
  65732. weight: math.unit(350, "lb"),
  65733. name: "Side",
  65734. image: {
  65735. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65736. extra: 1075/1017,
  65737. bottom: 20/1095
  65738. },
  65739. form: "sona",
  65740. },
  65741. character_front: {
  65742. height: math.unit(6, "feet"),
  65743. weight: math.unit(300, "lb"),
  65744. name: "Front",
  65745. image: {
  65746. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65747. extra: 1099/1005,
  65748. bottom: 22/1121
  65749. },
  65750. form: "character",
  65751. default: true
  65752. },
  65753. character_side: {
  65754. height: math.unit(6, "feet"),
  65755. weight: math.unit(300, "lb"),
  65756. name: "Side",
  65757. image: {
  65758. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65759. extra: 1075/1017,
  65760. bottom: 20/1095
  65761. },
  65762. form: "character",
  65763. },
  65764. },
  65765. [
  65766. {
  65767. name: "Normal",
  65768. height: math.unit(500, "feet"),
  65769. default: true,
  65770. form: "sona"
  65771. },
  65772. {
  65773. name: "Normal",
  65774. height: math.unit(50, "feet"),
  65775. default: true,
  65776. form: "character"
  65777. },
  65778. ],
  65779. {
  65780. "sona": {
  65781. name: "Sona",
  65782. default: true
  65783. },
  65784. "character": {
  65785. name: "Character",
  65786. },
  65787. }
  65788. ))
  65789. //characters
  65790. function makeCharacters() {
  65791. const results = [];
  65792. characterMakers.forEach(character => {
  65793. results.push(character());
  65794. });
  65795. return results;
  65796. }