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

69272 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. "house-mouse": {
  2475. name: "House Mouse",
  2476. parents: ["mouse"]
  2477. },
  2478. "servine": {
  2479. name: "Servine",
  2480. parents: ["pokemon", "snake", "plant"]
  2481. },
  2482. "dragonite": {
  2483. name: "Dragonite",
  2484. parents: ["pokemon", "dragon"]
  2485. },
  2486. "virginia-opossum": {
  2487. name: "Virginia Opossum",
  2488. parents: ["opossum"]
  2489. },
  2490. }
  2491. //species
  2492. function getSpeciesInfo(speciesList) {
  2493. let result = new Set();
  2494. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2495. result.add(entry)
  2496. });
  2497. return Array.from(result);
  2498. };
  2499. function getSpeciesInfoHelper(species) {
  2500. if (!speciesData[species]) {
  2501. console.warn(species + " doesn't exist");
  2502. return [];
  2503. }
  2504. if (speciesData[species].parents) {
  2505. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2506. } else {
  2507. return [species];
  2508. }
  2509. }
  2510. characterMakers.push(() => makeCharacter(
  2511. {
  2512. name: "Fen",
  2513. species: ["crux"],
  2514. description: {
  2515. title: "Bio",
  2516. text: "Very furry. Sheds on everything."
  2517. },
  2518. tags: [
  2519. "anthro",
  2520. "goo"
  2521. ]
  2522. },
  2523. {
  2524. front: {
  2525. height: math.unit(12, "feet"),
  2526. weight: math.unit(2400, "lb"),
  2527. preyCapacity: math.unit(1, "people"),
  2528. name: "Front",
  2529. image: {
  2530. source: "./media/characters/fen/front.svg",
  2531. extra: 1804/1562,
  2532. bottom: 205/2009
  2533. },
  2534. extraAttributes: {
  2535. pawSize: {
  2536. name: "Paw Size",
  2537. power: 2,
  2538. type: "area",
  2539. base: math.unit(0.35, "m^2")
  2540. }
  2541. }
  2542. },
  2543. diving: {
  2544. height: math.unit(4.9, "meters"),
  2545. weight: math.unit(2400, "lb"),
  2546. name: "Diving",
  2547. image: {
  2548. source: "./media/characters/fen/diving.svg"
  2549. }
  2550. },
  2551. sleeby: {
  2552. height: math.unit(3.45, "meters"),
  2553. weight: math.unit(2400, "lb"),
  2554. name: "Sleeby",
  2555. image: {
  2556. source: "./media/characters/fen/sleeby.svg"
  2557. }
  2558. },
  2559. goo: {
  2560. height: math.unit(12, "feet"),
  2561. weight: math.unit(3600, "lb"),
  2562. volume: math.unit(1000, "liters"),
  2563. preyCapacity: math.unit(6, "people"),
  2564. name: "Goo",
  2565. image: {
  2566. source: "./media/characters/fen/goo.svg",
  2567. extra: 1307/1071,
  2568. bottom: 134/1441
  2569. }
  2570. },
  2571. horror: {
  2572. height: math.unit(13.6, "feet"),
  2573. weight: math.unit(2400, "lb"),
  2574. preyCapacity: math.unit(1, "people"),
  2575. name: "Horror",
  2576. image: {
  2577. source: "./media/characters/fen/horror.svg",
  2578. extra: 893/797,
  2579. bottom: 0/893
  2580. }
  2581. },
  2582. gooNsfw: {
  2583. height: math.unit(12, "feet"),
  2584. weight: math.unit(3750, "lb"),
  2585. volume: math.unit(1000, "liters"),
  2586. preyCapacity: math.unit(6, "people"),
  2587. name: "Goo (NSFW)",
  2588. image: {
  2589. source: "./media/characters/fen/goo-nsfw.svg",
  2590. extra: 1875/1734,
  2591. bottom: 122/1997
  2592. }
  2593. },
  2594. maw: {
  2595. height: math.unit(5.03, "feet"),
  2596. name: "Maw",
  2597. image: {
  2598. source: "./media/characters/fen/maw.svg"
  2599. }
  2600. },
  2601. gooCeiling: {
  2602. height: math.unit(6.6, "feet"),
  2603. weight: math.unit(3000, "lb"),
  2604. volume: math.unit(1000, "liters"),
  2605. preyCapacity: math.unit(6, "people"),
  2606. name: "Maw (Goo)",
  2607. image: {
  2608. source: "./media/characters/fen/goo-maw.svg"
  2609. }
  2610. },
  2611. paw: {
  2612. height: math.unit(3.77, "feet"),
  2613. name: "Paw",
  2614. image: {
  2615. source: "./media/characters/fen/paw.svg"
  2616. },
  2617. extraAttributes: {
  2618. "toeSize": {
  2619. name: "Toe Size",
  2620. power: 2,
  2621. type: "area",
  2622. base: math.unit(0.02875, "m^2")
  2623. },
  2624. "pawSize": {
  2625. name: "Paw Size",
  2626. power: 2,
  2627. type: "area",
  2628. base: math.unit(0.378, "m^2")
  2629. },
  2630. }
  2631. },
  2632. tail: {
  2633. height: math.unit(12.1, "feet"),
  2634. name: "Tail",
  2635. image: {
  2636. source: "./media/characters/fen/tail.svg"
  2637. }
  2638. },
  2639. tailFull: {
  2640. height: math.unit(12.1, "feet"),
  2641. name: "Full Tail",
  2642. image: {
  2643. source: "./media/characters/fen/tail-full.svg"
  2644. }
  2645. },
  2646. back: {
  2647. height: math.unit(12, "feet"),
  2648. weight: math.unit(2400, "lb"),
  2649. name: "Back",
  2650. image: {
  2651. source: "./media/characters/fen/back.svg",
  2652. },
  2653. info: {
  2654. description: {
  2655. mode: "append",
  2656. text: "\n\nHe is not currently looking at you."
  2657. }
  2658. }
  2659. },
  2660. full: {
  2661. height: math.unit(1.85, "meter"),
  2662. weight: math.unit(3200, "lb"),
  2663. preyCapacity: math.unit(3, "people"),
  2664. name: "Full",
  2665. image: {
  2666. source: "./media/characters/fen/full.svg",
  2667. extra: 1133/859,
  2668. bottom: 145/1278
  2669. },
  2670. info: {
  2671. description: {
  2672. mode: "append",
  2673. text: "\n\nMunch."
  2674. }
  2675. }
  2676. },
  2677. gooLounging: {
  2678. height: math.unit(4.53, "feet"),
  2679. weight: math.unit(3000, "lb"),
  2680. preyCapacity: math.unit(6, "people"),
  2681. name: "Goo (Lounging)",
  2682. image: {
  2683. source: "./media/characters/fen/goo-lounging.svg",
  2684. bottom: 116 / 613
  2685. }
  2686. },
  2687. lounging: {
  2688. height: math.unit(10.52, "feet"),
  2689. weight: math.unit(2400, "lb"),
  2690. name: "Lounging",
  2691. image: {
  2692. source: "./media/characters/fen/lounging.svg"
  2693. }
  2694. },
  2695. },
  2696. [
  2697. {
  2698. name: "Small",
  2699. height: math.unit(2.2428, "meter")
  2700. },
  2701. {
  2702. name: "Normal",
  2703. height: math.unit(12, "feet"),
  2704. default: true,
  2705. },
  2706. {
  2707. name: "Big",
  2708. height: math.unit(20, "feet")
  2709. },
  2710. {
  2711. name: "Minimacro",
  2712. height: math.unit(40, "feet"),
  2713. info: {
  2714. description: {
  2715. mode: "append",
  2716. text: "\n\nTOO DAMN BIG"
  2717. }
  2718. }
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(100, "feet"),
  2723. info: {
  2724. description: {
  2725. mode: "append",
  2726. text: "\n\nTOO DAMN BIG"
  2727. }
  2728. }
  2729. },
  2730. {
  2731. name: "Megamacro",
  2732. height: math.unit(2, "miles")
  2733. },
  2734. {
  2735. name: "Gigamacro",
  2736. height: math.unit(10, "earths")
  2737. },
  2738. ]
  2739. ))
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2742. {
  2743. front: {
  2744. height: math.unit(183, "cm"),
  2745. weight: math.unit(80, "kg"),
  2746. name: "Front",
  2747. image: {
  2748. source: "./media/characters/sofia-fluttertail/front.svg",
  2749. bottom: 0.01,
  2750. extra: 2154 / 2081
  2751. }
  2752. },
  2753. frontAlt: {
  2754. height: math.unit(183, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Front (alt)",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(183, "cm"),
  2763. weight: math.unit(80, "kg"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/sofia-fluttertail/back.svg"
  2767. }
  2768. },
  2769. kneeling: {
  2770. height: math.unit(125, "cm"),
  2771. weight: math.unit(80, "kg"),
  2772. name: "Kneeling",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2775. extra: 1033 / 977,
  2776. bottom: 23.7 / 1057
  2777. }
  2778. },
  2779. maw: {
  2780. height: math.unit(183 / 5, "cm"),
  2781. name: "Maw",
  2782. image: {
  2783. source: "./media/characters/sofia-fluttertail/maw.svg"
  2784. }
  2785. },
  2786. mawcloseup: {
  2787. height: math.unit(183 / 5 * 0.41, "cm"),
  2788. name: "Maw (Closeup)",
  2789. image: {
  2790. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2791. }
  2792. },
  2793. paws: {
  2794. height: math.unit(1.17, "feet"),
  2795. name: "Paws",
  2796. image: {
  2797. source: "./media/characters/sofia-fluttertail/paws.svg",
  2798. extra: 851 / 851,
  2799. bottom: 17 / 868
  2800. }
  2801. },
  2802. },
  2803. [
  2804. {
  2805. name: "Normal",
  2806. height: math.unit(1.83, "meter")
  2807. },
  2808. {
  2809. name: "Size Thief",
  2810. height: math.unit(18, "feet")
  2811. },
  2812. {
  2813. name: "50 Foot Collie",
  2814. height: math.unit(50, "feet")
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(96, "feet"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Megamerger",
  2823. height: math.unit(650, "feet")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(7, "feet"),
  2832. weight: math.unit(100, "kg"),
  2833. name: "Front",
  2834. image: {
  2835. source: "./media/characters/march/front.svg",
  2836. extra: 1992/1851,
  2837. bottom: 39/2031
  2838. }
  2839. },
  2840. foot: {
  2841. height: math.unit(0.9, "feet"),
  2842. name: "Foot",
  2843. image: {
  2844. source: "./media/characters/march/foot.svg"
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(7.9, "feet")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(220, "meters")
  2856. },
  2857. {
  2858. name: "Megamacro",
  2859. height: math.unit(2.98, "km"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Gigamacro",
  2864. height: math.unit(15963, "km")
  2865. },
  2866. {
  2867. name: "Teramacro",
  2868. height: math.unit(2980000000, "km")
  2869. },
  2870. {
  2871. name: "Examacro",
  2872. height: math.unit(250, "parsecs")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(6, "feet"),
  2881. weight: math.unit(60, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/noir/front.svg",
  2885. extra: 1793/1668,
  2886. bottom: 74/1867
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Normal",
  2893. height: math.unit(6.6, "feet")
  2894. },
  2895. {
  2896. name: "Macro",
  2897. height: math.unit(500, "feet")
  2898. },
  2899. {
  2900. name: "Megamacro",
  2901. height: math.unit(2.5, "km"),
  2902. default: true
  2903. },
  2904. {
  2905. name: "Gigamacro",
  2906. height: math.unit(22500, "km")
  2907. },
  2908. {
  2909. name: "Teramacro",
  2910. height: math.unit(2500000000, "km")
  2911. },
  2912. {
  2913. name: "Examacro",
  2914. height: math.unit(200, "parsecs")
  2915. },
  2916. ]
  2917. ))
  2918. characterMakers.push(() => makeCharacter(
  2919. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2920. {
  2921. front: {
  2922. height: math.unit(7, "feet"),
  2923. weight: math.unit(100, "kg"),
  2924. name: "Front",
  2925. image: {
  2926. source: "./media/characters/okuri/front.svg",
  2927. extra: 596/554,
  2928. bottom: 17/613
  2929. }
  2930. },
  2931. back: {
  2932. height: math.unit(7, "feet"),
  2933. weight: math.unit(100, "kg"),
  2934. name: "Back",
  2935. image: {
  2936. source: "./media/characters/okuri/back.svg",
  2937. extra: 797/717,
  2938. bottom: 16/813
  2939. }
  2940. },
  2941. wings: {
  2942. height: math.unit(7, "feet"),
  2943. weight: math.unit(100, "kg"),
  2944. name: "Wings",
  2945. image: {
  2946. source: "./media/characters/okuri/wings.svg",
  2947. extra: 773/692,
  2948. bottom: 16/789
  2949. }
  2950. },
  2951. head: {
  2952. height: math.unit(2.17, "feet"),
  2953. name: "Head",
  2954. image: {
  2955. source: "./media/characters/okuri/head.svg"
  2956. }
  2957. },
  2958. casual: {
  2959. height: math.unit(7, "feet"),
  2960. weight: math.unit(100, "kg"),
  2961. name: "Casual",
  2962. image: {
  2963. source: "./media/characters/okuri/casual.svg",
  2964. extra: 463/421,
  2965. bottom: 14/477
  2966. }
  2967. },
  2968. deity: {
  2969. height: math.unit(7, "feet"),
  2970. weight: math.unit(100, "kg"),
  2971. name: "Deity",
  2972. image: {
  2973. source: "./media/characters/okuri/deity.svg",
  2974. extra: 463/421,
  2975. bottom: 14/477
  2976. }
  2977. },
  2978. armor: {
  2979. height: math.unit(7, "feet"),
  2980. weight: math.unit(100, "kg"),
  2981. name: "Armor",
  2982. image: {
  2983. source: "./media/characters/okuri/armor.svg",
  2984. extra: 463/421,
  2985. bottom: 14/477
  2986. }
  2987. },
  2988. sciFi: {
  2989. height: math.unit(7, "feet"),
  2990. weight: math.unit(100, "kg"),
  2991. name: "Sci-Fi",
  2992. image: {
  2993. source: "./media/characters/okuri/sci-fi.svg",
  2994. extra: 463/421,
  2995. bottom: 14/477
  2996. }
  2997. },
  2998. },
  2999. [
  3000. {
  3001. name: "Smallest",
  3002. height: math.unit(5 + 2/12, "feet")
  3003. },
  3004. {
  3005. name: "Smaller",
  3006. height: math.unit(300, "feet")
  3007. },
  3008. {
  3009. name: "Small",
  3010. height: math.unit(1000, "feet")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(1, "mile")
  3015. },
  3016. {
  3017. name: "Mega Macro (Small)",
  3018. height: math.unit(20, "km")
  3019. },
  3020. {
  3021. name: "Mega Macro (Large)",
  3022. height: math.unit(600, "km")
  3023. },
  3024. {
  3025. name: "Giga Macro",
  3026. height: math.unit(10000, "km")
  3027. },
  3028. {
  3029. name: "Normal",
  3030. height: math.unit(577560, "km"),
  3031. default: true
  3032. },
  3033. {
  3034. name: "Large",
  3035. height: math.unit(4, "galaxies")
  3036. },
  3037. {
  3038. name: "Largest",
  3039. height: math.unit(15, "multiverses")
  3040. },
  3041. ]
  3042. ))
  3043. characterMakers.push(() => makeCharacter(
  3044. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  3045. {
  3046. front: {
  3047. height: math.unit(7, "feet"),
  3048. weight: math.unit(100, "kg"),
  3049. name: "Front",
  3050. image: {
  3051. source: "./media/characters/manny/front.svg",
  3052. extra: 1,
  3053. bottom: 0.06
  3054. }
  3055. },
  3056. back: {
  3057. height: math.unit(7, "feet"),
  3058. weight: math.unit(100, "kg"),
  3059. name: "Back",
  3060. image: {
  3061. source: "./media/characters/manny/back.svg",
  3062. extra: 1,
  3063. bottom: 0.014
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(7, "feet"),
  3071. },
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(78, "feet"),
  3075. default: true
  3076. },
  3077. {
  3078. name: "Macro+",
  3079. height: math.unit(300, "meters")
  3080. },
  3081. {
  3082. name: "Macro++",
  3083. height: math.unit(2400, "meters")
  3084. },
  3085. {
  3086. name: "Megamacro",
  3087. height: math.unit(5167, "meters")
  3088. },
  3089. {
  3090. name: "Gigamacro",
  3091. height: math.unit(41769, "miles")
  3092. },
  3093. ]
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3097. {
  3098. front: {
  3099. height: math.unit(7, "feet"),
  3100. weight: math.unit(100, "kg"),
  3101. name: "Front",
  3102. image: {
  3103. source: "./media/characters/adake/front-1.svg"
  3104. }
  3105. },
  3106. frontAlt: {
  3107. height: math.unit(7, "feet"),
  3108. weight: math.unit(100, "kg"),
  3109. name: "Front (Alt)",
  3110. image: {
  3111. source: "./media/characters/adake/front-2.svg",
  3112. extra: 1,
  3113. bottom: 0.01
  3114. }
  3115. },
  3116. back: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(100, "kg"),
  3119. name: "Back",
  3120. image: {
  3121. source: "./media/characters/adake/back.svg",
  3122. }
  3123. },
  3124. kneel: {
  3125. height: math.unit(5.385, "feet"),
  3126. weight: math.unit(100, "kg"),
  3127. name: "Kneeling",
  3128. image: {
  3129. source: "./media/characters/adake/kneel.svg",
  3130. bottom: 0.052
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Normal",
  3137. height: math.unit(7, "feet"),
  3138. },
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(78, "feet"),
  3142. default: true
  3143. },
  3144. {
  3145. name: "Macro+",
  3146. height: math.unit(300, "meters")
  3147. },
  3148. {
  3149. name: "Macro++",
  3150. height: math.unit(2400, "meters")
  3151. },
  3152. {
  3153. name: "Megamacro",
  3154. height: math.unit(5167, "meters")
  3155. },
  3156. {
  3157. name: "Gigamacro",
  3158. height: math.unit(41769, "miles")
  3159. },
  3160. ]
  3161. ))
  3162. characterMakers.push(() => makeCharacter(
  3163. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3164. {
  3165. front: {
  3166. height: math.unit(1.65, "meters"),
  3167. weight: math.unit(50, "kg"),
  3168. name: "Front",
  3169. image: {
  3170. source: "./media/characters/elijah/front.svg",
  3171. extra: 858 / 830,
  3172. bottom: 95.5 / 953.8559
  3173. }
  3174. },
  3175. back: {
  3176. height: math.unit(1.65, "meters"),
  3177. weight: math.unit(50, "kg"),
  3178. name: "Back",
  3179. image: {
  3180. source: "./media/characters/elijah/back.svg",
  3181. extra: 895 / 850,
  3182. bottom: 5.3 / 897.956
  3183. }
  3184. },
  3185. frontNsfw: {
  3186. height: math.unit(1.65, "meters"),
  3187. weight: math.unit(50, "kg"),
  3188. name: "Front (NSFW)",
  3189. image: {
  3190. source: "./media/characters/elijah/front-nsfw.svg",
  3191. extra: 858 / 830,
  3192. bottom: 95.5 / 953.8559
  3193. }
  3194. },
  3195. backNsfw: {
  3196. height: math.unit(1.65, "meters"),
  3197. weight: math.unit(50, "kg"),
  3198. name: "Back (NSFW)",
  3199. image: {
  3200. source: "./media/characters/elijah/back-nsfw.svg",
  3201. extra: 895 / 850,
  3202. bottom: 5.3 / 897.956
  3203. }
  3204. },
  3205. dick: {
  3206. height: math.unit(1, "feet"),
  3207. name: "Dick",
  3208. image: {
  3209. source: "./media/characters/elijah/dick.svg"
  3210. }
  3211. },
  3212. beakOpen: {
  3213. height: math.unit(1.25, "feet"),
  3214. name: "Beak (Open)",
  3215. image: {
  3216. source: "./media/characters/elijah/beak-open.svg"
  3217. }
  3218. },
  3219. beakShut: {
  3220. height: math.unit(1.25, "feet"),
  3221. name: "Beak (Shut)",
  3222. image: {
  3223. source: "./media/characters/elijah/beak-shut.svg"
  3224. }
  3225. },
  3226. footFlexing: {
  3227. height: math.unit(1.61, "feet"),
  3228. name: "Foot (Flexing)",
  3229. image: {
  3230. source: "./media/characters/elijah/foot-flexing.svg"
  3231. }
  3232. },
  3233. footStepping: {
  3234. height: math.unit(1.44, "feet"),
  3235. name: "Foot (Stepping)",
  3236. image: {
  3237. source: "./media/characters/elijah/foot-stepping.svg"
  3238. }
  3239. },
  3240. plantigradeLeg: {
  3241. height: math.unit(2.34, "feet"),
  3242. name: "Plantigrade Leg",
  3243. image: {
  3244. source: "./media/characters/elijah/plantigrade-leg.svg"
  3245. }
  3246. },
  3247. plantigradeFootLeft: {
  3248. height: math.unit(0.9, "feet"),
  3249. name: "Plantigrade Foot (Left)",
  3250. image: {
  3251. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3252. }
  3253. },
  3254. plantigradeFootRight: {
  3255. height: math.unit(0.9, "feet"),
  3256. name: "Plantigrade Foot (Right)",
  3257. image: {
  3258. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3259. }
  3260. },
  3261. },
  3262. [
  3263. {
  3264. name: "Normal",
  3265. height: math.unit(1.65, "meters")
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(55, "meters"),
  3270. default: true
  3271. },
  3272. {
  3273. name: "Macro+",
  3274. height: math.unit(105, "meters")
  3275. },
  3276. ]
  3277. ))
  3278. characterMakers.push(() => makeCharacter(
  3279. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3280. {
  3281. front: {
  3282. height: math.unit(7 + 2/12, "feet"),
  3283. weight: math.unit(320, "kg"),
  3284. preyCapacity: math.unit(0.276549935, "people"),
  3285. name: "Front",
  3286. image: {
  3287. source: "./media/characters/rai/front.svg",
  3288. extra: 1802/1696,
  3289. bottom: 68/1870
  3290. },
  3291. form: "anthro",
  3292. default: true
  3293. },
  3294. frontDressed: {
  3295. height: math.unit(7 + 2/12, "feet"),
  3296. weight: math.unit(320, "kg"),
  3297. preyCapacity: math.unit(0.276549935, "people"),
  3298. name: "Front (Dressed)",
  3299. image: {
  3300. source: "./media/characters/rai/front-dressed.svg",
  3301. extra: 1802/1696,
  3302. bottom: 68/1870
  3303. },
  3304. form: "anthro"
  3305. },
  3306. side: {
  3307. height: math.unit(7 + 2/12, "feet"),
  3308. weight: math.unit(320, "kg"),
  3309. preyCapacity: math.unit(0.276549935, "people"),
  3310. name: "Side",
  3311. image: {
  3312. source: "./media/characters/rai/side.svg",
  3313. extra: 1789/1710,
  3314. bottom: 115/1904
  3315. },
  3316. form: "anthro"
  3317. },
  3318. back: {
  3319. height: math.unit(7 + 2/12, "feet"),
  3320. weight: math.unit(320, "kg"),
  3321. preyCapacity: math.unit(0.276549935, "people"),
  3322. name: "Back",
  3323. image: {
  3324. source: "./media/characters/rai/back.svg",
  3325. extra: 1770/1707,
  3326. bottom: 28/1798
  3327. },
  3328. form: "anthro"
  3329. },
  3330. feral: {
  3331. height: math.unit(9.5, "feet"),
  3332. weight: math.unit(640, "kg"),
  3333. preyCapacity: math.unit(4, "people"),
  3334. name: "Feral",
  3335. image: {
  3336. source: "./media/characters/rai/feral.svg",
  3337. extra: 945/553,
  3338. bottom: 176/1121
  3339. },
  3340. form: "feral",
  3341. default: true
  3342. },
  3343. dragon: {
  3344. height: math.unit(23, "feet"),
  3345. weight: math.unit(50000, "lb"),
  3346. name: "Dragon",
  3347. image: {
  3348. source: "./media/characters/rai/dragon.svg",
  3349. extra: 2498 / 2030,
  3350. bottom: 85.2 / 2584
  3351. },
  3352. form: "dragon",
  3353. default: true
  3354. },
  3355. maw: {
  3356. height: math.unit(1.69, "feet"),
  3357. name: "Maw",
  3358. image: {
  3359. source: "./media/characters/rai/maw.svg"
  3360. },
  3361. form: "anthro"
  3362. },
  3363. },
  3364. [
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(7 + 2/12, "feet"),
  3368. form: "anthro"
  3369. },
  3370. {
  3371. name: "Big",
  3372. height: math.unit(11, "feet"),
  3373. form: "anthro"
  3374. },
  3375. {
  3376. name: "Minimacro",
  3377. height: math.unit(77, "feet"),
  3378. form: "anthro"
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(302, "feet"),
  3383. default: true,
  3384. form: "anthro"
  3385. },
  3386. {
  3387. name: "Normal",
  3388. height: math.unit(9.5, "feet"),
  3389. form: "feral",
  3390. default: true
  3391. },
  3392. {
  3393. name: "Normal",
  3394. height: math.unit(23, "feet"),
  3395. form: "dragon",
  3396. default: true
  3397. }
  3398. ],
  3399. {
  3400. "anthro": {
  3401. name: "Anthro",
  3402. default: true
  3403. },
  3404. "feral": {
  3405. name: "Feral",
  3406. },
  3407. "dragon": {
  3408. name: "Dragon",
  3409. },
  3410. }
  3411. ))
  3412. characterMakers.push(() => makeCharacter(
  3413. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3414. {
  3415. frontDressed: {
  3416. height: math.unit(216, "feet"),
  3417. weight: math.unit(7000000, "lb"),
  3418. preyCapacity: math.unit(1321, "people"),
  3419. name: "Front (Dressed)",
  3420. image: {
  3421. source: "./media/characters/jazzy/front-dressed.svg",
  3422. extra: 2738 / 2651,
  3423. bottom: 41.8 / 2786
  3424. }
  3425. },
  3426. backDressed: {
  3427. height: math.unit(216, "feet"),
  3428. weight: math.unit(7000000, "lb"),
  3429. preyCapacity: math.unit(1321, "people"),
  3430. name: "Back (Dressed)",
  3431. image: {
  3432. source: "./media/characters/jazzy/back-dressed.svg",
  3433. extra: 2775 / 2673,
  3434. bottom: 36.8 / 2817
  3435. }
  3436. },
  3437. front: {
  3438. height: math.unit(216, "feet"),
  3439. weight: math.unit(7000000, "lb"),
  3440. preyCapacity: math.unit(1321, "people"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/jazzy/front.svg",
  3444. extra: 2738 / 2651,
  3445. bottom: 41.8 / 2786
  3446. }
  3447. },
  3448. back: {
  3449. height: math.unit(216, "feet"),
  3450. weight: math.unit(7000000, "lb"),
  3451. preyCapacity: math.unit(1321, "people"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/jazzy/back.svg",
  3455. extra: 2775 / 2673,
  3456. bottom: 36.8 / 2817
  3457. }
  3458. },
  3459. maw: {
  3460. height: math.unit(20, "feet"),
  3461. name: "Maw",
  3462. image: {
  3463. source: "./media/characters/jazzy/maw.svg"
  3464. }
  3465. },
  3466. paws: {
  3467. height: math.unit(27.5, "feet"),
  3468. name: "Paws",
  3469. image: {
  3470. source: "./media/characters/jazzy/paws.svg"
  3471. }
  3472. },
  3473. eye: {
  3474. height: math.unit(4.4, "feet"),
  3475. name: "Eye",
  3476. image: {
  3477. source: "./media/characters/jazzy/eye.svg"
  3478. }
  3479. },
  3480. droneOffense: {
  3481. height: math.unit(9.5, "inches"),
  3482. name: "Drone (Offense)",
  3483. image: {
  3484. source: "./media/characters/jazzy/drone-offense.svg"
  3485. }
  3486. },
  3487. droneRecon: {
  3488. height: math.unit(9.5, "inches"),
  3489. name: "Drone (Recon)",
  3490. image: {
  3491. source: "./media/characters/jazzy/drone-recon.svg"
  3492. }
  3493. },
  3494. droneDefense: {
  3495. height: math.unit(9.5, "inches"),
  3496. name: "Drone (Defense)",
  3497. image: {
  3498. source: "./media/characters/jazzy/drone-defense.svg"
  3499. }
  3500. },
  3501. },
  3502. [
  3503. {
  3504. name: "Macro",
  3505. height: math.unit(216, "feet"),
  3506. default: true
  3507. },
  3508. ]
  3509. ))
  3510. characterMakers.push(() => makeCharacter(
  3511. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3512. {
  3513. front: {
  3514. height: math.unit(9 + 6/12, "feet"),
  3515. weight: math.unit(700, "lb"),
  3516. name: "Front",
  3517. image: {
  3518. source: "./media/characters/flamm/front.svg",
  3519. extra: 1736/1596,
  3520. bottom: 93/1829
  3521. }
  3522. },
  3523. buff: {
  3524. height: math.unit(9 + 6/12, "feet"),
  3525. weight: math.unit(950, "lb"),
  3526. name: "Buff",
  3527. image: {
  3528. source: "./media/characters/flamm/buff.svg",
  3529. extra: 3018/2874,
  3530. bottom: 221/3239
  3531. }
  3532. },
  3533. lyingFront: {
  3534. height: math.unit(9 + 6/12, "feet"),
  3535. weight: math.unit(700, "lb"),
  3536. name: "Lying (Front)",
  3537. image: {
  3538. source: "./media/characters/flamm/lying-front.svg"
  3539. },
  3540. extraAttributes: {
  3541. "ballVolume": {
  3542. name: "Ball Volume",
  3543. power: 3,
  3544. type: "volume",
  3545. base: math.unit(5, "liters")
  3546. },
  3547. }
  3548. },
  3549. lyingBack: {
  3550. height: math.unit(9 + 6/12, "feet"),
  3551. weight: math.unit(700, "lb"),
  3552. name: "Lying (Back)",
  3553. image: {
  3554. source: "./media/characters/flamm/lying-back.svg"
  3555. },
  3556. extraAttributes: {
  3557. "ballVolume": {
  3558. name: "Ball Volume",
  3559. power: 3,
  3560. type: "volume",
  3561. base: math.unit(5, "liters")
  3562. },
  3563. }
  3564. },
  3565. },
  3566. [
  3567. {
  3568. name: "Normal",
  3569. height: math.unit(9.5, "feet")
  3570. },
  3571. {
  3572. name: "Macro",
  3573. height: math.unit(200, "feet"),
  3574. default: true
  3575. },
  3576. ]
  3577. ))
  3578. characterMakers.push(() => makeCharacter(
  3579. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3580. {
  3581. front: {
  3582. height: math.unit(5 + 3/12, "feet"),
  3583. weight: math.unit(60, "kg"),
  3584. name: "Front",
  3585. image: {
  3586. source: "./media/characters/zephiro/front.svg",
  3587. extra: 1873/1761,
  3588. bottom: 147/2020
  3589. }
  3590. },
  3591. side: {
  3592. height: math.unit(5 + 3/12, "feet"),
  3593. weight: math.unit(60, "kg"),
  3594. name: "Side",
  3595. image: {
  3596. source: "./media/characters/zephiro/side.svg",
  3597. extra: 1929/1827,
  3598. bottom: 65/1994
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(5 + 3/12, "feet"),
  3603. weight: math.unit(60, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/zephiro/back.svg",
  3607. extra: 1926/1816,
  3608. bottom: 41/1967
  3609. }
  3610. },
  3611. hand: {
  3612. height: math.unit(0.68, "feet"),
  3613. name: "Hand",
  3614. image: {
  3615. source: "./media/characters/zephiro/hand.svg"
  3616. }
  3617. },
  3618. paw: {
  3619. height: math.unit(1, "feet"),
  3620. name: "Paw",
  3621. image: {
  3622. source: "./media/characters/zephiro/paw.svg"
  3623. }
  3624. },
  3625. beans: {
  3626. height: math.unit(0.93, "feet"),
  3627. name: "Beans",
  3628. image: {
  3629. source: "./media/characters/zephiro/beans.svg"
  3630. }
  3631. },
  3632. },
  3633. [
  3634. {
  3635. name: "Micro",
  3636. height: math.unit(3, "inches")
  3637. },
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(5 + 3 / 12, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(118, "feet")
  3646. },
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3651. {
  3652. front: {
  3653. height: math.unit(5, "feet"),
  3654. weight: math.unit(90, "kg"),
  3655. preyCapacity: math.unit(14, "people"),
  3656. name: "Front",
  3657. image: {
  3658. source: "./media/characters/fory/front.svg",
  3659. extra: 2862 / 2674,
  3660. bottom: 180 / 3043.8
  3661. },
  3662. form: "weaselbun",
  3663. default: true,
  3664. extraAttributes: {
  3665. "pawSize": {
  3666. name: "Paw Size",
  3667. power: 2,
  3668. type: "area",
  3669. base: math.unit(0.1596, "m^2")
  3670. },
  3671. "pawLength": {
  3672. name: "Paw Length",
  3673. power: 1,
  3674. type: "length",
  3675. base: math.unit(0.7, "m")
  3676. }
  3677. }
  3678. },
  3679. back: {
  3680. height: math.unit(5, "feet"),
  3681. weight: math.unit(90, "kg"),
  3682. preyCapacity: math.unit(14, "people"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/fory/back.svg",
  3686. extra: 1790/1672,
  3687. bottom: 84/1874
  3688. },
  3689. form: "weaselbun",
  3690. extraAttributes: {
  3691. "pawSize": {
  3692. name: "Paw Size",
  3693. power: 2,
  3694. type: "area",
  3695. base: math.unit(0.1596, "m^2")
  3696. },
  3697. "pawLength": {
  3698. name: "Paw Length",
  3699. power: 1,
  3700. type: "length",
  3701. base: math.unit(0.7, "m")
  3702. }
  3703. }
  3704. },
  3705. paw: {
  3706. height: math.unit(2.14, "feet"),
  3707. name: "Paw",
  3708. image: {
  3709. source: "./media/characters/fory/paw.svg"
  3710. },
  3711. form: "weaselbun",
  3712. extraAttributes: {
  3713. "pawSize": {
  3714. name: "Paw Size",
  3715. power: 2,
  3716. type: "area",
  3717. base: math.unit(0.1596, "m^2")
  3718. },
  3719. "pawLength": {
  3720. name: "Paw Length",
  3721. power: 1,
  3722. type: "length",
  3723. base: math.unit(0.48, "m")
  3724. }
  3725. }
  3726. },
  3727. bunBack: {
  3728. height: math.unit(3, "feet"),
  3729. weight: math.unit(20, "kg"),
  3730. preyCapacity: math.unit(3, "people"),
  3731. name: "Back",
  3732. image: {
  3733. source: "./media/characters/fory/bun-back.svg",
  3734. extra: 1749/1564,
  3735. bottom: 246/1995
  3736. },
  3737. form: "bun",
  3738. default: true,
  3739. extraAttributes: {
  3740. "pawSize": {
  3741. name: "Paw Size",
  3742. power: 2,
  3743. type: "area",
  3744. base: math.unit(0.072, "m^2")
  3745. },
  3746. "pawLength": {
  3747. name: "Paw Length",
  3748. power: 1,
  3749. type: "length",
  3750. base: math.unit(0.45, "m")
  3751. }
  3752. }
  3753. },
  3754. },
  3755. [
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(5, "feet"),
  3759. form: "weaselbun"
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(50, "feet"),
  3764. default: true,
  3765. form: "weaselbun"
  3766. },
  3767. {
  3768. name: "Megamacro",
  3769. height: math.unit(10, "miles"),
  3770. form: "weaselbun"
  3771. },
  3772. {
  3773. name: "Gigamacro",
  3774. height: math.unit(5, "earths"),
  3775. form: "weaselbun"
  3776. },
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(3, "feet"),
  3780. default: true,
  3781. form: "bun"
  3782. },
  3783. {
  3784. name: "Fun-Size",
  3785. height: math.unit(12, "feet"),
  3786. form: "bun"
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(100, "feet"),
  3791. form: "bun"
  3792. },
  3793. {
  3794. name: "Planetary",
  3795. height: math.unit(3, "earths"),
  3796. form: "bun"
  3797. },
  3798. ],
  3799. {
  3800. "weaselbun": {
  3801. name: "Weaselbun",
  3802. default: true
  3803. },
  3804. "bun": {
  3805. name: "Bun",
  3806. },
  3807. }
  3808. ))
  3809. characterMakers.push(() => makeCharacter(
  3810. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3811. {
  3812. front: {
  3813. height: math.unit(7, "feet"),
  3814. weight: math.unit(90, "kg"),
  3815. name: "Front",
  3816. image: {
  3817. source: "./media/characters/kurrikage/front.svg",
  3818. extra: 1845/1733,
  3819. bottom: 119/1964
  3820. }
  3821. },
  3822. back: {
  3823. height: math.unit(7, "feet"),
  3824. weight: math.unit(90, "kg"),
  3825. name: "Back",
  3826. image: {
  3827. source: "./media/characters/kurrikage/back.svg",
  3828. extra: 1790/1677,
  3829. bottom: 61/1851
  3830. }
  3831. },
  3832. dressed: {
  3833. height: math.unit(7, "feet"),
  3834. weight: math.unit(90, "kg"),
  3835. name: "Dressed",
  3836. image: {
  3837. source: "./media/characters/kurrikage/dressed.svg",
  3838. extra: 1845/1733,
  3839. bottom: 119/1964
  3840. }
  3841. },
  3842. foot: {
  3843. height: math.unit(1.5, "feet"),
  3844. name: "Foot",
  3845. image: {
  3846. source: "./media/characters/kurrikage/foot.svg"
  3847. }
  3848. },
  3849. staff: {
  3850. height: math.unit(6.7, "feet"),
  3851. name: "Staff",
  3852. image: {
  3853. source: "./media/characters/kurrikage/staff.svg"
  3854. }
  3855. },
  3856. peek: {
  3857. height: math.unit(1.05, "feet"),
  3858. name: "Peeking",
  3859. image: {
  3860. source: "./media/characters/kurrikage/peek.svg",
  3861. bottom: 0.08
  3862. }
  3863. },
  3864. },
  3865. [
  3866. {
  3867. name: "Normal",
  3868. height: math.unit(12, "feet"),
  3869. default: true
  3870. },
  3871. {
  3872. name: "Big",
  3873. height: math.unit(20, "feet")
  3874. },
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(500, "feet")
  3878. },
  3879. {
  3880. name: "Megamacro",
  3881. height: math.unit(20, "miles")
  3882. },
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(6, "feet"),
  3890. weight: math.unit(75, "kg"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/shingo/front.svg",
  3894. extra: 1900/1825,
  3895. bottom: 82/1982
  3896. }
  3897. },
  3898. side: {
  3899. height: math.unit(6, "feet"),
  3900. weight: math.unit(75, "kg"),
  3901. name: "Side",
  3902. image: {
  3903. source: "./media/characters/shingo/side.svg",
  3904. extra: 1930/1865,
  3905. bottom: 16/1946
  3906. }
  3907. },
  3908. back: {
  3909. height: math.unit(6, "feet"),
  3910. weight: math.unit(75, "kg"),
  3911. name: "Back",
  3912. image: {
  3913. source: "./media/characters/shingo/back.svg",
  3914. extra: 1922/1852,
  3915. bottom: 16/1938
  3916. }
  3917. },
  3918. frontDressed: {
  3919. height: math.unit(6, "feet"),
  3920. weight: math.unit(150, "lb"),
  3921. name: "Front (Dressed)",
  3922. image: {
  3923. source: "./media/characters/shingo/front-dressed.svg",
  3924. extra: 1900/1825,
  3925. bottom: 82/1982
  3926. }
  3927. },
  3928. paw: {
  3929. height: math.unit(1.29, "feet"),
  3930. name: "Paw",
  3931. image: {
  3932. source: "./media/characters/shingo/paw.svg"
  3933. }
  3934. },
  3935. hand: {
  3936. height: math.unit(1.07, "feet"),
  3937. name: "Hand",
  3938. image: {
  3939. source: "./media/characters/shingo/hand.svg"
  3940. }
  3941. },
  3942. frontAlt: {
  3943. height: math.unit(6, "feet"),
  3944. weight: math.unit(75, "kg"),
  3945. name: "Front (Alt)",
  3946. image: {
  3947. source: "./media/characters/shingo/front-alt.svg",
  3948. extra: 3511 / 3338,
  3949. bottom: 0.005
  3950. }
  3951. },
  3952. frontAlt2: {
  3953. height: math.unit(6, "feet"),
  3954. weight: math.unit(75, "kg"),
  3955. name: "Front (Alt 2)",
  3956. image: {
  3957. source: "./media/characters/shingo/front-alt-2.svg",
  3958. extra: 706/681,
  3959. bottom: 11/717
  3960. }
  3961. },
  3962. pawAlt: {
  3963. height: math.unit(1, "feet"),
  3964. name: "Paw (Alt)",
  3965. image: {
  3966. source: "./media/characters/shingo/paw-alt.svg"
  3967. }
  3968. },
  3969. },
  3970. [
  3971. {
  3972. name: "Micro",
  3973. height: math.unit(4, "inches")
  3974. },
  3975. {
  3976. name: "Normal",
  3977. height: math.unit(6, "feet"),
  3978. default: true
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(108, "feet")
  3983. },
  3984. {
  3985. name: "Macro+",
  3986. height: math.unit(1500, "feet")
  3987. },
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3992. {
  3993. side: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(75, "kg"),
  3996. name: "Side",
  3997. image: {
  3998. source: "./media/characters/aigey/side.svg"
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(200, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Megamacro",
  4010. height: math.unit(100, "miles")
  4011. },
  4012. ]
  4013. )
  4014. )
  4015. characterMakers.push(() => makeCharacter(
  4016. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  4017. {
  4018. front: {
  4019. height: math.unit(13, "feet"),
  4020. weight: math.unit(1036.80, "kg"),
  4021. name: "Front",
  4022. image: {
  4023. source: "./media/characters/natasha/front.svg",
  4024. extra: 1301/1210,
  4025. bottom: 39/1340
  4026. }
  4027. },
  4028. back: {
  4029. height: math.unit(13, "feet"),
  4030. weight: math.unit(1036.80, "kg"),
  4031. name: "Back",
  4032. image: {
  4033. source: "./media/characters/natasha/back.svg",
  4034. extra: 1342/1252,
  4035. bottom: 20/1362
  4036. }
  4037. },
  4038. head: {
  4039. height: math.unit(3.48, "feet"),
  4040. name: "Head",
  4041. image: {
  4042. source: "./media/characters/natasha/head.svg"
  4043. }
  4044. },
  4045. jaws: {
  4046. height: math.unit(3.52, "feet"),
  4047. name: "Jaws",
  4048. image: {
  4049. source: "./media/characters/natasha/jaws.svg"
  4050. }
  4051. },
  4052. paws: {
  4053. height: math.unit(2.7, "feet"),
  4054. name: "Paws",
  4055. image: {
  4056. source: "./media/characters/natasha/paws.svg"
  4057. }
  4058. },
  4059. collar: {
  4060. height: math.unit(0.89, "feet"),
  4061. name: "Collar",
  4062. image: {
  4063. source: "./media/characters/natasha/collar.svg"
  4064. }
  4065. },
  4066. gauge: {
  4067. height: math.unit(0.36, "feet"),
  4068. name: "Gauge",
  4069. image: {
  4070. source: "./media/characters/natasha/gauge.svg"
  4071. }
  4072. },
  4073. },
  4074. [
  4075. {
  4076. name: "Shortstack",
  4077. height: math.unit(3, "feet")
  4078. },
  4079. {
  4080. name: "Normal",
  4081. height: math.unit(13, "feet"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Macro",
  4086. height: math.unit(100, "feet")
  4087. },
  4088. {
  4089. name: "Macro+",
  4090. height: math.unit(260, "feet")
  4091. },
  4092. {
  4093. name: "Macro++",
  4094. height: math.unit(1, "mile")
  4095. },
  4096. ]
  4097. ))
  4098. characterMakers.push(() => makeCharacter(
  4099. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4100. {
  4101. front: {
  4102. height: math.unit(6, "feet"),
  4103. weight: math.unit(75, "kg"),
  4104. name: "Front",
  4105. image: {
  4106. source: "./media/characters/malik/front.svg",
  4107. extra: 1750/1561,
  4108. bottom: 80/1830
  4109. },
  4110. extraAttributes: {
  4111. "toeSize": {
  4112. name: "Toe Size",
  4113. power: 2,
  4114. type: "area",
  4115. base: math.unit(0.0159, "m^2")
  4116. },
  4117. "pawSize": {
  4118. name: "Paw Size",
  4119. power: 2,
  4120. type: "area",
  4121. base: math.unit(0.09834, "m^2")
  4122. },
  4123. }
  4124. },
  4125. side: {
  4126. height: math.unit(6, "feet"),
  4127. weight: math.unit(75, "kg"),
  4128. name: "Side",
  4129. image: {
  4130. source: "./media/characters/malik/side.svg",
  4131. extra: 1802/1685,
  4132. bottom: 42/1844
  4133. },
  4134. extraAttributes: {
  4135. "toeSize": {
  4136. name: "Toe Size",
  4137. power: 2,
  4138. type: "area",
  4139. base: math.unit(0.0159, "m^2")
  4140. },
  4141. "pawSize": {
  4142. name: "Paw Size",
  4143. power: 2,
  4144. type: "area",
  4145. base: math.unit(0.09834, "m^2")
  4146. },
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(6, "feet"),
  4151. weight: math.unit(75, "kg"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/malik/back.svg",
  4155. extra: 1803/1607,
  4156. bottom: 33/1836
  4157. },
  4158. extraAttributes: {
  4159. "toeSize": {
  4160. name: "Toe Size",
  4161. power: 2,
  4162. type: "area",
  4163. base: math.unit(0.0159, "m^2")
  4164. },
  4165. "pawSize": {
  4166. name: "Paw Size",
  4167. power: 2,
  4168. type: "area",
  4169. base: math.unit(0.09834, "m^2")
  4170. },
  4171. }
  4172. },
  4173. },
  4174. [
  4175. {
  4176. name: "Macro",
  4177. height: math.unit(156, "feet"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro+",
  4182. height: math.unit(1188, "feet")
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(6, "feet"),
  4191. weight: math.unit(75, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/sefer/front.svg",
  4195. extra: 848 / 659,
  4196. bottom: 28.3 / 876.442
  4197. }
  4198. },
  4199. back: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(75, "kg"),
  4202. name: "Back",
  4203. image: {
  4204. source: "./media/characters/sefer/back.svg",
  4205. extra: 864 / 695,
  4206. bottom: 10 / 871
  4207. }
  4208. },
  4209. frontDressed: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(75, "kg"),
  4212. name: "Dressed",
  4213. image: {
  4214. source: "./media/characters/sefer/dressed.svg",
  4215. extra: 839 / 653,
  4216. bottom: 37.6 / 878
  4217. }
  4218. },
  4219. },
  4220. [
  4221. {
  4222. name: "Normal",
  4223. height: math.unit(6, "feet"),
  4224. default: true
  4225. },
  4226. {
  4227. name: "Big",
  4228. height: math.unit(8, "meters")
  4229. },
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4234. {
  4235. body: {
  4236. height: math.unit(2.2428, "meter"),
  4237. weight: math.unit(124.738, "kg"),
  4238. name: "Body",
  4239. image: {
  4240. extra: 1225 / 1050,
  4241. source: "./media/characters/north/front.svg"
  4242. }
  4243. }
  4244. },
  4245. [
  4246. {
  4247. name: "Micro",
  4248. height: math.unit(4, "inches")
  4249. },
  4250. {
  4251. name: "Macro",
  4252. height: math.unit(63, "meters")
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(101, "miles"),
  4257. default: true
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4263. {
  4264. angled: {
  4265. height: math.unit(4, "meter"),
  4266. weight: math.unit(150, "kg"),
  4267. name: "Angled",
  4268. image: {
  4269. source: "./media/characters/talan/angled-sfw.svg",
  4270. bottom: 29 / 3734
  4271. }
  4272. },
  4273. angledNsfw: {
  4274. height: math.unit(4, "meter"),
  4275. weight: math.unit(150, "kg"),
  4276. name: "Angled (NSFW)",
  4277. image: {
  4278. source: "./media/characters/talan/angled-nsfw.svg",
  4279. bottom: 29 / 3734
  4280. }
  4281. },
  4282. frontNsfw: {
  4283. height: math.unit(4, "meter"),
  4284. weight: math.unit(150, "kg"),
  4285. name: "Front (NSFW)",
  4286. image: {
  4287. source: "./media/characters/talan/front-nsfw.svg",
  4288. bottom: 29 / 3734
  4289. }
  4290. },
  4291. sideNsfw: {
  4292. height: math.unit(4, "meter"),
  4293. weight: math.unit(150, "kg"),
  4294. name: "Side (NSFW)",
  4295. image: {
  4296. source: "./media/characters/talan/side-nsfw.svg",
  4297. bottom: 29 / 3734
  4298. }
  4299. },
  4300. back: {
  4301. height: math.unit(4, "meter"),
  4302. weight: math.unit(150, "kg"),
  4303. name: "Back",
  4304. image: {
  4305. source: "./media/characters/talan/back.svg"
  4306. }
  4307. },
  4308. dickBottom: {
  4309. height: math.unit(0.621, "meter"),
  4310. name: "Dick (Bottom)",
  4311. image: {
  4312. source: "./media/characters/talan/dick-bottom.svg"
  4313. }
  4314. },
  4315. dickTop: {
  4316. height: math.unit(0.621, "meter"),
  4317. name: "Dick (Top)",
  4318. image: {
  4319. source: "./media/characters/talan/dick-top.svg"
  4320. }
  4321. },
  4322. dickSide: {
  4323. height: math.unit(0.305, "meter"),
  4324. name: "Dick (Side)",
  4325. image: {
  4326. source: "./media/characters/talan/dick-side.svg"
  4327. }
  4328. },
  4329. dickFront: {
  4330. height: math.unit(0.305, "meter"),
  4331. name: "Dick (Front)",
  4332. image: {
  4333. source: "./media/characters/talan/dick-front.svg"
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(4, "meters")
  4341. },
  4342. {
  4343. name: "Macro",
  4344. height: math.unit(100, "meters")
  4345. },
  4346. {
  4347. name: "Megamacro",
  4348. height: math.unit(2, "miles"),
  4349. default: true
  4350. },
  4351. {
  4352. name: "Gigamacro",
  4353. height: math.unit(5000, "miles")
  4354. },
  4355. {
  4356. name: "Teramacro",
  4357. height: math.unit(100, "parsecs")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(2, "meter"),
  4366. weight: math.unit(90, "kg"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/gael'rathus/front.svg"
  4370. }
  4371. },
  4372. frontAlt: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(90, "kg"),
  4375. name: "Front (alt)",
  4376. image: {
  4377. source: "./media/characters/gael'rathus/front-alt.svg"
  4378. }
  4379. },
  4380. frontAlt2: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(90, "kg"),
  4383. name: "Front (alt 2)",
  4384. image: {
  4385. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(9, "feet"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Large",
  4397. height: math.unit(25, "feet")
  4398. },
  4399. {
  4400. name: "Macro",
  4401. height: math.unit(0.25, "miles")
  4402. },
  4403. {
  4404. name: "Megamacro",
  4405. height: math.unit(10, "miles")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4411. {
  4412. side: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(140, "kg"),
  4415. name: "Side",
  4416. image: {
  4417. source: "./media/characters/sosha/side.svg",
  4418. extra: 1170/1006,
  4419. bottom: 94/1264
  4420. }
  4421. },
  4422. maw: {
  4423. height: math.unit(2.87, "feet"),
  4424. name: "Maw",
  4425. image: {
  4426. source: "./media/characters/sosha/maw.svg",
  4427. extra: 966/865,
  4428. bottom: 0/966
  4429. }
  4430. },
  4431. cooch: {
  4432. height: math.unit(5.6, "feet"),
  4433. name: "Cooch",
  4434. image: {
  4435. source: "./media/characters/sosha/cooch.svg"
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(12, "feet"),
  4443. default: true
  4444. }
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4449. {
  4450. side: {
  4451. height: math.unit(5 + 5 / 12, "feet"),
  4452. weight: math.unit(170, "kg"),
  4453. name: "Side",
  4454. image: {
  4455. source: "./media/characters/runnola/side.svg",
  4456. extra: 741 / 448,
  4457. bottom: 0.05
  4458. }
  4459. },
  4460. },
  4461. [
  4462. {
  4463. name: "Small",
  4464. height: math.unit(3, "feet")
  4465. },
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(5 + 5 / 12, "feet"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Big",
  4473. height: math.unit(10, "feet")
  4474. },
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(2, "meter"),
  4482. weight: math.unit(50, "kg"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/kurribird/front.svg",
  4486. bottom: 0.015
  4487. }
  4488. },
  4489. frontAlt: {
  4490. height: math.unit(1.5, "meter"),
  4491. weight: math.unit(50, "kg"),
  4492. name: "Front (Alt)",
  4493. image: {
  4494. source: "./media/characters/kurribird/front-alt.svg",
  4495. extra: 1.45
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(7, "feet")
  4503. },
  4504. {
  4505. name: "Big",
  4506. height: math.unit(12, "feet"),
  4507. default: true
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(1500, "feet")
  4512. },
  4513. {
  4514. name: "Megamacro",
  4515. height: math.unit(2, "miles")
  4516. }
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(2, "meter"),
  4524. weight: math.unit(80, "kg"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/elbial/front.svg",
  4528. extra: 1643 / 1556,
  4529. bottom: 60.2 / 1696
  4530. }
  4531. },
  4532. side: {
  4533. height: math.unit(2, "meter"),
  4534. weight: math.unit(80, "kg"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/elbial/side.svg",
  4538. extra: 1601/1528,
  4539. bottom: 97/1698
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(2, "meter"),
  4544. weight: math.unit(80, "kg"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/elbial/back.svg",
  4548. extra: 1653/1569,
  4549. bottom: 20/1673
  4550. }
  4551. },
  4552. frontDressed: {
  4553. height: math.unit(2, "meter"),
  4554. weight: math.unit(80, "kg"),
  4555. name: "Front (Dressed)",
  4556. image: {
  4557. source: "./media/characters/elbial/front-dressed.svg",
  4558. extra: 1638/1569,
  4559. bottom: 70/1708
  4560. }
  4561. },
  4562. genitals: {
  4563. height: math.unit(2 / 3.367, "meter"),
  4564. name: "Genitals",
  4565. image: {
  4566. source: "./media/characters/elbial/genitals.svg"
  4567. }
  4568. },
  4569. },
  4570. [
  4571. {
  4572. name: "Large",
  4573. height: math.unit(100, "feet")
  4574. },
  4575. {
  4576. name: "Macro",
  4577. height: math.unit(500, "feet"),
  4578. default: true
  4579. },
  4580. {
  4581. name: "Megamacro",
  4582. height: math.unit(10, "miles")
  4583. },
  4584. {
  4585. name: "Gigamacro",
  4586. height: math.unit(25000, "miles")
  4587. },
  4588. {
  4589. name: "Full-Size",
  4590. height: math.unit(8000000, "gigaparsecs")
  4591. }
  4592. ]
  4593. ))
  4594. characterMakers.push(() => makeCharacter(
  4595. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4596. {
  4597. front: {
  4598. height: math.unit(2, "meter"),
  4599. weight: math.unit(60, "kg"),
  4600. name: "Front",
  4601. image: {
  4602. source: "./media/characters/noah/front.svg",
  4603. extra: 1383/1313,
  4604. bottom: 104/1487
  4605. }
  4606. },
  4607. hand: {
  4608. height: math.unit(0.6, "feet"),
  4609. name: "Hand",
  4610. image: {
  4611. source: "./media/characters/noah/hand.svg"
  4612. }
  4613. },
  4614. talons: {
  4615. height: math.unit(1.385, "feet"),
  4616. name: "Talons",
  4617. image: {
  4618. source: "./media/characters/noah/talons.svg"
  4619. }
  4620. },
  4621. beak: {
  4622. height: math.unit(0.43, "feet"),
  4623. name: "Beak",
  4624. image: {
  4625. source: "./media/characters/noah/beak.svg"
  4626. }
  4627. },
  4628. collar: {
  4629. height: math.unit(0.88, "feet"),
  4630. name: "Collar",
  4631. image: {
  4632. source: "./media/characters/noah/collar.svg"
  4633. }
  4634. },
  4635. eyeNarrow: {
  4636. height: math.unit(0.18, "feet"),
  4637. name: "Eye (Narrow)",
  4638. image: {
  4639. source: "./media/characters/noah/eye-narrow.svg"
  4640. }
  4641. },
  4642. eyeNormal: {
  4643. height: math.unit(0.18, "feet"),
  4644. name: "Eye (Normal)",
  4645. image: {
  4646. source: "./media/characters/noah/eye-normal.svg"
  4647. }
  4648. },
  4649. eyeWide: {
  4650. height: math.unit(0.18, "feet"),
  4651. name: "Eye (Wide)",
  4652. image: {
  4653. source: "./media/characters/noah/eye-wide.svg"
  4654. }
  4655. },
  4656. ear: {
  4657. height: math.unit(0.64, "feet"),
  4658. name: "Ear",
  4659. image: {
  4660. source: "./media/characters/noah/ear.svg"
  4661. }
  4662. },
  4663. },
  4664. [
  4665. {
  4666. name: "Large",
  4667. height: math.unit(50, "feet")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(750, "feet"),
  4672. default: true
  4673. },
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(50, "miles")
  4677. },
  4678. {
  4679. name: "Gigamacro",
  4680. height: math.unit(100000, "miles")
  4681. },
  4682. {
  4683. name: "Full-Size",
  4684. height: math.unit(3000000000, "miles")
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(2, "meter"),
  4693. weight: math.unit(80, "kg"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/natalya/front.svg"
  4697. }
  4698. },
  4699. back: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(80, "kg"),
  4702. name: "Back",
  4703. image: {
  4704. source: "./media/characters/natalya/back.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(150, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Megamacro",
  4716. height: math.unit(5, "miles")
  4717. },
  4718. {
  4719. name: "Full-Size",
  4720. height: math.unit(600, "kiloparsecs")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(2, "meter"),
  4729. weight: math.unit(50, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/erestrebah/front.svg",
  4733. extra: 1262/1162,
  4734. bottom: 96/1358
  4735. }
  4736. },
  4737. back: {
  4738. height: math.unit(2, "meter"),
  4739. weight: math.unit(50, "kg"),
  4740. name: "Back",
  4741. image: {
  4742. source: "./media/characters/erestrebah/back.svg",
  4743. extra: 1257/1139,
  4744. bottom: 13/1270
  4745. }
  4746. },
  4747. wing: {
  4748. height: math.unit(2, "meter"),
  4749. weight: math.unit(50, "kg"),
  4750. name: "Wing",
  4751. image: {
  4752. source: "./media/characters/erestrebah/wing.svg",
  4753. extra: 1262/1162,
  4754. bottom: 96/1358
  4755. }
  4756. },
  4757. mouth: {
  4758. height: math.unit(0.39, "feet"),
  4759. name: "Mouth",
  4760. image: {
  4761. source: "./media/characters/erestrebah/mouth.svg"
  4762. }
  4763. }
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(10, "feet")
  4769. },
  4770. {
  4771. name: "Large",
  4772. height: math.unit(50, "feet"),
  4773. default: true
  4774. },
  4775. {
  4776. name: "Macro",
  4777. height: math.unit(300, "feet")
  4778. },
  4779. {
  4780. name: "Macro+",
  4781. height: math.unit(750, "feet")
  4782. },
  4783. {
  4784. name: "Megamacro",
  4785. height: math.unit(3, "miles")
  4786. }
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4791. {
  4792. front: {
  4793. height: math.unit(2, "meter"),
  4794. weight: math.unit(80, "kg"),
  4795. name: "Front",
  4796. image: {
  4797. source: "./media/characters/jennifer/front.svg",
  4798. bottom: 0.11,
  4799. extra: 1.16
  4800. }
  4801. },
  4802. frontAlt: {
  4803. height: math.unit(2, "meter"),
  4804. weight: math.unit(80, "kg"),
  4805. name: "Front (Alt)",
  4806. image: {
  4807. source: "./media/characters/jennifer/front-alt.svg"
  4808. }
  4809. }
  4810. },
  4811. [
  4812. {
  4813. name: "Canon Height",
  4814. height: math.unit(120, "feet"),
  4815. default: true
  4816. },
  4817. {
  4818. name: "Macro+",
  4819. height: math.unit(300, "feet")
  4820. },
  4821. {
  4822. name: "Megamacro",
  4823. height: math.unit(20000, "feet")
  4824. }
  4825. ]
  4826. ))
  4827. characterMakers.push(() => makeCharacter(
  4828. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4829. {
  4830. front: {
  4831. height: math.unit(2, "meter"),
  4832. weight: math.unit(50, "kg"),
  4833. name: "Front",
  4834. image: {
  4835. source: "./media/characters/kalista/front.svg",
  4836. extra: 1314/1145,
  4837. bottom: 101/1415
  4838. }
  4839. },
  4840. back: {
  4841. height: math.unit(2, "meter"),
  4842. weight: math.unit(50, "kg"),
  4843. name: "Back",
  4844. image: {
  4845. source: "./media/characters/kalista/back.svg",
  4846. extra: 1366 / 1156,
  4847. bottom: 33.9 / 1362.78
  4848. }
  4849. }
  4850. },
  4851. [
  4852. {
  4853. name: "Uncomfortably Small",
  4854. height: math.unit(10, "feet")
  4855. },
  4856. {
  4857. name: "Small",
  4858. height: math.unit(30, "feet")
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(100, "feet"),
  4863. default: true
  4864. },
  4865. {
  4866. name: "Macro+",
  4867. height: math.unit(2000, "feet")
  4868. },
  4869. {
  4870. name: "True Form",
  4871. height: math.unit(8924, "miles")
  4872. }
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(2, "meter"),
  4880. weight: math.unit(120, "kg"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/ggv/front.svg"
  4884. }
  4885. },
  4886. side: {
  4887. height: math.unit(2, "meter"),
  4888. weight: math.unit(120, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/ggv/side.svg"
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Extremely Puny",
  4898. height: math.unit(9 + 5 / 12, "feet")
  4899. },
  4900. {
  4901. name: "Horribly Small",
  4902. height: math.unit(47.7, "miles"),
  4903. default: true
  4904. },
  4905. {
  4906. name: "Reasonably Sized",
  4907. height: math.unit(25000, "parsecs")
  4908. },
  4909. {
  4910. name: "Slightly Uncompressed",
  4911. height: math.unit(7.77e31, "parsecs")
  4912. },
  4913. {
  4914. name: "Omniversal",
  4915. height: math.unit(1e300, "meters")
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(2, "meter"),
  4924. weight: math.unit(75, "lb"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/napalm/front.svg"
  4928. }
  4929. },
  4930. back: {
  4931. height: math.unit(2, "meter"),
  4932. weight: math.unit(75, "lb"),
  4933. name: "Back",
  4934. image: {
  4935. source: "./media/characters/napalm/back.svg"
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Standard",
  4942. height: math.unit(55, "feet"),
  4943. default: true
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(7 + 5 / 6, "feet"),
  4952. weight: math.unit(325, "lb"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/asana/front.svg",
  4956. extra: 1133 / 1060,
  4957. bottom: 15.2 / 1148.6
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(7 + 5 / 6, "feet"),
  4962. weight: math.unit(325, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/asana/back.svg",
  4966. extra: 1114 / 1043,
  4967. bottom: 5 / 1120
  4968. }
  4969. },
  4970. dressedDark: {
  4971. height: math.unit(7 + 5 / 6, "feet"),
  4972. weight: math.unit(325, "lb"),
  4973. name: "Dressed (Dark)",
  4974. image: {
  4975. source: "./media/characters/asana/dressed-dark.svg",
  4976. extra: 1133 / 1060,
  4977. bottom: 15.2 / 1148.6
  4978. }
  4979. },
  4980. dressedLight: {
  4981. height: math.unit(7 + 5 / 6, "feet"),
  4982. weight: math.unit(325, "lb"),
  4983. name: "Dressed (Light)",
  4984. image: {
  4985. source: "./media/characters/asana/dressed-light.svg",
  4986. extra: 1133 / 1060,
  4987. bottom: 15.2 / 1148.6
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Standard",
  4994. height: math.unit(7 + 5 / 6, "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Large",
  4999. height: math.unit(10, "meters")
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(2500, "meters")
  5004. },
  5005. {
  5006. name: "Megamacro",
  5007. height: math.unit(5e6, "meters")
  5008. },
  5009. {
  5010. name: "Examacro",
  5011. height: math.unit(5e12, "lightyears")
  5012. },
  5013. {
  5014. name: "Max Size",
  5015. height: math.unit(1e31, "lightyears")
  5016. }
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(2, "meter"),
  5024. weight: math.unit(60, "kg"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/ebony/front.svg",
  5028. bottom: 0.03,
  5029. extra: 1045 / 810 + 0.03
  5030. }
  5031. },
  5032. side: {
  5033. height: math.unit(2, "meter"),
  5034. weight: math.unit(60, "kg"),
  5035. name: "Side",
  5036. image: {
  5037. source: "./media/characters/ebony/side.svg",
  5038. bottom: 0.03,
  5039. extra: 1045 / 810 + 0.03
  5040. }
  5041. },
  5042. back: {
  5043. height: math.unit(2, "meter"),
  5044. weight: math.unit(60, "kg"),
  5045. name: "Back",
  5046. image: {
  5047. source: "./media/characters/ebony/back.svg",
  5048. bottom: 0.01,
  5049. extra: 1045 / 810 + 0.01
  5050. }
  5051. },
  5052. },
  5053. [
  5054. // TODO check why I did this lol
  5055. {
  5056. name: "Standard",
  5057. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Macro",
  5062. height: math.unit(200, "feet")
  5063. },
  5064. {
  5065. name: "Gigamacro",
  5066. height: math.unit(13000, "km")
  5067. }
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(175, "lb"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/mountain/front.svg",
  5079. extra: 972 / 955,
  5080. bottom: 64 / 1036.6
  5081. }
  5082. },
  5083. back: {
  5084. height: math.unit(6, "feet"),
  5085. weight: math.unit(175, "lb"),
  5086. name: "Back",
  5087. image: {
  5088. source: "./media/characters/mountain/back.svg",
  5089. extra: 970 / 950,
  5090. bottom: 28.25 / 999
  5091. }
  5092. },
  5093. },
  5094. [
  5095. {
  5096. name: "Large",
  5097. height: math.unit(20, "meters")
  5098. },
  5099. {
  5100. name: "Macro",
  5101. height: math.unit(300, "meters")
  5102. },
  5103. {
  5104. name: "Gigamacro",
  5105. height: math.unit(10000, "km"),
  5106. default: true
  5107. },
  5108. {
  5109. name: "Examacro",
  5110. height: math.unit(10e9, "lightyears")
  5111. }
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(8, "feet"),
  5119. weight: math.unit(500, "lb"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/rick/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(8, "feet"),
  5130. default: true
  5131. },
  5132. {
  5133. name: "Macro",
  5134. height: math.unit(5, "km")
  5135. }
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(8, "feet"),
  5143. weight: math.unit(120, "lb"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/ona/front.svg"
  5147. }
  5148. },
  5149. frontAlt: {
  5150. height: math.unit(8, "feet"),
  5151. weight: math.unit(120, "lb"),
  5152. name: "Front (Alt)",
  5153. image: {
  5154. source: "./media/characters/ona/front-alt.svg"
  5155. }
  5156. },
  5157. back: {
  5158. height: math.unit(8, "feet"),
  5159. weight: math.unit(120, "lb"),
  5160. name: "Back",
  5161. image: {
  5162. source: "./media/characters/ona/back.svg"
  5163. }
  5164. },
  5165. foot: {
  5166. height: math.unit(1.1, "feet"),
  5167. name: "Foot",
  5168. image: {
  5169. source: "./media/characters/ona/foot.svg"
  5170. }
  5171. }
  5172. },
  5173. [
  5174. {
  5175. name: "Megamacro",
  5176. height: math.unit(70, "km"),
  5177. default: true
  5178. },
  5179. {
  5180. name: "Gigamacro",
  5181. height: math.unit(681818, "miles")
  5182. },
  5183. {
  5184. name: "Examacro",
  5185. height: math.unit(3800000, "lightyears")
  5186. },
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5191. {
  5192. front: {
  5193. height: math.unit(12, "feet"),
  5194. weight: math.unit(3000, "lb"),
  5195. name: "Front",
  5196. image: {
  5197. source: "./media/characters/mech/front.svg",
  5198. extra: 2900 / 2770,
  5199. bottom: 110 / 3010
  5200. }
  5201. },
  5202. back: {
  5203. height: math.unit(12, "feet"),
  5204. weight: math.unit(3000, "lb"),
  5205. name: "Back",
  5206. image: {
  5207. source: "./media/characters/mech/back.svg",
  5208. extra: 3011 / 2890,
  5209. bottom: 94 / 3105
  5210. }
  5211. },
  5212. maw: {
  5213. height: math.unit(3.07, "feet"),
  5214. name: "Maw",
  5215. image: {
  5216. source: "./media/characters/mech/maw.svg"
  5217. }
  5218. },
  5219. head: {
  5220. height: math.unit(3.07, "feet"),
  5221. name: "Head",
  5222. image: {
  5223. source: "./media/characters/mech/head.svg"
  5224. }
  5225. },
  5226. dick: {
  5227. height: math.unit(1.43, "feet"),
  5228. name: "Dick",
  5229. image: {
  5230. source: "./media/characters/mech/dick.svg"
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(12, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(300, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Macro+",
  5246. height: math.unit(1500, "feet")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(1.3, "meter"),
  5255. weight: math.unit(30, "kg"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/gregory/front.svg",
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(1.3, "meter"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro",
  5270. height: math.unit(20, "meter")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(2.8, "meter"),
  5279. weight: math.unit(200, "kg"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/elory/front.svg",
  5283. }
  5284. }
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(2.8, "meter"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Macro",
  5294. height: math.unit(38, "meter")
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(470, "feet"),
  5303. weight: math.unit(924, "tons"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/angelpatamon/front.svg",
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(470, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Deity Size I",
  5318. height: math.unit(28651.2, "km")
  5319. },
  5320. {
  5321. name: "Deity Size II",
  5322. height: math.unit(171907.2, "km")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5328. {
  5329. side: {
  5330. height: math.unit(7.2, "meter"),
  5331. weight: math.unit(8.2, "tons"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/cryae/side.svg",
  5335. extra: 3500 / 1500
  5336. }
  5337. }
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(7.2, "meter"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5349. {
  5350. front: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(175, "lb"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/xera/front.svg",
  5356. extra: 2377 / 1972,
  5357. bottom: 75.5 / 2452
  5358. }
  5359. },
  5360. side: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(175, "lb"),
  5363. name: "Side",
  5364. image: {
  5365. source: "./media/characters/xera/side.svg",
  5366. extra: 2345 / 2019,
  5367. bottom: 39.7 / 2384
  5368. }
  5369. },
  5370. back: {
  5371. height: math.unit(6, "feet"),
  5372. weight: math.unit(175, "lb"),
  5373. name: "Back",
  5374. image: {
  5375. source: "./media/characters/xera/back.svg",
  5376. extra: 2095 / 1984,
  5377. bottom: 67 / 2166
  5378. }
  5379. },
  5380. },
  5381. [
  5382. {
  5383. name: "Small",
  5384. height: math.unit(10, "feet")
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(500, "meters"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Macro+",
  5393. height: math.unit(10, "km")
  5394. },
  5395. {
  5396. name: "Gigamacro",
  5397. height: math.unit(25000, "km")
  5398. },
  5399. {
  5400. name: "Teramacro",
  5401. height: math.unit(3e6, "km")
  5402. }
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5407. {
  5408. front: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(175, "lb"),
  5411. name: "Front",
  5412. image: {
  5413. source: "./media/characters/nebula/front.svg",
  5414. extra: 2566 / 2362,
  5415. bottom: 81 / 2644
  5416. }
  5417. }
  5418. },
  5419. [
  5420. {
  5421. name: "Small",
  5422. height: math.unit(4.5, "meters")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(1500, "meters"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(150, "km")
  5432. },
  5433. {
  5434. name: "Gigamacro",
  5435. height: math.unit(27000, "km")
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(225, "lb"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/abysgar/front.svg",
  5448. extra: 1739/1614,
  5449. bottom: 71/1810
  5450. }
  5451. },
  5452. frontNsfw: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(225, "lb"),
  5455. name: "Front (NSFW)",
  5456. image: {
  5457. source: "./media/characters/abysgar/front-nsfw.svg",
  5458. extra: 1739/1614,
  5459. bottom: 71/1810
  5460. }
  5461. },
  5462. back: {
  5463. height: math.unit(4.6, "feet"),
  5464. weight: math.unit(225, "lb"),
  5465. name: "Back",
  5466. image: {
  5467. source: "./media/characters/abysgar/back.svg",
  5468. extra: 1384/1327,
  5469. bottom: 0/1384
  5470. }
  5471. },
  5472. head: {
  5473. height: math.unit(1.25, "feet"),
  5474. name: "Head",
  5475. image: {
  5476. source: "./media/characters/abysgar/head.svg",
  5477. extra: 669/569,
  5478. bottom: 0/669
  5479. }
  5480. },
  5481. },
  5482. [
  5483. {
  5484. name: "Small",
  5485. height: math.unit(4.5, "meters")
  5486. },
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(1250, "meters"),
  5490. default: true
  5491. },
  5492. {
  5493. name: "Megamacro",
  5494. height: math.unit(125, "km")
  5495. },
  5496. {
  5497. name: "Gigamacro",
  5498. height: math.unit(26000, "km")
  5499. }
  5500. ]
  5501. ))
  5502. characterMakers.push(() => makeCharacter(
  5503. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5504. {
  5505. front: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(180, "lb"),
  5508. name: "Front",
  5509. image: {
  5510. source: "./media/characters/yakuz/front.svg"
  5511. }
  5512. }
  5513. },
  5514. [
  5515. {
  5516. name: "Small",
  5517. height: math.unit(5, "meters")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(1500, "meters"),
  5522. default: true
  5523. },
  5524. {
  5525. name: "Megamacro",
  5526. height: math.unit(200, "km")
  5527. },
  5528. {
  5529. name: "Gigamacro",
  5530. height: math.unit(100000, "km")
  5531. }
  5532. ]
  5533. ))
  5534. characterMakers.push(() => makeCharacter(
  5535. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5536. {
  5537. front: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(175, "lb"),
  5540. name: "Front",
  5541. image: {
  5542. source: "./media/characters/mirova/front.svg",
  5543. extra: 1947/1753,
  5544. bottom: 28/1975
  5545. }
  5546. },
  5547. back: {
  5548. height: math.unit(2.48, "feet"),
  5549. name: "Back",
  5550. image: {
  5551. source: "./media/characters/mirova/back.svg"
  5552. }
  5553. },
  5554. head: {
  5555. height: math.unit(1.94, "feet"),
  5556. name: "Head",
  5557. image: {
  5558. source: "./media/characters/mirova/head.svg"
  5559. }
  5560. },
  5561. headSide: {
  5562. height: math.unit(2, "feet"),
  5563. name: "Head (Side)",
  5564. image: {
  5565. source: "./media/characters/mirova/head-side.svg"
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Small",
  5572. height: math.unit(5, "meters")
  5573. },
  5574. {
  5575. name: "Macro",
  5576. height: math.unit(900, "meters"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Megamacro",
  5581. height: math.unit(135, "km")
  5582. },
  5583. {
  5584. name: "Gigamacro",
  5585. height: math.unit(20000, "km")
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5591. {
  5592. side: {
  5593. height: math.unit(28.35, "feet"),
  5594. weight: math.unit(99.75, "tons"),
  5595. name: "Side",
  5596. image: {
  5597. source: "./media/characters/asana-mech/side.svg",
  5598. extra: 923 / 699,
  5599. bottom: 50 / 975
  5600. }
  5601. },
  5602. chaingun: {
  5603. height: math.unit(7, "feet"),
  5604. weight: math.unit(2400, "lb"),
  5605. name: "Chaingun",
  5606. image: {
  5607. source: "./media/characters/asana-mech/chaingun.svg"
  5608. }
  5609. },
  5610. laser: {
  5611. height: math.unit(7.12, "feet"),
  5612. weight: math.unit(2000, "lb"),
  5613. name: "Laser",
  5614. image: {
  5615. source: "./media/characters/asana-mech/laser.svg"
  5616. }
  5617. },
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(28.35, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Macro",
  5627. height: math.unit(2500, "feet")
  5628. },
  5629. {
  5630. name: "Megamacro",
  5631. height: math.unit(25, "miles")
  5632. },
  5633. {
  5634. name: "Examacro",
  5635. height: math.unit(6e8, "lightyears")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5641. {
  5642. front: {
  5643. height: math.unit(5, "meters"),
  5644. weight: math.unit(1000, "kg"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/asche/front.svg",
  5648. extra: 1258 / 1190,
  5649. bottom: 47 / 1305
  5650. }
  5651. },
  5652. frontUnderwear: {
  5653. height: math.unit(5, "meters"),
  5654. weight: math.unit(1000, "kg"),
  5655. name: "Front (Underwear)",
  5656. image: {
  5657. source: "./media/characters/asche/front-underwear.svg",
  5658. extra: 1258 / 1190,
  5659. bottom: 47 / 1305
  5660. }
  5661. },
  5662. frontDressed: {
  5663. height: math.unit(5, "meters"),
  5664. weight: math.unit(1000, "kg"),
  5665. name: "Front (Dressed)",
  5666. image: {
  5667. source: "./media/characters/asche/front-dressed.svg",
  5668. extra: 1258 / 1190,
  5669. bottom: 47 / 1305
  5670. }
  5671. },
  5672. frontArmor: {
  5673. height: math.unit(5, "meters"),
  5674. weight: math.unit(1000, "kg"),
  5675. name: "Front (Armored)",
  5676. image: {
  5677. source: "./media/characters/asche/front-armored.svg",
  5678. extra: 1374 / 1308,
  5679. bottom: 23 / 1397
  5680. }
  5681. },
  5682. mp724: {
  5683. height: math.unit(0.96, "meters"),
  5684. weight: math.unit(38, "kg"),
  5685. name: "H&K MP724",
  5686. image: {
  5687. source: "./media/characters/asche/h&k-mp724.svg"
  5688. }
  5689. },
  5690. side: {
  5691. height: math.unit(5, "meters"),
  5692. weight: math.unit(1000, "kg"),
  5693. name: "Side",
  5694. image: {
  5695. source: "./media/characters/asche/side.svg",
  5696. extra: 1717 / 1609,
  5697. bottom: 0.005
  5698. }
  5699. },
  5700. back: {
  5701. height: math.unit(5, "meters"),
  5702. weight: math.unit(1000, "kg"),
  5703. name: "Back",
  5704. image: {
  5705. source: "./media/characters/asche/back.svg",
  5706. extra: 1570 / 1501
  5707. }
  5708. },
  5709. },
  5710. [
  5711. {
  5712. name: "DEFCON 5",
  5713. height: math.unit(5, "meters")
  5714. },
  5715. {
  5716. name: "DEFCON 4",
  5717. height: math.unit(500, "meters"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "DEFCON 3",
  5722. height: math.unit(5, "km")
  5723. },
  5724. {
  5725. name: "DEFCON 2",
  5726. height: math.unit(500, "km")
  5727. },
  5728. {
  5729. name: "DEFCON 1",
  5730. height: math.unit(500000, "km")
  5731. },
  5732. {
  5733. name: "DEFCON 0",
  5734. height: math.unit(3, "gigaparsecs")
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(7, "feet"),
  5743. weight: math.unit(92.7, "kg"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/gale/front.svg",
  5747. extra: 977/919,
  5748. bottom: 105/1082
  5749. }
  5750. },
  5751. side: {
  5752. height: math.unit(6.7, "feet"),
  5753. weight: math.unit(92.7, "kg"),
  5754. name: "Side",
  5755. image: {
  5756. source: "./media/characters/gale/side.svg",
  5757. extra: 978/922,
  5758. bottom: 140/1118
  5759. }
  5760. },
  5761. back: {
  5762. height: math.unit(7, "feet"),
  5763. weight: math.unit(92.7, "kg"),
  5764. name: "Back",
  5765. image: {
  5766. source: "./media/characters/gale/back.svg",
  5767. extra: 966/920,
  5768. bottom: 61/1027
  5769. }
  5770. },
  5771. maw: {
  5772. height: math.unit(2.23, "feet"),
  5773. name: "Maw",
  5774. image: {
  5775. source: "./media/characters/gale/maw.svg"
  5776. }
  5777. },
  5778. foot: {
  5779. height: math.unit(2.1, "feet"),
  5780. name: "Foot",
  5781. image: {
  5782. source: "./media/characters/gale/foot.svg"
  5783. }
  5784. },
  5785. },
  5786. [
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(7, "feet")
  5790. },
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(150, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Macro+",
  5798. height: math.unit(300, "feet")
  5799. },
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(5 + 10/12, "feet"),
  5807. weight: math.unit(67, "kg"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/draylen/front.svg",
  5811. extra: 832/777,
  5812. bottom: 85/917
  5813. }
  5814. }
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(5 + 10/12, "feet")
  5820. },
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(150, "feet"),
  5824. default: true
  5825. }
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(7 + 9 / 12, "feet"),
  5833. weight: math.unit(379, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/chez/front.svg"
  5837. }
  5838. },
  5839. side: {
  5840. height: math.unit(7 + 9 / 12, "feet"),
  5841. weight: math.unit(379, "lbs"),
  5842. name: "Side",
  5843. image: {
  5844. source: "./media/characters/chez/side.svg"
  5845. }
  5846. }
  5847. },
  5848. [
  5849. {
  5850. name: "Normal",
  5851. height: math.unit(7 + 9 / 12, "feet"),
  5852. default: true
  5853. },
  5854. {
  5855. name: "God King",
  5856. height: math.unit(9750000, "meters")
  5857. }
  5858. ]
  5859. ))
  5860. characterMakers.push(() => makeCharacter(
  5861. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5862. {
  5863. front: {
  5864. height: math.unit(6, "feet"),
  5865. weight: math.unit(275, "lbs"),
  5866. name: "Front",
  5867. image: {
  5868. source: "./media/characters/kaylum/front.svg",
  5869. bottom: 0.01,
  5870. extra: 1166 / 1031
  5871. }
  5872. },
  5873. frontWingless: {
  5874. height: math.unit(6, "feet"),
  5875. weight: math.unit(275, "lbs"),
  5876. name: "Front (Wingless)",
  5877. image: {
  5878. source: "./media/characters/kaylum/front-wingless.svg",
  5879. bottom: 0.01,
  5880. extra: 1117 / 1031
  5881. }
  5882. }
  5883. },
  5884. [
  5885. {
  5886. name: "Normal",
  5887. height: math.unit(3.05, "meters")
  5888. },
  5889. {
  5890. name: "Master",
  5891. height: math.unit(5.5, "meters")
  5892. },
  5893. {
  5894. name: "Rampage",
  5895. height: math.unit(19, "meters")
  5896. },
  5897. {
  5898. name: "Macro Lite",
  5899. height: math.unit(37, "meters")
  5900. },
  5901. {
  5902. name: "Hyper Predator",
  5903. height: math.unit(61, "meters")
  5904. },
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(138, "meters"),
  5908. default: true
  5909. }
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5914. {
  5915. front: {
  5916. height: math.unit(5 + 5 / 12, "feet"),
  5917. weight: math.unit(120, "lbs"),
  5918. name: "Front",
  5919. image: {
  5920. source: "./media/characters/geta/front.svg",
  5921. extra: 1003/933,
  5922. bottom: 21/1024
  5923. }
  5924. },
  5925. paw: {
  5926. height: math.unit(0.35, "feet"),
  5927. name: "Paw",
  5928. image: {
  5929. source: "./media/characters/geta/paw.svg"
  5930. }
  5931. },
  5932. },
  5933. [
  5934. {
  5935. name: "Micro",
  5936. height: math.unit(3, "inches"),
  5937. default: true
  5938. },
  5939. {
  5940. name: "Normal",
  5941. height: math.unit(5 + 5 / 12, "feet")
  5942. }
  5943. ]
  5944. ))
  5945. characterMakers.push(() => makeCharacter(
  5946. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5947. {
  5948. front: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(300, "lbs"),
  5951. name: "Front",
  5952. image: {
  5953. source: "./media/characters/tyrnn/front.svg"
  5954. }
  5955. }
  5956. },
  5957. [
  5958. {
  5959. name: "Main Height",
  5960. height: math.unit(355, "feet"),
  5961. default: true
  5962. },
  5963. {
  5964. name: "Fave. Height",
  5965. height: math.unit(2400, "feet")
  5966. }
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(300, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/appledectomy/front.svg"
  5978. }
  5979. }
  5980. },
  5981. [
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(2500, "feet")
  5985. },
  5986. {
  5987. name: "Megamacro",
  5988. height: math.unit(50, "miles"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Gigamacro",
  5993. height: math.unit(5000, "miles")
  5994. },
  5995. {
  5996. name: "Teramacro",
  5997. height: math.unit(250000, "miles")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(200, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/vulpes/front.svg",
  6010. extra: 573 / 543,
  6011. bottom: 0.033
  6012. }
  6013. },
  6014. side: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(200, "lbs"),
  6017. name: "Side",
  6018. image: {
  6019. source: "./media/characters/vulpes/side.svg",
  6020. extra: 577 / 549,
  6021. bottom: 11 / 588
  6022. }
  6023. },
  6024. back: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(200, "lbs"),
  6027. name: "Back",
  6028. image: {
  6029. source: "./media/characters/vulpes/back.svg",
  6030. extra: 573 / 549,
  6031. bottom: 20 / 593
  6032. }
  6033. },
  6034. feet: {
  6035. height: math.unit(1.276, "feet"),
  6036. name: "Feet",
  6037. image: {
  6038. source: "./media/characters/vulpes/feet.svg"
  6039. }
  6040. },
  6041. maw: {
  6042. height: math.unit(1.18, "feet"),
  6043. name: "Maw",
  6044. image: {
  6045. source: "./media/characters/vulpes/maw.svg"
  6046. }
  6047. },
  6048. },
  6049. [
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(2, "inches")
  6053. },
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6.3, "feet")
  6057. },
  6058. {
  6059. name: "Macro",
  6060. height: math.unit(850, "feet")
  6061. },
  6062. {
  6063. name: "Megamacro",
  6064. height: math.unit(7500, "feet"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Gigamacro",
  6069. height: math.unit(570000, "miles")
  6070. }
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  6075. {
  6076. front: {
  6077. height: math.unit(6, "feet"),
  6078. weight: math.unit(210, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/rain-fallen/front.svg"
  6082. }
  6083. },
  6084. side: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(210, "lbs"),
  6087. name: "Side",
  6088. image: {
  6089. source: "./media/characters/rain-fallen/side.svg"
  6090. }
  6091. },
  6092. back: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(210, "lbs"),
  6095. name: "Back",
  6096. image: {
  6097. source: "./media/characters/rain-fallen/back.svg"
  6098. }
  6099. },
  6100. feral: {
  6101. height: math.unit(9, "feet"),
  6102. weight: math.unit(700, "lbs"),
  6103. name: "Feral",
  6104. image: {
  6105. source: "./media/characters/rain-fallen/feral.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Meddling with Mortals",
  6112. height: math.unit(8 + 8/12, "feet")
  6113. },
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(5, "meter")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(150, "meter"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Megamacro",
  6125. height: math.unit(278e6, "meter")
  6126. },
  6127. {
  6128. name: "Gigamacro",
  6129. height: math.unit(2e9, "meter")
  6130. },
  6131. {
  6132. name: "Teramacro",
  6133. height: math.unit(8e12, "meter")
  6134. },
  6135. {
  6136. name: "Devourer",
  6137. height: math.unit(14, "zettameters")
  6138. },
  6139. {
  6140. name: "Scarlet King",
  6141. height: math.unit(18, "yottameters")
  6142. },
  6143. {
  6144. name: "Void",
  6145. height: math.unit(1e88, "yottameters")
  6146. }
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6151. {
  6152. standing: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(180, "lbs"),
  6155. name: "Standing",
  6156. image: {
  6157. source: "./media/characters/zaakira/standing.svg",
  6158. extra: 1599/1504,
  6159. bottom: 39/1638
  6160. }
  6161. },
  6162. laying: {
  6163. height: math.unit(3.3, "feet"),
  6164. weight: math.unit(180, "lbs"),
  6165. name: "Laying",
  6166. image: {
  6167. source: "./media/characters/zaakira/laying.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(12, "feet")
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(279, "feet"),
  6179. default: true
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6185. {
  6186. femSfw: {
  6187. height: math.unit(8, "feet"),
  6188. weight: math.unit(350, "lb"),
  6189. name: "Fem",
  6190. image: {
  6191. source: "./media/characters/sigvald/fem-sfw.svg",
  6192. extra: 182 / 164,
  6193. bottom: 8.7 / 190.5
  6194. }
  6195. },
  6196. femNsfw: {
  6197. height: math.unit(8, "feet"),
  6198. weight: math.unit(350, "lb"),
  6199. name: "Fem (NSFW)",
  6200. image: {
  6201. source: "./media/characters/sigvald/fem-nsfw.svg",
  6202. extra: 182 / 164,
  6203. bottom: 8.7 / 190.5
  6204. }
  6205. },
  6206. maleNsfw: {
  6207. height: math.unit(8, "feet"),
  6208. weight: math.unit(350, "lb"),
  6209. name: "Male (NSFW)",
  6210. image: {
  6211. source: "./media/characters/sigvald/male-nsfw.svg",
  6212. extra: 182 / 164,
  6213. bottom: 8.7 / 190.5
  6214. }
  6215. },
  6216. hermNsfw: {
  6217. height: math.unit(8, "feet"),
  6218. weight: math.unit(350, "lb"),
  6219. name: "Herm (NSFW)",
  6220. image: {
  6221. source: "./media/characters/sigvald/herm-nsfw.svg",
  6222. extra: 182 / 164,
  6223. bottom: 8.7 / 190.5
  6224. }
  6225. },
  6226. dick: {
  6227. height: math.unit(2.36, "feet"),
  6228. name: "Dick",
  6229. image: {
  6230. source: "./media/characters/sigvald/dick.svg"
  6231. }
  6232. },
  6233. eye: {
  6234. height: math.unit(0.31, "feet"),
  6235. name: "Eye",
  6236. image: {
  6237. source: "./media/characters/sigvald/eye.svg"
  6238. }
  6239. },
  6240. mouth: {
  6241. height: math.unit(0.92, "feet"),
  6242. name: "Mouth",
  6243. image: {
  6244. source: "./media/characters/sigvald/mouth.svg"
  6245. }
  6246. },
  6247. paws: {
  6248. height: math.unit(2.2, "feet"),
  6249. name: "Paws",
  6250. image: {
  6251. source: "./media/characters/sigvald/paws.svg"
  6252. }
  6253. }
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(8, "feet")
  6259. },
  6260. {
  6261. name: "Large",
  6262. height: math.unit(12, "feet")
  6263. },
  6264. {
  6265. name: "Larger",
  6266. height: math.unit(20, "feet")
  6267. },
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(150, "feet")
  6271. },
  6272. {
  6273. name: "Macro+",
  6274. height: math.unit(200, "feet"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6281. {
  6282. anthro_front: {
  6283. height: math.unit(5 + 11/12, "feet"),
  6284. weight: math.unit(250, "lb"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/scott/anthro-front.svg",
  6288. extra: 851/781,
  6289. bottom: 54/905
  6290. },
  6291. form: "anthro",
  6292. default: true
  6293. },
  6294. anthro_side: {
  6295. height: math.unit(5.1, "feet"),
  6296. weight: math.unit(250, "lb"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/scott/anthro-side.svg"
  6300. },
  6301. form: "anthro",
  6302. },
  6303. anthro_dick: {
  6304. height: math.unit(1.33, "feet"),
  6305. name: "Dick",
  6306. image: {
  6307. source: "./media/characters/scott/anthro-dick.svg"
  6308. },
  6309. form: "anthro",
  6310. },
  6311. side: {
  6312. height: math.unit(12, "feet"),
  6313. weight: math.unit(2000, "kg"),
  6314. name: "Side",
  6315. image: {
  6316. source: "./media/characters/scott/side.svg",
  6317. extra: 754 / 724,
  6318. bottom: 0.069
  6319. },
  6320. form: "taur",
  6321. default: true
  6322. },
  6323. upright: {
  6324. height: math.unit(12, "feet"),
  6325. weight: math.unit(2000, "kg"),
  6326. name: "Upright",
  6327. image: {
  6328. source: "./media/characters/scott/upright.svg",
  6329. extra: 3881 / 3722,
  6330. bottom: 0.05
  6331. },
  6332. form: "taur",
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(5 + 11/12, "feet"),
  6339. default: true,
  6340. form: "anthro"
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(12, "feet"),
  6345. default: true,
  6346. form: "taur"
  6347. },
  6348. ],
  6349. {
  6350. "anthro": {
  6351. name: "Anthro",
  6352. default: true
  6353. },
  6354. "taur": {
  6355. name: "Taur",
  6356. },
  6357. }
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6361. {
  6362. side: {
  6363. height: math.unit(8, "meters"),
  6364. weight: math.unit(84755, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/tobias/side.svg",
  6368. extra: 1474 / 1096,
  6369. bottom: 38.9 / 1513.1235
  6370. }
  6371. },
  6372. maw: {
  6373. height: math.unit(2.3, "meters"),
  6374. name: "Maw",
  6375. image: {
  6376. source: "./media/characters/tobias/maw.svg"
  6377. }
  6378. },
  6379. burp: {
  6380. height: math.unit(2.85, "meters"),
  6381. name: "Burp",
  6382. image: {
  6383. source: "./media/characters/tobias/burp.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(8, "meters"),
  6391. default: true
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6397. {
  6398. front: {
  6399. height: math.unit(5.5, "feet"),
  6400. weight: math.unit(400, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/kieran/front.svg",
  6404. extra: 2694 / 2364,
  6405. bottom: 217 / 2908
  6406. }
  6407. },
  6408. side: {
  6409. height: math.unit(5.5, "feet"),
  6410. weight: math.unit(400, "lbs"),
  6411. name: "Side",
  6412. image: {
  6413. source: "./media/characters/kieran/side.svg",
  6414. extra: 875 / 777,
  6415. bottom: 84.6 / 959
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5.5, "feet"),
  6423. default: true
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6429. {
  6430. side: {
  6431. height: math.unit(2, "meters"),
  6432. weight: math.unit(70, "kg"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/sanya/side.svg",
  6436. bottom: 0.02,
  6437. extra: 1.02
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Small",
  6444. height: math.unit(2, "meters")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(3, "meters")
  6449. },
  6450. {
  6451. name: "Macro",
  6452. height: math.unit(16, "meters"),
  6453. default: true
  6454. },
  6455. ]
  6456. ))
  6457. characterMakers.push(() => makeCharacter(
  6458. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6459. {
  6460. front: {
  6461. height: math.unit(2, "meters"),
  6462. weight: math.unit(120, "kg"),
  6463. name: "Front",
  6464. image: {
  6465. source: "./media/characters/miranda/front.svg",
  6466. extra: 195 / 185,
  6467. bottom: 10.9 / 206.5
  6468. }
  6469. },
  6470. back: {
  6471. height: math.unit(2, "meters"),
  6472. weight: math.unit(120, "kg"),
  6473. name: "Back",
  6474. image: {
  6475. source: "./media/characters/miranda/back.svg",
  6476. extra: 201 / 193,
  6477. bottom: 2.3 / 203.7
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(10, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "James", species: ["deer"], tags: ["anthro"] },
  6491. {
  6492. side: {
  6493. height: math.unit(2, "meters"),
  6494. weight: math.unit(100, "kg"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/james/front.svg",
  6498. extra: 10 / 8.5
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(8.5, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6512. {
  6513. side: {
  6514. height: math.unit(9.5, "feet"),
  6515. weight: math.unit(2500, "lbs"),
  6516. name: "Side",
  6517. image: {
  6518. source: "./media/characters/heather/side.svg"
  6519. }
  6520. },
  6521. },
  6522. [
  6523. {
  6524. name: "Normal",
  6525. height: math.unit(9.5, "feet"),
  6526. default: true
  6527. }
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6532. {
  6533. side: {
  6534. height: math.unit(6.5, "feet"),
  6535. weight: math.unit(400, "lbs"),
  6536. name: "Side",
  6537. image: {
  6538. source: "./media/characters/lukas/side.svg",
  6539. extra: 7.25 / 6.5
  6540. }
  6541. },
  6542. },
  6543. [
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(6.5, "feet"),
  6547. default: true
  6548. }
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6553. {
  6554. side: {
  6555. height: math.unit(5, "feet"),
  6556. weight: math.unit(3000, "lbs"),
  6557. name: "Side",
  6558. image: {
  6559. source: "./media/characters/louise/side.svg"
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(5, "feet"),
  6567. default: true
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6573. {
  6574. side: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(150, "lbs"),
  6577. name: "Side",
  6578. image: {
  6579. source: "./media/characters/ramona/side.svg",
  6580. extra: 871/854,
  6581. bottom: 41/912
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Normal",
  6588. height: math.unit(6 + 4/12, "feet")
  6589. },
  6590. {
  6591. name: "Minimacro",
  6592. height: math.unit(5.3, "meters"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(20, "stories")
  6598. },
  6599. {
  6600. name: "Macro+",
  6601. height: math.unit(50, "stories")
  6602. },
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6607. {
  6608. standing: {
  6609. height: math.unit(5.75, "feet"),
  6610. weight: math.unit(160, "lbs"),
  6611. name: "Standing",
  6612. image: {
  6613. source: "./media/characters/deerpuff/standing.svg",
  6614. extra: 682 / 624
  6615. }
  6616. },
  6617. sitting: {
  6618. height: math.unit(5.75 / 1.79, "feet"),
  6619. weight: math.unit(160, "lbs"),
  6620. name: "Sitting",
  6621. image: {
  6622. source: "./media/characters/deerpuff/sitting.svg",
  6623. bottom: 44 / 400,
  6624. extra: 1
  6625. }
  6626. },
  6627. taurLaying: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(400, "lbs"),
  6630. name: "Taur (Laying)",
  6631. image: {
  6632. source: "./media/characters/deerpuff/taur-laying.svg"
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Puffball",
  6639. height: math.unit(6, "inches")
  6640. },
  6641. {
  6642. name: "Normalpuff",
  6643. height: math.unit(5.75, "feet")
  6644. },
  6645. {
  6646. name: "Macropuff",
  6647. height: math.unit(1500, "feet"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Megapuff",
  6652. height: math.unit(500, "miles")
  6653. },
  6654. {
  6655. name: "Gigapuff",
  6656. height: math.unit(250000, "miles")
  6657. },
  6658. {
  6659. name: "Omegapuff",
  6660. height: math.unit(1000, "lightyears")
  6661. },
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6666. {
  6667. stomping: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(170, "lbs"),
  6670. name: "Stomping",
  6671. image: {
  6672. source: "./media/characters/vivian/stomping.svg"
  6673. }
  6674. },
  6675. sitting: {
  6676. height: math.unit(6 / 1.75, "feet"),
  6677. weight: math.unit(170, "lbs"),
  6678. name: "Sitting",
  6679. image: {
  6680. source: "./media/characters/vivian/sitting.svg",
  6681. bottom: 1 / 6.4,
  6682. extra: 1,
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Normal",
  6689. height: math.unit(7, "feet"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(10, "stories")
  6695. },
  6696. {
  6697. name: "Macro+",
  6698. height: math.unit(30, "stories")
  6699. },
  6700. {
  6701. name: "Megamacro",
  6702. height: math.unit(10, "miles")
  6703. },
  6704. {
  6705. name: "Megamacro+",
  6706. height: math.unit(2750000, "meters")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(160, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/prince/front.svg",
  6719. extra: 1938/1682,
  6720. bottom: 45/1983
  6721. }
  6722. },
  6723. back: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(160, "lbs"),
  6726. name: "Back",
  6727. image: {
  6728. source: "./media/characters/prince/back.svg",
  6729. extra: 1955/1726,
  6730. bottom: 6/1961
  6731. }
  6732. },
  6733. },
  6734. [
  6735. {
  6736. name: "Normal",
  6737. height: math.unit(7.75, "feet"),
  6738. default: true
  6739. },
  6740. {
  6741. name: "Not cute",
  6742. height: math.unit(17, "feet")
  6743. },
  6744. {
  6745. name: "I said NOT",
  6746. height: math.unit(91, "feet")
  6747. },
  6748. {
  6749. name: "Please stop",
  6750. height: math.unit(560, "feet")
  6751. },
  6752. {
  6753. name: "What have you done",
  6754. height: math.unit(2200, "feet")
  6755. },
  6756. {
  6757. name: "Deer God",
  6758. height: math.unit(3.6, "miles")
  6759. },
  6760. ]
  6761. ))
  6762. characterMakers.push(() => makeCharacter(
  6763. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6764. {
  6765. standing: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(300, "lbs"),
  6768. name: "Standing",
  6769. image: {
  6770. source: "./media/characters/psymon/standing.svg",
  6771. extra: 1888 / 1810,
  6772. bottom: 0.05
  6773. }
  6774. },
  6775. slithering: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(300, "lbs"),
  6778. name: "Slithering",
  6779. image: {
  6780. source: "./media/characters/psymon/slithering.svg",
  6781. extra: 1330 / 1224
  6782. }
  6783. },
  6784. slitheringAlt: {
  6785. height: math.unit(6, "feet"),
  6786. weight: math.unit(300, "lbs"),
  6787. name: "Slithering (Alt)",
  6788. image: {
  6789. source: "./media/characters/psymon/slithering-alt.svg",
  6790. extra: 1330 / 1224
  6791. }
  6792. },
  6793. },
  6794. [
  6795. {
  6796. name: "Normal",
  6797. height: math.unit(11.25, "feet"),
  6798. default: true
  6799. },
  6800. {
  6801. name: "Large",
  6802. height: math.unit(27, "feet")
  6803. },
  6804. {
  6805. name: "Giant",
  6806. height: math.unit(87, "feet")
  6807. },
  6808. {
  6809. name: "Macro",
  6810. height: math.unit(365, "feet")
  6811. },
  6812. {
  6813. name: "Megamacro",
  6814. height: math.unit(3, "miles")
  6815. },
  6816. {
  6817. name: "World Serpent",
  6818. height: math.unit(8000, "miles")
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6824. {
  6825. front: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(180, "lbs"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/daimos/front.svg",
  6831. extra: 4160 / 3897,
  6832. bottom: 0.021
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(8, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Big Dog",
  6844. height: math.unit(22, "feet")
  6845. },
  6846. {
  6847. name: "Macro",
  6848. height: math.unit(127, "feet")
  6849. },
  6850. {
  6851. name: "Megamacro",
  6852. height: math.unit(3600, "feet")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6858. {
  6859. side: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(180, "lbs"),
  6862. name: "Side",
  6863. image: {
  6864. source: "./media/characters/blake/side.svg",
  6865. extra: 1212 / 1120,
  6866. bottom: 0.05
  6867. }
  6868. },
  6869. crouched: {
  6870. height: math.unit(6 * 0.57, "feet"),
  6871. weight: math.unit(180, "lbs"),
  6872. name: "Crouched",
  6873. image: {
  6874. source: "./media/characters/blake/crouched.svg",
  6875. extra: 840 / 587,
  6876. bottom: 0.04
  6877. }
  6878. },
  6879. bent: {
  6880. height: math.unit(6 * 0.75, "feet"),
  6881. weight: math.unit(180, "lbs"),
  6882. name: "Bent",
  6883. image: {
  6884. source: "./media/characters/blake/bent.svg",
  6885. extra: 592 / 544,
  6886. bottom: 0.035
  6887. }
  6888. },
  6889. },
  6890. [
  6891. {
  6892. name: "Normal",
  6893. height: math.unit(8 + 1 / 6, "feet"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Big Backside",
  6898. height: math.unit(37, "feet")
  6899. },
  6900. {
  6901. name: "Subway Shredder",
  6902. height: math.unit(72, "feet")
  6903. },
  6904. {
  6905. name: "City Carver",
  6906. height: math.unit(1675, "feet")
  6907. },
  6908. {
  6909. name: "Tectonic Tweaker",
  6910. height: math.unit(2300, "miles")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(180, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/guisetto/front.svg",
  6923. extra: 856 / 817,
  6924. bottom: 0.06
  6925. }
  6926. },
  6927. airborne: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(180, "lbs"),
  6930. name: "Airborne",
  6931. image: {
  6932. source: "./media/characters/guisetto/airborne.svg",
  6933. extra: 584 / 525
  6934. }
  6935. },
  6936. },
  6937. [
  6938. {
  6939. name: "Normal",
  6940. height: math.unit(10 + 11 / 12, "feet"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Large",
  6945. height: math.unit(35, "feet")
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(475, "feet")
  6950. },
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6955. {
  6956. front: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(180, "lbs"),
  6959. name: "Front",
  6960. image: {
  6961. source: "./media/characters/luxor/front.svg",
  6962. extra: 2940 / 2152
  6963. }
  6964. },
  6965. back: {
  6966. height: math.unit(6, "feet"),
  6967. weight: math.unit(180, "lbs"),
  6968. name: "Back",
  6969. image: {
  6970. source: "./media/characters/luxor/back.svg",
  6971. extra: 1083 / 960
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(5 + 5 / 6, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Lamp",
  6983. height: math.unit(50, "feet")
  6984. },
  6985. {
  6986. name: "Lämp",
  6987. height: math.unit(300, "feet")
  6988. },
  6989. {
  6990. name: "The sun is a lamp",
  6991. height: math.unit(250000, "miles")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(50, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/huoyan/front.svg"
  7004. }
  7005. },
  7006. side: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(180, "lbs"),
  7009. name: "Side",
  7010. image: {
  7011. source: "./media/characters/huoyan/side.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Chef",
  7018. height: math.unit(9, "feet")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(65, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(780, "feet")
  7028. },
  7029. {
  7030. name: "Flaming Mountain",
  7031. height: math.unit(4.8, "miles")
  7032. },
  7033. {
  7034. name: "Celestial",
  7035. height: math.unit(765000, "miles")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(5 + 3 / 4, "feet"),
  7044. weight: math.unit(120, "lbs"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/tails/front.svg"
  7048. }
  7049. }
  7050. },
  7051. [
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(5 + 3 / 4, "feet"),
  7055. default: true
  7056. }
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(4, "feet"),
  7064. weight: math.unit(50, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/rainy/front.svg"
  7068. }
  7069. }
  7070. },
  7071. [
  7072. {
  7073. name: "Macro",
  7074. height: math.unit(800, "feet"),
  7075. default: true
  7076. }
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(150, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/rainier/front.svg"
  7088. }
  7089. }
  7090. },
  7091. [
  7092. {
  7093. name: "Micro",
  7094. height: math.unit(2, "mm"),
  7095. default: true
  7096. }
  7097. ]
  7098. ))
  7099. characterMakers.push(() => makeCharacter(
  7100. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7101. {
  7102. front: {
  7103. height: math.unit(8 + 4/12, "feet"),
  7104. weight: math.unit(450, "kilograms"),
  7105. name: "Front",
  7106. image: {
  7107. source: "./media/characters/andy-renard/front.svg",
  7108. extra: 862/809,
  7109. bottom: 85/947
  7110. },
  7111. extraAttributes: {
  7112. "pawSize": {
  7113. name: "Paw Size",
  7114. power: 2,
  7115. type: "area",
  7116. base: math.unit(0.45*0.3, "meters^2")
  7117. },
  7118. "handSize": {
  7119. name: "Hand Size",
  7120. power: 2,
  7121. type: "area",
  7122. base: math.unit(0.4 * 0.3, "meters^2")
  7123. },
  7124. "cockSize": {
  7125. name: "Cock Length",
  7126. power: 1,
  7127. type: "length",
  7128. base: math.unit(0.75, "meters")
  7129. },
  7130. "ballDiameter": {
  7131. name: "Ball Diameter",
  7132. power: 1,
  7133. type: "length",
  7134. base: math.unit(0.3, "meters")
  7135. },
  7136. "ballVolume": {
  7137. name: "Ball Volume",
  7138. power: 3,
  7139. type: "volume",
  7140. base: math.unit(0.01413716694, "meters^3")
  7141. },
  7142. }
  7143. },
  7144. back: {
  7145. height: math.unit(8 + 4/12, "feet"),
  7146. weight: math.unit(450, "kilograms"),
  7147. name: "Back",
  7148. image: {
  7149. source: "./media/characters/andy-renard/back.svg",
  7150. extra: 1112/1033,
  7151. bottom: 64/1176
  7152. },
  7153. extraAttributes: {
  7154. "pawSize": {
  7155. name: "Paw Size",
  7156. power: 2,
  7157. type: "area",
  7158. base: math.unit(0.45*0.3, "meters^2")
  7159. },
  7160. "handSize": {
  7161. name: "Hand Size",
  7162. power: 2,
  7163. type: "area",
  7164. base: math.unit(0.4 * 0.3, "meters^2")
  7165. },
  7166. "cockSize": {
  7167. name: "Cock Length",
  7168. power: 1,
  7169. type: "length",
  7170. base: math.unit(0.75, "meters")
  7171. },
  7172. "ballDiameter": {
  7173. name: "Ball Diameter",
  7174. power: 1,
  7175. type: "length",
  7176. base: math.unit(0.3, "meters")
  7177. },
  7178. "ballVolume": {
  7179. name: "Ball Volume",
  7180. power: 3,
  7181. type: "volume",
  7182. base: math.unit(0.01413716694, "meters^3")
  7183. },
  7184. }
  7185. },
  7186. },
  7187. [
  7188. {
  7189. name: "Tall",
  7190. height: math.unit(6 + 8/12, "feet")
  7191. },
  7192. {
  7193. name: "Very Tall",
  7194. height: math.unit(8 + 4/12, "feet")
  7195. },
  7196. {
  7197. name: "Mini Macro",
  7198. height: math.unit(15, "feet"),
  7199. default: true
  7200. },
  7201. {
  7202. name: "Giant",
  7203. height: math.unit(50, "feet")
  7204. },
  7205. {
  7206. name: "Nice",
  7207. height: math.unit(69, "feet")
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(100, "feet")
  7212. },
  7213. {
  7214. name: "Enormous",
  7215. height: math.unit(500, "feet")
  7216. },
  7217. {
  7218. name: "Gargantuan",
  7219. height: math.unit(1000, "feet")
  7220. },
  7221. {
  7222. name: "Mega",
  7223. height: math.unit(1, "mile")
  7224. },
  7225. {
  7226. name: "Giga",
  7227. height: math.unit(50, "miles")
  7228. },
  7229. {
  7230. name: "Tera",
  7231. height: math.unit(1000, "miles")
  7232. },
  7233. {
  7234. name: "Cosmic",
  7235. height: math.unit(1.5, "galaxies")
  7236. },
  7237. {
  7238. name: "God",
  7239. height: math.unit(1.5, "universes")
  7240. },
  7241. {
  7242. name: "Chief Execute God",
  7243. height: math.unit(1.5, "multiverses")
  7244. },
  7245. ]
  7246. ))
  7247. characterMakers.push(() => makeCharacter(
  7248. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7249. {
  7250. front: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(210, "lbs"),
  7253. name: "Front",
  7254. image: {
  7255. source: "./media/characters/cimmaron/front-sfw.svg",
  7256. extra: 701 / 676,
  7257. bottom: 0.046
  7258. }
  7259. },
  7260. back: {
  7261. height: math.unit(6, "feet"),
  7262. weight: math.unit(210, "lbs"),
  7263. name: "Back",
  7264. image: {
  7265. source: "./media/characters/cimmaron/back-sfw.svg",
  7266. extra: 701 / 676,
  7267. bottom: 0.046
  7268. }
  7269. },
  7270. frontNsfw: {
  7271. height: math.unit(6, "feet"),
  7272. weight: math.unit(210, "lbs"),
  7273. name: "Front (NSFW)",
  7274. image: {
  7275. source: "./media/characters/cimmaron/front-nsfw.svg",
  7276. extra: 701 / 676,
  7277. bottom: 0.046
  7278. }
  7279. },
  7280. backNsfw: {
  7281. height: math.unit(6, "feet"),
  7282. weight: math.unit(210, "lbs"),
  7283. name: "Back (NSFW)",
  7284. image: {
  7285. source: "./media/characters/cimmaron/back-nsfw.svg",
  7286. extra: 701 / 676,
  7287. bottom: 0.046
  7288. }
  7289. },
  7290. dick: {
  7291. height: math.unit(1.714, "feet"),
  7292. name: "Dick",
  7293. image: {
  7294. source: "./media/characters/cimmaron/dick.svg"
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(6, "feet"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Macro Mayor",
  7306. height: math.unit(350, "meters")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(200, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/akari/front.svg",
  7319. extra: 962 / 901,
  7320. bottom: 0.04
  7321. }
  7322. }
  7323. },
  7324. [
  7325. {
  7326. name: "Micro",
  7327. height: math.unit(5, "inches"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(7, "feet")
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(140, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/cynosura/front.svg",
  7345. extra: 437/410,
  7346. bottom: 9/446
  7347. }
  7348. },
  7349. back: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(140, "lbs"),
  7352. name: "Back",
  7353. image: {
  7354. source: "./media/characters/cynosura/back.svg",
  7355. extra: 1304/1160,
  7356. bottom: 71/1375
  7357. }
  7358. },
  7359. },
  7360. [
  7361. {
  7362. name: "Micro",
  7363. height: math.unit(4, "inches")
  7364. },
  7365. {
  7366. name: "Normal",
  7367. height: math.unit(5.75, "feet"),
  7368. default: true
  7369. },
  7370. {
  7371. name: "Tall",
  7372. height: math.unit(10, "feet")
  7373. },
  7374. {
  7375. name: "Big",
  7376. height: math.unit(20, "feet")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(50, "feet")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(13 + 2/12, "feet"),
  7389. weight: math.unit(800, "kg"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/gin/front.svg",
  7393. extra: 1312/1191,
  7394. bottom: 45/1357
  7395. }
  7396. },
  7397. mouth: {
  7398. height: math.unit(2.39 * 1.8, "feet"),
  7399. name: "Mouth",
  7400. image: {
  7401. source: "./media/characters/gin/mouth.svg"
  7402. }
  7403. },
  7404. hand: {
  7405. height: math.unit(1.57 * 2.19, "feet"),
  7406. name: "Hand",
  7407. image: {
  7408. source: "./media/characters/gin/hand.svg"
  7409. }
  7410. },
  7411. foot: {
  7412. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7413. name: "Foot",
  7414. image: {
  7415. source: "./media/characters/gin/foot.svg"
  7416. }
  7417. },
  7418. sole: {
  7419. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7420. name: "Sole",
  7421. image: {
  7422. source: "./media/characters/gin/sole.svg"
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Very Small",
  7429. height: math.unit(13 + 2 / 12, "feet")
  7430. },
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(600, "miles")
  7434. },
  7435. {
  7436. name: "Regular",
  7437. height: math.unit(20, "earths"),
  7438. default: true
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(2.2, "solarradii")
  7443. },
  7444. {
  7445. name: "Teramacro",
  7446. height: math.unit(1.2, "galaxies")
  7447. },
  7448. {
  7449. name: "Omegamacro",
  7450. height: math.unit(200, "universes")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(6 + 1 / 6, "feet"),
  7459. weight: math.unit(178, "lbs"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/guy/front.svg"
  7463. }
  7464. }
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(6 + 1 / 6, "feet"),
  7470. default: true
  7471. },
  7472. {
  7473. name: "Large",
  7474. height: math.unit(25 + 7 / 12, "feet")
  7475. },
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(60 + 9 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Macro+",
  7482. height: math.unit(246, "feet")
  7483. },
  7484. {
  7485. name: "Macro++",
  7486. height: math.unit(878, "feet")
  7487. }
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(9, "feet"),
  7495. weight: math.unit(800, "lbs"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/tiberius/front.svg",
  7499. extra: 2295 / 2071
  7500. }
  7501. },
  7502. back: {
  7503. height: math.unit(9, "feet"),
  7504. weight: math.unit(800, "lbs"),
  7505. name: "Back",
  7506. image: {
  7507. source: "./media/characters/tiberius/back.svg",
  7508. extra: 2373 / 2160
  7509. }
  7510. },
  7511. },
  7512. [
  7513. {
  7514. name: "Normal",
  7515. height: math.unit(9, "feet"),
  7516. default: true
  7517. }
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7522. {
  7523. front: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(600, "lbs"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/surgo/front.svg",
  7529. extra: 3591 / 2227
  7530. }
  7531. },
  7532. back: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(600, "lbs"),
  7535. name: "Back",
  7536. image: {
  7537. source: "./media/characters/surgo/back.svg",
  7538. extra: 3557 / 2228
  7539. }
  7540. },
  7541. laying: {
  7542. height: math.unit(6 * 0.85, "feet"),
  7543. weight: math.unit(600, "lbs"),
  7544. name: "Laying",
  7545. image: {
  7546. source: "./media/characters/surgo/laying.svg"
  7547. }
  7548. },
  7549. },
  7550. [
  7551. {
  7552. name: "Normal",
  7553. height: math.unit(6, "feet"),
  7554. default: true
  7555. }
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7560. {
  7561. side: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(150, "lbs"),
  7564. name: "Side",
  7565. image: {
  7566. source: "./media/characters/cibus/side.svg",
  7567. extra: 800 / 400
  7568. }
  7569. },
  7570. },
  7571. [
  7572. {
  7573. name: "Normal",
  7574. height: math.unit(6, "feet"),
  7575. default: true
  7576. }
  7577. ]
  7578. ))
  7579. characterMakers.push(() => makeCharacter(
  7580. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7581. {
  7582. front: {
  7583. height: math.unit(6, "feet"),
  7584. weight: math.unit(240, "lbs"),
  7585. name: "Front",
  7586. image: {
  7587. source: "./media/characters/nibbles/front.svg"
  7588. }
  7589. },
  7590. side: {
  7591. height: math.unit(6, "feet"),
  7592. weight: math.unit(240, "lbs"),
  7593. name: "Side",
  7594. image: {
  7595. source: "./media/characters/nibbles/side.svg"
  7596. }
  7597. },
  7598. },
  7599. [
  7600. {
  7601. name: "Normal",
  7602. height: math.unit(9, "feet"),
  7603. default: true
  7604. }
  7605. ]
  7606. ))
  7607. characterMakers.push(() => makeCharacter(
  7608. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7609. {
  7610. side: {
  7611. height: math.unit(5 + 1 / 6, "feet"),
  7612. weight: math.unit(130, "lbs"),
  7613. name: "Side",
  7614. image: {
  7615. source: "./media/characters/rikky/side.svg",
  7616. extra: 851 / 801
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(5 + 1 / 6, "feet")
  7624. },
  7625. {
  7626. name: "Macro",
  7627. height: math.unit(152, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Megamacro",
  7632. height: math.unit(7, "miles")
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7638. {
  7639. side: {
  7640. height: math.unit(370, "cm"),
  7641. weight: math.unit(350, "lbs"),
  7642. name: "Side",
  7643. image: {
  7644. source: "./media/characters/malfressa/side.svg"
  7645. }
  7646. },
  7647. walking: {
  7648. height: math.unit(370, "cm"),
  7649. weight: math.unit(350, "lbs"),
  7650. name: "Walking",
  7651. image: {
  7652. source: "./media/characters/malfressa/walking.svg"
  7653. }
  7654. },
  7655. feral: {
  7656. height: math.unit(2500, "cm"),
  7657. weight: math.unit(100000, "lbs"),
  7658. name: "Feral",
  7659. image: {
  7660. source: "./media/characters/malfressa/feral.svg",
  7661. extra: 2108 / 837,
  7662. bottom: 0.02
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(370, "cm")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(300, "meters"),
  7674. default: true
  7675. }
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(60, "kg"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/jaro/front.svg",
  7687. extra: 845/817,
  7688. bottom: 45/890
  7689. }
  7690. },
  7691. back: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(60, "kg"),
  7694. name: "Back",
  7695. image: {
  7696. source: "./media/characters/jaro/back.svg",
  7697. extra: 847/817,
  7698. bottom: 34/881
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Micro",
  7705. height: math.unit(7, "inches")
  7706. },
  7707. {
  7708. name: "Normal",
  7709. height: math.unit(5.5, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Minimacro",
  7714. height: math.unit(20, "feet")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(200, "meters")
  7719. }
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(6, "feet"),
  7727. weight: math.unit(195, "lb"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/rogue/front.svg"
  7731. }
  7732. },
  7733. },
  7734. [
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(90, "feet"),
  7738. default: true
  7739. },
  7740. ]
  7741. ))
  7742. characterMakers.push(() => makeCharacter(
  7743. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7744. {
  7745. standing: {
  7746. height: math.unit(5 + 8 / 12, "feet"),
  7747. weight: math.unit(140, "lb"),
  7748. name: "Standing",
  7749. image: {
  7750. source: "./media/characters/piper/standing.svg",
  7751. extra: 1440/1284,
  7752. bottom: 66/1506
  7753. }
  7754. },
  7755. running: {
  7756. height: math.unit(5 + 8 / 12, "feet"),
  7757. weight: math.unit(140, "lb"),
  7758. name: "Running",
  7759. image: {
  7760. source: "./media/characters/piper/running.svg",
  7761. extra: 3948/3655,
  7762. bottom: 0/3948
  7763. }
  7764. },
  7765. sole: {
  7766. height: math.unit(0.81, "feet"),
  7767. weight: math.unit(2, "kg"),
  7768. name: "Sole",
  7769. image: {
  7770. source: "./media/characters/piper/sole.svg"
  7771. }
  7772. },
  7773. nipple: {
  7774. height: math.unit(0.25, "feet"),
  7775. weight: math.unit(1.5, "lb"),
  7776. name: "Nipple",
  7777. image: {
  7778. source: "./media/characters/piper/nipple.svg"
  7779. }
  7780. },
  7781. head: {
  7782. height: math.unit(1.1, "feet"),
  7783. name: "Head",
  7784. image: {
  7785. source: "./media/characters/piper/head.svg"
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(2, "inches")
  7793. },
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(5 + 8 / 12, "feet")
  7797. },
  7798. {
  7799. name: "Macro",
  7800. height: math.unit(250, "feet"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Megamacro",
  7805. height: math.unit(7, "miles")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(6, "feet"),
  7814. weight: math.unit(220, "lb"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/gemini/front.svg"
  7818. }
  7819. },
  7820. back: {
  7821. height: math.unit(6, "feet"),
  7822. weight: math.unit(220, "lb"),
  7823. name: "Back",
  7824. image: {
  7825. source: "./media/characters/gemini/back.svg"
  7826. }
  7827. },
  7828. kneeling: {
  7829. height: math.unit(6 / 1.5, "feet"),
  7830. weight: math.unit(220, "lb"),
  7831. name: "Kneeling",
  7832. image: {
  7833. source: "./media/characters/gemini/kneeling.svg",
  7834. bottom: 0.02
  7835. }
  7836. },
  7837. },
  7838. [
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(300, "meters"),
  7842. default: true
  7843. },
  7844. {
  7845. name: "Megamacro",
  7846. height: math.unit(6900, "meters")
  7847. },
  7848. ]
  7849. ))
  7850. characterMakers.push(() => makeCharacter(
  7851. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7852. {
  7853. anthro: {
  7854. height: math.unit(2.35, "meters"),
  7855. weight: math.unit(73, "kg"),
  7856. name: "Anthro",
  7857. image: {
  7858. source: "./media/characters/alicia/anthro.svg",
  7859. extra: 2571 / 2385,
  7860. bottom: 75 / 2648
  7861. }
  7862. },
  7863. paw: {
  7864. height: math.unit(1.32, "feet"),
  7865. name: "Paw",
  7866. image: {
  7867. source: "./media/characters/alicia/paw.svg"
  7868. }
  7869. },
  7870. feral: {
  7871. height: math.unit(1.69, "meters"),
  7872. weight: math.unit(73, "kg"),
  7873. name: "Feral",
  7874. image: {
  7875. source: "./media/characters/alicia/feral.svg",
  7876. extra: 2123 / 1715,
  7877. bottom: 222 / 2349
  7878. }
  7879. },
  7880. },
  7881. [
  7882. {
  7883. name: "Normal",
  7884. height: math.unit(2.35, "meters")
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(60, "meters"),
  7889. default: true
  7890. },
  7891. {
  7892. name: "Megamacro",
  7893. height: math.unit(10000, "kilometers")
  7894. },
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7899. {
  7900. front: {
  7901. height: math.unit(7, "feet"),
  7902. weight: math.unit(250, "lbs"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/archy/front.svg"
  7906. }
  7907. }
  7908. },
  7909. [
  7910. {
  7911. name: "Micro",
  7912. height: math.unit(1, "inch")
  7913. },
  7914. {
  7915. name: "Shorty",
  7916. height: math.unit(5, "feet")
  7917. },
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(7, "feet")
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(600, "meters"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Megamacro",
  7929. height: math.unit(1, "mile")
  7930. },
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.65, "meters"),
  7938. weight: math.unit(74, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/berri/front.svg",
  7942. extra: 857 / 837,
  7943. bottom: 18 / 877
  7944. }
  7945. },
  7946. bum: {
  7947. height: math.unit(1.46, "feet"),
  7948. name: "Bum",
  7949. image: {
  7950. source: "./media/characters/berri/bum.svg"
  7951. }
  7952. },
  7953. mouth: {
  7954. height: math.unit(0.44, "feet"),
  7955. name: "Mouth",
  7956. image: {
  7957. source: "./media/characters/berri/mouth.svg"
  7958. }
  7959. },
  7960. paw: {
  7961. height: math.unit(0.826, "feet"),
  7962. name: "Paw",
  7963. image: {
  7964. source: "./media/characters/berri/paw.svg"
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Normal",
  7971. height: math.unit(1.65, "meters")
  7972. },
  7973. {
  7974. name: "Macro",
  7975. height: math.unit(60, "m"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Megamacro",
  7980. height: math.unit(9.213, "km")
  7981. },
  7982. {
  7983. name: "Planet Eater",
  7984. height: math.unit(489, "megameters")
  7985. },
  7986. {
  7987. name: "Teramacro",
  7988. height: math.unit(2471635000000, "meters")
  7989. },
  7990. {
  7991. name: "Examacro",
  7992. height: math.unit(8.0624e+26, "meters")
  7993. }
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(1.72, "meters"),
  8001. weight: math.unit(68, "kg"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/lexi/front.svg"
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Very Smol",
  8011. height: math.unit(10, "mm")
  8012. },
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(6.8, "cm"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(1.72, "m")
  8021. }
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(1.69, "meters"),
  8029. weight: math.unit(68, "kg"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/martin/front.svg",
  8033. extra: 596 / 581
  8034. }
  8035. }
  8036. },
  8037. [
  8038. {
  8039. name: "Micro",
  8040. height: math.unit(6.85, "cm"),
  8041. default: true
  8042. },
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(1.69, "m")
  8046. }
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  8051. {
  8052. front: {
  8053. height: math.unit(1.69, "meters"),
  8054. weight: math.unit(68, "kg"),
  8055. name: "Front",
  8056. image: {
  8057. source: "./media/characters/juno/front.svg"
  8058. }
  8059. }
  8060. },
  8061. [
  8062. {
  8063. name: "Micro",
  8064. height: math.unit(7, "cm")
  8065. },
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(1.89, "m")
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(353, "meters"),
  8073. default: true
  8074. }
  8075. ]
  8076. ))
  8077. characterMakers.push(() => makeCharacter(
  8078. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  8079. {
  8080. front: {
  8081. height: math.unit(1.93, "meters"),
  8082. weight: math.unit(83, "kg"),
  8083. name: "Front",
  8084. image: {
  8085. source: "./media/characters/samantha/front.svg"
  8086. }
  8087. },
  8088. frontClothed: {
  8089. height: math.unit(1.93, "meters"),
  8090. weight: math.unit(83, "kg"),
  8091. name: "Front (Clothed)",
  8092. image: {
  8093. source: "./media/characters/samantha/front-clothed.svg"
  8094. }
  8095. },
  8096. back: {
  8097. height: math.unit(1.93, "meters"),
  8098. weight: math.unit(83, "kg"),
  8099. name: "Back",
  8100. image: {
  8101. source: "./media/characters/samantha/back.svg"
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(1.93, "m")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(74, "meters"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Macro+",
  8117. height: math.unit(223, "meters"),
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(8381, "meters"),
  8122. },
  8123. {
  8124. name: "Megamacro+",
  8125. height: math.unit(12000, "kilometers")
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(1.92, "meters"),
  8134. weight: math.unit(80, "kg"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/dr-clay/front.svg"
  8138. }
  8139. },
  8140. frontClothed: {
  8141. height: math.unit(1.92, "meters"),
  8142. weight: math.unit(80, "kg"),
  8143. name: "Front (Clothed)",
  8144. image: {
  8145. source: "./media/characters/dr-clay/front-clothed.svg"
  8146. }
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(1.92, "m")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(214, "meters"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Macro+",
  8161. height: math.unit(12.237, "meters"),
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(557, "megameters"),
  8166. },
  8167. {
  8168. name: "Unimaginable",
  8169. height: math.unit(120e9, "lightyears")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(2, "meters"),
  8178. weight: math.unit(80, "kg"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8182. }
  8183. }
  8184. },
  8185. [
  8186. {
  8187. name: "Teramacro",
  8188. height: math.unit(500000, "lightyears"),
  8189. default: true
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8195. {
  8196. crux: {
  8197. height: math.unit(2, "meters"),
  8198. weight: math.unit(150, "kg"),
  8199. name: "Crux",
  8200. image: {
  8201. source: "./media/characters/vemus/crux.svg",
  8202. extra: 1074/936,
  8203. bottom: 23/1097
  8204. }
  8205. },
  8206. skunkTanuki: {
  8207. height: math.unit(2, "meters"),
  8208. weight: math.unit(150, "kg"),
  8209. name: "Skunk-Tanuki",
  8210. image: {
  8211. source: "./media/characters/vemus/skunk-tanuki.svg",
  8212. extra: 926/893,
  8213. bottom: 20/946
  8214. }
  8215. },
  8216. },
  8217. [
  8218. {
  8219. name: "Normal",
  8220. height: math.unit(4, "meters"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Big",
  8225. height: math.unit(8, "meters")
  8226. },
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(100, "meters")
  8230. },
  8231. {
  8232. name: "Macro+",
  8233. height: math.unit(1500, "meters")
  8234. },
  8235. {
  8236. name: "Stellar",
  8237. height: math.unit(14e8, "meters")
  8238. },
  8239. ]
  8240. ))
  8241. characterMakers.push(() => makeCharacter(
  8242. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8243. {
  8244. front: {
  8245. height: math.unit(2, "meters"),
  8246. weight: math.unit(70, "kg"),
  8247. name: "Front",
  8248. image: {
  8249. source: "./media/characters/beherit/front.svg",
  8250. extra: 1234/1109,
  8251. bottom: 55/1289
  8252. }
  8253. }
  8254. },
  8255. [
  8256. {
  8257. name: "Normal",
  8258. height: math.unit(6, "feet")
  8259. },
  8260. {
  8261. name: "Lorg",
  8262. height: math.unit(25, "feet"),
  8263. default: true
  8264. },
  8265. {
  8266. name: "Lorger",
  8267. height: math.unit(75, "feet")
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(200, "meters")
  8272. },
  8273. ]
  8274. ))
  8275. characterMakers.push(() => makeCharacter(
  8276. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8277. {
  8278. front: {
  8279. height: math.unit(2, "meters"),
  8280. weight: math.unit(150, "kg"),
  8281. name: "Front",
  8282. image: {
  8283. source: "./media/characters/everett/front.svg",
  8284. extra: 1017/866,
  8285. bottom: 86/1103
  8286. }
  8287. },
  8288. paw: {
  8289. height: math.unit(2 / 3.6, "meters"),
  8290. name: "Paw",
  8291. image: {
  8292. source: "./media/characters/everett/paw.svg"
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(15, "feet"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Lorg",
  8304. height: math.unit(70, "feet"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Lorger",
  8309. height: math.unit(250, "feet")
  8310. },
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(500, "meters")
  8314. },
  8315. ]
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(2, "meters"),
  8322. weight: math.unit(86, "kg"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/rose/front.svg",
  8326. extra: 1785/1636,
  8327. bottom: 30/1815
  8328. },
  8329. form: "liom",
  8330. default: true
  8331. },
  8332. frontSporty: {
  8333. height: math.unit(2, "meters"),
  8334. weight: math.unit(86, "kg"),
  8335. name: "Front (Sporty)",
  8336. image: {
  8337. source: "./media/characters/rose/front-sporty.svg",
  8338. extra: 350/335,
  8339. bottom: 10/360
  8340. },
  8341. form: "liom"
  8342. },
  8343. frontAlt: {
  8344. height: math.unit(1.6, "meters"),
  8345. weight: math.unit(86, "kg"),
  8346. name: "Front (Alt)",
  8347. image: {
  8348. source: "./media/characters/rose/front-alt.svg",
  8349. extra: 299/283,
  8350. bottom: 3/302
  8351. },
  8352. form: "liom"
  8353. },
  8354. plush: {
  8355. height: math.unit(2, "meters"),
  8356. weight: math.unit(86/3, "kg"),
  8357. name: "Plush",
  8358. image: {
  8359. source: "./media/characters/rose/plush.svg",
  8360. extra: 361/337,
  8361. bottom: 11/372
  8362. },
  8363. form: "plush",
  8364. default: true
  8365. },
  8366. faeStanding: {
  8367. height: math.unit(10, "cm"),
  8368. weight: math.unit(10, "grams"),
  8369. name: "Standing",
  8370. image: {
  8371. source: "./media/characters/rose/fae-standing.svg",
  8372. extra: 1189/1060,
  8373. bottom: 27/1216
  8374. },
  8375. form: "fae",
  8376. default: true
  8377. },
  8378. faeSitting: {
  8379. height: math.unit(5, "cm"),
  8380. weight: math.unit(10, "grams"),
  8381. name: "Sitting",
  8382. image: {
  8383. source: "./media/characters/rose/fae-sitting.svg",
  8384. extra: 737/577,
  8385. bottom: 356/1093
  8386. },
  8387. form: "fae"
  8388. },
  8389. faePaw: {
  8390. height: math.unit(1.35, "cm"),
  8391. name: "Paw",
  8392. image: {
  8393. source: "./media/characters/rose/fae-paw.svg"
  8394. },
  8395. form: "fae"
  8396. },
  8397. fronttrueFae: {
  8398. height: math.unit(10, "cm"),
  8399. weight: math.unit(10, "grams"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/rose/true-fae-front.svg",
  8403. extra: 839/789,
  8404. bottom: 12/851
  8405. },
  8406. form: "true-fae",
  8407. default: true
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "True Micro",
  8413. height: math.unit(9, "cm"),
  8414. form: "liom"
  8415. },
  8416. {
  8417. name: "Micro",
  8418. height: math.unit(16, "cm"),
  8419. form: "liom"
  8420. },
  8421. {
  8422. name: "Normal",
  8423. height: math.unit(1.85, "meters"),
  8424. default: true,
  8425. form: "liom"
  8426. },
  8427. {
  8428. name: "Mini-Macro",
  8429. height: math.unit(5, "meters"),
  8430. form: "liom"
  8431. },
  8432. {
  8433. name: "Macro",
  8434. height: math.unit(15, "meters"),
  8435. form: "liom"
  8436. },
  8437. {
  8438. name: "True Macro",
  8439. height: math.unit(40, "meters"),
  8440. form: "liom"
  8441. },
  8442. {
  8443. name: "City Scale",
  8444. height: math.unit(1, "km"),
  8445. form: "liom"
  8446. },
  8447. {
  8448. name: "Plushie",
  8449. height: math.unit(9, "cm"),
  8450. form: "plush",
  8451. default: true
  8452. },
  8453. {
  8454. name: "Fae",
  8455. height: math.unit(10, "cm"),
  8456. form: "fae",
  8457. default: true
  8458. },
  8459. {
  8460. name: "Fae",
  8461. height: math.unit(10, "cm"),
  8462. form: "true-fae",
  8463. default: true
  8464. },
  8465. ],
  8466. {
  8467. "liom": {
  8468. name: "Liom"
  8469. },
  8470. "plush": {
  8471. name: "Plush"
  8472. },
  8473. "fae": {
  8474. name: "Fae Fox",
  8475. default: true
  8476. },
  8477. "true-fae": {
  8478. name: "True Fae",
  8479. },
  8480. }
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(2, "meters"),
  8487. weight: math.unit(350, "lbs"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/regal/front.svg"
  8491. }
  8492. },
  8493. back: {
  8494. height: math.unit(2, "meters"),
  8495. weight: math.unit(350, "lbs"),
  8496. name: "Back",
  8497. image: {
  8498. source: "./media/characters/regal/back.svg"
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Macro",
  8505. height: math.unit(350, "feet"),
  8506. default: true
  8507. }
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8512. {
  8513. standing: {
  8514. height: math.unit(4 + 11/12, "feet"),
  8515. weight: math.unit(100, "lb"),
  8516. name: "Standing",
  8517. image: {
  8518. source: "./media/characters/opal/standing.svg",
  8519. extra: 1588/1513,
  8520. bottom: 23/1611
  8521. }
  8522. },
  8523. sitting: {
  8524. height: math.unit(2.3, "feet"),
  8525. weight: math.unit(100, "lb"),
  8526. name: "Sitting",
  8527. image: {
  8528. source: "./media/characters/opal/sitting.svg",
  8529. extra: 1031/892,
  8530. bottom: 142/1173
  8531. }
  8532. },
  8533. hand: {
  8534. height: math.unit(0.59, "feet"),
  8535. name: "Hand",
  8536. image: {
  8537. source: "./media/characters/opal/hand.svg"
  8538. }
  8539. },
  8540. foot: {
  8541. height: math.unit(0.61, "feet"),
  8542. name: "Foot",
  8543. image: {
  8544. source: "./media/characters/opal/foot.svg"
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Small",
  8551. height: math.unit(4 + 11 / 12, "feet")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(20, "feet"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(120, "feet")
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(80, "miles")
  8565. },
  8566. {
  8567. name: "True Size",
  8568. height: math.unit(100000, "lightyears")
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(6, "feet"),
  8577. weight: math.unit(200, "lbs"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/vector-wuff/front.svg"
  8581. }
  8582. }
  8583. },
  8584. [
  8585. {
  8586. name: "Normal",
  8587. height: math.unit(2.8, "meters")
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(450, "meters"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Megamacro",
  8596. height: math.unit(15, "kilometers")
  8597. }
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(6, "feet"),
  8605. weight: math.unit(256, "lbs"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/dannik/front.svg"
  8609. }
  8610. }
  8611. },
  8612. [
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(69.57, "meters"),
  8616. default: true
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(6, "feet"),
  8625. weight: math.unit(120, "lbs"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/azura-saharah/front.svg"
  8629. }
  8630. },
  8631. back: {
  8632. height: math.unit(6, "feet"),
  8633. weight: math.unit(120, "lbs"),
  8634. name: "Back",
  8635. image: {
  8636. source: "./media/characters/azura-saharah/back.svg"
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Macro",
  8643. height: math.unit(100, "feet"),
  8644. default: true
  8645. },
  8646. ]
  8647. ))
  8648. characterMakers.push(() => makeCharacter(
  8649. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8650. {
  8651. side: {
  8652. height: math.unit(5 + 4 / 12, "feet"),
  8653. weight: math.unit(163, "lbs"),
  8654. name: "Side",
  8655. image: {
  8656. source: "./media/characters/kennedy/side.svg"
  8657. }
  8658. }
  8659. },
  8660. [
  8661. {
  8662. name: "Standard Doggo",
  8663. height: math.unit(5 + 4 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Big Doggo",
  8667. height: math.unit(25 + 3 / 12, "feet"),
  8668. default: true
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5 + 5/12, "feet"),
  8677. weight: math.unit(100, "lbs"),
  8678. name: "Front",
  8679. image: {
  8680. source: "./media/characters/odios-de-lunar/front.svg",
  8681. extra: 1468/1323,
  8682. bottom: 22/1490
  8683. }
  8684. }
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(3, "inches")
  8690. },
  8691. {
  8692. name: "Normal",
  8693. height: math.unit(5.5, "feet"),
  8694. default: true
  8695. },
  8696. {
  8697. name: "Macro",
  8698. height: math.unit(100, "feet")
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8704. {
  8705. back: {
  8706. height: math.unit(6, "feet"),
  8707. weight: math.unit(220, "lbs"),
  8708. name: "Back",
  8709. image: {
  8710. source: "./media/characters/mandake/back.svg"
  8711. }
  8712. }
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(7, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(78, "feet")
  8723. },
  8724. {
  8725. name: "Macro+",
  8726. height: math.unit(300, "meters")
  8727. },
  8728. {
  8729. name: "Macro++",
  8730. height: math.unit(2400, "feet")
  8731. },
  8732. {
  8733. name: "Megamacro",
  8734. height: math.unit(5167, "meters")
  8735. },
  8736. {
  8737. name: "Gigamacro",
  8738. height: math.unit(41769, "miles")
  8739. },
  8740. ]
  8741. ))
  8742. characterMakers.push(() => makeCharacter(
  8743. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8744. {
  8745. front: {
  8746. height: math.unit(6, "feet"),
  8747. weight: math.unit(120, "lbs"),
  8748. name: "Front",
  8749. image: {
  8750. source: "./media/characters/yozey/front.svg"
  8751. }
  8752. },
  8753. frontAlt: {
  8754. height: math.unit(6, "feet"),
  8755. weight: math.unit(120, "lbs"),
  8756. name: "Front (Alt)",
  8757. image: {
  8758. source: "./media/characters/yozey/front-alt.svg"
  8759. }
  8760. },
  8761. side: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(120, "lbs"),
  8764. name: "Side",
  8765. image: {
  8766. source: "./media/characters/yozey/side.svg"
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(3, "inches"),
  8774. default: true
  8775. },
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(6, "feet")
  8779. }
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8784. {
  8785. front: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(103, "lbs"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/valeska-voss/front.svg"
  8791. }
  8792. }
  8793. },
  8794. [
  8795. {
  8796. name: "Mini-Sized Sub",
  8797. height: math.unit(3.1, "inches")
  8798. },
  8799. {
  8800. name: "Mid-Sized Sub",
  8801. height: math.unit(6.2, "inches")
  8802. },
  8803. {
  8804. name: "Full-Sized Sub",
  8805. height: math.unit(9.3, "inches")
  8806. },
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(5 + 2 / 12, "foot"),
  8810. default: true
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(6, "feet"),
  8819. weight: math.unit(160, "lbs"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/gene-zeta/front.svg",
  8823. extra: 3006 / 2826,
  8824. bottom: 182 / 3188
  8825. }
  8826. }
  8827. },
  8828. [
  8829. {
  8830. name: "Micro",
  8831. height: math.unit(6, "inches")
  8832. },
  8833. {
  8834. name: "Normal",
  8835. height: math.unit(5 + 11 / 12, "foot"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Macro",
  8840. height: math.unit(140, "feet")
  8841. },
  8842. {
  8843. name: "Supercharged",
  8844. height: math.unit(2500, "feet")
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(6, "feet"),
  8853. weight: math.unit(350, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/razinox/front.svg",
  8857. extra: 1686 / 1548,
  8858. bottom: 28.2 / 1868
  8859. }
  8860. },
  8861. back: {
  8862. height: math.unit(6, "feet"),
  8863. weight: math.unit(350, "lbs"),
  8864. name: "Back",
  8865. image: {
  8866. source: "./media/characters/razinox/back.svg",
  8867. extra: 1660 / 1590,
  8868. bottom: 15 / 1665
  8869. }
  8870. },
  8871. },
  8872. [
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(10 + 8 / 12, "foot")
  8876. },
  8877. {
  8878. name: "Minimacro",
  8879. height: math.unit(15, "foot")
  8880. },
  8881. {
  8882. name: "Macro",
  8883. height: math.unit(60, "foot"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Megamacro",
  8888. height: math.unit(5, "miles")
  8889. },
  8890. {
  8891. name: "Gigamacro",
  8892. height: math.unit(6000, "miles")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(150, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/cobalt/front.svg"
  8905. }
  8906. }
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(8 + 1 / 12, "foot")
  8912. },
  8913. {
  8914. name: "Macro",
  8915. height: math.unit(111, "foot"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Supracosmic",
  8920. height: math.unit(1e42, "feet")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(5, "inches"),
  8929. name: "Front",
  8930. image: {
  8931. source: "./media/characters/amanda/front.svg",
  8932. extra: 926/791,
  8933. bottom: 38/964
  8934. }
  8935. },
  8936. back: {
  8937. height: math.unit(5, "inches"),
  8938. name: "Back",
  8939. image: {
  8940. source: "./media/characters/amanda/back.svg",
  8941. extra: 909/805,
  8942. bottom: 43/952
  8943. }
  8944. },
  8945. },
  8946. [
  8947. {
  8948. name: "Micro",
  8949. height: math.unit(5, "inches"),
  8950. default: true
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(2.75, "meters"),
  8959. weight: math.unit(1200, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/teal/front.svg",
  8963. extra: 2463 / 2320,
  8964. bottom: 166 / 2629
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(2.75, "meters"),
  8969. weight: math.unit(1200, "lb"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/teal/back.svg",
  8973. extra: 2580 / 2489,
  8974. bottom: 151 / 2731
  8975. }
  8976. },
  8977. sitting: {
  8978. height: math.unit(1.9, "meters"),
  8979. weight: math.unit(1200, "lb"),
  8980. name: "Sitting",
  8981. image: {
  8982. source: "./media/characters/teal/sitting.svg",
  8983. extra: 623 / 590,
  8984. bottom: 121 / 744
  8985. }
  8986. },
  8987. standing: {
  8988. height: math.unit(2.75, "meters"),
  8989. weight: math.unit(1200, "lb"),
  8990. name: "Standing",
  8991. image: {
  8992. source: "./media/characters/teal/standing.svg",
  8993. extra: 923 / 893,
  8994. bottom: 60 / 983
  8995. }
  8996. },
  8997. stretching: {
  8998. height: math.unit(3.65, "meters"),
  8999. weight: math.unit(1200, "lb"),
  9000. name: "Stretching",
  9001. image: {
  9002. source: "./media/characters/teal/stretching.svg",
  9003. extra: 1276 / 1244,
  9004. bottom: 0 / 1276
  9005. }
  9006. },
  9007. legged: {
  9008. height: math.unit(1.3, "meters"),
  9009. weight: math.unit(100, "lb"),
  9010. name: "Legged",
  9011. image: {
  9012. source: "./media/characters/teal/legged.svg",
  9013. extra: 462 / 437,
  9014. bottom: 24 / 486
  9015. }
  9016. },
  9017. naga: {
  9018. height: math.unit(5.4, "meters"),
  9019. weight: math.unit(4000, "lb"),
  9020. name: "Naga",
  9021. image: {
  9022. source: "./media/characters/teal/naga.svg",
  9023. extra: 1902 / 1858,
  9024. bottom: 0 / 1902
  9025. }
  9026. },
  9027. hand: {
  9028. height: math.unit(0.52, "meters"),
  9029. name: "Hand",
  9030. image: {
  9031. source: "./media/characters/teal/hand.svg"
  9032. }
  9033. },
  9034. maw: {
  9035. height: math.unit(0.43, "meters"),
  9036. name: "Maw",
  9037. image: {
  9038. source: "./media/characters/teal/maw.svg"
  9039. }
  9040. },
  9041. slit: {
  9042. height: math.unit(0.25, "meters"),
  9043. name: "Slit",
  9044. image: {
  9045. source: "./media/characters/teal/slit.svg"
  9046. }
  9047. },
  9048. },
  9049. [
  9050. {
  9051. name: "Normal",
  9052. height: math.unit(2.75, "meters"),
  9053. default: true
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(300, "feet")
  9058. },
  9059. {
  9060. name: "Macro+",
  9061. height: math.unit(2000, "feet")
  9062. },
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  9067. {
  9068. frontCat: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(180, "lbs"),
  9071. name: "Front (Cat)",
  9072. image: {
  9073. source: "./media/characters/ravin-amulet/front-cat.svg"
  9074. }
  9075. },
  9076. frontCatAlt: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(180, "lbs"),
  9079. name: "Front (Alt, Cat)",
  9080. image: {
  9081. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  9082. }
  9083. },
  9084. frontWerewolf: {
  9085. height: math.unit(6 * 1.2, "feet"),
  9086. weight: math.unit(225, "lbs"),
  9087. name: "Front (Werewolf)",
  9088. image: {
  9089. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9090. }
  9091. },
  9092. backWerewolf: {
  9093. height: math.unit(6 * 1.2, "feet"),
  9094. weight: math.unit(225, "lbs"),
  9095. name: "Back (Werewolf)",
  9096. image: {
  9097. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Nano",
  9104. height: math.unit(1, "micrometer")
  9105. },
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(1, "inch")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(6, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(60, "feet")
  9118. }
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9123. {
  9124. front: {
  9125. height: math.unit(6, "feet"),
  9126. weight: math.unit(165, "lbs"),
  9127. name: "Front",
  9128. image: {
  9129. source: "./media/characters/fluoresce/front.svg"
  9130. }
  9131. }
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(6, "cm")
  9137. },
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(5 + 7 / 12, "feet"),
  9141. default: true
  9142. },
  9143. {
  9144. name: "Macro",
  9145. height: math.unit(56, "feet")
  9146. },
  9147. {
  9148. name: "Megamacro",
  9149. height: math.unit(1.9, "miles")
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(9 + 6 / 12, "feet"),
  9158. weight: math.unit(523, "lbs"),
  9159. name: "Side",
  9160. image: {
  9161. source: "./media/characters/aurora/side.svg",
  9162. extra: 474/393,
  9163. bottom: 5/479
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(9 + 6 / 12, "feet")
  9171. },
  9172. {
  9173. name: "Macro",
  9174. height: math.unit(96, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(243, "feet")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(194, "cm"),
  9188. weight: math.unit(90, "kg"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/ranek/front.svg",
  9192. extra: 1862/1791,
  9193. bottom: 80/1942
  9194. }
  9195. },
  9196. back: {
  9197. height: math.unit(194, "cm"),
  9198. weight: math.unit(90, "kg"),
  9199. name: "Back",
  9200. image: {
  9201. source: "./media/characters/ranek/back.svg",
  9202. extra: 1853/1787,
  9203. bottom: 74/1927
  9204. }
  9205. },
  9206. feral: {
  9207. height: math.unit(30, "cm"),
  9208. weight: math.unit(1.6, "lbs"),
  9209. name: "Feral",
  9210. image: {
  9211. source: "./media/characters/ranek/feral.svg",
  9212. extra: 990/631,
  9213. bottom: 29/1019
  9214. }
  9215. },
  9216. },
  9217. [
  9218. {
  9219. name: "Normal",
  9220. height: math.unit(194, "cm"),
  9221. default: true
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(100, "meters")
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9231. {
  9232. front: {
  9233. height: math.unit(5 + 6 / 12, "feet"),
  9234. weight: math.unit(153, "lbs"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/andrew-cooper/front.svg"
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Nano",
  9244. height: math.unit(1, "mm")
  9245. },
  9246. {
  9247. name: "Micro",
  9248. height: math.unit(2, "inches")
  9249. },
  9250. {
  9251. name: "Normal",
  9252. height: math.unit(5 + 6 / 12, "feet"),
  9253. default: true
  9254. }
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(180, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/akane-sato/front.svg",
  9266. extra: 1219 / 1140
  9267. }
  9268. },
  9269. back: {
  9270. height: math.unit(6, "feet"),
  9271. weight: math.unit(180, "lbs"),
  9272. name: "Back",
  9273. image: {
  9274. source: "./media/characters/akane-sato/back.svg",
  9275. extra: 1219 / 1170
  9276. }
  9277. },
  9278. },
  9279. [
  9280. {
  9281. name: "Normal",
  9282. height: math.unit(2.5, "meters")
  9283. },
  9284. {
  9285. name: "Macro",
  9286. height: math.unit(250, "meters"),
  9287. default: true
  9288. },
  9289. {
  9290. name: "Megamacro",
  9291. height: math.unit(25, "km")
  9292. },
  9293. ]
  9294. ))
  9295. characterMakers.push(() => makeCharacter(
  9296. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9297. {
  9298. front: {
  9299. height: math.unit(6, "feet"),
  9300. weight: math.unit(65, "kg"),
  9301. name: "Front",
  9302. image: {
  9303. source: "./media/characters/rook/front.svg",
  9304. extra: 960 / 950
  9305. }
  9306. }
  9307. },
  9308. [
  9309. {
  9310. name: "Normal",
  9311. height: math.unit(8.8, "feet")
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(88, "feet"),
  9316. default: true
  9317. },
  9318. {
  9319. name: "Megamacro",
  9320. height: math.unit(8, "miles")
  9321. },
  9322. ]
  9323. ))
  9324. characterMakers.push(() => makeCharacter(
  9325. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9326. {
  9327. front: {
  9328. height: math.unit(12 + 2 / 12, "feet"),
  9329. weight: math.unit(808, "lbs"),
  9330. name: "Front",
  9331. image: {
  9332. source: "./media/characters/prodigy/front.svg"
  9333. }
  9334. }
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(12 + 2 / 12, "feet"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(143, "feet")
  9345. },
  9346. {
  9347. name: "Macro+",
  9348. height: math.unit(400, "feet")
  9349. },
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(225, "lbs"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/daniel/front.svg"
  9361. }
  9362. },
  9363. leaning: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(225, "lbs"),
  9366. name: "Leaning",
  9367. image: {
  9368. source: "./media/characters/daniel/leaning.svg"
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Macro",
  9375. height: math.unit(1000, "feet"),
  9376. default: true
  9377. },
  9378. ]
  9379. ))
  9380. characterMakers.push(() => makeCharacter(
  9381. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9382. {
  9383. front: {
  9384. height: math.unit(6, "feet"),
  9385. weight: math.unit(88, "lbs"),
  9386. name: "Front",
  9387. image: {
  9388. source: "./media/characters/chiros/front.svg",
  9389. extra: 306 / 226
  9390. }
  9391. },
  9392. side: {
  9393. height: math.unit(6, "feet"),
  9394. weight: math.unit(88, "lbs"),
  9395. name: "Side",
  9396. image: {
  9397. source: "./media/characters/chiros/side.svg",
  9398. extra: 306 / 226
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Normal",
  9405. height: math.unit(6, "cm"),
  9406. default: true
  9407. },
  9408. ]
  9409. ))
  9410. characterMakers.push(() => makeCharacter(
  9411. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9412. {
  9413. front: {
  9414. height: math.unit(6, "feet"),
  9415. weight: math.unit(100, "lbs"),
  9416. name: "Front",
  9417. image: {
  9418. source: "./media/characters/selka/front.svg",
  9419. extra: 947 / 887
  9420. }
  9421. }
  9422. },
  9423. [
  9424. {
  9425. name: "Normal",
  9426. height: math.unit(5, "cm"),
  9427. default: true
  9428. },
  9429. ]
  9430. ))
  9431. characterMakers.push(() => makeCharacter(
  9432. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9433. {
  9434. front: {
  9435. height: math.unit(8 + 3 / 12, "feet"),
  9436. weight: math.unit(424, "lbs"),
  9437. name: "Front",
  9438. image: {
  9439. source: "./media/characters/verin/front.svg",
  9440. extra: 1845 / 1550
  9441. }
  9442. },
  9443. frontArmored: {
  9444. height: math.unit(8 + 3 / 12, "feet"),
  9445. weight: math.unit(424, "lbs"),
  9446. name: "Front (Armored)",
  9447. image: {
  9448. source: "./media/characters/verin/front-armor.svg",
  9449. extra: 1845 / 1550,
  9450. bottom: 0.01
  9451. }
  9452. },
  9453. back: {
  9454. height: math.unit(8 + 3 / 12, "feet"),
  9455. weight: math.unit(424, "lbs"),
  9456. name: "Back",
  9457. image: {
  9458. source: "./media/characters/verin/back.svg",
  9459. bottom: 0.1,
  9460. extra: 1
  9461. }
  9462. },
  9463. foot: {
  9464. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9465. name: "Foot",
  9466. image: {
  9467. source: "./media/characters/verin/foot.svg"
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(8 + 3 / 12, "feet")
  9475. },
  9476. {
  9477. name: "Minimacro",
  9478. height: math.unit(21, "feet"),
  9479. default: true
  9480. },
  9481. {
  9482. name: "Macro",
  9483. height: math.unit(626, "feet")
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(2.718, "meters"),
  9492. weight: math.unit(150, "lbs"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/sovrim-terraquian/front.svg",
  9496. extra: 1752/1689,
  9497. bottom: 36/1788
  9498. }
  9499. },
  9500. back: {
  9501. height: math.unit(2.718, "meters"),
  9502. weight: math.unit(150, "lbs"),
  9503. name: "Back",
  9504. image: {
  9505. source: "./media/characters/sovrim-terraquian/back.svg",
  9506. extra: 1698/1657,
  9507. bottom: 58/1756
  9508. }
  9509. },
  9510. tongue: {
  9511. height: math.unit(2.865, "feet"),
  9512. name: "Tongue",
  9513. image: {
  9514. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9515. }
  9516. },
  9517. hand: {
  9518. height: math.unit(1.61, "feet"),
  9519. name: "Hand",
  9520. image: {
  9521. source: "./media/characters/sovrim-terraquian/hand.svg"
  9522. }
  9523. },
  9524. foot: {
  9525. height: math.unit(1.05, "feet"),
  9526. name: "Foot",
  9527. image: {
  9528. source: "./media/characters/sovrim-terraquian/foot.svg"
  9529. }
  9530. },
  9531. footAlt: {
  9532. height: math.unit(0.88, "feet"),
  9533. name: "Foot (Alt)",
  9534. image: {
  9535. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Micro",
  9542. height: math.unit(2, "inches")
  9543. },
  9544. {
  9545. name: "Small",
  9546. height: math.unit(1, "meter")
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(Math.E, "meters"),
  9551. default: true
  9552. },
  9553. {
  9554. name: "Macro",
  9555. height: math.unit(20, "meters")
  9556. },
  9557. {
  9558. name: "Macro+",
  9559. height: math.unit(400, "meters")
  9560. },
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(7, "feet"),
  9568. weight: math.unit(489, "lbs"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/reece-silvermane/front.svg",
  9572. bottom: 0.02,
  9573. extra: 1
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(1.5, "miles"),
  9581. default: true
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(78, "kg"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/kane/front.svg",
  9594. extra: 978 / 899
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(78, "kg"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/kane/back.svg",
  9603. extra: 1966/1800,
  9604. bottom: 0/1966
  9605. }
  9606. },
  9607. head: {
  9608. height: math.unit(1.4, "feet"),
  9609. name: "Head",
  9610. image: {
  9611. source: "./media/characters/kane/head.svg"
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(2.1, "m"),
  9619. },
  9620. {
  9621. name: "Macro",
  9622. height: math.unit(1, "km"),
  9623. default: true
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9629. {
  9630. frontSfw: {
  9631. name: "Front (SFW)",
  9632. height: math.unit(6 + 3/12, "feet"),
  9633. weight: math.unit(200, "kg"),
  9634. image: {
  9635. source: "./media/characters/tegon/front-sfw.svg",
  9636. extra: 1105/1087,
  9637. bottom: 86/1191
  9638. }
  9639. },
  9640. backSfw: {
  9641. name: "Back (SFW)",
  9642. height: math.unit(6 + 3/12, "feet"),
  9643. weight: math.unit(200, "kg"),
  9644. image: {
  9645. source: "./media/characters/tegon/back-sfw.svg",
  9646. extra: 1107/1087,
  9647. bottom: 21/1128
  9648. }
  9649. },
  9650. frontNsfw: {
  9651. name: "Front (NSFW)",
  9652. height: math.unit(6 + 3/12, "feet"),
  9653. weight: math.unit(200, "kg"),
  9654. image: {
  9655. source: "./media/characters/tegon/front-nsfw.svg",
  9656. extra: 1105/1087,
  9657. bottom: 86/1191
  9658. }
  9659. },
  9660. maw: {
  9661. height: math.unit(1.23, "feet"),
  9662. name: "Maw",
  9663. image: {
  9664. source: "./media/characters/tegon/maw.svg"
  9665. }
  9666. },
  9667. dick: {
  9668. height: math.unit(1.18, "feet"),
  9669. name: "Dick",
  9670. image: {
  9671. source: "./media/characters/tegon/dick.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Micro",
  9678. height: math.unit(1, "inch")
  9679. },
  9680. {
  9681. name: "Normal",
  9682. height: math.unit(6 + 3 / 12, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro",
  9687. height: math.unit(300, "feet")
  9688. },
  9689. {
  9690. name: "Megamacro",
  9691. height: math.unit(69, "miles")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9697. {
  9698. side: {
  9699. height: math.unit(6, "feet"),
  9700. weight: math.unit(2304, "lbs"),
  9701. name: "Side",
  9702. image: {
  9703. source: "./media/characters/arcturax/side.svg",
  9704. extra: 790 / 376,
  9705. bottom: 0.01
  9706. }
  9707. },
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(2, "inch")
  9713. },
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(6, "feet")
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(39, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Megamacro",
  9725. height: math.unit(7, "miles")
  9726. },
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(50, "lbs"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/sentri/front.svg",
  9738. extra: 1750 / 1570,
  9739. bottom: 0.025
  9740. }
  9741. },
  9742. frontAlt: {
  9743. height: math.unit(6, "feet"),
  9744. weight: math.unit(50, "lbs"),
  9745. name: "Front (Alt)",
  9746. image: {
  9747. source: "./media/characters/sentri/front-alt.svg",
  9748. extra: 1750 / 1570,
  9749. bottom: 0.025
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(15, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(2500, "feet")
  9762. }
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(5 + 8 / 12, "feet"),
  9770. weight: math.unit(130, "lbs"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/corvin/front.svg",
  9774. extra: 1803 / 1629
  9775. }
  9776. },
  9777. frontShirt: {
  9778. height: math.unit(5 + 8 / 12, "feet"),
  9779. weight: math.unit(130, "lbs"),
  9780. name: "Front (Shirt)",
  9781. image: {
  9782. source: "./media/characters/corvin/front-shirt.svg",
  9783. extra: 1803 / 1629
  9784. }
  9785. },
  9786. frontPoncho: {
  9787. height: math.unit(5 + 8 / 12, "feet"),
  9788. weight: math.unit(130, "lbs"),
  9789. name: "Front (Poncho)",
  9790. image: {
  9791. source: "./media/characters/corvin/front-poncho.svg",
  9792. extra: 1803 / 1629
  9793. }
  9794. },
  9795. side: {
  9796. height: math.unit(5 + 8 / 12, "feet"),
  9797. weight: math.unit(130, "lbs"),
  9798. name: "Side",
  9799. image: {
  9800. source: "./media/characters/corvin/side.svg",
  9801. extra: 1012 / 945
  9802. }
  9803. },
  9804. back: {
  9805. height: math.unit(5 + 8 / 12, "feet"),
  9806. weight: math.unit(130, "lbs"),
  9807. name: "Back",
  9808. image: {
  9809. source: "./media/characters/corvin/back.svg",
  9810. extra: 1803 / 1629
  9811. }
  9812. },
  9813. },
  9814. [
  9815. {
  9816. name: "Micro",
  9817. height: math.unit(3, "inches")
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(5 + 8 / 12, "feet")
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(300, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Megamacro",
  9830. height: math.unit(500, "miles")
  9831. }
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(135, "lbs"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/q/front.svg",
  9843. extra: 854 / 752,
  9844. bottom: 0.005
  9845. }
  9846. },
  9847. back: {
  9848. height: math.unit(6, "feet"),
  9849. weight: math.unit(130, "lbs"),
  9850. name: "Back",
  9851. image: {
  9852. source: "./media/characters/q/back.svg",
  9853. extra: 854 / 752
  9854. }
  9855. },
  9856. },
  9857. [
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(90, "feet"),
  9861. default: true
  9862. },
  9863. {
  9864. name: "Extra Macro",
  9865. height: math.unit(300, "feet"),
  9866. },
  9867. {
  9868. name: "BIG WALF",
  9869. height: math.unit(750, "feet"),
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(3, "feet"),
  9878. weight: math.unit(28, "lbs"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/citrine/front.svg"
  9882. }
  9883. }
  9884. },
  9885. [
  9886. {
  9887. name: "Normal",
  9888. height: math.unit(3, "feet"),
  9889. default: true
  9890. }
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9895. {
  9896. front: {
  9897. height: math.unit(14, "feet"),
  9898. weight: math.unit(1450, "kg"),
  9899. preyCapacity: math.unit(15, "people"),
  9900. name: "Front",
  9901. image: {
  9902. source: "./media/characters/aura-starwind/front.svg",
  9903. extra: 1440/1327,
  9904. bottom: 11/1451
  9905. }
  9906. },
  9907. side: {
  9908. height: math.unit(14, "feet"),
  9909. weight: math.unit(1450, "kg"),
  9910. preyCapacity: math.unit(15, "people"),
  9911. name: "Side",
  9912. image: {
  9913. source: "./media/characters/aura-starwind/side.svg",
  9914. extra: 1654 / 1497
  9915. }
  9916. },
  9917. taur: {
  9918. height: math.unit(18, "feet"),
  9919. weight: math.unit(5500, "kg"),
  9920. preyCapacity: math.unit(50, "people"),
  9921. name: "Taur",
  9922. image: {
  9923. source: "./media/characters/aura-starwind/taur.svg",
  9924. extra: 1760 / 1650
  9925. }
  9926. },
  9927. feral: {
  9928. height: math.unit(46, "feet"),
  9929. weight: math.unit(25000, "kg"),
  9930. preyCapacity: math.unit(120, "people"),
  9931. name: "Feral",
  9932. image: {
  9933. source: "./media/characters/aura-starwind/feral.svg"
  9934. }
  9935. },
  9936. },
  9937. [
  9938. {
  9939. name: "Normal",
  9940. height: math.unit(14, "feet"),
  9941. default: true
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(50, "meters")
  9946. },
  9947. {
  9948. name: "Megamacro",
  9949. height: math.unit(5000, "meters")
  9950. },
  9951. {
  9952. name: "Gigamacro",
  9953. height: math.unit(100000, "kilometers")
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(2 + 7 / 12, "feet"),
  9962. weight: math.unit(32, "lbs"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/rivet/front.svg",
  9966. extra: 1716 / 1658,
  9967. bottom: 0.03
  9968. }
  9969. },
  9970. foot: {
  9971. height: math.unit(0.551, "feet"),
  9972. name: "Rivet's Foot",
  9973. image: {
  9974. source: "./media/characters/rivet/foot.svg"
  9975. },
  9976. rename: true
  9977. }
  9978. },
  9979. [
  9980. {
  9981. name: "Micro",
  9982. height: math.unit(1.5, "inches"),
  9983. },
  9984. {
  9985. name: "Normal",
  9986. height: math.unit(2 + 7 / 12, "feet"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Macro",
  9991. height: math.unit(85, "feet")
  9992. },
  9993. {
  9994. name: "Megamacro",
  9995. height: math.unit(2.2, "km")
  9996. }
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(5 + 9 / 12, "feet"),
  10004. weight: math.unit(150, "lbs"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/coffee/front.svg",
  10008. extra: 946/880,
  10009. bottom: 66/1012
  10010. }
  10011. },
  10012. foot: {
  10013. height: math.unit(1.29, "feet"),
  10014. name: "Foot",
  10015. image: {
  10016. source: "./media/characters/coffee/foot.svg"
  10017. }
  10018. },
  10019. },
  10020. [
  10021. {
  10022. name: "Micro",
  10023. height: math.unit(2, "inches"),
  10024. },
  10025. {
  10026. name: "Normal",
  10027. height: math.unit(5 + 9 / 12, "feet"),
  10028. default: true
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(800, "feet")
  10033. },
  10034. {
  10035. name: "Megamacro",
  10036. height: math.unit(25, "miles")
  10037. }
  10038. ]
  10039. ))
  10040. characterMakers.push(() => makeCharacter(
  10041. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  10042. {
  10043. front: {
  10044. height: math.unit(6, "feet"),
  10045. weight: math.unit(200, "lbs"),
  10046. name: "Front",
  10047. image: {
  10048. source: "./media/characters/chari-gal/front.svg",
  10049. extra: 735/649,
  10050. bottom: 55/790
  10051. },
  10052. form: "normal",
  10053. default: true
  10054. },
  10055. back: {
  10056. height: math.unit(6, "feet"),
  10057. weight: math.unit(200, "lb"),
  10058. name: "Back",
  10059. image: {
  10060. source: "./media/characters/chari-gal/back.svg",
  10061. extra: 762/666,
  10062. bottom: 31/793
  10063. },
  10064. form: "normal"
  10065. },
  10066. mouth: {
  10067. height: math.unit(1.35, "feet"),
  10068. name: "Mouth",
  10069. image: {
  10070. source: "./media/characters/chari-gal/mouth.svg"
  10071. },
  10072. form: "normal"
  10073. },
  10074. gigantamax: {
  10075. height: math.unit(6 * 16, "feet"),
  10076. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  10077. name: "Gigantamax",
  10078. image: {
  10079. source: "./media/characters/chari-gal/gigantamax-front.svg",
  10080. extra: 1507/1149,
  10081. bottom: 254/1761
  10082. },
  10083. form: "gigantamax",
  10084. default: true
  10085. },
  10086. },
  10087. [
  10088. {
  10089. name: "Normal",
  10090. height: math.unit(5 + 7 / 12, "feet"),
  10091. form: "normal",
  10092. },
  10093. {
  10094. name: "Macro",
  10095. height: math.unit(200, "feet"),
  10096. default: true,
  10097. form: "normal"
  10098. },
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10102. form: "gigantamax",
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(16 * 200, "feet"),
  10107. default: true,
  10108. form: "gigantamax"
  10109. },
  10110. ],
  10111. {
  10112. "normal": {
  10113. name: "Normal",
  10114. default: true
  10115. },
  10116. "gigantamax": {
  10117. name: "Gigantamax",
  10118. },
  10119. }
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10123. {
  10124. front: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(150, "lbs"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/nova/front.svg",
  10130. extra: 5000 / 4722,
  10131. bottom: 0.02
  10132. }
  10133. }
  10134. },
  10135. [
  10136. {
  10137. name: "Micro-",
  10138. height: math.unit(0.8, "inches")
  10139. },
  10140. {
  10141. name: "Micro",
  10142. height: math.unit(2, "inches"),
  10143. default: true
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10149. {
  10150. koboldFront: {
  10151. height: math.unit(3 + 1 / 12, "feet"),
  10152. weight: math.unit(21.7, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/argent/kobold-front.svg",
  10156. extra: 1471 / 1331,
  10157. bottom: 100.8 / 1575.5
  10158. },
  10159. form: "kobold",
  10160. default: true
  10161. },
  10162. dragonFront: {
  10163. height: math.unit(75, "inches"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/argent/dragon-front.svg",
  10167. extra: 1389/1248,
  10168. bottom: 54/1443
  10169. },
  10170. form: "dragon",
  10171. },
  10172. dragonBack: {
  10173. height: math.unit(75, "inches"),
  10174. name: "Back",
  10175. image: {
  10176. source: "./media/characters/argent/dragon-back.svg",
  10177. extra: 1399/1271,
  10178. bottom: 23/1422
  10179. },
  10180. form: "dragon",
  10181. },
  10182. dragonDressed: {
  10183. height: math.unit(75, "inches"),
  10184. name: "Dressed",
  10185. image: {
  10186. source: "./media/characters/argent/dragon-dressed.svg",
  10187. extra: 1350/1215,
  10188. bottom: 26/1376
  10189. },
  10190. form: "dragon"
  10191. },
  10192. dragonHead: {
  10193. height: math.unit(23.5, "inches"),
  10194. name: "Head",
  10195. image: {
  10196. source: "./media/characters/argent/dragon-head.svg"
  10197. },
  10198. form: "dragon",
  10199. },
  10200. },
  10201. [
  10202. {
  10203. name: "Micro",
  10204. height: math.unit(2, "inches"),
  10205. form: "kobold",
  10206. },
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(3 + 1 / 12, "feet"),
  10210. form: "kobold",
  10211. default: true
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(120, "feet"),
  10216. form: "kobold",
  10217. },
  10218. {
  10219. name: "Speck",
  10220. height: math.unit(1, "mm"),
  10221. form: "dragon",
  10222. },
  10223. {
  10224. name: "Tiny",
  10225. height: math.unit(1, "cm"),
  10226. form: "dragon",
  10227. },
  10228. {
  10229. name: "Micro",
  10230. height: math.unit(5, "cm"),
  10231. form: "dragon",
  10232. },
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(75, "inches"),
  10236. form: "dragon",
  10237. default: true
  10238. },
  10239. {
  10240. name: "Extra Tall",
  10241. height: math.unit(9, "feet"),
  10242. form: "dragon",
  10243. },
  10244. {
  10245. name: "Inconvenient",
  10246. height: math.unit(5, "meters"),
  10247. form: "dragon",
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(70, "meters"),
  10252. form: "dragon",
  10253. },
  10254. {
  10255. name: "Macro+",
  10256. height: math.unit(250, "meters"),
  10257. form: "dragon",
  10258. },
  10259. {
  10260. name: "Megamacro",
  10261. height: math.unit(20, "km"),
  10262. form: "dragon",
  10263. },
  10264. {
  10265. name: "Mountainous",
  10266. height: math.unit(100, "km"),
  10267. form: "dragon",
  10268. },
  10269. {
  10270. name: "Continental",
  10271. height: math.unit(2, "megameters"),
  10272. form: "dragon",
  10273. },
  10274. {
  10275. name: "Too Big",
  10276. height: math.unit(900, "megameters"),
  10277. form: "dragon",
  10278. },
  10279. ],
  10280. {
  10281. "kobold": {
  10282. name: "Kobold",
  10283. default: true
  10284. },
  10285. "dragon": {
  10286. name: "Dragon",
  10287. },
  10288. }
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10292. {
  10293. lamp: {
  10294. height: math.unit(7 * 1559 / 989, "feet"),
  10295. name: "Magic Lamp",
  10296. image: {
  10297. source: "./media/characters/mira-al-cul/lamp.svg",
  10298. extra: 1617 / 1559
  10299. }
  10300. },
  10301. front: {
  10302. height: math.unit(7, "feet"),
  10303. name: "Front",
  10304. image: {
  10305. source: "./media/characters/mira-al-cul/front.svg",
  10306. extra: 1044 / 990
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Heavily Restricted",
  10313. height: math.unit(7 * 1559 / 989, "feet")
  10314. },
  10315. {
  10316. name: "Freshly Freed",
  10317. height: math.unit(50 * 1559 / 989, "feet")
  10318. },
  10319. {
  10320. name: "World Encompassing",
  10321. height: math.unit(10000 * 1559 / 989, "miles")
  10322. },
  10323. {
  10324. name: "Galactic",
  10325. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10326. },
  10327. {
  10328. name: "Palmed Universe",
  10329. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Multiversal Matriarch",
  10334. height: math.unit(8.87e10, "yottameters")
  10335. },
  10336. {
  10337. name: "Void Mother",
  10338. height: math.unit(3.14e110, "yottaparsecs")
  10339. },
  10340. {
  10341. name: "Toying with Transcendence",
  10342. height: math.unit(1e307, "meters")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10348. {
  10349. front: {
  10350. height: math.unit(17 + 1 / 12, "feet"),
  10351. weight: math.unit(476.2 * 5, "lbs"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/kuro-shi-uchū/front.svg",
  10355. extra: 2329 / 1835,
  10356. bottom: 0.02
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Micro",
  10363. height: math.unit(2, "inches")
  10364. },
  10365. {
  10366. name: "Normal",
  10367. height: math.unit(12, "meters")
  10368. },
  10369. {
  10370. name: "Planetary",
  10371. height: math.unit(0.00929, "AU"),
  10372. default: true
  10373. },
  10374. {
  10375. name: "Universal",
  10376. height: math.unit(20, "gigaparsecs")
  10377. },
  10378. ]
  10379. ))
  10380. characterMakers.push(() => makeCharacter(
  10381. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10382. {
  10383. front: {
  10384. height: math.unit(5 + 2 / 12, "feet"),
  10385. weight: math.unit(120, "lbs"),
  10386. name: "Front",
  10387. image: {
  10388. source: "./media/characters/katherine/front.svg",
  10389. extra: 2075 / 1969
  10390. }
  10391. },
  10392. dress: {
  10393. height: math.unit(5 + 2 / 12, "feet"),
  10394. weight: math.unit(120, "lbs"),
  10395. name: "Dress",
  10396. image: {
  10397. source: "./media/characters/katherine/dress.svg",
  10398. extra: 2258 / 2064
  10399. }
  10400. },
  10401. },
  10402. [
  10403. {
  10404. name: "Micro",
  10405. height: math.unit(1, "inches"),
  10406. default: true
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(5 + 2 / 12, "feet")
  10411. },
  10412. {
  10413. name: "Macro",
  10414. height: math.unit(100, "meters")
  10415. },
  10416. {
  10417. name: "Megamacro",
  10418. height: math.unit(80, "miles")
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(7 + 8 / 12, "feet"),
  10427. weight: math.unit(250, "lbs"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/yevis/front.svg",
  10431. extra: 1938 / 1755
  10432. }
  10433. }
  10434. },
  10435. [
  10436. {
  10437. name: "Mortal",
  10438. height: math.unit(7 + 8 / 12, "feet")
  10439. },
  10440. {
  10441. name: "Battle",
  10442. height: math.unit(25 + 11 / 12, "feet")
  10443. },
  10444. {
  10445. name: "Wrath",
  10446. height: math.unit(1654 + 11 / 12, "feet")
  10447. },
  10448. {
  10449. name: "Planet Destroyer",
  10450. height: math.unit(12000, "miles")
  10451. },
  10452. {
  10453. name: "Galaxy Conqueror",
  10454. height: math.unit(1.45, "zettameters"),
  10455. default: true
  10456. },
  10457. {
  10458. name: "Universal War",
  10459. height: math.unit(184, "gigaparsecs")
  10460. },
  10461. {
  10462. name: "Eternity War",
  10463. height: math.unit(1.98e55, "yottaparsecs")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(5 + 8 / 12, "feet"),
  10472. weight: math.unit(63, "kg"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/xavier/front.svg",
  10476. extra: 944 / 883
  10477. }
  10478. },
  10479. frontStretch: {
  10480. height: math.unit(5 + 8 / 12, "feet"),
  10481. weight: math.unit(63, "kg"),
  10482. name: "Stretching",
  10483. image: {
  10484. source: "./media/characters/xavier/front-stretch.svg",
  10485. extra: 962 / 820
  10486. }
  10487. },
  10488. },
  10489. [
  10490. {
  10491. name: "Normal",
  10492. height: math.unit(5 + 8 / 12, "feet")
  10493. },
  10494. {
  10495. name: "Macro",
  10496. height: math.unit(100, "meters"),
  10497. default: true
  10498. },
  10499. {
  10500. name: "McLargeHuge",
  10501. height: math.unit(10, "miles")
  10502. },
  10503. ]
  10504. ))
  10505. characterMakers.push(() => makeCharacter(
  10506. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10507. {
  10508. front: {
  10509. height: math.unit(5 + 5 / 12, "feet"),
  10510. weight: math.unit(150, "lb"),
  10511. name: "Front",
  10512. image: {
  10513. source: "./media/characters/joshii/front.svg",
  10514. extra: 765 / 653,
  10515. bottom: 51 / 816
  10516. }
  10517. },
  10518. foot: {
  10519. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10520. name: "Foot",
  10521. image: {
  10522. source: "./media/characters/joshii/foot.svg"
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Micro",
  10529. height: math.unit(2, "inches")
  10530. },
  10531. {
  10532. name: "Normal",
  10533. height: math.unit(5 + 5 / 12, "feet")
  10534. },
  10535. {
  10536. name: "Macro",
  10537. height: math.unit(785, "feet"),
  10538. default: true
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(24.5, "miles")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(150, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/goddess-elizabeth/front.svg",
  10555. extra: 1800 / 1525,
  10556. bottom: 0.005
  10557. }
  10558. },
  10559. foot: {
  10560. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10561. name: "Foot",
  10562. image: {
  10563. source: "./media/characters/goddess-elizabeth/foot.svg"
  10564. }
  10565. },
  10566. mouth: {
  10567. height: math.unit(6, "feet"),
  10568. name: "Mouth",
  10569. image: {
  10570. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10571. }
  10572. },
  10573. },
  10574. [
  10575. {
  10576. name: "Micro",
  10577. height: math.unit(12, "feet")
  10578. },
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(80, "miles"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Macro",
  10586. height: math.unit(15000, "parsecs")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(5 + 9 / 12, "feet"),
  10595. weight: math.unit(144, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/kara/front.svg"
  10599. }
  10600. },
  10601. feet: {
  10602. height: math.unit(6 / 6.765, "feet"),
  10603. name: "Kara's Feet",
  10604. rename: true,
  10605. image: {
  10606. source: "./media/characters/kara/feet.svg"
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Normal",
  10613. height: math.unit(5 + 9 / 12, "feet")
  10614. },
  10615. {
  10616. name: "Macro",
  10617. height: math.unit(174, "feet"),
  10618. default: true
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(18, "feet"),
  10627. weight: math.unit(4050, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/tyrone/front.svg",
  10631. extra: 2405 / 2270,
  10632. bottom: 182 / 2587
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Normal",
  10639. height: math.unit(18, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Macro",
  10644. height: math.unit(300, "feet")
  10645. },
  10646. {
  10647. name: "Megamacro",
  10648. height: math.unit(15, "km")
  10649. },
  10650. {
  10651. name: "Gigamacro",
  10652. height: math.unit(500, "km")
  10653. },
  10654. {
  10655. name: "Teramacro",
  10656. height: math.unit(0.5, "gigameters")
  10657. },
  10658. {
  10659. name: "Omnimacro",
  10660. height: math.unit(1e252, "yottauniverse")
  10661. },
  10662. ]
  10663. ))
  10664. characterMakers.push(() => makeCharacter(
  10665. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10666. {
  10667. front: {
  10668. height: math.unit(7 + 8 / 12, "feet"),
  10669. weight: math.unit(120, "lb"),
  10670. name: "Front",
  10671. image: {
  10672. source: "./media/characters/danny/front.svg",
  10673. extra: 1490 / 1350
  10674. }
  10675. },
  10676. back: {
  10677. height: math.unit(7 + 8 / 12, "feet"),
  10678. weight: math.unit(120, "lb"),
  10679. name: "Back",
  10680. image: {
  10681. source: "./media/characters/danny/back.svg",
  10682. extra: 1490 / 1350
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(7 + 8 / 12, "feet"),
  10690. default: true
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(3.5, "inches"),
  10699. weight: math.unit(19, "grams"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/mallow/front.svg",
  10703. extra: 471 / 431
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(3.5, "inches"),
  10708. weight: math.unit(19, "grams"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/mallow/back.svg",
  10712. extra: 471 / 431
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Normal",
  10719. height: math.unit(3.5, "inches"),
  10720. default: true
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(9, "feet"),
  10729. weight: math.unit(230, "kg"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/starry-aqua/front.svg"
  10733. }
  10734. },
  10735. back: {
  10736. height: math.unit(9, "feet"),
  10737. weight: math.unit(230, "kg"),
  10738. name: "Back",
  10739. image: {
  10740. source: "./media/characters/starry-aqua/back.svg"
  10741. }
  10742. },
  10743. hand: {
  10744. height: math.unit(9 * 0.1168, "feet"),
  10745. name: "Hand",
  10746. image: {
  10747. source: "./media/characters/starry-aqua/hand.svg"
  10748. }
  10749. },
  10750. foot: {
  10751. height: math.unit(9 * 0.18, "feet"),
  10752. name: "Foot",
  10753. image: {
  10754. source: "./media/characters/starry-aqua/foot.svg"
  10755. }
  10756. }
  10757. },
  10758. [
  10759. {
  10760. name: "Micro",
  10761. height: math.unit(3, "inches")
  10762. },
  10763. {
  10764. name: "Normal",
  10765. height: math.unit(9, "feet")
  10766. },
  10767. {
  10768. name: "Macro",
  10769. height: math.unit(300, "feet"),
  10770. default: true
  10771. },
  10772. {
  10773. name: "Megamacro",
  10774. height: math.unit(3200, "feet")
  10775. }
  10776. ]
  10777. ))
  10778. characterMakers.push(() => makeCharacter(
  10779. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10780. {
  10781. front: {
  10782. height: math.unit(15, "feet"),
  10783. weight: math.unit(5026, "lb"),
  10784. name: "Front",
  10785. image: {
  10786. source: "./media/characters/luka-towers/front.svg",
  10787. extra: 1269/1133,
  10788. bottom: 51/1320
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Normal",
  10795. height: math.unit(15, "feet"),
  10796. default: true
  10797. },
  10798. {
  10799. name: "Minimacro",
  10800. height: math.unit(25, "feet")
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(320, "feet")
  10805. },
  10806. {
  10807. name: "Megamacro",
  10808. height: math.unit(35000, "feet")
  10809. },
  10810. {
  10811. name: "Gigamacro",
  10812. height: math.unit(4000, "miles")
  10813. },
  10814. {
  10815. name: "Teramacro",
  10816. height: math.unit(15000, "miles")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10822. {
  10823. front: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(150, "lb"),
  10826. name: "Front",
  10827. image: {
  10828. source: "./media/characters/natalie-nightring/front.svg",
  10829. extra: 1,
  10830. bottom: 0.06
  10831. }
  10832. },
  10833. },
  10834. [
  10835. {
  10836. name: "Uh Oh",
  10837. height: math.unit(0.1, "mm")
  10838. },
  10839. {
  10840. name: "Small",
  10841. height: math.unit(3, "inches")
  10842. },
  10843. {
  10844. name: "Human Scale",
  10845. height: math.unit(6, "feet")
  10846. },
  10847. {
  10848. name: "Librarian",
  10849. height: math.unit(50, "feet"),
  10850. default: true
  10851. },
  10852. {
  10853. name: "Immense",
  10854. height: math.unit(200, "miles")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(6, "feet"),
  10863. weight: math.unit(180, "lbs"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/danni-rosie/front.svg",
  10867. extra: 1260 / 1128,
  10868. bottom: 0.022
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Micro",
  10875. height: math.unit(2, "inches"),
  10876. default: true
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(5 + 9 / 12, "feet"),
  10885. weight: math.unit(220, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/samantha-kruse/front.svg",
  10889. extra: (985 / 935),
  10890. bottom: 0.03
  10891. }
  10892. },
  10893. frontUndressed: {
  10894. height: math.unit(5 + 9 / 12, "feet"),
  10895. weight: math.unit(220, "lb"),
  10896. name: "Front (Undressed)",
  10897. image: {
  10898. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10899. extra: (973 / 923),
  10900. bottom: 0.025
  10901. }
  10902. },
  10903. fat: {
  10904. height: math.unit(5 + 9 / 12, "feet"),
  10905. weight: math.unit(900, "lb"),
  10906. name: "Front (Fat)",
  10907. image: {
  10908. source: "./media/characters/samantha-kruse/fat.svg",
  10909. extra: 2688 / 2561
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(5 + 9 / 12, "feet"),
  10917. default: true
  10918. }
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10923. {
  10924. back: {
  10925. height: math.unit(5 + 4 / 12, "feet"),
  10926. weight: math.unit(4963, "lb"),
  10927. name: "Back",
  10928. image: {
  10929. source: "./media/characters/amelia-rosie/back.svg",
  10930. extra: 1113 / 963,
  10931. bottom: 0.01
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Level 0",
  10938. height: math.unit(5 + 4 / 12, "feet")
  10939. },
  10940. {
  10941. name: "Level 1",
  10942. height: math.unit(164597, "feet"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Level 2",
  10947. height: math.unit(956243, "miles")
  10948. },
  10949. {
  10950. name: "Level 3",
  10951. height: math.unit(29421709423, "miles")
  10952. },
  10953. {
  10954. name: "Level 4",
  10955. height: math.unit(154, "lightyears")
  10956. },
  10957. {
  10958. name: "Level 5",
  10959. height: math.unit(4738272, "lightyears")
  10960. },
  10961. {
  10962. name: "Level 6",
  10963. height: math.unit(145787152896, "lightyears")
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(5 + 11 / 12, "feet"),
  10972. weight: math.unit(65, "kg"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/rook-kitara/front.svg",
  10976. extra: 1347 / 1274,
  10977. bottom: 0.005
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Totally Unfair",
  10984. height: math.unit(1.8, "mm")
  10985. },
  10986. {
  10987. name: "Lap Rookie",
  10988. height: math.unit(1.4, "feet")
  10989. },
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(5 + 11 / 12, "feet"),
  10993. default: true
  10994. },
  10995. {
  10996. name: "How Did This Happen",
  10997. height: math.unit(80, "miles")
  10998. }
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(7, "feet"),
  11006. weight: math.unit(300, "lb"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/pisces/front.svg",
  11010. extra: 2255 / 2115,
  11011. bottom: 0.03
  11012. }
  11013. },
  11014. back: {
  11015. height: math.unit(7, "feet"),
  11016. weight: math.unit(300, "lb"),
  11017. name: "Back",
  11018. image: {
  11019. source: "./media/characters/pisces/back.svg",
  11020. extra: 2146 / 2055,
  11021. bottom: 0.04
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(7, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Swimming Pool",
  11033. height: math.unit(12.2, "meters")
  11034. },
  11035. {
  11036. name: "Olympic Swimming Pool",
  11037. height: math.unit(56.3, "meters")
  11038. },
  11039. {
  11040. name: "Lake Superior",
  11041. height: math.unit(93900, "meters")
  11042. },
  11043. {
  11044. name: "Mediterranean Sea",
  11045. height: math.unit(644457, "meters")
  11046. },
  11047. {
  11048. name: "World's Oceans",
  11049. height: math.unit(4567491, "meters")
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(2.3, "meters"),
  11058. weight: math.unit(120, "kg"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/zelas/front.svg"
  11062. }
  11063. },
  11064. side: {
  11065. height: math.unit(2.3, "meters"),
  11066. weight: math.unit(120, "kg"),
  11067. name: "Side",
  11068. image: {
  11069. source: "./media/characters/zelas/side.svg"
  11070. }
  11071. },
  11072. back: {
  11073. height: math.unit(2.3, "meters"),
  11074. weight: math.unit(120, "kg"),
  11075. name: "Back",
  11076. image: {
  11077. source: "./media/characters/zelas/back.svg"
  11078. }
  11079. },
  11080. foot: {
  11081. height: math.unit(1.116, "feet"),
  11082. name: "Foot",
  11083. image: {
  11084. source: "./media/characters/zelas/foot.svg"
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(2.3, "meters")
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(30, "meters"),
  11096. default: true
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(1, "inch"),
  11105. weight: math.unit(0.21, "grams"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/talbot/front.svg",
  11109. extra: 594 / 544
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Micro",
  11116. height: math.unit(1, "inch"),
  11117. default: true
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11123. {
  11124. front: {
  11125. height: math.unit(3 + 3 / 12, "feet"),
  11126. weight: math.unit(51.8, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/fliss/front.svg",
  11130. extra: 840 / 640
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Teeny Tiny",
  11137. height: math.unit(1, "mm")
  11138. },
  11139. {
  11140. name: "Small",
  11141. height: math.unit(1, "inch"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Standard Sylveon",
  11146. height: math.unit(3 + 3 / 12, "feet")
  11147. },
  11148. {
  11149. name: "Large Nuisance",
  11150. height: math.unit(33, "feet")
  11151. },
  11152. {
  11153. name: "City Filler",
  11154. height: math.unit(3000, "feet")
  11155. },
  11156. {
  11157. name: "New Horizon",
  11158. height: math.unit(6000, "miles")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(5, "cm"),
  11167. weight: math.unit(1.94, "g"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/fleta/front.svg",
  11171. extra: 835 / 803
  11172. }
  11173. },
  11174. back: {
  11175. height: math.unit(5, "cm"),
  11176. weight: math.unit(1.94, "g"),
  11177. name: "Back",
  11178. image: {
  11179. source: "./media/characters/fleta/back.svg",
  11180. extra: 835 / 803
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Micro",
  11187. height: math.unit(5, "cm"),
  11188. default: true
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11194. {
  11195. front: {
  11196. height: math.unit(6, "feet"),
  11197. weight: math.unit(225, "lb"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/dominic/front.svg",
  11201. extra: 1770 / 1620,
  11202. bottom: 0.025
  11203. }
  11204. },
  11205. back: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(225, "lb"),
  11208. name: "Back",
  11209. image: {
  11210. source: "./media/characters/dominic/back.svg",
  11211. extra: 1745 / 1620,
  11212. bottom: 0.065
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Nano",
  11219. height: math.unit(0.1, "mm")
  11220. },
  11221. {
  11222. name: "Micro-",
  11223. height: math.unit(1, "mm")
  11224. },
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(4, "inches")
  11228. },
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(6 + 4 / 12, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Macro",
  11236. height: math.unit(115, "feet")
  11237. },
  11238. {
  11239. name: "Macro+",
  11240. height: math.unit(955, "feet")
  11241. },
  11242. {
  11243. name: "Megamacro",
  11244. height: math.unit(8990, "feet")
  11245. },
  11246. {
  11247. name: "Gigmacro",
  11248. height: math.unit(9310, "miles")
  11249. },
  11250. {
  11251. name: "Teramacro",
  11252. height: math.unit(1567005010, "miles")
  11253. },
  11254. {
  11255. name: "Examacro",
  11256. height: math.unit(1425, "parsecs")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(400, "feet"),
  11265. weight: math.unit(44444444, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/major-colonel/front.svg"
  11269. }
  11270. },
  11271. back: {
  11272. height: math.unit(400, "feet"),
  11273. weight: math.unit(44444444, "lb"),
  11274. name: "Back",
  11275. image: {
  11276. source: "./media/characters/major-colonel/back.svg"
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Macro",
  11283. height: math.unit(400, "feet"),
  11284. default: true
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11290. {
  11291. catFront: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(120, "lb"),
  11294. name: "Front (Cat Side)",
  11295. image: {
  11296. source: "./media/characters/axel-lycan/cat-front.svg",
  11297. extra: 430 / 402,
  11298. bottom: 43 / 472.35
  11299. }
  11300. },
  11301. catBack: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(120, "lb"),
  11304. name: "Back (Cat Side)",
  11305. image: {
  11306. source: "./media/characters/axel-lycan/cat-back.svg",
  11307. extra: 447 / 419,
  11308. bottom: 23.3 / 469
  11309. }
  11310. },
  11311. wolfFront: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(120, "lb"),
  11314. name: "Front (Wolf Side)",
  11315. image: {
  11316. source: "./media/characters/axel-lycan/wolf-front.svg",
  11317. extra: 485 / 456,
  11318. bottom: 19 / 504
  11319. }
  11320. },
  11321. wolfBack: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(120, "lb"),
  11324. name: "Back (Wolf Side)",
  11325. image: {
  11326. source: "./media/characters/axel-lycan/wolf-back.svg",
  11327. extra: 475 / 438,
  11328. bottom: 39.2 / 514
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(1, "km"),
  11336. default: true
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(5 + 9 / 12, "feet"),
  11345. weight: math.unit(175, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/vanrel-hyena/front.svg",
  11349. extra: 1086 / 1010,
  11350. bottom: 0.04
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Normal",
  11357. height: math.unit(5 + 9 / 12, "feet"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(103, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/abbott-absol/front.svg",
  11371. extra: 765/694,
  11372. bottom: 47/812
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Megamicro",
  11379. height: math.unit(0.1, "mm")
  11380. },
  11381. {
  11382. name: "Micro",
  11383. height: math.unit(1, "inch")
  11384. },
  11385. {
  11386. name: "Normal",
  11387. height: math.unit(6, "feet"),
  11388. default: true
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(6, "feet"),
  11397. weight: math.unit(264, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/hector/front.svg",
  11401. extra: 2280 / 2130,
  11402. bottom: 0.07
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(12.25, "foot"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Macro",
  11414. height: math.unit(160, "feet")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(6, "feet"),
  11423. weight: math.unit(150, "lb"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/sal/front.svg",
  11427. extra: 1846 / 1699,
  11428. bottom: 0.04
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Megamacro",
  11435. height: math.unit(10, "miles"),
  11436. default: true
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11442. {
  11443. front: {
  11444. height: math.unit(3, "meters"),
  11445. weight: math.unit(450, "kg"),
  11446. name: "front",
  11447. image: {
  11448. source: "./media/characters/ranger/front.svg",
  11449. extra: 2401 / 2243,
  11450. bottom: 0.05
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(3, "meters"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(14, "feet"),
  11467. weight: math.unit(800, "kg"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/theresa/front.svg",
  11471. extra: 3575 / 3346,
  11472. bottom: 0.03
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(14, "feet"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11486. {
  11487. front: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(3, "kg"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/ine/front.svg",
  11493. extra: 678 / 539,
  11494. bottom: 0.023
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(2.265, "feet"),
  11502. default: true
  11503. },
  11504. ]
  11505. ))
  11506. characterMakers.push(() => makeCharacter(
  11507. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11508. {
  11509. front: {
  11510. height: math.unit(5, "feet"),
  11511. weight: math.unit(30, "kg"),
  11512. name: "Front",
  11513. image: {
  11514. source: "./media/characters/vial/front.svg",
  11515. extra: 1365 / 1277,
  11516. bottom: 0.04
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(5, "feet"),
  11524. default: true
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11530. {
  11531. side: {
  11532. height: math.unit(3.4, "meters"),
  11533. weight: math.unit(1000, "lb"),
  11534. name: "Side",
  11535. image: {
  11536. source: "./media/characters/rovoska/side.svg",
  11537. extra: 4403 / 1515
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Normal",
  11544. height: math.unit(3.4, "meters"),
  11545. default: true
  11546. },
  11547. ]
  11548. ))
  11549. characterMakers.push(() => makeCharacter(
  11550. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11551. {
  11552. front: {
  11553. height: math.unit(8, "feet"),
  11554. weight: math.unit(315, "lb"),
  11555. name: "Front",
  11556. image: {
  11557. source: "./media/characters/gunner-rotthbauer/front.svg"
  11558. }
  11559. },
  11560. back: {
  11561. height: math.unit(8, "feet"),
  11562. weight: math.unit(315, "lb"),
  11563. name: "Back",
  11564. image: {
  11565. source: "./media/characters/gunner-rotthbauer/back.svg"
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Micro",
  11572. height: math.unit(3.5, "inches")
  11573. },
  11574. {
  11575. name: "Normal",
  11576. height: math.unit(8, "feet"),
  11577. default: true
  11578. },
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(250, "feet")
  11582. },
  11583. {
  11584. name: "Megamacro",
  11585. height: math.unit(1, "AU")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(5 + 5 / 12, "feet"),
  11594. weight: math.unit(140, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/allatia/front.svg",
  11598. extra: 1227 / 1180,
  11599. bottom: 0.027
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(5 + 5 / 12, "feet")
  11607. },
  11608. {
  11609. name: "Macro",
  11610. height: math.unit(250, "feet"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Megamacro",
  11615. height: math.unit(8, "miles")
  11616. }
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(6, "feet"),
  11624. weight: math.unit(120, "lb"),
  11625. name: "Front",
  11626. image: {
  11627. source: "./media/characters/tene/front.svg",
  11628. extra: 814/750,
  11629. bottom: 36/850
  11630. }
  11631. },
  11632. stomping: {
  11633. height: math.unit(2.025, "meters"),
  11634. weight: math.unit(120, "lb"),
  11635. name: "Stomping",
  11636. image: {
  11637. source: "./media/characters/tene/stomping.svg",
  11638. extra: 885/821,
  11639. bottom: 15/900
  11640. }
  11641. },
  11642. sitting: {
  11643. height: math.unit(1, "meter"),
  11644. weight: math.unit(120, "lb"),
  11645. name: "Sitting",
  11646. image: {
  11647. source: "./media/characters/tene/sitting.svg",
  11648. extra: 396/366,
  11649. bottom: 79/475
  11650. }
  11651. },
  11652. smiling: {
  11653. height: math.unit(1.2, "feet"),
  11654. name: "Smiling",
  11655. image: {
  11656. source: "./media/characters/tene/smiling.svg",
  11657. extra: 1364/1071,
  11658. bottom: 0/1364
  11659. }
  11660. },
  11661. smug: {
  11662. height: math.unit(1.3, "feet"),
  11663. name: "Smug",
  11664. image: {
  11665. source: "./media/characters/tene/smug.svg",
  11666. extra: 1323/1082,
  11667. bottom: 0/1323
  11668. }
  11669. },
  11670. feral: {
  11671. height: math.unit(3.9, "feet"),
  11672. weight: math.unit(250, "lb"),
  11673. name: "Feral",
  11674. image: {
  11675. source: "./media/characters/tene/feral.svg",
  11676. extra: 717 / 458,
  11677. bottom: 0.179
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Normal",
  11684. height: math.unit(6, "feet")
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(300, "feet"),
  11689. default: true
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(5, "miles")
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11699. {
  11700. side: {
  11701. height: math.unit(6, "feet"),
  11702. name: "Side",
  11703. image: {
  11704. source: "./media/characters/evander/side.svg",
  11705. extra: 877 / 477
  11706. }
  11707. },
  11708. },
  11709. [
  11710. {
  11711. name: "Normal",
  11712. height: math.unit(0.83, "meters"),
  11713. default: true
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(12, "feet"),
  11722. weight: math.unit(1000, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11726. extra: 1762 / 1611
  11727. }
  11728. },
  11729. back: {
  11730. height: math.unit(12, "feet"),
  11731. weight: math.unit(1000, "lb"),
  11732. name: "Back",
  11733. image: {
  11734. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11735. extra: 1762 / 1611
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(12, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Kaiju",
  11747. height: math.unit(150, "feet")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(5 + 11/12, "feet"),
  11756. weight: math.unit(180, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/zero-alurus/front.svg",
  11760. extra: 1032/957,
  11761. bottom: 10/1042
  11762. }
  11763. },
  11764. back: {
  11765. height: math.unit(5 + 11/12, "feet"),
  11766. weight: math.unit(180, "lb"),
  11767. name: "Back",
  11768. image: {
  11769. source: "./media/characters/zero-alurus/back.svg",
  11770. extra: 1027/950,
  11771. bottom: 12/1039
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Normal",
  11778. height: math.unit(5 + 11 / 12, "feet")
  11779. },
  11780. {
  11781. name: "Mini-Macro",
  11782. height: math.unit(25, "feet")
  11783. },
  11784. {
  11785. name: "Macro",
  11786. height: math.unit(90, "feet"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Macro+",
  11791. height: math.unit(500, "feet")
  11792. },
  11793. {
  11794. name: "Megamacro",
  11795. height: math.unit(1200, "feet")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(6, "feet"),
  11804. weight: math.unit(200, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/mega-shi/front.svg",
  11808. extra: 1279 / 1250,
  11809. bottom: 0.02
  11810. }
  11811. },
  11812. back: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(200, "lb"),
  11815. name: "Back",
  11816. image: {
  11817. source: "./media/characters/mega-shi/back.svg",
  11818. extra: 1279 / 1250,
  11819. bottom: 0.02
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Micro",
  11826. height: math.unit(16 + 6 / 12, "feet")
  11827. },
  11828. {
  11829. name: "Third Dimension",
  11830. height: math.unit(40, "meters")
  11831. },
  11832. {
  11833. name: "Normal",
  11834. height: math.unit(660, "feet"),
  11835. default: true
  11836. },
  11837. {
  11838. name: "Megamacro",
  11839. height: math.unit(10, "miles")
  11840. },
  11841. {
  11842. name: "Planetary Launch",
  11843. height: math.unit(500, "miles")
  11844. },
  11845. {
  11846. name: "Interstellar",
  11847. height: math.unit(1e9, "miles")
  11848. },
  11849. {
  11850. name: "Leaving the Universe",
  11851. height: math.unit(1, "gigaparsec")
  11852. },
  11853. {
  11854. name: "Travelling Universes",
  11855. height: math.unit(30e15, "parsecs")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11861. {
  11862. front: {
  11863. height: math.unit(5 + 4/12, "feet"),
  11864. weight: math.unit(120, "lb"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/odyssey/front.svg",
  11868. extra: 1747/1571,
  11869. bottom: 47/1794
  11870. }
  11871. },
  11872. side: {
  11873. height: math.unit(5.1, "feet"),
  11874. weight: math.unit(120, "lb"),
  11875. name: "Side",
  11876. image: {
  11877. source: "./media/characters/odyssey/side.svg",
  11878. extra: 1847/1619,
  11879. bottom: 47/1894
  11880. }
  11881. },
  11882. lounging: {
  11883. height: math.unit(1.464, "feet"),
  11884. weight: math.unit(120, "lb"),
  11885. name: "Lounging",
  11886. image: {
  11887. source: "./media/characters/odyssey/lounging.svg",
  11888. extra: 1235/837,
  11889. bottom: 551/1786
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(5 + 4 / 12, "feet")
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(1, "km")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(3000, "km")
  11905. },
  11906. {
  11907. name: "Gigamacro",
  11908. height: math.unit(1, "AU"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Omniversal",
  11913. height: math.unit(100e14, "lightyears")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(5 + 10/12, "feet"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/mekuto/front.svg",
  11925. extra: 875/835,
  11926. bottom: 46/921
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Minimicro",
  11933. height: math.unit(0.2, "inches")
  11934. },
  11935. {
  11936. name: "Micro",
  11937. height: math.unit(1.5, "inches")
  11938. },
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(5 + 10 / 12, "feet"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Minimacro",
  11946. height: math.unit(17 + 9 / 12, "feet")
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(177.5, "feet")
  11951. },
  11952. {
  11953. name: "Megamacro",
  11954. height: math.unit(152, "miles")
  11955. },
  11956. ]
  11957. ))
  11958. characterMakers.push(() => makeCharacter(
  11959. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11960. {
  11961. front: {
  11962. height: math.unit(6.5, "inches"),
  11963. weight: math.unit(13, "oz"),
  11964. name: "Front",
  11965. image: {
  11966. source: "./media/characters/dafydd-tomos/front.svg",
  11967. extra: 2990 / 2603,
  11968. bottom: 0.03
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Micro",
  11975. height: math.unit(6.5, "inches"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(150, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/splinter/front.svg",
  11989. extra: 2990 / 2882,
  11990. bottom: 0.04
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(150, "lb"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/splinter/back.svg",
  11999. extra: 2990 / 2882,
  12000. bottom: 0.04
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(6, "feet")
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(230, "meters"),
  12012. default: true
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  12018. {
  12019. front: {
  12020. height: math.unit(4 + 10 / 12, "feet"),
  12021. weight: math.unit(480, "lb"),
  12022. name: "Front",
  12023. image: {
  12024. source: "./media/characters/snow-gabumon/front.svg",
  12025. extra: 1140 / 963,
  12026. bottom: 0.058
  12027. }
  12028. },
  12029. back: {
  12030. height: math.unit(4 + 10 / 12, "feet"),
  12031. weight: math.unit(480, "lb"),
  12032. name: "Back",
  12033. image: {
  12034. source: "./media/characters/snow-gabumon/back.svg",
  12035. extra: 1115 / 962,
  12036. bottom: 0.041
  12037. }
  12038. },
  12039. frontUndresed: {
  12040. height: math.unit(4 + 10 / 12, "feet"),
  12041. weight: math.unit(480, "lb"),
  12042. name: "Front (Undressed)",
  12043. image: {
  12044. source: "./media/characters/snow-gabumon/front-undressed.svg",
  12045. extra: 1061 / 960,
  12046. bottom: 0.045
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(1, "inch")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(4 + 10 / 12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Macro",
  12062. height: math.unit(200, "feet")
  12063. },
  12064. {
  12065. name: "Megamacro",
  12066. height: math.unit(120, "miles")
  12067. },
  12068. {
  12069. name: "Gigamacro",
  12070. height: math.unit(9800, "miles")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(1.7, "meters"),
  12079. weight: math.unit(140, "lb"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/moody/front.svg",
  12083. extra: 3226 / 3007,
  12084. bottom: 0.087
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Micro",
  12091. height: math.unit(1, "mm")
  12092. },
  12093. {
  12094. name: "Normal",
  12095. height: math.unit(1.7, "meters"),
  12096. default: true
  12097. },
  12098. {
  12099. name: "Macro",
  12100. height: math.unit(80, "meters")
  12101. },
  12102. {
  12103. name: "Macro+",
  12104. height: math.unit(500, "meters")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12110. {
  12111. front: {
  12112. height: math.unit(6, "feet"),
  12113. weight: math.unit(150, "lb"),
  12114. name: "Front",
  12115. image: {
  12116. source: "./media/characters/zyas/front.svg",
  12117. extra: 1180 / 1120,
  12118. bottom: 0.045
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(10, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro",
  12130. height: math.unit(500, "feet")
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(5, "miles")
  12135. },
  12136. {
  12137. name: "Teramacro",
  12138. height: math.unit(150000, "miles")
  12139. },
  12140. ]
  12141. ))
  12142. characterMakers.push(() => makeCharacter(
  12143. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12144. {
  12145. front: {
  12146. height: math.unit(6, "feet"),
  12147. weight: math.unit(150, "lb"),
  12148. name: "Front",
  12149. image: {
  12150. source: "./media/characters/cuon/front.svg",
  12151. extra: 1390 / 1320,
  12152. bottom: 0.008
  12153. }
  12154. },
  12155. },
  12156. [
  12157. {
  12158. name: "Micro",
  12159. height: math.unit(3, "inches")
  12160. },
  12161. {
  12162. name: "Normal",
  12163. height: math.unit(18 + 9 / 12, "feet"),
  12164. default: true
  12165. },
  12166. {
  12167. name: "Macro",
  12168. height: math.unit(360, "feet")
  12169. },
  12170. {
  12171. name: "Megamacro",
  12172. height: math.unit(360, "miles")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(2.4, "meters"),
  12181. weight: math.unit(70, "kg"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/nyanuxk/front.svg",
  12185. extra: 1172 / 1084,
  12186. bottom: 0.065
  12187. }
  12188. },
  12189. side: {
  12190. height: math.unit(2.4, "meters"),
  12191. weight: math.unit(70, "kg"),
  12192. name: "Side",
  12193. image: {
  12194. source: "./media/characters/nyanuxk/side.svg",
  12195. extra: 1190 / 1132,
  12196. bottom: 0.007
  12197. }
  12198. },
  12199. back: {
  12200. height: math.unit(2.4, "meters"),
  12201. weight: math.unit(70, "kg"),
  12202. name: "Back",
  12203. image: {
  12204. source: "./media/characters/nyanuxk/back.svg",
  12205. extra: 1200 / 1141,
  12206. bottom: 0.015
  12207. }
  12208. },
  12209. foot: {
  12210. height: math.unit(0.52, "meters"),
  12211. name: "Foot",
  12212. image: {
  12213. source: "./media/characters/nyanuxk/foot.svg"
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Micro",
  12220. height: math.unit(2, "cm")
  12221. },
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(2.4, "meters"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Smaller Macro",
  12229. height: math.unit(120, "meters")
  12230. },
  12231. {
  12232. name: "Bigger Macro",
  12233. height: math.unit(1.2, "km")
  12234. },
  12235. {
  12236. name: "Megamacro",
  12237. height: math.unit(15, "kilometers")
  12238. },
  12239. {
  12240. name: "Gigamacro",
  12241. height: math.unit(2000, "km")
  12242. },
  12243. {
  12244. name: "Teramacro",
  12245. height: math.unit(500000, "km")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12251. {
  12252. side: {
  12253. height: math.unit(6, "feet"),
  12254. name: "Side",
  12255. image: {
  12256. source: "./media/characters/ailbhe/side.svg",
  12257. extra: 757 / 464,
  12258. bottom: 0.041
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Normal",
  12265. height: math.unit(1.07, "meters"),
  12266. default: true
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(6, "feet"),
  12275. weight: math.unit(120, "kg"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/zevulfius/front.svg",
  12279. extra: 965 / 903
  12280. }
  12281. },
  12282. side: {
  12283. height: math.unit(6, "feet"),
  12284. weight: math.unit(120, "kg"),
  12285. name: "Side",
  12286. image: {
  12287. source: "./media/characters/zevulfius/side.svg",
  12288. extra: 939 / 900
  12289. }
  12290. },
  12291. back: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(120, "kg"),
  12294. name: "Back",
  12295. image: {
  12296. source: "./media/characters/zevulfius/back.svg",
  12297. extra: 918 / 854,
  12298. bottom: 0.005
  12299. }
  12300. },
  12301. foot: {
  12302. height: math.unit(6 / 3.72, "feet"),
  12303. name: "Foot",
  12304. image: {
  12305. source: "./media/characters/zevulfius/foot.svg"
  12306. }
  12307. },
  12308. },
  12309. [
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(750, "meters")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(20, "km"),
  12317. default: true
  12318. },
  12319. {
  12320. name: "Gigamacro",
  12321. height: math.unit(2000, "km")
  12322. },
  12323. {
  12324. name: "Teramacro",
  12325. height: math.unit(250000, "km")
  12326. },
  12327. ]
  12328. ))
  12329. characterMakers.push(() => makeCharacter(
  12330. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12331. {
  12332. front: {
  12333. height: math.unit(100, "feet"),
  12334. weight: math.unit(350, "kg"),
  12335. name: "Front",
  12336. image: {
  12337. source: "./media/characters/rikes/front.svg",
  12338. extra: 1565 / 1483,
  12339. bottom: 0.017
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(100, "feet"),
  12347. default: true
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(8, "feet"),
  12356. weight: math.unit(356, "lb"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/adam-silver-mane/front.svg",
  12360. extra: 1036/937,
  12361. bottom: 63/1099
  12362. }
  12363. },
  12364. side: {
  12365. height: math.unit(8, "feet"),
  12366. weight: math.unit(356, "lb"),
  12367. name: "Side",
  12368. image: {
  12369. source: "./media/characters/adam-silver-mane/side.svg",
  12370. extra: 997/901,
  12371. bottom: 59/1056
  12372. }
  12373. },
  12374. frontNsfw: {
  12375. height: math.unit(8, "feet"),
  12376. weight: math.unit(356, "lb"),
  12377. name: "Front (NSFW)",
  12378. image: {
  12379. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12380. extra: 1036/937,
  12381. bottom: 63/1099
  12382. }
  12383. },
  12384. sideNsfw: {
  12385. height: math.unit(8, "feet"),
  12386. weight: math.unit(356, "lb"),
  12387. name: "Side (NSFW)",
  12388. image: {
  12389. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12390. extra: 997/901,
  12391. bottom: 59/1056
  12392. }
  12393. },
  12394. dick: {
  12395. height: math.unit(2.1, "feet"),
  12396. name: "Dick",
  12397. image: {
  12398. source: "./media/characters/adam-silver-mane/dick.svg"
  12399. }
  12400. },
  12401. taur: {
  12402. height: math.unit(16, "feet"),
  12403. weight: math.unit(1500, "kg"),
  12404. name: "Taur",
  12405. image: {
  12406. source: "./media/characters/adam-silver-mane/taur.svg",
  12407. extra: 1713 / 1571,
  12408. bottom: 0.01
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(8, "feet")
  12416. },
  12417. {
  12418. name: "Minimacro",
  12419. height: math.unit(80, "feet")
  12420. },
  12421. {
  12422. name: "MDA",
  12423. height: math.unit(80, "meters")
  12424. },
  12425. {
  12426. name: "Macro",
  12427. height: math.unit(800, "feet"),
  12428. default: true
  12429. },
  12430. {
  12431. name: "Megamacro",
  12432. height: math.unit(8000, "feet")
  12433. },
  12434. {
  12435. name: "Gigamacro",
  12436. height: math.unit(800, "miles")
  12437. },
  12438. {
  12439. name: "Teramacro",
  12440. height: math.unit(80000, "miles")
  12441. },
  12442. {
  12443. name: "Celestial",
  12444. height: math.unit(8e6, "miles")
  12445. },
  12446. {
  12447. name: "Star Dragon",
  12448. height: math.unit(800000, "parsecs")
  12449. },
  12450. {
  12451. name: "Godly",
  12452. height: math.unit(800, "teraparsecs")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(150, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/ky'owin/front.svg",
  12465. extra: 3862/3053,
  12466. bottom: 74/3936
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Normal",
  12473. height: math.unit(6 + 8 / 12, "feet")
  12474. },
  12475. {
  12476. name: "Large",
  12477. height: math.unit(68, "feet")
  12478. },
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(132, "feet")
  12482. },
  12483. {
  12484. name: "Macro+",
  12485. height: math.unit(340, "feet")
  12486. },
  12487. {
  12488. name: "Macro++",
  12489. height: math.unit(680, "feet"),
  12490. default: true
  12491. },
  12492. {
  12493. name: "Megamacro",
  12494. height: math.unit(1, "mile")
  12495. },
  12496. {
  12497. name: "Megamacro+",
  12498. height: math.unit(10, "miles")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(4, "feet"),
  12507. weight: math.unit(50, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/mal/front.svg",
  12511. extra: 785 / 724,
  12512. bottom: 0.07
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Micro",
  12519. height: math.unit(4, "inches")
  12520. },
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(4, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Macro",
  12528. height: math.unit(200, "feet")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/jordan-deware/front.svg",
  12541. extra: 1191 / 1012
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Nano",
  12548. height: math.unit(0.01, "mm")
  12549. },
  12550. {
  12551. name: "Minimicro",
  12552. height: math.unit(1, "mm")
  12553. },
  12554. {
  12555. name: "Micro",
  12556. height: math.unit(0.5, "inches")
  12557. },
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(4, "feet"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Minimacro",
  12565. height: math.unit(40, "meters")
  12566. },
  12567. {
  12568. name: "Small Macro",
  12569. height: math.unit(400, "meters")
  12570. },
  12571. {
  12572. name: "Macro",
  12573. height: math.unit(4, "miles")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(40, "miles")
  12578. },
  12579. {
  12580. name: "Megamacro+",
  12581. height: math.unit(400, "miles")
  12582. },
  12583. {
  12584. name: "Gigamacro",
  12585. height: math.unit(400000, "miles")
  12586. },
  12587. ]
  12588. ))
  12589. characterMakers.push(() => makeCharacter(
  12590. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12591. {
  12592. front: {
  12593. height: math.unit(15, "feet"),
  12594. weight: math.unit(3000, "kg"),
  12595. preyCapacity: math.unit(450, "people"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/kimiko/front.svg",
  12599. extra: 875/832,
  12600. bottom: 36/911
  12601. },
  12602. extraAttributes: {
  12603. "pawSize": {
  12604. name: "Paw Size",
  12605. power: 1,
  12606. type: "length",
  12607. base: math.unit(0.9, "meters")
  12608. },
  12609. }
  12610. },
  12611. side: {
  12612. height: math.unit(15, "feet"),
  12613. weight: math.unit(3000, "kg"),
  12614. preyCapacity: math.unit(400, "people"),
  12615. name: "Side",
  12616. image: {
  12617. source: "./media/characters/kimiko/side.svg",
  12618. extra: 448/270,
  12619. bottom: 7/455
  12620. },
  12621. extraAttributes: {
  12622. "pawSize": {
  12623. name: "Paw Size",
  12624. power: 1,
  12625. type: "length",
  12626. base: math.unit(0.9, "meters")
  12627. },
  12628. }
  12629. },
  12630. maw: {
  12631. height: math.unit(0.81, "feet"),
  12632. name: "Maw",
  12633. image: {
  12634. source: "./media/characters/kimiko/maw.svg"
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Normal",
  12641. height: math.unit(15, "feet"),
  12642. default: true
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(220, "feet")
  12647. },
  12648. {
  12649. name: "Macro+",
  12650. height: math.unit(1450, "feet")
  12651. },
  12652. {
  12653. name: "Megamacro",
  12654. height: math.unit(11500, "feet")
  12655. },
  12656. {
  12657. name: "Gigamacro",
  12658. height: math.unit(9500, "miles")
  12659. },
  12660. {
  12661. name: "Teramacro",
  12662. height: math.unit(2208005005, "miles")
  12663. },
  12664. {
  12665. name: "Examacro",
  12666. height: math.unit(2750, "parsecs")
  12667. },
  12668. {
  12669. name: "Zettamacro",
  12670. height: math.unit(101500, "parsecs")
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(70, "kg"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/andrew-sleepy/front.svg"
  12683. }
  12684. },
  12685. side: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(70, "kg"),
  12688. name: "Side",
  12689. image: {
  12690. source: "./media/characters/andrew-sleepy/side.svg"
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Micro",
  12697. height: math.unit(1, "mm"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(150, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/judio/front.svg",
  12711. extra: 1258 / 1110
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Normal",
  12718. height: math.unit(5 + 6 / 12, "feet")
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(1000, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(10, "miles")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12733. {
  12734. frontDressed: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(68, "kg"),
  12737. name: "Front (Dressed)",
  12738. image: {
  12739. source: "./media/characters/nomaxice/front-dressed.svg",
  12740. extra: 1137/824,
  12741. bottom: 74/1211
  12742. }
  12743. },
  12744. frontShorts: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(68, "kg"),
  12747. name: "Front (Shorts)",
  12748. image: {
  12749. source: "./media/characters/nomaxice/front-shorts.svg",
  12750. extra: 1137/824,
  12751. bottom: 74/1211
  12752. }
  12753. },
  12754. back: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(68, "kg"),
  12757. name: "Back",
  12758. image: {
  12759. source: "./media/characters/nomaxice/back.svg",
  12760. extra: 822/786,
  12761. bottom: 39/861
  12762. }
  12763. },
  12764. hand: {
  12765. height: math.unit(0.565, "feet"),
  12766. name: "Hand",
  12767. image: {
  12768. source: "./media/characters/nomaxice/hand.svg"
  12769. }
  12770. },
  12771. foot: {
  12772. height: math.unit(1, "feet"),
  12773. name: "Foot",
  12774. image: {
  12775. source: "./media/characters/nomaxice/foot.svg"
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Micro",
  12782. height: math.unit(8, "cm")
  12783. },
  12784. {
  12785. name: "Norm",
  12786. height: math.unit(1.82, "m")
  12787. },
  12788. {
  12789. name: "Norm+",
  12790. height: math.unit(8.8, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Big",
  12795. height: math.unit(8, "meters")
  12796. },
  12797. {
  12798. name: "Macro",
  12799. height: math.unit(18, "meters")
  12800. },
  12801. {
  12802. name: "Macro+",
  12803. height: math.unit(88, "meters")
  12804. },
  12805. ]
  12806. ))
  12807. characterMakers.push(() => makeCharacter(
  12808. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12809. {
  12810. front: {
  12811. height: math.unit(12, "feet"),
  12812. weight: math.unit(1.5, "tons"),
  12813. name: "Front",
  12814. image: {
  12815. source: "./media/characters/dydros/front.svg",
  12816. extra: 863 / 800,
  12817. bottom: 0.015
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(12, "feet"),
  12822. weight: math.unit(1.5, "tons"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/dydros/back.svg",
  12826. extra: 900 / 843,
  12827. bottom: 0.005
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Normal",
  12834. height: math.unit(12, "feet"),
  12835. default: true
  12836. },
  12837. ]
  12838. ))
  12839. characterMakers.push(() => makeCharacter(
  12840. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12841. {
  12842. front: {
  12843. height: math.unit(6, "feet"),
  12844. weight: math.unit(100, "kg"),
  12845. name: "Front",
  12846. image: {
  12847. source: "./media/characters/riggi/front.svg",
  12848. extra: 5787 / 5303
  12849. }
  12850. },
  12851. hyper: {
  12852. height: math.unit(6 * 5 / 3, "feet"),
  12853. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12854. name: "Hyper",
  12855. image: {
  12856. source: "./media/characters/riggi/hyper.svg",
  12857. extra: 3595 / 3485
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Small Macro",
  12864. height: math.unit(50, "feet")
  12865. },
  12866. {
  12867. name: "Default",
  12868. height: math.unit(200, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Loom",
  12873. height: math.unit(10000, "feet")
  12874. },
  12875. {
  12876. name: "Cruising Altitude",
  12877. height: math.unit(30000, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro",
  12881. height: math.unit(100, "miles")
  12882. },
  12883. {
  12884. name: "Continent Sized",
  12885. height: math.unit(2800, "miles")
  12886. },
  12887. {
  12888. name: "Earth Sized",
  12889. height: math.unit(8000, "miles")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(250, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/alexi/front.svg",
  12902. extra: 3483 / 3291,
  12903. bottom: 0.04
  12904. }
  12905. },
  12906. back: {
  12907. height: math.unit(6, "feet"),
  12908. weight: math.unit(250, "lb"),
  12909. name: "Back",
  12910. image: {
  12911. source: "./media/characters/alexi/back.svg",
  12912. extra: 3533 / 3356,
  12913. bottom: 0.021
  12914. }
  12915. },
  12916. frontTransforming: {
  12917. height: math.unit(8.58, "feet"),
  12918. weight: math.unit(1300, "lb"),
  12919. name: "Transforming",
  12920. image: {
  12921. source: "./media/characters/alexi/front-transforming.svg",
  12922. extra: 437 / 409,
  12923. bottom: 19 / 458.66
  12924. }
  12925. },
  12926. frontTransformed: {
  12927. height: math.unit(12.5, "feet"),
  12928. weight: math.unit(4000, "lb"),
  12929. name: "Transformed",
  12930. image: {
  12931. source: "./media/characters/alexi/front-transformed.svg",
  12932. extra: 639 / 614,
  12933. bottom: 30.55 / 671
  12934. }
  12935. },
  12936. },
  12937. [
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(14, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Minimacro",
  12945. height: math.unit(30, "meters")
  12946. },
  12947. {
  12948. name: "Macro",
  12949. height: math.unit(500, "meters")
  12950. },
  12951. {
  12952. name: "Megamacro",
  12953. height: math.unit(9000, "km")
  12954. },
  12955. {
  12956. name: "Teramacro",
  12957. height: math.unit(384000, "km")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/kayroo/front.svg",
  12970. extra: 1153 / 1038,
  12971. bottom: 0.06
  12972. }
  12973. },
  12974. foot: {
  12975. height: math.unit(6, "feet"),
  12976. weight: math.unit(150, "lb"),
  12977. name: "Foot",
  12978. image: {
  12979. source: "./media/characters/kayroo/foot.svg"
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(8, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Minimacro",
  12991. height: math.unit(250, "feet")
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(2800, "feet")
  12996. },
  12997. {
  12998. name: "Megamacro",
  12999. height: math.unit(5200, "feet")
  13000. },
  13001. {
  13002. name: "Gigamacro",
  13003. height: math.unit(27000, "feet")
  13004. },
  13005. {
  13006. name: "Omega",
  13007. height: math.unit(45000, "feet")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(18, "feet"),
  13016. weight: math.unit(5800, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/rhys/front.svg",
  13020. extra: 3386 / 3090,
  13021. bottom: 0.07
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(18, "feet"),
  13029. default: true
  13030. },
  13031. {
  13032. name: "Working Size",
  13033. height: math.unit(200, "feet")
  13034. },
  13035. {
  13036. name: "Demolition Size",
  13037. height: math.unit(2000, "feet")
  13038. },
  13039. {
  13040. name: "Maximum Licensed Size",
  13041. height: math.unit(5, "miles")
  13042. },
  13043. {
  13044. name: "Maximum Observed Size",
  13045. height: math.unit(10, "yottameters")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(250, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/toto/front.svg",
  13058. extra: 527 / 479,
  13059. bottom: 0.05
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Micro",
  13066. height: math.unit(3, "feet")
  13067. },
  13068. {
  13069. name: "Normal",
  13070. height: math.unit(10, "feet")
  13071. },
  13072. {
  13073. name: "Macro",
  13074. height: math.unit(150, "feet"),
  13075. default: true
  13076. },
  13077. {
  13078. name: "Megamacro",
  13079. height: math.unit(1200, "feet")
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "King", species: ["lion"], tags: ["anthro"] },
  13085. {
  13086. back: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Back",
  13090. image: {
  13091. source: "./media/characters/king/back.svg"
  13092. }
  13093. },
  13094. },
  13095. [
  13096. {
  13097. name: "Micro",
  13098. height: math.unit(2, "inches")
  13099. },
  13100. {
  13101. name: "Normal",
  13102. height: math.unit(8, "feet")
  13103. },
  13104. {
  13105. name: "Macro",
  13106. height: math.unit(200, "feet"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Megamacro",
  13111. height: math.unit(50, "miles")
  13112. },
  13113. ]
  13114. ))
  13115. characterMakers.push(() => makeCharacter(
  13116. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13117. {
  13118. front: {
  13119. height: math.unit(11, "feet"),
  13120. weight: math.unit(1400, "lb"),
  13121. name: "Front",
  13122. image: {
  13123. source: "./media/characters/cordite/front.svg",
  13124. extra: 1919/1827,
  13125. bottom: 40/1959
  13126. }
  13127. },
  13128. side: {
  13129. height: math.unit(11, "feet"),
  13130. weight: math.unit(1400, "lb"),
  13131. name: "Side",
  13132. image: {
  13133. source: "./media/characters/cordite/side.svg",
  13134. extra: 1908/1793,
  13135. bottom: 38/1946
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(11, "feet"),
  13140. weight: math.unit(1400, "lb"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/cordite/back.svg",
  13144. extra: 1938/1837,
  13145. bottom: 10/1948
  13146. }
  13147. },
  13148. feral: {
  13149. height: math.unit(2, "feet"),
  13150. weight: math.unit(90, "lb"),
  13151. name: "Feral",
  13152. image: {
  13153. source: "./media/characters/cordite/feral.svg",
  13154. extra: 1260 / 755,
  13155. bottom: 0.05
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(11, "feet"),
  13163. default: true
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/pianostrong/front.svg",
  13176. extra: 6577 / 6254,
  13177. bottom: 0.02
  13178. }
  13179. },
  13180. side: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Side",
  13184. image: {
  13185. source: "./media/characters/pianostrong/side.svg",
  13186. extra: 6106 / 5730
  13187. }
  13188. },
  13189. back: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Back",
  13193. image: {
  13194. source: "./media/characters/pianostrong/back.svg",
  13195. extra: 6085 / 5733,
  13196. bottom: 0.01
  13197. }
  13198. },
  13199. },
  13200. [
  13201. {
  13202. name: "Macro",
  13203. height: math.unit(100, "feet")
  13204. },
  13205. {
  13206. name: "Macro+",
  13207. height: math.unit(300, "feet"),
  13208. default: true
  13209. },
  13210. {
  13211. name: "Macro++",
  13212. height: math.unit(1000, "feet")
  13213. },
  13214. ]
  13215. ))
  13216. characterMakers.push(() => makeCharacter(
  13217. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13218. {
  13219. front: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(150, "lb"),
  13222. name: "Front",
  13223. image: {
  13224. source: "./media/characters/kona/front.svg",
  13225. extra: 2960 / 2629,
  13226. bottom: 0.005
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Normal",
  13233. height: math.unit(11 + 8 / 12, "feet")
  13234. },
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(850, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Macro+",
  13242. height: math.unit(1.5, "km"),
  13243. default: true
  13244. },
  13245. {
  13246. name: "Megamacro",
  13247. height: math.unit(80, "miles")
  13248. },
  13249. {
  13250. name: "Gigamacro",
  13251. height: math.unit(3500, "miles")
  13252. },
  13253. ]
  13254. ))
  13255. characterMakers.push(() => makeCharacter(
  13256. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13257. {
  13258. side: {
  13259. height: math.unit(1.9, "meters"),
  13260. weight: math.unit(326, "kg"),
  13261. name: "Side",
  13262. image: {
  13263. source: "./media/characters/levi/side.svg",
  13264. extra: 1704 / 1334,
  13265. bottom: 0.02
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Normal",
  13272. height: math.unit(1.9, "meters"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Macro",
  13277. height: math.unit(20, "meters")
  13278. },
  13279. {
  13280. name: "Macro+",
  13281. height: math.unit(200, "meters")
  13282. },
  13283. {
  13284. name: "Megamacro",
  13285. height: math.unit(2, "km")
  13286. },
  13287. {
  13288. name: "Megamacro+",
  13289. height: math.unit(20, "km")
  13290. },
  13291. {
  13292. name: "Gigamacro",
  13293. height: math.unit(2500, "km")
  13294. },
  13295. {
  13296. name: "Gigamacro+",
  13297. height: math.unit(120000, "km")
  13298. },
  13299. {
  13300. name: "Teramacro",
  13301. height: math.unit(7.77e6, "km")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(6 + 4/12, "feet"),
  13310. weight: math.unit(190, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/bmc/front.svg",
  13314. extra: 1626/1472,
  13315. bottom: 79/1705
  13316. }
  13317. },
  13318. back: {
  13319. height: math.unit(6 + 4/12, "feet"),
  13320. weight: math.unit(190, "lb"),
  13321. name: "Back",
  13322. image: {
  13323. source: "./media/characters/bmc/back.svg",
  13324. extra: 1640/1479,
  13325. bottom: 45/1685
  13326. }
  13327. },
  13328. frontArmor: {
  13329. height: math.unit(6 + 4/12, "feet"),
  13330. weight: math.unit(190, "lb"),
  13331. name: "Front (Armor)",
  13332. image: {
  13333. source: "./media/characters/bmc/front-armor.svg",
  13334. extra: 1538/1468,
  13335. bottom: 79/1617
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Human-sized",
  13342. height: math.unit(6 + 4 / 12, "feet")
  13343. },
  13344. {
  13345. name: "Interactive Size",
  13346. height: math.unit(25, "feet")
  13347. },
  13348. {
  13349. name: "Small",
  13350. height: math.unit(250, "feet")
  13351. },
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(1250, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Good Day",
  13359. height: math.unit(88, "miles")
  13360. },
  13361. {
  13362. name: "Largest Measured Size",
  13363. height: math.unit(105.960, "galaxies")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(20, "feet"),
  13372. weight: math.unit(2016, "kg"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/sven-the-kaiju/front.svg",
  13376. extra: 1277/1250,
  13377. bottom: 35/1312
  13378. }
  13379. },
  13380. mouth: {
  13381. height: math.unit(1.85, "feet"),
  13382. name: "Mouth",
  13383. image: {
  13384. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Fairy",
  13391. height: math.unit(6, "inches")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(20, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Rampage",
  13400. height: math.unit(200, "feet")
  13401. },
  13402. {
  13403. name: "Archfey Forest Guardian",
  13404. height: math.unit(1, "mile")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(4, "meters"),
  13413. weight: math.unit(2, "tons"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/marik/front.svg",
  13417. extra: 1057 / 1003,
  13418. bottom: 0.08
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Normal",
  13425. height: math.unit(4, "meters"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(20, "meters")
  13431. },
  13432. {
  13433. name: "Megamacro",
  13434. height: math.unit(50, "km")
  13435. },
  13436. {
  13437. name: "Gigamacro",
  13438. height: math.unit(100, "km")
  13439. },
  13440. {
  13441. name: "Alpha Macro",
  13442. height: math.unit(7.88e7, "yottameters")
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(110, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/mel/front.svg",
  13455. extra: 736 / 617,
  13456. bottom: 0.017
  13457. }
  13458. },
  13459. },
  13460. [
  13461. {
  13462. name: "Pico",
  13463. height: math.unit(3, "pm")
  13464. },
  13465. {
  13466. name: "Nano",
  13467. height: math.unit(3, "nm")
  13468. },
  13469. {
  13470. name: "Micro",
  13471. height: math.unit(0.3, "mm"),
  13472. default: true
  13473. },
  13474. {
  13475. name: "Micro+",
  13476. height: math.unit(3, "mm")
  13477. },
  13478. {
  13479. name: "Normal",
  13480. height: math.unit(5 + 10.5 / 12, "feet")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13486. {
  13487. kaiju: {
  13488. height: math.unit(1.75, "meters"),
  13489. weight: math.unit(55, "kg"),
  13490. name: "Kaiju",
  13491. image: {
  13492. source: "./media/characters/lykonous/kaiju.svg",
  13493. extra: 1055 / 946,
  13494. bottom: 0.135
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(2.5, "meters"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Kaiju Dragon",
  13506. height: math.unit(60, "meters")
  13507. },
  13508. {
  13509. name: "Mega Kaiju",
  13510. height: math.unit(120, "km")
  13511. },
  13512. {
  13513. name: "Giga Kaiju",
  13514. height: math.unit(200, "megameters")
  13515. },
  13516. {
  13517. name: "Terra Kaiju",
  13518. height: math.unit(400, "gigameters")
  13519. },
  13520. {
  13521. name: "Kaiju Dragon God",
  13522. height: math.unit(13000, "exaparsecs")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(6, "feet"),
  13531. weight: math.unit(150, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/blü/front.svg",
  13535. extra: 1883 / 1564,
  13536. bottom: 0.031
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(13, "feet"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Big Boi",
  13548. height: math.unit(150, "meters")
  13549. },
  13550. {
  13551. name: "Mini Stomper",
  13552. height: math.unit(300, "meters")
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(1000, "meters")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(11000, "meters")
  13561. },
  13562. {
  13563. name: "Gigamacro",
  13564. height: math.unit(11000, "km")
  13565. },
  13566. {
  13567. name: "Teramacro",
  13568. height: math.unit(420000, "km")
  13569. },
  13570. {
  13571. name: "Examacro",
  13572. height: math.unit(120, "parsecs")
  13573. },
  13574. {
  13575. name: "God Tho",
  13576. height: math.unit(98000000000, "parsecs")
  13577. },
  13578. ]
  13579. ))
  13580. characterMakers.push(() => makeCharacter(
  13581. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13582. {
  13583. taurFront: {
  13584. height: math.unit(6, "feet"),
  13585. weight: math.unit(200, "lb"),
  13586. name: "Taur (Front)",
  13587. image: {
  13588. source: "./media/characters/scales/taur-front.svg",
  13589. extra: 1,
  13590. bottom: 0.05
  13591. }
  13592. },
  13593. taurBack: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(200, "lb"),
  13596. name: "Taur (Back)",
  13597. image: {
  13598. source: "./media/characters/scales/taur-back.svg",
  13599. extra: 1,
  13600. bottom: 0.08
  13601. }
  13602. },
  13603. anthro: {
  13604. height: math.unit(6 * 7 / 12, "feet"),
  13605. weight: math.unit(100, "lb"),
  13606. name: "Anthro",
  13607. image: {
  13608. source: "./media/characters/scales/anthro.svg",
  13609. extra: 1,
  13610. bottom: 0.06
  13611. }
  13612. },
  13613. },
  13614. [
  13615. {
  13616. name: "Normal",
  13617. height: math.unit(12, "feet"),
  13618. default: true
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(150, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/koragos/front.svg",
  13631. extra: 841 / 794,
  13632. bottom: 0.035
  13633. }
  13634. },
  13635. back: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Back",
  13639. image: {
  13640. source: "./media/characters/koragos/back.svg",
  13641. extra: 841 / 810,
  13642. bottom: 0.022
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(6 + 11 / 12, "feet"),
  13650. default: true
  13651. },
  13652. {
  13653. name: "Macro",
  13654. height: math.unit(490, "feet")
  13655. },
  13656. {
  13657. name: "Megamacro",
  13658. height: math.unit(10, "miles")
  13659. },
  13660. {
  13661. name: "Gigamacro",
  13662. height: math.unit(50, "miles")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(250, "lb"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/xylrem/front.svg",
  13675. extra: 3323 / 3050,
  13676. bottom: 0.065
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Micro",
  13683. height: math.unit(4, "feet")
  13684. },
  13685. {
  13686. name: "Normal",
  13687. height: math.unit(16, "feet"),
  13688. default: true
  13689. },
  13690. {
  13691. name: "Macro",
  13692. height: math.unit(2720, "feet")
  13693. },
  13694. {
  13695. name: "Megamacro",
  13696. height: math.unit(25000, "miles")
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(8, "feet"),
  13705. weight: math.unit(250, "kg"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/ikideru/front.svg",
  13709. extra: 930 / 870,
  13710. bottom: 0.087
  13711. }
  13712. },
  13713. back: {
  13714. height: math.unit(8, "feet"),
  13715. weight: math.unit(250, "kg"),
  13716. name: "Back",
  13717. image: {
  13718. source: "./media/characters/ikideru/back.svg",
  13719. extra: 919 / 852,
  13720. bottom: 0.055
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Rare",
  13727. height: math.unit(8, "feet"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Playful Loom",
  13732. height: math.unit(80, "feet")
  13733. },
  13734. {
  13735. name: "City Leaner",
  13736. height: math.unit(230, "feet")
  13737. },
  13738. {
  13739. name: "Megamacro",
  13740. height: math.unit(2500, "feet")
  13741. },
  13742. {
  13743. name: "Gigamacro",
  13744. height: math.unit(26400, "feet")
  13745. },
  13746. {
  13747. name: "Tectonic Shifter",
  13748. height: math.unit(1.7, "megameters")
  13749. },
  13750. {
  13751. name: "Planet Carer",
  13752. height: math.unit(21, "megameters")
  13753. },
  13754. {
  13755. name: "God",
  13756. height: math.unit(11157.22, "parsecs")
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(6, "feet"),
  13765. weight: math.unit(120, "lb"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/neo/front.svg"
  13769. }
  13770. },
  13771. },
  13772. [
  13773. {
  13774. name: "Micro",
  13775. height: math.unit(2, "inches"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Human Size",
  13780. height: math.unit(5 + 8 / 12, "feet")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(13 + 10 / 12, "feet"),
  13789. weight: math.unit(5320, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/chauncey-chantz/front.svg",
  13793. extra: 1587 / 1435,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(13 + 10 / 12, "feet"),
  13802. default: true
  13803. },
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(45, "feet")
  13807. },
  13808. {
  13809. name: "Megamacro",
  13810. height: math.unit(250, "miles")
  13811. },
  13812. {
  13813. name: "Planetary",
  13814. height: math.unit(10000, "miles")
  13815. },
  13816. {
  13817. name: "Galactic",
  13818. height: math.unit(40000, "parsecs")
  13819. },
  13820. {
  13821. name: "Universal",
  13822. height: math.unit(1, "yottameter")
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/epifox/front.svg",
  13835. extra: 1,
  13836. bottom: 0.075
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Micro",
  13843. height: math.unit(6, "inches")
  13844. },
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(12, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Macro",
  13852. height: math.unit(3810, "feet")
  13853. },
  13854. {
  13855. name: "Megamacro",
  13856. height: math.unit(500, "miles")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(1.8796, "m"),
  13865. weight: math.unit(230, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/colin-t/front.svg",
  13869. extra: 1272 / 1193,
  13870. bottom: 0.07
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Micro",
  13877. height: math.unit(0.571, "meters")
  13878. },
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(1.8796, "meters"),
  13882. default: true
  13883. },
  13884. {
  13885. name: "Tall",
  13886. height: math.unit(4, "meters")
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(67.241, "meters")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(371.856, "meters")
  13895. },
  13896. {
  13897. name: "Planetary",
  13898. height: math.unit(12631.5689, "km")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(1.85, "meters"),
  13907. weight: math.unit(80, "kg"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/matvei/front.svg",
  13911. extra: 456/447,
  13912. bottom: 8/464
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(1.85, "meters"),
  13917. weight: math.unit(80, "kg"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/matvei/back.svg",
  13921. extra: 434/427,
  13922. bottom: 11/445
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(1.85, "meters"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(5 + 9 / 12, "feet"),
  13939. weight: math.unit(70, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/quincy/front.svg",
  13943. extra: 3041 / 2751
  13944. }
  13945. },
  13946. back: {
  13947. height: math.unit(5 + 9 / 12, "feet"),
  13948. weight: math.unit(70, "lb"),
  13949. name: "Back",
  13950. image: {
  13951. source: "./media/characters/quincy/back.svg",
  13952. extra: 3041 / 2751
  13953. }
  13954. },
  13955. flying: {
  13956. height: math.unit(5 + 4 / 12, "feet"),
  13957. weight: math.unit(70, "lb"),
  13958. name: "Flying",
  13959. image: {
  13960. source: "./media/characters/quincy/flying.svg",
  13961. extra: 1044 / 930
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Micro",
  13968. height: math.unit(3, "cm")
  13969. },
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(5 + 9 / 12, "feet")
  13973. },
  13974. {
  13975. name: "Macro",
  13976. height: math.unit(200, "meters"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Megamacro",
  13981. height: math.unit(1000, "meters")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(3 + 11/12, "feet"),
  13990. weight: math.unit(50, "lb"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/vanrel/front.svg",
  13994. extra: 1104/949,
  13995. bottom: 52/1156
  13996. }
  13997. },
  13998. back: {
  13999. height: math.unit(3 + 11/12, "feet"),
  14000. weight: math.unit(50, "lb"),
  14001. name: "Back",
  14002. image: {
  14003. source: "./media/characters/vanrel/back.svg",
  14004. extra: 1119/976,
  14005. bottom: 37/1156
  14006. }
  14007. },
  14008. tome: {
  14009. height: math.unit(1.35, "feet"),
  14010. weight: math.unit(10, "lb"),
  14011. name: "Vanrel's Tome",
  14012. rename: true,
  14013. image: {
  14014. source: "./media/characters/vanrel/tome.svg"
  14015. }
  14016. },
  14017. beans: {
  14018. height: math.unit(0.89, "feet"),
  14019. name: "Beans",
  14020. image: {
  14021. source: "./media/characters/vanrel/beans.svg"
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Normal",
  14028. height: math.unit(3 + 11/12, "feet"),
  14029. default: true
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(7 + 5 / 12, "feet"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/kuiper-vanrel/front.svg",
  14041. extra: 1219/1169,
  14042. bottom: 69/1288
  14043. }
  14044. },
  14045. back: {
  14046. height: math.unit(7 + 5 / 12, "feet"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/kuiper-vanrel/back.svg",
  14050. extra: 1236/1193,
  14051. bottom: 27/1263
  14052. }
  14053. },
  14054. foot: {
  14055. height: math.unit(0.55, "meters"),
  14056. name: "Foot",
  14057. image: {
  14058. source: "./media/characters/kuiper-vanrel/foot.svg",
  14059. }
  14060. },
  14061. battle: {
  14062. height: math.unit(6.824, "feet"),
  14063. name: "Battle",
  14064. image: {
  14065. source: "./media/characters/kuiper-vanrel/battle.svg",
  14066. extra: 1466 / 1327,
  14067. bottom: 29 / 1492.5
  14068. }
  14069. },
  14070. meerkui: {
  14071. height: math.unit(18, "inches"),
  14072. name: "Meerkui",
  14073. image: {
  14074. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  14075. extra: 1354/1289,
  14076. bottom: 69/1423
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(7 + 5 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(8 + 5 / 12, "feet"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/keset-vanrel/front.svg",
  14096. extra: 1231/1148,
  14097. bottom: 82/1313
  14098. }
  14099. },
  14100. back: {
  14101. height: math.unit(8 + 5 / 12, "feet"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/keset-vanrel/back.svg",
  14105. extra: 1240/1174,
  14106. bottom: 33/1273
  14107. }
  14108. },
  14109. hand: {
  14110. height: math.unit(0.6, "meters"),
  14111. name: "Hand",
  14112. image: {
  14113. source: "./media/characters/keset-vanrel/hand.svg"
  14114. }
  14115. },
  14116. foot: {
  14117. height: math.unit(0.94978, "meters"),
  14118. name: "Foot",
  14119. image: {
  14120. source: "./media/characters/keset-vanrel/foot.svg"
  14121. }
  14122. },
  14123. battle: {
  14124. height: math.unit(7.408, "feet"),
  14125. name: "Battle",
  14126. image: {
  14127. source: "./media/characters/keset-vanrel/battle.svg",
  14128. extra: 1890 / 1386,
  14129. bottom: 73.28 / 1970
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(8 + 5 / 12, "feet"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/neos/front.svg",
  14150. extra: 1696 / 992,
  14151. bottom: 0.14
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(54, "cm"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Macro",
  14163. height: math.unit(100, "m")
  14164. },
  14165. {
  14166. name: "Megamacro",
  14167. height: math.unit(10, "km")
  14168. },
  14169. {
  14170. name: "Megamacro+",
  14171. height: math.unit(100, "km")
  14172. },
  14173. {
  14174. name: "Gigamacro",
  14175. height: math.unit(100, "Mm")
  14176. },
  14177. {
  14178. name: "Teramacro",
  14179. height: math.unit(100, "Gm")
  14180. },
  14181. {
  14182. name: "Examacro",
  14183. height: math.unit(100, "Em")
  14184. },
  14185. {
  14186. name: "Godly",
  14187. height: math.unit(10000, "Ym")
  14188. },
  14189. {
  14190. name: "Beyond Godly",
  14191. height: math.unit(25, "multiverses")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14197. {
  14198. fluide_tame: {
  14199. height: math.unit(5, "feet"),
  14200. name: "Tame",
  14201. image: {
  14202. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14203. extra: 1655/1574,
  14204. bottom: 231/1886
  14205. },
  14206. form: "fluide",
  14207. default: true
  14208. },
  14209. fluide_nude: {
  14210. height: math.unit(5, "feet"),
  14211. name: "Nude",
  14212. image: {
  14213. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14214. extra: 1655/1574,
  14215. bottom: 231/1886
  14216. },
  14217. form: "fluide",
  14218. },
  14219. male_tame: {
  14220. height: math.unit(5, "feet"),
  14221. name: "Tame",
  14222. image: {
  14223. source: "./media/characters/sammy-mouse/male-tame.svg",
  14224. extra: 1655/1574,
  14225. bottom: 231/1886
  14226. },
  14227. form: "male",
  14228. default: true
  14229. },
  14230. male_nude: {
  14231. height: math.unit(5, "feet"),
  14232. name: "Nude",
  14233. image: {
  14234. source: "./media/characters/sammy-mouse/male-nude.svg",
  14235. extra: 1655/1574,
  14236. bottom: 231/1886
  14237. },
  14238. form: "male",
  14239. },
  14240. female_nude: {
  14241. height: math.unit(5, "feet"),
  14242. name: "Nude",
  14243. image: {
  14244. source: "./media/characters/sammy-mouse/female-nude.svg",
  14245. extra: 1655/1574,
  14246. bottom: 231/1886
  14247. },
  14248. form: "female",
  14249. default: true
  14250. },
  14251. mouth: {
  14252. height: math.unit(0.32, "feet"),
  14253. name: "Mouth",
  14254. image: {
  14255. source: "./media/characters/sammy-mouse/mouth.svg"
  14256. },
  14257. allForms: true
  14258. },
  14259. paw: {
  14260. height: math.unit(0.42, "feet"),
  14261. name: "Paw",
  14262. image: {
  14263. source: "./media/characters/sammy-mouse/paw.svg"
  14264. },
  14265. allForms: true
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "Micro",
  14271. height: math.unit(5, "inches"),
  14272. allForms: true
  14273. },
  14274. {
  14275. name: "Normal",
  14276. height: math.unit(5, "feet"),
  14277. default: true,
  14278. allForms: true
  14279. },
  14280. {
  14281. name: "Macro",
  14282. height: math.unit(60, "feet"),
  14283. allForms: true
  14284. },
  14285. ],
  14286. {
  14287. "fluide": {
  14288. name: "Fluide",
  14289. default: true
  14290. },
  14291. "male": {
  14292. name: "Male",
  14293. },
  14294. "female": {
  14295. name: "Female",
  14296. },
  14297. }
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(4, "feet"),
  14304. weight: math.unit(50, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/kole/front.svg",
  14308. extra: 1423 / 1303,
  14309. bottom: 0.025
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(4, "feet"),
  14314. weight: math.unit(50, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/kole/back.svg",
  14318. extra: 1426 / 1280,
  14319. bottom: 0.02
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(4, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(2.5, "feet"),
  14336. weight: math.unit(32, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/rufran/front.svg",
  14340. extra: 1313/885,
  14341. bottom: 94/1407
  14342. }
  14343. },
  14344. side: {
  14345. height: math.unit(2.5, "feet"),
  14346. weight: math.unit(32, "lb"),
  14347. name: "Side",
  14348. image: {
  14349. source: "./media/characters/rufran/side.svg",
  14350. extra: 1109/852,
  14351. bottom: 118/1227
  14352. }
  14353. },
  14354. back: {
  14355. height: math.unit(2.5, "feet"),
  14356. weight: math.unit(32, "lb"),
  14357. name: "Back",
  14358. image: {
  14359. source: "./media/characters/rufran/back.svg",
  14360. extra: 1280/878,
  14361. bottom: 131/1411
  14362. }
  14363. },
  14364. mouth: {
  14365. height: math.unit(1.13, "feet"),
  14366. name: "Mouth",
  14367. image: {
  14368. source: "./media/characters/rufran/mouth.svg"
  14369. }
  14370. },
  14371. foot: {
  14372. height: math.unit(1.33, "feet"),
  14373. name: "Foot",
  14374. image: {
  14375. source: "./media/characters/rufran/foot.svg"
  14376. }
  14377. },
  14378. koboldFront: {
  14379. height: math.unit(2 + 6 / 12, "feet"),
  14380. weight: math.unit(20, "lb"),
  14381. name: "Front (Kobold)",
  14382. image: {
  14383. source: "./media/characters/rufran/kobold-front.svg",
  14384. extra: 2041 / 1839,
  14385. bottom: 0.055
  14386. }
  14387. },
  14388. koboldBack: {
  14389. height: math.unit(2 + 6 / 12, "feet"),
  14390. weight: math.unit(20, "lb"),
  14391. name: "Back (Kobold)",
  14392. image: {
  14393. source: "./media/characters/rufran/kobold-back.svg",
  14394. extra: 2054 / 1839,
  14395. bottom: 0.01
  14396. }
  14397. },
  14398. koboldHand: {
  14399. height: math.unit(0.2166, "meters"),
  14400. name: "Hand (Kobold)",
  14401. image: {
  14402. source: "./media/characters/rufran/kobold-hand.svg"
  14403. }
  14404. },
  14405. koboldFoot: {
  14406. height: math.unit(0.185, "meters"),
  14407. name: "Foot (Kobold)",
  14408. image: {
  14409. source: "./media/characters/rufran/kobold-foot.svg"
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Micro",
  14416. height: math.unit(1, "inch")
  14417. },
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(2 + 6 / 12, "feet"),
  14421. default: true
  14422. },
  14423. {
  14424. name: "Big",
  14425. height: math.unit(60, "feet")
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(325, "feet")
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(0.3, "meters"),
  14438. weight: math.unit(3.5, "kg"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/chip/front.svg",
  14442. extra: 748 / 674
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Micro",
  14449. height: math.unit(1, "inch"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14456. {
  14457. side: {
  14458. height: math.unit(2.3, "meters"),
  14459. weight: math.unit(3500, "lb"),
  14460. name: "Side",
  14461. image: {
  14462. source: "./media/characters/torvid/side.svg",
  14463. extra: 1972 / 722,
  14464. bottom: 0.035
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(2.3, "meters"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14478. {
  14479. front: {
  14480. height: math.unit(2, "meters"),
  14481. weight: math.unit(150.5, "kg"),
  14482. name: "Front",
  14483. image: {
  14484. source: "./media/characters/susan/front.svg",
  14485. extra: 693 / 635,
  14486. bottom: 0.05
  14487. }
  14488. },
  14489. },
  14490. [
  14491. {
  14492. name: "Megamacro",
  14493. height: math.unit(505, "miles"),
  14494. default: true
  14495. },
  14496. ]
  14497. ))
  14498. characterMakers.push(() => makeCharacter(
  14499. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14500. {
  14501. front: {
  14502. height: math.unit(6, "feet"),
  14503. weight: math.unit(150, "lb"),
  14504. name: "Front",
  14505. image: {
  14506. source: "./media/characters/raindrops/front.svg",
  14507. extra: 2655 / 2461,
  14508. bottom: 49 / 2705
  14509. }
  14510. },
  14511. back: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(150, "lb"),
  14514. name: "Back",
  14515. image: {
  14516. source: "./media/characters/raindrops/back.svg",
  14517. extra: 2574 / 2400,
  14518. bottom: 65 / 2634
  14519. }
  14520. },
  14521. },
  14522. [
  14523. {
  14524. name: "Micro",
  14525. height: math.unit(6, "inches")
  14526. },
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6 + 2 / 12, "feet")
  14530. },
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(131, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Megamacro",
  14538. height: math.unit(15, "miles")
  14539. },
  14540. {
  14541. name: "Gigamacro",
  14542. height: math.unit(4000, "miles")
  14543. },
  14544. {
  14545. name: "Teramacro",
  14546. height: math.unit(315000, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14552. {
  14553. normal_front: {
  14554. height: math.unit(9 + 2/12, "feet"),
  14555. weight: math.unit(325, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/tezwa/normal-front.svg",
  14559. extra: 770/714,
  14560. bottom: 32/802
  14561. },
  14562. form: "normal",
  14563. },
  14564. normal_paw: {
  14565. height: math.unit(2.2, "feet"),
  14566. name: "Paw",
  14567. image: {
  14568. source: "./media/characters/tezwa/paw.svg"
  14569. },
  14570. form: "normal",
  14571. },
  14572. muscled_front: {
  14573. height: math.unit(916 + 8/12, "feet"),
  14574. weight: math.unit(500000, "tons"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/tezwa/muscled-front.svg",
  14578. extra: 1840/1697,
  14579. bottom: 29/1869
  14580. },
  14581. form: "muscled",
  14582. },
  14583. muscled_paw: {
  14584. height: math.unit(200, "feet"),
  14585. name: "Paw",
  14586. image: {
  14587. source: "./media/characters/tezwa/paw.svg"
  14588. },
  14589. form: "muscled",
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(9 + 2 / 12, "feet"),
  14596. default: true,
  14597. form: "normal"
  14598. },
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(916 + 8/12, "feet"),
  14602. default: true,
  14603. form: "muscled"
  14604. },
  14605. ],
  14606. {
  14607. "normal": {
  14608. name: "Normal",
  14609. default: true
  14610. },
  14611. "muscled": {
  14612. name: "Muscled",
  14613. },
  14614. }
  14615. ))
  14616. characterMakers.push(() => makeCharacter(
  14617. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14618. {
  14619. front: {
  14620. height: math.unit(58, "feet"),
  14621. weight: math.unit(89000, "lb"),
  14622. name: "Front",
  14623. image: {
  14624. source: "./media/characters/typhus/front.svg",
  14625. extra: 816 / 800,
  14626. bottom: 0.065
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Macro",
  14633. height: math.unit(58, "feet"),
  14634. default: true
  14635. },
  14636. ]
  14637. ))
  14638. characterMakers.push(() => makeCharacter(
  14639. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14640. {
  14641. front: {
  14642. height: math.unit(12, "feet"),
  14643. weight: math.unit(6, "tonnes"),
  14644. name: "Front",
  14645. image: {
  14646. source: "./media/characters/lyra-von-wulf/front.svg",
  14647. extra: 1,
  14648. bottom: 0.10
  14649. }
  14650. },
  14651. frontMecha: {
  14652. height: math.unit(12, "feet"),
  14653. weight: math.unit(12, "tonnes"),
  14654. name: "Front (Mecha)",
  14655. image: {
  14656. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14657. extra: 1,
  14658. bottom: 0.042
  14659. }
  14660. },
  14661. maw: {
  14662. height: math.unit(2.2, "feet"),
  14663. name: "Maw",
  14664. image: {
  14665. source: "./media/characters/lyra-von-wulf/maw.svg"
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(12, "feet"),
  14673. default: true
  14674. },
  14675. {
  14676. name: "Classic",
  14677. height: math.unit(50, "feet")
  14678. },
  14679. {
  14680. name: "Macro",
  14681. height: math.unit(500, "feet")
  14682. },
  14683. {
  14684. name: "Megamacro",
  14685. height: math.unit(1, "mile")
  14686. },
  14687. {
  14688. name: "Gigamacro",
  14689. height: math.unit(400, "miles")
  14690. },
  14691. {
  14692. name: "Teramacro",
  14693. height: math.unit(22000, "miles")
  14694. },
  14695. {
  14696. name: "Solarmacro",
  14697. height: math.unit(8600000, "miles")
  14698. },
  14699. {
  14700. name: "Galactic",
  14701. height: math.unit(1057000, "lightyears")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6 + 10 / 12, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/dixon/front.svg",
  14714. extra: 3361 / 3209,
  14715. bottom: 0.01
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(6 + 10 / 12, "feet"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Big",
  14727. height: math.unit(12, "meters")
  14728. },
  14729. {
  14730. name: "Macro",
  14731. height: math.unit(500, "meters")
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(2, "km")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14741. {
  14742. kingCheetah_front: {
  14743. height: math.unit(1.85, "meters"),
  14744. weight: math.unit(68, "kg"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/kauko/king-cheetah-front.svg",
  14748. extra: 1007/972,
  14749. bottom: 35/1042
  14750. },
  14751. form: "king-cheetah",
  14752. default: true
  14753. },
  14754. kingCheetah_back: {
  14755. height: math.unit(1.85, "meters"),
  14756. weight: math.unit(68, "kg"),
  14757. name: "Back",
  14758. image: {
  14759. source: "./media/characters/kauko/king-cheetah-back.svg",
  14760. extra: 1015/980,
  14761. bottom: 11/1026
  14762. },
  14763. form: "king-cheetah",
  14764. },
  14765. kingCheetah_hand: {
  14766. height: math.unit(0.23, "meters"),
  14767. name: "Hand",
  14768. image: {
  14769. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14770. },
  14771. form: "king-cheetah",
  14772. },
  14773. kingCheetah_paw: {
  14774. height: math.unit(0.38, "meters"),
  14775. name: "Paw",
  14776. image: {
  14777. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14778. },
  14779. form: "king-cheetah",
  14780. },
  14781. kingCheetah_nape: {
  14782. height: math.unit(0.23, "meters"),
  14783. name: "Nape",
  14784. image: {
  14785. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14786. },
  14787. form: "king-cheetah",
  14788. },
  14789. wolf_front: {
  14790. height: math.unit(1.88, "meters"),
  14791. weight: math.unit(74, "kg"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/kauko/wolf-front.svg",
  14795. extra: 952/908,
  14796. bottom: 64/1016
  14797. },
  14798. form: "wolf",
  14799. default: true
  14800. },
  14801. wolf_dressed: {
  14802. height: math.unit(1.88, "meters"),
  14803. weight: math.unit(74, "kg"),
  14804. name: "Dressed",
  14805. image: {
  14806. source: "./media/characters/kauko/wolf-dressed.svg",
  14807. extra: 963/916,
  14808. bottom: 101/1064
  14809. },
  14810. form: "wolf",
  14811. },
  14812. wolf_hand: {
  14813. height: math.unit(0.3, "meters"),
  14814. name: "Hand",
  14815. image: {
  14816. source: "./media/characters/kauko/wolf-hand.svg"
  14817. },
  14818. form: "wolf",
  14819. },
  14820. wolf_paw: {
  14821. height: math.unit(0.407, "meters"),
  14822. name: "Paw",
  14823. image: {
  14824. source: "./media/characters/kauko/wolf-paw.svg"
  14825. },
  14826. form: "wolf",
  14827. },
  14828. wolf_nape: {
  14829. height: math.unit(0.25, "meters"),
  14830. name: "Nape",
  14831. image: {
  14832. source: "./media/characters/kauko/wolf-nape.svg"
  14833. },
  14834. form: "wolf",
  14835. },
  14836. },
  14837. [
  14838. {
  14839. name: "Normal",
  14840. height: math.unit(1.85, "m"),
  14841. default: true,
  14842. form: "king-cheetah"
  14843. },
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(1.88, "m"),
  14847. default: true,
  14848. form: "wolf"
  14849. },
  14850. ],
  14851. {
  14852. "king-cheetah": {
  14853. name: "King Cheetah",
  14854. default: true
  14855. },
  14856. "wolf": {
  14857. name: "Wolf",
  14858. },
  14859. }
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14863. {
  14864. frontSfw: {
  14865. height: math.unit(5, "meters"),
  14866. weight: math.unit(4250, "lb"),
  14867. name: "Front",
  14868. image: {
  14869. source: "./media/characters/varg/front-sfw.svg",
  14870. extra: 1103/1010,
  14871. bottom: 50/1153
  14872. },
  14873. form: "anthro",
  14874. default: true
  14875. },
  14876. backSfw: {
  14877. height: math.unit(5, "meters"),
  14878. weight: math.unit(4250, "lb"),
  14879. name: "Back",
  14880. image: {
  14881. source: "./media/characters/varg/back-sfw.svg",
  14882. extra: 1038/1022,
  14883. bottom: 36/1074
  14884. },
  14885. form: "anthro"
  14886. },
  14887. frontNsfw: {
  14888. height: math.unit(5, "meters"),
  14889. weight: math.unit(4250, "lb"),
  14890. name: "Front (NSFW)",
  14891. image: {
  14892. source: "./media/characters/varg/front-nsfw.svg",
  14893. extra: 1103/1010,
  14894. bottom: 50/1153
  14895. },
  14896. form: "anthro"
  14897. },
  14898. sheath: {
  14899. height: math.unit(3.8, "feet"),
  14900. weight: math.unit(90, "kilograms"),
  14901. name: "Sheath",
  14902. image: {
  14903. source: "./media/characters/varg/sheath.svg"
  14904. },
  14905. form: "anthro"
  14906. },
  14907. dick: {
  14908. height: math.unit(4.6, "feet"),
  14909. weight: math.unit(451, "kilograms"),
  14910. name: "Dick",
  14911. image: {
  14912. source: "./media/characters/varg/dick.svg"
  14913. },
  14914. form: "anthro"
  14915. },
  14916. feralSfw: {
  14917. height: math.unit(5, "meters"),
  14918. weight: math.unit(100000, "lb"),
  14919. name: "Side",
  14920. image: {
  14921. source: "./media/characters/varg/feral-sfw.svg",
  14922. extra: 1065/511,
  14923. bottom: 211/1276
  14924. },
  14925. form: "feral",
  14926. default: true
  14927. },
  14928. feralNsfw: {
  14929. height: math.unit(5, "meters"),
  14930. weight: math.unit(100000, "lb"),
  14931. name: "Side (NSFW)",
  14932. image: {
  14933. source: "./media/characters/varg/feral-nsfw.svg",
  14934. extra: 1065/511,
  14935. bottom: 211/1276
  14936. },
  14937. form: "feral",
  14938. },
  14939. feralSheath: {
  14940. height: math.unit(9.8, "feet"),
  14941. weight: math.unit(2000, "kilograms"),
  14942. name: "Sheath",
  14943. image: {
  14944. source: "./media/characters/varg/sheath.svg"
  14945. },
  14946. form: "feral"
  14947. },
  14948. feralDick: {
  14949. height: math.unit(13.11, "feet"),
  14950. weight: math.unit(10440, "kilograms"),
  14951. name: "Dick",
  14952. image: {
  14953. source: "./media/characters/varg/dick.svg"
  14954. },
  14955. form: "feral"
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(5, "meters"),
  14962. form: "anthro"
  14963. },
  14964. {
  14965. name: "Macro",
  14966. height: math.unit(200, "meters"),
  14967. form: "anthro"
  14968. },
  14969. {
  14970. name: "Megamacro",
  14971. height: math.unit(20, "kilometers"),
  14972. form: "anthro"
  14973. },
  14974. {
  14975. name: "True Size",
  14976. height: math.unit(211, "km"),
  14977. form: "anthro",
  14978. default: true
  14979. },
  14980. {
  14981. name: "Gigamacro",
  14982. height: math.unit(1000, "km"),
  14983. form: "anthro"
  14984. },
  14985. {
  14986. name: "Gigamacro+",
  14987. height: math.unit(8000, "km"),
  14988. form: "anthro"
  14989. },
  14990. {
  14991. name: "Teramacro",
  14992. height: math.unit(1000000, "km"),
  14993. form: "anthro"
  14994. },
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(5, "meters"),
  14998. form: "feral"
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(200, "meters"),
  15003. form: "feral"
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(20, "kilometers"),
  15008. form: "feral"
  15009. },
  15010. {
  15011. name: "True Size",
  15012. height: math.unit(211, "km"),
  15013. form: "feral",
  15014. default: true
  15015. },
  15016. {
  15017. name: "Gigamacro",
  15018. height: math.unit(1000, "km"),
  15019. form: "feral"
  15020. },
  15021. {
  15022. name: "Gigamacro+",
  15023. height: math.unit(8000, "km"),
  15024. form: "feral"
  15025. },
  15026. {
  15027. name: "Teramacro",
  15028. height: math.unit(1000000, "km"),
  15029. form: "feral"
  15030. },
  15031. ],
  15032. {
  15033. "anthro": {
  15034. name: "Anthro",
  15035. default: true
  15036. },
  15037. "feral": {
  15038. name: "Feral",
  15039. },
  15040. }
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  15044. {
  15045. front: {
  15046. height: math.unit(7 + 7 / 12, "feet"),
  15047. weight: math.unit(267, "lb"),
  15048. name: "Front",
  15049. image: {
  15050. source: "./media/characters/dayza/front.svg",
  15051. extra: 1262 / 1200,
  15052. bottom: 0.035
  15053. }
  15054. },
  15055. side: {
  15056. height: math.unit(7 + 7 / 12, "feet"),
  15057. weight: math.unit(267, "lb"),
  15058. name: "Side",
  15059. image: {
  15060. source: "./media/characters/dayza/side.svg",
  15061. extra: 1295 / 1245,
  15062. bottom: 0.05
  15063. }
  15064. },
  15065. back: {
  15066. height: math.unit(7 + 7 / 12, "feet"),
  15067. weight: math.unit(267, "lb"),
  15068. name: "Back",
  15069. image: {
  15070. source: "./media/characters/dayza/back.svg",
  15071. extra: 1241 / 1170
  15072. }
  15073. },
  15074. },
  15075. [
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(7 + 7 / 12, "feet"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Macro",
  15083. height: math.unit(155, "feet")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(6 + 5 / 12, "feet"),
  15092. weight: math.unit(160, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/xanthos/front.svg",
  15096. extra: 1,
  15097. bottom: 0.04
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(6 + 5 / 12, "feet"),
  15102. weight: math.unit(160, "lb"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/xanthos/back.svg",
  15106. extra: 1,
  15107. bottom: 0.03
  15108. }
  15109. },
  15110. hand: {
  15111. height: math.unit(0.928, "feet"),
  15112. name: "Hand",
  15113. image: {
  15114. source: "./media/characters/xanthos/hand.svg"
  15115. }
  15116. },
  15117. foot: {
  15118. height: math.unit(1.286, "feet"),
  15119. name: "Foot",
  15120. image: {
  15121. source: "./media/characters/xanthos/foot.svg"
  15122. }
  15123. },
  15124. },
  15125. [
  15126. {
  15127. name: "Normal",
  15128. height: math.unit(6 + 5 / 12, "feet"),
  15129. default: true
  15130. },
  15131. {
  15132. name: "Normal+",
  15133. height: math.unit(6, "meters")
  15134. },
  15135. {
  15136. name: "Macro",
  15137. height: math.unit(40, "feet")
  15138. },
  15139. {
  15140. name: "Macro+",
  15141. height: math.unit(200, "meters")
  15142. },
  15143. {
  15144. name: "Megamacro",
  15145. height: math.unit(20, "km")
  15146. },
  15147. {
  15148. name: "Megamacro+",
  15149. height: math.unit(100, "km")
  15150. },
  15151. {
  15152. name: "Gigamacro",
  15153. height: math.unit(200, "megameters")
  15154. },
  15155. {
  15156. name: "Gigamacro+",
  15157. height: math.unit(1.5, "gigameters")
  15158. },
  15159. ]
  15160. ))
  15161. characterMakers.push(() => makeCharacter(
  15162. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15163. {
  15164. front: {
  15165. height: math.unit(6 + 3 / 12, "feet"),
  15166. weight: math.unit(215, "lb"),
  15167. name: "Front",
  15168. image: {
  15169. source: "./media/characters/grynn/front.svg",
  15170. extra: 4627 / 4209,
  15171. bottom: 0.047
  15172. }
  15173. },
  15174. },
  15175. [
  15176. {
  15177. name: "Micro",
  15178. height: math.unit(6, "inches")
  15179. },
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(6 + 3 / 12, "feet"),
  15183. default: true
  15184. },
  15185. {
  15186. name: "Big",
  15187. height: math.unit(104, "feet")
  15188. },
  15189. {
  15190. name: "Macro",
  15191. height: math.unit(944, "feet")
  15192. },
  15193. {
  15194. name: "Macro+",
  15195. height: math.unit(9480, "feet")
  15196. },
  15197. {
  15198. name: "Megamacro",
  15199. height: math.unit(78752, "feet")
  15200. },
  15201. {
  15202. name: "Megamacro+",
  15203. height: math.unit(630128, "feet")
  15204. },
  15205. {
  15206. name: "Megamacro++",
  15207. height: math.unit(3150695, "feet")
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(7 + 5 / 12, "feet"),
  15216. weight: math.unit(450, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/mocha-aura/front.svg",
  15220. extra: 1907 / 1817,
  15221. bottom: 0.04
  15222. }
  15223. },
  15224. back: {
  15225. height: math.unit(7 + 5 / 12, "feet"),
  15226. weight: math.unit(450, "lb"),
  15227. name: "Back",
  15228. image: {
  15229. source: "./media/characters/mocha-aura/back.svg",
  15230. extra: 1900 / 1825,
  15231. bottom: 0.045
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Nano",
  15238. height: math.unit(1, "nm")
  15239. },
  15240. {
  15241. name: "Megamicro",
  15242. height: math.unit(1, "mm")
  15243. },
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(3, "inches")
  15247. },
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(7 + 5 / 12, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(30, "feet")
  15256. },
  15257. {
  15258. name: "Megamacro",
  15259. height: math.unit(3500, "feet")
  15260. },
  15261. {
  15262. name: "Teramacro",
  15263. height: math.unit(500000, "miles")
  15264. },
  15265. {
  15266. name: "Petamacro",
  15267. height: math.unit(50000000000000000, "parsecs")
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(6, "feet"),
  15276. weight: math.unit(150, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/ilisha-devya/front.svg",
  15280. extra: 1053/1049,
  15281. bottom: 270/1323
  15282. }
  15283. },
  15284. back: {
  15285. height: math.unit(6, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Back",
  15288. image: {
  15289. source: "./media/characters/ilisha-devya/back.svg",
  15290. extra: 1131/1128,
  15291. bottom: 39/1170
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(500, "feet"),
  15299. default: true
  15300. },
  15301. {
  15302. name: "Megamacro",
  15303. height: math.unit(10, "miles")
  15304. },
  15305. {
  15306. name: "Gigamacro",
  15307. height: math.unit(100000, "miles")
  15308. },
  15309. {
  15310. name: "Examacro",
  15311. height: math.unit(1e9, "lightyears")
  15312. },
  15313. {
  15314. name: "Omniversal",
  15315. height: math.unit(1e33, "lightyears")
  15316. },
  15317. {
  15318. name: "Beyond Infinite",
  15319. height: math.unit(1e100, "lightyears")
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15325. {
  15326. Side: {
  15327. height: math.unit(6, "feet"),
  15328. weight: math.unit(150, "lb"),
  15329. name: "Side",
  15330. image: {
  15331. source: "./media/characters/mira/side.svg",
  15332. extra: 900 / 799,
  15333. bottom: 0.02
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Human Size",
  15340. height: math.unit(6, "feet")
  15341. },
  15342. {
  15343. name: "Macro",
  15344. height: math.unit(100, "feet"),
  15345. default: true
  15346. },
  15347. {
  15348. name: "Megamacro",
  15349. height: math.unit(10, "miles")
  15350. },
  15351. {
  15352. name: "Gigamacro",
  15353. height: math.unit(25000, "miles")
  15354. },
  15355. {
  15356. name: "Teramacro",
  15357. height: math.unit(300, "AU")
  15358. },
  15359. {
  15360. name: "Full Size",
  15361. height: math.unit(4.5e10, "lightyears")
  15362. },
  15363. ]
  15364. ))
  15365. characterMakers.push(() => makeCharacter(
  15366. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15367. {
  15368. front: {
  15369. height: math.unit(6, "feet"),
  15370. weight: math.unit(150, "lb"),
  15371. name: "Front",
  15372. image: {
  15373. source: "./media/characters/holly/front.svg",
  15374. extra: 639 / 606
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/holly/back.svg",
  15383. extra: 623 / 598
  15384. }
  15385. },
  15386. frontWorking: {
  15387. height: math.unit(6, "feet"),
  15388. weight: math.unit(150, "lb"),
  15389. name: "Front (Working)",
  15390. image: {
  15391. source: "./media/characters/holly/front-working.svg",
  15392. extra: 607 / 577,
  15393. bottom: 0.048
  15394. }
  15395. },
  15396. },
  15397. [
  15398. {
  15399. name: "Normal",
  15400. height: math.unit(12 + 3 / 12, "feet"),
  15401. default: true
  15402. },
  15403. ]
  15404. ))
  15405. characterMakers.push(() => makeCharacter(
  15406. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15407. {
  15408. front: {
  15409. height: math.unit(6, "feet"),
  15410. weight: math.unit(150, "lb"),
  15411. name: "Front",
  15412. image: {
  15413. source: "./media/characters/porter/front.svg",
  15414. extra: 1,
  15415. bottom: 0.01
  15416. }
  15417. },
  15418. frontRobes: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Front (Robes)",
  15422. image: {
  15423. source: "./media/characters/porter/front-robes.svg",
  15424. extra: 1.01,
  15425. bottom: 0.01
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(11 + 9 / 12, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15439. {
  15440. legendary: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Legendary",
  15444. image: {
  15445. source: "./media/characters/lucy/legendary.svg",
  15446. extra: 1355 / 1100,
  15447. bottom: 0.045
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Legendary",
  15454. height: math.unit(86882 * 2, "miles"),
  15455. default: true
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/drusilla/front.svg",
  15468. extra: 678 / 635,
  15469. bottom: 0.03
  15470. }
  15471. },
  15472. back: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Back",
  15476. image: {
  15477. source: "./media/characters/drusilla/back.svg",
  15478. extra: 678 / 635,
  15479. bottom: 0.005
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Macro",
  15486. height: math.unit(100, "feet")
  15487. },
  15488. {
  15489. name: "Canon Height",
  15490. height: math.unit(2000, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(6, "feet"),
  15500. weight: math.unit(180, "lb"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/renard-thatch/front.svg",
  15504. extra: 2411 / 2275,
  15505. bottom: 0.01
  15506. }
  15507. },
  15508. frontPosing: {
  15509. height: math.unit(6, "feet"),
  15510. weight: math.unit(180, "lb"),
  15511. name: "Front (Posing)",
  15512. image: {
  15513. source: "./media/characters/renard-thatch/front-posing.svg",
  15514. extra: 2381 / 2261,
  15515. bottom: 0.01
  15516. }
  15517. },
  15518. back: {
  15519. height: math.unit(6, "feet"),
  15520. weight: math.unit(180, "lb"),
  15521. name: "Back",
  15522. image: {
  15523. source: "./media/characters/renard-thatch/back.svg",
  15524. extra: 2428 / 2288
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Micro",
  15531. height: math.unit(3, "inches")
  15532. },
  15533. {
  15534. name: "Default",
  15535. height: math.unit(6, "feet"),
  15536. default: true
  15537. },
  15538. {
  15539. name: "Macro",
  15540. height: math.unit(75, "feet")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(1450, "feet"),
  15549. weight: math.unit(1.21e6, "tons"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/sekvra/front.svg",
  15553. extra: 1193/1190,
  15554. bottom: 78/1271
  15555. }
  15556. },
  15557. side: {
  15558. height: math.unit(1450, "feet"),
  15559. weight: math.unit(1.21e6, "tons"),
  15560. name: "Side",
  15561. image: {
  15562. source: "./media/characters/sekvra/side.svg",
  15563. extra: 1193/1190,
  15564. bottom: 52/1245
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(1450, "feet"),
  15569. weight: math.unit(1.21e6, "tons"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/sekvra/back.svg",
  15573. extra: 1219/1216,
  15574. bottom: 21/1240
  15575. }
  15576. },
  15577. frontClothed: {
  15578. height: math.unit(1450, "feet"),
  15579. weight: math.unit(1.21e6, "tons"),
  15580. name: "Front (Clothed)",
  15581. image: {
  15582. source: "./media/characters/sekvra/front-clothed.svg",
  15583. extra: 1192/1189,
  15584. bottom: 79/1271
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Macro",
  15591. height: math.unit(1450, "feet"),
  15592. default: true
  15593. },
  15594. {
  15595. name: "Megamacro",
  15596. height: math.unit(15000, "feet")
  15597. },
  15598. ]
  15599. ))
  15600. characterMakers.push(() => makeCharacter(
  15601. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15602. {
  15603. front: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Front",
  15607. image: {
  15608. source: "./media/characters/carmine/front.svg",
  15609. extra: 1557/1538,
  15610. bottom: 68/1625
  15611. }
  15612. },
  15613. frontArmor: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Front (Armor)",
  15617. image: {
  15618. source: "./media/characters/carmine/front-armor.svg",
  15619. extra: 1549/1530,
  15620. bottom: 82/1631
  15621. }
  15622. },
  15623. mouth: {
  15624. height: math.unit(0.55, "feet"),
  15625. name: "Mouth",
  15626. image: {
  15627. source: "./media/characters/carmine/mouth.svg"
  15628. }
  15629. },
  15630. hand: {
  15631. height: math.unit(1.05, "feet"),
  15632. name: "Hand",
  15633. image: {
  15634. source: "./media/characters/carmine/hand.svg"
  15635. }
  15636. },
  15637. foot: {
  15638. height: math.unit(0.6, "feet"),
  15639. name: "Foot",
  15640. image: {
  15641. source: "./media/characters/carmine/foot.svg"
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Large",
  15648. height: math.unit(1, "mile")
  15649. },
  15650. {
  15651. name: "Huge",
  15652. height: math.unit(40, "miles"),
  15653. default: true
  15654. },
  15655. {
  15656. name: "Colossal",
  15657. height: math.unit(2500, "miles")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(150, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/elyssia/front.svg",
  15670. extra: 2201 / 2035,
  15671. bottom: 0.05
  15672. }
  15673. },
  15674. frontClothed: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(150, "lb"),
  15677. name: "Front (Clothed)",
  15678. image: {
  15679. source: "./media/characters/elyssia/front-clothed.svg",
  15680. extra: 2201 / 2035,
  15681. bottom: 0.05
  15682. }
  15683. },
  15684. back: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Back",
  15688. image: {
  15689. source: "./media/characters/elyssia/back.svg",
  15690. extra: 2201 / 2035,
  15691. bottom: 0.013
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Smaller",
  15698. height: math.unit(150, "feet")
  15699. },
  15700. {
  15701. name: "Standard",
  15702. height: math.unit(1400, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Distracted",
  15707. height: math.unit(15000, "feet")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(7 + 4/12, "feet"),
  15716. weight: math.unit(690, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/geno-maxwell/front.svg",
  15720. extra: 984/856,
  15721. bottom: 87/1071
  15722. }
  15723. },
  15724. back: {
  15725. height: math.unit(7 + 4/12, "feet"),
  15726. weight: math.unit(690, "lb"),
  15727. name: "Back",
  15728. image: {
  15729. source: "./media/characters/geno-maxwell/back.svg",
  15730. extra: 981/854,
  15731. bottom: 57/1038
  15732. }
  15733. },
  15734. frontCostume: {
  15735. height: math.unit(7 + 4/12, "feet"),
  15736. weight: math.unit(690, "lb"),
  15737. name: "Front (Costume)",
  15738. image: {
  15739. source: "./media/characters/geno-maxwell/front-costume.svg",
  15740. extra: 984/856,
  15741. bottom: 87/1071
  15742. }
  15743. },
  15744. backcostume: {
  15745. height: math.unit(7 + 4/12, "feet"),
  15746. weight: math.unit(690, "lb"),
  15747. name: "Back (Costume)",
  15748. image: {
  15749. source: "./media/characters/geno-maxwell/back-costume.svg",
  15750. extra: 981/854,
  15751. bottom: 57/1038
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(7 + 4 / 12, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(220, "feet")
  15768. },
  15769. {
  15770. name: "Megamacro",
  15771. height: math.unit(11, "miles")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(7 + 4/12, "feet"),
  15780. weight: math.unit(750, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/regena-maxwell/front.svg",
  15784. extra: 984/856,
  15785. bottom: 87/1071
  15786. }
  15787. },
  15788. back: {
  15789. height: math.unit(7 + 4/12, "feet"),
  15790. weight: math.unit(750, "lb"),
  15791. name: "Back",
  15792. image: {
  15793. source: "./media/characters/regena-maxwell/back.svg",
  15794. extra: 981/854,
  15795. bottom: 57/1038
  15796. }
  15797. },
  15798. frontCostume: {
  15799. height: math.unit(7 + 4/12, "feet"),
  15800. weight: math.unit(750, "lb"),
  15801. name: "Front (Costume)",
  15802. image: {
  15803. source: "./media/characters/regena-maxwell/front-costume.svg",
  15804. extra: 984/856,
  15805. bottom: 87/1071
  15806. }
  15807. },
  15808. backcostume: {
  15809. height: math.unit(7 + 4/12, "feet"),
  15810. weight: math.unit(750, "lb"),
  15811. name: "Back (Costume)",
  15812. image: {
  15813. source: "./media/characters/regena-maxwell/back-costume.svg",
  15814. extra: 981/854,
  15815. bottom: 57/1038
  15816. }
  15817. },
  15818. },
  15819. [
  15820. {
  15821. name: "Normal",
  15822. height: math.unit(7 + 4 / 12, "feet"),
  15823. default: true
  15824. },
  15825. {
  15826. name: "Macro",
  15827. height: math.unit(220, "feet")
  15828. },
  15829. {
  15830. name: "Megamacro",
  15831. height: math.unit(11, "miles")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15844. extra: 860 / 690,
  15845. bottom: 0.03
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(1.7, "meters"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/quilly/front.svg",
  15866. extra: 890 / 776
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Gigamacro",
  15873. height: math.unit(404090, "miles"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(7 + 8 / 12, "feet"),
  15883. weight: math.unit(350, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/tempest/front.svg",
  15887. extra: 1175 / 1086,
  15888. bottom: 0.02
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(7 + 8 / 12, "feet"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15902. {
  15903. side: {
  15904. height: math.unit(4 + 5 / 12, "feet"),
  15905. weight: math.unit(80, "lb"),
  15906. name: "Side",
  15907. image: {
  15908. source: "./media/characters/rodger/side.svg",
  15909. extra: 1235 / 1118
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Micro",
  15916. height: math.unit(1, "inch")
  15917. },
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(4 + 5 / 12, "feet"),
  15921. default: true
  15922. },
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(120, "feet")
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15931. {
  15932. front: {
  15933. height: math.unit(6, "feet"),
  15934. weight: math.unit(150, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/danyel/front.svg",
  15938. extra: 1185 / 1123,
  15939. bottom: 0.05
  15940. }
  15941. },
  15942. },
  15943. [
  15944. {
  15945. name: "Shrunken",
  15946. height: math.unit(0.5, "mm")
  15947. },
  15948. {
  15949. name: "Micro",
  15950. height: math.unit(1, "mm"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "Upsized",
  15955. height: math.unit(5 + 5 / 12, "feet")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(5 + 6 / 12, "feet"),
  15964. weight: math.unit(200, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/vivian-bijoux/front.svg",
  15968. extra: 1217/1209,
  15969. bottom: 76/1293
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(5 + 6 / 12, "feet"),
  15974. weight: math.unit(200, "lb"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/vivian-bijoux/back.svg",
  15978. extra: 1214/1208,
  15979. bottom: 51/1265
  15980. }
  15981. },
  15982. dressed: {
  15983. height: math.unit(5 + 6 / 12, "feet"),
  15984. weight: math.unit(200, "lb"),
  15985. name: "Dressed",
  15986. image: {
  15987. source: "./media/characters/vivian-bijoux/dressed.svg",
  15988. extra: 1217/1209,
  15989. bottom: 76/1293
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(5 + 6 / 12, "feet"),
  15997. default: true
  15998. },
  15999. {
  16000. name: "Bad Dream",
  16001. height: math.unit(500, "feet")
  16002. },
  16003. {
  16004. name: "Nightmare",
  16005. height: math.unit(500, "miles")
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(6 + 1 / 12, "feet"),
  16014. weight: math.unit(260, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/zeta/front.svg",
  16018. extra: 1968 / 1889,
  16019. bottom: 0.06
  16020. }
  16021. },
  16022. back: {
  16023. height: math.unit(6 + 1 / 12, "feet"),
  16024. weight: math.unit(260, "lb"),
  16025. name: "Back",
  16026. image: {
  16027. source: "./media/characters/zeta/back.svg",
  16028. extra: 1944 / 1858,
  16029. bottom: 0.03
  16030. }
  16031. },
  16032. hand: {
  16033. height: math.unit(1.112, "feet"),
  16034. name: "Hand",
  16035. image: {
  16036. source: "./media/characters/zeta/hand.svg"
  16037. }
  16038. },
  16039. foot: {
  16040. height: math.unit(1.48, "feet"),
  16041. name: "Foot",
  16042. image: {
  16043. source: "./media/characters/zeta/foot.svg"
  16044. }
  16045. },
  16046. },
  16047. [
  16048. {
  16049. name: "Micro",
  16050. height: math.unit(6, "inches")
  16051. },
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(6 + 1 / 12, "feet"),
  16055. default: true
  16056. },
  16057. {
  16058. name: "Macro",
  16059. height: math.unit(20, "feet")
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(6, "feet"),
  16068. weight: math.unit(150, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/jamie-larsen/front.svg",
  16072. extra: 962 / 933,
  16073. bottom: 0.02
  16074. }
  16075. },
  16076. back: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Back",
  16080. image: {
  16081. source: "./media/characters/jamie-larsen/back.svg",
  16082. extra: 997 / 946
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Macro",
  16089. height: math.unit(28 + 7 / 12, "feet"),
  16090. default: true
  16091. },
  16092. {
  16093. name: "Macro+",
  16094. height: math.unit(180, "feet")
  16095. },
  16096. {
  16097. name: "Megamacro",
  16098. height: math.unit(10, "miles")
  16099. },
  16100. {
  16101. name: "Gigamacro",
  16102. height: math.unit(200000, "miles")
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(120, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/vance/front.svg",
  16115. extra: 1980 / 1890,
  16116. bottom: 0.09
  16117. }
  16118. },
  16119. back: {
  16120. height: math.unit(6, "feet"),
  16121. weight: math.unit(120, "lb"),
  16122. name: "Back",
  16123. image: {
  16124. source: "./media/characters/vance/back.svg",
  16125. extra: 2081 / 1994,
  16126. bottom: 0.014
  16127. }
  16128. },
  16129. hand: {
  16130. height: math.unit(0.88, "feet"),
  16131. name: "Hand",
  16132. image: {
  16133. source: "./media/characters/vance/hand.svg"
  16134. }
  16135. },
  16136. foot: {
  16137. height: math.unit(0.64, "feet"),
  16138. name: "Foot",
  16139. image: {
  16140. source: "./media/characters/vance/foot.svg"
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Small",
  16147. height: math.unit(90, "feet"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Macro",
  16152. height: math.unit(100, "meters")
  16153. },
  16154. {
  16155. name: "Megamacro",
  16156. height: math.unit(15, "miles")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(6, "feet"),
  16165. weight: math.unit(180, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/xochitl/front.svg",
  16169. extra: 2297 / 2261,
  16170. bottom: 0.065
  16171. }
  16172. },
  16173. back: {
  16174. height: math.unit(6, "feet"),
  16175. weight: math.unit(180, "lb"),
  16176. name: "Back",
  16177. image: {
  16178. source: "./media/characters/xochitl/back.svg",
  16179. extra: 2386 / 2354,
  16180. bottom: 0.01
  16181. }
  16182. },
  16183. foot: {
  16184. height: math.unit(6 / 5 * 1.15, "feet"),
  16185. weight: math.unit(150, "lb"),
  16186. name: "Foot",
  16187. image: {
  16188. source: "./media/characters/xochitl/foot.svg"
  16189. }
  16190. },
  16191. },
  16192. [
  16193. {
  16194. name: "Macro",
  16195. height: math.unit(80, "feet")
  16196. },
  16197. {
  16198. name: "Macro+",
  16199. height: math.unit(400, "feet"),
  16200. default: true
  16201. },
  16202. {
  16203. name: "Gigamacro",
  16204. height: math.unit(80000, "miles")
  16205. },
  16206. {
  16207. name: "Gigamacro+",
  16208. height: math.unit(400000, "miles")
  16209. },
  16210. {
  16211. name: "Teramacro",
  16212. height: math.unit(300, "AU")
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(150, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/vincent/front.svg",
  16225. extra: 1130 / 1080,
  16226. bottom: 0.055
  16227. }
  16228. },
  16229. beak: {
  16230. height: math.unit(6 * 0.1, "feet"),
  16231. name: "Beak",
  16232. image: {
  16233. source: "./media/characters/vincent/beak.svg"
  16234. }
  16235. },
  16236. hand: {
  16237. height: math.unit(6 * 0.85, "feet"),
  16238. weight: math.unit(150, "lb"),
  16239. name: "Hand",
  16240. image: {
  16241. source: "./media/characters/vincent/hand.svg"
  16242. }
  16243. },
  16244. foot: {
  16245. height: math.unit(6 * 0.19, "feet"),
  16246. weight: math.unit(150, "lb"),
  16247. name: "Foot",
  16248. image: {
  16249. source: "./media/characters/vincent/foot.svg"
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Base",
  16256. height: math.unit(6 + 5 / 12, "feet"),
  16257. default: true
  16258. },
  16259. {
  16260. name: "Macro",
  16261. height: math.unit(300, "feet")
  16262. },
  16263. {
  16264. name: "Megamacro",
  16265. height: math.unit(2, "miles")
  16266. },
  16267. {
  16268. name: "Gigamacro",
  16269. height: math.unit(1000, "miles")
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(2, "meters"),
  16278. weight: math.unit(500, "kg"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/coatl/front.svg",
  16282. extra: 3948 / 3500,
  16283. bottom: 0.082
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(4, "meters")
  16291. },
  16292. {
  16293. name: "Macro",
  16294. height: math.unit(100, "meters"),
  16295. default: true
  16296. },
  16297. {
  16298. name: "Macro+",
  16299. height: math.unit(300, "meters")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(3, "gigameters")
  16304. },
  16305. {
  16306. name: "Megamacro+",
  16307. height: math.unit(300, "terameters")
  16308. },
  16309. {
  16310. name: "Megamacro++",
  16311. height: math.unit(3, "lightyears")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(50, "kg"),
  16321. name: "front",
  16322. image: {
  16323. source: "./media/characters/shiroryu/front.svg",
  16324. extra: 1990 / 1935
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Mortal Mingling",
  16331. height: math.unit(3, "meters")
  16332. },
  16333. {
  16334. name: "Kaiju-ish",
  16335. height: math.unit(250, "meters")
  16336. },
  16337. {
  16338. name: "Somewhat Godly",
  16339. height: math.unit(400, "km"),
  16340. default: true
  16341. },
  16342. {
  16343. name: "Planetary",
  16344. height: math.unit(300, "megameters")
  16345. },
  16346. {
  16347. name: "Galaxy-dwarfing",
  16348. height: math.unit(450, "kiloparsecs")
  16349. },
  16350. {
  16351. name: "Universe Eater",
  16352. height: math.unit(150, "gigaparsecs")
  16353. },
  16354. {
  16355. name: "Almost Immeasurable",
  16356. height: math.unit(1.3e266, "yottaparsecs")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16362. {
  16363. front: {
  16364. height: math.unit(6, "feet"),
  16365. weight: math.unit(150, "lb"),
  16366. name: "Front",
  16367. image: {
  16368. source: "./media/characters/umeko/front.svg",
  16369. extra: 1,
  16370. bottom: 0.019
  16371. }
  16372. },
  16373. frontArmored: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(150, "lb"),
  16376. name: "Front (Armored)",
  16377. image: {
  16378. source: "./media/characters/umeko/front-armored.svg",
  16379. extra: 1,
  16380. bottom: 0.021
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Macro",
  16387. height: math.unit(220, "feet"),
  16388. default: true
  16389. },
  16390. {
  16391. name: "Guardian Dragon",
  16392. height: math.unit(50, "miles")
  16393. },
  16394. {
  16395. name: "Cosmic",
  16396. height: math.unit(800000, "miles")
  16397. },
  16398. ]
  16399. ))
  16400. characterMakers.push(() => makeCharacter(
  16401. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16402. {
  16403. front: {
  16404. height: math.unit(6, "feet"),
  16405. weight: math.unit(150, "lb"),
  16406. name: "Front",
  16407. image: {
  16408. source: "./media/characters/cassidy/front.svg",
  16409. extra: 810/808,
  16410. bottom: 41/851
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Canon Height",
  16417. height: math.unit(120, "feet"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Macro+",
  16422. height: math.unit(400, "feet")
  16423. },
  16424. {
  16425. name: "Macro++",
  16426. height: math.unit(4000, "feet")
  16427. },
  16428. {
  16429. name: "Megamacro",
  16430. height: math.unit(3, "miles")
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(6, "feet"),
  16439. weight: math.unit(150, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/isaac/front.svg",
  16443. extra: 896 / 815,
  16444. bottom: 0.11
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Human Size",
  16451. height: math.unit(8, "feet"),
  16452. default: true
  16453. },
  16454. {
  16455. name: "Macro",
  16456. height: math.unit(400, "feet")
  16457. },
  16458. {
  16459. name: "Megamacro",
  16460. height: math.unit(50, "miles")
  16461. },
  16462. {
  16463. name: "Canon Height",
  16464. height: math.unit(200, "AU")
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(6, "feet"),
  16473. weight: math.unit(72, "kg"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/sleekit/front.svg",
  16477. extra: 4693 / 4487,
  16478. bottom: 0.012
  16479. }
  16480. },
  16481. },
  16482. [
  16483. {
  16484. name: "Minimum Height",
  16485. height: math.unit(10, "meters")
  16486. },
  16487. {
  16488. name: "Smaller",
  16489. height: math.unit(25, "meters")
  16490. },
  16491. {
  16492. name: "Larger",
  16493. height: math.unit(38, "meters"),
  16494. default: true
  16495. },
  16496. {
  16497. name: "Maximum height",
  16498. height: math.unit(100, "meters")
  16499. },
  16500. ]
  16501. ))
  16502. characterMakers.push(() => makeCharacter(
  16503. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16504. {
  16505. front: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(150, "lb"),
  16508. name: "Front",
  16509. image: {
  16510. source: "./media/characters/nillia/front.svg",
  16511. extra: 719/665,
  16512. bottom: 6/725
  16513. }
  16514. },
  16515. back: {
  16516. height: math.unit(6, "feet"),
  16517. weight: math.unit(150, "lb"),
  16518. name: "Back",
  16519. image: {
  16520. source: "./media/characters/nillia/back.svg",
  16521. extra: 705/651,
  16522. bottom: 5/710
  16523. }
  16524. },
  16525. },
  16526. [
  16527. {
  16528. name: "Canon Height",
  16529. height: math.unit(489, "feet"),
  16530. default: true
  16531. }
  16532. ]
  16533. ))
  16534. characterMakers.push(() => makeCharacter(
  16535. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16536. {
  16537. front: {
  16538. height: math.unit(6, "feet"),
  16539. weight: math.unit(150, "lb"),
  16540. name: "Front",
  16541. image: {
  16542. source: "./media/characters/mesmyriza/front.svg",
  16543. extra: 1541/1291,
  16544. bottom: 87/1628
  16545. }
  16546. },
  16547. foot: {
  16548. height: math.unit(6 / (250 / 35), "feet"),
  16549. name: "Foot",
  16550. image: {
  16551. source: "./media/characters/mesmyriza/foot.svg"
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Macro",
  16558. height: math.unit(457, "meters"),
  16559. default: true
  16560. },
  16561. {
  16562. name: "Megamacro",
  16563. height: math.unit(8, "megameters")
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(250, "lb"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/saudade/front.svg",
  16576. extra: 1172 / 1139,
  16577. bottom: 0.035
  16578. }
  16579. },
  16580. },
  16581. [
  16582. {
  16583. name: "Micro",
  16584. height: math.unit(3, "inches")
  16585. },
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(6, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Macro",
  16593. height: math.unit(50, "feet")
  16594. },
  16595. {
  16596. name: "Megamacro",
  16597. height: math.unit(2800, "feet")
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16603. {
  16604. front: {
  16605. height: math.unit(5 + 4 / 12, "feet"),
  16606. weight: math.unit(100, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/keireer/front.svg",
  16610. extra: 716 / 666,
  16611. bottom: 0.05
  16612. }
  16613. },
  16614. },
  16615. [
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(5 + 4 / 12, "feet"),
  16619. default: true
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16625. {
  16626. front: {
  16627. height: math.unit(5.5, "feet"),
  16628. weight: math.unit(90, "kg"),
  16629. name: "Front",
  16630. image: {
  16631. source: "./media/characters/mirja/front.svg",
  16632. extra: 1452/1262,
  16633. bottom: 67/1519
  16634. }
  16635. },
  16636. frontDressed: {
  16637. height: math.unit(5.5, "feet"),
  16638. weight: math.unit(90, "lb"),
  16639. name: "Front (Dressed)",
  16640. image: {
  16641. source: "./media/characters/mirja/dressed.svg",
  16642. extra: 1452/1262,
  16643. bottom: 67/1519
  16644. }
  16645. },
  16646. back: {
  16647. height: math.unit(6, "feet"),
  16648. weight: math.unit(90, "lb"),
  16649. name: "Back",
  16650. image: {
  16651. source: "./media/characters/mirja/back.svg",
  16652. extra: 1892/1795,
  16653. bottom: 48/1940
  16654. }
  16655. },
  16656. maw: {
  16657. height: math.unit(1.312, "feet"),
  16658. name: "Maw",
  16659. image: {
  16660. source: "./media/characters/mirja/maw.svg"
  16661. }
  16662. },
  16663. paw: {
  16664. height: math.unit(1.15, "feet"),
  16665. name: "Paw",
  16666. image: {
  16667. source: "./media/characters/mirja/paw.svg"
  16668. }
  16669. },
  16670. },
  16671. [
  16672. {
  16673. name: "\"Incognito\"",
  16674. height: math.unit(3, "meters")
  16675. },
  16676. {
  16677. name: "Strolling Size",
  16678. height: math.unit(15, "km")
  16679. },
  16680. {
  16681. name: "Larger Strolling Size",
  16682. height: math.unit(400, "km")
  16683. },
  16684. {
  16685. name: "Preferred Size",
  16686. height: math.unit(5000, "km"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "True Size",
  16691. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(15, "feet"),
  16700. weight: math.unit(880, "kg"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/nightraver/front.svg",
  16704. extra: 2444 / 2160,
  16705. bottom: 0.027
  16706. }
  16707. },
  16708. back: {
  16709. height: math.unit(15, "feet"),
  16710. weight: math.unit(880, "kg"),
  16711. name: "Back",
  16712. image: {
  16713. source: "./media/characters/nightraver/back.svg",
  16714. extra: 2309 / 2180,
  16715. bottom: 0.005
  16716. }
  16717. },
  16718. sole: {
  16719. height: math.unit(2.878, "feet"),
  16720. name: "Sole",
  16721. image: {
  16722. source: "./media/characters/nightraver/sole.svg"
  16723. }
  16724. },
  16725. foot: {
  16726. height: math.unit(2.285, "feet"),
  16727. name: "Foot",
  16728. image: {
  16729. source: "./media/characters/nightraver/foot.svg"
  16730. }
  16731. },
  16732. maw: {
  16733. height: math.unit(2.67, "feet"),
  16734. name: "Maw",
  16735. image: {
  16736. source: "./media/characters/nightraver/maw.svg"
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Micro",
  16743. height: math.unit(1, "cm")
  16744. },
  16745. {
  16746. name: "Normal",
  16747. height: math.unit(15, "feet"),
  16748. default: true
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(300, "feet")
  16753. },
  16754. {
  16755. name: "Megamacro",
  16756. height: math.unit(300, "miles")
  16757. },
  16758. {
  16759. name: "Gigamacro",
  16760. height: math.unit(10000, "miles")
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16766. {
  16767. side: {
  16768. height: math.unit(2, "inches"),
  16769. weight: math.unit(5, "grams"),
  16770. name: "Side",
  16771. image: {
  16772. source: "./media/characters/arc/side.svg"
  16773. }
  16774. },
  16775. },
  16776. [
  16777. {
  16778. name: "Micro",
  16779. height: math.unit(2, "inches"),
  16780. default: true
  16781. },
  16782. ]
  16783. ))
  16784. characterMakers.push(() => makeCharacter(
  16785. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16786. {
  16787. front: {
  16788. height: math.unit(1.1938, "meters"),
  16789. weight: math.unit(54, "kg"),
  16790. name: "Front",
  16791. image: {
  16792. source: "./media/characters/nebula-shahar/front.svg",
  16793. extra: 1642 / 1436,
  16794. bottom: 0.06
  16795. }
  16796. },
  16797. },
  16798. [
  16799. {
  16800. name: "Megamicro",
  16801. height: math.unit(0.3, "mm")
  16802. },
  16803. {
  16804. name: "Micro",
  16805. height: math.unit(3, "cm")
  16806. },
  16807. {
  16808. name: "Normal",
  16809. height: math.unit(138, "cm"),
  16810. default: true
  16811. },
  16812. {
  16813. name: "Macro",
  16814. height: math.unit(30, "m")
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16820. {
  16821. front: {
  16822. height: math.unit(5.24, "feet"),
  16823. weight: math.unit(150, "lb"),
  16824. name: "Front",
  16825. image: {
  16826. source: "./media/characters/shayla/front.svg",
  16827. extra: 1512 / 1414,
  16828. bottom: 0.01
  16829. }
  16830. },
  16831. back: {
  16832. height: math.unit(5.24, "feet"),
  16833. weight: math.unit(150, "lb"),
  16834. name: "Back",
  16835. image: {
  16836. source: "./media/characters/shayla/back.svg",
  16837. extra: 1512 / 1414
  16838. }
  16839. },
  16840. hand: {
  16841. height: math.unit(0.7781496062992126, "feet"),
  16842. name: "Hand",
  16843. image: {
  16844. source: "./media/characters/shayla/hand.svg"
  16845. }
  16846. },
  16847. foot: {
  16848. height: math.unit(1.4206036745406823, "feet"),
  16849. name: "Foot",
  16850. image: {
  16851. source: "./media/characters/shayla/foot.svg"
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Micro",
  16858. height: math.unit(0.32, "feet")
  16859. },
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(5.24, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Macro",
  16867. height: math.unit(492.12, "feet")
  16868. },
  16869. {
  16870. name: "Megamacro",
  16871. height: math.unit(186.41, "miles")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(2.2, "m"),
  16880. weight: math.unit(120, "kg"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/pia-jr/front.svg",
  16884. extra: 1000 / 970,
  16885. bottom: 0.035
  16886. }
  16887. },
  16888. hand: {
  16889. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16890. name: "Hand",
  16891. image: {
  16892. source: "./media/characters/pia-jr/hand.svg"
  16893. }
  16894. },
  16895. paw: {
  16896. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16897. name: "Paw",
  16898. image: {
  16899. source: "./media/characters/pia-jr/paw.svg"
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Micro",
  16906. height: math.unit(1.2, "cm")
  16907. },
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(2.2, "m"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(180, "m")
  16916. },
  16917. {
  16918. name: "Megamacro",
  16919. height: math.unit(420, "km")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(2, "m"),
  16928. weight: math.unit(115, "kg"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/pia-sr/front.svg",
  16932. extra: 760 / 730,
  16933. bottom: 0.015
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(2, "m"),
  16938. weight: math.unit(115, "kg"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/pia-sr/back.svg",
  16942. extra: 760 / 730,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. hand: {
  16947. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16948. name: "Hand",
  16949. image: {
  16950. source: "./media/characters/pia-sr/hand.svg"
  16951. }
  16952. },
  16953. foot: {
  16954. height: math.unit(1.83, "feet"),
  16955. name: "Foot",
  16956. image: {
  16957. source: "./media/characters/pia-sr/foot.svg"
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Micro",
  16964. height: math.unit(88, "mm")
  16965. },
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(2, "m"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(200, "m")
  16974. },
  16975. {
  16976. name: "Megamacro",
  16977. height: math.unit(420, "km")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(8 + 2 / 12, "feet"),
  16986. weight: math.unit(300, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/kibibyte/front.svg",
  16990. extra: 2221 / 2098,
  16991. bottom: 0.04
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(8 + 2 / 12, "feet"),
  16999. default: true
  17000. },
  17001. {
  17002. name: "Socialable Macro",
  17003. height: math.unit(50, "feet")
  17004. },
  17005. {
  17006. name: "Macro",
  17007. height: math.unit(300, "feet")
  17008. },
  17009. {
  17010. name: "Megamacro",
  17011. height: math.unit(500, "miles")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(6, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/felix/front.svg",
  17024. extra: 762 / 722,
  17025. bottom: 0.02
  17026. }
  17027. },
  17028. frontClothed: {
  17029. height: math.unit(6, "feet"),
  17030. weight: math.unit(150, "lb"),
  17031. name: "Front (Clothed)",
  17032. image: {
  17033. source: "./media/characters/felix/front-clothed.svg",
  17034. extra: 762 / 722,
  17035. bottom: 0.02
  17036. }
  17037. },
  17038. },
  17039. [
  17040. {
  17041. name: "Normal",
  17042. height: math.unit(6 + 8 / 12, "feet"),
  17043. default: true
  17044. },
  17045. {
  17046. name: "Macro",
  17047. height: math.unit(2600, "feet")
  17048. },
  17049. {
  17050. name: "Megamacro",
  17051. height: math.unit(450, "miles")
  17052. },
  17053. ]
  17054. ))
  17055. characterMakers.push(() => makeCharacter(
  17056. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  17057. {
  17058. front: {
  17059. height: math.unit(6 + 1 / 12, "feet"),
  17060. weight: math.unit(250, "lb"),
  17061. name: "Front",
  17062. image: {
  17063. source: "./media/characters/tobo/front.svg",
  17064. extra: 608 / 586,
  17065. bottom: 0.023
  17066. }
  17067. },
  17068. back: {
  17069. height: math.unit(6 + 1 / 12, "feet"),
  17070. weight: math.unit(250, "lb"),
  17071. name: "Back",
  17072. image: {
  17073. source: "./media/characters/tobo/back.svg",
  17074. extra: 608 / 586
  17075. }
  17076. },
  17077. },
  17078. [
  17079. {
  17080. name: "Nano",
  17081. height: math.unit(2, "nm")
  17082. },
  17083. {
  17084. name: "Megamicro",
  17085. height: math.unit(0.1, "mm")
  17086. },
  17087. {
  17088. name: "Micro",
  17089. height: math.unit(1, "inch"),
  17090. default: true
  17091. },
  17092. {
  17093. name: "Human-sized",
  17094. height: math.unit(6 + 1 / 12, "feet")
  17095. },
  17096. {
  17097. name: "Macro",
  17098. height: math.unit(250, "feet")
  17099. },
  17100. {
  17101. name: "Megamacro",
  17102. height: math.unit(75, "miles")
  17103. },
  17104. {
  17105. name: "Texas-sized",
  17106. height: math.unit(750, "miles")
  17107. },
  17108. {
  17109. name: "Teramacro",
  17110. height: math.unit(50000, "miles")
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6, "feet"),
  17119. weight: math.unit(269, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/danny-kapowsky/front.svg",
  17123. extra: 766 / 736,
  17124. bottom: 0.044
  17125. }
  17126. },
  17127. back: {
  17128. height: math.unit(6, "feet"),
  17129. weight: math.unit(269, "lb"),
  17130. name: "Back",
  17131. image: {
  17132. source: "./media/characters/danny-kapowsky/back.svg",
  17133. extra: 797 / 760,
  17134. bottom: 0.025
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Macro",
  17141. height: math.unit(150, "feet"),
  17142. default: true
  17143. },
  17144. {
  17145. name: "Macro+",
  17146. height: math.unit(200, "feet")
  17147. },
  17148. {
  17149. name: "Macro++",
  17150. height: math.unit(300, "feet")
  17151. },
  17152. {
  17153. name: "Macro+++",
  17154. height: math.unit(400, "feet")
  17155. },
  17156. ]
  17157. ))
  17158. characterMakers.push(() => makeCharacter(
  17159. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17160. {
  17161. side: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(170, "lb"),
  17164. name: "Side",
  17165. image: {
  17166. source: "./media/characters/finn/side.svg",
  17167. extra: 1953 / 1807,
  17168. bottom: 0.057
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Megamacro",
  17175. height: math.unit(14445, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(5 + 6 / 12, "feet"),
  17185. weight: math.unit(125, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/roy/front.svg",
  17189. extra: 1,
  17190. bottom: 0.11
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Micro",
  17197. height: math.unit(3, "inches"),
  17198. default: true
  17199. },
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(5 + 6 / 12, "feet")
  17203. },
  17204. {
  17205. name: "Lesser Macro",
  17206. height: math.unit(60, "feet")
  17207. },
  17208. {
  17209. name: "Greater Macro",
  17210. height: math.unit(120, "feet")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(100, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/aevsivs/front.svg",
  17223. extra: 1,
  17224. bottom: 0.03
  17225. }
  17226. },
  17227. back: {
  17228. height: math.unit(6, "feet"),
  17229. weight: math.unit(100, "lb"),
  17230. name: "Back",
  17231. image: {
  17232. source: "./media/characters/aevsivs/back.svg"
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Micro",
  17239. height: math.unit(2, "inches"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(5, "feet")
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(5 + 7 / 12, "feet"),
  17253. weight: math.unit(159, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/hildegard/front.svg",
  17257. extra: 289 / 269,
  17258. bottom: 7.63 / 297.8
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(5 + 7 / 12, "feet"),
  17263. weight: math.unit(159, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/hildegard/back.svg",
  17267. extra: 280 / 260,
  17268. bottom: 2.3 / 282
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(5 + 7 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17282. {
  17283. bernard: {
  17284. height: math.unit(2 + 7 / 12, "feet"),
  17285. weight: math.unit(66, "lb"),
  17286. name: "Bernard",
  17287. rename: true,
  17288. image: {
  17289. source: "./media/characters/bernard-wilder/bernard.svg",
  17290. extra: 192 / 128,
  17291. bottom: 0.05
  17292. }
  17293. },
  17294. wilder: {
  17295. height: math.unit(5 + 8 / 12, "feet"),
  17296. weight: math.unit(143, "lb"),
  17297. name: "Wilder",
  17298. rename: true,
  17299. image: {
  17300. source: "./media/characters/bernard-wilder/wilder.svg",
  17301. extra: 361 / 312,
  17302. bottom: 0.02
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(2 + 7 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17316. {
  17317. anthro: {
  17318. height: math.unit(6 + 1 / 12, "feet"),
  17319. weight: math.unit(155, "lb"),
  17320. name: "Anthro",
  17321. image: {
  17322. source: "./media/characters/hearth/anthro.svg",
  17323. extra: 1178/1136,
  17324. bottom: 28/1206
  17325. }
  17326. },
  17327. feral: {
  17328. height: math.unit(3.78, "feet"),
  17329. weight: math.unit(35, "kg"),
  17330. name: "Feral",
  17331. image: {
  17332. source: "./media/characters/hearth/feral.svg",
  17333. extra: 153 / 135,
  17334. bottom: 0.03
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(6 + 1 / 12, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(6, "feet"),
  17351. weight: math.unit(182, "lb"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/ingrid/front.svg",
  17355. extra: 294 / 268,
  17356. bottom: 0.027
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(6, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17370. {
  17371. eevee: {
  17372. height: math.unit(2 + 10 / 12, "feet"),
  17373. weight: math.unit(86, "lb"),
  17374. name: "Malgam",
  17375. image: {
  17376. source: "./media/characters/malgam/eevee.svg",
  17377. extra: 952/784,
  17378. bottom: 38/990
  17379. }
  17380. },
  17381. sylveon: {
  17382. height: math.unit(4, "feet"),
  17383. weight: math.unit(101, "lb"),
  17384. name: "Future Malgam",
  17385. rename: true,
  17386. image: {
  17387. source: "./media/characters/malgam/sylveon.svg",
  17388. extra: 371 / 325,
  17389. bottom: 0.015
  17390. }
  17391. },
  17392. gigantamax: {
  17393. height: math.unit(50, "feet"),
  17394. name: "Gigantamax Malgam",
  17395. rename: true,
  17396. image: {
  17397. source: "./media/characters/malgam/gigantamax.svg"
  17398. }
  17399. },
  17400. },
  17401. [
  17402. {
  17403. name: "Normal",
  17404. height: math.unit(2 + 10 / 12, "feet"),
  17405. default: true
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(5 + 11 / 12, "feet"),
  17414. weight: math.unit(188, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/fleur/front.svg",
  17418. extra: 309 / 283,
  17419. bottom: 0.007
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(5 + 11 / 12, "feet"),
  17427. default: true
  17428. },
  17429. ]
  17430. ))
  17431. characterMakers.push(() => makeCharacter(
  17432. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17433. {
  17434. front: {
  17435. height: math.unit(5 + 4 / 12, "feet"),
  17436. weight: math.unit(122, "lb"),
  17437. name: "Front",
  17438. image: {
  17439. source: "./media/characters/jude/front.svg",
  17440. extra: 288 / 273,
  17441. bottom: 0.03
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(5 + 4 / 12, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17455. {
  17456. front: {
  17457. height: math.unit(5 + 11 / 12, "feet"),
  17458. weight: math.unit(190, "lb"),
  17459. name: "Front",
  17460. image: {
  17461. source: "./media/characters/seara/front.svg",
  17462. extra: 1,
  17463. bottom: 0.05
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(5 + 11 / 12, "feet"),
  17471. default: true
  17472. },
  17473. ]
  17474. ))
  17475. characterMakers.push(() => makeCharacter(
  17476. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17477. {
  17478. front: {
  17479. height: math.unit(16 + 5 / 12, "feet"),
  17480. weight: math.unit(524, "lb"),
  17481. name: "Front",
  17482. image: {
  17483. source: "./media/characters/caspian-lugia/front.svg",
  17484. extra: 1,
  17485. bottom: 0.04
  17486. }
  17487. },
  17488. },
  17489. [
  17490. {
  17491. name: "Normal",
  17492. height: math.unit(16 + 5 / 12, "feet"),
  17493. default: true
  17494. },
  17495. ]
  17496. ))
  17497. characterMakers.push(() => makeCharacter(
  17498. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17499. {
  17500. front: {
  17501. height: math.unit(5 + 7 / 12, "feet"),
  17502. weight: math.unit(170, "lb"),
  17503. name: "Front",
  17504. image: {
  17505. source: "./media/characters/mika/front.svg",
  17506. extra: 1,
  17507. bottom: 0.016
  17508. }
  17509. },
  17510. },
  17511. [
  17512. {
  17513. name: "Normal",
  17514. height: math.unit(5 + 7 / 12, "feet"),
  17515. default: true
  17516. },
  17517. ]
  17518. ))
  17519. characterMakers.push(() => makeCharacter(
  17520. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17521. {
  17522. front: {
  17523. height: math.unit(6 + 2 / 12, "feet"),
  17524. weight: math.unit(268, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/sol/front.svg",
  17528. extra: 247 / 231,
  17529. bottom: 0.05
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(6 + 2 / 12, "feet"),
  17537. default: true
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17543. {
  17544. buizel: {
  17545. height: math.unit(2 + 5 / 12, "feet"),
  17546. weight: math.unit(87, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/umiko/buizel.svg",
  17550. extra: 172 / 157,
  17551. bottom: 0.01
  17552. },
  17553. form: "buizel",
  17554. default: true
  17555. },
  17556. floatzel: {
  17557. height: math.unit(5 + 9 / 12, "feet"),
  17558. weight: math.unit(250, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/umiko/floatzel.svg",
  17562. extra: 1076/1006,
  17563. bottom: 15/1091
  17564. },
  17565. form: "floatzel",
  17566. default: true
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(2 + 5 / 12, "feet"),
  17573. form: "buizel",
  17574. default: true
  17575. },
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(5 + 9 / 12, "feet"),
  17579. form: "floatzel",
  17580. default: true
  17581. },
  17582. ],
  17583. {
  17584. "buizel": {
  17585. name: "Buizel"
  17586. },
  17587. "floatzel": {
  17588. name: "Floatzel",
  17589. default: true
  17590. }
  17591. }
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17595. {
  17596. front: {
  17597. height: math.unit(6 + 2 / 12, "feet"),
  17598. weight: math.unit(146, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/iliac/front.svg",
  17602. extra: 389 / 365,
  17603. bottom: 0.035
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(6 + 2 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17617. {
  17618. front: {
  17619. height: math.unit(6, "feet"),
  17620. weight: math.unit(170, "lb"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/topaz/front.svg",
  17624. extra: 317 / 303,
  17625. bottom: 0.055
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(6, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(5 + 11 / 12, "feet"),
  17642. weight: math.unit(144, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/gabriel/front.svg",
  17646. extra: 285 / 262,
  17647. bottom: 0.004
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(5 + 11 / 12, "feet"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17661. {
  17662. side: {
  17663. height: math.unit(6 + 5 / 12, "feet"),
  17664. weight: math.unit(300, "lb"),
  17665. name: "Side",
  17666. image: {
  17667. source: "./media/characters/tempest-suicune/side.svg",
  17668. extra: 195 / 154,
  17669. bottom: 0.04
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(6 + 5 / 12, "feet"),
  17677. default: true
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17683. {
  17684. front: {
  17685. height: math.unit(7 + 2 / 12, "feet"),
  17686. weight: math.unit(322, "lb"),
  17687. name: "Front",
  17688. image: {
  17689. source: "./media/characters/vulcan/front.svg",
  17690. extra: 154 / 147,
  17691. bottom: 0.04
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(7 + 2 / 12, "feet"),
  17699. default: true
  17700. },
  17701. ]
  17702. ))
  17703. characterMakers.push(() => makeCharacter(
  17704. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17705. {
  17706. front: {
  17707. height: math.unit(5 + 10 / 12, "feet"),
  17708. weight: math.unit(264, "lb"),
  17709. name: "Front",
  17710. image: {
  17711. source: "./media/characters/gault/front.svg",
  17712. extra: 161 / 140,
  17713. bottom: 0.028
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(5 + 10 / 12, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(150, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/shard/front.svg",
  17734. extra: 273 / 238,
  17735. bottom: 0.02
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(3 + 6 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(5 + 11 / 12, "feet"),
  17752. weight: math.unit(146, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/ashe/front.svg",
  17756. extra: 400 / 373,
  17757. bottom: 0.01
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(5 + 11 / 12, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17771. {
  17772. front: {
  17773. height: math.unit(5 + 5 / 12, "feet"),
  17774. weight: math.unit(135, "lb"),
  17775. name: "Front",
  17776. image: {
  17777. source: "./media/characters/beatrix/front.svg",
  17778. extra: 392 / 379,
  17779. bottom: 0.01
  17780. }
  17781. },
  17782. },
  17783. [
  17784. {
  17785. name: "Normal",
  17786. height: math.unit(6, "feet"),
  17787. default: true
  17788. },
  17789. ]
  17790. ))
  17791. characterMakers.push(() => makeCharacter(
  17792. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17793. {
  17794. front: {
  17795. height: math.unit(6 + 2/12, "feet"),
  17796. weight: math.unit(135, "lb"),
  17797. name: "Front",
  17798. image: {
  17799. source: "./media/characters/ignatius/front.svg",
  17800. extra: 1380/1259,
  17801. bottom: 27/1407
  17802. }
  17803. },
  17804. },
  17805. [
  17806. {
  17807. name: "Normal",
  17808. height: math.unit(6 + 2/12, "feet"),
  17809. default: true
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6 + 2 / 12, "feet"),
  17818. weight: math.unit(138, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/mei-li/front.svg",
  17822. extra: 237 / 229,
  17823. bottom: 0.03
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(6 + 2 / 12, "feet"),
  17831. default: true
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(2 + 4 / 12, "feet"),
  17840. weight: math.unit(62, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/puru/front.svg",
  17844. extra: 206 / 149,
  17845. bottom: 0.06
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(2 + 4 / 12, "feet"),
  17853. default: true
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17859. {
  17860. anthro: {
  17861. height: math.unit(5 + 8/12, "feet"),
  17862. weight: math.unit(200, "lb"),
  17863. energyNeed: math.unit(2000, "kcal"),
  17864. name: "Anthro",
  17865. image: {
  17866. source: "./media/characters/kee/anthro.svg",
  17867. extra: 3251/3184,
  17868. bottom: 250/3501
  17869. }
  17870. },
  17871. taur: {
  17872. height: math.unit(11, "feet"),
  17873. weight: math.unit(500, "lb"),
  17874. energyNeed: math.unit(5000, "kcal"),
  17875. name: "Taur",
  17876. image: {
  17877. source: "./media/characters/kee/taur.svg",
  17878. extra: 1362/1320,
  17879. bottom: 83/1445
  17880. }
  17881. },
  17882. },
  17883. [
  17884. {
  17885. name: "Normal",
  17886. height: math.unit(5 + 8/12, "feet"),
  17887. default: true
  17888. },
  17889. {
  17890. name: "Macro",
  17891. height: math.unit(35, "feet")
  17892. },
  17893. ]
  17894. ))
  17895. characterMakers.push(() => makeCharacter(
  17896. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17897. {
  17898. anthro: {
  17899. height: math.unit(7, "feet"),
  17900. weight: math.unit(190, "lb"),
  17901. name: "Anthro",
  17902. image: {
  17903. source: "./media/characters/cobalt-dracha/anthro.svg",
  17904. extra: 231 / 225,
  17905. bottom: 0.04
  17906. }
  17907. },
  17908. feral: {
  17909. height: math.unit(9 + 7 / 12, "feet"),
  17910. weight: math.unit(294, "lb"),
  17911. name: "Feral",
  17912. image: {
  17913. source: "./media/characters/cobalt-dracha/feral.svg",
  17914. extra: 692 / 633,
  17915. bottom: 0.05
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(7, "feet"),
  17923. default: true
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17929. {
  17930. fallen: {
  17931. height: math.unit(11 + 8 / 12, "feet"),
  17932. weight: math.unit(485, "lb"),
  17933. name: "Java (Fallen)",
  17934. rename: true,
  17935. image: {
  17936. source: "./media/characters/java/fallen.svg",
  17937. extra: 226 / 208,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. godkin: {
  17942. height: math.unit(10 + 6 / 12, "feet"),
  17943. weight: math.unit(328, "lb"),
  17944. name: "Java (Godkin)",
  17945. rename: true,
  17946. image: {
  17947. source: "./media/characters/java/godkin.svg",
  17948. extra: 1104/1068,
  17949. bottom: 36/1140
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(11 + 8 / 12, "feet"),
  17957. default: true
  17958. },
  17959. ]
  17960. ))
  17961. characterMakers.push(() => makeCharacter(
  17962. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17963. {
  17964. front: {
  17965. height: math.unit(5 + 9 / 12, "feet"),
  17966. weight: math.unit(170, "lb"),
  17967. name: "Front",
  17968. image: {
  17969. source: "./media/characters/purna/front.svg",
  17970. extra: 239 / 229,
  17971. bottom: 0.01
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(5 + 9 / 12, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(5 + 9 / 12, "feet"),
  17988. weight: math.unit(142, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/kuva/front.svg",
  17992. extra: 281 / 271,
  17993. bottom: 0.006
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(5 + 9 / 12, "feet"),
  18001. default: true
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  18007. {
  18008. anthro: {
  18009. height: math.unit(9 + 2 / 12, "feet"),
  18010. weight: math.unit(270, "lb"),
  18011. name: "Anthro",
  18012. image: {
  18013. source: "./media/characters/embra/anthro.svg",
  18014. extra: 200 / 187,
  18015. bottom: 0.02
  18016. }
  18017. },
  18018. feral: {
  18019. height: math.unit(18 + 8 / 12, "feet"),
  18020. weight: math.unit(576, "lb"),
  18021. name: "Feral",
  18022. image: {
  18023. source: "./media/characters/embra/feral.svg",
  18024. extra: 152 / 137,
  18025. bottom: 0.037
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(9 + 2 / 12, "feet"),
  18033. default: true
  18034. },
  18035. ]
  18036. ))
  18037. characterMakers.push(() => makeCharacter(
  18038. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  18039. {
  18040. anthro: {
  18041. height: math.unit(10 + 9 / 12, "feet"),
  18042. weight: math.unit(224, "lb"),
  18043. name: "Anthro",
  18044. image: {
  18045. source: "./media/characters/grottos/anthro.svg",
  18046. extra: 350 / 332,
  18047. bottom: 0.045
  18048. }
  18049. },
  18050. feral: {
  18051. height: math.unit(20 + 7 / 12, "feet"),
  18052. weight: math.unit(629, "lb"),
  18053. name: "Feral",
  18054. image: {
  18055. source: "./media/characters/grottos/feral.svg",
  18056. extra: 207 / 190,
  18057. bottom: 0.05
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(10 + 9 / 12, "feet"),
  18065. default: true
  18066. },
  18067. ]
  18068. ))
  18069. characterMakers.push(() => makeCharacter(
  18070. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  18071. {
  18072. anthro: {
  18073. height: math.unit(9 + 6 / 12, "feet"),
  18074. weight: math.unit(298, "lb"),
  18075. name: "Anthro",
  18076. image: {
  18077. source: "./media/characters/frifna/anthro.svg",
  18078. extra: 282 / 269,
  18079. bottom: 0.015
  18080. }
  18081. },
  18082. feral: {
  18083. height: math.unit(16 + 2 / 12, "feet"),
  18084. weight: math.unit(624, "lb"),
  18085. name: "Feral",
  18086. image: {
  18087. source: "./media/characters/frifna/feral.svg"
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Normal",
  18094. height: math.unit(9 + 6 / 12, "feet"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(6 + 2 / 12, "feet"),
  18104. weight: math.unit(168, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/elise/front.svg",
  18108. extra: 276 / 271
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(6 + 2 / 12, "feet"),
  18116. default: true
  18117. },
  18118. ]
  18119. ))
  18120. characterMakers.push(() => makeCharacter(
  18121. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18122. {
  18123. front: {
  18124. height: math.unit(5 + 10 / 12, "feet"),
  18125. weight: math.unit(210, "lb"),
  18126. name: "Front",
  18127. image: {
  18128. source: "./media/characters/glade/front.svg",
  18129. extra: 258 / 247,
  18130. bottom: 0.008
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Normal",
  18137. height: math.unit(5 + 10 / 12, "feet"),
  18138. default: true
  18139. },
  18140. ]
  18141. ))
  18142. characterMakers.push(() => makeCharacter(
  18143. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18144. {
  18145. front: {
  18146. height: math.unit(5 + 10 / 12, "feet"),
  18147. weight: math.unit(129, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/rina/front.svg",
  18151. extra: 266 / 255,
  18152. bottom: 0.005
  18153. }
  18154. },
  18155. },
  18156. [
  18157. {
  18158. name: "Normal",
  18159. height: math.unit(5 + 10 / 12, "feet"),
  18160. default: true
  18161. },
  18162. ]
  18163. ))
  18164. characterMakers.push(() => makeCharacter(
  18165. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18166. {
  18167. front: {
  18168. height: math.unit(6 + 1 / 12, "feet"),
  18169. weight: math.unit(192, "lb"),
  18170. name: "Front",
  18171. image: {
  18172. source: "./media/characters/veronica/front.svg",
  18173. extra: 319 / 309,
  18174. bottom: 0.005
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Normal",
  18181. height: math.unit(6 + 1 / 12, "feet"),
  18182. default: true
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(9 + 3 / 12, "feet"),
  18191. weight: math.unit(1100, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/braxton/front.svg",
  18195. extra: 1057 / 984,
  18196. bottom: 0.05
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Normal",
  18203. height: math.unit(9 + 3 / 12, "feet")
  18204. },
  18205. {
  18206. name: "Giant",
  18207. height: math.unit(300, "feet"),
  18208. default: true
  18209. },
  18210. {
  18211. name: "Macro",
  18212. height: math.unit(700, "feet")
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(6000, "feet")
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(6 + 7 / 12, "feet"),
  18225. weight: math.unit(150, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/blue-feyonics/front.svg",
  18229. extra: 1403 / 1306,
  18230. bottom: 0.047
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(6 + 7 / 12, "feet"),
  18238. default: true
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(1.8, "meters"),
  18247. weight: math.unit(60, "kg"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/maxwell/front.svg",
  18251. extra: 2060 / 1873
  18252. }
  18253. },
  18254. },
  18255. [
  18256. {
  18257. name: "Micro",
  18258. height: math.unit(1, "mm")
  18259. },
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(1.8, "meter"),
  18263. default: true
  18264. },
  18265. {
  18266. name: "Macro",
  18267. height: math.unit(30, "meters")
  18268. },
  18269. {
  18270. name: "Megamacro",
  18271. height: math.unit(10, "km")
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6, "feet"),
  18280. weight: math.unit(150, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/jack/front.svg",
  18284. extra: 1754 / 1640,
  18285. bottom: 0.01
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Normal",
  18292. height: math.unit(80000, "feet"),
  18293. default: true
  18294. },
  18295. {
  18296. name: "Max size",
  18297. height: math.unit(10, "lightyears")
  18298. },
  18299. ]
  18300. ))
  18301. characterMakers.push(() => makeCharacter(
  18302. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18303. {
  18304. urban: {
  18305. height: math.unit(5, "feet"),
  18306. weight: math.unit(240, "lb"),
  18307. name: "Urban",
  18308. image: {
  18309. source: "./media/characters/cafat/urban.svg",
  18310. extra: 1223/1126,
  18311. bottom: 205/1428
  18312. }
  18313. },
  18314. summer: {
  18315. height: math.unit(5, "feet"),
  18316. weight: math.unit(240, "lb"),
  18317. name: "Summer",
  18318. image: {
  18319. source: "./media/characters/cafat/summer.svg",
  18320. extra: 1223/1126,
  18321. bottom: 205/1428
  18322. }
  18323. },
  18324. winter: {
  18325. height: math.unit(5, "feet"),
  18326. weight: math.unit(240, "lb"),
  18327. name: "Winter",
  18328. image: {
  18329. source: "./media/characters/cafat/winter.svg",
  18330. extra: 1223/1126,
  18331. bottom: 205/1428
  18332. }
  18333. },
  18334. lingerie: {
  18335. height: math.unit(5, "feet"),
  18336. weight: math.unit(240, "lb"),
  18337. name: "Lingerie",
  18338. image: {
  18339. source: "./media/characters/cafat/lingerie.svg",
  18340. extra: 1223/1126,
  18341. bottom: 205/1428
  18342. }
  18343. },
  18344. upright: {
  18345. height: math.unit(6.3, "feet"),
  18346. weight: math.unit(240, "lb"),
  18347. name: "Upright",
  18348. image: {
  18349. source: "./media/characters/cafat/upright.svg",
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. uprightFull: {
  18354. height: math.unit(6.3, "feet"),
  18355. weight: math.unit(240, "lb"),
  18356. name: "Upright (Full)",
  18357. image: {
  18358. source: "./media/characters/cafat/upright-full.svg",
  18359. bottom: 0.01
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Small",
  18366. height: math.unit(4, "feet"),
  18367. default: true
  18368. },
  18369. {
  18370. name: "Large",
  18371. height: math.unit(13, "feet")
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18377. {
  18378. front: {
  18379. height: math.unit(6, "feet"),
  18380. weight: math.unit(150, "lb"),
  18381. name: "Front",
  18382. image: {
  18383. source: "./media/characters/verin-raharra/front.svg",
  18384. extra: 5019 / 4835,
  18385. bottom: 0.023
  18386. }
  18387. },
  18388. },
  18389. [
  18390. {
  18391. name: "Normal",
  18392. height: math.unit(7 + 5 / 12, "feet"),
  18393. default: true
  18394. },
  18395. {
  18396. name: "Upsized",
  18397. height: math.unit(20, "feet")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(7, "feet"),
  18406. weight: math.unit(230, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/nakata/front.svg",
  18410. extra: 1.005,
  18411. bottom: 0.01
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(7, "feet"),
  18419. default: true
  18420. },
  18421. {
  18422. name: "Big",
  18423. height: math.unit(14, "feet")
  18424. },
  18425. {
  18426. name: "Macro",
  18427. height: math.unit(400, "feet")
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18433. {
  18434. front: {
  18435. height: math.unit(4.91, "feet"),
  18436. weight: math.unit(100, "lb"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/lily/front.svg",
  18440. extra: 1585 / 1415,
  18441. bottom: 0.02
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(4.91, "feet"),
  18449. default: true
  18450. },
  18451. ]
  18452. ))
  18453. characterMakers.push(() => makeCharacter(
  18454. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18455. {
  18456. laying: {
  18457. height: math.unit(4 + 4 / 12, "feet"),
  18458. weight: math.unit(600, "lb"),
  18459. name: "Laying",
  18460. image: {
  18461. source: "./media/characters/sheila/laying.svg",
  18462. extra: 1333 / 1265,
  18463. bottom: 0.16
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(4 + 4 / 12, "feet"),
  18471. default: true
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6, "feet"),
  18480. weight: math.unit(190, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/sax/front.svg",
  18484. extra: 1187 / 973,
  18485. bottom: 0.042
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Micro",
  18492. height: math.unit(4, "inches"),
  18493. default: true
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(6, "feet"),
  18502. weight: math.unit(150, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/pandora/front.svg",
  18506. extra: 2720 / 2556,
  18507. bottom: 0.015
  18508. }
  18509. },
  18510. back: {
  18511. height: math.unit(6, "feet"),
  18512. weight: math.unit(150, "lb"),
  18513. name: "Back",
  18514. image: {
  18515. source: "./media/characters/pandora/back.svg",
  18516. extra: 2720 / 2556,
  18517. bottom: 0.01
  18518. }
  18519. },
  18520. beans: {
  18521. height: math.unit(6 / 8, "feet"),
  18522. name: "Beans",
  18523. image: {
  18524. source: "./media/characters/pandora/beans.svg"
  18525. }
  18526. },
  18527. collar: {
  18528. height: math.unit(0.31, "feet"),
  18529. name: "Collar",
  18530. image: {
  18531. source: "./media/characters/pandora/collar.svg"
  18532. }
  18533. },
  18534. skirt: {
  18535. height: math.unit(6, "feet"),
  18536. weight: math.unit(150, "lb"),
  18537. name: "Skirt",
  18538. image: {
  18539. source: "./media/characters/pandora/skirt.svg",
  18540. extra: 1622 / 1525,
  18541. bottom: 0.015
  18542. }
  18543. },
  18544. hoodie: {
  18545. height: math.unit(6, "feet"),
  18546. weight: math.unit(150, "lb"),
  18547. name: "Hoodie",
  18548. image: {
  18549. source: "./media/characters/pandora/hoodie.svg",
  18550. extra: 1622 / 1525,
  18551. bottom: 0.015
  18552. }
  18553. },
  18554. casual: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(150, "lb"),
  18557. name: "Casual",
  18558. image: {
  18559. source: "./media/characters/pandora/casual.svg",
  18560. extra: 1622 / 1525,
  18561. bottom: 0.015
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(6, "feet")
  18569. },
  18570. {
  18571. name: "Big Steppy",
  18572. height: math.unit(1, "km"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Galactic Steppy",
  18577. height: math.unit(2, "gigameters")
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18583. {
  18584. side: {
  18585. height: math.unit(10, "feet"),
  18586. weight: math.unit(800, "kg"),
  18587. name: "Side",
  18588. image: {
  18589. source: "./media/characters/venio-darcony/side.svg",
  18590. extra: 1373 / 1003,
  18591. bottom: 0.037
  18592. }
  18593. },
  18594. front: {
  18595. height: math.unit(19, "feet"),
  18596. weight: math.unit(800, "kg"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/venio-darcony/front.svg"
  18600. }
  18601. },
  18602. back: {
  18603. height: math.unit(19, "feet"),
  18604. weight: math.unit(800, "kg"),
  18605. name: "Back",
  18606. image: {
  18607. source: "./media/characters/venio-darcony/back.svg"
  18608. }
  18609. },
  18610. sideNsfw: {
  18611. height: math.unit(10, "feet"),
  18612. weight: math.unit(800, "kg"),
  18613. name: "Side (NSFW)",
  18614. image: {
  18615. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18616. extra: 1373 / 1003,
  18617. bottom: 0.037
  18618. }
  18619. },
  18620. frontNsfw: {
  18621. height: math.unit(19, "feet"),
  18622. weight: math.unit(800, "kg"),
  18623. name: "Front (NSFW)",
  18624. image: {
  18625. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18626. }
  18627. },
  18628. backNsfw: {
  18629. height: math.unit(19, "feet"),
  18630. weight: math.unit(800, "kg"),
  18631. name: "Back (NSFW)",
  18632. image: {
  18633. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18634. }
  18635. },
  18636. sideArmored: {
  18637. height: math.unit(10, "feet"),
  18638. weight: math.unit(800, "kg"),
  18639. name: "Side (Armored)",
  18640. image: {
  18641. source: "./media/characters/venio-darcony/side-armored.svg",
  18642. extra: 1373 / 1003,
  18643. bottom: 0.037
  18644. }
  18645. },
  18646. frontArmored: {
  18647. height: math.unit(19, "feet"),
  18648. weight: math.unit(900, "kg"),
  18649. name: "Front (Armored)",
  18650. image: {
  18651. source: "./media/characters/venio-darcony/front-armored.svg"
  18652. }
  18653. },
  18654. backArmored: {
  18655. height: math.unit(19, "feet"),
  18656. weight: math.unit(900, "kg"),
  18657. name: "Back (Armored)",
  18658. image: {
  18659. source: "./media/characters/venio-darcony/back-armored.svg"
  18660. }
  18661. },
  18662. sword: {
  18663. height: math.unit(10, "feet"),
  18664. weight: math.unit(50, "lb"),
  18665. name: "Sword",
  18666. image: {
  18667. source: "./media/characters/venio-darcony/sword.svg"
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(10, "feet")
  18675. },
  18676. {
  18677. name: "Macro",
  18678. height: math.unit(130, "feet"),
  18679. default: true
  18680. },
  18681. {
  18682. name: "Macro+",
  18683. height: math.unit(240, "feet")
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(150, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/veski/front.svg",
  18696. extra: 1299 / 1225,
  18697. bottom: 0.04
  18698. }
  18699. },
  18700. back: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(150, "lb"),
  18703. name: "Back",
  18704. image: {
  18705. source: "./media/characters/veski/back.svg",
  18706. extra: 1299 / 1225,
  18707. bottom: 0.008
  18708. }
  18709. },
  18710. maw: {
  18711. height: math.unit(1.5 * 1.21, "feet"),
  18712. name: "Maw",
  18713. image: {
  18714. source: "./media/characters/veski/maw.svg"
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(2, "km"),
  18722. default: true
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18728. {
  18729. front: {
  18730. height: math.unit(5 + 7 / 12, "feet"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/isabelle/front.svg",
  18734. extra: 2130 / 1976,
  18735. bottom: 0.05
  18736. }
  18737. },
  18738. },
  18739. [
  18740. {
  18741. name: "Supermicro",
  18742. height: math.unit(10, "micrometers")
  18743. },
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(1, "inch")
  18747. },
  18748. {
  18749. name: "Tiny",
  18750. height: math.unit(5, "inches")
  18751. },
  18752. {
  18753. name: "Standard",
  18754. height: math.unit(5 + 7 / 12, "inches")
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(80, "meters"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Megamacro",
  18763. height: math.unit(250, "meters")
  18764. },
  18765. {
  18766. name: "Gigamacro",
  18767. height: math.unit(5, "km")
  18768. },
  18769. {
  18770. name: "Cosmic",
  18771. height: math.unit(2.5e6, "miles")
  18772. },
  18773. ]
  18774. ))
  18775. characterMakers.push(() => makeCharacter(
  18776. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18777. {
  18778. front: {
  18779. height: math.unit(6, "feet"),
  18780. weight: math.unit(150, "lb"),
  18781. name: "Front",
  18782. image: {
  18783. source: "./media/characters/hanzo/front.svg",
  18784. extra: 374 / 344,
  18785. bottom: 0.02
  18786. }
  18787. },
  18788. },
  18789. [
  18790. {
  18791. name: "Normal",
  18792. height: math.unit(8, "feet"),
  18793. default: true
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(7, "feet"),
  18802. weight: math.unit(130, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/anna/front.svg",
  18806. extra: 169 / 145,
  18807. bottom: 0.06
  18808. }
  18809. },
  18810. full: {
  18811. height: math.unit(4.96, "feet"),
  18812. weight: math.unit(220, "lb"),
  18813. name: "Full",
  18814. image: {
  18815. source: "./media/characters/anna/full.svg",
  18816. extra: 138 / 114,
  18817. bottom: 0.15
  18818. }
  18819. },
  18820. tongue: {
  18821. height: math.unit(2.53, "feet"),
  18822. name: "Tongue",
  18823. image: {
  18824. source: "./media/characters/anna/tongue.svg"
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(7, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(7 + 1/12, "feet"),
  18841. weight: math.unit(150, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/ian-corvid/front.svg",
  18845. extra: 621/591,
  18846. bottom: 14/635
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(7 + 1/12, "feet"),
  18851. weight: math.unit(150, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/ian-corvid/back.svg",
  18855. extra: 621/600,
  18856. bottom: 10/631
  18857. }
  18858. },
  18859. stomping: {
  18860. height: math.unit(7 + 1/12, "feet"),
  18861. weight: math.unit(150, "lb"),
  18862. name: "Stomping",
  18863. image: {
  18864. source: "./media/characters/ian-corvid/stomping.svg",
  18865. extra: 309/291,
  18866. bottom: 7/316
  18867. }
  18868. },
  18869. tongue: {
  18870. height: math.unit(3.9, "feet"),
  18871. name: "Tongue",
  18872. image: {
  18873. source: "./media/characters/ian-corvid/tongue.svg"
  18874. }
  18875. },
  18876. beak: {
  18877. height: math.unit(0.9, "feet"),
  18878. name: "Beak",
  18879. image: {
  18880. source: "./media/characters/ian-corvid/beak.svg"
  18881. }
  18882. },
  18883. sitting: {
  18884. height: math.unit(7 / 1.8, "feet"),
  18885. weight: math.unit(150, "lb"),
  18886. name: "Sitting",
  18887. image: {
  18888. source: "./media/characters/ian-corvid/sitting.svg",
  18889. extra: 1400 / 1269,
  18890. bottom: 0.15
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Tiny Microw",
  18897. height: math.unit(1, "inch")
  18898. },
  18899. {
  18900. name: "Microw",
  18901. height: math.unit(6, "inches")
  18902. },
  18903. {
  18904. name: "Crow",
  18905. height: math.unit(7 + 1 / 12, "feet"),
  18906. default: true
  18907. },
  18908. {
  18909. name: "Macrow",
  18910. height: math.unit(176, "feet")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Natalie Kellon", species: ["red-fox"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(5 + 7/12, "feet"),
  18919. weight: math.unit(170, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/natalie-kellon/front.svg",
  18923. extra: 1723/1656,
  18924. bottom: 87/1810
  18925. },
  18926. extraAttributes: {
  18927. "tailLength": {
  18928. name: "Tail Length",
  18929. power: 1,
  18930. type: "length",
  18931. base: math.unit(2 + 6/12, "feet")
  18932. },
  18933. }
  18934. },
  18935. back: {
  18936. height: math.unit(5 + 7/12, "feet"),
  18937. weight: math.unit(170, "lb"),
  18938. name: "Back",
  18939. image: {
  18940. source: "./media/characters/natalie-kellon/back.svg",
  18941. extra: 1738/1663,
  18942. bottom: 30/1768
  18943. },
  18944. extraAttributes: {
  18945. "tailLength": {
  18946. name: "Tail Length",
  18947. power: 1,
  18948. type: "length",
  18949. base: math.unit(2 + 6/12, "feet")
  18950. },
  18951. }
  18952. },
  18953. head: {
  18954. height: math.unit(1.67769, "feet"),
  18955. name: "Head",
  18956. image: {
  18957. source: "./media/characters/natalie-kellon/head.svg"
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Tiny",
  18964. height: math.unit(1/16, "inches")
  18965. },
  18966. {
  18967. name: "Micro",
  18968. height: math.unit(1, "inch")
  18969. },
  18970. {
  18971. name: "Small",
  18972. height: math.unit(5, "inches")
  18973. },
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(5 + 7/12, "feet"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Amazon",
  18981. height: math.unit(13 + 6/12, "feet")
  18982. },
  18983. {
  18984. name: "Giantess",
  18985. height: math.unit(50, "feet")
  18986. },
  18987. {
  18988. name: "Massive",
  18989. height: math.unit(200, "feet")
  18990. },
  18991. {
  18992. name: "Titaness",
  18993. height: math.unit(2, "miles")
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18999. {
  19000. front: {
  19001. height: math.unit(6, "feet"),
  19002. weight: math.unit(150, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/alluria/front.svg",
  19006. extra: 806 / 738,
  19007. bottom: 0.01
  19008. }
  19009. },
  19010. side: {
  19011. height: math.unit(6, "feet"),
  19012. weight: math.unit(150, "lb"),
  19013. name: "Side",
  19014. image: {
  19015. source: "./media/characters/alluria/side.svg",
  19016. extra: 800 / 750,
  19017. }
  19018. },
  19019. back: {
  19020. height: math.unit(6, "feet"),
  19021. weight: math.unit(150, "lb"),
  19022. name: "Back",
  19023. image: {
  19024. source: "./media/characters/alluria/back.svg",
  19025. extra: 806 / 738,
  19026. }
  19027. },
  19028. frontMaid: {
  19029. height: math.unit(6, "feet"),
  19030. weight: math.unit(150, "lb"),
  19031. name: "Front (Maid)",
  19032. image: {
  19033. source: "./media/characters/alluria/front-maid.svg",
  19034. extra: 806 / 738,
  19035. bottom: 0.01
  19036. }
  19037. },
  19038. sideMaid: {
  19039. height: math.unit(6, "feet"),
  19040. weight: math.unit(150, "lb"),
  19041. name: "Side (Maid)",
  19042. image: {
  19043. source: "./media/characters/alluria/side-maid.svg",
  19044. extra: 800 / 750,
  19045. bottom: 0.005
  19046. }
  19047. },
  19048. backMaid: {
  19049. height: math.unit(6, "feet"),
  19050. weight: math.unit(150, "lb"),
  19051. name: "Back (Maid)",
  19052. image: {
  19053. source: "./media/characters/alluria/back-maid.svg",
  19054. extra: 806 / 738,
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Micro",
  19061. height: math.unit(6, "inches"),
  19062. default: true
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  19068. {
  19069. front: {
  19070. height: math.unit(6, "feet"),
  19071. weight: math.unit(150, "lb"),
  19072. name: "Front",
  19073. image: {
  19074. source: "./media/characters/kyle/front.svg",
  19075. extra: 1069 / 962,
  19076. bottom: 77.228 / 1727.45
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Macro",
  19083. height: math.unit(150, "feet"),
  19084. default: true
  19085. },
  19086. ]
  19087. ))
  19088. characterMakers.push(() => makeCharacter(
  19089. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  19090. {
  19091. front: {
  19092. height: math.unit(6, "feet"),
  19093. weight: math.unit(300, "lb"),
  19094. name: "Front",
  19095. image: {
  19096. source: "./media/characters/duncan/front.svg",
  19097. extra: 1650 / 1482,
  19098. bottom: 0.05
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(100, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(5 + 4 / 12, "feet"),
  19115. weight: math.unit(220, "lb"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/memory/front.svg",
  19119. extra: 3641 / 3545,
  19120. bottom: 0.03
  19121. }
  19122. },
  19123. back: {
  19124. height: math.unit(5 + 4 / 12, "feet"),
  19125. weight: math.unit(220, "lb"),
  19126. name: "Back",
  19127. image: {
  19128. source: "./media/characters/memory/back.svg",
  19129. extra: 3641 / 3545,
  19130. bottom: 0.025
  19131. }
  19132. },
  19133. frontSkirt: {
  19134. height: math.unit(5 + 4 / 12, "feet"),
  19135. weight: math.unit(220, "lb"),
  19136. name: "Front (Skirt)",
  19137. image: {
  19138. source: "./media/characters/memory/front-skirt.svg",
  19139. extra: 3641 / 3545,
  19140. bottom: 0.03
  19141. }
  19142. },
  19143. frontDress: {
  19144. height: math.unit(5 + 4 / 12, "feet"),
  19145. weight: math.unit(220, "lb"),
  19146. name: "Front (Dress)",
  19147. image: {
  19148. source: "./media/characters/memory/front-dress.svg",
  19149. extra: 3641 / 3545,
  19150. bottom: 0.03
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Micro",
  19157. height: math.unit(6, "inches"),
  19158. default: true
  19159. },
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(5 + 4 / 12, "feet")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(4 + 11 / 12, "feet"),
  19171. weight: math.unit(100, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/luno/front.svg",
  19175. extra: 1535 / 1487,
  19176. bottom: 0.03
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Micro",
  19183. height: math.unit(3, "inches")
  19184. },
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(4 + 11 / 12, "feet"),
  19188. default: true
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(300, "feet")
  19193. },
  19194. {
  19195. name: "Megamacro",
  19196. height: math.unit(700, "miles")
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(6 + 2 / 12, "feet"),
  19205. weight: math.unit(170, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/jamesy/front.svg",
  19209. extra: 440 / 382,
  19210. bottom: 0.005
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Micro",
  19217. height: math.unit(3, "inches")
  19218. },
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 2 / 12, "feet"),
  19222. default: true
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(300, "feet")
  19227. },
  19228. {
  19229. name: "Megamacro",
  19230. height: math.unit(700, "miles")
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6, "feet"),
  19239. weight: math.unit(160, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/mark/front.svg",
  19243. extra: 3300 / 3100,
  19244. bottom: 136.42 / 3440.47
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Macro",
  19251. height: math.unit(120, "meters")
  19252. },
  19253. {
  19254. name: "Bigger Macro",
  19255. height: math.unit(350, "meters")
  19256. },
  19257. {
  19258. name: "Megamacro",
  19259. height: math.unit(8, "km"),
  19260. default: true
  19261. },
  19262. {
  19263. name: "Continental",
  19264. height: math.unit(4550, "km")
  19265. },
  19266. {
  19267. name: "Planetary",
  19268. height: math.unit(65000, "km")
  19269. },
  19270. ]
  19271. ))
  19272. characterMakers.push(() => makeCharacter(
  19273. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19274. {
  19275. front: {
  19276. height: math.unit(6, "feet"),
  19277. weight: math.unit(400, "lb"),
  19278. name: "Front",
  19279. image: {
  19280. source: "./media/characters/mac/front.svg",
  19281. extra: 1048 / 987.7,
  19282. bottom: 60 / 1107.6,
  19283. }
  19284. },
  19285. },
  19286. [
  19287. {
  19288. name: "Macro",
  19289. height: math.unit(500, "feet"),
  19290. default: true
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19296. {
  19297. front: {
  19298. height: math.unit(5 + 2 / 12, "feet"),
  19299. weight: math.unit(190, "lb"),
  19300. name: "Front",
  19301. image: {
  19302. source: "./media/characters/bari/front.svg",
  19303. extra: 3156 / 2880,
  19304. bottom: 0.03
  19305. }
  19306. },
  19307. back: {
  19308. height: math.unit(5 + 2 / 12, "feet"),
  19309. weight: math.unit(190, "lb"),
  19310. name: "Back",
  19311. image: {
  19312. source: "./media/characters/bari/back.svg",
  19313. extra: 3260 / 2834,
  19314. bottom: 0.025
  19315. }
  19316. },
  19317. frontPlush: {
  19318. height: math.unit(5 + 2 / 12, "feet"),
  19319. weight: math.unit(190, "lb"),
  19320. name: "Front (Plush)",
  19321. image: {
  19322. source: "./media/characters/bari/front-plush.svg",
  19323. extra: 1112 / 1061,
  19324. bottom: 0.002
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Micro",
  19331. height: math.unit(3, "inches")
  19332. },
  19333. {
  19334. name: "Normal",
  19335. height: math.unit(5 + 2 / 12, "feet"),
  19336. default: true
  19337. },
  19338. {
  19339. name: "Macro",
  19340. height: math.unit(20, "feet")
  19341. },
  19342. ]
  19343. ))
  19344. characterMakers.push(() => makeCharacter(
  19345. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19346. {
  19347. front: {
  19348. height: math.unit(6 + 1 / 12, "feet"),
  19349. weight: math.unit(275, "lb"),
  19350. name: "Front",
  19351. image: {
  19352. source: "./media/characters/hunter-misha-raven/front.svg"
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Mortal",
  19359. height: math.unit(6 + 1 / 12, "feet")
  19360. },
  19361. {
  19362. name: "Divine",
  19363. height: math.unit(1.12134e34, "parsecs"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(6 + 3 / 12, "feet"),
  19373. weight: math.unit(220, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/max-calore/front.svg",
  19377. extra: 1700 / 1648,
  19378. bottom: 0.01
  19379. }
  19380. },
  19381. back: {
  19382. height: math.unit(6 + 3 / 12, "feet"),
  19383. weight: math.unit(220, "lb"),
  19384. name: "Back",
  19385. image: {
  19386. source: "./media/characters/max-calore/back.svg",
  19387. extra: 1700 / 1648,
  19388. bottom: 0.01
  19389. }
  19390. },
  19391. },
  19392. [
  19393. {
  19394. name: "Normal",
  19395. height: math.unit(6 + 3 / 12, "feet"),
  19396. default: true
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19402. {
  19403. side: {
  19404. height: math.unit(2 + 8 / 12, "feet"),
  19405. weight: math.unit(99, "lb"),
  19406. name: "Side",
  19407. image: {
  19408. source: "./media/characters/aspen/side.svg",
  19409. extra: 152 / 138,
  19410. bottom: 0.032
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(2 + 8 / 12, "feet"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19424. {
  19425. side: {
  19426. height: math.unit(3 + 2 / 12, "feet"),
  19427. weight: math.unit(224, "lb"),
  19428. name: "Side",
  19429. image: {
  19430. source: "./media/characters/sheila-feral-wolf/side.svg",
  19431. extra: 179 / 166,
  19432. bottom: 0.03
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(3 + 2 / 12, "feet"),
  19440. default: true
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19446. {
  19447. side: {
  19448. height: math.unit(1 + 9 / 12, "feet"),
  19449. weight: math.unit(38, "lb"),
  19450. name: "Side",
  19451. image: {
  19452. source: "./media/characters/michelle/side.svg",
  19453. extra: 147 / 136.7,
  19454. bottom: 0.03
  19455. }
  19456. },
  19457. },
  19458. [
  19459. {
  19460. name: "Normal",
  19461. height: math.unit(1 + 9 / 12, "feet"),
  19462. default: true
  19463. },
  19464. ]
  19465. ))
  19466. characterMakers.push(() => makeCharacter(
  19467. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19468. {
  19469. front: {
  19470. height: math.unit(1.54, "feet"),
  19471. weight: math.unit(50, "lb"),
  19472. name: "Front",
  19473. image: {
  19474. source: "./media/characters/nino/front.svg"
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(1.54, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(1.49, "feet"),
  19491. weight: math.unit(45, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/viola/front.svg"
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(1.49, "feet"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(6 + 5 / 12, "feet"),
  19511. weight: math.unit(580, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/atlas/front.svg",
  19515. extra: 298.5 / 290,
  19516. bottom: 0.015
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(6 + 5 / 12, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19530. {
  19531. side: {
  19532. height: math.unit(15.6, "inches"),
  19533. weight: math.unit(10, "lb"),
  19534. name: "Side",
  19535. image: {
  19536. source: "./media/characters/davy/side.svg",
  19537. extra: 200 / 170,
  19538. bottom: 0.01
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(15.6, "inches"),
  19546. default: true
  19547. },
  19548. ]
  19549. ))
  19550. characterMakers.push(() => makeCharacter(
  19551. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19552. {
  19553. side: {
  19554. height: math.unit(4 + 8 / 12, "feet"),
  19555. weight: math.unit(166, "lb"),
  19556. name: "Side",
  19557. image: {
  19558. source: "./media/characters/fiona/side.svg",
  19559. extra: 232 / 220,
  19560. bottom: 0.03
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(4 + 8 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19574. {
  19575. front: {
  19576. height: math.unit(26, "inches"),
  19577. weight: math.unit(35, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/lyla/front.svg",
  19581. bottom: 0.1
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Normal",
  19588. height: math.unit(3, "feet"),
  19589. default: true
  19590. },
  19591. ]
  19592. ))
  19593. characterMakers.push(() => makeCharacter(
  19594. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19595. {
  19596. side: {
  19597. height: math.unit(1.8, "feet"),
  19598. weight: math.unit(44, "lb"),
  19599. name: "Side",
  19600. image: {
  19601. source: "./media/characters/perseus/side.svg",
  19602. bottom: 0.21
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(1.8, "feet"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19616. {
  19617. side: {
  19618. height: math.unit(4 + 2 / 12, "feet"),
  19619. weight: math.unit(20, "lb"),
  19620. name: "Side",
  19621. image: {
  19622. source: "./media/characters/remus/side.svg"
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(4 + 2 / 12, "feet"),
  19630. default: true
  19631. },
  19632. ]
  19633. ))
  19634. characterMakers.push(() => makeCharacter(
  19635. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19636. {
  19637. front: {
  19638. height: math.unit(4 + 11 / 12, "feet"),
  19639. weight: math.unit(114, "lb"),
  19640. name: "Front",
  19641. image: {
  19642. source: "./media/characters/raf/front.svg",
  19643. extra: 1504/1339,
  19644. bottom: 26/1530
  19645. }
  19646. },
  19647. side: {
  19648. height: math.unit(4 + 11 / 12, "feet"),
  19649. weight: math.unit(114, "lb"),
  19650. name: "Side",
  19651. image: {
  19652. source: "./media/characters/raf/side.svg",
  19653. extra: 1466/1316,
  19654. bottom: 29/1495
  19655. }
  19656. },
  19657. paw: {
  19658. height: math.unit(1.45, "feet"),
  19659. name: "Paw",
  19660. image: {
  19661. source: "./media/characters/raf/paw.svg"
  19662. },
  19663. extraAttributes: {
  19664. "toeSize": {
  19665. name: "Toe Size",
  19666. power: 2,
  19667. type: "area",
  19668. base: math.unit(0.004, "m^2")
  19669. },
  19670. "padSize": {
  19671. name: "Pad Size",
  19672. power: 2,
  19673. type: "area",
  19674. base: math.unit(0.04, "m^2")
  19675. },
  19676. "footSize": {
  19677. name: "Foot Size",
  19678. power: 2,
  19679. type: "area",
  19680. base: math.unit(0.08, "m^2")
  19681. },
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Micro",
  19688. height: math.unit(2, "inches")
  19689. },
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(4 + 11 / 12, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(70, "feet")
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19703. {
  19704. front: {
  19705. height: math.unit(1.5, "meters"),
  19706. weight: math.unit(68, "kg"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/liam-einarr/front.svg",
  19710. extra: 2822 / 2666
  19711. }
  19712. },
  19713. back: {
  19714. height: math.unit(1.5, "meters"),
  19715. weight: math.unit(68, "kg"),
  19716. name: "Back",
  19717. image: {
  19718. source: "./media/characters/liam-einarr/back.svg",
  19719. extra: 2822 / 2666,
  19720. bottom: 0.015
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(1.5, "meters"),
  19728. default: true
  19729. },
  19730. {
  19731. name: "Macro",
  19732. height: math.unit(150, "meters")
  19733. },
  19734. {
  19735. name: "Megamacro",
  19736. height: math.unit(35, "km")
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(6, "feet"),
  19745. weight: math.unit(75, "kg"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/linda/front.svg",
  19749. extra: 930 / 874,
  19750. bottom: 0.004
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(6, "feet"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(6 + 8 / 12, "feet"),
  19767. weight: math.unit(220, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/caylex/front.svg",
  19771. extra: 821 / 772,
  19772. bottom: 0.07
  19773. }
  19774. },
  19775. back: {
  19776. height: math.unit(6 + 8 / 12, "feet"),
  19777. weight: math.unit(220, "lb"),
  19778. name: "Back",
  19779. image: {
  19780. source: "./media/characters/caylex/back.svg",
  19781. extra: 821 / 772,
  19782. bottom: 0.022
  19783. }
  19784. },
  19785. hand: {
  19786. height: math.unit(1.25, "feet"),
  19787. name: "Hand",
  19788. image: {
  19789. source: "./media/characters/caylex/hand.svg"
  19790. }
  19791. },
  19792. foot: {
  19793. height: math.unit(1.6, "feet"),
  19794. name: "Foot",
  19795. image: {
  19796. source: "./media/characters/caylex/foot.svg"
  19797. }
  19798. },
  19799. armored: {
  19800. height: math.unit(6 + 8 / 12, "feet"),
  19801. weight: math.unit(250, "lb"),
  19802. name: "Armored",
  19803. image: {
  19804. source: "./media/characters/caylex/armored.svg",
  19805. extra: 1420 / 1310,
  19806. bottom: 0.045
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(6 + 8 / 12, "feet"),
  19814. default: true
  19815. },
  19816. {
  19817. name: "Normal+",
  19818. height: math.unit(12, "feet")
  19819. },
  19820. ]
  19821. ))
  19822. characterMakers.push(() => makeCharacter(
  19823. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19824. {
  19825. front: {
  19826. height: math.unit(7 + 6 / 12, "feet"),
  19827. weight: math.unit(288, "lb"),
  19828. name: "Front",
  19829. image: {
  19830. source: "./media/characters/alana/front.svg",
  19831. extra: 679 / 653,
  19832. bottom: 22.5 / 701
  19833. }
  19834. },
  19835. },
  19836. [
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(7 + 6 / 12, "feet")
  19840. },
  19841. {
  19842. name: "Large",
  19843. height: math.unit(50, "feet")
  19844. },
  19845. {
  19846. name: "Macro",
  19847. height: math.unit(100, "feet"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Macro+",
  19852. height: math.unit(200, "feet")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(6 + 1 / 12, "feet"),
  19861. weight: math.unit(210, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/hasani/front.svg",
  19865. extra: 244 / 232,
  19866. bottom: 0.01
  19867. }
  19868. },
  19869. back: {
  19870. height: math.unit(6 + 1 / 12, "feet"),
  19871. weight: math.unit(210, "lb"),
  19872. name: "Back",
  19873. image: {
  19874. source: "./media/characters/hasani/back.svg",
  19875. extra: 244 / 232,
  19876. bottom: 0.01
  19877. }
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(6 + 1 / 12, "feet")
  19884. },
  19885. {
  19886. name: "Macro",
  19887. height: math.unit(175, "feet"),
  19888. default: true
  19889. },
  19890. ]
  19891. ))
  19892. characterMakers.push(() => makeCharacter(
  19893. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19894. {
  19895. front: {
  19896. height: math.unit(1.82, "meters"),
  19897. weight: math.unit(140, "lb"),
  19898. name: "Front",
  19899. image: {
  19900. source: "./media/characters/nita/front.svg",
  19901. extra: 2473 / 2363,
  19902. bottom: 0.01
  19903. }
  19904. },
  19905. },
  19906. [
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(1.82, "m")
  19910. },
  19911. {
  19912. name: "Macro",
  19913. height: math.unit(300, "m")
  19914. },
  19915. {
  19916. name: "Mistake Canon",
  19917. height: math.unit(0.5, "miles"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Big Mistake",
  19922. height: math.unit(13, "miles")
  19923. },
  19924. {
  19925. name: "Playing God",
  19926. height: math.unit(2450, "miles")
  19927. },
  19928. ]
  19929. ))
  19930. characterMakers.push(() => makeCharacter(
  19931. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19932. {
  19933. front: {
  19934. height: math.unit(4, "feet"),
  19935. weight: math.unit(120, "lb"),
  19936. name: "Front",
  19937. image: {
  19938. source: "./media/characters/shiriko/front.svg",
  19939. extra: 970/934,
  19940. bottom: 5/975
  19941. }
  19942. },
  19943. },
  19944. [
  19945. {
  19946. name: "Normal",
  19947. height: math.unit(4, "feet"),
  19948. default: true
  19949. },
  19950. ]
  19951. ))
  19952. characterMakers.push(() => makeCharacter(
  19953. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19954. {
  19955. front: {
  19956. height: math.unit(6, "feet"),
  19957. name: "front",
  19958. image: {
  19959. source: "./media/characters/deja/front.svg",
  19960. extra: 926 / 840,
  19961. bottom: 0.07
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Planck Length",
  19968. height: math.unit(1.6e-35, "meters")
  19969. },
  19970. {
  19971. name: "Normal",
  19972. height: math.unit(30.48, "meters"),
  19973. default: true
  19974. },
  19975. {
  19976. name: "Universal",
  19977. height: math.unit(8.8e26, "meters")
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19983. {
  19984. side: {
  19985. height: math.unit(8, "feet"),
  19986. weight: math.unit(6300, "lb"),
  19987. name: "Side",
  19988. image: {
  19989. source: "./media/characters/anima/side.svg",
  19990. bottom: 0.035
  19991. }
  19992. },
  19993. },
  19994. [
  19995. {
  19996. name: "Normal",
  19997. height: math.unit(8, "feet"),
  19998. default: true
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(8, "feet"),
  20007. weight: math.unit(350, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/bianca/front.svg",
  20011. extra: 234 / 225,
  20012. bottom: 0.03
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(8, "feet"),
  20020. default: true
  20021. },
  20022. ]
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  20026. {
  20027. front: {
  20028. height: math.unit(11 + 5/12, "feet"),
  20029. weight: math.unit(1200, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/adinia/front.svg",
  20033. extra: 1767/1641,
  20034. bottom: 44/1811
  20035. },
  20036. extraAttributes: {
  20037. "energyIntake": {
  20038. name: "Energy Intake",
  20039. power: 3,
  20040. type: "energy",
  20041. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20042. },
  20043. }
  20044. },
  20045. back: {
  20046. height: math.unit(11 + 5/12, "feet"),
  20047. weight: math.unit(1200, "lb"),
  20048. name: "Back",
  20049. image: {
  20050. source: "./media/characters/adinia/back.svg",
  20051. extra: 1834/1684,
  20052. bottom: 14/1848
  20053. },
  20054. extraAttributes: {
  20055. "energyIntake": {
  20056. name: "Energy Intake",
  20057. power: 3,
  20058. type: "energy",
  20059. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  20060. },
  20061. }
  20062. },
  20063. maw: {
  20064. height: math.unit(3.79, "feet"),
  20065. name: "Maw",
  20066. image: {
  20067. source: "./media/characters/adinia/maw.svg"
  20068. }
  20069. },
  20070. rump: {
  20071. height: math.unit(4.6, "feet"),
  20072. name: "Rump",
  20073. image: {
  20074. source: "./media/characters/adinia/rump.svg"
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(11 + 5 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  20088. {
  20089. front: {
  20090. height: math.unit(3, "meters"),
  20091. weight: math.unit(200, "kg"),
  20092. name: "Front",
  20093. image: {
  20094. source: "./media/characters/lykasa/front.svg",
  20095. extra: 1076 / 976,
  20096. bottom: 0.06
  20097. }
  20098. },
  20099. },
  20100. [
  20101. {
  20102. name: "Normal",
  20103. height: math.unit(3, "meters")
  20104. },
  20105. {
  20106. name: "Kaiju",
  20107. height: math.unit(120, "meters"),
  20108. default: true
  20109. },
  20110. {
  20111. name: "Mega Kaiju",
  20112. height: math.unit(240, "km")
  20113. },
  20114. {
  20115. name: "Giga Kaiju",
  20116. height: math.unit(400, "megameters")
  20117. },
  20118. {
  20119. name: "Tera Kaiju",
  20120. height: math.unit(800, "gigameters")
  20121. },
  20122. {
  20123. name: "Kaiju Dragon Goddess",
  20124. height: math.unit(26, "zettaparsecs")
  20125. },
  20126. ]
  20127. ))
  20128. characterMakers.push(() => makeCharacter(
  20129. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20130. {
  20131. side: {
  20132. height: math.unit(283 / 124 * 6, "feet"),
  20133. weight: math.unit(35000, "lb"),
  20134. name: "Side",
  20135. image: {
  20136. source: "./media/characters/malfaren/side.svg",
  20137. extra: 1310/529,
  20138. bottom: 24/1334
  20139. }
  20140. },
  20141. front: {
  20142. height: math.unit(22.36, "feet"),
  20143. weight: math.unit(35000, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/malfaren/front.svg",
  20147. extra: 1237/1115,
  20148. bottom: 32/1269
  20149. }
  20150. },
  20151. maw: {
  20152. height: math.unit(6.9, "feet"),
  20153. name: "Maw",
  20154. image: {
  20155. source: "./media/characters/malfaren/maw.svg"
  20156. }
  20157. },
  20158. dick: {
  20159. height: math.unit(6.19, "feet"),
  20160. name: "Dick",
  20161. image: {
  20162. source: "./media/characters/malfaren/dick.svg"
  20163. }
  20164. },
  20165. eye: {
  20166. height: math.unit(0.69, "feet"),
  20167. name: "Eye",
  20168. image: {
  20169. source: "./media/characters/malfaren/eye.svg"
  20170. }
  20171. },
  20172. },
  20173. [
  20174. {
  20175. name: "Big",
  20176. height: math.unit(283 / 162 * 6, "feet"),
  20177. },
  20178. {
  20179. name: "Bigger",
  20180. height: math.unit(283 / 124 * 6, "feet")
  20181. },
  20182. {
  20183. name: "Massive",
  20184. height: math.unit(283 / 92 * 6, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "👀💦",
  20189. height: math.unit(283 / 73 * 6, "feet"),
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(1.7, "m"),
  20198. weight: math.unit(70, "kg"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/kernel/front.svg",
  20202. extra: 1960/1821,
  20203. bottom: 17/1977
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Nano",
  20210. height: math.unit(17, "micrometers")
  20211. },
  20212. {
  20213. name: "Micro",
  20214. height: math.unit(1.7, "mm")
  20215. },
  20216. {
  20217. name: "Small",
  20218. height: math.unit(1.7, "cm")
  20219. },
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(1.7, "m"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20229. {
  20230. front: {
  20231. height: math.unit(1.75, "meters"),
  20232. weight: math.unit(65, "kg"),
  20233. name: "Front",
  20234. image: {
  20235. source: "./media/characters/jayne-folest/front.svg",
  20236. extra: 2115 / 2007,
  20237. bottom: 0.02
  20238. }
  20239. },
  20240. back: {
  20241. height: math.unit(1.75, "meters"),
  20242. weight: math.unit(65, "kg"),
  20243. name: "Back",
  20244. image: {
  20245. source: "./media/characters/jayne-folest/back.svg",
  20246. extra: 2115 / 2007,
  20247. bottom: 0.005
  20248. }
  20249. },
  20250. frontClothed: {
  20251. height: math.unit(1.75, "meters"),
  20252. weight: math.unit(65, "kg"),
  20253. name: "Front (Clothed)",
  20254. image: {
  20255. source: "./media/characters/jayne-folest/front-clothed.svg",
  20256. extra: 2115 / 2007,
  20257. bottom: 0.035
  20258. }
  20259. },
  20260. hand: {
  20261. height: math.unit(1 / 1.260, "feet"),
  20262. name: "Hand",
  20263. image: {
  20264. source: "./media/characters/jayne-folest/hand.svg"
  20265. }
  20266. },
  20267. foot: {
  20268. height: math.unit(1 / 0.918, "feet"),
  20269. name: "Foot",
  20270. image: {
  20271. source: "./media/characters/jayne-folest/foot.svg"
  20272. }
  20273. },
  20274. },
  20275. [
  20276. {
  20277. name: "Micro",
  20278. height: math.unit(4, "cm")
  20279. },
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(1.75, "meters")
  20283. },
  20284. {
  20285. name: "Macro",
  20286. height: math.unit(47.5, "meters"),
  20287. default: true
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(180, "cm"),
  20296. weight: math.unit(70, "kg"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/algier/front.svg",
  20300. extra: 596 / 572,
  20301. bottom: 0.04
  20302. }
  20303. },
  20304. back: {
  20305. height: math.unit(180, "cm"),
  20306. weight: math.unit(70, "kg"),
  20307. name: "Back",
  20308. image: {
  20309. source: "./media/characters/algier/back.svg",
  20310. extra: 596 / 572,
  20311. bottom: 0.025
  20312. }
  20313. },
  20314. frontdressed: {
  20315. height: math.unit(180, "cm"),
  20316. weight: math.unit(150, "kg"),
  20317. name: "Front (Dressed)",
  20318. image: {
  20319. source: "./media/characters/algier/front-dressed.svg",
  20320. extra: 596 / 572,
  20321. bottom: 0.038
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Micro",
  20328. height: math.unit(5, "cm")
  20329. },
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(180, "cm"),
  20333. default: true
  20334. },
  20335. {
  20336. name: "Macro",
  20337. height: math.unit(64, "m")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20343. {
  20344. upright: {
  20345. height: math.unit(7, "feet"),
  20346. weight: math.unit(300, "lb"),
  20347. name: "Upright",
  20348. image: {
  20349. source: "./media/characters/pretzel/upright.svg",
  20350. extra: 534 / 522,
  20351. bottom: 0.065
  20352. }
  20353. },
  20354. sprawling: {
  20355. height: math.unit(3.75, "feet"),
  20356. weight: math.unit(300, "lb"),
  20357. name: "Sprawling",
  20358. image: {
  20359. source: "./media/characters/pretzel/sprawling.svg",
  20360. extra: 314 / 281,
  20361. bottom: 0.1
  20362. }
  20363. },
  20364. tongue: {
  20365. height: math.unit(2, "feet"),
  20366. name: "Tongue",
  20367. image: {
  20368. source: "./media/characters/pretzel/tongue.svg"
  20369. }
  20370. },
  20371. },
  20372. [
  20373. {
  20374. name: "Normal",
  20375. height: math.unit(7, "feet"),
  20376. default: true
  20377. },
  20378. {
  20379. name: "Oversized",
  20380. height: math.unit(15, "feet")
  20381. },
  20382. {
  20383. name: "Huge",
  20384. height: math.unit(30, "feet")
  20385. },
  20386. {
  20387. name: "Macro",
  20388. height: math.unit(250, "feet")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20394. {
  20395. sideFront: {
  20396. height: math.unit(5 + 2 / 12, "feet"),
  20397. weight: math.unit(120, "lb"),
  20398. name: "Front Side",
  20399. image: {
  20400. source: "./media/characters/roxi/side-front.svg",
  20401. extra: 2924 / 2717,
  20402. bottom: 0.08
  20403. }
  20404. },
  20405. sideBack: {
  20406. height: math.unit(5 + 2 / 12, "feet"),
  20407. weight: math.unit(120, "lb"),
  20408. name: "Back Side",
  20409. image: {
  20410. source: "./media/characters/roxi/side-back.svg",
  20411. extra: 2904 / 2693,
  20412. bottom: 0.06
  20413. }
  20414. },
  20415. front: {
  20416. height: math.unit(5 + 2 / 12, "feet"),
  20417. weight: math.unit(120, "lb"),
  20418. name: "Front",
  20419. image: {
  20420. source: "./media/characters/roxi/front.svg",
  20421. extra: 2028 / 1907,
  20422. bottom: 0.01
  20423. }
  20424. },
  20425. frontAlt: {
  20426. height: math.unit(5 + 2 / 12, "feet"),
  20427. weight: math.unit(120, "lb"),
  20428. name: "Front (Alt)",
  20429. image: {
  20430. source: "./media/characters/roxi/front-alt.svg",
  20431. extra: 1828 / 1798,
  20432. bottom: 0.01
  20433. }
  20434. },
  20435. sitting: {
  20436. height: math.unit(2.8, "feet"),
  20437. weight: math.unit(120, "lb"),
  20438. name: "Sitting",
  20439. image: {
  20440. source: "./media/characters/roxi/sitting.svg",
  20441. extra: 2660 / 2462,
  20442. bottom: 0.1
  20443. }
  20444. },
  20445. },
  20446. [
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(5 + 2 / 12, "feet"),
  20450. default: true
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20456. {
  20457. side: {
  20458. height: math.unit(55, "feet"),
  20459. weight: math.unit(153, "tons"),
  20460. name: "Side",
  20461. image: {
  20462. source: "./media/characters/shadow/side.svg",
  20463. extra: 701 / 628,
  20464. bottom: 0.02
  20465. }
  20466. },
  20467. flying: {
  20468. height: math.unit(145, "feet"),
  20469. weight: math.unit(153, "tons"),
  20470. name: "Flying",
  20471. image: {
  20472. source: "./media/characters/shadow/flying.svg"
  20473. }
  20474. },
  20475. },
  20476. [
  20477. {
  20478. name: "Normal",
  20479. height: math.unit(55, "feet"),
  20480. default: true
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(6, "feet"),
  20489. weight: math.unit(200, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/marcie/front.svg",
  20493. extra: 960 / 876,
  20494. bottom: 58 / 1017.87
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Macro",
  20501. height: math.unit(1, "mile"),
  20502. default: true
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(7, "feet"),
  20511. weight: math.unit(200, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/kachina/front.svg",
  20515. extra: 3206/2764,
  20516. bottom: 140/3346
  20517. }
  20518. },
  20519. },
  20520. [
  20521. {
  20522. name: "Normal",
  20523. height: math.unit(7, "feet"),
  20524. default: true
  20525. },
  20526. ]
  20527. ))
  20528. characterMakers.push(() => makeCharacter(
  20529. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20530. {
  20531. looking: {
  20532. height: math.unit(2, "meters"),
  20533. weight: math.unit(300, "kg"),
  20534. name: "Looking",
  20535. image: {
  20536. source: "./media/characters/kash/looking.svg",
  20537. extra: 474 / 344,
  20538. bottom: 0.03
  20539. }
  20540. },
  20541. side: {
  20542. height: math.unit(2, "meters"),
  20543. weight: math.unit(300, "kg"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/kash/side.svg",
  20547. extra: 302 / 251,
  20548. bottom: 0.03
  20549. }
  20550. },
  20551. front: {
  20552. height: math.unit(2, "meters"),
  20553. weight: math.unit(300, "kg"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/kash/front.svg",
  20557. extra: 495 / 360,
  20558. bottom: 0.015
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(2, "meters"),
  20566. default: true
  20567. },
  20568. {
  20569. name: "Big",
  20570. height: math.unit(3, "meters")
  20571. },
  20572. {
  20573. name: "Large",
  20574. height: math.unit(5, "meters")
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20580. {
  20581. feeding: {
  20582. height: math.unit(6.7, "feet"),
  20583. weight: math.unit(350, "lb"),
  20584. name: "Feeding",
  20585. image: {
  20586. source: "./media/characters/lalim/feeding.svg",
  20587. }
  20588. },
  20589. },
  20590. [
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(6.7, "feet"),
  20594. default: true
  20595. },
  20596. ]
  20597. ))
  20598. characterMakers.push(() => makeCharacter(
  20599. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20600. {
  20601. front: {
  20602. height: math.unit(9.5, "feet"),
  20603. weight: math.unit(600, "lb"),
  20604. name: "Front",
  20605. image: {
  20606. source: "./media/characters/de'vout/front.svg",
  20607. extra: 1443 / 1328,
  20608. bottom: 0.025
  20609. }
  20610. },
  20611. back: {
  20612. height: math.unit(9.5, "feet"),
  20613. weight: math.unit(600, "lb"),
  20614. name: "Back",
  20615. image: {
  20616. source: "./media/characters/de'vout/back.svg",
  20617. extra: 1443 / 1328
  20618. }
  20619. },
  20620. frontDressed: {
  20621. height: math.unit(9.5, "feet"),
  20622. weight: math.unit(600, "lb"),
  20623. name: "Front (Dressed",
  20624. image: {
  20625. source: "./media/characters/de'vout/front-dressed.svg",
  20626. extra: 1443 / 1328,
  20627. bottom: 0.025
  20628. }
  20629. },
  20630. backDressed: {
  20631. height: math.unit(9.5, "feet"),
  20632. weight: math.unit(600, "lb"),
  20633. name: "Back (Dressed",
  20634. image: {
  20635. source: "./media/characters/de'vout/back-dressed.svg",
  20636. extra: 1443 / 1328
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Normal",
  20643. height: math.unit(9.5, "feet"),
  20644. default: true
  20645. },
  20646. ]
  20647. ))
  20648. characterMakers.push(() => makeCharacter(
  20649. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20650. {
  20651. front: {
  20652. height: math.unit(8, "feet"),
  20653. weight: math.unit(225, "lb"),
  20654. name: "Front",
  20655. image: {
  20656. source: "./media/characters/talana/front.svg",
  20657. extra: 1410 / 1300,
  20658. bottom: 0.015
  20659. }
  20660. },
  20661. frontDressed: {
  20662. height: math.unit(8, "feet"),
  20663. weight: math.unit(225, "lb"),
  20664. name: "Front (Dressed",
  20665. image: {
  20666. source: "./media/characters/talana/front-dressed.svg",
  20667. extra: 1410 / 1300,
  20668. bottom: 0.015
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(8, "feet"),
  20676. default: true
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20682. {
  20683. side: {
  20684. height: math.unit(7.2, "feet"),
  20685. weight: math.unit(150, "lb"),
  20686. name: "Side",
  20687. image: {
  20688. source: "./media/characters/xeauvok/side.svg",
  20689. extra: 1975 / 1523,
  20690. bottom: 0.07
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(7.2, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20704. {
  20705. side: {
  20706. height: math.unit(4, "meters"),
  20707. weight: math.unit(2200, "kg"),
  20708. name: "Side",
  20709. image: {
  20710. source: "./media/characters/zara/side.svg",
  20711. extra: 765/744,
  20712. bottom: 156/921
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Normal",
  20719. height: math.unit(4, "meters"),
  20720. default: true
  20721. },
  20722. ]
  20723. ))
  20724. characterMakers.push(() => makeCharacter(
  20725. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20726. {
  20727. side: {
  20728. height: math.unit(6, "feet"),
  20729. weight: math.unit(150, "lb"),
  20730. name: "Side",
  20731. image: {
  20732. source: "./media/characters/richard-dragon/side.svg",
  20733. extra: 845 / 340,
  20734. bottom: 0.017
  20735. }
  20736. },
  20737. maw: {
  20738. height: math.unit(2.97, "feet"),
  20739. name: "Maw",
  20740. image: {
  20741. source: "./media/characters/richard-dragon/maw.svg"
  20742. }
  20743. },
  20744. },
  20745. [
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(4, "feet"),
  20753. weight: math.unit(100, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/richard-smeargle/front.svg",
  20757. extra: 2952 / 2820,
  20758. bottom: 0.028
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Normal",
  20765. height: math.unit(4, "feet"),
  20766. default: true
  20767. },
  20768. {
  20769. name: "Dynamax",
  20770. height: math.unit(20, "meters")
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(6, "feet"),
  20779. weight: math.unit(110, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/klay/front.svg",
  20783. extra: 962 / 883,
  20784. bottom: 0.04
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(6, "feet"),
  20789. weight: math.unit(110, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/klay/back.svg",
  20793. extra: 962 / 883
  20794. }
  20795. },
  20796. beans: {
  20797. height: math.unit(1.15, "feet"),
  20798. name: "Beans",
  20799. image: {
  20800. source: "./media/characters/klay/beans.svg"
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Micro",
  20807. height: math.unit(6, "inches")
  20808. },
  20809. {
  20810. name: "Mini",
  20811. height: math.unit(3, "feet")
  20812. },
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(6, "feet"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Big",
  20820. height: math.unit(25, "feet")
  20821. },
  20822. {
  20823. name: "Macro",
  20824. height: math.unit(100, "feet")
  20825. },
  20826. {
  20827. name: "Megamacro",
  20828. height: math.unit(400, "feet")
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(6, "feet"),
  20837. weight: math.unit(160, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/marcus/front.svg",
  20841. extra: 734 / 676,
  20842. bottom: 0.03
  20843. }
  20844. },
  20845. },
  20846. [
  20847. {
  20848. name: "Little",
  20849. height: math.unit(6, "feet")
  20850. },
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(110, "feet"),
  20854. default: true
  20855. },
  20856. {
  20857. name: "Macro",
  20858. height: math.unit(250, "feet")
  20859. },
  20860. {
  20861. name: "Megamacro",
  20862. height: math.unit(1000, "feet")
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(7, "feet"),
  20871. weight: math.unit(275, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/claude-delroute/front.svg",
  20875. extra: 902/827,
  20876. bottom: 26/928
  20877. }
  20878. },
  20879. side: {
  20880. height: math.unit(7, "feet"),
  20881. weight: math.unit(275, "lb"),
  20882. name: "Side",
  20883. image: {
  20884. source: "./media/characters/claude-delroute/side.svg",
  20885. extra: 908/853,
  20886. bottom: 16/924
  20887. }
  20888. },
  20889. back: {
  20890. height: math.unit(7, "feet"),
  20891. weight: math.unit(275, "lb"),
  20892. name: "Back",
  20893. image: {
  20894. source: "./media/characters/claude-delroute/back.svg",
  20895. extra: 911/829,
  20896. bottom: 18/929
  20897. }
  20898. },
  20899. maw: {
  20900. height: math.unit(0.6407, "meters"),
  20901. name: "Maw",
  20902. image: {
  20903. source: "./media/characters/claude-delroute/maw.svg"
  20904. }
  20905. },
  20906. },
  20907. [
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(7, "feet"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Lorge",
  20915. height: math.unit(20, "feet")
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(8 + 4 / 12, "feet"),
  20924. weight: math.unit(600, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/dragonien/front.svg",
  20928. extra: 100 / 94,
  20929. bottom: 3.3 / 103.3445
  20930. }
  20931. },
  20932. back: {
  20933. height: math.unit(8 + 4 / 12, "feet"),
  20934. weight: math.unit(600, "lb"),
  20935. name: "Back",
  20936. image: {
  20937. source: "./media/characters/dragonien/back.svg",
  20938. extra: 776 / 746,
  20939. bottom: 6.4 / 782.0616
  20940. }
  20941. },
  20942. foot: {
  20943. height: math.unit(1.54, "feet"),
  20944. name: "Foot",
  20945. image: {
  20946. source: "./media/characters/dragonien/foot.svg",
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(8 + 4 / 12, "feet"),
  20954. default: true
  20955. },
  20956. {
  20957. name: "Macro",
  20958. height: math.unit(200, "feet")
  20959. },
  20960. {
  20961. name: "Megamacro",
  20962. height: math.unit(1, "mile")
  20963. },
  20964. {
  20965. name: "Gigamacro",
  20966. height: math.unit(1000, "miles")
  20967. },
  20968. ]
  20969. ))
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(5 + 2 / 12, "feet"),
  20975. weight: math.unit(110, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/desta/front.svg",
  20979. extra: 767 / 726,
  20980. bottom: 11.7 / 779
  20981. }
  20982. },
  20983. back: {
  20984. height: math.unit(5 + 2 / 12, "feet"),
  20985. weight: math.unit(110, "lb"),
  20986. name: "Back",
  20987. image: {
  20988. source: "./media/characters/desta/back.svg",
  20989. extra: 777 / 728,
  20990. bottom: 6 / 784
  20991. }
  20992. },
  20993. frontAlt: {
  20994. height: math.unit(5 + 2 / 12, "feet"),
  20995. weight: math.unit(110, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/desta/front-alt.svg",
  20999. extra: 1482 / 1417
  21000. }
  21001. },
  21002. side: {
  21003. height: math.unit(5 + 2 / 12, "feet"),
  21004. weight: math.unit(110, "lb"),
  21005. name: "Side",
  21006. image: {
  21007. source: "./media/characters/desta/side.svg",
  21008. extra: 2579 / 2491,
  21009. bottom: 0.053
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Micro",
  21016. height: math.unit(6, "inches")
  21017. },
  21018. {
  21019. name: "Normal",
  21020. height: math.unit(5 + 2 / 12, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(62, "feet")
  21026. },
  21027. {
  21028. name: "Megamacro",
  21029. height: math.unit(1800, "feet")
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  21035. {
  21036. front: {
  21037. height: math.unit(10, "feet"),
  21038. weight: math.unit(700, "lb"),
  21039. name: "Front",
  21040. image: {
  21041. source: "./media/characters/storm-alystar/front.svg",
  21042. extra: 2112 / 1898,
  21043. bottom: 0.034
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Micro",
  21050. height: math.unit(3.5, "inches")
  21051. },
  21052. {
  21053. name: "Normal",
  21054. height: math.unit(10, "feet"),
  21055. default: true
  21056. },
  21057. {
  21058. name: "Macro",
  21059. height: math.unit(400, "feet")
  21060. },
  21061. {
  21062. name: "Deific",
  21063. height: math.unit(60, "miles")
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(2.35, "meters"),
  21072. weight: math.unit(119, "kg"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/ilia/front.svg",
  21076. extra: 1285 / 1255,
  21077. bottom: 0.06
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(2.35, "meters")
  21085. },
  21086. {
  21087. name: "Macro",
  21088. height: math.unit(140, "meters"),
  21089. default: true
  21090. },
  21091. {
  21092. name: "Megamacro",
  21093. height: math.unit(100, "miles")
  21094. },
  21095. ]
  21096. ))
  21097. characterMakers.push(() => makeCharacter(
  21098. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  21099. {
  21100. front: {
  21101. height: math.unit(6 + 5 / 12, "feet"),
  21102. weight: math.unit(190, "lb"),
  21103. name: "Front",
  21104. image: {
  21105. source: "./media/characters/kingdead/front.svg",
  21106. extra: 1228 / 1177
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Micro",
  21113. height: math.unit(7, "inches")
  21114. },
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(6 + 5 / 12, "feet")
  21118. },
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(150, "feet"),
  21122. default: true
  21123. },
  21124. {
  21125. name: "Megamacro",
  21126. height: math.unit(200, "miles")
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(8, "feet"),
  21135. weight: math.unit(600, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/kyrehx/front.svg",
  21139. extra: 1195 / 1095,
  21140. bottom: 0.034
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Micro",
  21147. height: math.unit(2, "inches")
  21148. },
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(8, "feet"),
  21152. default: true
  21153. },
  21154. {
  21155. name: "Macro",
  21156. height: math.unit(255, "feet")
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21165. weight: math.unit(184, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/xang/front.svg",
  21169. extra: 845 / 755
  21170. }
  21171. },
  21172. },
  21173. [
  21174. {
  21175. name: "Normal",
  21176. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21177. default: true
  21178. },
  21179. {
  21180. name: "Macro",
  21181. height: math.unit(0.935 * 146, "feet")
  21182. },
  21183. {
  21184. name: "Megamacro",
  21185. height: math.unit(0.935 * 3, "miles")
  21186. },
  21187. ]
  21188. ))
  21189. characterMakers.push(() => makeCharacter(
  21190. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21191. {
  21192. frontDressed: {
  21193. height: math.unit(5 + 7 / 12, "feet"),
  21194. weight: math.unit(140, "lb"),
  21195. name: "Front (Dressed)",
  21196. image: {
  21197. source: "./media/characters/doc-weardno/front-dressed.svg",
  21198. extra: 263 / 234
  21199. }
  21200. },
  21201. backDressed: {
  21202. height: math.unit(5 + 7 / 12, "feet"),
  21203. weight: math.unit(140, "lb"),
  21204. name: "Back (Dressed)",
  21205. image: {
  21206. source: "./media/characters/doc-weardno/back-dressed.svg",
  21207. extra: 266 / 238
  21208. }
  21209. },
  21210. front: {
  21211. height: math.unit(5 + 7 / 12, "feet"),
  21212. weight: math.unit(140, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/doc-weardno/front.svg",
  21216. extra: 254 / 233
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Micro",
  21223. height: math.unit(3, "inches")
  21224. },
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(5 + 7 / 12, "feet"),
  21228. default: true
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(25, "feet")
  21233. },
  21234. {
  21235. name: "Megamacro",
  21236. height: math.unit(2, "miles")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21242. {
  21243. front: {
  21244. height: math.unit(6 + 2 / 12, "feet"),
  21245. weight: math.unit(153, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/seth-whilst/front.svg",
  21249. bottom: 0.07
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Micro",
  21256. height: math.unit(5, "inches")
  21257. },
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(6 + 2 / 12, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(3, "inches"),
  21270. weight: math.unit(8, "grams"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/pocket-jabari/front.svg",
  21274. extra: 1024 / 974,
  21275. bottom: 0.039
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Minimicro",
  21282. height: math.unit(8, "mm")
  21283. },
  21284. {
  21285. name: "Micro",
  21286. height: math.unit(3, "inches"),
  21287. default: true
  21288. },
  21289. {
  21290. name: "Normal",
  21291. height: math.unit(3, "feet")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21297. {
  21298. frontDressed: {
  21299. height: math.unit(15, "feet"),
  21300. weight: math.unit(3280, "lb"),
  21301. name: "Front (Dressed)",
  21302. image: {
  21303. source: "./media/characters/sapphy/front-dressed.svg",
  21304. extra: 1951/1654,
  21305. bottom: 194/2145
  21306. },
  21307. form: "anthro",
  21308. default: true
  21309. },
  21310. backDressed: {
  21311. height: math.unit(15, "feet"),
  21312. weight: math.unit(3280, "lb"),
  21313. name: "Back (Dressed)",
  21314. image: {
  21315. source: "./media/characters/sapphy/back-dressed.svg",
  21316. extra: 2058/1918,
  21317. bottom: 125/2183
  21318. },
  21319. form: "anthro"
  21320. },
  21321. frontNude: {
  21322. height: math.unit(15, "feet"),
  21323. weight: math.unit(3280, "lb"),
  21324. name: "Front (Nude)",
  21325. image: {
  21326. source: "./media/characters/sapphy/front-nude.svg",
  21327. extra: 1951/1654,
  21328. bottom: 194/2145
  21329. },
  21330. form: "anthro"
  21331. },
  21332. backNude: {
  21333. height: math.unit(15, "feet"),
  21334. weight: math.unit(3280, "lb"),
  21335. name: "Back (Nude)",
  21336. image: {
  21337. source: "./media/characters/sapphy/back-nude.svg",
  21338. extra: 2058/1918,
  21339. bottom: 125/2183
  21340. },
  21341. form: "anthro"
  21342. },
  21343. full: {
  21344. height: math.unit(15, "feet"),
  21345. weight: math.unit(3280, "lb"),
  21346. name: "Full",
  21347. image: {
  21348. source: "./media/characters/sapphy/full.svg",
  21349. extra: 1396/1317,
  21350. bottom: 44/1440
  21351. },
  21352. form: "anthro"
  21353. },
  21354. dick: {
  21355. height: math.unit(3.8, "feet"),
  21356. name: "Dick",
  21357. image: {
  21358. source: "./media/characters/sapphy/dick.svg"
  21359. },
  21360. form: "anthro"
  21361. },
  21362. feral: {
  21363. height: math.unit(35, "feet"),
  21364. weight: math.unit(160, "tons"),
  21365. name: "Feral",
  21366. image: {
  21367. source: "./media/characters/sapphy/feral.svg",
  21368. extra: 1050/573,
  21369. bottom: 60/1110
  21370. },
  21371. form: "feral",
  21372. default: true
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(15, "feet"),
  21379. form: "anthro"
  21380. },
  21381. {
  21382. name: "Casual Macro",
  21383. height: math.unit(120, "feet"),
  21384. form: "anthro"
  21385. },
  21386. {
  21387. name: "Macro",
  21388. height: math.unit(2150, "feet"),
  21389. default: true,
  21390. form: "anthro"
  21391. },
  21392. {
  21393. name: "Megamacro",
  21394. height: math.unit(8, "miles"),
  21395. form: "anthro"
  21396. },
  21397. {
  21398. name: "Galaxy Mom",
  21399. height: math.unit(6, "megalightyears"),
  21400. form: "anthro"
  21401. },
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(35, "feet"),
  21405. form: "feral",
  21406. default: true
  21407. },
  21408. {
  21409. name: "Macro",
  21410. height: math.unit(300, "feet"),
  21411. form: "feral"
  21412. },
  21413. {
  21414. name: "Galaxy Mom",
  21415. height: math.unit(10, "megalightyears"),
  21416. form: "feral"
  21417. },
  21418. ],
  21419. {
  21420. "anthro": {
  21421. name: "Anthro",
  21422. default: true
  21423. },
  21424. "feral": {
  21425. name: "Feral"
  21426. }
  21427. }
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21431. {
  21432. hyenaFront: {
  21433. height: math.unit(6, "feet"),
  21434. weight: math.unit(190, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/kiro/hyena-front.svg",
  21438. extra: 927/839,
  21439. bottom: 91/1018
  21440. },
  21441. form: "hyena",
  21442. default: true
  21443. },
  21444. front: {
  21445. height: math.unit(6, "feet"),
  21446. weight: math.unit(170, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/kiro/front.svg",
  21450. extra: 1064 / 1012,
  21451. bottom: 0.052
  21452. },
  21453. form: "folf",
  21454. default: true
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Micro",
  21460. height: math.unit(6, "inches"),
  21461. form: "folf"
  21462. },
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(6, "feet"),
  21466. form: "folf",
  21467. default: true
  21468. },
  21469. {
  21470. name: "Macro",
  21471. height: math.unit(72, "feet"),
  21472. form: "folf"
  21473. },
  21474. {
  21475. name: "Micro",
  21476. height: math.unit(6, "inches"),
  21477. form: "hyena"
  21478. },
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(6, "feet"),
  21482. form: "hyena",
  21483. default: true
  21484. },
  21485. {
  21486. name: "Macro",
  21487. height: math.unit(72, "feet"),
  21488. form: "hyena"
  21489. },
  21490. ],
  21491. {
  21492. "hyena": {
  21493. name: "Hyena",
  21494. default: true
  21495. },
  21496. "folf": {
  21497. name: "Folf",
  21498. },
  21499. }
  21500. ))
  21501. characterMakers.push(() => makeCharacter(
  21502. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21503. {
  21504. front: {
  21505. height: math.unit(5 + 9 / 12, "feet"),
  21506. weight: math.unit(175, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/irishfox/front.svg",
  21510. extra: 1912 / 1680,
  21511. bottom: 0.02
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Nano",
  21518. height: math.unit(1, "mm")
  21519. },
  21520. {
  21521. name: "Micro",
  21522. height: math.unit(2, "inches")
  21523. },
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(5 + 9 / 12, "feet"),
  21527. default: true
  21528. },
  21529. {
  21530. name: "Macro",
  21531. height: math.unit(45, "feet")
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(6 + 1 / 12, "feet"),
  21540. weight: math.unit(75, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/aronai-sieyes/front.svg",
  21544. extra: 1532/1450,
  21545. bottom: 42/1574
  21546. }
  21547. },
  21548. side: {
  21549. height: math.unit(6 + 1 / 12, "feet"),
  21550. weight: math.unit(75, "lb"),
  21551. name: "Side",
  21552. image: {
  21553. source: "./media/characters/aronai-sieyes/side.svg",
  21554. extra: 1422/1365,
  21555. bottom: 148/1570
  21556. }
  21557. },
  21558. back: {
  21559. height: math.unit(6 + 1 / 12, "feet"),
  21560. weight: math.unit(75, "lb"),
  21561. name: "Back",
  21562. image: {
  21563. source: "./media/characters/aronai-sieyes/back.svg",
  21564. extra: 1526/1464,
  21565. bottom: 51/1577
  21566. }
  21567. },
  21568. dressed: {
  21569. height: math.unit(6 + 1 / 12, "feet"),
  21570. weight: math.unit(75, "lb"),
  21571. name: "Dressed",
  21572. image: {
  21573. source: "./media/characters/aronai-sieyes/dressed.svg",
  21574. extra: 1559/1483,
  21575. bottom: 39/1598
  21576. }
  21577. },
  21578. slit: {
  21579. height: math.unit(1.3, "feet"),
  21580. name: "Slit",
  21581. image: {
  21582. source: "./media/characters/aronai-sieyes/slit.svg"
  21583. }
  21584. },
  21585. slitSpread: {
  21586. height: math.unit(0.9, "feet"),
  21587. name: "Slit (Spread)",
  21588. image: {
  21589. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21590. }
  21591. },
  21592. rump: {
  21593. height: math.unit(1.3, "feet"),
  21594. name: "Rump",
  21595. image: {
  21596. source: "./media/characters/aronai-sieyes/rump.svg"
  21597. }
  21598. },
  21599. maw: {
  21600. height: math.unit(1.25, "feet"),
  21601. name: "Maw",
  21602. image: {
  21603. source: "./media/characters/aronai-sieyes/maw.svg"
  21604. }
  21605. },
  21606. feral: {
  21607. height: math.unit(18, "feet"),
  21608. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21609. name: "Feral",
  21610. image: {
  21611. source: "./media/characters/aronai-sieyes/feral.svg",
  21612. extra: 1530 / 1240,
  21613. bottom: 0.035
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Micro",
  21620. height: math.unit(2, "inches")
  21621. },
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(6 + 1 / 12, "feet"),
  21625. default: true
  21626. }
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(12, "feet"),
  21634. weight: math.unit(410, "kg"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/xuna/front.svg",
  21638. extra: 2184 / 1980
  21639. }
  21640. },
  21641. side: {
  21642. height: math.unit(12, "feet"),
  21643. weight: math.unit(410, "kg"),
  21644. name: "Side",
  21645. image: {
  21646. source: "./media/characters/xuna/side.svg",
  21647. extra: 2184 / 1980
  21648. }
  21649. },
  21650. back: {
  21651. height: math.unit(12, "feet"),
  21652. weight: math.unit(410, "kg"),
  21653. name: "Back",
  21654. image: {
  21655. source: "./media/characters/xuna/back.svg",
  21656. extra: 2184 / 1980
  21657. }
  21658. },
  21659. },
  21660. [
  21661. {
  21662. name: "Nano glow",
  21663. height: math.unit(10, "nm")
  21664. },
  21665. {
  21666. name: "Micro floof",
  21667. height: math.unit(0.3, "m")
  21668. },
  21669. {
  21670. name: "Huggable softy boi",
  21671. height: math.unit(3.6576, "m"),
  21672. default: true
  21673. },
  21674. {
  21675. name: "Admirable floof",
  21676. height: math.unit(80, "meters")
  21677. },
  21678. {
  21679. name: "Gentle macro",
  21680. height: math.unit(300, "meters")
  21681. },
  21682. {
  21683. name: "Very careful floof",
  21684. height: math.unit(3200, "meters")
  21685. },
  21686. {
  21687. name: "The mega floof",
  21688. height: math.unit(36000, "meters")
  21689. },
  21690. {
  21691. name: "Giga-fur-Wicker",
  21692. height: math.unit(4800000, "meters")
  21693. },
  21694. {
  21695. name: "Licky world",
  21696. height: math.unit(20000000, "meters")
  21697. },
  21698. {
  21699. name: "Floofy cyan sun",
  21700. height: math.unit(1500000000, "meters")
  21701. },
  21702. {
  21703. name: "Milky Wicker",
  21704. height: math.unit(1000000000000000000000, "meters")
  21705. },
  21706. {
  21707. name: "The observing Wicker",
  21708. height: math.unit(999999999999999999999999999, "meters")
  21709. },
  21710. ]
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(5 + 9 / 12, "feet"),
  21717. weight: math.unit(150, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/arokha-sieyes/front.svg",
  21721. extra: 1425 / 1284,
  21722. bottom: 0.05
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(5 + 9 / 12, "feet")
  21730. },
  21731. {
  21732. name: "Macro",
  21733. height: math.unit(30, "meters"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(6, "feet"),
  21743. weight: math.unit(180, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/arokh-sieyes/front.svg",
  21747. extra: 1830 / 1769,
  21748. bottom: 0.01
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(6, "feet")
  21756. },
  21757. {
  21758. name: "Macro",
  21759. height: math.unit(30, "meters"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21766. {
  21767. side: {
  21768. height: math.unit(13 + 1 / 12, "feet"),
  21769. weight: math.unit(8.5, "tonnes"),
  21770. preyCapacity: math.unit(36, "people"),
  21771. name: "Side",
  21772. image: {
  21773. source: "./media/characters/goldeneye/side.svg",
  21774. extra: 1139/741,
  21775. bottom: 98/1237
  21776. }
  21777. },
  21778. front: {
  21779. height: math.unit(5.1, "feet"),
  21780. weight: math.unit(8.5, "tonnes"),
  21781. preyCapacity: math.unit(36, "people"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/goldeneye/front.svg",
  21785. extra: 635/365,
  21786. bottom: 598/1233
  21787. }
  21788. },
  21789. maw: {
  21790. height: math.unit(6.6, "feet"),
  21791. name: "Maw",
  21792. image: {
  21793. source: "./media/characters/goldeneye/maw.svg"
  21794. }
  21795. },
  21796. headFront: {
  21797. height: math.unit(8, "feet"),
  21798. name: "Head (Front)",
  21799. image: {
  21800. source: "./media/characters/goldeneye/head-front.svg"
  21801. }
  21802. },
  21803. headSide: {
  21804. height: math.unit(6, "feet"),
  21805. name: "Head (Side)",
  21806. image: {
  21807. source: "./media/characters/goldeneye/head-side.svg"
  21808. }
  21809. },
  21810. headBack: {
  21811. height: math.unit(8, "feet"),
  21812. name: "Head (Back)",
  21813. image: {
  21814. source: "./media/characters/goldeneye/head-back.svg"
  21815. }
  21816. },
  21817. paw: {
  21818. height: math.unit(3.4, "feet"),
  21819. name: "Paw",
  21820. image: {
  21821. source: "./media/characters/goldeneye/paw.svg"
  21822. }
  21823. },
  21824. toering: {
  21825. height: math.unit(0.45, "feet"),
  21826. name: "Toering",
  21827. image: {
  21828. source: "./media/characters/goldeneye/toering.svg"
  21829. }
  21830. },
  21831. eyes: {
  21832. height: math.unit(0.5, "feet"),
  21833. name: "Eyes",
  21834. image: {
  21835. source: "./media/characters/goldeneye/eyes.svg"
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(13 + 1 / 12, "feet"),
  21843. default: true
  21844. },
  21845. ]
  21846. ))
  21847. characterMakers.push(() => makeCharacter(
  21848. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21849. {
  21850. front: {
  21851. height: math.unit(6 + 1 / 12, "feet"),
  21852. weight: math.unit(210, "lb"),
  21853. name: "Front",
  21854. image: {
  21855. source: "./media/characters/leonardo-lycheborne/front.svg",
  21856. extra: 776/723,
  21857. bottom: 34/810
  21858. }
  21859. },
  21860. side: {
  21861. height: math.unit(6 + 1 / 12, "feet"),
  21862. weight: math.unit(210, "lb"),
  21863. name: "Side",
  21864. image: {
  21865. source: "./media/characters/leonardo-lycheborne/side.svg",
  21866. extra: 780/728,
  21867. bottom: 12/792
  21868. }
  21869. },
  21870. back: {
  21871. height: math.unit(6 + 1 / 12, "feet"),
  21872. weight: math.unit(210, "lb"),
  21873. name: "Back",
  21874. image: {
  21875. source: "./media/characters/leonardo-lycheborne/back.svg",
  21876. extra: 775/721,
  21877. bottom: 17/792
  21878. }
  21879. },
  21880. hand: {
  21881. height: math.unit(1.08, "feet"),
  21882. name: "Hand",
  21883. image: {
  21884. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21885. }
  21886. },
  21887. foot: {
  21888. height: math.unit(1.32, "feet"),
  21889. name: "Foot",
  21890. image: {
  21891. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21892. }
  21893. },
  21894. maw: {
  21895. height: math.unit(1, "feet"),
  21896. name: "Maw",
  21897. image: {
  21898. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21899. }
  21900. },
  21901. were: {
  21902. height: math.unit(20, "feet"),
  21903. weight: math.unit(7800, "lb"),
  21904. name: "Were",
  21905. image: {
  21906. source: "./media/characters/leonardo-lycheborne/were.svg",
  21907. extra: 1224/1165,
  21908. bottom: 72/1296
  21909. }
  21910. },
  21911. feral: {
  21912. height: math.unit(7.5, "feet"),
  21913. weight: math.unit(600, "lb"),
  21914. name: "Feral",
  21915. image: {
  21916. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21917. extra: 797/702,
  21918. bottom: 139/936
  21919. }
  21920. },
  21921. taur: {
  21922. height: math.unit(11, "feet"),
  21923. weight: math.unit(3300, "lb"),
  21924. name: "Taur",
  21925. image: {
  21926. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21927. extra: 1271/1197,
  21928. bottom: 47/1318
  21929. }
  21930. },
  21931. barghest: {
  21932. height: math.unit(11, "feet"),
  21933. weight: math.unit(1300, "lb"),
  21934. name: "Barghest",
  21935. image: {
  21936. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21937. extra: 1291/1204,
  21938. bottom: 37/1328
  21939. }
  21940. },
  21941. dick: {
  21942. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21943. name: "Dick",
  21944. image: {
  21945. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21946. }
  21947. },
  21948. dickWere: {
  21949. height: math.unit((20) / 3.8, "feet"),
  21950. name: "Dick (Were)",
  21951. image: {
  21952. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21953. }
  21954. },
  21955. },
  21956. [
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(6 + 1 / 12, "feet"),
  21960. default: true
  21961. },
  21962. ]
  21963. ))
  21964. characterMakers.push(() => makeCharacter(
  21965. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21966. {
  21967. front: {
  21968. height: math.unit(10, "feet"),
  21969. weight: math.unit(350, "lb"),
  21970. name: "Front",
  21971. image: {
  21972. source: "./media/characters/jet/front.svg",
  21973. extra: 2050 / 1980,
  21974. bottom: 0.013
  21975. }
  21976. },
  21977. back: {
  21978. height: math.unit(10, "feet"),
  21979. weight: math.unit(350, "lb"),
  21980. name: "Back",
  21981. image: {
  21982. source: "./media/characters/jet/back.svg",
  21983. extra: 2050 / 1980,
  21984. bottom: 0.013
  21985. }
  21986. },
  21987. },
  21988. [
  21989. {
  21990. name: "Micro",
  21991. height: math.unit(6, "inches")
  21992. },
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(10, "feet"),
  21996. default: true
  21997. },
  21998. {
  21999. name: "Macro",
  22000. height: math.unit(100, "feet")
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(15, "feet"),
  22009. weight: math.unit(2800, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/tanarath/front.svg",
  22013. extra: 2392 / 2220,
  22014. bottom: 0.03
  22015. }
  22016. },
  22017. back: {
  22018. height: math.unit(15, "feet"),
  22019. weight: math.unit(2800, "lb"),
  22020. name: "Back",
  22021. image: {
  22022. source: "./media/characters/tanarath/back.svg",
  22023. extra: 2392 / 2220,
  22024. bottom: 0.03
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(15, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(7 + 1 / 12, "feet"),
  22041. weight: math.unit(175, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/patty-cattybatty/front.svg",
  22045. extra: 908 / 874,
  22046. bottom: 0.025
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Micro",
  22053. height: math.unit(1, "inch")
  22054. },
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(7 + 1 / 12, "feet")
  22058. },
  22059. {
  22060. name: "Mini Macro",
  22061. height: math.unit(155, "feet")
  22062. },
  22063. {
  22064. name: "Macro",
  22065. height: math.unit(1077, "feet")
  22066. },
  22067. {
  22068. name: "Mega Macro",
  22069. height: math.unit(47650, "feet"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Giga Macro",
  22074. height: math.unit(440, "miles")
  22075. },
  22076. {
  22077. name: "Tera Macro",
  22078. height: math.unit(8700, "miles")
  22079. },
  22080. {
  22081. name: "Planetary Macro",
  22082. height: math.unit(32700, "miles")
  22083. },
  22084. {
  22085. name: "Solar Macro",
  22086. height: math.unit(550000, "miles")
  22087. },
  22088. {
  22089. name: "Celestial Macro",
  22090. height: math.unit(2.5, "AU")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(4 + 5 / 12, "feet"),
  22099. weight: math.unit(90, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/cappu/front.svg",
  22103. extra: 1247 / 1152,
  22104. bottom: 0.012
  22105. }
  22106. },
  22107. },
  22108. [
  22109. {
  22110. name: "Normal",
  22111. height: math.unit(4 + 5 / 12, "feet"),
  22112. default: true
  22113. },
  22114. ]
  22115. ))
  22116. characterMakers.push(() => makeCharacter(
  22117. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  22118. {
  22119. frontDressed: {
  22120. height: math.unit(70, "cm"),
  22121. weight: math.unit(6, "kg"),
  22122. name: "Front (Dressed)",
  22123. image: {
  22124. source: "./media/characters/sebi/front-dressed.svg",
  22125. extra: 713.5 / 686.5,
  22126. bottom: 0.003
  22127. }
  22128. },
  22129. front: {
  22130. height: math.unit(70, "cm"),
  22131. weight: math.unit(5, "kg"),
  22132. name: "Front",
  22133. image: {
  22134. source: "./media/characters/sebi/front.svg",
  22135. extra: 713.5 / 686.5,
  22136. bottom: 0.003
  22137. }
  22138. }
  22139. },
  22140. [
  22141. {
  22142. name: "Normal",
  22143. height: math.unit(70, "cm"),
  22144. default: true
  22145. },
  22146. {
  22147. name: "Macro",
  22148. height: math.unit(8, "meters")
  22149. },
  22150. ]
  22151. ))
  22152. characterMakers.push(() => makeCharacter(
  22153. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22154. {
  22155. front: {
  22156. height: math.unit(6, "feet"),
  22157. weight: math.unit(150, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/typhek/front.svg",
  22161. extra: 1948 / 1929,
  22162. bottom: 0.025
  22163. }
  22164. },
  22165. side: {
  22166. height: math.unit(6, "feet"),
  22167. weight: math.unit(150, "lb"),
  22168. name: "Side",
  22169. image: {
  22170. source: "./media/characters/typhek/side.svg",
  22171. extra: 2034 / 2010,
  22172. bottom: 0.003
  22173. }
  22174. },
  22175. back: {
  22176. height: math.unit(6, "feet"),
  22177. weight: math.unit(150, "lb"),
  22178. name: "Back",
  22179. image: {
  22180. source: "./media/characters/typhek/back.svg",
  22181. extra: 2005 / 1978,
  22182. bottom: 0.004
  22183. }
  22184. },
  22185. palm: {
  22186. height: math.unit(1.2, "feet"),
  22187. name: "Palm",
  22188. image: {
  22189. source: "./media/characters/typhek/palm.svg"
  22190. }
  22191. },
  22192. fist: {
  22193. height: math.unit(1.1, "feet"),
  22194. name: "Fist",
  22195. image: {
  22196. source: "./media/characters/typhek/fist.svg"
  22197. }
  22198. },
  22199. foot: {
  22200. height: math.unit(1.57, "feet"),
  22201. name: "Foot",
  22202. image: {
  22203. source: "./media/characters/typhek/foot.svg"
  22204. }
  22205. },
  22206. sole: {
  22207. height: math.unit(2.05, "feet"),
  22208. name: "Sole",
  22209. image: {
  22210. source: "./media/characters/typhek/sole.svg"
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Macro",
  22217. height: math.unit(40, "stories"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Megamacro",
  22222. height: math.unit(1, "mile")
  22223. },
  22224. {
  22225. name: "Gigamacro",
  22226. height: math.unit(4000, "solarradii")
  22227. },
  22228. {
  22229. name: "Universal",
  22230. height: math.unit(1.1, "universes")
  22231. }
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22236. {
  22237. side: {
  22238. height: math.unit(5 + 7 / 12, "feet"),
  22239. weight: math.unit(150, "lb"),
  22240. name: "Side",
  22241. image: {
  22242. source: "./media/characters/kassy/side.svg",
  22243. extra: 1280 / 1225,
  22244. bottom: 0.002
  22245. }
  22246. },
  22247. front: {
  22248. height: math.unit(5 + 7 / 12, "feet"),
  22249. weight: math.unit(150, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/kassy/front.svg",
  22253. extra: 1280 / 1225,
  22254. bottom: 0.025
  22255. }
  22256. },
  22257. back: {
  22258. height: math.unit(5 + 7 / 12, "feet"),
  22259. weight: math.unit(150, "lb"),
  22260. name: "Back",
  22261. image: {
  22262. source: "./media/characters/kassy/back.svg",
  22263. extra: 1280 / 1225,
  22264. bottom: 0.002
  22265. }
  22266. },
  22267. foot: {
  22268. height: math.unit(1.266, "feet"),
  22269. name: "Foot",
  22270. image: {
  22271. source: "./media/characters/kassy/foot.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(5 + 7 / 12, "feet")
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(137, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Megamacro",
  22287. height: math.unit(1, "mile")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(6 + 1 / 12, "feet"),
  22296. weight: math.unit(200, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/neil/front.svg",
  22300. extra: 1326 / 1250,
  22301. bottom: 0.023
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(6 + 1 / 12, "feet"),
  22309. default: true
  22310. },
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(200, "feet")
  22314. },
  22315. ]
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22319. {
  22320. front: {
  22321. height: math.unit(5 + 9 / 12, "feet"),
  22322. weight: math.unit(190, "lb"),
  22323. name: "Front",
  22324. image: {
  22325. source: "./media/characters/atticus/front.svg",
  22326. extra: 2934 / 2785,
  22327. bottom: 0.025
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(5 + 9 / 12, "feet"),
  22335. default: true
  22336. },
  22337. {
  22338. name: "Macro",
  22339. height: math.unit(180, "feet")
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22345. {
  22346. side: {
  22347. height: math.unit(9, "feet"),
  22348. weight: math.unit(650, "lb"),
  22349. name: "Side",
  22350. image: {
  22351. source: "./media/characters/milo/side.svg",
  22352. extra: 2644 / 2310,
  22353. bottom: 0.032
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(9, "feet"),
  22361. default: true
  22362. },
  22363. {
  22364. name: "Macro",
  22365. height: math.unit(300, "feet")
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22371. {
  22372. side: {
  22373. height: math.unit(8, "meters"),
  22374. weight: math.unit(90000, "kg"),
  22375. name: "Side",
  22376. image: {
  22377. source: "./media/characters/ijzer/side.svg",
  22378. extra: 2756 / 1600,
  22379. bottom: 0.01
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Small",
  22386. height: math.unit(3, "meters")
  22387. },
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(8, "meters"),
  22391. default: true
  22392. },
  22393. {
  22394. name: "Normal+",
  22395. height: math.unit(10, "meters")
  22396. },
  22397. {
  22398. name: "Bigger",
  22399. height: math.unit(24, "meters")
  22400. },
  22401. {
  22402. name: "Huge",
  22403. height: math.unit(80, "meters")
  22404. },
  22405. ]
  22406. ))
  22407. characterMakers.push(() => makeCharacter(
  22408. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22409. {
  22410. front: {
  22411. height: math.unit(6 + 2 / 12, "feet"),
  22412. weight: math.unit(153, "lb"),
  22413. name: "Front",
  22414. image: {
  22415. source: "./media/characters/luca-cervicum/front.svg",
  22416. extra: 370 / 327,
  22417. bottom: 0.015
  22418. }
  22419. },
  22420. back: {
  22421. height: math.unit(6 + 2 / 12, "feet"),
  22422. weight: math.unit(153, "lb"),
  22423. name: "Back",
  22424. image: {
  22425. source: "./media/characters/luca-cervicum/back.svg",
  22426. extra: 367 / 333,
  22427. bottom: 0.005
  22428. }
  22429. },
  22430. frontGear: {
  22431. height: math.unit(6 + 2 / 12, "feet"),
  22432. weight: math.unit(173, "lb"),
  22433. name: "Front (Gear)",
  22434. image: {
  22435. source: "./media/characters/luca-cervicum/front-gear.svg",
  22436. extra: 377 / 333,
  22437. bottom: 0.006
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(6 + 2 / 12, "feet"),
  22445. default: true
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(6 + 1 / 12, "feet"),
  22454. weight: math.unit(304, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/oliver/front.svg",
  22458. extra: 157 / 143,
  22459. bottom: 0.08
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Normal",
  22466. height: math.unit(6 + 1 / 12, "feet"),
  22467. default: true
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(5 + 7 / 12, "feet"),
  22476. weight: math.unit(140, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/shane/front.svg",
  22480. extra: 304 / 289,
  22481. bottom: 0.005
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(5 + 7 / 12, "feet"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(5 + 9 / 12, "feet"),
  22498. weight: math.unit(178, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/shin/front.svg",
  22502. extra: 159 / 151,
  22503. bottom: 0.015
  22504. }
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(5 + 9 / 12, "feet"),
  22511. default: true
  22512. },
  22513. ]
  22514. ))
  22515. characterMakers.push(() => makeCharacter(
  22516. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22517. {
  22518. front: {
  22519. height: math.unit(5 + 10 / 12, "feet"),
  22520. weight: math.unit(168, "lb"),
  22521. name: "Front",
  22522. image: {
  22523. source: "./media/characters/xerxes/front.svg",
  22524. extra: 282 / 260,
  22525. bottom: 0.045
  22526. }
  22527. },
  22528. },
  22529. [
  22530. {
  22531. name: "Normal",
  22532. height: math.unit(5 + 10 / 12, "feet"),
  22533. default: true
  22534. },
  22535. ]
  22536. ))
  22537. characterMakers.push(() => makeCharacter(
  22538. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22539. {
  22540. front: {
  22541. height: math.unit(6 + 7 / 12, "feet"),
  22542. weight: math.unit(208, "lb"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/chaska/front.svg",
  22546. extra: 332 / 319,
  22547. bottom: 0.015
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(6 + 7 / 12, "feet"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(5 + 8 / 12, "feet"),
  22564. weight: math.unit(208, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/enuk/front.svg",
  22568. extra: 437 / 406,
  22569. bottom: 0.02
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(5 + 8 / 12, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22583. {
  22584. front: {
  22585. height: math.unit(5 + 10 / 12, "feet"),
  22586. weight: math.unit(252, "lb"),
  22587. name: "Front",
  22588. image: {
  22589. source: "./media/characters/bruun/front.svg",
  22590. extra: 197 / 187,
  22591. bottom: 0.012
  22592. }
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(5 + 10 / 12, "feet"),
  22599. default: true
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22605. {
  22606. front: {
  22607. height: math.unit(6 + 10 / 12, "feet"),
  22608. weight: math.unit(255, "lb"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/alexeev/front.svg",
  22612. extra: 213 / 200,
  22613. bottom: 0.05
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(6 + 10 / 12, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22627. {
  22628. front: {
  22629. height: math.unit(2 + 8 / 12, "feet"),
  22630. weight: math.unit(22, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/evelyn/front.svg",
  22634. extra: 208 / 180
  22635. }
  22636. },
  22637. },
  22638. [
  22639. {
  22640. name: "Normal",
  22641. height: math.unit(2 + 8 / 12, "feet"),
  22642. default: true
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(5 + 9 / 12, "feet"),
  22651. weight: math.unit(139, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/inca/front.svg",
  22655. extra: 294 / 291,
  22656. bottom: 0.03
  22657. }
  22658. },
  22659. },
  22660. [
  22661. {
  22662. name: "Normal",
  22663. height: math.unit(5 + 9 / 12, "feet"),
  22664. default: true
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(6 + 3 / 12, "feet"),
  22673. weight: math.unit(185, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/mera/front.svg",
  22677. extra: 291 / 277,
  22678. bottom: 0.03
  22679. }
  22680. },
  22681. },
  22682. [
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(6 + 3 / 12, "feet"),
  22686. default: true
  22687. },
  22688. ]
  22689. ))
  22690. characterMakers.push(() => makeCharacter(
  22691. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22692. {
  22693. front: {
  22694. height: math.unit(6 + 7 / 12, "feet"),
  22695. weight: math.unit(160, "lb"),
  22696. name: "Front",
  22697. image: {
  22698. source: "./media/characters/ceres/front.svg",
  22699. extra: 1023 / 950,
  22700. bottom: 0.027
  22701. }
  22702. },
  22703. back: {
  22704. height: math.unit(6 + 7 / 12, "feet"),
  22705. weight: math.unit(160, "lb"),
  22706. name: "Back",
  22707. image: {
  22708. source: "./media/characters/ceres/back.svg",
  22709. extra: 1023 / 950
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(6 + 7 / 12, "feet"),
  22717. default: true
  22718. },
  22719. ]
  22720. ))
  22721. characterMakers.push(() => makeCharacter(
  22722. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22723. {
  22724. front: {
  22725. height: math.unit(5 + 10 / 12, "feet"),
  22726. weight: math.unit(150, "lb"),
  22727. name: "Front",
  22728. image: {
  22729. source: "./media/characters/kris/front.svg",
  22730. extra: 885 / 803,
  22731. bottom: 0.03
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(5 + 10 / 12, "feet"),
  22739. default: true
  22740. },
  22741. ]
  22742. ))
  22743. characterMakers.push(() => makeCharacter(
  22744. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22745. {
  22746. dragon_front: {
  22747. height: math.unit(5, "feet"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/taluthus/dragon-front.svg",
  22751. extra: 1203/1098,
  22752. bottom: 46/1249
  22753. },
  22754. form: "dragon",
  22755. default: true
  22756. },
  22757. dragon_maw: {
  22758. height: math.unit(2.35, "feet"),
  22759. name: "Maw",
  22760. image: {
  22761. source: "./media/characters/taluthus/dragon-maw.svg"
  22762. },
  22763. form: "dragon",
  22764. },
  22765. kitsune_front: {
  22766. height: math.unit(7, "feet"),
  22767. name: "Front",
  22768. image: {
  22769. source: "./media/characters/taluthus/kitsune-front.svg",
  22770. extra: 900/841,
  22771. bottom: 65/965
  22772. },
  22773. form: "kitsune",
  22774. default: true
  22775. },
  22776. },
  22777. [
  22778. {
  22779. name: "Normal",
  22780. height: math.unit(5, "feet"),
  22781. form: "dragon",
  22782. default: true,
  22783. },
  22784. {
  22785. name: "Normal",
  22786. height: math.unit(7, "feet"),
  22787. form: "kitsune",
  22788. default: true
  22789. },
  22790. {
  22791. name: "Macro",
  22792. height: math.unit(300, "feet"),
  22793. allForms: true
  22794. },
  22795. ],
  22796. {
  22797. "dragon": {
  22798. name: "Dragon",
  22799. default: true
  22800. },
  22801. "kitsune": {
  22802. name: "Kitsune",
  22803. },
  22804. }
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(5 + 9 / 12, "feet"),
  22811. weight: math.unit(145, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/dawn/front.svg",
  22815. extra: 2094 / 2016,
  22816. bottom: 0.025
  22817. }
  22818. },
  22819. back: {
  22820. height: math.unit(5 + 9 / 12, "feet"),
  22821. weight: math.unit(160, "lb"),
  22822. name: "Back",
  22823. image: {
  22824. source: "./media/characters/dawn/back.svg",
  22825. extra: 2112 / 2080,
  22826. bottom: 0.005
  22827. }
  22828. },
  22829. },
  22830. [
  22831. {
  22832. name: "Normal",
  22833. height: math.unit(6 + 7 / 12, "feet"),
  22834. default: true
  22835. },
  22836. ]
  22837. ))
  22838. characterMakers.push(() => makeCharacter(
  22839. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22840. {
  22841. anthro: {
  22842. height: math.unit(8 + 3 / 12, "feet"),
  22843. weight: math.unit(450, "lb"),
  22844. name: "Anthro",
  22845. image: {
  22846. source: "./media/characters/arador/anthro.svg",
  22847. extra: 1835 / 1718,
  22848. bottom: 0.025
  22849. }
  22850. },
  22851. feral: {
  22852. height: math.unit(4, "feet"),
  22853. weight: math.unit(200, "lb"),
  22854. name: "Feral",
  22855. image: {
  22856. source: "./media/characters/arador/feral.svg",
  22857. extra: 1683 / 1514,
  22858. bottom: 0.07
  22859. }
  22860. },
  22861. },
  22862. [
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(8 + 3 / 12, "feet")
  22866. },
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(82.5, "feet"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(5 + 10 / 12, "feet"),
  22879. weight: math.unit(125, "lb"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/dharsi/front.svg",
  22883. extra: 716 / 630,
  22884. bottom: 0.035
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Nano",
  22891. height: math.unit(100, "nm")
  22892. },
  22893. {
  22894. name: "Micro",
  22895. height: math.unit(2, "inches")
  22896. },
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(5 + 10 / 12, "feet"),
  22900. default: true
  22901. },
  22902. {
  22903. name: "Macro",
  22904. height: math.unit(1000, "feet")
  22905. },
  22906. {
  22907. name: "Megamacro",
  22908. height: math.unit(10, "miles")
  22909. },
  22910. {
  22911. name: "Gigamacro",
  22912. height: math.unit(3000, "miles")
  22913. },
  22914. {
  22915. name: "Teramacro",
  22916. height: math.unit(500000, "miles")
  22917. },
  22918. {
  22919. name: "Teramacro+",
  22920. height: math.unit(30, "galaxies")
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22926. {
  22927. front: {
  22928. height: math.unit(6, "feet"),
  22929. weight: math.unit(150, "lb"),
  22930. name: "Front",
  22931. image: {
  22932. source: "./media/characters/deathy/front.svg",
  22933. extra: 1552 / 1463,
  22934. bottom: 0.025
  22935. }
  22936. },
  22937. side: {
  22938. height: math.unit(6, "feet"),
  22939. weight: math.unit(150, "lb"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/deathy/side.svg",
  22943. extra: 1604 / 1455,
  22944. bottom: 0.025
  22945. }
  22946. },
  22947. back: {
  22948. height: math.unit(6, "feet"),
  22949. weight: math.unit(150, "lb"),
  22950. name: "Back",
  22951. image: {
  22952. source: "./media/characters/deathy/back.svg",
  22953. extra: 1580 / 1463,
  22954. bottom: 0.005
  22955. }
  22956. },
  22957. },
  22958. [
  22959. {
  22960. name: "Micro",
  22961. height: math.unit(5, "millimeters")
  22962. },
  22963. {
  22964. name: "Normal",
  22965. height: math.unit(6 + 5 / 12, "feet"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22972. {
  22973. front: {
  22974. height: math.unit(16, "feet"),
  22975. weight: math.unit(4000, "lb"),
  22976. name: "Front",
  22977. image: {
  22978. source: "./media/characters/juniper/front.svg",
  22979. bottom: 0.04
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(16, "feet"),
  22987. default: true
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(6, "feet"),
  22996. weight: math.unit(150, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/hipster/front.svg",
  23000. extra: 1312 / 1209,
  23001. bottom: 0.025
  23002. }
  23003. },
  23004. back: {
  23005. height: math.unit(6, "feet"),
  23006. weight: math.unit(150, "lb"),
  23007. name: "Back",
  23008. image: {
  23009. source: "./media/characters/hipster/back.svg",
  23010. extra: 1281 / 1196,
  23011. bottom: 0.01
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Micro",
  23018. height: math.unit(1, "mm")
  23019. },
  23020. {
  23021. name: "Normal",
  23022. height: math.unit(4, "inches"),
  23023. default: true
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(500, "feet")
  23028. },
  23029. {
  23030. name: "Megamacro",
  23031. height: math.unit(1000, "miles")
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(6, "feet"),
  23040. weight: math.unit(150, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/tendirmuldr/front.svg",
  23044. extra: 1878 / 1772,
  23045. bottom: 0.015
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Megamacro",
  23052. height: math.unit(1500, "miles"),
  23053. default: true
  23054. },
  23055. ]
  23056. ))
  23057. characterMakers.push(() => makeCharacter(
  23058. { name: "Mort", species: ["demon"], tags: ["feral"] },
  23059. {
  23060. front: {
  23061. height: math.unit(14, "feet"),
  23062. weight: math.unit(12000, "lb"),
  23063. name: "Front",
  23064. image: {
  23065. source: "./media/characters/mort/front.svg",
  23066. extra: 365 / 318,
  23067. bottom: 0.01
  23068. }
  23069. },
  23070. side: {
  23071. height: math.unit(14, "feet"),
  23072. weight: math.unit(12000, "lb"),
  23073. name: "Side",
  23074. image: {
  23075. source: "./media/characters/mort/side.svg",
  23076. extra: 365 / 318,
  23077. bottom: 0.052
  23078. },
  23079. default: true
  23080. },
  23081. back: {
  23082. height: math.unit(14, "feet"),
  23083. weight: math.unit(12000, "lb"),
  23084. name: "Back",
  23085. image: {
  23086. source: "./media/characters/mort/back.svg",
  23087. extra: 371 / 332,
  23088. bottom: 0.18
  23089. }
  23090. },
  23091. },
  23092. [
  23093. {
  23094. name: "Normal",
  23095. height: math.unit(14, "feet"),
  23096. default: true
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  23102. {
  23103. front: {
  23104. height: math.unit(8, "feet"),
  23105. weight: math.unit(1, "ton"),
  23106. name: "Front",
  23107. image: {
  23108. source: "./media/characters/lycoa/front.svg",
  23109. extra: 1836/1728,
  23110. bottom: 81/1917
  23111. }
  23112. },
  23113. back: {
  23114. height: math.unit(8, "feet"),
  23115. weight: math.unit(1, "ton"),
  23116. name: "Back",
  23117. image: {
  23118. source: "./media/characters/lycoa/back.svg",
  23119. extra: 1785/1720,
  23120. bottom: 91/1876
  23121. }
  23122. },
  23123. head: {
  23124. height: math.unit(1.6243, "feet"),
  23125. name: "Head",
  23126. image: {
  23127. source: "./media/characters/lycoa/head.svg",
  23128. extra: 1011/782,
  23129. bottom: 0/1011
  23130. }
  23131. },
  23132. tailmaw: {
  23133. height: math.unit(1.9, "feet"),
  23134. name: "Tailmaw",
  23135. image: {
  23136. source: "./media/characters/lycoa/tailmaw.svg"
  23137. }
  23138. },
  23139. tentacles: {
  23140. height: math.unit(2.1, "feet"),
  23141. name: "Tentacles",
  23142. image: {
  23143. source: "./media/characters/lycoa/tentacles.svg"
  23144. }
  23145. },
  23146. dick: {
  23147. height: math.unit(1.73, "feet"),
  23148. name: "Dick",
  23149. image: {
  23150. source: "./media/characters/lycoa/dick.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Normal",
  23157. height: math.unit(8, "feet"),
  23158. default: true
  23159. },
  23160. {
  23161. name: "Macro",
  23162. height: math.unit(30, "feet")
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23168. {
  23169. front: {
  23170. height: math.unit(4 + 2 / 12, "feet"),
  23171. weight: math.unit(70, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/naldara/front.svg",
  23175. extra: 1664/1387,
  23176. bottom: 81/1745
  23177. },
  23178. form: "anthro",
  23179. default: true
  23180. },
  23181. naga: {
  23182. height: math.unit(20, "feet"),
  23183. weight: math.unit(15000, "kg"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/naldara/naga.svg",
  23187. extra: 1590/1396,
  23188. bottom: 285/1875
  23189. },
  23190. form: "naga",
  23191. default: true
  23192. },
  23193. },
  23194. [
  23195. {
  23196. name: "Normal",
  23197. height: math.unit(4 + 2 / 12, "feet"),
  23198. form: "anthro",
  23199. default: true
  23200. },
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(20, "feet"),
  23204. form: "naga",
  23205. default: true
  23206. },
  23207. ],
  23208. {
  23209. "anthro": {
  23210. name: "Anthro",
  23211. default: true
  23212. },
  23213. "naga": {
  23214. name: "Naga"
  23215. }
  23216. }
  23217. ))
  23218. characterMakers.push(() => makeCharacter(
  23219. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23220. {
  23221. front: {
  23222. height: math.unit(13 + 7 / 12, "feet"),
  23223. weight: math.unit(1500, "lb"),
  23224. name: "Front",
  23225. image: {
  23226. source: "./media/characters/briar/front.svg",
  23227. extra: 1223/1157,
  23228. bottom: 123/1346
  23229. }
  23230. },
  23231. },
  23232. [
  23233. {
  23234. name: "Normal",
  23235. height: math.unit(13 + 7 / 12, "feet"),
  23236. default: true
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23242. {
  23243. side: {
  23244. height: math.unit(16, "feet"),
  23245. weight: math.unit(500, "lb"),
  23246. name: "Side",
  23247. image: {
  23248. source: "./media/characters/vanguard/side.svg",
  23249. extra: 1022/914,
  23250. bottom: 30/1052
  23251. }
  23252. },
  23253. sideAlt: {
  23254. height: math.unit(10, "feet"),
  23255. weight: math.unit(500, "lb"),
  23256. name: "Side (Alt)",
  23257. image: {
  23258. source: "./media/characters/vanguard/side-alt.svg",
  23259. extra: 502 / 425,
  23260. bottom: 0.087
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Normal",
  23267. height: math.unit(17.71, "feet"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23274. {
  23275. front: {
  23276. height: math.unit(7.5, "feet"),
  23277. weight: math.unit(2, "lb"),
  23278. name: "Front",
  23279. image: {
  23280. source: "./media/characters/artemis/work-safe-front.svg",
  23281. extra: 1192 / 1075,
  23282. bottom: 0.07
  23283. },
  23284. form: "work-safe",
  23285. default: true
  23286. },
  23287. frontNsfw: {
  23288. height: math.unit(7.5, "feet"),
  23289. weight: math.unit(2, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/artemis/calibrating-front.svg",
  23293. extra: 1192 / 1075,
  23294. bottom: 0.07
  23295. },
  23296. form: "calibrating",
  23297. default: true
  23298. },
  23299. frontNsfwer: {
  23300. height: math.unit(7.5, "feet"),
  23301. weight: math.unit(2, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/artemis/oversize-load-front.svg",
  23305. extra: 1192 / 1075,
  23306. bottom: 0.07
  23307. },
  23308. form: "oversize-load",
  23309. default: true
  23310. },
  23311. side: {
  23312. height: math.unit(7.5, "feet"),
  23313. weight: math.unit(2, "lb"),
  23314. name: "Side",
  23315. image: {
  23316. source: "./media/characters/artemis/work-safe-side.svg",
  23317. extra: 1192 / 1075,
  23318. bottom: 0.07
  23319. },
  23320. form: "work-safe"
  23321. },
  23322. sideNsfw: {
  23323. height: math.unit(7.5, "feet"),
  23324. weight: math.unit(2, "lb"),
  23325. name: "Side",
  23326. image: {
  23327. source: "./media/characters/artemis/calibrating-side.svg",
  23328. extra: 1192 / 1075,
  23329. bottom: 0.07
  23330. },
  23331. form: "calibrating"
  23332. },
  23333. sideNsfwer: {
  23334. height: math.unit(7.5, "feet"),
  23335. weight: math.unit(2, "lb"),
  23336. name: "Side",
  23337. image: {
  23338. source: "./media/characters/artemis/oversize-load-side.svg",
  23339. extra: 1192 / 1075,
  23340. bottom: 0.07
  23341. },
  23342. form: "oversize-load"
  23343. },
  23344. maw: {
  23345. height: math.unit(1.1, "feet"),
  23346. name: "Maw",
  23347. image: {
  23348. source: "./media/characters/artemis/maw.svg"
  23349. },
  23350. form: "work-safe"
  23351. },
  23352. stomach: {
  23353. height: math.unit(0.95, "feet"),
  23354. name: "Stomach",
  23355. image: {
  23356. source: "./media/characters/artemis/stomach.svg"
  23357. },
  23358. form: "work-safe"
  23359. },
  23360. dickCanine: {
  23361. height: math.unit(1, "feet"),
  23362. name: "Dick (Canine)",
  23363. image: {
  23364. source: "./media/characters/artemis/dick-canine.svg"
  23365. },
  23366. form: "calibrating"
  23367. },
  23368. dickEquine: {
  23369. height: math.unit(0.85, "feet"),
  23370. name: "Dick (Equine)",
  23371. image: {
  23372. source: "./media/characters/artemis/dick-equine.svg"
  23373. },
  23374. form: "calibrating"
  23375. },
  23376. dickExotic: {
  23377. height: math.unit(0.85, "feet"),
  23378. name: "Dick (Exotic)",
  23379. image: {
  23380. source: "./media/characters/artemis/dick-exotic.svg"
  23381. },
  23382. form: "calibrating"
  23383. },
  23384. dickCanineBigger: {
  23385. height: math.unit(1 * 1.33, "feet"),
  23386. name: "Dick (Canine)",
  23387. image: {
  23388. source: "./media/characters/artemis/dick-canine.svg"
  23389. },
  23390. form: "oversize-load"
  23391. },
  23392. dickEquineBigger: {
  23393. height: math.unit(0.85 * 1.33, "feet"),
  23394. name: "Dick (Equine)",
  23395. image: {
  23396. source: "./media/characters/artemis/dick-equine.svg"
  23397. },
  23398. form: "oversize-load"
  23399. },
  23400. dickExoticBigger: {
  23401. height: math.unit(0.85 * 1.33, "feet"),
  23402. name: "Dick (Exotic)",
  23403. image: {
  23404. source: "./media/characters/artemis/dick-exotic.svg"
  23405. },
  23406. form: "oversize-load"
  23407. },
  23408. },
  23409. [
  23410. {
  23411. name: "Normal",
  23412. height: math.unit(7.5, "feet"),
  23413. form: "work-safe",
  23414. default: true
  23415. },
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(7.5, "feet"),
  23419. form: "calibrating",
  23420. default: true
  23421. },
  23422. {
  23423. name: "Normal",
  23424. height: math.unit(7.5, "feet"),
  23425. form: "oversize-load",
  23426. default: true
  23427. },
  23428. {
  23429. name: "Enlarged",
  23430. height: math.unit(12, "feet"),
  23431. form: "work-safe",
  23432. },
  23433. {
  23434. name: "Enlarged",
  23435. height: math.unit(12, "feet"),
  23436. form: "calibrating",
  23437. },
  23438. {
  23439. name: "Enlarged",
  23440. height: math.unit(12, "feet"),
  23441. form: "oversize-load",
  23442. },
  23443. ],
  23444. {
  23445. "work-safe": {
  23446. name: "Work-Safe",
  23447. default: true
  23448. },
  23449. "calibrating": {
  23450. name: "Calibrating"
  23451. },
  23452. "oversize-load": {
  23453. name: "Oversize Load"
  23454. }
  23455. }
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(5 + 3 / 12, "feet"),
  23462. weight: math.unit(160, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/kira/front.svg",
  23466. extra: 906 / 786,
  23467. bottom: 0.01
  23468. }
  23469. },
  23470. back: {
  23471. height: math.unit(5 + 3 / 12, "feet"),
  23472. weight: math.unit(160, "lb"),
  23473. name: "Back",
  23474. image: {
  23475. source: "./media/characters/kira/back.svg",
  23476. extra: 882 / 757,
  23477. bottom: 0.005
  23478. }
  23479. },
  23480. frontDressed: {
  23481. height: math.unit(5 + 3 / 12, "feet"),
  23482. weight: math.unit(160, "lb"),
  23483. name: "Front (Dressed)",
  23484. image: {
  23485. source: "./media/characters/kira/front-dressed.svg",
  23486. extra: 906 / 786,
  23487. bottom: 0.01
  23488. }
  23489. },
  23490. beans: {
  23491. height: math.unit(0.92, "feet"),
  23492. name: "Beans",
  23493. image: {
  23494. source: "./media/characters/kira/beans.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Normal",
  23501. height: math.unit(5 + 3 / 12, "feet"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(5 + 4 / 12, "feet"),
  23511. weight: math.unit(145, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/scramble/front.svg",
  23515. extra: 763 / 727,
  23516. bottom: 0.05
  23517. }
  23518. },
  23519. back: {
  23520. height: math.unit(5 + 4 / 12, "feet"),
  23521. weight: math.unit(145, "lb"),
  23522. name: "Back",
  23523. image: {
  23524. source: "./media/characters/scramble/back.svg",
  23525. extra: 826 / 737,
  23526. bottom: 0.002
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Normal",
  23533. height: math.unit(5 + 4 / 12, "feet"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23540. {
  23541. side: {
  23542. height: math.unit(6 + 2 / 12, "feet"),
  23543. weight: math.unit(190, "lb"),
  23544. name: "Side",
  23545. image: {
  23546. source: "./media/characters/biscuit/side.svg",
  23547. extra: 858 / 791,
  23548. bottom: 0.044
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Normal",
  23555. height: math.unit(6 + 2 / 12, "feet"),
  23556. default: true
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23562. {
  23563. front: {
  23564. height: math.unit(5 + 2 / 12, "feet"),
  23565. weight: math.unit(120, "lb"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/poffin/front.svg",
  23569. extra: 786 / 680,
  23570. bottom: 0.005
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Normal",
  23577. height: math.unit(5 + 2 / 12, "feet"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(6 + 3 / 12, "feet"),
  23587. weight: math.unit(519, "lb"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/dhari/front.svg",
  23591. extra: 1048 / 946,
  23592. bottom: 0.015
  23593. }
  23594. },
  23595. back: {
  23596. height: math.unit(6 + 3 / 12, "feet"),
  23597. weight: math.unit(519, "lb"),
  23598. name: "Back",
  23599. image: {
  23600. source: "./media/characters/dhari/back.svg",
  23601. extra: 1048 / 931,
  23602. bottom: 0.005
  23603. }
  23604. },
  23605. frontDressed: {
  23606. height: math.unit(6 + 3 / 12, "feet"),
  23607. weight: math.unit(519, "lb"),
  23608. name: "Front (Dressed)",
  23609. image: {
  23610. source: "./media/characters/dhari/front-dressed.svg",
  23611. extra: 1713 / 1546,
  23612. bottom: 0.02
  23613. }
  23614. },
  23615. backDressed: {
  23616. height: math.unit(6 + 3 / 12, "feet"),
  23617. weight: math.unit(519, "lb"),
  23618. name: "Back (Dressed)",
  23619. image: {
  23620. source: "./media/characters/dhari/back-dressed.svg",
  23621. extra: 1699 / 1537,
  23622. bottom: 0.01
  23623. }
  23624. },
  23625. maw: {
  23626. height: math.unit(0.95, "feet"),
  23627. name: "Maw",
  23628. image: {
  23629. source: "./media/characters/dhari/maw.svg"
  23630. }
  23631. },
  23632. wereFront: {
  23633. height: math.unit(12 + 8 / 12, "feet"),
  23634. weight: math.unit(4000, "lb"),
  23635. name: "Front (Were)",
  23636. image: {
  23637. source: "./media/characters/dhari/were-front.svg",
  23638. extra: 1065 / 969,
  23639. bottom: 0.015
  23640. }
  23641. },
  23642. wereBack: {
  23643. height: math.unit(12 + 8 / 12, "feet"),
  23644. weight: math.unit(4000, "lb"),
  23645. name: "Back (Were)",
  23646. image: {
  23647. source: "./media/characters/dhari/were-back.svg",
  23648. extra: 1065 / 969,
  23649. bottom: 0.012
  23650. }
  23651. },
  23652. wereMaw: {
  23653. height: math.unit(0.625, "meters"),
  23654. name: "Maw (Were)",
  23655. image: {
  23656. source: "./media/characters/dhari/were-maw.svg"
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(6 + 3 / 12, "feet"),
  23664. default: true
  23665. },
  23666. ]
  23667. ))
  23668. characterMakers.push(() => makeCharacter(
  23669. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23670. {
  23671. anthro: {
  23672. height: math.unit(5 + 7 / 12, "feet"),
  23673. weight: math.unit(175, "lb"),
  23674. name: "Anthro",
  23675. image: {
  23676. source: "./media/characters/rena-dyne/anthro.svg",
  23677. extra: 1849 / 1785,
  23678. bottom: 0.005
  23679. }
  23680. },
  23681. taur: {
  23682. height: math.unit(15 + 6 / 12, "feet"),
  23683. weight: math.unit(8000, "lb"),
  23684. name: "Taur",
  23685. image: {
  23686. source: "./media/characters/rena-dyne/taur.svg",
  23687. extra: 2315 / 2234,
  23688. bottom: 0.033
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(5 + 7 / 12, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(8, "feet"),
  23705. weight: math.unit(600, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/weremeep/front.svg",
  23709. extra: 970/849,
  23710. bottom: 7/977
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(8, "feet"),
  23718. default: true
  23719. },
  23720. {
  23721. name: "Lorg",
  23722. height: math.unit(12, "feet")
  23723. },
  23724. {
  23725. name: "Oh Lawd She Comin'",
  23726. height: math.unit(20, "feet")
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23732. {
  23733. front: {
  23734. height: math.unit(4, "feet"),
  23735. weight: math.unit(90, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/reza/front.svg",
  23739. extra: 1183 / 1111,
  23740. bottom: 0.017
  23741. }
  23742. },
  23743. back: {
  23744. height: math.unit(4, "feet"),
  23745. weight: math.unit(90, "lb"),
  23746. name: "Back",
  23747. image: {
  23748. source: "./media/characters/reza/back.svg",
  23749. extra: 1183 / 1111,
  23750. bottom: 0.01
  23751. }
  23752. },
  23753. drake: {
  23754. height: math.unit(30, "feet"),
  23755. weight: math.unit(246960, "lb"),
  23756. name: "Drake",
  23757. image: {
  23758. source: "./media/characters/reza/drake.svg",
  23759. extra: 2350 / 2024,
  23760. bottom: 60.7 / 2403
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(4, "feet"),
  23768. default: true
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23774. {
  23775. side: {
  23776. height: math.unit(15, "feet"),
  23777. weight: math.unit(14, "tons"),
  23778. name: "Side",
  23779. image: {
  23780. source: "./media/characters/athea/side.svg",
  23781. extra: 960 / 540,
  23782. bottom: 0.003
  23783. }
  23784. },
  23785. sitting: {
  23786. height: math.unit(6 * 2.85, "feet"),
  23787. weight: math.unit(14, "tons"),
  23788. name: "Sitting",
  23789. image: {
  23790. source: "./media/characters/athea/sitting.svg",
  23791. extra: 621 / 581,
  23792. bottom: 0.075
  23793. }
  23794. },
  23795. maw: {
  23796. height: math.unit(7.59498031496063, "feet"),
  23797. name: "Maw",
  23798. image: {
  23799. source: "./media/characters/athea/maw.svg"
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Lap Cat",
  23806. height: math.unit(2.5, "feet")
  23807. },
  23808. {
  23809. name: "Minimacro",
  23810. height: math.unit(15, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(120, "feet")
  23816. },
  23817. {
  23818. name: "Macro+",
  23819. height: math.unit(640, "feet")
  23820. },
  23821. {
  23822. name: "Colossus",
  23823. height: math.unit(2.2, "miles")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23829. {
  23830. front: {
  23831. height: math.unit(8 + 8 / 12, "feet"),
  23832. weight: math.unit(130, "kg"),
  23833. name: "Front",
  23834. image: {
  23835. source: "./media/characters/seroko/front.svg",
  23836. extra: 1385 / 1280,
  23837. bottom: 0.025
  23838. }
  23839. },
  23840. back: {
  23841. height: math.unit(8 + 8 / 12, "feet"),
  23842. weight: math.unit(130, "kg"),
  23843. name: "Back",
  23844. image: {
  23845. source: "./media/characters/seroko/back.svg",
  23846. extra: 1369 / 1238,
  23847. bottom: 0.018
  23848. }
  23849. },
  23850. frontDressed: {
  23851. height: math.unit(8 + 8 / 12, "feet"),
  23852. weight: math.unit(130, "kg"),
  23853. name: "Front (Dressed)",
  23854. image: {
  23855. source: "./media/characters/seroko/front-dressed.svg",
  23856. extra: 1366 / 1275,
  23857. bottom: 0.03
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(8 + 8 / 12, "feet"),
  23865. default: true
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(5.5, "feet"),
  23874. weight: math.unit(160, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/quatzi/front.svg",
  23878. extra: 2346 / 2242,
  23879. bottom: 0.015
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Normal",
  23886. height: math.unit(5.5, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Big",
  23891. height: math.unit(7.7, "feet")
  23892. },
  23893. ]
  23894. ))
  23895. characterMakers.push(() => makeCharacter(
  23896. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23897. {
  23898. front: {
  23899. height: math.unit(5 + 11 / 12, "feet"),
  23900. weight: math.unit(180, "lb"),
  23901. name: "Front",
  23902. image: {
  23903. source: "./media/characters/sen/front.svg",
  23904. extra: 1321 / 1254,
  23905. bottom: 0.015
  23906. }
  23907. },
  23908. side: {
  23909. height: math.unit(5 + 11 / 12, "feet"),
  23910. weight: math.unit(180, "lb"),
  23911. name: "Side",
  23912. image: {
  23913. source: "./media/characters/sen/side.svg",
  23914. extra: 1321 / 1254,
  23915. bottom: 0.007
  23916. }
  23917. },
  23918. back: {
  23919. height: math.unit(5 + 11 / 12, "feet"),
  23920. weight: math.unit(180, "lb"),
  23921. name: "Back",
  23922. image: {
  23923. source: "./media/characters/sen/back.svg",
  23924. extra: 1321 / 1254
  23925. }
  23926. },
  23927. },
  23928. [
  23929. {
  23930. name: "Normal",
  23931. height: math.unit(5 + 11 / 12, "feet"),
  23932. default: true
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(166.6, "cm"),
  23941. weight: math.unit(66.6, "kg"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/fruity/front.svg",
  23945. extra: 1510 / 1386,
  23946. bottom: 0.04
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(166.6, "cm"),
  23951. weight: math.unit(66.6, "lb"),
  23952. name: "Back",
  23953. image: {
  23954. source: "./media/characters/fruity/back.svg",
  23955. extra: 1563 / 1435,
  23956. bottom: 0.005
  23957. }
  23958. },
  23959. },
  23960. [
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(166.6, "cm"),
  23964. default: true
  23965. },
  23966. {
  23967. name: "Demonic",
  23968. height: math.unit(166.6, "feet")
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23974. {
  23975. side: {
  23976. height: math.unit(10, "feet"),
  23977. weight: math.unit(500, "lb"),
  23978. name: "Side",
  23979. image: {
  23980. source: "./media/characters/zost/side.svg",
  23981. extra: 2870/2533,
  23982. bottom: 252/3122
  23983. }
  23984. },
  23985. mawFront: {
  23986. height: math.unit(1.08, "meters"),
  23987. name: "Maw (Front)",
  23988. image: {
  23989. source: "./media/characters/zost/maw-front.svg"
  23990. }
  23991. },
  23992. mawSide: {
  23993. height: math.unit(2.66, "feet"),
  23994. name: "Maw (Side)",
  23995. image: {
  23996. source: "./media/characters/zost/maw-side.svg"
  23997. }
  23998. },
  23999. wingspan: {
  24000. height: math.unit(7.4, "feet"),
  24001. name: "Wingspan",
  24002. image: {
  24003. source: "./media/characters/zost/wingspan.svg"
  24004. }
  24005. },
  24006. },
  24007. [
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(10, "feet"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(5 + 4 / 12, "feet"),
  24020. weight: math.unit(120, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/luci/front.svg",
  24024. extra: 1985 / 1884,
  24025. bottom: 0.04
  24026. }
  24027. },
  24028. back: {
  24029. height: math.unit(5 + 4 / 12, "feet"),
  24030. weight: math.unit(120, "lb"),
  24031. name: "Back",
  24032. image: {
  24033. source: "./media/characters/luci/back.svg",
  24034. extra: 1892 / 1791,
  24035. bottom: 0.002
  24036. }
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Normal",
  24042. height: math.unit(5 + 4 / 12, "feet"),
  24043. default: true
  24044. },
  24045. ]
  24046. ))
  24047. characterMakers.push(() => makeCharacter(
  24048. { name: "2th", species: ["monster"], tags: ["anthro"] },
  24049. {
  24050. front: {
  24051. height: math.unit(1500, "feet"),
  24052. weight: math.unit(3.8e6, "tons"),
  24053. name: "Front",
  24054. image: {
  24055. source: "./media/characters/2th/front.svg",
  24056. extra: 3489 / 3350,
  24057. bottom: 0.1
  24058. }
  24059. },
  24060. foot: {
  24061. height: math.unit(461, "feet"),
  24062. name: "Foot",
  24063. image: {
  24064. source: "./media/characters/2th/foot.svg"
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "\"Micro\"",
  24071. height: math.unit(15 + 7 / 12, "feet")
  24072. },
  24073. {
  24074. name: "Normal",
  24075. height: math.unit(1500, "feet"),
  24076. default: true
  24077. },
  24078. {
  24079. name: "Macro",
  24080. height: math.unit(5000, "feet")
  24081. },
  24082. {
  24083. name: "Megamacro",
  24084. height: math.unit(15, "miles")
  24085. },
  24086. {
  24087. name: "Gigamacro",
  24088. height: math.unit(4000, "miles")
  24089. },
  24090. {
  24091. name: "Galactic",
  24092. height: math.unit(50, "AU")
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  24098. {
  24099. front: {
  24100. height: math.unit(5 + 6 / 12, "feet"),
  24101. weight: math.unit(220, "lb"),
  24102. name: "Front",
  24103. image: {
  24104. source: "./media/characters/amethyst/front.svg",
  24105. extra: 2078 / 2040,
  24106. bottom: 0.045
  24107. }
  24108. },
  24109. back: {
  24110. height: math.unit(5 + 6 / 12, "feet"),
  24111. weight: math.unit(220, "lb"),
  24112. name: "Back",
  24113. image: {
  24114. source: "./media/characters/amethyst/back.svg",
  24115. extra: 2021 / 1989,
  24116. bottom: 0.02
  24117. }
  24118. },
  24119. },
  24120. [
  24121. {
  24122. name: "Normal",
  24123. height: math.unit(5 + 6 / 12, "feet"),
  24124. default: true
  24125. },
  24126. ]
  24127. ))
  24128. characterMakers.push(() => makeCharacter(
  24129. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24130. {
  24131. front: {
  24132. height: math.unit(4 + 11 / 12, "feet"),
  24133. weight: math.unit(120, "lb"),
  24134. name: "Front",
  24135. image: {
  24136. source: "./media/characters/yumi-akiyama/front.svg",
  24137. extra: 2638/2432,
  24138. bottom: 70/2708
  24139. }
  24140. },
  24141. back: {
  24142. height: math.unit(4 + 11 / 12, "feet"),
  24143. weight: math.unit(120, "lb"),
  24144. name: "Back",
  24145. image: {
  24146. source: "./media/characters/yumi-akiyama/back.svg",
  24147. extra: 2502/2397,
  24148. bottom: 80/2582
  24149. }
  24150. },
  24151. casual: {
  24152. height: math.unit(4 + 11 / 12, "feet"),
  24153. weight: math.unit(120, "lb"),
  24154. name: "Casual",
  24155. image: {
  24156. source: "./media/characters/yumi-akiyama/casual.svg",
  24157. extra: 958/887,
  24158. bottom: 41/999
  24159. }
  24160. },
  24161. jammies: {
  24162. height: math.unit(4 + 11 / 12, "feet"),
  24163. weight: math.unit(120, "lb"),
  24164. name: "Jammies",
  24165. image: {
  24166. source: "./media/characters/yumi-akiyama/jammies.svg",
  24167. extra: 958/894,
  24168. bottom: 37/995
  24169. }
  24170. },
  24171. warmWeather: {
  24172. height: math.unit(4 + 11 / 12, "feet"),
  24173. weight: math.unit(120, "lb"),
  24174. name: "Warm Weather",
  24175. image: {
  24176. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24177. extra: 929/865,
  24178. bottom: 76/1005
  24179. }
  24180. },
  24181. mouth: {
  24182. height: math.unit(0.35, "feet"),
  24183. name: "Mouth",
  24184. image: {
  24185. source: "./media/characters/yumi-akiyama/mouth.svg"
  24186. }
  24187. },
  24188. paws: {
  24189. height: math.unit(1.05, "feet"),
  24190. name: "Paws",
  24191. image: {
  24192. source: "./media/characters/yumi-akiyama/paws.svg"
  24193. }
  24194. },
  24195. cockRing: {
  24196. height: math.unit(0.225, "feet"),
  24197. name: "Cock Ring",
  24198. image: {
  24199. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Galactic",
  24206. height: math.unit(50, "galaxies"),
  24207. default: true
  24208. },
  24209. {
  24210. name: "Universal",
  24211. height: math.unit(100, "universes")
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(8, "feet"),
  24220. weight: math.unit(500, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/rifter-yrmori/front.svg",
  24224. extra: 1180 / 1125,
  24225. bottom: 0.02
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(8, "feet"),
  24230. weight: math.unit(500, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/rifter-yrmori/back.svg",
  24234. extra: 1190 / 1145,
  24235. bottom: 0.001
  24236. }
  24237. },
  24238. wings: {
  24239. height: math.unit(7.75, "feet"),
  24240. weight: math.unit(500, "lb"),
  24241. name: "Wings",
  24242. image: {
  24243. source: "./media/characters/rifter-yrmori/wings.svg",
  24244. extra: 1357 / 1285
  24245. }
  24246. },
  24247. maw: {
  24248. height: math.unit(0.8, "feet"),
  24249. name: "Maw",
  24250. image: {
  24251. source: "./media/characters/rifter-yrmori/maw.svg"
  24252. }
  24253. },
  24254. mawfront: {
  24255. height: math.unit(1.45, "feet"),
  24256. name: "Maw (Front)",
  24257. image: {
  24258. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24259. }
  24260. },
  24261. },
  24262. [
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(8, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Macro",
  24270. height: math.unit(42, "meters")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24276. {
  24277. were: {
  24278. height: math.unit(25 + 6 / 12, "feet"),
  24279. weight: math.unit(10000, "lb"),
  24280. name: "Were",
  24281. image: {
  24282. source: "./media/characters/tahajin/were.svg",
  24283. extra: 801 / 770,
  24284. bottom: 0.042
  24285. }
  24286. },
  24287. aquatic: {
  24288. height: math.unit(6 + 4 / 12, "feet"),
  24289. weight: math.unit(160, "lb"),
  24290. name: "Aquatic",
  24291. image: {
  24292. source: "./media/characters/tahajin/aquatic.svg",
  24293. extra: 572 / 542,
  24294. bottom: 0.04
  24295. }
  24296. },
  24297. chow: {
  24298. height: math.unit(8 + 11 / 12, "feet"),
  24299. weight: math.unit(450, "lb"),
  24300. name: "Chow",
  24301. image: {
  24302. source: "./media/characters/tahajin/chow.svg",
  24303. extra: 660 / 640,
  24304. bottom: 0.015
  24305. }
  24306. },
  24307. demiNaga: {
  24308. height: math.unit(6 + 8 / 12, "feet"),
  24309. weight: math.unit(300, "lb"),
  24310. name: "Demi Naga",
  24311. image: {
  24312. source: "./media/characters/tahajin/demi-naga.svg",
  24313. extra: 643 / 615,
  24314. bottom: 0.1
  24315. }
  24316. },
  24317. data: {
  24318. height: math.unit(5, "inches"),
  24319. weight: math.unit(0.1, "lb"),
  24320. name: "Data",
  24321. image: {
  24322. source: "./media/characters/tahajin/data.svg"
  24323. }
  24324. },
  24325. fluu: {
  24326. height: math.unit(5 + 7 / 12, "feet"),
  24327. weight: math.unit(140, "lb"),
  24328. name: "Fluu",
  24329. image: {
  24330. source: "./media/characters/tahajin/fluu.svg",
  24331. extra: 628 / 592,
  24332. bottom: 0.02
  24333. }
  24334. },
  24335. starWarrior: {
  24336. height: math.unit(4 + 5 / 12, "feet"),
  24337. weight: math.unit(50, "lb"),
  24338. name: "Star Warrior",
  24339. image: {
  24340. source: "./media/characters/tahajin/star-warrior.svg"
  24341. }
  24342. },
  24343. },
  24344. [
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(25 + 6 / 12, "feet"),
  24348. default: true
  24349. },
  24350. ]
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(8, "feet"),
  24357. weight: math.unit(350, "lb"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/gabira/front.svg",
  24361. extra: 1261/1154,
  24362. bottom: 51/1312
  24363. }
  24364. },
  24365. back: {
  24366. height: math.unit(8, "feet"),
  24367. weight: math.unit(350, "lb"),
  24368. name: "Back",
  24369. image: {
  24370. source: "./media/characters/gabira/back.svg",
  24371. extra: 1265/1163,
  24372. bottom: 46/1311
  24373. }
  24374. },
  24375. head: {
  24376. height: math.unit(2.85, "feet"),
  24377. name: "Head",
  24378. image: {
  24379. source: "./media/characters/gabira/head.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(8, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(5 + 3 / 12, "feet"),
  24396. weight: math.unit(137, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/sasha-katraine/front.svg",
  24400. extra: 1745/1694,
  24401. bottom: 37/1782
  24402. }
  24403. },
  24404. back: {
  24405. height: math.unit(5 + 3 / 12, "feet"),
  24406. weight: math.unit(137, "lb"),
  24407. name: "Back",
  24408. image: {
  24409. source: "./media/characters/sasha-katraine/back.svg",
  24410. extra: 1776/1699,
  24411. bottom: 26/1802
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Micro",
  24418. height: math.unit(5, "inches")
  24419. },
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(5 + 3 / 12, "feet"),
  24423. default: true
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24429. {
  24430. side: {
  24431. height: math.unit(4, "inches"),
  24432. weight: math.unit(200, "grams"),
  24433. name: "Side",
  24434. image: {
  24435. source: "./media/characters/der/side.svg",
  24436. extra: 719 / 400,
  24437. bottom: 30.6 / 749.9187
  24438. }
  24439. },
  24440. },
  24441. [
  24442. {
  24443. name: "Micro",
  24444. height: math.unit(4, "inches"),
  24445. default: true
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24451. {
  24452. side: {
  24453. height: math.unit(30, "meters"),
  24454. weight: math.unit(700, "tonnes"),
  24455. name: "Side",
  24456. image: {
  24457. source: "./media/characters/fixerdragon/side.svg",
  24458. extra: (1293.0514 - 116.03) / 1106.86,
  24459. bottom: 116.03 / 1293.0514
  24460. }
  24461. },
  24462. },
  24463. [
  24464. {
  24465. name: "Planck",
  24466. height: math.unit(1.6e-35, "meters")
  24467. },
  24468. {
  24469. name: "Micro",
  24470. height: math.unit(0.4, "meters")
  24471. },
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(30, "meters"),
  24475. default: true
  24476. },
  24477. {
  24478. name: "Megamacro",
  24479. height: math.unit(1.2, "megameters")
  24480. },
  24481. {
  24482. name: "Teramacro",
  24483. height: math.unit(130, "terameters")
  24484. },
  24485. {
  24486. name: "Yottamacro",
  24487. height: math.unit(6200, "yottameters")
  24488. },
  24489. ]
  24490. ));
  24491. characterMakers.push(() => makeCharacter(
  24492. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24493. {
  24494. front: {
  24495. height: math.unit(8, "feet"),
  24496. weight: math.unit(250, "lb"),
  24497. name: "Front",
  24498. image: {
  24499. source: "./media/characters/kite/front.svg",
  24500. extra: 456/414,
  24501. bottom: 24/480
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(8, "feet"),
  24509. default: true
  24510. },
  24511. {
  24512. name: "Macro",
  24513. height: math.unit(360, "feet")
  24514. },
  24515. {
  24516. name: "Megamacro",
  24517. height: math.unit(1500, "feet")
  24518. },
  24519. ]
  24520. ))
  24521. characterMakers.push(() => makeCharacter(
  24522. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24523. {
  24524. anthro_front: {
  24525. height: math.unit(5 + 11/12, "feet"),
  24526. weight: math.unit(170, "lb"),
  24527. name: "Front",
  24528. image: {
  24529. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24530. extra: 1735/1585,
  24531. bottom: 96/1831
  24532. },
  24533. form: "anthro",
  24534. default: true
  24535. },
  24536. anthro_back: {
  24537. height: math.unit(5 + 11/12, "feet"),
  24538. weight: math.unit(170, "lb"),
  24539. name: "Back",
  24540. image: {
  24541. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24542. extra: 1749/1607,
  24543. bottom: 28/1777
  24544. },
  24545. form: "anthro"
  24546. },
  24547. anthro_male: {
  24548. height: math.unit(5 + 11/12, "feet"),
  24549. weight: math.unit(170, "lb"),
  24550. name: "Male",
  24551. image: {
  24552. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24553. extra: 1855/1713,
  24554. bottom: 63/1918
  24555. },
  24556. form: "anthro"
  24557. },
  24558. taur_front: {
  24559. height: math.unit(5 + 7/12, "feet"),
  24560. weight: math.unit(170, "lb"),
  24561. name: "Front",
  24562. image: {
  24563. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24564. extra: 1151/1059,
  24565. bottom: 356/1507
  24566. },
  24567. form: "taur",
  24568. default: true
  24569. },
  24570. anthro_frontDressed: {
  24571. height: math.unit(5 + 11/12, "feet"),
  24572. weight: math.unit(170, "lb"),
  24573. name: "Front (Dressed)",
  24574. image: {
  24575. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24576. extra: 1735/1585,
  24577. bottom: 96/1831
  24578. },
  24579. form: "anthro"
  24580. },
  24581. anthro_backDressed: {
  24582. height: math.unit(5 + 11/12, "feet"),
  24583. weight: math.unit(170, "lb"),
  24584. name: "Back (Dressed)",
  24585. image: {
  24586. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24587. extra: 1749/1607,
  24588. bottom: 28/1777
  24589. },
  24590. form: "anthro"
  24591. },
  24592. anthro_maleDressed: {
  24593. height: math.unit(5 + 11/12, "feet"),
  24594. weight: math.unit(170, "lb"),
  24595. name: "Male (Dressed)",
  24596. image: {
  24597. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24598. extra: 1855/1713,
  24599. bottom: 63/1918
  24600. },
  24601. form: "anthro"
  24602. },
  24603. taur_frontDressed: {
  24604. height: math.unit(5 + 7/12, "feet"),
  24605. weight: math.unit(170, "lb"),
  24606. name: "Front (Dressed)",
  24607. image: {
  24608. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24609. extra: 1151/1059,
  24610. bottom: 356/1507
  24611. },
  24612. form: "taur"
  24613. },
  24614. maw: {
  24615. height: math.unit(1.46, "feet"),
  24616. name: "Maw",
  24617. image: {
  24618. source: "./media/characters/poojawa-vynar/maw.svg"
  24619. },
  24620. allForms: true
  24621. },
  24622. head: {
  24623. height: math.unit(2.34, "feet"),
  24624. name: "Head",
  24625. image: {
  24626. source: "./media/characters/poojawa-vynar/head.svg"
  24627. },
  24628. allForms: true
  24629. },
  24630. leftPaw: {
  24631. height: math.unit(1.72, "feet"),
  24632. name: "Left Paw",
  24633. image: {
  24634. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24635. },
  24636. allForms: true
  24637. },
  24638. rightPaw: {
  24639. height: math.unit(1.61, "feet"),
  24640. name: "Right Paw",
  24641. image: {
  24642. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24643. },
  24644. allForms: true
  24645. },
  24646. toering: {
  24647. height: math.unit(2.9, "inches"),
  24648. name: "Toering",
  24649. image: {
  24650. source: "./media/characters/poojawa-vynar/toering.svg"
  24651. },
  24652. allForms: true
  24653. },
  24654. shaft: {
  24655. height: math.unit(0.625, "feet"),
  24656. name: "Shaft",
  24657. image: {
  24658. source: "./media/characters/poojawa-vynar/shaft.svg"
  24659. },
  24660. allForms: true
  24661. },
  24662. spade: {
  24663. height: math.unit(0.42, "feet"),
  24664. name: "Spade",
  24665. image: {
  24666. source: "./media/characters/poojawa-vynar/spade.svg"
  24667. },
  24668. allForms: true
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Shortstack",
  24674. height: math.unit(4, "feet"),
  24675. form: "anthro"
  24676. },
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(5 + 11 / 12, "feet"),
  24680. form: "anthro",
  24681. default: true
  24682. },
  24683. {
  24684. name: "Tauric",
  24685. height: math.unit(4, "meters"),
  24686. form: "taur",
  24687. default: true
  24688. },
  24689. ],
  24690. {
  24691. "anthro": {
  24692. name: "Anthro",
  24693. default: true
  24694. },
  24695. "taur": {
  24696. name: "Taur",
  24697. },
  24698. }
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(293, "meters"),
  24705. weight: math.unit(70400, "tons"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/violette/front.svg",
  24709. extra: 1227 / 1180,
  24710. bottom: 0.005
  24711. }
  24712. },
  24713. back: {
  24714. height: math.unit(293, "meters"),
  24715. weight: math.unit(70400, "tons"),
  24716. name: "Back",
  24717. image: {
  24718. source: "./media/characters/violette/back.svg",
  24719. extra: 1227 / 1180,
  24720. bottom: 0.005
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(293, "meters"),
  24728. default: true
  24729. },
  24730. ]
  24731. ))
  24732. characterMakers.push(() => makeCharacter(
  24733. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24734. {
  24735. front: {
  24736. height: math.unit(1050, "feet"),
  24737. weight: math.unit(200000, "tons"),
  24738. name: "Front",
  24739. image: {
  24740. source: "./media/characters/alessandra/front.svg",
  24741. extra: 960 / 912,
  24742. bottom: 0.06
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Macro",
  24749. height: math.unit(1050, "feet")
  24750. },
  24751. {
  24752. name: "Macro+",
  24753. height: math.unit(900, "meters"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(5, "feet"),
  24763. weight: math.unit(187, "lb"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/person/front.svg",
  24767. extra: 3087 / 2945,
  24768. bottom: 91 / 3181
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Micro",
  24775. height: math.unit(3, "inches")
  24776. },
  24777. {
  24778. name: "Normal",
  24779. height: math.unit(5, "feet"),
  24780. default: true
  24781. },
  24782. {
  24783. name: "Macro",
  24784. height: math.unit(90, "feet")
  24785. },
  24786. {
  24787. name: "Max Size",
  24788. height: math.unit(280, "feet")
  24789. },
  24790. ]
  24791. ))
  24792. characterMakers.push(() => makeCharacter(
  24793. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24794. {
  24795. front: {
  24796. height: math.unit(12, "feet"),
  24797. weight: math.unit(3200, "lb"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/ty/front.svg",
  24801. extra: 753/703,
  24802. bottom: 61/814
  24803. }
  24804. },
  24805. back: {
  24806. height: math.unit(12, "feet"),
  24807. weight: math.unit(3200, "lb"),
  24808. name: "Back",
  24809. image: {
  24810. source: "./media/characters/ty/back.svg",
  24811. extra: 757/707,
  24812. bottom: 16/773
  24813. }
  24814. },
  24815. head: {
  24816. height: math.unit(3.7, "feet"),
  24817. name: "Head",
  24818. image: {
  24819. source: "./media/characters/ty/head.svg"
  24820. }
  24821. },
  24822. hand: {
  24823. height: math.unit(2.38, "feet"),
  24824. name: "Hand",
  24825. image: {
  24826. source: "./media/characters/ty/hand.svg"
  24827. }
  24828. },
  24829. tail: {
  24830. height: math.unit(8.01096641535, "feet"),
  24831. name: "Tail",
  24832. image: {
  24833. source: "./media/characters/ty/tail.svg"
  24834. }
  24835. },
  24836. },
  24837. [
  24838. {
  24839. name: "Normal",
  24840. height: math.unit(12, "feet"),
  24841. default: true
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(5 + 4 / 12, "feet"),
  24850. weight: math.unit(115, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/rocky/front.svg",
  24854. extra: 1012 / 975,
  24855. bottom: 54 / 1066
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Normal",
  24862. height: math.unit(5 + 4 / 12, "feet"),
  24863. default: true
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24869. {
  24870. upright: {
  24871. height: math.unit(6, "meters"),
  24872. weight: math.unit(4000, "kg"),
  24873. name: "Upright",
  24874. image: {
  24875. source: "./media/characters/ruin/upright.svg",
  24876. extra: 668 / 661,
  24877. bottom: 42 / 799.8396
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(6, "meters"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(5, "feet"),
  24894. weight: math.unit(106, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/robin/front.svg",
  24898. extra: 862 / 799,
  24899. bottom: 42.4 / 914.8856
  24900. }
  24901. },
  24902. },
  24903. [
  24904. {
  24905. name: "Normal",
  24906. height: math.unit(5, "feet"),
  24907. default: true
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24913. {
  24914. side: {
  24915. height: math.unit(3, "feet"),
  24916. weight: math.unit(225, "lb"),
  24917. name: "Side",
  24918. image: {
  24919. source: "./media/characters/saian/side.svg",
  24920. extra: 566 / 356,
  24921. bottom: 79.7 / 643
  24922. }
  24923. },
  24924. maw: {
  24925. height: math.unit(2.85, "feet"),
  24926. name: "Maw",
  24927. image: {
  24928. source: "./media/characters/saian/maw.svg"
  24929. }
  24930. },
  24931. },
  24932. [
  24933. {
  24934. name: "Normal",
  24935. height: math.unit(3, "feet"),
  24936. default: true
  24937. },
  24938. ]
  24939. ))
  24940. characterMakers.push(() => makeCharacter(
  24941. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24942. {
  24943. side: {
  24944. height: math.unit(8, "feet"),
  24945. weight: math.unit(300, "lb"),
  24946. name: "Side",
  24947. image: {
  24948. source: "./media/characters/equus-silvermane/side.svg",
  24949. extra: 2176 / 2050,
  24950. bottom: 65.7 / 2245
  24951. }
  24952. },
  24953. front: {
  24954. height: math.unit(8, "feet"),
  24955. weight: math.unit(300, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/equus-silvermane/front.svg",
  24959. extra: 4633 / 4400,
  24960. bottom: 71.3 / 4706.915
  24961. }
  24962. },
  24963. sideStepping: {
  24964. height: math.unit(8, "feet"),
  24965. weight: math.unit(300, "lb"),
  24966. name: "Side (Stepping)",
  24967. image: {
  24968. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24969. extra: 1968 / 1860,
  24970. bottom: 16.4 / 1989
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Normal",
  24977. height: math.unit(8, "feet")
  24978. },
  24979. {
  24980. name: "Minimacro",
  24981. height: math.unit(75, "feet"),
  24982. default: true
  24983. },
  24984. {
  24985. name: "Macro",
  24986. height: math.unit(150, "feet")
  24987. },
  24988. {
  24989. name: "Macro+",
  24990. height: math.unit(1000, "feet")
  24991. },
  24992. {
  24993. name: "Megamacro",
  24994. height: math.unit(1, "mile")
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  25000. {
  25001. side: {
  25002. height: math.unit(20, "feet"),
  25003. weight: math.unit(30000, "kg"),
  25004. name: "Side",
  25005. image: {
  25006. source: "./media/characters/windar/side.svg",
  25007. extra: 1491 / 1248,
  25008. bottom: 82.56 / 1568
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(20, "feet"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  25022. {
  25023. side: {
  25024. height: math.unit(15.66, "feet"),
  25025. weight: math.unit(150, "lb"),
  25026. name: "Side",
  25027. image: {
  25028. source: "./media/characters/melody/side.svg",
  25029. extra: 1097 / 944,
  25030. bottom: 11.8 / 1109
  25031. }
  25032. },
  25033. sideOutfit: {
  25034. height: math.unit(15.66, "feet"),
  25035. weight: math.unit(150, "lb"),
  25036. name: "Side (Outfit)",
  25037. image: {
  25038. source: "./media/characters/melody/side-outfit.svg",
  25039. extra: 1097 / 944,
  25040. bottom: 11.8 / 1109
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(15.66, "feet"),
  25048. default: true
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  25054. {
  25055. armoredFront: {
  25056. height: math.unit(8, "feet"),
  25057. weight: math.unit(325, "lb"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/windera/armored-front.svg",
  25061. extra: 1830/1598,
  25062. bottom: 151/1981
  25063. },
  25064. form: "armored",
  25065. default: true
  25066. },
  25067. macroFront: {
  25068. height: math.unit(70, "feet"),
  25069. weight: math.unit(315453, "lb"),
  25070. name: "Front",
  25071. image: {
  25072. source: "./media/characters/windera/macro-front.svg",
  25073. extra: 963/883,
  25074. bottom: 23/986
  25075. },
  25076. form: "macro",
  25077. default: true
  25078. },
  25079. },
  25080. [
  25081. {
  25082. name: "Normal",
  25083. height: math.unit(8, "feet"),
  25084. default: true,
  25085. form: "armored"
  25086. },
  25087. {
  25088. name: "Normal",
  25089. height: math.unit(70, "feet"),
  25090. default: true,
  25091. form: "macro"
  25092. },
  25093. ],
  25094. {
  25095. "armored": {
  25096. name: "Armored",
  25097. default: true
  25098. },
  25099. "macro": {
  25100. name: "Macro",
  25101. },
  25102. }
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  25106. {
  25107. front: {
  25108. height: math.unit(28.75, "feet"),
  25109. weight: math.unit(2000, "kg"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/sonear/front.svg",
  25113. extra: 1041.1 / 964.9,
  25114. bottom: 53.7 / 1096.6
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Normal",
  25121. height: math.unit(28.75, "feet"),
  25122. default: true
  25123. },
  25124. ]
  25125. ))
  25126. characterMakers.push(() => makeCharacter(
  25127. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25128. {
  25129. side: {
  25130. height: math.unit(25.5, "feet"),
  25131. weight: math.unit(23000, "kg"),
  25132. name: "Side",
  25133. image: {
  25134. source: "./media/characters/kanara/side.svg"
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(25.5, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25148. {
  25149. side: {
  25150. height: math.unit(10, "feet"),
  25151. weight: math.unit(1000, "kg"),
  25152. name: "Side",
  25153. image: {
  25154. source: "./media/characters/ereus/side.svg",
  25155. extra: 1157 / 959,
  25156. bottom: 153 / 1312.5
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(10, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25170. {
  25171. side: {
  25172. height: math.unit(4.5, "feet"),
  25173. weight: math.unit(500, "lb"),
  25174. name: "Side",
  25175. image: {
  25176. source: "./media/characters/e-ter/side.svg",
  25177. extra: 1550 / 1248,
  25178. bottom: 146 / 1694
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(4.5, "feet"),
  25186. default: true
  25187. },
  25188. ]
  25189. ))
  25190. characterMakers.push(() => makeCharacter(
  25191. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25192. {
  25193. side: {
  25194. height: math.unit(9.7, "feet"),
  25195. weight: math.unit(4000, "kg"),
  25196. name: "Side",
  25197. image: {
  25198. source: "./media/characters/yamie/side.svg"
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(9.7, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(50, "feet"),
  25215. weight: math.unit(50000, "kg"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/anders/front.svg",
  25219. extra: 570 / 539,
  25220. bottom: 14.7 / 586.7
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Large",
  25227. height: math.unit(50, "feet")
  25228. },
  25229. {
  25230. name: "Macro",
  25231. height: math.unit(2000, "feet"),
  25232. default: true
  25233. },
  25234. {
  25235. name: "Megamacro",
  25236. height: math.unit(12, "miles")
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(7 + 2 / 12, "feet"),
  25245. weight: math.unit(300, "lb"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/reban/front.svg",
  25249. extra: 1287/1212,
  25250. bottom: 148/1435
  25251. }
  25252. },
  25253. head: {
  25254. height: math.unit(1.95, "feet"),
  25255. name: "Head",
  25256. image: {
  25257. source: "./media/characters/reban/head.svg"
  25258. }
  25259. },
  25260. maw: {
  25261. height: math.unit(0.95, "feet"),
  25262. name: "Maw",
  25263. image: {
  25264. source: "./media/characters/reban/maw.svg"
  25265. }
  25266. },
  25267. foot: {
  25268. height: math.unit(1.65, "feet"),
  25269. name: "Foot",
  25270. image: {
  25271. source: "./media/characters/reban/foot.svg"
  25272. }
  25273. },
  25274. dick: {
  25275. height: math.unit(7 / 5, "feet"),
  25276. name: "Dick",
  25277. image: {
  25278. source: "./media/characters/reban/dick.svg"
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Natural Height",
  25285. height: math.unit(7 + 2 / 12, "feet")
  25286. },
  25287. {
  25288. name: "Macro",
  25289. height: math.unit(500, "feet"),
  25290. default: true
  25291. },
  25292. {
  25293. name: "Canon Height",
  25294. height: math.unit(50, "AU")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6, "feet"),
  25303. weight: math.unit(150, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/terrance-keayes/front.svg",
  25307. extra: 1.005,
  25308. bottom: 151 / 1615
  25309. }
  25310. },
  25311. side: {
  25312. height: math.unit(6, "feet"),
  25313. weight: math.unit(150, "lb"),
  25314. name: "Side",
  25315. image: {
  25316. source: "./media/characters/terrance-keayes/side.svg",
  25317. extra: 1.005,
  25318. bottom: 129.4 / 1544
  25319. }
  25320. },
  25321. back: {
  25322. height: math.unit(6, "feet"),
  25323. weight: math.unit(150, "lb"),
  25324. name: "Back",
  25325. image: {
  25326. source: "./media/characters/terrance-keayes/back.svg",
  25327. extra: 1.005,
  25328. bottom: 58.4 / 1557.3
  25329. }
  25330. },
  25331. dick: {
  25332. height: math.unit(6 * 0.208, "feet"),
  25333. name: "Dick",
  25334. image: {
  25335. source: "./media/characters/terrance-keayes/dick.svg"
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Canon Height",
  25342. height: math.unit(35, "miles"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(6, "feet"),
  25352. weight: math.unit(150, "lb"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/ofelia/front.svg",
  25356. extra: 1130/1117,
  25357. bottom: 91/1221
  25358. }
  25359. },
  25360. back: {
  25361. height: math.unit(6, "feet"),
  25362. weight: math.unit(150, "lb"),
  25363. name: "Back",
  25364. image: {
  25365. source: "./media/characters/ofelia/back.svg",
  25366. extra: 1172/1159,
  25367. bottom: 28/1200
  25368. }
  25369. },
  25370. maw: {
  25371. height: math.unit(1, "feet"),
  25372. name: "Maw",
  25373. image: {
  25374. source: "./media/characters/ofelia/maw.svg"
  25375. }
  25376. },
  25377. foot: {
  25378. height: math.unit(1.949, "feet"),
  25379. name: "Foot",
  25380. image: {
  25381. source: "./media/characters/ofelia/foot.svg"
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Canon Height",
  25388. height: math.unit(2000, "miles"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(6, "feet"),
  25398. weight: math.unit(150, "lb"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/samuel/front.svg",
  25402. extra: 265 / 258,
  25403. bottom: 2 / 266.1566
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Macro",
  25410. height: math.unit(100, "feet"),
  25411. default: true
  25412. },
  25413. {
  25414. name: "Full Size",
  25415. height: math.unit(1000, "miles")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(6, "feet"),
  25424. weight: math.unit(300, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/beishir-kiel/front.svg",
  25428. extra: 569 / 547,
  25429. bottom: 41.9 / 609
  25430. }
  25431. },
  25432. maw: {
  25433. height: math.unit(6 * 0.202, "feet"),
  25434. name: "Maw",
  25435. image: {
  25436. source: "./media/characters/beishir-kiel/maw.svg"
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Macro",
  25443. height: math.unit(300, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(5 + 7/12, "feet"),
  25453. weight: math.unit(120, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/logan-grey/front.svg",
  25457. extra: 1836/1738,
  25458. bottom: 108/1944
  25459. }
  25460. },
  25461. back: {
  25462. height: math.unit(5 + 7/12, "feet"),
  25463. weight: math.unit(120, "lb"),
  25464. name: "Back",
  25465. image: {
  25466. source: "./media/characters/logan-grey/back.svg",
  25467. extra: 1880/1794,
  25468. bottom: 24/1904
  25469. }
  25470. },
  25471. frontSfw: {
  25472. height: math.unit(5 + 7/12, "feet"),
  25473. weight: math.unit(120, "lb"),
  25474. name: "Front (SFW)",
  25475. image: {
  25476. source: "./media/characters/logan-grey/front-sfw.svg",
  25477. extra: 1836/1738,
  25478. bottom: 108/1944
  25479. }
  25480. },
  25481. backSfw: {
  25482. height: math.unit(5 + 7/12, "feet"),
  25483. weight: math.unit(120, "lb"),
  25484. name: "Back (SFW)",
  25485. image: {
  25486. source: "./media/characters/logan-grey/back-sfw.svg",
  25487. extra: 1880/1794,
  25488. bottom: 24/1904
  25489. }
  25490. },
  25491. hands: {
  25492. height: math.unit(0.84, "feet"),
  25493. name: "Hands",
  25494. image: {
  25495. source: "./media/characters/logan-grey/hands.svg"
  25496. }
  25497. },
  25498. paws: {
  25499. height: math.unit(0.72, "feet"),
  25500. name: "Paws",
  25501. image: {
  25502. source: "./media/characters/logan-grey/paws.svg"
  25503. }
  25504. },
  25505. cock: {
  25506. height: math.unit(1.45, "feet"),
  25507. name: "Cock",
  25508. image: {
  25509. source: "./media/characters/logan-grey/cock.svg"
  25510. }
  25511. },
  25512. cockAlt: {
  25513. height: math.unit(1.437, "feet"),
  25514. name: "Cock (alt)",
  25515. image: {
  25516. source: "./media/characters/logan-grey/cock-alt.svg"
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(5 + 8 / 12, "feet")
  25524. },
  25525. {
  25526. name: "The 500 Foot Femboy",
  25527. height: math.unit(500, "feet"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Megmacro",
  25532. height: math.unit(20, "miles")
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(8 + 2 / 12, "feet"),
  25541. weight: math.unit(275, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/draganta/front.svg",
  25545. extra: 1177 / 1135,
  25546. bottom: 33.46 / 1212.1
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(8 + 6 / 12, "feet"),
  25554. default: true
  25555. },
  25556. {
  25557. name: "Macro",
  25558. height: math.unit(150, "feet")
  25559. },
  25560. {
  25561. name: "Megamacro",
  25562. height: math.unit(1000, "miles")
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25568. {
  25569. front: {
  25570. height: math.unit(1.72, "m"),
  25571. weight: math.unit(80, "lb"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/voski/front.svg",
  25575. extra: 2076.22 / 2022.4,
  25576. bottom: 102.7 / 2177.3866
  25577. }
  25578. },
  25579. frontFlaccid: {
  25580. height: math.unit(1.72, "m"),
  25581. weight: math.unit(80, "lb"),
  25582. name: "Front (Flaccid)",
  25583. image: {
  25584. source: "./media/characters/voski/front-flaccid.svg",
  25585. extra: 2076.22 / 2022.4,
  25586. bottom: 102.7 / 2177.3866
  25587. }
  25588. },
  25589. frontErect: {
  25590. height: math.unit(1.72, "m"),
  25591. weight: math.unit(80, "lb"),
  25592. name: "Front (Erect)",
  25593. image: {
  25594. source: "./media/characters/voski/front-erect.svg",
  25595. extra: 2076.22 / 2022.4,
  25596. bottom: 102.7 / 2177.3866
  25597. }
  25598. },
  25599. back: {
  25600. height: math.unit(1.72, "m"),
  25601. weight: math.unit(80, "lb"),
  25602. name: "Back",
  25603. image: {
  25604. source: "./media/characters/voski/back.svg",
  25605. extra: 2104 / 2051,
  25606. bottom: 10.45 / 2113.63
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(1.72, "m")
  25614. },
  25615. {
  25616. name: "Macro",
  25617. height: math.unit(55, "m"),
  25618. default: true
  25619. },
  25620. {
  25621. name: "Macro+",
  25622. height: math.unit(300, "m")
  25623. },
  25624. {
  25625. name: "Macro++",
  25626. height: math.unit(700, "m")
  25627. },
  25628. {
  25629. name: "Macro+++",
  25630. height: math.unit(4500, "m")
  25631. },
  25632. {
  25633. name: "Macro++++",
  25634. height: math.unit(45, "km")
  25635. },
  25636. {
  25637. name: "Macro+++++",
  25638. height: math.unit(1220, "km")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(2.3, "m"),
  25647. weight: math.unit(304, "kg"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/icowom-lee/front.svg",
  25651. extra: 985 / 955,
  25652. bottom: 25.4 / 1012
  25653. }
  25654. },
  25655. fronttentacles: {
  25656. height: math.unit(2.3, "m"),
  25657. weight: math.unit(304, "kg"),
  25658. name: "Front (Tentacles)",
  25659. image: {
  25660. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25661. extra: 985 / 955,
  25662. bottom: 25.4 / 1012
  25663. }
  25664. },
  25665. back: {
  25666. height: math.unit(2.3, "m"),
  25667. weight: math.unit(304, "kg"),
  25668. name: "Back",
  25669. image: {
  25670. source: "./media/characters/icowom-lee/back.svg",
  25671. extra: 975 / 954,
  25672. bottom: 9.5 / 985
  25673. }
  25674. },
  25675. backtentacles: {
  25676. height: math.unit(2.3, "m"),
  25677. weight: math.unit(304, "kg"),
  25678. name: "Back (Tentacles)",
  25679. image: {
  25680. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25681. extra: 975 / 954,
  25682. bottom: 9.5 / 985
  25683. }
  25684. },
  25685. frontDressed: {
  25686. height: math.unit(2.3, "m"),
  25687. weight: math.unit(304, "kg"),
  25688. name: "Front (Dressed)",
  25689. image: {
  25690. source: "./media/characters/icowom-lee/front-dressed.svg",
  25691. extra: 3076 / 2933,
  25692. bottom: 51.4 / 3125.1889
  25693. }
  25694. },
  25695. rump: {
  25696. height: math.unit(0.776, "meters"),
  25697. name: "Rump",
  25698. image: {
  25699. source: "./media/characters/icowom-lee/rump.svg"
  25700. }
  25701. },
  25702. genitals: {
  25703. height: math.unit(0.78, "meters"),
  25704. name: "Genitals",
  25705. image: {
  25706. source: "./media/characters/icowom-lee/genitals.svg"
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Normal",
  25713. height: math.unit(2.3, "meters"),
  25714. default: true
  25715. },
  25716. {
  25717. name: "Macro",
  25718. height: math.unit(94, "meters"),
  25719. default: true
  25720. },
  25721. ]
  25722. ))
  25723. characterMakers.push(() => makeCharacter(
  25724. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25725. {
  25726. front: {
  25727. height: math.unit(22, "meters"),
  25728. weight: math.unit(21000, "kg"),
  25729. name: "Front",
  25730. image: {
  25731. source: "./media/characters/shock-diamond/front.svg",
  25732. extra: 2204 / 2053,
  25733. bottom: 65 / 2239.47
  25734. }
  25735. },
  25736. frontNude: {
  25737. height: math.unit(22, "meters"),
  25738. weight: math.unit(21000, "kg"),
  25739. name: "Front (Nude)",
  25740. image: {
  25741. source: "./media/characters/shock-diamond/front-nude.svg",
  25742. extra: 2514 / 2285,
  25743. bottom: 13 / 2527.56
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Normal",
  25750. height: math.unit(3, "meters")
  25751. },
  25752. {
  25753. name: "Macro",
  25754. height: math.unit(22, "meters"),
  25755. default: true
  25756. },
  25757. ]
  25758. ))
  25759. characterMakers.push(() => makeCharacter(
  25760. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25761. {
  25762. front: {
  25763. height: math.unit(5 + 4/12, "feet"),
  25764. weight: math.unit(125, "lb"),
  25765. name: "Front",
  25766. image: {
  25767. source: "./media/characters/rory/front.svg",
  25768. extra: 1790/1681,
  25769. bottom: 66/1856
  25770. },
  25771. form: "normal",
  25772. default: true
  25773. },
  25774. back: {
  25775. height: math.unit(5 + 4/12, "feet"),
  25776. weight: math.unit(125, "lb"),
  25777. name: "Back",
  25778. image: {
  25779. source: "./media/characters/rory/back.svg",
  25780. extra: 1805/1690,
  25781. bottom: 56/1861
  25782. },
  25783. form: "normal"
  25784. },
  25785. frontDressed: {
  25786. height: math.unit(5 + 4/12, "feet"),
  25787. weight: math.unit(125, "lb"),
  25788. name: "Front (Dressed)",
  25789. image: {
  25790. source: "./media/characters/rory/front-dressed.svg",
  25791. extra: 1790/1681,
  25792. bottom: 66/1856
  25793. },
  25794. form: "normal"
  25795. },
  25796. backDressed: {
  25797. height: math.unit(5 + 4/12, "feet"),
  25798. weight: math.unit(125, "lb"),
  25799. name: "Back (Dressed)",
  25800. image: {
  25801. source: "./media/characters/rory/back-dressed.svg",
  25802. extra: 1805/1690,
  25803. bottom: 56/1861
  25804. },
  25805. form: "normal"
  25806. },
  25807. frontNsfw: {
  25808. height: math.unit(5 + 4/12, "feet"),
  25809. weight: math.unit(125, "lb"),
  25810. name: "Front (NSFW)",
  25811. image: {
  25812. source: "./media/characters/rory/front-nsfw.svg",
  25813. extra: 1790/1681,
  25814. bottom: 66/1856
  25815. },
  25816. form: "normal"
  25817. },
  25818. backNsfw: {
  25819. height: math.unit(5 + 4/12, "feet"),
  25820. weight: math.unit(125, "lb"),
  25821. name: "Back (NSFW)",
  25822. image: {
  25823. source: "./media/characters/rory/back-nsfw.svg",
  25824. extra: 1805/1690,
  25825. bottom: 56/1861
  25826. },
  25827. form: "normal"
  25828. },
  25829. dick: {
  25830. height: math.unit(0.8, "feet"),
  25831. name: "Dick",
  25832. image: {
  25833. source: "./media/characters/rory/dick.svg"
  25834. },
  25835. form: "normal"
  25836. },
  25837. thicc_front: {
  25838. height: math.unit(5 + 4/12, "feet"),
  25839. weight: math.unit(195, "lb"),
  25840. name: "Front",
  25841. image: {
  25842. source: "./media/characters/rory/thicc-front.svg",
  25843. extra: 1220/1100,
  25844. bottom: 103/1323
  25845. },
  25846. form: "thicc",
  25847. default: true
  25848. },
  25849. thicc_back: {
  25850. height: math.unit(5 + 4/12, "feet"),
  25851. weight: math.unit(195, "lb"),
  25852. name: "Back",
  25853. image: {
  25854. source: "./media/characters/rory/thicc-back.svg",
  25855. extra: 1166/1086,
  25856. bottom: 35/1201
  25857. },
  25858. form: "thicc"
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Micro",
  25864. height: math.unit(3, "inches"),
  25865. allForms: true
  25866. },
  25867. {
  25868. name: "Normal",
  25869. height: math.unit(5 + 4/12, "feet"),
  25870. allForms: true,
  25871. default: true
  25872. },
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(90, "feet"),
  25876. allForms: true
  25877. },
  25878. {
  25879. name: "Supercharged",
  25880. height: math.unit(270, "feet"),
  25881. allForms: true
  25882. },
  25883. ],
  25884. {
  25885. "normal": {
  25886. name: "Normal",
  25887. default: true
  25888. },
  25889. "thicc": {
  25890. name: "Thicc",
  25891. },
  25892. }
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(5 + 9 / 12, "feet"),
  25899. weight: math.unit(190, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/sprisk/front.svg",
  25903. extra: 1225 / 1180,
  25904. bottom: 42.7 / 1266.4
  25905. }
  25906. },
  25907. frontNsfw: {
  25908. height: math.unit(5 + 9 / 12, "feet"),
  25909. weight: math.unit(190, "lb"),
  25910. name: "Front (NSFW)",
  25911. image: {
  25912. source: "./media/characters/sprisk/front-nsfw.svg",
  25913. extra: 1225 / 1180,
  25914. bottom: 42.7 / 1266.4
  25915. }
  25916. },
  25917. back: {
  25918. height: math.unit(5 + 9 / 12, "feet"),
  25919. weight: math.unit(190, "lb"),
  25920. name: "Back",
  25921. image: {
  25922. source: "./media/characters/sprisk/back.svg",
  25923. extra: 1247 / 1200,
  25924. bottom: 5.6 / 1253.04
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Tiny",
  25931. height: math.unit(2, "inches")
  25932. },
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 9 / 12, "feet"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Mini Macro",
  25940. height: math.unit(18, "feet")
  25941. },
  25942. {
  25943. name: "Macro",
  25944. height: math.unit(100, "feet")
  25945. },
  25946. {
  25947. name: "MACRO",
  25948. height: math.unit(50, "miles")
  25949. },
  25950. {
  25951. name: "M A C R O",
  25952. height: math.unit(300, "miles")
  25953. },
  25954. ]
  25955. ))
  25956. characterMakers.push(() => makeCharacter(
  25957. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25958. {
  25959. side: {
  25960. height: math.unit(15.6, "meters"),
  25961. weight: math.unit(700000, "kg"),
  25962. name: "Side",
  25963. image: {
  25964. source: "./media/characters/bunsen/side.svg",
  25965. extra: 1644 / 358
  25966. }
  25967. },
  25968. foot: {
  25969. height: math.unit(1.611 * 1644 / 358, "meter"),
  25970. name: "Foot",
  25971. image: {
  25972. source: "./media/characters/bunsen/foot.svg"
  25973. }
  25974. },
  25975. },
  25976. [
  25977. {
  25978. name: "Small",
  25979. height: math.unit(10, "feet")
  25980. },
  25981. {
  25982. name: "Normal",
  25983. height: math.unit(15.6, "meters"),
  25984. default: true
  25985. },
  25986. ]
  25987. ))
  25988. characterMakers.push(() => makeCharacter(
  25989. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25990. {
  25991. front: {
  25992. height: math.unit(4 + 11 / 12, "feet"),
  25993. weight: math.unit(140, "lb"),
  25994. name: "Front",
  25995. image: {
  25996. source: "./media/characters/sesh/front.svg",
  25997. extra: 3420 / 3231,
  25998. bottom: 72 / 3949.5
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(4 + 11 / 12, "feet")
  26006. },
  26007. {
  26008. name: "Grown",
  26009. height: math.unit(15, "feet"),
  26010. default: true
  26011. },
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(1500, "feet")
  26015. },
  26016. {
  26017. name: "Megamacro",
  26018. height: math.unit(30, "miles")
  26019. },
  26020. {
  26021. name: "Continental",
  26022. height: math.unit(3000, "miles")
  26023. },
  26024. {
  26025. name: "Gravity Mass",
  26026. height: math.unit(300000, "miles")
  26027. },
  26028. {
  26029. name: "Planet Buster",
  26030. height: math.unit(30000000, "miles")
  26031. },
  26032. {
  26033. name: "Big",
  26034. height: math.unit(3000000000, "miles")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(9, "feet"),
  26043. weight: math.unit(350, "lb"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/pepper/front.svg",
  26047. extra: 1448 / 1312,
  26048. bottom: 9.4 / 1457.88
  26049. }
  26050. },
  26051. back: {
  26052. height: math.unit(9, "feet"),
  26053. weight: math.unit(350, "lb"),
  26054. name: "Back",
  26055. image: {
  26056. source: "./media/characters/pepper/back.svg",
  26057. extra: 1423 / 1300,
  26058. bottom: 4.6 / 1429
  26059. }
  26060. },
  26061. maw: {
  26062. height: math.unit(0.932, "feet"),
  26063. name: "Maw",
  26064. image: {
  26065. source: "./media/characters/pepper/maw.svg"
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(9, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(6, "feet"),
  26082. weight: math.unit(150, "lb"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/maelstrom/front.svg",
  26086. extra: 2100 / 1883,
  26087. bottom: 94 / 2196.7
  26088. }
  26089. },
  26090. },
  26091. [
  26092. {
  26093. name: "Less Kaiju",
  26094. height: math.unit(200, "feet")
  26095. },
  26096. {
  26097. name: "Kaiju",
  26098. height: math.unit(400, "feet"),
  26099. default: true
  26100. },
  26101. {
  26102. name: "Kaiju-er",
  26103. height: math.unit(600, "feet")
  26104. },
  26105. ]
  26106. ))
  26107. characterMakers.push(() => makeCharacter(
  26108. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  26109. {
  26110. front: {
  26111. height: math.unit(6 + 5 / 12, "feet"),
  26112. weight: math.unit(180, "lb"),
  26113. name: "Front",
  26114. image: {
  26115. source: "./media/characters/lexir/front.svg",
  26116. extra: 180 / 172,
  26117. bottom: 12 / 192
  26118. }
  26119. },
  26120. back: {
  26121. height: math.unit(6 + 5 / 12, "feet"),
  26122. weight: math.unit(180, "lb"),
  26123. name: "Back",
  26124. image: {
  26125. source: "./media/characters/lexir/back.svg",
  26126. extra: 1273/1201,
  26127. bottom: 39/1312
  26128. }
  26129. },
  26130. },
  26131. [
  26132. {
  26133. name: "Very Smal",
  26134. height: math.unit(1, "nm")
  26135. },
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(6 + 5 / 12, "feet"),
  26139. default: true
  26140. },
  26141. {
  26142. name: "Macro",
  26143. height: math.unit(1, "mile")
  26144. },
  26145. {
  26146. name: "Megamacro",
  26147. height: math.unit(50, "miles")
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(1.5, "meters"),
  26156. weight: math.unit(100, "lb"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/maksio/front.svg",
  26160. extra: 1549 / 1531,
  26161. bottom: 123.7 / 1674.5429
  26162. }
  26163. },
  26164. back: {
  26165. height: math.unit(1.5, "meters"),
  26166. weight: math.unit(100, "lb"),
  26167. name: "Back",
  26168. image: {
  26169. source: "./media/characters/maksio/back.svg",
  26170. extra: 1541 / 1509,
  26171. bottom: 97 / 1639
  26172. }
  26173. },
  26174. hand: {
  26175. height: math.unit(0.621, "feet"),
  26176. name: "Hand",
  26177. image: {
  26178. source: "./media/characters/maksio/hand.svg"
  26179. }
  26180. },
  26181. foot: {
  26182. height: math.unit(1.611, "feet"),
  26183. name: "Foot",
  26184. image: {
  26185. source: "./media/characters/maksio/foot.svg"
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Shrunken",
  26192. height: math.unit(10, "cm")
  26193. },
  26194. {
  26195. name: "Normal",
  26196. height: math.unit(150, "cm"),
  26197. default: true
  26198. },
  26199. ]
  26200. ))
  26201. characterMakers.push(() => makeCharacter(
  26202. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26203. {
  26204. front: {
  26205. height: math.unit(100, "feet"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/erza-bear/front.svg",
  26209. extra: 2449 / 2390,
  26210. bottom: 46 / 2494
  26211. }
  26212. },
  26213. back: {
  26214. height: math.unit(100, "feet"),
  26215. name: "Back",
  26216. image: {
  26217. source: "./media/characters/erza-bear/back.svg",
  26218. extra: 2489 / 2430,
  26219. bottom: 85.4 / 2480
  26220. }
  26221. },
  26222. tail: {
  26223. height: math.unit(42, "feet"),
  26224. name: "Tail",
  26225. image: {
  26226. source: "./media/characters/erza-bear/tail.svg"
  26227. }
  26228. },
  26229. tongue: {
  26230. height: math.unit(8, "feet"),
  26231. name: "Tongue",
  26232. image: {
  26233. source: "./media/characters/erza-bear/tongue.svg"
  26234. }
  26235. },
  26236. dick: {
  26237. height: math.unit(10.5, "feet"),
  26238. name: "Dick",
  26239. image: {
  26240. source: "./media/characters/erza-bear/dick.svg"
  26241. }
  26242. },
  26243. dickVertical: {
  26244. height: math.unit(16.9, "feet"),
  26245. name: "Dick (Vertical)",
  26246. image: {
  26247. source: "./media/characters/erza-bear/dick-vertical.svg"
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Macro",
  26254. height: math.unit(100, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(172, "cm"),
  26264. weight: math.unit(73, "kg"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/violet-flor/front.svg",
  26268. extra: 1474/1379,
  26269. bottom: 113/1587
  26270. }
  26271. },
  26272. back: {
  26273. height: math.unit(180, "cm"),
  26274. weight: math.unit(73, "kg"),
  26275. name: "Back",
  26276. image: {
  26277. source: "./media/characters/violet-flor/back.svg",
  26278. extra: 1660/1567,
  26279. bottom: 49/1709
  26280. }
  26281. },
  26282. },
  26283. [
  26284. {
  26285. name: "Normal",
  26286. height: math.unit(172, "cm"),
  26287. default: true
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(6, "feet"),
  26296. weight: math.unit(220, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/lynn-rhea/front.svg",
  26300. extra: 310 / 273
  26301. }
  26302. },
  26303. back: {
  26304. height: math.unit(6, "feet"),
  26305. weight: math.unit(220, "lb"),
  26306. name: "Back",
  26307. image: {
  26308. source: "./media/characters/lynn-rhea/back.svg",
  26309. extra: 310 / 273
  26310. }
  26311. },
  26312. dicks: {
  26313. height: math.unit(0.9, "feet"),
  26314. name: "Dicks",
  26315. image: {
  26316. source: "./media/characters/lynn-rhea/dicks.svg"
  26317. }
  26318. },
  26319. slit: {
  26320. height: math.unit(0.4, "feet"),
  26321. name: "Slit",
  26322. image: {
  26323. source: "./media/characters/lynn-rhea/slit.svg"
  26324. }
  26325. },
  26326. },
  26327. [
  26328. {
  26329. name: "Micro",
  26330. height: math.unit(1, "inch")
  26331. },
  26332. {
  26333. name: "Macro",
  26334. height: math.unit(60, "feet"),
  26335. default: true
  26336. },
  26337. {
  26338. name: "Megamacro",
  26339. height: math.unit(2, "miles")
  26340. },
  26341. {
  26342. name: "Gigamacro",
  26343. height: math.unit(3, "earths")
  26344. },
  26345. {
  26346. name: "Galactic",
  26347. height: math.unit(0.8, "galaxies")
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26353. {
  26354. front: {
  26355. height: math.unit(1600, "feet"),
  26356. weight: math.unit(85758785169, "kg"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/valathos/front.svg",
  26360. extra: 1451 / 1339
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Macro",
  26367. height: math.unit(1600, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26374. {
  26375. front: {
  26376. height: math.unit(7 + 5 / 12, "feet"),
  26377. weight: math.unit(300, "lb"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/azula/front.svg",
  26381. extra: 3208 / 2880,
  26382. bottom: 80.2 / 3277
  26383. }
  26384. },
  26385. back: {
  26386. height: math.unit(7 + 5 / 12, "feet"),
  26387. weight: math.unit(300, "lb"),
  26388. name: "Back",
  26389. image: {
  26390. source: "./media/characters/azula/back.svg",
  26391. extra: 3169 / 2822,
  26392. bottom: 150.6 / 3321
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Normal",
  26399. height: math.unit(7 + 5 / 12, "feet"),
  26400. default: true
  26401. },
  26402. {
  26403. name: "Big",
  26404. height: math.unit(20, "feet")
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(5 + 1 / 12, "feet"),
  26413. weight: math.unit(110, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/rupert/front.svg",
  26417. extra: 1549 / 1495,
  26418. bottom: 54.2 / 1604.4
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Normal",
  26425. height: math.unit(5 + 1 / 12, "feet"),
  26426. default: true
  26427. },
  26428. ]
  26429. ))
  26430. characterMakers.push(() => makeCharacter(
  26431. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26432. {
  26433. front: {
  26434. height: math.unit(8 + 4 / 12, "feet"),
  26435. weight: math.unit(350, "lb"),
  26436. name: "Front",
  26437. image: {
  26438. source: "./media/characters/sheera-castellar/front.svg",
  26439. extra: 1957 / 1894,
  26440. bottom: 26.97 / 1975.017
  26441. }
  26442. },
  26443. side: {
  26444. height: math.unit(8 + 4 / 12, "feet"),
  26445. weight: math.unit(350, "lb"),
  26446. name: "Side",
  26447. image: {
  26448. source: "./media/characters/sheera-castellar/side.svg",
  26449. extra: 1957 / 1894
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(8 + 4 / 12, "feet"),
  26454. weight: math.unit(350, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/sheera-castellar/back.svg",
  26458. extra: 1957 / 1894
  26459. }
  26460. },
  26461. angled: {
  26462. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26463. weight: math.unit(350, "lb"),
  26464. name: "Angled",
  26465. image: {
  26466. source: "./media/characters/sheera-castellar/angled.svg",
  26467. extra: 1807 / 1707,
  26468. bottom: 68 / 1875
  26469. }
  26470. },
  26471. genitals: {
  26472. height: math.unit(2.2, "feet"),
  26473. name: "Genitals",
  26474. image: {
  26475. source: "./media/characters/sheera-castellar/genitals.svg"
  26476. }
  26477. },
  26478. taur: {
  26479. height: math.unit(10 + 6/12, "feet"),
  26480. name: "Taur",
  26481. image: {
  26482. source: "./media/characters/sheera-castellar/taur.svg",
  26483. extra: 2017/1909,
  26484. bottom: 185/2202
  26485. }
  26486. },
  26487. },
  26488. [
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(8 + 4 / 12, "feet")
  26492. },
  26493. {
  26494. name: "Macro",
  26495. height: math.unit(150, "feet"),
  26496. default: true
  26497. },
  26498. {
  26499. name: "Macro+",
  26500. height: math.unit(800, "feet")
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(6, "feet"),
  26509. weight: math.unit(150, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/jaipur/front.svg",
  26513. extra: 3860 / 3731,
  26514. bottom: 287 / 4140
  26515. }
  26516. },
  26517. back: {
  26518. height: math.unit(6, "feet"),
  26519. weight: math.unit(150, "lb"),
  26520. name: "Back",
  26521. image: {
  26522. source: "./media/characters/jaipur/back.svg",
  26523. extra: 1637/1561,
  26524. bottom: 154/1791
  26525. }
  26526. },
  26527. },
  26528. [
  26529. {
  26530. name: "Normal",
  26531. height: math.unit(1.85, "meters"),
  26532. default: true
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(150, "meters")
  26537. },
  26538. {
  26539. name: "Macro+",
  26540. height: math.unit(0.5, "miles")
  26541. },
  26542. {
  26543. name: "Macro++",
  26544. height: math.unit(2.5, "miles")
  26545. },
  26546. {
  26547. name: "Macro+++",
  26548. height: math.unit(12, "miles")
  26549. },
  26550. {
  26551. name: "Macro++++",
  26552. height: math.unit(120, "miles")
  26553. },
  26554. {
  26555. name: "Macro+++++",
  26556. height: math.unit(1200, "miles")
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(6, "feet"),
  26565. weight: math.unit(150, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/sheila-wolf/front.svg",
  26569. extra: 1931 / 1808,
  26570. bottom: 29.5 / 1960
  26571. }
  26572. },
  26573. dick: {
  26574. height: math.unit(1.464, "feet"),
  26575. name: "Dick",
  26576. image: {
  26577. source: "./media/characters/sheila-wolf/dick.svg"
  26578. }
  26579. },
  26580. muzzle: {
  26581. height: math.unit(0.513, "feet"),
  26582. name: "Muzzle",
  26583. image: {
  26584. source: "./media/characters/sheila-wolf/muzzle.svg"
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Macro",
  26591. height: math.unit(70, "feet"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(32, "meters"),
  26601. weight: math.unit(300000, "kg"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/almor/front.svg",
  26605. extra: 1408 / 1322,
  26606. bottom: 94.6 / 1506.5
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Macro",
  26613. height: math.unit(32, "meters"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(7, "feet"),
  26623. weight: math.unit(200, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/silver/front.svg",
  26627. extra: 472.1 / 450.5,
  26628. bottom: 26.5 / 499.424
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(7, "feet"),
  26636. default: true
  26637. },
  26638. {
  26639. name: "Macro",
  26640. height: math.unit(800, "feet")
  26641. },
  26642. {
  26643. name: "Megamacro",
  26644. height: math.unit(250, "miles")
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(6, "feet"),
  26653. weight: math.unit(150, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/pliskin/front.svg",
  26657. extra: 1469 / 1359,
  26658. bottom: 70 / 1540
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Micro",
  26665. height: math.unit(3, "inches")
  26666. },
  26667. {
  26668. name: "Normal",
  26669. height: math.unit(5 + 11 / 12, "feet"),
  26670. default: true
  26671. },
  26672. {
  26673. name: "Macro",
  26674. height: math.unit(120, "feet")
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(6, "feet"),
  26683. weight: math.unit(150, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/sammy/front.svg",
  26687. extra: 1193 / 1089,
  26688. bottom: 30.5 / 1226
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Macro",
  26695. height: math.unit(1700, "feet"),
  26696. default: true
  26697. },
  26698. {
  26699. name: "Examacro",
  26700. height: math.unit(2.5e9, "lightyears")
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(21, "meters"),
  26709. weight: math.unit(12, "tonnes"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/kuru/front.svg",
  26713. extra: 4301 / 3785,
  26714. bottom: 371.3 / 4691
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Macro",
  26721. height: math.unit(21, "meters"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(23, "meters"),
  26731. weight: math.unit(12.2, "tonnes"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/rakka/front.svg",
  26735. extra: 4670 / 4169,
  26736. bottom: 301 / 4968.7
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Macro",
  26743. height: math.unit(23, "meters"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26750. {
  26751. front: {
  26752. height: math.unit(6, "feet"),
  26753. weight: math.unit(150, "lb"),
  26754. name: "Front",
  26755. image: {
  26756. source: "./media/characters/rhys-feline/front.svg",
  26757. extra: 2488 / 2308,
  26758. bottom: 35.67 / 2519.19
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Really Small",
  26765. height: math.unit(1, "nm")
  26766. },
  26767. {
  26768. name: "Micro",
  26769. height: math.unit(4, "inches")
  26770. },
  26771. {
  26772. name: "Normal",
  26773. height: math.unit(4 + 10 / 12, "feet"),
  26774. default: true
  26775. },
  26776. {
  26777. name: "Macro",
  26778. height: math.unit(100, "feet")
  26779. },
  26780. {
  26781. name: "Megamacto",
  26782. height: math.unit(50, "miles")
  26783. },
  26784. ]
  26785. ))
  26786. characterMakers.push(() => makeCharacter(
  26787. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26788. {
  26789. side: {
  26790. height: math.unit(30, "feet"),
  26791. weight: math.unit(35000, "kg"),
  26792. name: "Side",
  26793. image: {
  26794. source: "./media/characters/alydar/side.svg",
  26795. extra: 234 / 222,
  26796. bottom: 6.5 / 241
  26797. }
  26798. },
  26799. front: {
  26800. height: math.unit(30, "feet"),
  26801. weight: math.unit(35000, "kg"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/alydar/front.svg",
  26805. extra: 223.37 / 210.2,
  26806. bottom: 22.3 / 246.76
  26807. }
  26808. },
  26809. top: {
  26810. height: math.unit(64.54, "feet"),
  26811. weight: math.unit(35000, "kg"),
  26812. name: "Top",
  26813. image: {
  26814. source: "./media/characters/alydar/top.svg"
  26815. }
  26816. },
  26817. anthro: {
  26818. height: math.unit(30, "feet"),
  26819. weight: math.unit(9000, "kg"),
  26820. name: "Anthro",
  26821. image: {
  26822. source: "./media/characters/alydar/anthro.svg",
  26823. extra: 432 / 421,
  26824. bottom: 7.18 / 440
  26825. }
  26826. },
  26827. maw: {
  26828. height: math.unit(11.693, "feet"),
  26829. name: "Maw",
  26830. image: {
  26831. source: "./media/characters/alydar/maw.svg"
  26832. }
  26833. },
  26834. head: {
  26835. height: math.unit(11.693, "feet"),
  26836. name: "Head",
  26837. image: {
  26838. source: "./media/characters/alydar/head.svg"
  26839. }
  26840. },
  26841. headAlt: {
  26842. height: math.unit(12.861, "feet"),
  26843. name: "Head (Alt)",
  26844. image: {
  26845. source: "./media/characters/alydar/head-alt.svg"
  26846. }
  26847. },
  26848. wing: {
  26849. height: math.unit(20.712, "feet"),
  26850. name: "Wing",
  26851. image: {
  26852. source: "./media/characters/alydar/wing.svg"
  26853. }
  26854. },
  26855. wingFeather: {
  26856. height: math.unit(9.662, "feet"),
  26857. name: "Wing Feather",
  26858. image: {
  26859. source: "./media/characters/alydar/wing-feather.svg"
  26860. }
  26861. },
  26862. countourFeather: {
  26863. height: math.unit(4.154, "feet"),
  26864. name: "Contour Feather",
  26865. image: {
  26866. source: "./media/characters/alydar/contour-feather.svg"
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Diplomatic",
  26873. height: math.unit(13, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Small",
  26878. height: math.unit(30, "feet")
  26879. },
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(95, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Large",
  26887. height: math.unit(285, "feet")
  26888. },
  26889. {
  26890. name: "Incomprehensible",
  26891. height: math.unit(450, "megameters")
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26897. {
  26898. side: {
  26899. height: math.unit(11, "feet"),
  26900. weight: math.unit(1750, "kg"),
  26901. name: "Side",
  26902. image: {
  26903. source: "./media/characters/selicia/side.svg",
  26904. extra: 440 / 396,
  26905. bottom: 24.8 / 465.979
  26906. }
  26907. },
  26908. maw: {
  26909. height: math.unit(4.665, "feet"),
  26910. name: "Maw",
  26911. image: {
  26912. source: "./media/characters/selicia/maw.svg"
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(11, "feet"),
  26920. default: true
  26921. },
  26922. ]
  26923. ))
  26924. characterMakers.push(() => makeCharacter(
  26925. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26926. {
  26927. side: {
  26928. height: math.unit(2 + 6 / 12, "feet"),
  26929. weight: math.unit(30, "lb"),
  26930. name: "Side",
  26931. image: {
  26932. source: "./media/characters/layla/side.svg",
  26933. extra: 244 / 188,
  26934. bottom: 18.2 / 262.1
  26935. }
  26936. },
  26937. back: {
  26938. height: math.unit(2 + 6 / 12, "feet"),
  26939. weight: math.unit(30, "lb"),
  26940. name: "Back",
  26941. image: {
  26942. source: "./media/characters/layla/back.svg",
  26943. extra: 308 / 241.5,
  26944. bottom: 8.9 / 316.8
  26945. }
  26946. },
  26947. cumming: {
  26948. height: math.unit(2 + 6 / 12, "feet"),
  26949. weight: math.unit(30, "lb"),
  26950. name: "Cumming",
  26951. image: {
  26952. source: "./media/characters/layla/cumming.svg",
  26953. extra: 342 / 279,
  26954. bottom: 595 / 938
  26955. }
  26956. },
  26957. dickFlaccid: {
  26958. height: math.unit(2.595, "feet"),
  26959. name: "Flaccid Genitals",
  26960. image: {
  26961. source: "./media/characters/layla/dick-flaccid.svg"
  26962. }
  26963. },
  26964. dickErect: {
  26965. height: math.unit(2.359, "feet"),
  26966. name: "Erect Genitals",
  26967. image: {
  26968. source: "./media/characters/layla/dick-erect.svg"
  26969. }
  26970. },
  26971. dragon: {
  26972. height: math.unit(40, "feet"),
  26973. name: "Dragon",
  26974. image: {
  26975. source: "./media/characters/layla/dragon.svg",
  26976. extra: 610/535,
  26977. bottom: 367/977
  26978. }
  26979. },
  26980. taur: {
  26981. height: math.unit(30, "feet"),
  26982. name: "Taur",
  26983. image: {
  26984. source: "./media/characters/layla/taur.svg",
  26985. extra: 1268/1199,
  26986. bottom: 112/1380
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Micro",
  26993. height: math.unit(1, "inch")
  26994. },
  26995. {
  26996. name: "Small",
  26997. height: math.unit(1, "foot")
  26998. },
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(2 + 6 / 12, "feet"),
  27002. default: true
  27003. },
  27004. {
  27005. name: "Macro",
  27006. height: math.unit(200, "feet")
  27007. },
  27008. {
  27009. name: "Megamacro",
  27010. height: math.unit(1000, "miles")
  27011. },
  27012. {
  27013. name: "Planetary",
  27014. height: math.unit(8000, "miles")
  27015. },
  27016. {
  27017. name: "True Layla",
  27018. height: math.unit(200000 * 7, "multiverses")
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  27024. {
  27025. back: {
  27026. height: math.unit(10.5, "feet"),
  27027. weight: math.unit(800, "lb"),
  27028. name: "Back",
  27029. image: {
  27030. source: "./media/characters/knox/back.svg",
  27031. extra: 1486 / 1089,
  27032. bottom: 107 / 1601.4
  27033. }
  27034. },
  27035. side: {
  27036. height: math.unit(10.5, "feet"),
  27037. weight: math.unit(800, "lb"),
  27038. name: "Side",
  27039. image: {
  27040. source: "./media/characters/knox/side.svg",
  27041. extra: 244 / 218,
  27042. bottom: 14 / 260
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Compact",
  27049. height: math.unit(10.5, "feet"),
  27050. default: true
  27051. },
  27052. {
  27053. name: "Dynamax",
  27054. height: math.unit(210, "feet")
  27055. },
  27056. {
  27057. name: "Full Macro",
  27058. height: math.unit(850, "feet")
  27059. },
  27060. ]
  27061. ))
  27062. characterMakers.push(() => makeCharacter(
  27063. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  27064. {
  27065. front: {
  27066. height: math.unit(28, "feet"),
  27067. weight: math.unit(10500, "lb"),
  27068. name: "Front",
  27069. image: {
  27070. source: "./media/characters/kayda/front.svg",
  27071. extra: 1536 / 1428,
  27072. bottom: 68.7 / 1603
  27073. }
  27074. },
  27075. back: {
  27076. height: math.unit(28, "feet"),
  27077. weight: math.unit(10500, "lb"),
  27078. name: "Back",
  27079. image: {
  27080. source: "./media/characters/kayda/back.svg",
  27081. extra: 1557 / 1464,
  27082. bottom: 39.5 / 1597.49
  27083. }
  27084. },
  27085. dick: {
  27086. height: math.unit(3.858, "feet"),
  27087. name: "Dick",
  27088. image: {
  27089. source: "./media/characters/kayda/dick.svg"
  27090. }
  27091. },
  27092. },
  27093. [
  27094. {
  27095. name: "Macro",
  27096. height: math.unit(28, "feet"),
  27097. default: true
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(10 + 11 / 12, "feet"),
  27106. weight: math.unit(1400, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/brian/front.svg",
  27110. extra: 737 / 692,
  27111. bottom: 55.4 / 785
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(10 + 11 / 12, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(5 + 8 / 12, "feet"),
  27128. weight: math.unit(140, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/khemri/front.svg",
  27132. extra: 4780 / 4059,
  27133. bottom: 80.1 / 4859.25
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Micro",
  27140. height: math.unit(6, "inches")
  27141. },
  27142. {
  27143. name: "Normal",
  27144. height: math.unit(5 + 8 / 12, "feet"),
  27145. default: true
  27146. },
  27147. ]
  27148. ))
  27149. characterMakers.push(() => makeCharacter(
  27150. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27151. {
  27152. front: {
  27153. height: math.unit(13, "feet"),
  27154. weight: math.unit(1700, "lb"),
  27155. name: "Front",
  27156. image: {
  27157. source: "./media/characters/felix-braveheart/front.svg",
  27158. extra: 1222 / 1157,
  27159. bottom: 53.2 / 1280
  27160. }
  27161. },
  27162. back: {
  27163. height: math.unit(13, "feet"),
  27164. weight: math.unit(1700, "lb"),
  27165. name: "Back",
  27166. image: {
  27167. source: "./media/characters/felix-braveheart/back.svg",
  27168. extra: 1277 / 1203,
  27169. bottom: 50.2 / 1327
  27170. }
  27171. },
  27172. feral: {
  27173. height: math.unit(6, "feet"),
  27174. weight: math.unit(400, "lb"),
  27175. name: "Feral",
  27176. image: {
  27177. source: "./media/characters/felix-braveheart/feral.svg",
  27178. extra: 682 / 625,
  27179. bottom: 6.9 / 688
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Normal",
  27186. height: math.unit(13, "feet"),
  27187. default: true
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27193. {
  27194. side: {
  27195. height: math.unit(5 + 11 / 12, "feet"),
  27196. weight: math.unit(1400, "lb"),
  27197. name: "Side",
  27198. image: {
  27199. source: "./media/characters/shadow-blade/side.svg",
  27200. extra: 1726 / 1267,
  27201. bottom: 58.4 / 1785
  27202. }
  27203. },
  27204. },
  27205. [
  27206. {
  27207. name: "Normal",
  27208. height: math.unit(5 + 11 / 12, "feet"),
  27209. default: true
  27210. },
  27211. ]
  27212. ))
  27213. characterMakers.push(() => makeCharacter(
  27214. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27215. {
  27216. front: {
  27217. height: math.unit(1 + 6 / 12, "feet"),
  27218. weight: math.unit(25, "lb"),
  27219. name: "Front",
  27220. image: {
  27221. source: "./media/characters/karla-halldor/front.svg",
  27222. extra: 1459 / 1383,
  27223. bottom: 12 / 1472
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(1 + 6 / 12, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(6 + 2 / 12, "feet"),
  27240. weight: math.unit(160, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/ariam/front.svg",
  27244. extra: 1073/976,
  27245. bottom: 52/1125
  27246. }
  27247. },
  27248. back: {
  27249. height: math.unit(6 + 2/12, "feet"),
  27250. weight: math.unit(160, "lb"),
  27251. name: "Back",
  27252. image: {
  27253. source: "./media/characters/ariam/back.svg",
  27254. extra: 1103/1023,
  27255. bottom: 9/1112
  27256. }
  27257. },
  27258. dressed: {
  27259. height: math.unit(6 + 2/12, "feet"),
  27260. weight: math.unit(160, "lb"),
  27261. name: "Dressed",
  27262. image: {
  27263. source: "./media/characters/ariam/dressed.svg",
  27264. extra: 1099/1009,
  27265. bottom: 25/1124
  27266. }
  27267. },
  27268. squatting: {
  27269. height: math.unit(4.1, "feet"),
  27270. weight: math.unit(160, "lb"),
  27271. name: "Squatting",
  27272. image: {
  27273. source: "./media/characters/ariam/squatting.svg",
  27274. extra: 2617 / 2112,
  27275. bottom: 61.2 / 2681,
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Normal",
  27282. height: math.unit(6 + 2 / 12, "feet"),
  27283. default: true
  27284. },
  27285. {
  27286. name: "Normal+",
  27287. height: math.unit(4, "meters")
  27288. },
  27289. {
  27290. name: "Macro",
  27291. height: math.unit(50, "meters")
  27292. },
  27293. {
  27294. name: "Macro+",
  27295. height: math.unit(100, "meters")
  27296. },
  27297. {
  27298. name: "Megamacro",
  27299. height: math.unit(20, "km")
  27300. },
  27301. {
  27302. name: "Caretaker",
  27303. height: math.unit(444, "megameters")
  27304. },
  27305. ]
  27306. ))
  27307. characterMakers.push(() => makeCharacter(
  27308. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27309. {
  27310. front: {
  27311. height: math.unit(1.67, "meters"),
  27312. weight: math.unit(140, "lb"),
  27313. name: "Front",
  27314. image: {
  27315. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27316. extra: 438 / 410,
  27317. bottom: 0.75 / 439
  27318. }
  27319. },
  27320. },
  27321. [
  27322. {
  27323. name: "Shrunken",
  27324. height: math.unit(7.6, "cm")
  27325. },
  27326. {
  27327. name: "Human Scale",
  27328. height: math.unit(1.67, "meters")
  27329. },
  27330. {
  27331. name: "Wolxi Scale",
  27332. height: math.unit(36.7, "meters"),
  27333. default: true
  27334. },
  27335. ]
  27336. ))
  27337. characterMakers.push(() => makeCharacter(
  27338. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27339. {
  27340. front: {
  27341. height: math.unit(1.73, "meters"),
  27342. weight: math.unit(240, "lb"),
  27343. name: "Front",
  27344. image: {
  27345. source: "./media/characters/izue-two-mothers/front.svg",
  27346. extra: 469 / 437,
  27347. bottom: 1.24 / 470.6
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Shrunken",
  27354. height: math.unit(7.86, "cm")
  27355. },
  27356. {
  27357. name: "Human Scale",
  27358. height: math.unit(1.73, "meters")
  27359. },
  27360. {
  27361. name: "Wolxi Scale",
  27362. height: math.unit(38, "meters"),
  27363. default: true
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(1.55, "meters"),
  27372. weight: math.unit(120, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/teeku-love-shack/front.svg",
  27376. extra: 387 / 362,
  27377. bottom: 1.51 / 388
  27378. }
  27379. },
  27380. },
  27381. [
  27382. {
  27383. name: "Shrunken",
  27384. height: math.unit(7, "cm")
  27385. },
  27386. {
  27387. name: "Human Scale",
  27388. height: math.unit(1.55, "meters")
  27389. },
  27390. {
  27391. name: "Wolxi Scale",
  27392. height: math.unit(34.1, "meters"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27399. {
  27400. front: {
  27401. height: math.unit(1.83, "meters"),
  27402. weight: math.unit(135, "lb"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/dejma-the-red/front.svg",
  27406. extra: 480 / 458,
  27407. bottom: 1.8 / 482
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Shrunken",
  27414. height: math.unit(8.3, "cm")
  27415. },
  27416. {
  27417. name: "Human Scale",
  27418. height: math.unit(1.83, "meters")
  27419. },
  27420. {
  27421. name: "Wolxi Scale",
  27422. height: math.unit(40, "meters"),
  27423. default: true
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(1.78, "meters"),
  27432. weight: math.unit(65, "kg"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/aki/front.svg",
  27436. extra: 452 / 415
  27437. }
  27438. },
  27439. frontNsfw: {
  27440. height: math.unit(1.78, "meters"),
  27441. weight: math.unit(65, "kg"),
  27442. name: "Front (NSFW)",
  27443. image: {
  27444. source: "./media/characters/aki/front-nsfw.svg",
  27445. extra: 452 / 415
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(1.78, "meters"),
  27450. weight: math.unit(65, "kg"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/aki/back.svg",
  27454. extra: 452 / 415
  27455. }
  27456. },
  27457. rump: {
  27458. height: math.unit(2.05, "feet"),
  27459. name: "Rump",
  27460. image: {
  27461. source: "./media/characters/aki/rump.svg"
  27462. }
  27463. },
  27464. dick: {
  27465. height: math.unit(0.95, "feet"),
  27466. name: "Dick",
  27467. image: {
  27468. source: "./media/characters/aki/dick.svg"
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Micro",
  27475. height: math.unit(15, "cm")
  27476. },
  27477. {
  27478. name: "Normal",
  27479. height: math.unit(178, "cm"),
  27480. default: true
  27481. },
  27482. {
  27483. name: "Macro",
  27484. height: math.unit(214, "m")
  27485. },
  27486. {
  27487. name: "Macro+",
  27488. height: math.unit(534, "m")
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(5 + 5 / 12, "feet"),
  27497. weight: math.unit(120, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/ari/front.svg",
  27501. extra: 1550/1471,
  27502. bottom: 39/1589
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(5 + 5 / 12, "feet")
  27510. },
  27511. {
  27512. name: "Macro",
  27513. height: math.unit(100, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Megamacro",
  27518. height: math.unit(100, "miles")
  27519. },
  27520. {
  27521. name: "Gigamacro",
  27522. height: math.unit(80000, "miles")
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27528. {
  27529. side: {
  27530. height: math.unit(9, "feet"),
  27531. weight: math.unit(400, "kg"),
  27532. name: "Side",
  27533. image: {
  27534. source: "./media/characters/bolt/side.svg",
  27535. extra: 1126 / 896,
  27536. bottom: 60 / 1187.3,
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Micro",
  27543. height: math.unit(5, "inches")
  27544. },
  27545. {
  27546. name: "Normal",
  27547. height: math.unit(9, "feet"),
  27548. default: true
  27549. },
  27550. {
  27551. name: "Macro",
  27552. height: math.unit(700, "feet")
  27553. },
  27554. {
  27555. name: "Max Size",
  27556. height: math.unit(1.52e22, "yottameters")
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(4.3, "meters"),
  27565. weight: math.unit(3, "tons"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/draekon-sylviar/front.svg",
  27569. extra: 2072/1512,
  27570. bottom: 74/2146
  27571. }
  27572. },
  27573. back: {
  27574. height: math.unit(4.3, "meters"),
  27575. weight: math.unit(3, "tons"),
  27576. name: "Back",
  27577. image: {
  27578. source: "./media/characters/draekon-sylviar/back.svg",
  27579. extra: 1639/1483,
  27580. bottom: 41/1680
  27581. }
  27582. },
  27583. feral: {
  27584. height: math.unit(1.15, "meters"),
  27585. weight: math.unit(3, "tons"),
  27586. name: "Feral",
  27587. image: {
  27588. source: "./media/characters/draekon-sylviar/feral.svg",
  27589. extra: 1033/395,
  27590. bottom: 130/1163
  27591. }
  27592. },
  27593. maw: {
  27594. height: math.unit(1.3, "meters"),
  27595. name: "Maw",
  27596. image: {
  27597. source: "./media/characters/draekon-sylviar/maw.svg"
  27598. }
  27599. },
  27600. mawSeparated: {
  27601. height: math.unit(1.53, "meters"),
  27602. name: "Separated Maw",
  27603. image: {
  27604. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27605. }
  27606. },
  27607. tail: {
  27608. height: math.unit(1.15, "meters"),
  27609. name: "Tail",
  27610. image: {
  27611. source: "./media/characters/draekon-sylviar/tail.svg"
  27612. }
  27613. },
  27614. tailDick: {
  27615. height: math.unit(1.15, "meters"),
  27616. name: "Tail (Dick)",
  27617. image: {
  27618. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27619. }
  27620. },
  27621. tailDickSeparated: {
  27622. height: math.unit(1.19, "meters"),
  27623. name: "Tail (Separated Dick)",
  27624. image: {
  27625. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27626. }
  27627. },
  27628. slit: {
  27629. height: math.unit(1, "meters"),
  27630. name: "Slit",
  27631. image: {
  27632. source: "./media/characters/draekon-sylviar/slit.svg"
  27633. }
  27634. },
  27635. dick: {
  27636. height: math.unit(1.15, "meters"),
  27637. name: "Dick",
  27638. image: {
  27639. source: "./media/characters/draekon-sylviar/dick.svg"
  27640. }
  27641. },
  27642. dickSeparated: {
  27643. height: math.unit(1.1, "meters"),
  27644. name: "Separated Dick",
  27645. image: {
  27646. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27647. }
  27648. },
  27649. sheath: {
  27650. height: math.unit(1.15, "meters"),
  27651. name: "Sheath",
  27652. image: {
  27653. source: "./media/characters/draekon-sylviar/sheath.svg"
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Small",
  27660. height: math.unit(4.53 / 2, "meters"),
  27661. default: true
  27662. },
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(4.53, "meters"),
  27666. default: true
  27667. },
  27668. {
  27669. name: "Large",
  27670. height: math.unit(4.53 * 2, "meters"),
  27671. },
  27672. ]
  27673. ))
  27674. characterMakers.push(() => makeCharacter(
  27675. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27676. {
  27677. front: {
  27678. height: math.unit(6 + 2 / 12, "feet"),
  27679. weight: math.unit(180, "lb"),
  27680. name: "Front",
  27681. image: {
  27682. source: "./media/characters/brawler/front.svg",
  27683. extra: 3301 / 3027,
  27684. bottom: 138 / 3439
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Normal",
  27691. height: math.unit(6 + 2 / 12, "feet"),
  27692. default: true
  27693. },
  27694. ]
  27695. ))
  27696. characterMakers.push(() => makeCharacter(
  27697. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27698. {
  27699. front: {
  27700. height: math.unit(11, "feet"),
  27701. weight: math.unit(1000, "lb"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/alex/front.svg",
  27705. bottom: 44.5 / 620
  27706. }
  27707. },
  27708. },
  27709. [
  27710. {
  27711. name: "Micro",
  27712. height: math.unit(5, "inches")
  27713. },
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(11, "feet"),
  27717. default: true
  27718. },
  27719. {
  27720. name: "Macro",
  27721. height: math.unit(9.5e9, "feet")
  27722. },
  27723. {
  27724. name: "Max Size",
  27725. height: math.unit(1.4e283, "yottameters")
  27726. },
  27727. ]
  27728. ))
  27729. characterMakers.push(() => makeCharacter(
  27730. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27731. {
  27732. female: {
  27733. height: math.unit(29.9, "m"),
  27734. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27735. name: "Female",
  27736. image: {
  27737. source: "./media/characters/zenari/female.svg",
  27738. extra: 3281.6 / 3217,
  27739. bottom: 72.2 / 3353
  27740. }
  27741. },
  27742. male: {
  27743. height: math.unit(27.7, "m"),
  27744. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27745. name: "Male",
  27746. image: {
  27747. source: "./media/characters/zenari/male.svg",
  27748. extra: 3008 / 2991,
  27749. bottom: 54.6 / 3069
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Macro",
  27756. height: math.unit(29.7, "meters"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27763. {
  27764. female: {
  27765. height: math.unit(23.8, "m"),
  27766. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27767. name: "Female",
  27768. image: {
  27769. source: "./media/characters/mactarian/female.svg",
  27770. extra: 2662 / 2569,
  27771. bottom: 73 / 2736
  27772. }
  27773. },
  27774. male: {
  27775. height: math.unit(23.8, "m"),
  27776. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27777. name: "Male",
  27778. image: {
  27779. source: "./media/characters/mactarian/male.svg",
  27780. extra: 2673 / 2600,
  27781. bottom: 76 / 2750
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Macro",
  27788. height: math.unit(23.8, "meters"),
  27789. default: true
  27790. },
  27791. ]
  27792. ))
  27793. characterMakers.push(() => makeCharacter(
  27794. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27795. {
  27796. female: {
  27797. height: math.unit(19.3, "m"),
  27798. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27799. name: "Female",
  27800. image: {
  27801. source: "./media/characters/umok/female.svg",
  27802. extra: 2186 / 2078,
  27803. bottom: 87 / 2277
  27804. }
  27805. },
  27806. male: {
  27807. height: math.unit(19.5, "m"),
  27808. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27809. name: "Male",
  27810. image: {
  27811. source: "./media/characters/umok/male.svg",
  27812. extra: 2233 / 2140,
  27813. bottom: 24.4 / 2258
  27814. }
  27815. },
  27816. },
  27817. [
  27818. {
  27819. name: "Macro",
  27820. height: math.unit(19.3, "meters"),
  27821. default: true
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27827. {
  27828. female: {
  27829. height: math.unit(26.15, "m"),
  27830. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27831. name: "Female",
  27832. image: {
  27833. source: "./media/characters/joraxian/female.svg",
  27834. extra: 2912 / 2824,
  27835. bottom: 36 / 2956
  27836. }
  27837. },
  27838. male: {
  27839. height: math.unit(25.4, "m"),
  27840. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27841. name: "Male",
  27842. image: {
  27843. source: "./media/characters/joraxian/male.svg",
  27844. extra: 2877 / 2721,
  27845. bottom: 82 / 2967
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Macro",
  27852. height: math.unit(26.15, "meters"),
  27853. default: true
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27859. {
  27860. female: {
  27861. height: math.unit(21.6, "m"),
  27862. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27863. name: "Female",
  27864. image: {
  27865. source: "./media/characters/sthara/female.svg",
  27866. extra: 2516 / 2347,
  27867. bottom: 21.5 / 2537
  27868. }
  27869. },
  27870. male: {
  27871. height: math.unit(24, "m"),
  27872. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27873. name: "Male",
  27874. image: {
  27875. source: "./media/characters/sthara/male.svg",
  27876. extra: 2732 / 2607,
  27877. bottom: 23 / 2732
  27878. }
  27879. },
  27880. },
  27881. [
  27882. {
  27883. name: "Macro",
  27884. height: math.unit(21.6, "meters"),
  27885. default: true
  27886. },
  27887. ]
  27888. ))
  27889. characterMakers.push(() => makeCharacter(
  27890. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27891. {
  27892. front: {
  27893. height: math.unit(6 + 4 / 12, "feet"),
  27894. weight: math.unit(175, "lb"),
  27895. name: "Front",
  27896. image: {
  27897. source: "./media/characters/luka-bryzant/front.svg",
  27898. extra: 311 / 289,
  27899. bottom: 4 / 315
  27900. }
  27901. },
  27902. back: {
  27903. height: math.unit(6 + 4 / 12, "feet"),
  27904. weight: math.unit(175, "lb"),
  27905. name: "Back",
  27906. image: {
  27907. source: "./media/characters/luka-bryzant/back.svg",
  27908. extra: 311 / 289,
  27909. bottom: 3.8 / 313.7
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Micro",
  27916. height: math.unit(10, "inches")
  27917. },
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(6 + 4 / 12, "feet"),
  27921. default: true
  27922. },
  27923. {
  27924. name: "Large",
  27925. height: math.unit(12, "feet")
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(5 + 7 / 12, "feet"),
  27934. weight: math.unit(185, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/aman-aquila/front.svg",
  27938. extra: 1013 / 976,
  27939. bottom: 45.6 / 1057
  27940. }
  27941. },
  27942. side: {
  27943. height: math.unit(5 + 7 / 12, "feet"),
  27944. weight: math.unit(185, "lb"),
  27945. name: "Side",
  27946. image: {
  27947. source: "./media/characters/aman-aquila/side.svg",
  27948. extra: 1054 / 1011,
  27949. bottom: 15 / 1070
  27950. }
  27951. },
  27952. back: {
  27953. height: math.unit(5 + 7 / 12, "feet"),
  27954. weight: math.unit(185, "lb"),
  27955. name: "Back",
  27956. image: {
  27957. source: "./media/characters/aman-aquila/back.svg",
  27958. extra: 1026 / 970,
  27959. bottom: 12 / 1039
  27960. }
  27961. },
  27962. head: {
  27963. height: math.unit(1.211, "feet"),
  27964. name: "Head",
  27965. image: {
  27966. source: "./media/characters/aman-aquila/head.svg",
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Minimicro",
  27973. height: math.unit(0.057, "inches")
  27974. },
  27975. {
  27976. name: "Micro",
  27977. height: math.unit(7, "inches")
  27978. },
  27979. {
  27980. name: "Mini",
  27981. height: math.unit(3 + 7 / 12, "feet")
  27982. },
  27983. {
  27984. name: "Normal",
  27985. height: math.unit(5 + 7 / 12, "feet"),
  27986. default: true
  27987. },
  27988. {
  27989. name: "Macro",
  27990. height: math.unit(157 + 7 / 12, "feet")
  27991. },
  27992. {
  27993. name: "Megamacro",
  27994. height: math.unit(1557 + 7 / 12, "feet")
  27995. },
  27996. {
  27997. name: "Gigamacro",
  27998. height: math.unit(15557 + 7 / 12, "feet")
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  28004. {
  28005. front: {
  28006. height: math.unit(3 + 2 / 12, "inches"),
  28007. weight: math.unit(0.3, "ounces"),
  28008. name: "Front",
  28009. image: {
  28010. source: "./media/characters/hiphae/front.svg",
  28011. extra: 1931 / 1683,
  28012. bottom: 24 / 1955
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(3 + 1 / 2, "inches"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(5 + 10 / 12, "feet"),
  28029. weight: math.unit(165, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/nicky/front.svg",
  28033. extra: 3144 / 2886,
  28034. bottom: 45.6 / 3192
  28035. }
  28036. },
  28037. back: {
  28038. height: math.unit(5 + 10 / 12, "feet"),
  28039. weight: math.unit(165, "lb"),
  28040. name: "Back",
  28041. image: {
  28042. source: "./media/characters/nicky/back.svg",
  28043. extra: 3055 / 2804,
  28044. bottom: 28.4 / 3087
  28045. }
  28046. },
  28047. frontclothed: {
  28048. height: math.unit(5 + 10 / 12, "feet"),
  28049. weight: math.unit(165, "lb"),
  28050. name: "Front (Clothed)",
  28051. image: {
  28052. source: "./media/characters/nicky/front-clothed.svg",
  28053. extra: 3184.9 / 2926.9,
  28054. bottom: 86.5 / 3239.9
  28055. }
  28056. },
  28057. foot: {
  28058. height: math.unit(1.16, "feet"),
  28059. name: "Foot",
  28060. image: {
  28061. source: "./media/characters/nicky/foot.svg"
  28062. }
  28063. },
  28064. feet: {
  28065. height: math.unit(1.34, "feet"),
  28066. name: "Feet",
  28067. image: {
  28068. source: "./media/characters/nicky/feet.svg"
  28069. }
  28070. },
  28071. maw: {
  28072. height: math.unit(0.9, "feet"),
  28073. name: "Maw",
  28074. image: {
  28075. source: "./media/characters/nicky/maw.svg"
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Normal",
  28082. height: math.unit(5 + 10 / 12, "feet"),
  28083. default: true
  28084. },
  28085. {
  28086. name: "Macro",
  28087. height: math.unit(60, "feet")
  28088. },
  28089. {
  28090. name: "Megamacro",
  28091. height: math.unit(1, "mile")
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Blair", species: ["seal"], tags: ["taur"] },
  28097. {
  28098. side: {
  28099. height: math.unit(10, "feet"),
  28100. weight: math.unit(600, "lb"),
  28101. name: "Side",
  28102. image: {
  28103. source: "./media/characters/blair/side.svg",
  28104. bottom: 16.6 / 475,
  28105. extra: 458 / 431
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Micro",
  28112. height: math.unit(8, "inches")
  28113. },
  28114. {
  28115. name: "Normal",
  28116. height: math.unit(10, "feet"),
  28117. default: true
  28118. },
  28119. {
  28120. name: "Macro",
  28121. height: math.unit(180, "feet")
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(5 + 4 / 12, "feet"),
  28130. weight: math.unit(125, "lb"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/fisher/front.svg",
  28134. extra: 444 / 390,
  28135. bottom: 2 / 444.8
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Micro",
  28142. height: math.unit(4, "inches")
  28143. },
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(5 + 4 / 12, "feet"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Macro",
  28151. height: math.unit(100, "feet")
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28157. {
  28158. front: {
  28159. height: math.unit(6.71, "feet"),
  28160. weight: math.unit(200, "lb"),
  28161. preyCapacity: math.unit(1000000, "people"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/gliss/front.svg",
  28165. extra: 2347 / 2231,
  28166. bottom: 113 / 2462
  28167. }
  28168. },
  28169. hammerspaceSize: {
  28170. height: math.unit(6.71 * 717, "feet"),
  28171. weight: math.unit(200, "lb"),
  28172. preyCapacity: math.unit(1000000, "people"),
  28173. name: "Hammerspace Size",
  28174. image: {
  28175. source: "./media/characters/gliss/front.svg",
  28176. extra: 2347 / 2231,
  28177. bottom: 113 / 2462
  28178. }
  28179. },
  28180. },
  28181. [
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(6.71, "feet"),
  28185. default: true
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28191. {
  28192. side: {
  28193. height: math.unit(1.44, "m"),
  28194. weight: math.unit(80, "kg"),
  28195. name: "Side",
  28196. image: {
  28197. source: "./media/characters/dune-anderson/side.svg",
  28198. bottom: 49 / 1426
  28199. }
  28200. },
  28201. },
  28202. [
  28203. {
  28204. name: "Wolf-sized",
  28205. height: math.unit(1.44, "meters")
  28206. },
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(5.05, "meters"),
  28210. default: true
  28211. },
  28212. {
  28213. name: "Big",
  28214. height: math.unit(14.4, "meters")
  28215. },
  28216. {
  28217. name: "Huge",
  28218. height: math.unit(144, "meters")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(6, "feet"),
  28227. weight: math.unit(220, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/hind/front.svg",
  28231. extra: 1912/1787,
  28232. bottom: 52/1964
  28233. }
  28234. },
  28235. back: {
  28236. height: math.unit(6, "feet"),
  28237. weight: math.unit(220, "lb"),
  28238. name: "Back",
  28239. image: {
  28240. source: "./media/characters/hind/back.svg",
  28241. extra: 1901/1794,
  28242. bottom: 26/1927
  28243. }
  28244. },
  28245. },
  28246. [
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(6, "feet"),
  28250. default: true
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28256. {
  28257. front: {
  28258. height: math.unit(2.1, "meters"),
  28259. weight: math.unit(150, "lb"),
  28260. name: "Front",
  28261. image: {
  28262. source: "./media/characters/tharquench-sizestealer/front.svg",
  28263. extra: 1605/1470,
  28264. bottom: 36/1641
  28265. }
  28266. },
  28267. frontAlt: {
  28268. height: math.unit(2.1, "meters"),
  28269. weight: math.unit(150, "lb"),
  28270. name: "Front (Alt)",
  28271. image: {
  28272. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28273. extra: 2318 / 2063,
  28274. bottom: 93.4 / 2410
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Nano",
  28281. height: math.unit(1, "mm")
  28282. },
  28283. {
  28284. name: "Micro",
  28285. height: math.unit(1, "cm")
  28286. },
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(2.1, "meters"),
  28290. default: true
  28291. },
  28292. ]
  28293. ))
  28294. characterMakers.push(() => makeCharacter(
  28295. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28296. {
  28297. front: {
  28298. height: math.unit(7 + 5 / 12, "feet"),
  28299. weight: math.unit(357, "lb"),
  28300. name: "Front",
  28301. image: {
  28302. source: "./media/characters/solex-draconov/front.svg",
  28303. extra: 1993 / 1865,
  28304. bottom: 117 / 2111
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Natural Height",
  28311. height: math.unit(7 + 5 / 12, "feet"),
  28312. default: true
  28313. },
  28314. {
  28315. name: "Macro",
  28316. height: math.unit(350, "feet")
  28317. },
  28318. {
  28319. name: "Macro+",
  28320. height: math.unit(1000, "feet")
  28321. },
  28322. {
  28323. name: "Megamacro",
  28324. height: math.unit(20, "km")
  28325. },
  28326. {
  28327. name: "Megamacro+",
  28328. height: math.unit(1000, "km")
  28329. },
  28330. {
  28331. name: "Gigamacro",
  28332. height: math.unit(2.5, "Gm")
  28333. },
  28334. {
  28335. name: "Teramacro",
  28336. height: math.unit(15, "Tm")
  28337. },
  28338. {
  28339. name: "Galactic",
  28340. height: math.unit(30, "Zm")
  28341. },
  28342. {
  28343. name: "Universal",
  28344. height: math.unit(21000, "Ym")
  28345. },
  28346. {
  28347. name: "Omniversal",
  28348. height: math.unit(9.861e50, "Ym")
  28349. },
  28350. {
  28351. name: "Existential",
  28352. height: math.unit(1e300, "meters")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28358. {
  28359. side: {
  28360. height: math.unit(25, "feet"),
  28361. weight: math.unit(90000, "lb"),
  28362. name: "Side",
  28363. image: {
  28364. source: "./media/characters/mandarax/side.svg",
  28365. extra: 614 / 332,
  28366. bottom: 55 / 630
  28367. }
  28368. },
  28369. lounging: {
  28370. height: math.unit(15.4, "feet"),
  28371. weight: math.unit(90000, "lb"),
  28372. name: "Lounging",
  28373. image: {
  28374. source: "./media/characters/mandarax/lounging.svg",
  28375. extra: 817/609,
  28376. bottom: 685/1502
  28377. }
  28378. },
  28379. head: {
  28380. height: math.unit(11.4, "feet"),
  28381. name: "Head",
  28382. image: {
  28383. source: "./media/characters/mandarax/head.svg"
  28384. }
  28385. },
  28386. belly: {
  28387. height: math.unit(33, "feet"),
  28388. name: "Belly",
  28389. preyCapacity: math.unit(500, "people"),
  28390. image: {
  28391. source: "./media/characters/mandarax/belly.svg"
  28392. }
  28393. },
  28394. dick: {
  28395. height: math.unit(8.46, "feet"),
  28396. name: "Dick",
  28397. image: {
  28398. source: "./media/characters/mandarax/dick.svg"
  28399. }
  28400. },
  28401. top: {
  28402. height: math.unit(28, "meters"),
  28403. name: "Top",
  28404. image: {
  28405. source: "./media/characters/mandarax/top.svg"
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(25, "feet"),
  28413. default: true
  28414. },
  28415. ]
  28416. ))
  28417. characterMakers.push(() => makeCharacter(
  28418. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28419. {
  28420. front: {
  28421. height: math.unit(5, "feet"),
  28422. weight: math.unit(90, "lb"),
  28423. name: "Front",
  28424. image: {
  28425. source: "./media/characters/pixil/front.svg",
  28426. extra: 2000 / 1618,
  28427. bottom: 12.3 / 2011
  28428. }
  28429. },
  28430. },
  28431. [
  28432. {
  28433. name: "Normal",
  28434. height: math.unit(5, "feet"),
  28435. default: true
  28436. },
  28437. {
  28438. name: "Megamacro",
  28439. height: math.unit(10, "miles"),
  28440. },
  28441. ]
  28442. ))
  28443. characterMakers.push(() => makeCharacter(
  28444. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28445. {
  28446. front: {
  28447. height: math.unit(7 + 2 / 12, "feet"),
  28448. weight: math.unit(200, "lb"),
  28449. name: "Front",
  28450. image: {
  28451. source: "./media/characters/angel/front.svg",
  28452. extra: 1946/1840,
  28453. bottom: 30/1976
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Normal",
  28460. height: math.unit(7 + 2 / 12, "feet"),
  28461. default: true
  28462. },
  28463. {
  28464. name: "Macro",
  28465. height: math.unit(1000, "feet")
  28466. },
  28467. {
  28468. name: "Megamacro",
  28469. height: math.unit(2, "miles")
  28470. },
  28471. {
  28472. name: "Gigamacro",
  28473. height: math.unit(20, "earths")
  28474. },
  28475. ]
  28476. ))
  28477. characterMakers.push(() => makeCharacter(
  28478. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28479. {
  28480. front: {
  28481. height: math.unit(5, "feet"),
  28482. weight: math.unit(180, "lb"),
  28483. name: "Front",
  28484. image: {
  28485. source: "./media/characters/mekana/front.svg",
  28486. extra: 1671 / 1605,
  28487. bottom: 3.5 / 1691
  28488. }
  28489. },
  28490. side: {
  28491. height: math.unit(5, "feet"),
  28492. weight: math.unit(180, "lb"),
  28493. name: "Side",
  28494. image: {
  28495. source: "./media/characters/mekana/side.svg",
  28496. extra: 1671 / 1605,
  28497. bottom: 3.5 / 1691
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(5, "feet"),
  28502. weight: math.unit(180, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/mekana/back.svg",
  28506. extra: 1671 / 1605,
  28507. bottom: 3.5 / 1691
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(5, "feet"),
  28515. default: true
  28516. },
  28517. ]
  28518. ))
  28519. characterMakers.push(() => makeCharacter(
  28520. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28521. {
  28522. front: {
  28523. height: math.unit(4 + 6 / 12, "feet"),
  28524. weight: math.unit(80, "lb"),
  28525. name: "Front",
  28526. image: {
  28527. source: "./media/characters/pixie/front.svg",
  28528. extra: 1924 / 1825,
  28529. bottom: 22.4 / 1946
  28530. }
  28531. },
  28532. },
  28533. [
  28534. {
  28535. name: "Normal",
  28536. height: math.unit(4 + 6 / 12, "feet"),
  28537. default: true
  28538. },
  28539. {
  28540. name: "Macro",
  28541. height: math.unit(40, "feet")
  28542. },
  28543. ]
  28544. ))
  28545. characterMakers.push(() => makeCharacter(
  28546. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28547. {
  28548. front: {
  28549. height: math.unit(2.1, "meters"),
  28550. weight: math.unit(200, "lb"),
  28551. name: "Front",
  28552. image: {
  28553. source: "./media/characters/the-lascivious/front.svg",
  28554. extra: 1 / 0.893,
  28555. bottom: 3.5 / 573.7
  28556. }
  28557. },
  28558. },
  28559. [
  28560. {
  28561. name: "Human Scale",
  28562. height: math.unit(2.1, "meters")
  28563. },
  28564. {
  28565. name: "Wolxi Scale",
  28566. height: math.unit(46.2, "m"),
  28567. default: true
  28568. },
  28569. {
  28570. name: "Boinker of Buildings",
  28571. height: math.unit(10, "km")
  28572. },
  28573. {
  28574. name: "Shagger of Skyscrapers",
  28575. height: math.unit(40, "km")
  28576. },
  28577. {
  28578. name: "Banger of Boroughs",
  28579. height: math.unit(4000, "km")
  28580. },
  28581. {
  28582. name: "Screwer of States",
  28583. height: math.unit(100000, "km")
  28584. },
  28585. {
  28586. name: "Pounder of Planets",
  28587. height: math.unit(2000000, "km")
  28588. },
  28589. ]
  28590. ))
  28591. characterMakers.push(() => makeCharacter(
  28592. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28593. {
  28594. front: {
  28595. height: math.unit(6, "feet"),
  28596. weight: math.unit(150, "lb"),
  28597. name: "Front",
  28598. image: {
  28599. source: "./media/characters/aj/front.svg",
  28600. extra: 2039 / 1562,
  28601. bottom: 40 / 2079
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(11 + 6 / 12, "feet"),
  28609. default: true
  28610. },
  28611. {
  28612. name: "Megamacro",
  28613. height: math.unit(60, "megameters")
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28619. {
  28620. side: {
  28621. height: math.unit(31 + 8 / 12, "feet"),
  28622. weight: math.unit(75000, "kg"),
  28623. name: "Side",
  28624. image: {
  28625. source: "./media/characters/koros/side.svg",
  28626. extra: 1442 / 1297,
  28627. bottom: 122.7 / 1562
  28628. }
  28629. },
  28630. dicksKingsCrown: {
  28631. height: math.unit(6, "feet"),
  28632. name: "Dicks (King's Crown)",
  28633. image: {
  28634. source: "./media/characters/koros/dicks-kings-crown.svg"
  28635. }
  28636. },
  28637. dicksTailSet: {
  28638. height: math.unit(3, "feet"),
  28639. name: "Dicks (Tail Set)",
  28640. image: {
  28641. source: "./media/characters/koros/dicks-tail-set.svg"
  28642. }
  28643. },
  28644. dickCumming: {
  28645. height: math.unit(7.98, "feet"),
  28646. name: "Dick (Cumming)",
  28647. image: {
  28648. source: "./media/characters/koros/dick-cumming.svg"
  28649. }
  28650. },
  28651. dicksBack: {
  28652. height: math.unit(5.9, "feet"),
  28653. name: "Dicks (Back)",
  28654. image: {
  28655. source: "./media/characters/koros/dicks-back.svg"
  28656. }
  28657. },
  28658. dicksFront: {
  28659. height: math.unit(3.72, "feet"),
  28660. name: "Dicks (Front)",
  28661. image: {
  28662. source: "./media/characters/koros/dicks-front.svg"
  28663. }
  28664. },
  28665. dicksPeeking: {
  28666. height: math.unit(3.0, "feet"),
  28667. name: "Dicks (Peeking)",
  28668. image: {
  28669. source: "./media/characters/koros/dicks-peeking.svg"
  28670. }
  28671. },
  28672. eye: {
  28673. height: math.unit(1.7, "feet"),
  28674. name: "Eye",
  28675. image: {
  28676. source: "./media/characters/koros/eye.svg"
  28677. }
  28678. },
  28679. headFront: {
  28680. height: math.unit(11.69, "feet"),
  28681. name: "Head (Front)",
  28682. image: {
  28683. source: "./media/characters/koros/head-front.svg"
  28684. }
  28685. },
  28686. headSide: {
  28687. height: math.unit(14, "feet"),
  28688. name: "Head (Side)",
  28689. image: {
  28690. source: "./media/characters/koros/head-side.svg"
  28691. }
  28692. },
  28693. leg: {
  28694. height: math.unit(17, "feet"),
  28695. name: "Leg",
  28696. image: {
  28697. source: "./media/characters/koros/leg.svg"
  28698. }
  28699. },
  28700. mawSide: {
  28701. height: math.unit(12.8, "feet"),
  28702. name: "Maw (Side)",
  28703. image: {
  28704. source: "./media/characters/koros/maw-side.svg"
  28705. }
  28706. },
  28707. mawSpitting: {
  28708. height: math.unit(17, "feet"),
  28709. name: "Maw (Spitting)",
  28710. image: {
  28711. source: "./media/characters/koros/maw-spitting.svg"
  28712. }
  28713. },
  28714. slit: {
  28715. height: math.unit(2.8, "feet"),
  28716. name: "Slit",
  28717. image: {
  28718. source: "./media/characters/koros/slit.svg"
  28719. }
  28720. },
  28721. stomach: {
  28722. height: math.unit(6.8, "feet"),
  28723. preyCapacity: math.unit(20, "people"),
  28724. name: "Stomach",
  28725. image: {
  28726. source: "./media/characters/koros/stomach.svg"
  28727. }
  28728. },
  28729. wingspanBottom: {
  28730. height: math.unit(114, "feet"),
  28731. name: "Wingspan (Bottom)",
  28732. image: {
  28733. source: "./media/characters/koros/wingspan-bottom.svg"
  28734. }
  28735. },
  28736. wingspanTop: {
  28737. height: math.unit(104, "feet"),
  28738. name: "Wingspan (Top)",
  28739. image: {
  28740. source: "./media/characters/koros/wingspan-top.svg"
  28741. }
  28742. },
  28743. },
  28744. [
  28745. {
  28746. name: "Normal",
  28747. height: math.unit(31 + 8 / 12, "feet"),
  28748. default: true
  28749. },
  28750. ]
  28751. ))
  28752. characterMakers.push(() => makeCharacter(
  28753. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28754. {
  28755. front: {
  28756. height: math.unit(18 + 5 / 12, "feet"),
  28757. weight: math.unit(3750, "kg"),
  28758. name: "Front",
  28759. image: {
  28760. source: "./media/characters/vexx/front.svg",
  28761. extra: 426 / 396,
  28762. bottom: 31.5 / 458
  28763. }
  28764. },
  28765. maw: {
  28766. height: math.unit(6, "feet"),
  28767. name: "Maw",
  28768. image: {
  28769. source: "./media/characters/vexx/maw.svg"
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(18 + 5 / 12, "feet"),
  28777. default: true
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(17 + 6 / 12, "feet"),
  28786. weight: math.unit(150, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/baadra/front.svg",
  28790. extra: 1694/1553,
  28791. bottom: 179/1873
  28792. }
  28793. },
  28794. frontAlt: {
  28795. height: math.unit(17 + 6 / 12, "feet"),
  28796. weight: math.unit(150, "lb"),
  28797. name: "Front (Alt)",
  28798. image: {
  28799. source: "./media/characters/baadra/front-alt.svg",
  28800. extra: 3137 / 2890,
  28801. bottom: 168.4 / 3305
  28802. }
  28803. },
  28804. back: {
  28805. height: math.unit(17 + 6 / 12, "feet"),
  28806. weight: math.unit(150, "lb"),
  28807. name: "Back",
  28808. image: {
  28809. source: "./media/characters/baadra/back.svg",
  28810. extra: 3142 / 2890,
  28811. bottom: 220 / 3371
  28812. }
  28813. },
  28814. head: {
  28815. height: math.unit(5.45, "feet"),
  28816. name: "Head",
  28817. image: {
  28818. source: "./media/characters/baadra/head.svg"
  28819. }
  28820. },
  28821. headAngry: {
  28822. height: math.unit(4.95, "feet"),
  28823. name: "Head (Angry)",
  28824. image: {
  28825. source: "./media/characters/baadra/head-angry.svg"
  28826. }
  28827. },
  28828. headOpen: {
  28829. height: math.unit(6, "feet"),
  28830. name: "Head (Open)",
  28831. image: {
  28832. source: "./media/characters/baadra/head-open.svg"
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(17 + 6 / 12, "feet"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(7 + 3 / 12, "feet"),
  28849. weight: math.unit(180, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/juri/front.svg",
  28853. extra: 1401 / 1237,
  28854. bottom: 18.5 / 1418
  28855. }
  28856. },
  28857. side: {
  28858. height: math.unit(7 + 3 / 12, "feet"),
  28859. weight: math.unit(180, "lb"),
  28860. name: "Side",
  28861. image: {
  28862. source: "./media/characters/juri/side.svg",
  28863. extra: 1424 / 1242,
  28864. bottom: 18.5 / 1447
  28865. }
  28866. },
  28867. sitting: {
  28868. height: math.unit(6, "feet"),
  28869. weight: math.unit(180, "lb"),
  28870. name: "Sitting",
  28871. image: {
  28872. source: "./media/characters/juri/sitting.svg",
  28873. extra: 1270 / 1143,
  28874. bottom: 100 / 1343
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(7 + 3 / 12, "feet"),
  28879. weight: math.unit(180, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/juri/back.svg",
  28883. extra: 1377 / 1240,
  28884. bottom: 23.7 / 1405
  28885. }
  28886. },
  28887. maw: {
  28888. height: math.unit(2.8, "feet"),
  28889. name: "Maw",
  28890. image: {
  28891. source: "./media/characters/juri/maw.svg"
  28892. }
  28893. },
  28894. stomach: {
  28895. height: math.unit(0.89, "feet"),
  28896. preyCapacity: math.unit(4, "liters"),
  28897. name: "Stomach",
  28898. image: {
  28899. source: "./media/characters/juri/stomach.svg"
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(7 + 3 / 12, "feet"),
  28907. default: true
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28913. {
  28914. fox: {
  28915. height: math.unit(5 + 6 / 12, "feet"),
  28916. weight: math.unit(140, "lb"),
  28917. name: "Fox",
  28918. image: {
  28919. source: "./media/characters/maxene-sita/fox.svg",
  28920. extra: 146 / 138,
  28921. bottom: 2.1 / 148.19
  28922. }
  28923. },
  28924. foxLaying: {
  28925. height: math.unit(1.70, "feet"),
  28926. weight: math.unit(140, "lb"),
  28927. name: "Fox (Laying)",
  28928. image: {
  28929. source: "./media/characters/maxene-sita/fox-laying.svg",
  28930. extra: 910 / 572,
  28931. bottom: 71 / 981
  28932. }
  28933. },
  28934. kitsune: {
  28935. height: math.unit(10, "feet"),
  28936. weight: math.unit(800, "lb"),
  28937. name: "Kitsune",
  28938. image: {
  28939. source: "./media/characters/maxene-sita/kitsune.svg",
  28940. extra: 185 / 176,
  28941. bottom: 4.7 / 189.9
  28942. }
  28943. },
  28944. hellhound: {
  28945. height: math.unit(10, "feet"),
  28946. weight: math.unit(700, "lb"),
  28947. name: "Hellhound",
  28948. image: {
  28949. source: "./media/characters/maxene-sita/hellhound.svg",
  28950. extra: 1600 / 1545,
  28951. bottom: 81 / 1681
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(5 + 6 / 12, "feet"),
  28959. default: true
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28965. {
  28966. front: {
  28967. height: math.unit(3 + 4 / 12, "feet"),
  28968. weight: math.unit(70, "lb"),
  28969. name: "Front",
  28970. image: {
  28971. source: "./media/characters/maia/front.svg",
  28972. extra: 227 / 219.5,
  28973. bottom: 40 / 267
  28974. }
  28975. },
  28976. back: {
  28977. height: math.unit(3 + 4 / 12, "feet"),
  28978. weight: math.unit(70, "lb"),
  28979. name: "Back",
  28980. image: {
  28981. source: "./media/characters/maia/back.svg",
  28982. extra: 237 / 225
  28983. }
  28984. },
  28985. },
  28986. [
  28987. {
  28988. name: "Normal",
  28989. height: math.unit(3 + 4 / 12, "feet"),
  28990. default: true
  28991. },
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(5 + 10 / 12, "feet"),
  28999. weight: math.unit(197, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/jabaro/front.svg",
  29003. extra: 225 / 216,
  29004. bottom: 5.06 / 230
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(5 + 10 / 12, "feet"),
  29009. weight: math.unit(197, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/jabaro/back.svg",
  29013. extra: 225 / 219,
  29014. bottom: 1.9 / 227
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(5 + 10 / 12, "feet"),
  29022. default: true
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(5 + 8 / 12, "feet"),
  29031. weight: math.unit(139, "lb"),
  29032. name: "Front",
  29033. image: {
  29034. source: "./media/characters/risa/front.svg",
  29035. extra: 270 / 260,
  29036. bottom: 11.2 / 282
  29037. }
  29038. },
  29039. back: {
  29040. height: math.unit(5 + 8 / 12, "feet"),
  29041. weight: math.unit(139, "lb"),
  29042. name: "Back",
  29043. image: {
  29044. source: "./media/characters/risa/back.svg",
  29045. extra: 264 / 255,
  29046. bottom: 4 / 268
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Normal",
  29053. height: math.unit(5 + 8 / 12, "feet"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  29060. {
  29061. front: {
  29062. height: math.unit(2 + 11 / 12, "feet"),
  29063. weight: math.unit(30, "lb"),
  29064. name: "Front",
  29065. image: {
  29066. source: "./media/characters/weatley/front.svg",
  29067. bottom: 10.7 / 414,
  29068. extra: 403.5 / 362
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(2 + 11 / 12, "feet"),
  29073. weight: math.unit(30, "lb"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/weatley/back.svg",
  29077. bottom: 10.7 / 414,
  29078. extra: 403.5 / 362
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(2 + 11 / 12, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(5 + 2 / 12, "feet"),
  29095. weight: math.unit(50, "kg"),
  29096. name: "Front",
  29097. image: {
  29098. source: "./media/characters/mercury-crescent/front.svg",
  29099. extra: 1088 / 1033,
  29100. bottom: 18.9 / 1109
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(5 + 2 / 12, "feet"),
  29108. default: true
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(2, "feet"),
  29117. weight: math.unit(15, "kg"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/diamond-jones/front.svg",
  29121. extra: 727/723,
  29122. bottom: 46/773
  29123. }
  29124. },
  29125. },
  29126. [
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(2, "feet"),
  29130. default: true
  29131. },
  29132. ]
  29133. ))
  29134. characterMakers.push(() => makeCharacter(
  29135. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29136. {
  29137. front: {
  29138. height: math.unit(3, "feet"),
  29139. weight: math.unit(30, "kg"),
  29140. name: "Front",
  29141. image: {
  29142. source: "./media/characters/sweet-bit/front.svg",
  29143. extra: 675 / 567,
  29144. bottom: 27.7 / 703
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Normal",
  29151. height: math.unit(3, "feet"),
  29152. default: true
  29153. },
  29154. ]
  29155. ))
  29156. characterMakers.push(() => makeCharacter(
  29157. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29158. {
  29159. side: {
  29160. height: math.unit(9.178, "feet"),
  29161. weight: math.unit(500, "lb"),
  29162. name: "Side",
  29163. image: {
  29164. source: "./media/characters/umbrazen/side.svg",
  29165. extra: 1730 / 1473,
  29166. bottom: 34.6 / 1765
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(9.178, "feet"),
  29174. default: true
  29175. },
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(10, "feet"),
  29183. weight: math.unit(750, "lb"),
  29184. name: "Front",
  29185. image: {
  29186. source: "./media/characters/arlist/front.svg",
  29187. extra: 961 / 778,
  29188. bottom: 6.2 / 986
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(10, "feet"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(5 + 1 / 12, "feet"),
  29205. weight: math.unit(110, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/aradel/front.svg",
  29209. extra: 324 / 303,
  29210. bottom: 3.6 / 329.4
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(5 + 1 / 12, "feet"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29224. {
  29225. dressed: {
  29226. height: math.unit(3 + 8 / 12, "feet"),
  29227. weight: math.unit(50, "lb"),
  29228. name: "Dressed",
  29229. image: {
  29230. source: "./media/characters/serryn/dressed.svg",
  29231. extra: 1792 / 1656,
  29232. bottom: 43.5 / 1840
  29233. }
  29234. },
  29235. nude: {
  29236. height: math.unit(3 + 8 / 12, "feet"),
  29237. weight: math.unit(50, "lb"),
  29238. name: "Nude",
  29239. image: {
  29240. source: "./media/characters/serryn/nude.svg",
  29241. extra: 1792 / 1656,
  29242. bottom: 43.5 / 1840
  29243. }
  29244. },
  29245. },
  29246. [
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(3 + 8 / 12, "feet"),
  29250. default: true
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29256. {
  29257. front: {
  29258. height: math.unit(7 + 10 / 12, "feet"),
  29259. weight: math.unit(255, "lb"),
  29260. name: "Front",
  29261. image: {
  29262. source: "./media/characters/xavier-thyme/front.svg",
  29263. extra: 3733 / 3642,
  29264. bottom: 131 / 3869
  29265. }
  29266. },
  29267. frontRaven: {
  29268. height: math.unit(7 + 10 / 12, "feet"),
  29269. weight: math.unit(255, "lb"),
  29270. name: "Front (Raven)",
  29271. image: {
  29272. source: "./media/characters/xavier-thyme/front-raven.svg",
  29273. extra: 4385 / 3642,
  29274. bottom: 131 / 4517
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(7 + 10 / 12, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(1.6, "m"),
  29291. weight: math.unit(50, "kg"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/kiki/front.svg",
  29295. extra: 4682 / 3610,
  29296. bottom: 115 / 4777
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(1.6, "meters"),
  29304. default: true
  29305. },
  29306. ]
  29307. ))
  29308. characterMakers.push(() => makeCharacter(
  29309. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29310. {
  29311. front: {
  29312. height: math.unit(50, "m"),
  29313. weight: math.unit(500, "tonnes"),
  29314. name: "Front",
  29315. image: {
  29316. source: "./media/characters/ryoko/front.svg",
  29317. extra: 4632 / 3926,
  29318. bottom: 193 / 4823
  29319. }
  29320. },
  29321. },
  29322. [
  29323. {
  29324. name: "Normal",
  29325. height: math.unit(50, "meters"),
  29326. default: true
  29327. },
  29328. ]
  29329. ))
  29330. characterMakers.push(() => makeCharacter(
  29331. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29332. {
  29333. front: {
  29334. height: math.unit(30, "m"),
  29335. weight: math.unit(22, "tonnes"),
  29336. name: "Front",
  29337. image: {
  29338. source: "./media/characters/elio/front.svg",
  29339. extra: 4582 / 3720,
  29340. bottom: 236 / 4828
  29341. }
  29342. },
  29343. },
  29344. [
  29345. {
  29346. name: "Normal",
  29347. height: math.unit(30, "meters"),
  29348. default: true
  29349. },
  29350. ]
  29351. ))
  29352. characterMakers.push(() => makeCharacter(
  29353. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29354. {
  29355. front: {
  29356. height: math.unit(6 + 3 / 12, "feet"),
  29357. weight: math.unit(120, "lb"),
  29358. name: "Front",
  29359. image: {
  29360. source: "./media/characters/azura/front.svg",
  29361. extra: 1149 / 1135,
  29362. bottom: 45 / 1194
  29363. }
  29364. },
  29365. frontClothed: {
  29366. height: math.unit(6 + 3 / 12, "feet"),
  29367. weight: math.unit(120, "lb"),
  29368. name: "Front (Clothed)",
  29369. image: {
  29370. source: "./media/characters/azura/front-clothed.svg",
  29371. extra: 1149 / 1135,
  29372. bottom: 45 / 1194
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Normal",
  29379. height: math.unit(6 + 3 / 12, "feet"),
  29380. default: true
  29381. },
  29382. {
  29383. name: "Macro",
  29384. height: math.unit(20 + 6 / 12, "feet")
  29385. },
  29386. {
  29387. name: "Megamacro",
  29388. height: math.unit(12, "miles")
  29389. },
  29390. {
  29391. name: "Gigamacro",
  29392. height: math.unit(10000, "miles")
  29393. },
  29394. {
  29395. name: "Teramacro",
  29396. height: math.unit(900000, "miles")
  29397. },
  29398. ]
  29399. ))
  29400. characterMakers.push(() => makeCharacter(
  29401. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29402. {
  29403. front: {
  29404. height: math.unit(12, "feet"),
  29405. weight: math.unit(1, "ton"),
  29406. capacity: math.unit(660000, "gallons"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/zeus/front.svg",
  29410. extra: 5005 / 4717,
  29411. bottom: 363 / 5388
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "Normal",
  29418. height: math.unit(12, "feet")
  29419. },
  29420. {
  29421. name: "Preferred Size",
  29422. height: math.unit(0.5, "miles"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Giga Horse",
  29427. height: math.unit(300, "miles")
  29428. },
  29429. {
  29430. name: "Riding Planets",
  29431. height: math.unit(30, "megameters")
  29432. },
  29433. {
  29434. name: "Cosmic Giant",
  29435. height: math.unit(3, "zettameters")
  29436. },
  29437. {
  29438. name: "Breeding God",
  29439. height: math.unit(9.92e22, "yottameters")
  29440. },
  29441. ]
  29442. ))
  29443. characterMakers.push(() => makeCharacter(
  29444. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29445. {
  29446. side: {
  29447. height: math.unit(9, "feet"),
  29448. weight: math.unit(1500, "kg"),
  29449. name: "Side",
  29450. image: {
  29451. source: "./media/characters/fang/side.svg",
  29452. extra: 924 / 866,
  29453. bottom: 47.5 / 972.3
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(9, "feet"),
  29461. default: true
  29462. },
  29463. {
  29464. name: "Macro",
  29465. height: math.unit(75 + 6 / 12, "feet")
  29466. },
  29467. {
  29468. name: "Teramacro",
  29469. height: math.unit(50000, "miles")
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(10, "feet"),
  29478. weight: math.unit(2, "tons"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/rekhit/front.svg",
  29482. extra: 2796 / 2590,
  29483. bottom: 225 / 3022
  29484. }
  29485. },
  29486. },
  29487. [
  29488. {
  29489. name: "Normal",
  29490. height: math.unit(10, "feet"),
  29491. default: true
  29492. },
  29493. {
  29494. name: "Macro",
  29495. height: math.unit(500, "feet")
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(7 + 6.451 / 12, "feet"),
  29504. weight: math.unit(310, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/dahlia-verrick/front.svg",
  29508. extra: 1488 / 1365,
  29509. bottom: 6.2 / 1495
  29510. }
  29511. },
  29512. back: {
  29513. height: math.unit(7 + 6.451 / 12, "feet"),
  29514. weight: math.unit(310, "lb"),
  29515. name: "Back",
  29516. image: {
  29517. source: "./media/characters/dahlia-verrick/back.svg",
  29518. extra: 1472 / 1351,
  29519. bottom: 5.28 / 1477
  29520. }
  29521. },
  29522. frontBusiness: {
  29523. height: math.unit(7 + 6.451 / 12, "feet"),
  29524. weight: math.unit(200, "lb"),
  29525. name: "Front (Business)",
  29526. image: {
  29527. source: "./media/characters/dahlia-verrick/front-business.svg",
  29528. extra: 1478 / 1381,
  29529. bottom: 5.5 / 1484
  29530. }
  29531. },
  29532. frontCasual: {
  29533. height: math.unit(7 + 6.451 / 12, "feet"),
  29534. weight: math.unit(200, "lb"),
  29535. name: "Front (Casual)",
  29536. image: {
  29537. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29538. extra: 1478 / 1381,
  29539. bottom: 5.5 / 1484
  29540. }
  29541. },
  29542. },
  29543. [
  29544. {
  29545. name: "Travel-Sized",
  29546. height: math.unit(7.45, "inches")
  29547. },
  29548. {
  29549. name: "Normal",
  29550. height: math.unit(7 + 6.451 / 12, "feet"),
  29551. default: true
  29552. },
  29553. {
  29554. name: "Hitting the Town",
  29555. height: math.unit(37 + 8 / 12, "feet")
  29556. },
  29557. {
  29558. name: "Stomp in the Suburbs",
  29559. height: math.unit(964 + 9.728 / 12, "feet")
  29560. },
  29561. {
  29562. name: "Sit on the City",
  29563. height: math.unit(61747 + 10.592 / 12, "feet")
  29564. },
  29565. {
  29566. name: "Glomp the Globe",
  29567. height: math.unit(252919327 + 4.832 / 12, "feet")
  29568. },
  29569. ]
  29570. ))
  29571. characterMakers.push(() => makeCharacter(
  29572. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29573. {
  29574. front: {
  29575. height: math.unit(6 + 4 / 12, "feet"),
  29576. weight: math.unit(320, "lb"),
  29577. name: "Front",
  29578. image: {
  29579. source: "./media/characters/balina-mahigan/front.svg",
  29580. extra: 447 / 428,
  29581. bottom: 18 / 466
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(6 + 4 / 12, "feet"),
  29586. weight: math.unit(320, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/balina-mahigan/back.svg",
  29590. extra: 445 / 428,
  29591. bottom: 4.07 / 448
  29592. }
  29593. },
  29594. arm: {
  29595. height: math.unit(1.88, "feet"),
  29596. name: "Arm",
  29597. image: {
  29598. source: "./media/characters/balina-mahigan/arm.svg"
  29599. }
  29600. },
  29601. backPort: {
  29602. height: math.unit(0.685, "feet"),
  29603. name: "Back Port",
  29604. image: {
  29605. source: "./media/characters/balina-mahigan/back-port.svg"
  29606. }
  29607. },
  29608. hoofpaw: {
  29609. height: math.unit(1.41, "feet"),
  29610. name: "Hoofpaw",
  29611. image: {
  29612. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29613. }
  29614. },
  29615. leftHandBack: {
  29616. height: math.unit(0.938, "feet"),
  29617. name: "Left Hand (Back)",
  29618. image: {
  29619. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29620. }
  29621. },
  29622. leftHandFront: {
  29623. height: math.unit(0.938, "feet"),
  29624. name: "Left Hand (Front)",
  29625. image: {
  29626. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29627. }
  29628. },
  29629. rightHandBack: {
  29630. height: math.unit(0.95, "feet"),
  29631. name: "Right Hand (Back)",
  29632. image: {
  29633. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29634. }
  29635. },
  29636. rightHandFront: {
  29637. height: math.unit(0.95, "feet"),
  29638. name: "Right Hand (Front)",
  29639. image: {
  29640. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(6 + 4 / 12, "feet"),
  29648. default: true
  29649. },
  29650. ]
  29651. ))
  29652. characterMakers.push(() => makeCharacter(
  29653. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29654. {
  29655. front: {
  29656. height: math.unit(6, "feet"),
  29657. weight: math.unit(320, "lb"),
  29658. name: "Front",
  29659. image: {
  29660. source: "./media/characters/balina-mejeri/front.svg",
  29661. extra: 517 / 488,
  29662. bottom: 44.2 / 561
  29663. }
  29664. },
  29665. },
  29666. [
  29667. {
  29668. name: "Normal",
  29669. height: math.unit(6 + 4 / 12, "feet")
  29670. },
  29671. {
  29672. name: "Business",
  29673. height: math.unit(155, "feet"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29680. {
  29681. kneeling: {
  29682. height: math.unit(6 + 4 / 12, "feet"),
  29683. weight: math.unit(300 * 20, "lb"),
  29684. name: "Kneeling",
  29685. image: {
  29686. source: "./media/characters/balbarian/kneeling.svg",
  29687. extra: 922 / 862,
  29688. bottom: 42.4 / 965
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(6 + 4 / 12, "feet")
  29696. },
  29697. {
  29698. name: "Treasured",
  29699. height: math.unit(18 + 9 / 12, "feet"),
  29700. default: true
  29701. },
  29702. {
  29703. name: "Macro",
  29704. height: math.unit(900, "feet")
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(6 + 4 / 12, "feet"),
  29713. weight: math.unit(325, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/balina-amarini/front.svg",
  29717. extra: 415 / 403,
  29718. bottom: 19 / 433.4
  29719. }
  29720. },
  29721. back: {
  29722. height: math.unit(6 + 4 / 12, "feet"),
  29723. weight: math.unit(325, "lb"),
  29724. name: "Back",
  29725. image: {
  29726. source: "./media/characters/balina-amarini/back.svg",
  29727. extra: 415 / 403,
  29728. bottom: 13.5 / 432
  29729. }
  29730. },
  29731. overdrive: {
  29732. height: math.unit(6 + 4 / 12, "feet"),
  29733. weight: math.unit(400, "lb"),
  29734. name: "Overdrive",
  29735. image: {
  29736. source: "./media/characters/balina-amarini/overdrive.svg",
  29737. extra: 269 / 259,
  29738. bottom: 12 / 282
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Boom",
  29745. height: math.unit(9 + 10 / 12, "feet"),
  29746. default: true
  29747. },
  29748. {
  29749. name: "Macro",
  29750. height: math.unit(280, "feet")
  29751. },
  29752. ]
  29753. ))
  29754. characterMakers.push(() => makeCharacter(
  29755. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29756. {
  29757. goddess: {
  29758. height: math.unit(600, "feet"),
  29759. weight: math.unit(2000000, "tons"),
  29760. name: "Goddess",
  29761. image: {
  29762. source: "./media/characters/lady-kubwa/goddess.svg",
  29763. extra: 1240.5 / 1223,
  29764. bottom: 22 / 1263
  29765. }
  29766. },
  29767. goddesser: {
  29768. height: math.unit(900, "feet"),
  29769. weight: math.unit(20000000, "lb"),
  29770. name: "Goddess-er",
  29771. image: {
  29772. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29773. extra: 899 / 888,
  29774. bottom: 12.6 / 912
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Macro",
  29781. height: math.unit(600, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Megamacro",
  29786. height: math.unit(250, "miles")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(7 + 7 / 12, "feet"),
  29795. weight: math.unit(250, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/tala-grovehorn/front.svg",
  29799. extra: 2636 / 2525,
  29800. bottom: 147 / 2781
  29801. }
  29802. },
  29803. back: {
  29804. height: math.unit(7 + 7 / 12, "feet"),
  29805. weight: math.unit(250, "lb"),
  29806. name: "Back",
  29807. image: {
  29808. source: "./media/characters/tala-grovehorn/back.svg",
  29809. extra: 2635 / 2539,
  29810. bottom: 100 / 2732.8
  29811. }
  29812. },
  29813. mouth: {
  29814. height: math.unit(1.15, "feet"),
  29815. name: "Mouth",
  29816. image: {
  29817. source: "./media/characters/tala-grovehorn/mouth.svg"
  29818. }
  29819. },
  29820. dick: {
  29821. height: math.unit(2.36, "feet"),
  29822. name: "Dick",
  29823. image: {
  29824. source: "./media/characters/tala-grovehorn/dick.svg"
  29825. }
  29826. },
  29827. slit: {
  29828. height: math.unit(0.61, "feet"),
  29829. name: "Slit",
  29830. image: {
  29831. source: "./media/characters/tala-grovehorn/slit.svg"
  29832. }
  29833. },
  29834. },
  29835. [
  29836. ]
  29837. ))
  29838. characterMakers.push(() => makeCharacter(
  29839. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29840. {
  29841. front: {
  29842. height: math.unit(7 + 7 / 12, "feet"),
  29843. weight: math.unit(225, "lb"),
  29844. name: "Front",
  29845. image: {
  29846. source: "./media/characters/epona/front.svg",
  29847. extra: 2445 / 2290,
  29848. bottom: 251 / 2696
  29849. }
  29850. },
  29851. back: {
  29852. height: math.unit(7 + 7 / 12, "feet"),
  29853. weight: math.unit(225, "lb"),
  29854. name: "Back",
  29855. image: {
  29856. source: "./media/characters/epona/back.svg",
  29857. extra: 2546 / 2408,
  29858. bottom: 44 / 2589
  29859. }
  29860. },
  29861. genitals: {
  29862. height: math.unit(1.5, "feet"),
  29863. name: "Genitals",
  29864. image: {
  29865. source: "./media/characters/epona/genitals.svg"
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(7 + 7 / 12, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(7, "feet"),
  29882. weight: math.unit(518, "lb"),
  29883. name: "Front",
  29884. image: {
  29885. source: "./media/characters/avia-bloodbourn/front.svg",
  29886. extra: 1466 / 1350,
  29887. bottom: 65 / 1527
  29888. }
  29889. },
  29890. },
  29891. [
  29892. ]
  29893. ))
  29894. characterMakers.push(() => makeCharacter(
  29895. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29896. {
  29897. front: {
  29898. height: math.unit(9.35, "feet"),
  29899. weight: math.unit(600, "lb"),
  29900. name: "Front",
  29901. image: {
  29902. source: "./media/characters/amera/front.svg",
  29903. extra: 891 / 818,
  29904. bottom: 30 / 922.7
  29905. }
  29906. },
  29907. back: {
  29908. height: math.unit(9.35, "feet"),
  29909. weight: math.unit(600, "lb"),
  29910. name: "Back",
  29911. image: {
  29912. source: "./media/characters/amera/back.svg",
  29913. extra: 876 / 824,
  29914. bottom: 6.8 / 884
  29915. }
  29916. },
  29917. dick: {
  29918. height: math.unit(2.14, "feet"),
  29919. name: "Dick",
  29920. image: {
  29921. source: "./media/characters/amera/dick.svg"
  29922. }
  29923. },
  29924. },
  29925. [
  29926. {
  29927. name: "Normal",
  29928. height: math.unit(9.35, "feet"),
  29929. default: true
  29930. },
  29931. ]
  29932. ))
  29933. characterMakers.push(() => makeCharacter(
  29934. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29935. {
  29936. kneeling: {
  29937. height: math.unit(3 + 4 / 12, "feet"),
  29938. weight: math.unit(90, "lb"),
  29939. name: "Kneeling",
  29940. image: {
  29941. source: "./media/characters/rosewen/kneeling.svg",
  29942. extra: 1835 / 1571,
  29943. bottom: 27.7 / 1862
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Normal",
  29950. height: math.unit(3 + 4 / 12, "feet"),
  29951. default: true
  29952. },
  29953. ]
  29954. ))
  29955. characterMakers.push(() => makeCharacter(
  29956. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29957. {
  29958. front: {
  29959. height: math.unit(5 + 10 / 12, "feet"),
  29960. weight: math.unit(200, "lb"),
  29961. name: "Front",
  29962. image: {
  29963. source: "./media/characters/sabah/front.svg",
  29964. extra: 849 / 763,
  29965. bottom: 33.9 / 881
  29966. }
  29967. },
  29968. },
  29969. [
  29970. {
  29971. name: "Normal",
  29972. height: math.unit(5 + 10 / 12, "feet"),
  29973. default: true
  29974. },
  29975. ]
  29976. ))
  29977. characterMakers.push(() => makeCharacter(
  29978. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29979. {
  29980. front: {
  29981. height: math.unit(3 + 5 / 12, "feet"),
  29982. weight: math.unit(40, "kg"),
  29983. name: "Front",
  29984. image: {
  29985. source: "./media/characters/purple-flame/front.svg",
  29986. extra: 1577 / 1412,
  29987. bottom: 97 / 1694
  29988. }
  29989. },
  29990. frontDressed: {
  29991. height: math.unit(3 + 5 / 12, "feet"),
  29992. weight: math.unit(40, "kg"),
  29993. name: "Front (Dressed)",
  29994. image: {
  29995. source: "./media/characters/purple-flame/front-dressed.svg",
  29996. extra: 1577 / 1412,
  29997. bottom: 97 / 1694
  29998. }
  29999. },
  30000. headphones: {
  30001. height: math.unit(0.85, "feet"),
  30002. name: "Headphones",
  30003. image: {
  30004. source: "./media/characters/purple-flame/headphones.svg"
  30005. }
  30006. },
  30007. },
  30008. [
  30009. {
  30010. name: "Really Small",
  30011. height: math.unit(5, "cm")
  30012. },
  30013. {
  30014. name: "Micro",
  30015. height: math.unit(1 + 5 / 12, "feet")
  30016. },
  30017. {
  30018. name: "Normal",
  30019. height: math.unit(3 + 5 / 12, "feet"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Minimacro",
  30024. height: math.unit(125, "feet")
  30025. },
  30026. {
  30027. name: "Macro",
  30028. height: math.unit(0.5, "miles")
  30029. },
  30030. {
  30031. name: "Megamacro",
  30032. height: math.unit(50, "miles")
  30033. },
  30034. {
  30035. name: "Gigantic",
  30036. height: math.unit(750, "miles")
  30037. },
  30038. {
  30039. name: "Planetary",
  30040. height: math.unit(15000, "miles")
  30041. },
  30042. ]
  30043. ))
  30044. characterMakers.push(() => makeCharacter(
  30045. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  30046. {
  30047. front: {
  30048. height: math.unit(14, "feet"),
  30049. weight: math.unit(959, "lb"),
  30050. name: "Front",
  30051. image: {
  30052. source: "./media/characters/arsenal/front.svg",
  30053. extra: 2357 / 2157,
  30054. bottom: 93 / 2458
  30055. }
  30056. },
  30057. },
  30058. [
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(14, "feet"),
  30062. default: true
  30063. },
  30064. ]
  30065. ))
  30066. characterMakers.push(() => makeCharacter(
  30067. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  30068. {
  30069. front: {
  30070. height: math.unit(6, "feet"),
  30071. weight: math.unit(150, "lb"),
  30072. name: "Front",
  30073. image: {
  30074. source: "./media/characters/adira/front.svg",
  30075. extra: 2121/2013,
  30076. bottom: 206/2327
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Micro",
  30083. height: math.unit(4, "inches"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(50, "feet")
  30089. },
  30090. ]
  30091. ))
  30092. characterMakers.push(() => makeCharacter(
  30093. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  30094. {
  30095. front: {
  30096. height: math.unit(16, "feet"),
  30097. weight: math.unit(1000, "lb"),
  30098. name: "Front",
  30099. image: {
  30100. source: "./media/characters/grim/front.svg",
  30101. extra: 622 / 614,
  30102. bottom: 18.1 / 642
  30103. }
  30104. },
  30105. back: {
  30106. height: math.unit(16, "feet"),
  30107. weight: math.unit(1000, "lb"),
  30108. name: "Back",
  30109. image: {
  30110. source: "./media/characters/grim/back.svg",
  30111. extra: 610.6 / 602,
  30112. bottom: 40.8 / 652
  30113. }
  30114. },
  30115. hunched: {
  30116. height: math.unit(9.75, "feet"),
  30117. weight: math.unit(1000, "lb"),
  30118. name: "Hunched",
  30119. image: {
  30120. source: "./media/characters/grim/hunched.svg",
  30121. extra: 304 / 297,
  30122. bottom: 35.4 / 394
  30123. }
  30124. },
  30125. },
  30126. [
  30127. {
  30128. name: "Normal",
  30129. height: math.unit(16, "feet"),
  30130. default: true
  30131. },
  30132. ]
  30133. ))
  30134. characterMakers.push(() => makeCharacter(
  30135. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30136. {
  30137. front: {
  30138. height: math.unit(2.3, "meters"),
  30139. weight: math.unit(300, "lb"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/sinja/front-sfw.svg",
  30143. extra: 1393 / 1294,
  30144. bottom: 70 / 1463
  30145. }
  30146. },
  30147. frontNsfw: {
  30148. height: math.unit(2.3, "meters"),
  30149. weight: math.unit(300, "lb"),
  30150. name: "Front (NSFW)",
  30151. image: {
  30152. source: "./media/characters/sinja/front-nsfw.svg",
  30153. extra: 1393 / 1294,
  30154. bottom: 70 / 1463
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(2.3, "meters"),
  30159. weight: math.unit(300, "lb"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/sinja/back.svg",
  30163. extra: 1393 / 1294,
  30164. bottom: 70 / 1463
  30165. }
  30166. },
  30167. head: {
  30168. height: math.unit(1.771, "feet"),
  30169. name: "Head",
  30170. image: {
  30171. source: "./media/characters/sinja/head.svg"
  30172. }
  30173. },
  30174. slit: {
  30175. height: math.unit(0.8, "feet"),
  30176. name: "Slit",
  30177. image: {
  30178. source: "./media/characters/sinja/slit.svg"
  30179. }
  30180. },
  30181. },
  30182. [
  30183. {
  30184. name: "Normal",
  30185. height: math.unit(2.3, "meters")
  30186. },
  30187. {
  30188. name: "Macro",
  30189. height: math.unit(91, "meters"),
  30190. default: true
  30191. },
  30192. {
  30193. name: "Megamacro",
  30194. height: math.unit(91440, "meters")
  30195. },
  30196. {
  30197. name: "Gigamacro",
  30198. height: math.unit(60960000, "meters")
  30199. },
  30200. {
  30201. name: "Teramacro",
  30202. height: math.unit(9144000000, "meters")
  30203. },
  30204. ]
  30205. ))
  30206. characterMakers.push(() => makeCharacter(
  30207. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30208. {
  30209. front: {
  30210. height: math.unit(1.7, "meters"),
  30211. weight: math.unit(130, "lb"),
  30212. name: "Front",
  30213. image: {
  30214. source: "./media/characters/kyu/front.svg",
  30215. extra: 415 / 395,
  30216. bottom: 5 / 420
  30217. }
  30218. },
  30219. head: {
  30220. height: math.unit(1.75, "feet"),
  30221. name: "Head",
  30222. image: {
  30223. source: "./media/characters/kyu/head.svg"
  30224. }
  30225. },
  30226. foot: {
  30227. height: math.unit(0.81, "feet"),
  30228. name: "Foot",
  30229. image: {
  30230. source: "./media/characters/kyu/foot.svg"
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(1.7, "meters")
  30238. },
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(131, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Megamacro",
  30246. height: math.unit(91440, "meters")
  30247. },
  30248. {
  30249. name: "Gigamacro",
  30250. height: math.unit(60960000, "meters")
  30251. },
  30252. {
  30253. name: "Teramacro",
  30254. height: math.unit(9144000000, "meters")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(7 + 1 / 12, "feet"),
  30263. weight: math.unit(250, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/joey/front.svg",
  30267. extra: 1791 / 1537,
  30268. bottom: 28 / 1816
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Micro",
  30275. height: math.unit(3, "inches")
  30276. },
  30277. {
  30278. name: "Normal",
  30279. height: math.unit(7 + 1 / 12, "feet"),
  30280. default: true
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30286. {
  30287. front: {
  30288. height: math.unit(165, "cm"),
  30289. weight: math.unit(140, "lb"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/sam-evans/front.svg",
  30293. extra: 3417 / 3230,
  30294. bottom: 41.3 / 3417
  30295. }
  30296. },
  30297. frontSixTails: {
  30298. height: math.unit(165, "cm"),
  30299. weight: math.unit(140, "lb"),
  30300. name: "Front-six-tails",
  30301. image: {
  30302. source: "./media/characters/sam-evans/front-six-tails.svg",
  30303. extra: 3417 / 3230,
  30304. bottom: 41.3 / 3417
  30305. }
  30306. },
  30307. back: {
  30308. height: math.unit(165, "cm"),
  30309. weight: math.unit(140, "lb"),
  30310. name: "Back",
  30311. image: {
  30312. source: "./media/characters/sam-evans/back.svg",
  30313. extra: 3227 / 3032,
  30314. bottom: 6.8 / 3234
  30315. }
  30316. },
  30317. face: {
  30318. height: math.unit(0.68, "feet"),
  30319. name: "Face",
  30320. image: {
  30321. source: "./media/characters/sam-evans/face.svg"
  30322. }
  30323. },
  30324. },
  30325. [
  30326. {
  30327. name: "Normal",
  30328. height: math.unit(165, "cm"),
  30329. default: true
  30330. },
  30331. {
  30332. name: "Macro",
  30333. height: math.unit(100, "meters")
  30334. },
  30335. {
  30336. name: "Macro+",
  30337. height: math.unit(800, "meters")
  30338. },
  30339. {
  30340. name: "Macro++",
  30341. height: math.unit(3, "km")
  30342. },
  30343. {
  30344. name: "Macro+++",
  30345. height: math.unit(30, "km")
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(10, "feet"),
  30354. weight: math.unit(750, "lb"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/juliet-a/front.svg",
  30358. extra: 1766 / 1720,
  30359. bottom: 43 / 1809
  30360. }
  30361. },
  30362. back: {
  30363. height: math.unit(10, "feet"),
  30364. weight: math.unit(750, "lb"),
  30365. name: "Back",
  30366. image: {
  30367. source: "./media/characters/juliet-a/back.svg",
  30368. extra: 1781 / 1734,
  30369. bottom: 35 / 1810,
  30370. }
  30371. },
  30372. },
  30373. [
  30374. {
  30375. name: "Normal",
  30376. height: math.unit(10, "feet"),
  30377. default: true
  30378. },
  30379. {
  30380. name: "Dragon Form",
  30381. height: math.unit(250, "feet")
  30382. },
  30383. {
  30384. name: "Macro",
  30385. height: math.unit(1000, "feet")
  30386. },
  30387. {
  30388. name: "Megamacro",
  30389. height: math.unit(10000, "feet")
  30390. }
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30395. {
  30396. regular: {
  30397. height: math.unit(7 + 3 / 12, "feet"),
  30398. weight: math.unit(260, "lb"),
  30399. name: "Regular",
  30400. image: {
  30401. source: "./media/characters/wild/regular.svg",
  30402. extra: 97.45 / 92,
  30403. bottom: 6.8 / 104.3
  30404. }
  30405. },
  30406. biggums: {
  30407. height: math.unit(8 + 6 / 12, "feet"),
  30408. weight: math.unit(425, "lb"),
  30409. name: "Biggums",
  30410. image: {
  30411. source: "./media/characters/wild/biggums.svg",
  30412. extra: 97.45 / 92,
  30413. bottom: 7.5 / 132.34
  30414. }
  30415. },
  30416. mawRegular: {
  30417. height: math.unit(1.24, "feet"),
  30418. name: "Maw (Regular)",
  30419. image: {
  30420. source: "./media/characters/wild/maw.svg"
  30421. }
  30422. },
  30423. mawBiggums: {
  30424. height: math.unit(1.47, "feet"),
  30425. name: "Maw (Biggums)",
  30426. image: {
  30427. source: "./media/characters/wild/maw.svg"
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(7 + 3 / 12, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30441. {
  30442. front: {
  30443. height: math.unit(2.5, "meters"),
  30444. weight: math.unit(200, "kg"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/vidar/front.svg",
  30448. extra: 2994 / 2795,
  30449. bottom: 56 / 3061
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(2.5, "meters"),
  30454. weight: math.unit(200, "kg"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/vidar/back.svg",
  30458. extra: 3131 / 2928,
  30459. bottom: 13.5 / 3141.5
  30460. }
  30461. },
  30462. feral: {
  30463. height: math.unit(2.5, "meters"),
  30464. weight: math.unit(2000, "kg"),
  30465. name: "Feral",
  30466. image: {
  30467. source: "./media/characters/vidar/feral.svg",
  30468. extra: 2790 / 1765,
  30469. bottom: 6 / 2796
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(2.5, "meters"),
  30477. default: true
  30478. },
  30479. {
  30480. name: "Macro",
  30481. height: math.unit(100, "meters")
  30482. },
  30483. ]
  30484. ))
  30485. characterMakers.push(() => makeCharacter(
  30486. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30487. {
  30488. front: {
  30489. height: math.unit(5 + 9 / 12, "feet"),
  30490. weight: math.unit(120, "lb"),
  30491. name: "Front",
  30492. image: {
  30493. source: "./media/characters/ash/front.svg",
  30494. extra: 2189 / 1961,
  30495. bottom: 5.2 / 2194
  30496. }
  30497. },
  30498. },
  30499. [
  30500. {
  30501. name: "Normal",
  30502. height: math.unit(5 + 9 / 12, "feet"),
  30503. default: true
  30504. },
  30505. ]
  30506. ))
  30507. characterMakers.push(() => makeCharacter(
  30508. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30509. {
  30510. front: {
  30511. height: math.unit(9, "feet"),
  30512. weight: math.unit(10000, "lb"),
  30513. name: "Front",
  30514. image: {
  30515. source: "./media/characters/gygabite/front.svg",
  30516. bottom: 31.7 / 537.8,
  30517. extra: 505 / 370
  30518. }
  30519. },
  30520. },
  30521. [
  30522. {
  30523. name: "Normal",
  30524. height: math.unit(9, "feet"),
  30525. default: true
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30531. {
  30532. front: {
  30533. height: math.unit(12, "feet"),
  30534. weight: math.unit(4000, "lb"),
  30535. name: "Front",
  30536. image: {
  30537. source: "./media/characters/p0tat0/front.svg",
  30538. extra: 1065 / 921,
  30539. bottom: 55.7 / 1121.25
  30540. }
  30541. },
  30542. },
  30543. [
  30544. {
  30545. name: "Normal",
  30546. height: math.unit(12, "feet"),
  30547. default: true
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30553. {
  30554. side: {
  30555. height: math.unit(6.5, "feet"),
  30556. weight: math.unit(800, "lb"),
  30557. name: "Side",
  30558. image: {
  30559. source: "./media/characters/dusk/side.svg",
  30560. extra: 615 / 373,
  30561. bottom: 53 / 664
  30562. }
  30563. },
  30564. sitting: {
  30565. height: math.unit(7, "feet"),
  30566. weight: math.unit(800, "lb"),
  30567. name: "Sitting",
  30568. image: {
  30569. source: "./media/characters/dusk/sitting.svg",
  30570. extra: 753 / 425,
  30571. bottom: 33 / 774
  30572. }
  30573. },
  30574. head: {
  30575. height: math.unit(6.1, "feet"),
  30576. name: "Head",
  30577. image: {
  30578. source: "./media/characters/dusk/head.svg"
  30579. }
  30580. },
  30581. },
  30582. [
  30583. {
  30584. name: "Normal",
  30585. height: math.unit(7, "feet"),
  30586. default: true
  30587. },
  30588. ]
  30589. ))
  30590. characterMakers.push(() => makeCharacter(
  30591. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30592. {
  30593. front: {
  30594. height: math.unit(15, "feet"),
  30595. weight: math.unit(7000, "lb"),
  30596. name: "Front",
  30597. image: {
  30598. source: "./media/characters/jay-direwolf/front.svg",
  30599. extra: 1810 / 1732,
  30600. bottom: 66 / 1892
  30601. }
  30602. },
  30603. },
  30604. [
  30605. {
  30606. name: "Normal",
  30607. height: math.unit(15, "feet"),
  30608. default: true
  30609. },
  30610. ]
  30611. ))
  30612. characterMakers.push(() => makeCharacter(
  30613. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30614. {
  30615. front: {
  30616. height: math.unit(4 + 9 / 12, "feet"),
  30617. weight: math.unit(130, "lb"),
  30618. name: "Front",
  30619. image: {
  30620. source: "./media/characters/anchovie/front.svg",
  30621. extra: 382 / 350,
  30622. bottom: 25 / 409
  30623. }
  30624. },
  30625. back: {
  30626. height: math.unit(4 + 9 / 12, "feet"),
  30627. weight: math.unit(130, "lb"),
  30628. name: "Back",
  30629. image: {
  30630. source: "./media/characters/anchovie/back.svg",
  30631. extra: 385 / 352,
  30632. bottom: 16.6 / 402
  30633. }
  30634. },
  30635. frontDressed: {
  30636. height: math.unit(4 + 9 / 12, "feet"),
  30637. weight: math.unit(130, "lb"),
  30638. name: "Front (Dressed)",
  30639. image: {
  30640. source: "./media/characters/anchovie/front-dressed.svg",
  30641. extra: 382 / 350,
  30642. bottom: 25 / 409
  30643. }
  30644. },
  30645. backDressed: {
  30646. height: math.unit(4 + 9 / 12, "feet"),
  30647. weight: math.unit(130, "lb"),
  30648. name: "Back (Dressed)",
  30649. image: {
  30650. source: "./media/characters/anchovie/back-dressed.svg",
  30651. extra: 385 / 352,
  30652. bottom: 16.6 / 402
  30653. }
  30654. },
  30655. },
  30656. [
  30657. {
  30658. name: "Micro",
  30659. height: math.unit(6.4, "inches")
  30660. },
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(4 + 9 / 12, "feet"),
  30664. default: true
  30665. },
  30666. ]
  30667. ))
  30668. characterMakers.push(() => makeCharacter(
  30669. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30670. {
  30671. front: {
  30672. height: math.unit(2, "meters"),
  30673. weight: math.unit(180, "lb"),
  30674. name: "Front",
  30675. image: {
  30676. source: "./media/characters/acidrenamon/front.svg",
  30677. extra: 987 / 890,
  30678. bottom: 22.8 / 1009
  30679. }
  30680. },
  30681. back: {
  30682. height: math.unit(2, "meters"),
  30683. weight: math.unit(180, "lb"),
  30684. name: "Back",
  30685. image: {
  30686. source: "./media/characters/acidrenamon/back.svg",
  30687. extra: 983 / 891,
  30688. bottom: 8.4 / 992
  30689. }
  30690. },
  30691. head: {
  30692. height: math.unit(1.92, "feet"),
  30693. name: "Head",
  30694. image: {
  30695. source: "./media/characters/acidrenamon/head.svg"
  30696. }
  30697. },
  30698. rump: {
  30699. height: math.unit(1.72, "feet"),
  30700. name: "Rump",
  30701. image: {
  30702. source: "./media/characters/acidrenamon/rump.svg"
  30703. }
  30704. },
  30705. tail: {
  30706. height: math.unit(4.2, "feet"),
  30707. name: "Tail",
  30708. image: {
  30709. source: "./media/characters/acidrenamon/tail.svg"
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(2, "meters"),
  30717. default: true
  30718. },
  30719. {
  30720. name: "Minimacro",
  30721. height: math.unit(7, "meters")
  30722. },
  30723. {
  30724. name: "Macro",
  30725. height: math.unit(200, "meters")
  30726. },
  30727. {
  30728. name: "Gigamacro",
  30729. height: math.unit(0.2, "earths")
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(152, "feet"),
  30738. name: "Front",
  30739. image: {
  30740. source: "./media/characters/kenzie-lee/front.svg",
  30741. extra: 1869/1774,
  30742. bottom: 128/1997
  30743. }
  30744. },
  30745. side: {
  30746. height: math.unit(86, "feet"),
  30747. name: "Side",
  30748. image: {
  30749. source: "./media/characters/kenzie-lee/side.svg",
  30750. extra: 930/815,
  30751. bottom: 177/1107
  30752. }
  30753. },
  30754. paw: {
  30755. height: math.unit(15, "feet"),
  30756. name: "Paw",
  30757. image: {
  30758. source: "./media/characters/kenzie-lee/paw.svg"
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Kenzie Flea",
  30765. height: math.unit(2, "mm"),
  30766. default: true
  30767. },
  30768. {
  30769. name: "Micro",
  30770. height: math.unit(2, "inches")
  30771. },
  30772. {
  30773. name: "Normal",
  30774. height: math.unit(152, "feet")
  30775. },
  30776. {
  30777. name: "Megamacro",
  30778. height: math.unit(7, "miles")
  30779. },
  30780. {
  30781. name: "Gigamacro",
  30782. height: math.unit(8000, "miles")
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(6, "feet"),
  30791. name: "Front",
  30792. image: {
  30793. source: "./media/characters/withers/front.svg",
  30794. extra: 1935/1760,
  30795. bottom: 72/2007
  30796. }
  30797. },
  30798. back: {
  30799. height: math.unit(6, "feet"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/withers/back.svg",
  30803. extra: 1944/1792,
  30804. bottom: 12/1956
  30805. }
  30806. },
  30807. dressed: {
  30808. height: math.unit(6, "feet"),
  30809. name: "Dressed",
  30810. image: {
  30811. source: "./media/characters/withers/dressed.svg",
  30812. extra: 1937/1765,
  30813. bottom: 73/2010
  30814. }
  30815. },
  30816. phase1: {
  30817. height: math.unit(1.1, "feet"),
  30818. name: "Phase 1",
  30819. image: {
  30820. source: "./media/characters/withers/phase-1.svg",
  30821. extra: 1885/1232,
  30822. bottom: 0/1885
  30823. }
  30824. },
  30825. phase2: {
  30826. height: math.unit(1.05, "feet"),
  30827. name: "Phase 2",
  30828. image: {
  30829. source: "./media/characters/withers/phase-2.svg",
  30830. extra: 1792/1090,
  30831. bottom: 0/1792
  30832. }
  30833. },
  30834. partyWipe: {
  30835. height: math.unit(1.1, "feet"),
  30836. name: "Party Wipe",
  30837. image: {
  30838. source: "./media/characters/withers/party-wipe.svg",
  30839. extra: 1864/1207,
  30840. bottom: 0/1864
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Macro",
  30847. height: math.unit(167, "feet"),
  30848. default: true
  30849. },
  30850. {
  30851. name: "Megamacro",
  30852. height: math.unit(15, "miles")
  30853. }
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30858. {
  30859. front: {
  30860. height: math.unit(6 + 7 / 12, "feet"),
  30861. weight: math.unit(250, "lb"),
  30862. name: "Front",
  30863. image: {
  30864. source: "./media/characters/nemoskii/front.svg",
  30865. extra: 2270 / 1734,
  30866. bottom: 86 / 2354
  30867. }
  30868. },
  30869. back: {
  30870. height: math.unit(6 + 7 / 12, "feet"),
  30871. weight: math.unit(250, "lb"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/nemoskii/back.svg",
  30875. extra: 1845 / 1788,
  30876. bottom: 10.5 / 1852
  30877. }
  30878. },
  30879. head: {
  30880. height: math.unit(1.31, "feet"),
  30881. name: "Head",
  30882. image: {
  30883. source: "./media/characters/nemoskii/head.svg"
  30884. }
  30885. },
  30886. },
  30887. [
  30888. {
  30889. name: "Micro",
  30890. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30891. },
  30892. {
  30893. name: "Normal",
  30894. height: math.unit(6 + 7 / 12, "feet"),
  30895. default: true
  30896. },
  30897. {
  30898. name: "Macro",
  30899. height: math.unit((6 + 7 / 12) * 150, "feet")
  30900. },
  30901. {
  30902. name: "Macro+",
  30903. height: math.unit((6 + 7 / 12) * 500, "feet")
  30904. },
  30905. {
  30906. name: "Megamacro",
  30907. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30908. },
  30909. ]
  30910. ))
  30911. characterMakers.push(() => makeCharacter(
  30912. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30913. {
  30914. front: {
  30915. height: math.unit(1, "mile"),
  30916. weight: math.unit(265261.9, "lb"),
  30917. name: "Front",
  30918. image: {
  30919. source: "./media/characters/shui/front.svg",
  30920. extra: 1633 / 1564,
  30921. bottom: 91.5 / 1726
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Macro",
  30928. height: math.unit(1, "mile"),
  30929. default: true
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30935. {
  30936. front: {
  30937. height: math.unit(12 + 6 / 12, "feet"),
  30938. weight: math.unit(1342, "lb"),
  30939. name: "Front",
  30940. image: {
  30941. source: "./media/characters/arokh-takakura/front.svg",
  30942. extra: 1089 / 1043,
  30943. bottom: 77.4 / 1176.7
  30944. }
  30945. },
  30946. back: {
  30947. height: math.unit(12 + 6 / 12, "feet"),
  30948. weight: math.unit(1342, "lb"),
  30949. name: "Back",
  30950. image: {
  30951. source: "./media/characters/arokh-takakura/back.svg",
  30952. extra: 1046 / 1019,
  30953. bottom: 102 / 1150
  30954. }
  30955. },
  30956. },
  30957. [
  30958. {
  30959. name: "Big",
  30960. height: math.unit(12 + 6 / 12, "feet"),
  30961. default: true
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30967. {
  30968. front: {
  30969. height: math.unit(5 + 6 / 12, "feet"),
  30970. weight: math.unit(150, "lb"),
  30971. name: "Front",
  30972. image: {
  30973. source: "./media/characters/theo/front.svg",
  30974. extra: 1184 / 1131,
  30975. bottom: 7.4 / 1191
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Micro",
  30982. height: math.unit(5, "inches")
  30983. },
  30984. {
  30985. name: "Normal",
  30986. height: math.unit(5 + 6 / 12, "feet"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(5 + 9 / 12, "feet"),
  30996. weight: math.unit(130, "lb"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/cecelia-swift/front.svg",
  31000. extra: 502 / 484,
  31001. bottom: 23 / 523
  31002. }
  31003. },
  31004. back: {
  31005. height: math.unit(5 + 9 / 12, "feet"),
  31006. weight: math.unit(130, "lb"),
  31007. name: "Back",
  31008. image: {
  31009. source: "./media/characters/cecelia-swift/back.svg",
  31010. extra: 499 / 485,
  31011. bottom: 12 / 511
  31012. }
  31013. },
  31014. head: {
  31015. height: math.unit(0.90, "feet"),
  31016. name: "Head",
  31017. image: {
  31018. source: "./media/characters/cecelia-swift/head.svg"
  31019. }
  31020. },
  31021. rump: {
  31022. height: math.unit(1.75, "feet"),
  31023. name: "Rump",
  31024. image: {
  31025. source: "./media/characters/cecelia-swift/rump.svg"
  31026. }
  31027. },
  31028. },
  31029. [
  31030. {
  31031. name: "Normal",
  31032. height: math.unit(5 + 9 / 12, "feet"),
  31033. default: true
  31034. },
  31035. {
  31036. name: "Big",
  31037. height: math.unit(50, "feet")
  31038. },
  31039. {
  31040. name: "Macro",
  31041. height: math.unit(100, "feet")
  31042. },
  31043. {
  31044. name: "Macro+",
  31045. height: math.unit(500, "feet")
  31046. },
  31047. {
  31048. name: "Macro++",
  31049. height: math.unit(1000, "feet")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(6, "feet"),
  31058. weight: math.unit(150, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/kaunan/front.svg",
  31062. extra: 2890 / 2523,
  31063. bottom: 49 / 2939
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(150, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  31077. {
  31078. dressed: {
  31079. height: math.unit(175, "cm"),
  31080. weight: math.unit(60, "kg"),
  31081. name: "Dressed",
  31082. image: {
  31083. source: "./media/characters/fei/dressed.svg",
  31084. extra: 1402/1278,
  31085. bottom: 27/1429
  31086. }
  31087. },
  31088. nude: {
  31089. height: math.unit(175, "cm"),
  31090. weight: math.unit(60, "kg"),
  31091. name: "Nude",
  31092. image: {
  31093. source: "./media/characters/fei/nude.svg",
  31094. extra: 1402/1278,
  31095. bottom: 27/1429
  31096. }
  31097. },
  31098. heels: {
  31099. height: math.unit(0.466, "feet"),
  31100. name: "Heels",
  31101. image: {
  31102. source: "./media/characters/fei/heels.svg",
  31103. extra: 156/152,
  31104. bottom: 28/184
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Mortal",
  31111. height: math.unit(175, "cm")
  31112. },
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(3500, "m")
  31116. },
  31117. {
  31118. name: "Stroll",
  31119. height: math.unit(18.4, "km"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Showoff",
  31124. height: math.unit(175, "km")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(7, "feet"),
  31133. weight: math.unit(1000, "kg"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/edrax/front.svg",
  31137. extra: 2838 / 2550,
  31138. bottom: 130 / 2968
  31139. }
  31140. },
  31141. },
  31142. [
  31143. {
  31144. name: "Small",
  31145. height: math.unit(7, "feet")
  31146. },
  31147. {
  31148. name: "Normal",
  31149. height: math.unit(1500, "meters")
  31150. },
  31151. {
  31152. name: "Mega",
  31153. height: math.unit(12000000, "km"),
  31154. default: true
  31155. },
  31156. {
  31157. name: "Megamacro",
  31158. height: math.unit(10600000, "lightyears")
  31159. },
  31160. {
  31161. name: "Hypermacro",
  31162. height: math.unit(256, "yottameters")
  31163. },
  31164. ]
  31165. ))
  31166. characterMakers.push(() => makeCharacter(
  31167. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31168. {
  31169. front: {
  31170. height: math.unit(10, "feet"),
  31171. weight: math.unit(750, "lb"),
  31172. name: "Front",
  31173. image: {
  31174. source: "./media/characters/clove/front.svg",
  31175. extra: 1918/1751,
  31176. bottom: 52/1970
  31177. }
  31178. },
  31179. back: {
  31180. height: math.unit(10, "feet"),
  31181. weight: math.unit(750, "lb"),
  31182. name: "Back",
  31183. image: {
  31184. source: "./media/characters/clove/back.svg",
  31185. extra: 1912/1747,
  31186. bottom: 50/1962
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(10, "feet"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31200. {
  31201. front: {
  31202. height: math.unit(4, "feet"),
  31203. weight: math.unit(50, "lb"),
  31204. name: "Front",
  31205. image: {
  31206. source: "./media/characters/alex-rabbit/front.svg",
  31207. extra: 507 / 458,
  31208. bottom: 18.5 / 527
  31209. }
  31210. },
  31211. back: {
  31212. height: math.unit(4, "feet"),
  31213. weight: math.unit(50, "lb"),
  31214. name: "Back",
  31215. image: {
  31216. source: "./media/characters/alex-rabbit/back.svg",
  31217. extra: 502 / 460,
  31218. bottom: 18.9 / 521
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(4, "feet"),
  31226. default: true
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(1 + 3 / 12, "feet"),
  31235. weight: math.unit(80, "lb"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/zander-rose/front.svg",
  31239. extra: 916 / 797,
  31240. bottom: 17 / 933
  31241. }
  31242. },
  31243. back: {
  31244. height: math.unit(1 + 3 / 12, "feet"),
  31245. weight: math.unit(80, "lb"),
  31246. name: "Back",
  31247. image: {
  31248. source: "./media/characters/zander-rose/back.svg",
  31249. extra: 903 / 779,
  31250. bottom: 31 / 934
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(1 + 3 / 12, "feet"),
  31258. default: true
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31264. {
  31265. anthro: {
  31266. height: math.unit(6, "feet"),
  31267. weight: math.unit(150, "lb"),
  31268. name: "Anthro",
  31269. image: {
  31270. source: "./media/characters/razz/anthro.svg",
  31271. extra: 1437 / 1343,
  31272. bottom: 48 / 1485
  31273. }
  31274. },
  31275. feral: {
  31276. height: math.unit(6, "feet"),
  31277. weight: math.unit(150, "lb"),
  31278. name: "Feral",
  31279. image: {
  31280. source: "./media/characters/razz/feral.svg",
  31281. extra: 2569 / 1385,
  31282. bottom: 95 / 2664
  31283. }
  31284. },
  31285. },
  31286. [
  31287. {
  31288. name: "Normal",
  31289. height: math.unit(6, "feet"),
  31290. default: true
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31296. {
  31297. front: {
  31298. height: math.unit(9 + 4 / 12, "feet"),
  31299. weight: math.unit(500, "lb"),
  31300. name: "Front",
  31301. image: {
  31302. source: "./media/characters/morrigan/front.svg",
  31303. extra: 2707 / 2579,
  31304. bottom: 156 / 2863
  31305. }
  31306. },
  31307. },
  31308. [
  31309. {
  31310. name: "Normal",
  31311. height: math.unit(9 + 4 / 12, "feet"),
  31312. default: true
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(5, "stories"),
  31321. weight: math.unit(4000, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/jenene/front.svg",
  31325. extra: 1780 / 1710,
  31326. bottom: 57 / 1837
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(5, "stories"),
  31334. default: true
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31340. {
  31341. taurSfw: {
  31342. height: math.unit(10, "meters"),
  31343. weight: math.unit(17500, "kg"),
  31344. name: "Taur",
  31345. image: {
  31346. source: "./media/characters/faey/taur-sfw.svg",
  31347. extra: 1200 / 968,
  31348. bottom: 41 / 1241
  31349. }
  31350. },
  31351. chestmaw: {
  31352. height: math.unit(2.01, "meters"),
  31353. name: "Chestmaw",
  31354. image: {
  31355. source: "./media/characters/faey/chestmaw.svg"
  31356. }
  31357. },
  31358. foot: {
  31359. height: math.unit(2.43, "meters"),
  31360. name: "Foot",
  31361. image: {
  31362. source: "./media/characters/faey/foot.svg"
  31363. }
  31364. },
  31365. jaws: {
  31366. height: math.unit(1.66, "meters"),
  31367. name: "Jaws",
  31368. image: {
  31369. source: "./media/characters/faey/jaws.svg"
  31370. }
  31371. },
  31372. tongues: {
  31373. height: math.unit(2.01, "meters"),
  31374. name: "Tongues",
  31375. image: {
  31376. source: "./media/characters/faey/tongues.svg"
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Small",
  31383. height: math.unit(10, "meters"),
  31384. default: true
  31385. },
  31386. {
  31387. name: "Big",
  31388. height: math.unit(500000, "km")
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(7, "feet"),
  31397. weight: math.unit(275, "lb"),
  31398. name: "Front",
  31399. image: {
  31400. source: "./media/characters/roku/front.svg",
  31401. extra: 903 / 878,
  31402. bottom: 37 / 940
  31403. }
  31404. },
  31405. },
  31406. [
  31407. {
  31408. name: "Normal",
  31409. height: math.unit(7, "feet"),
  31410. default: true
  31411. },
  31412. {
  31413. name: "Macro",
  31414. height: math.unit(500, "feet")
  31415. },
  31416. {
  31417. name: "Megamacro",
  31418. height: math.unit(200, "miles")
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31424. {
  31425. front: {
  31426. height: math.unit(6 + 2 / 12, "feet"),
  31427. weight: math.unit(150, "lb"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/lira/front.svg",
  31431. extra: 1727 / 1605,
  31432. bottom: 26 / 1753
  31433. }
  31434. },
  31435. back: {
  31436. height: math.unit(6 + 2 / 12, "feet"),
  31437. weight: math.unit(150, "lb"),
  31438. name: "Back",
  31439. image: {
  31440. source: "./media/characters/lira/back.svg",
  31441. extra: 1713/1621,
  31442. bottom: 20/1733
  31443. }
  31444. },
  31445. hand: {
  31446. height: math.unit(0.75, "feet"),
  31447. name: "Hand",
  31448. image: {
  31449. source: "./media/characters/lira/hand.svg"
  31450. }
  31451. },
  31452. maw: {
  31453. height: math.unit(0.65, "feet"),
  31454. name: "Maw",
  31455. image: {
  31456. source: "./media/characters/lira/maw.svg"
  31457. }
  31458. },
  31459. pawDigi: {
  31460. height: math.unit(1.6, "feet"),
  31461. name: "Paw Digi",
  31462. image: {
  31463. source: "./media/characters/lira/paw-digi.svg"
  31464. }
  31465. },
  31466. pawPlanti: {
  31467. height: math.unit(1.4, "feet"),
  31468. name: "Paw Planti",
  31469. image: {
  31470. source: "./media/characters/lira/paw-planti.svg"
  31471. }
  31472. },
  31473. },
  31474. [
  31475. {
  31476. name: "Normal",
  31477. height: math.unit(6 + 2 / 12, "feet"),
  31478. default: true
  31479. },
  31480. {
  31481. name: "Macro",
  31482. height: math.unit(100, "feet")
  31483. },
  31484. {
  31485. name: "Macro²",
  31486. height: math.unit(1600, "feet")
  31487. },
  31488. {
  31489. name: "Planetary",
  31490. height: math.unit(20, "earths")
  31491. },
  31492. ]
  31493. ))
  31494. characterMakers.push(() => makeCharacter(
  31495. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31496. {
  31497. front: {
  31498. height: math.unit(6, "feet"),
  31499. weight: math.unit(150, "lb"),
  31500. name: "Front",
  31501. image: {
  31502. source: "./media/characters/hadjet/front.svg",
  31503. extra: 1480 / 1346,
  31504. bottom: 26 / 1506
  31505. }
  31506. },
  31507. frontNsfw: {
  31508. height: math.unit(6, "feet"),
  31509. weight: math.unit(150, "lb"),
  31510. name: "Front (NSFW)",
  31511. image: {
  31512. source: "./media/characters/hadjet/front-nsfw.svg",
  31513. extra: 1440 / 1358,
  31514. bottom: 52 / 1492
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Macro",
  31521. height: math.unit(10, "stories"),
  31522. default: true
  31523. },
  31524. {
  31525. name: "Megamacro",
  31526. height: math.unit(1.5, "miles")
  31527. },
  31528. {
  31529. name: "Megamacro+",
  31530. height: math.unit(5, "miles")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31536. {
  31537. side: {
  31538. height: math.unit(106, "feet"),
  31539. weight: math.unit(500, "tonnes"),
  31540. name: "Side",
  31541. image: {
  31542. source: "./media/characters/kodran/side.svg",
  31543. extra: 553 / 480,
  31544. bottom: 33 / 586
  31545. }
  31546. },
  31547. front: {
  31548. height: math.unit(132, "feet"),
  31549. weight: math.unit(500, "tonnes"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/kodran/front.svg",
  31553. extra: 667 / 643,
  31554. bottom: 42 / 709
  31555. }
  31556. },
  31557. flying: {
  31558. height: math.unit(350, "feet"),
  31559. weight: math.unit(500, "tonnes"),
  31560. name: "Flying",
  31561. image: {
  31562. source: "./media/characters/kodran/flying.svg"
  31563. }
  31564. },
  31565. foot: {
  31566. height: math.unit(33, "feet"),
  31567. name: "Foot",
  31568. image: {
  31569. source: "./media/characters/kodran/foot.svg"
  31570. }
  31571. },
  31572. footFront: {
  31573. height: math.unit(19, "feet"),
  31574. name: "Foot (Front)",
  31575. image: {
  31576. source: "./media/characters/kodran/foot-front.svg",
  31577. extra: 261 / 261,
  31578. bottom: 91 / 352
  31579. }
  31580. },
  31581. headFront: {
  31582. height: math.unit(53, "feet"),
  31583. name: "Head (Front)",
  31584. image: {
  31585. source: "./media/characters/kodran/head-front.svg"
  31586. }
  31587. },
  31588. headSide: {
  31589. height: math.unit(65, "feet"),
  31590. name: "Head (Side)",
  31591. image: {
  31592. source: "./media/characters/kodran/head-side.svg"
  31593. }
  31594. },
  31595. throat: {
  31596. height: math.unit(79, "feet"),
  31597. name: "Throat",
  31598. image: {
  31599. source: "./media/characters/kodran/throat.svg"
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Large",
  31606. height: math.unit(106, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31613. {
  31614. side: {
  31615. height: math.unit(11, "feet"),
  31616. weight: math.unit(150, "lb"),
  31617. name: "Side",
  31618. image: {
  31619. source: "./media/characters/pyxaron/side.svg",
  31620. extra: 305 / 195,
  31621. bottom: 17 / 322
  31622. }
  31623. },
  31624. },
  31625. [
  31626. {
  31627. name: "Normal",
  31628. height: math.unit(11, "feet"),
  31629. default: true
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31635. {
  31636. front: {
  31637. height: math.unit(6, "feet"),
  31638. weight: math.unit(150, "lb"),
  31639. name: "Front",
  31640. image: {
  31641. source: "./media/characters/meep/front.svg",
  31642. extra: 88 / 80,
  31643. bottom: 6 / 94
  31644. }
  31645. },
  31646. },
  31647. [
  31648. {
  31649. name: "Fun Sized",
  31650. height: math.unit(2, "inches"),
  31651. default: true
  31652. },
  31653. {
  31654. name: "Friend Sized",
  31655. height: math.unit(8, "inches")
  31656. },
  31657. ]
  31658. ))
  31659. characterMakers.push(() => makeCharacter(
  31660. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31661. {
  31662. front: {
  31663. height: math.unit(15, "feet"),
  31664. weight: math.unit(2500, "lb"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/holly-rabbit/front.svg",
  31668. extra: 1433 / 1233,
  31669. bottom: 125 / 1558
  31670. }
  31671. },
  31672. dick: {
  31673. height: math.unit(4.6, "feet"),
  31674. name: "Dick",
  31675. image: {
  31676. source: "./media/characters/holly-rabbit/dick.svg"
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(15, "feet"),
  31684. default: true
  31685. },
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(250, "feet")
  31689. },
  31690. {
  31691. name: "Macro+",
  31692. height: math.unit(2500, "feet")
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31698. {
  31699. front: {
  31700. height: math.unit(3.02, "meters"),
  31701. weight: math.unit(500, "kg"),
  31702. name: "Front",
  31703. image: {
  31704. source: "./media/characters/drena/front.svg",
  31705. extra: 282 / 243,
  31706. bottom: 8 / 290
  31707. }
  31708. },
  31709. side: {
  31710. height: math.unit(3.02, "meters"),
  31711. weight: math.unit(500, "kg"),
  31712. name: "Side",
  31713. image: {
  31714. source: "./media/characters/drena/side.svg",
  31715. extra: 280 / 245,
  31716. bottom: 10 / 290
  31717. }
  31718. },
  31719. back: {
  31720. height: math.unit(3.02, "meters"),
  31721. weight: math.unit(500, "kg"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/drena/back.svg",
  31725. extra: 278 / 243,
  31726. bottom: 2 / 280
  31727. }
  31728. },
  31729. foot: {
  31730. height: math.unit(0.75, "meters"),
  31731. name: "Foot",
  31732. image: {
  31733. source: "./media/characters/drena/foot.svg"
  31734. }
  31735. },
  31736. maw: {
  31737. height: math.unit(0.82, "meters"),
  31738. name: "Maw",
  31739. image: {
  31740. source: "./media/characters/drena/maw.svg"
  31741. }
  31742. },
  31743. eating: {
  31744. height: math.unit(0.75, "meters"),
  31745. name: "Eating",
  31746. image: {
  31747. source: "./media/characters/drena/eating.svg"
  31748. }
  31749. },
  31750. rump: {
  31751. height: math.unit(0.93, "meters"),
  31752. name: "Rump",
  31753. image: {
  31754. source: "./media/characters/drena/rump.svg"
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Normal",
  31761. height: math.unit(3.02, "meters"),
  31762. default: true
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31768. {
  31769. front: {
  31770. height: math.unit(6 + 4 / 12, "feet"),
  31771. weight: math.unit(250, "lb"),
  31772. name: "Front",
  31773. image: {
  31774. source: "./media/characters/remmyzilla/front.svg",
  31775. extra: 4033 / 3588,
  31776. bottom: 123 / 4156
  31777. }
  31778. },
  31779. back: {
  31780. height: math.unit(6 + 4 / 12, "feet"),
  31781. weight: math.unit(250, "lb"),
  31782. name: "Back",
  31783. image: {
  31784. source: "./media/characters/remmyzilla/back.svg",
  31785. extra: 1696/1602,
  31786. bottom: 63/1759
  31787. }
  31788. },
  31789. paw: {
  31790. height: math.unit(1.73, "feet"),
  31791. name: "Paw",
  31792. image: {
  31793. source: "./media/characters/remmyzilla/paw.svg"
  31794. },
  31795. extraAttributes: {
  31796. "toeSize": {
  31797. name: "Toe Size",
  31798. power: 2,
  31799. type: "area",
  31800. base: math.unit(0.0035, "m^2")
  31801. },
  31802. "padSize": {
  31803. name: "Pad Size",
  31804. power: 2,
  31805. type: "area",
  31806. base: math.unit(0.015, "m^2")
  31807. },
  31808. "pawsize": {
  31809. name: "Paw Size",
  31810. power: 2,
  31811. type: "area",
  31812. base: math.unit(0.072, "m^2")
  31813. },
  31814. }
  31815. },
  31816. maw: {
  31817. height: math.unit(1.73, "feet"),
  31818. name: "Maw",
  31819. image: {
  31820. source: "./media/characters/remmyzilla/maw.svg"
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Normal",
  31827. height: math.unit(6 + 4 / 12, "feet")
  31828. },
  31829. {
  31830. name: "Minimacro",
  31831. height: math.unit(12 + 8 / 12, "feet")
  31832. },
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(640, "feet"),
  31836. default: true
  31837. },
  31838. {
  31839. name: "Megamacro",
  31840. height: math.unit(6400, "feet")
  31841. },
  31842. {
  31843. name: "Gigamacro",
  31844. height: math.unit(64000, "miles")
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(2.5, "meters"),
  31853. weight: math.unit(300, "lb"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/lawrence/front.svg",
  31857. extra: 357 / 335,
  31858. bottom: 30 / 387
  31859. }
  31860. },
  31861. back: {
  31862. height: math.unit(2.5, "meters"),
  31863. weight: math.unit(300, "lb"),
  31864. name: "Back",
  31865. image: {
  31866. source: "./media/characters/lawrence/back.svg",
  31867. extra: 357 / 338,
  31868. bottom: 16 / 373
  31869. }
  31870. },
  31871. head: {
  31872. height: math.unit(0.9, "meter"),
  31873. name: "Head",
  31874. image: {
  31875. source: "./media/characters/lawrence/head.svg"
  31876. }
  31877. },
  31878. maw: {
  31879. height: math.unit(0.7, "meter"),
  31880. name: "Maw",
  31881. image: {
  31882. source: "./media/characters/lawrence/maw.svg"
  31883. }
  31884. },
  31885. footBottom: {
  31886. height: math.unit(0.5, "meter"),
  31887. name: "Foot (Bottom)",
  31888. image: {
  31889. source: "./media/characters/lawrence/foot-bottom.svg"
  31890. }
  31891. },
  31892. footTop: {
  31893. height: math.unit(0.5, "meter"),
  31894. name: "Foot (Top)",
  31895. image: {
  31896. source: "./media/characters/lawrence/foot-top.svg"
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(2.5, "meters"),
  31904. default: true
  31905. },
  31906. {
  31907. name: "Macro",
  31908. height: math.unit(95, "meters")
  31909. },
  31910. {
  31911. name: "Megamacro",
  31912. height: math.unit(150, "km")
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31918. {
  31919. front: {
  31920. height: math.unit(4.2, "meters"),
  31921. preyCapacity: math.unit(50, "m^3"),
  31922. weight: math.unit(30, "tonnes"),
  31923. name: "Front",
  31924. image: {
  31925. source: "./media/characters/sydney/front.svg",
  31926. extra: 1177/1129,
  31927. bottom: 197/1374
  31928. },
  31929. extraAttributes: {
  31930. "length": {
  31931. name: "Length",
  31932. power: 1,
  31933. type: "length",
  31934. base: math.unit(21, "meters")
  31935. },
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(4.2, "meters"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31949. {
  31950. back: {
  31951. height: math.unit(201, "feet"),
  31952. name: "Back",
  31953. image: {
  31954. source: "./media/characters/jessica/back.svg",
  31955. extra: 273 / 259,
  31956. bottom: 7 / 280
  31957. }
  31958. },
  31959. },
  31960. [
  31961. {
  31962. name: "Normal",
  31963. height: math.unit(201, "feet"),
  31964. default: true
  31965. },
  31966. {
  31967. name: "Megamacro",
  31968. height: math.unit(8, "miles")
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31974. {
  31975. side: {
  31976. height: math.unit(5.6, "m"),
  31977. weight: math.unit(8000, "kg"),
  31978. name: "Side",
  31979. image: {
  31980. source: "./media/characters/victoria/side.svg",
  31981. extra: 1542/1229,
  31982. bottom: 124/1666
  31983. }
  31984. },
  31985. maw: {
  31986. height: math.unit(7.14, "feet"),
  31987. name: "Maw",
  31988. image: {
  31989. source: "./media/characters/victoria/maw.svg"
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(5.6, "m"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  32003. {
  32004. front: {
  32005. height: math.unit(5 + 6 / 12, "feet"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/cat/cat-front.svg",
  32009. extra: 1422/1262,
  32010. bottom: 61/1483
  32011. },
  32012. form: "cat",
  32013. default: true
  32014. },
  32015. back: {
  32016. height: math.unit(5 + 6 / 12, "feet"),
  32017. name: "Back",
  32018. image: {
  32019. source: "./media/characters/cat/cat-back.svg",
  32020. extra: 1466/1301,
  32021. bottom: 19/1485
  32022. },
  32023. form: "cat"
  32024. },
  32025. taur: {
  32026. height: math.unit(7, "feet"),
  32027. name: "Side",
  32028. image: {
  32029. source: "./media/characters/cat/taur-side.svg",
  32030. extra: 1389/1233,
  32031. bottom: 83/1472
  32032. },
  32033. form: "taur",
  32034. default: true
  32035. },
  32036. lucarioFront: {
  32037. height: math.unit(4, "feet"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/cat/lucario-front.svg",
  32041. extra: 1149/1019,
  32042. bottom: 84/1233
  32043. },
  32044. form: "lucario",
  32045. default: true
  32046. },
  32047. lucarioBack: {
  32048. height: math.unit(4, "feet"),
  32049. name: "Back",
  32050. image: {
  32051. source: "./media/characters/cat/lucario-back.svg",
  32052. extra: 1190/1059,
  32053. bottom: 33/1223
  32054. },
  32055. form: "lucario"
  32056. },
  32057. riolu_front: {
  32058. height: math.unit(2 + 4/12, "feet"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/cat/riolu-front.svg",
  32062. extra: 1104/956,
  32063. bottom: 70/1174
  32064. },
  32065. form: "riolu",
  32066. default: true
  32067. },
  32068. nickit: {
  32069. height: math.unit(2, "feet"),
  32070. name: "Side",
  32071. image: {
  32072. source: "./media/characters/cat/nickit-side.svg",
  32073. extra: 1087/852,
  32074. bottom: 67/1154
  32075. },
  32076. form: "nickit",
  32077. default: true
  32078. },
  32079. lopunnyFront: {
  32080. height: math.unit(5, "feet"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/cat/lopunny-front.svg",
  32084. extra: 1217/1078,
  32085. bottom: 23/1240
  32086. },
  32087. form: "lopunny",
  32088. default: true
  32089. },
  32090. lopunnyBack: {
  32091. height: math.unit(5, "feet"),
  32092. name: "Back",
  32093. image: {
  32094. source: "./media/characters/cat/lopunny-back.svg",
  32095. extra: 1205/1057,
  32096. bottom: 33/1238
  32097. },
  32098. form: "lopunny"
  32099. },
  32100. dog_front: {
  32101. height: math.unit(5 + 9/12, "feet"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/cat/dog-front.svg",
  32105. extra: 1403/1309,
  32106. bottom: 31/1434
  32107. },
  32108. form: "dog",
  32109. default: true
  32110. },
  32111. dog_back: {
  32112. height: math.unit(5 + 9/12, "feet"),
  32113. name: "Back",
  32114. image: {
  32115. source: "./media/characters/cat/dog-back.svg",
  32116. extra: 1393/1297,
  32117. bottom: 38/1431
  32118. },
  32119. form: "dog",
  32120. },
  32121. pikachu_front: {
  32122. height: math.unit(2.64, "feet"),
  32123. name: "Front",
  32124. image: {
  32125. source: "./media/characters/cat/pikachu-front.svg",
  32126. extra: 1224/958,
  32127. bottom: 34/1258
  32128. },
  32129. form: "pikachu",
  32130. default: true
  32131. },
  32132. pikachu_back: {
  32133. height: math.unit(2.64, "feet"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/cat/pikachu-back.svg",
  32137. extra: 1228/958,
  32138. bottom: 16/1244
  32139. },
  32140. form: "pikachu",
  32141. },
  32142. gigachuFront: {
  32143. height: math.unit(75, "feet"),
  32144. name: "Front",
  32145. image: {
  32146. source: "./media/characters/cat/gigachu-front.svg",
  32147. extra: 1239/1027,
  32148. bottom: 32/1271
  32149. },
  32150. form: "gigachu",
  32151. default: true
  32152. },
  32153. gigachuBack: {
  32154. height: math.unit(75, "feet"),
  32155. name: "Back",
  32156. image: {
  32157. source: "./media/characters/cat/gigachu-back.svg",
  32158. extra: 1229/1030,
  32159. bottom: 9/1238
  32160. },
  32161. form: "gigachu"
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Really small",
  32167. height: math.unit(1, "nm"),
  32168. allForms: true
  32169. },
  32170. {
  32171. name: "Micro",
  32172. height: math.unit(5, "inches"),
  32173. allForms: true
  32174. },
  32175. {
  32176. name: "Normal",
  32177. height: math.unit(5 + 6 / 12, "feet"),
  32178. default: true,
  32179. form: "cat"
  32180. },
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(7, "feet"),
  32184. default: true,
  32185. form: "taur"
  32186. },
  32187. {
  32188. name: "Normal",
  32189. height: math.unit(4, "feet"),
  32190. default: true,
  32191. form: "lucario"
  32192. },
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(2, "feet"),
  32196. default: true,
  32197. form: "nickit"
  32198. },
  32199. {
  32200. name: "Normal",
  32201. height: math.unit(5, "feet"),
  32202. default: true,
  32203. form: "lopunny"
  32204. },
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(2 + 4/12, "feet"),
  32208. default: true,
  32209. form: "riolu"
  32210. },
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(5 + 6 / 12, "feet"),
  32214. default: true,
  32215. form: "dog"
  32216. },
  32217. {
  32218. name: "Macro",
  32219. height: math.unit(50, "feet"),
  32220. allForms: true
  32221. },
  32222. {
  32223. name: "Normal",
  32224. height: math.unit(2.64, "feet"),
  32225. default: true,
  32226. form: "pikachu"
  32227. },
  32228. {
  32229. name: "Dynamax",
  32230. height: math.unit(75, "feet"),
  32231. form: "gigachu",
  32232. default: true
  32233. },
  32234. {
  32235. name: "Macro+",
  32236. height: math.unit(150, "feet"),
  32237. allForms: true
  32238. },
  32239. {
  32240. name: "Megamacro",
  32241. height: math.unit(100, "miles"),
  32242. allForms: true
  32243. },
  32244. ],
  32245. {
  32246. "cat": {
  32247. name: "Cat",
  32248. default: true
  32249. },
  32250. "taur": {
  32251. name: "Taur",
  32252. },
  32253. "lucario": {
  32254. name: "Lucario",
  32255. },
  32256. "riolu": {
  32257. name: "Riolu",
  32258. },
  32259. "nickit": {
  32260. name: "Nickit",
  32261. },
  32262. "lopunny": {
  32263. name: "Lopunny",
  32264. },
  32265. "dog": {
  32266. name: "Dog",
  32267. },
  32268. "pikachu": {
  32269. name: "Pikachu",
  32270. },
  32271. "gigachu": {
  32272. name: "Gigachu",
  32273. ignoreAllFormSizes: true
  32274. }
  32275. }
  32276. ))
  32277. characterMakers.push(() => makeCharacter(
  32278. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32279. {
  32280. front: {
  32281. height: math.unit(63.4, "meters"),
  32282. weight: math.unit(3.28349e+6, "kilograms"),
  32283. name: "Front",
  32284. image: {
  32285. source: "./media/characters/kirina-violet/front.svg",
  32286. extra: 2812 / 2725,
  32287. bottom: 0 / 2812
  32288. }
  32289. },
  32290. back: {
  32291. height: math.unit(63.4, "meters"),
  32292. weight: math.unit(3.28349e+6, "kilograms"),
  32293. name: "Back",
  32294. image: {
  32295. source: "./media/characters/kirina-violet/back.svg",
  32296. extra: 2812 / 2725,
  32297. bottom: 0 / 2812
  32298. }
  32299. },
  32300. mouth: {
  32301. height: math.unit(4.35, "meters"),
  32302. name: "Mouth",
  32303. image: {
  32304. source: "./media/characters/kirina-violet/mouth.svg"
  32305. }
  32306. },
  32307. paw: {
  32308. height: math.unit(5.6, "meters"),
  32309. name: "Paw",
  32310. image: {
  32311. source: "./media/characters/kirina-violet/paw.svg"
  32312. }
  32313. },
  32314. tail: {
  32315. height: math.unit(18, "meters"),
  32316. name: "Tail",
  32317. image: {
  32318. source: "./media/characters/kirina-violet/tail.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Macro",
  32325. height: math.unit(63.4, "meters"),
  32326. default: true
  32327. },
  32328. ]
  32329. ))
  32330. characterMakers.push(() => makeCharacter(
  32331. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32332. {
  32333. front: {
  32334. height: math.unit(6, "feet"),
  32335. weight: math.unit(150, "lb"),
  32336. name: "Front",
  32337. image: {
  32338. source: "./media/characters/sfaiyan/front.svg",
  32339. extra: 999 / 978,
  32340. bottom: 5 / 1004
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(1.82, "meters")
  32348. },
  32349. {
  32350. name: "Giant",
  32351. height: math.unit(2.27, "km"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32358. {
  32359. front: {
  32360. height: math.unit(179, "cm"),
  32361. weight: math.unit(100, "kg"),
  32362. name: "Front",
  32363. image: {
  32364. source: "./media/characters/raunehkeli/front.svg",
  32365. extra: 1934 / 1926,
  32366. bottom: 0 / 1934
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(179, "cm")
  32374. },
  32375. {
  32376. name: "Maximum",
  32377. height: math.unit(575, "meters"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32384. {
  32385. dressed: {
  32386. height: math.unit(6 + 2/12, "feet"),
  32387. weight: math.unit(150, "lb"),
  32388. name: "Dressed",
  32389. image: {
  32390. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32391. extra: 2620/2496,
  32392. bottom: 66/2686
  32393. }
  32394. },
  32395. nude: {
  32396. height: math.unit(6 + 2/12, "feet"),
  32397. weight: math.unit(150, "lb"),
  32398. name: "Nude",
  32399. image: {
  32400. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32401. extra: 2620/2496,
  32402. bottom: 66/2686
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Normal",
  32409. height: math.unit(6 + 2 / 12, "feet")
  32410. },
  32411. {
  32412. name: "Max Height",
  32413. height: math.unit(1181, "feet"),
  32414. default: true
  32415. },
  32416. ]
  32417. ))
  32418. characterMakers.push(() => makeCharacter(
  32419. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32420. {
  32421. front: {
  32422. height: math.unit(5 + 6 / 12, "feet"),
  32423. weight: math.unit(108, "lb"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/lilith-zott/front.svg",
  32427. extra: 2415/2133,
  32428. bottom: 193/2608
  32429. }
  32430. },
  32431. },
  32432. [
  32433. {
  32434. name: "Base Height",
  32435. height: math.unit(5 + 6 / 12, "feet")
  32436. },
  32437. {
  32438. name: "Preferred Height",
  32439. height: math.unit(200, "feet")
  32440. },
  32441. {
  32442. name: "Max Height",
  32443. height: math.unit(1030, "feet"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32450. {
  32451. super: {
  32452. height: math.unit(6 + 2/12, "feet"),
  32453. weight: math.unit(150, "lb"),
  32454. name: "Super",
  32455. image: {
  32456. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32457. extra: 2555/2387,
  32458. bottom: 50/2605
  32459. }
  32460. },
  32461. casual: {
  32462. height: math.unit(6 + 2/12, "feet"),
  32463. weight: math.unit(150, "lb"),
  32464. name: "Casual",
  32465. image: {
  32466. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32467. extra: 2555/2387,
  32468. bottom: 50/2605
  32469. }
  32470. },
  32471. hand: {
  32472. height: math.unit(1.08, "feet"),
  32473. name: "Hand",
  32474. image: {
  32475. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32476. }
  32477. },
  32478. paw: {
  32479. height: math.unit(1.33, "feet"),
  32480. name: "Paw",
  32481. image: {
  32482. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Normal",
  32489. height: math.unit(6 + 2/12, "feet")
  32490. },
  32491. {
  32492. name: "Preferred Height",
  32493. height: math.unit(220, "feet")
  32494. },
  32495. {
  32496. name: "Max Height",
  32497. height: math.unit(1100, "feet"),
  32498. default: true
  32499. },
  32500. ]
  32501. ))
  32502. characterMakers.push(() => makeCharacter(
  32503. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32504. {
  32505. front: {
  32506. height: math.unit(100, "miles"),
  32507. name: "Front",
  32508. image: {
  32509. source: "./media/characters/sona/front.svg",
  32510. extra: 2433 / 2201,
  32511. bottom: 53 / 2486
  32512. }
  32513. },
  32514. foot: {
  32515. height: math.unit(16.1, "miles"),
  32516. name: "Foot",
  32517. image: {
  32518. source: "./media/characters/sona/foot.svg"
  32519. }
  32520. },
  32521. },
  32522. [
  32523. {
  32524. name: "Macro",
  32525. height: math.unit(100, "miles"),
  32526. default: true
  32527. },
  32528. ]
  32529. ))
  32530. characterMakers.push(() => makeCharacter(
  32531. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32532. {
  32533. front: {
  32534. height: math.unit(6, "feet"),
  32535. weight: math.unit(150, "lb"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/bailey/front.svg",
  32539. extra: 1778 / 1724,
  32540. bottom: 30 / 1808
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Micro",
  32547. height: math.unit(4, "inches")
  32548. },
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(5 + 5 / 12, "feet"),
  32552. default: true
  32553. },
  32554. {
  32555. name: "Macro",
  32556. height: math.unit(250, "feet")
  32557. },
  32558. {
  32559. name: "Megamacro",
  32560. height: math.unit(100, "miles")
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32566. {
  32567. front: {
  32568. height: math.unit(5 + 2 / 12, "feet"),
  32569. weight: math.unit(120, "lb"),
  32570. name: "Front",
  32571. image: {
  32572. source: "./media/characters/snaps/front.svg",
  32573. extra: 2370 / 2177,
  32574. bottom: 48 / 2418
  32575. }
  32576. },
  32577. back: {
  32578. height: math.unit(5 + 2 / 12, "feet"),
  32579. weight: math.unit(120, "lb"),
  32580. name: "Back",
  32581. image: {
  32582. source: "./media/characters/snaps/back.svg",
  32583. extra: 2408 / 2258,
  32584. bottom: 15 / 2423
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Micro",
  32591. height: math.unit(9, "inches")
  32592. },
  32593. {
  32594. name: "Normal",
  32595. height: math.unit(5 + 2 / 12, "feet"),
  32596. default: true
  32597. },
  32598. {
  32599. name: "Mini Macro",
  32600. height: math.unit(10, "feet")
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32606. {
  32607. front: {
  32608. height: math.unit(1.8, "meters"),
  32609. weight: math.unit(85, "kg"),
  32610. name: "Front",
  32611. image: {
  32612. source: "./media/characters/azteck/front.svg",
  32613. extra: 2815 / 2625,
  32614. bottom: 89 / 2904
  32615. }
  32616. },
  32617. back: {
  32618. height: math.unit(1.8, "meters"),
  32619. weight: math.unit(85, "kg"),
  32620. name: "Back",
  32621. image: {
  32622. source: "./media/characters/azteck/back.svg",
  32623. extra: 2856 / 2648,
  32624. bottom: 85 / 2941
  32625. }
  32626. },
  32627. frontDressed: {
  32628. height: math.unit(1.8, "meters"),
  32629. weight: math.unit(85, "kg"),
  32630. name: "Front (Dressed)",
  32631. image: {
  32632. source: "./media/characters/azteck/front-dressed.svg",
  32633. extra: 2147 / 2003,
  32634. bottom: 68 / 2215
  32635. }
  32636. },
  32637. head: {
  32638. height: math.unit(0.47, "meters"),
  32639. weight: math.unit(85, "kg"),
  32640. name: "Head",
  32641. image: {
  32642. source: "./media/characters/azteck/head.svg"
  32643. }
  32644. },
  32645. },
  32646. [
  32647. {
  32648. name: "Bite sized",
  32649. height: math.unit(16, "cm")
  32650. },
  32651. {
  32652. name: "Normal",
  32653. height: math.unit(1.8, "meters"),
  32654. default: true
  32655. },
  32656. ]
  32657. ))
  32658. characterMakers.push(() => makeCharacter(
  32659. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32660. {
  32661. front: {
  32662. height: math.unit(6, "feet"),
  32663. weight: math.unit(150, "lb"),
  32664. name: "Front",
  32665. image: {
  32666. source: "./media/characters/pidge/front.svg",
  32667. extra: 1936/1820,
  32668. bottom: 0/1936
  32669. }
  32670. },
  32671. back: {
  32672. height: math.unit(6, "feet"),
  32673. weight: math.unit(150, "lb"),
  32674. name: "Back",
  32675. image: {
  32676. source: "./media/characters/pidge/back.svg",
  32677. extra: 1938/1843,
  32678. bottom: 0/1938
  32679. }
  32680. },
  32681. casual: {
  32682. height: math.unit(6, "feet"),
  32683. weight: math.unit(150, "lb"),
  32684. name: "Casual",
  32685. image: {
  32686. source: "./media/characters/pidge/casual.svg",
  32687. extra: 1936/1820,
  32688. bottom: 0/1936
  32689. }
  32690. },
  32691. tech: {
  32692. height: math.unit(6, "feet"),
  32693. weight: math.unit(150, "lb"),
  32694. name: "Tech",
  32695. image: {
  32696. source: "./media/characters/pidge/tech.svg",
  32697. extra: 1802/1682,
  32698. bottom: 0/1802
  32699. }
  32700. },
  32701. head: {
  32702. height: math.unit(1.61, "feet"),
  32703. name: "Head",
  32704. image: {
  32705. source: "./media/characters/pidge/head.svg"
  32706. }
  32707. },
  32708. collar: {
  32709. height: math.unit(0.82, "feet"),
  32710. name: "Collar",
  32711. image: {
  32712. source: "./media/characters/pidge/collar.svg"
  32713. }
  32714. },
  32715. },
  32716. [
  32717. {
  32718. name: "Macro",
  32719. height: math.unit(2, "mile"),
  32720. default: true
  32721. },
  32722. {
  32723. name: "PUPPY",
  32724. height: math.unit(20, "miles")
  32725. },
  32726. ]
  32727. ))
  32728. characterMakers.push(() => makeCharacter(
  32729. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32730. {
  32731. front: {
  32732. height: math.unit(6, "feet"),
  32733. weight: math.unit(150, "lb"),
  32734. name: "Front",
  32735. image: {
  32736. source: "./media/characters/en/front.svg",
  32737. extra: 1697 / 1563,
  32738. bottom: 103 / 1800
  32739. }
  32740. },
  32741. back: {
  32742. height: math.unit(6, "feet"),
  32743. weight: math.unit(150, "lb"),
  32744. name: "Back",
  32745. image: {
  32746. source: "./media/characters/en/back.svg",
  32747. extra: 1700 / 1570,
  32748. bottom: 51 / 1751
  32749. }
  32750. },
  32751. frontDressed: {
  32752. height: math.unit(6, "feet"),
  32753. weight: math.unit(150, "lb"),
  32754. name: "Front (Dressed)",
  32755. image: {
  32756. source: "./media/characters/en/front-dressed.svg",
  32757. extra: 1697 / 1563,
  32758. bottom: 103 / 1800
  32759. }
  32760. },
  32761. backDressed: {
  32762. height: math.unit(6, "feet"),
  32763. weight: math.unit(150, "lb"),
  32764. name: "Back (Dressed)",
  32765. image: {
  32766. source: "./media/characters/en/back-dressed.svg",
  32767. extra: 1700 / 1570,
  32768. bottom: 51 / 1751
  32769. }
  32770. },
  32771. },
  32772. [
  32773. {
  32774. name: "Macro",
  32775. height: math.unit(210, "feet"),
  32776. default: true
  32777. },
  32778. ]
  32779. ))
  32780. characterMakers.push(() => makeCharacter(
  32781. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32782. {
  32783. front: {
  32784. height: math.unit(6, "feet"),
  32785. weight: math.unit(150, "lb"),
  32786. name: "Front",
  32787. image: {
  32788. source: "./media/characters/haze-orris/front.svg",
  32789. extra: 3975 / 3525,
  32790. bottom: 137 / 4112
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Micro",
  32797. height: math.unit(150, "mm"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(6, "feet"),
  32807. weight: math.unit(150, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/casselene-yaro/front.svg",
  32811. extra: 4721 / 4541,
  32812. bottom: 82 / 4803
  32813. }
  32814. },
  32815. back: {
  32816. height: math.unit(6, "feet"),
  32817. weight: math.unit(150, "lb"),
  32818. name: "Back",
  32819. image: {
  32820. source: "./media/characters/casselene-yaro/back.svg",
  32821. extra: 4569 / 4377,
  32822. bottom: 69 / 4638
  32823. }
  32824. },
  32825. dressed: {
  32826. height: math.unit(6, "feet"),
  32827. weight: math.unit(150, "lb"),
  32828. name: "Dressed",
  32829. image: {
  32830. source: "./media/characters/casselene-yaro/dressed.svg",
  32831. extra: 4721 / 4541,
  32832. bottom: 82 / 4803
  32833. }
  32834. },
  32835. maw: {
  32836. height: math.unit(1, "feet"),
  32837. name: "Maw",
  32838. image: {
  32839. source: "./media/characters/casselene-yaro/maw.svg"
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Macro",
  32846. height: math.unit(190, "feet"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(10, "feet"),
  32856. weight: math.unit(15015, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/platine/front.svg",
  32860. extra: 1741/1650,
  32861. bottom: 84/1825
  32862. }
  32863. },
  32864. side: {
  32865. height: math.unit(10, "feet"),
  32866. weight: math.unit(15015, "lb"),
  32867. name: "Side",
  32868. image: {
  32869. source: "./media/characters/platine/side.svg",
  32870. extra: 1790/1705,
  32871. bottom: 29/1819
  32872. }
  32873. },
  32874. },
  32875. [
  32876. {
  32877. name: "Normal",
  32878. height: math.unit(10, "feet"),
  32879. default: true
  32880. },
  32881. {
  32882. name: "Macro",
  32883. height: math.unit(100, "feet")
  32884. },
  32885. {
  32886. name: "Megamacro",
  32887. height: math.unit(1000, "feet")
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32893. {
  32894. front: {
  32895. height: math.unit(15 + 5 / 12, "feet"),
  32896. weight: math.unit(4600, "lb"),
  32897. name: "Front",
  32898. image: {
  32899. source: "./media/characters/neapolitan-ananassa/front.svg",
  32900. extra: 2903 / 2736,
  32901. bottom: 0 / 2903
  32902. }
  32903. },
  32904. side: {
  32905. height: math.unit(15 + 5 / 12, "feet"),
  32906. weight: math.unit(4600, "lb"),
  32907. name: "Side",
  32908. image: {
  32909. source: "./media/characters/neapolitan-ananassa/side.svg",
  32910. extra: 2925 / 2719,
  32911. bottom: 0 / 2925
  32912. }
  32913. },
  32914. back: {
  32915. height: math.unit(15 + 5 / 12, "feet"),
  32916. weight: math.unit(4600, "lb"),
  32917. name: "Back",
  32918. image: {
  32919. source: "./media/characters/neapolitan-ananassa/back.svg",
  32920. extra: 2903 / 2736,
  32921. bottom: 0 / 2903
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(15 + 5 / 12, "feet"),
  32929. default: true
  32930. },
  32931. {
  32932. name: "Post-Millenium",
  32933. height: math.unit(35 + 5 / 12, "feet")
  32934. },
  32935. {
  32936. name: "Post-Era",
  32937. height: math.unit(450 + 5 / 12, "feet")
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(300, "meters"),
  32946. weight: math.unit(125000, "tonnes"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/pazuzu/front.svg",
  32950. extra: 877 / 794,
  32951. bottom: 47 / 924
  32952. }
  32953. },
  32954. },
  32955. [
  32956. {
  32957. name: "Macro",
  32958. height: math.unit(300, "meters"),
  32959. default: true
  32960. },
  32961. ]
  32962. ))
  32963. characterMakers.push(() => makeCharacter(
  32964. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32965. {
  32966. side: {
  32967. height: math.unit(10 + 7 / 12, "feet"),
  32968. weight: math.unit(2.5, "tons"),
  32969. name: "Side",
  32970. image: {
  32971. source: "./media/characters/aasha/side.svg",
  32972. extra: 1345 / 1245,
  32973. bottom: 111 / 1456
  32974. }
  32975. },
  32976. back: {
  32977. height: math.unit(10 + 7 / 12, "feet"),
  32978. weight: math.unit(2.5, "tons"),
  32979. name: "Back",
  32980. image: {
  32981. source: "./media/characters/aasha/back.svg",
  32982. extra: 1133 / 1057,
  32983. bottom: 257 / 1390
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(10 + 7 / 12, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32997. {
  32998. front: {
  32999. height: math.unit(6 + 3 / 12, "feet"),
  33000. name: "Front",
  33001. image: {
  33002. source: "./media/characters/nevan/front.svg",
  33003. extra: 704 / 704,
  33004. bottom: 28 / 732
  33005. }
  33006. },
  33007. back: {
  33008. height: math.unit(6 + 3 / 12, "feet"),
  33009. name: "Back",
  33010. image: {
  33011. source: "./media/characters/nevan/back.svg",
  33012. extra: 714 / 714,
  33013. bottom: 21 / 735
  33014. }
  33015. },
  33016. frontFlaccid: {
  33017. height: math.unit(6 + 3 / 12, "feet"),
  33018. name: "Front (Flaccid)",
  33019. image: {
  33020. source: "./media/characters/nevan/front-flaccid.svg",
  33021. extra: 704 / 704,
  33022. bottom: 28 / 732
  33023. }
  33024. },
  33025. frontErect: {
  33026. height: math.unit(6 + 3 / 12, "feet"),
  33027. name: "Front (Erect)",
  33028. image: {
  33029. source: "./media/characters/nevan/front-erect.svg",
  33030. extra: 704 / 704,
  33031. bottom: 28 / 732
  33032. }
  33033. },
  33034. backFlaccid: {
  33035. height: math.unit(6 + 3 / 12, "feet"),
  33036. name: "Back (Flaccid)",
  33037. image: {
  33038. source: "./media/characters/nevan/back-flaccid.svg",
  33039. extra: 714 / 714,
  33040. bottom: 21 / 735
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Normal",
  33047. height: math.unit(6 + 3 / 12, "feet"),
  33048. default: true
  33049. },
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  33054. {
  33055. front: {
  33056. height: math.unit(4, "feet"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/arhan/front.svg",
  33060. extra: 3368 / 3133,
  33061. bottom: 0 / 3368
  33062. }
  33063. },
  33064. side: {
  33065. height: math.unit(4, "feet"),
  33066. name: "Side",
  33067. image: {
  33068. source: "./media/characters/arhan/side.svg",
  33069. extra: 3347 / 3105,
  33070. bottom: 0 / 3347
  33071. }
  33072. },
  33073. tongue: {
  33074. height: math.unit(1.42, "feet"),
  33075. name: "Tongue",
  33076. image: {
  33077. source: "./media/characters/arhan/tongue.svg"
  33078. }
  33079. },
  33080. head: {
  33081. height: math.unit(0.85, "feet"),
  33082. name: "Head",
  33083. image: {
  33084. source: "./media/characters/arhan/head.svg"
  33085. }
  33086. },
  33087. },
  33088. [
  33089. {
  33090. name: "Normal",
  33091. height: math.unit(4, "feet"),
  33092. default: true
  33093. },
  33094. ]
  33095. ))
  33096. characterMakers.push(() => makeCharacter(
  33097. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  33098. {
  33099. front: {
  33100. height: math.unit(5 + 7.5 / 12, "feet"),
  33101. weight: math.unit(120, "lb"),
  33102. name: "Front",
  33103. image: {
  33104. source: "./media/characters/digi-duncan/front.svg",
  33105. extra: 330 / 326,
  33106. bottom: 16 / 346
  33107. }
  33108. },
  33109. side: {
  33110. height: math.unit(5 + 7.5 / 12, "feet"),
  33111. weight: math.unit(120, "lb"),
  33112. name: "Side",
  33113. image: {
  33114. source: "./media/characters/digi-duncan/side.svg",
  33115. extra: 341 / 337,
  33116. bottom: 1 / 342
  33117. }
  33118. },
  33119. back: {
  33120. height: math.unit(5 + 7.5 / 12, "feet"),
  33121. weight: math.unit(120, "lb"),
  33122. name: "Back",
  33123. image: {
  33124. source: "./media/characters/digi-duncan/back.svg",
  33125. extra: 330 / 326,
  33126. bottom: 12 / 342
  33127. }
  33128. },
  33129. },
  33130. [
  33131. {
  33132. name: "Speck",
  33133. height: math.unit(0.25, "mm")
  33134. },
  33135. {
  33136. name: "Micro",
  33137. height: math.unit(5, "mm")
  33138. },
  33139. {
  33140. name: "Tiny",
  33141. height: math.unit(0.5, "inches"),
  33142. default: true
  33143. },
  33144. {
  33145. name: "Human",
  33146. height: math.unit(5 + 7.5 / 12, "feet")
  33147. },
  33148. {
  33149. name: "Minigiant",
  33150. height: math.unit(8 + 5.25, "feet")
  33151. },
  33152. {
  33153. name: "Giant",
  33154. height: math.unit(2000, "feet")
  33155. },
  33156. {
  33157. name: "Mega",
  33158. height: math.unit(371.1, "miles")
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(2, "meters"),
  33167. weight: math.unit(350, "kg"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33171. extra: 898 / 838,
  33172. bottom: 9 / 907
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Micro",
  33179. height: math.unit(8, "meters")
  33180. },
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(50, "meters"),
  33184. default: true
  33185. },
  33186. {
  33187. name: "Macro",
  33188. height: math.unit(500, "meters")
  33189. },
  33190. ]
  33191. ))
  33192. characterMakers.push(() => makeCharacter(
  33193. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33194. {
  33195. front: {
  33196. height: math.unit(6 + 6 / 12, "feet"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/khardesh/front.svg",
  33200. extra: 1788/1596,
  33201. bottom: 66/1854
  33202. }
  33203. },
  33204. back: {
  33205. height: math.unit(6 + 6 / 12, "feet"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/khardesh/back.svg",
  33209. extra: 1781/1584,
  33210. bottom: 68/1849
  33211. }
  33212. },
  33213. },
  33214. [
  33215. {
  33216. name: "Normal",
  33217. height: math.unit(6 + 6 / 12, "feet"),
  33218. default: true
  33219. },
  33220. {
  33221. name: "Normal+",
  33222. height: math.unit(4, "meters")
  33223. },
  33224. {
  33225. name: "Macro",
  33226. height: math.unit(50, "meters")
  33227. },
  33228. {
  33229. name: "Macro+",
  33230. height: math.unit(100, "meters")
  33231. },
  33232. {
  33233. name: "Megamacro",
  33234. height: math.unit(20, "km")
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33240. {
  33241. front: {
  33242. height: math.unit(6, "feet"),
  33243. weight: math.unit(150, "lb"),
  33244. name: "Front",
  33245. image: {
  33246. source: "./media/characters/kosho/front.svg",
  33247. extra: 1847 / 1847,
  33248. bottom: 86 / 1933
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Second-stage micro",
  33255. height: math.unit(0.5, "inches")
  33256. },
  33257. {
  33258. name: "First-stage micro",
  33259. height: math.unit(6, "inches")
  33260. },
  33261. {
  33262. name: "Normal",
  33263. height: math.unit(6, "feet"),
  33264. default: true
  33265. },
  33266. {
  33267. name: "First-stage macro",
  33268. height: math.unit(72, "feet")
  33269. },
  33270. {
  33271. name: "Second-stage macro",
  33272. height: math.unit(864, "feet")
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33278. {
  33279. normal: {
  33280. height: math.unit(4 + 6 / 12, "feet"),
  33281. name: "Normal",
  33282. image: {
  33283. source: "./media/characters/hydra/normal.svg",
  33284. extra: 2833 / 2634,
  33285. bottom: 68 / 2901
  33286. }
  33287. },
  33288. smol: {
  33289. height: math.unit(0.705, "inches"),
  33290. name: "Smol",
  33291. image: {
  33292. source: "./media/characters/hydra/smol.svg",
  33293. extra: 2715 / 2540,
  33294. bottom: 0 / 2715
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(4 + 6 / 12, "feet"),
  33302. default: true
  33303. }
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33308. {
  33309. front: {
  33310. height: math.unit(0.6, "cm"),
  33311. name: "Front",
  33312. image: {
  33313. source: "./media/characters/daz/front.svg",
  33314. extra: 1682 / 1164,
  33315. bottom: 42 / 1724
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(0.6, "cm"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6, "feet"),
  33332. weight: math.unit(235, "lb"),
  33333. name: "Front",
  33334. image: {
  33335. source: "./media/characters/theo-pangolin/front.svg",
  33336. extra: 1996 / 1969,
  33337. bottom: 115 / 2111
  33338. }
  33339. },
  33340. back: {
  33341. height: math.unit(6, "feet"),
  33342. weight: math.unit(235, "lb"),
  33343. name: "Back",
  33344. image: {
  33345. source: "./media/characters/theo-pangolin/back.svg",
  33346. extra: 1979 / 1979,
  33347. bottom: 40 / 2019
  33348. }
  33349. },
  33350. feral: {
  33351. height: math.unit(2, "feet"),
  33352. weight: math.unit(30, "lb"),
  33353. name: "Feral",
  33354. image: {
  33355. source: "./media/characters/theo-pangolin/feral.svg",
  33356. extra: 803 / 791,
  33357. bottom: 181 / 984
  33358. }
  33359. },
  33360. footFive: {
  33361. height: math.unit(1.43, "feet"),
  33362. name: "Foot (Five Toes)",
  33363. image: {
  33364. source: "./media/characters/theo-pangolin/foot-five.svg"
  33365. }
  33366. },
  33367. footFour: {
  33368. height: math.unit(1.43, "feet"),
  33369. name: "Foot (Four Toes)",
  33370. image: {
  33371. source: "./media/characters/theo-pangolin/foot-four.svg"
  33372. }
  33373. },
  33374. handFour: {
  33375. height: math.unit(0.81, "feet"),
  33376. name: "Hand (Four Fingers)",
  33377. image: {
  33378. source: "./media/characters/theo-pangolin/hand-four.svg"
  33379. }
  33380. },
  33381. handThree: {
  33382. height: math.unit(0.81, "feet"),
  33383. name: "Hand (Three Fingers)",
  33384. image: {
  33385. source: "./media/characters/theo-pangolin/hand-three.svg"
  33386. }
  33387. },
  33388. headFront: {
  33389. height: math.unit(1.37, "feet"),
  33390. name: "Head (Front)",
  33391. image: {
  33392. source: "./media/characters/theo-pangolin/head-front.svg"
  33393. }
  33394. },
  33395. headSide: {
  33396. height: math.unit(1.43, "feet"),
  33397. name: "Head (Side)",
  33398. image: {
  33399. source: "./media/characters/theo-pangolin/head-side.svg"
  33400. }
  33401. },
  33402. tongue: {
  33403. height: math.unit(2.29, "feet"),
  33404. name: "Tongue",
  33405. image: {
  33406. source: "./media/characters/theo-pangolin/tongue.svg"
  33407. }
  33408. },
  33409. },
  33410. [
  33411. {
  33412. name: "Normal",
  33413. height: math.unit(6, "feet")
  33414. },
  33415. {
  33416. name: "Macro",
  33417. height: math.unit(400, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(6, "inches"),
  33427. weight: math.unit(0.036, "kg"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/renée/front.svg",
  33431. extra: 900 / 886,
  33432. bottom: 8 / 908
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Nano",
  33439. height: math.unit(1, "nm")
  33440. },
  33441. {
  33442. name: "Micro",
  33443. height: math.unit(1, "mm")
  33444. },
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(6, "inches")
  33448. },
  33449. {
  33450. name: "Macro",
  33451. height: math.unit(2000, "feet"),
  33452. default: true
  33453. },
  33454. {
  33455. name: "Megamacro",
  33456. height: math.unit(2, "km")
  33457. },
  33458. {
  33459. name: "Gigamacro",
  33460. height: math.unit(2000, "km")
  33461. },
  33462. {
  33463. name: "Teramacro",
  33464. height: math.unit(250000, "km")
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(4, "meters"),
  33473. weight: math.unit(150, "kg"),
  33474. name: "Front",
  33475. image: {
  33476. source: "./media/characters/caledvwlch/front.svg",
  33477. extra: 1757/1537,
  33478. bottom: 31/1788
  33479. }
  33480. },
  33481. side: {
  33482. height: math.unit(4, "meters"),
  33483. weight: math.unit(150, "kg"),
  33484. name: "Side",
  33485. image: {
  33486. source: "./media/characters/caledvwlch/side.svg",
  33487. extra: 1605 / 1536,
  33488. bottom: 31 / 1636
  33489. }
  33490. },
  33491. back: {
  33492. height: math.unit(4, "meters"),
  33493. weight: math.unit(150, "kg"),
  33494. name: "Back",
  33495. image: {
  33496. source: "./media/characters/caledvwlch/back.svg",
  33497. extra: 1635 / 1565,
  33498. bottom: 27 / 1662
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "\"Incognito\"",
  33505. height: math.unit(4, "meters")
  33506. },
  33507. {
  33508. name: "Small rampage",
  33509. height: math.unit(600, "meters")
  33510. },
  33511. {
  33512. name: "Mega",
  33513. height: math.unit(30, "km")
  33514. },
  33515. {
  33516. name: "Home-size",
  33517. height: math.unit(50, "km"),
  33518. default: true
  33519. },
  33520. {
  33521. name: "Giga",
  33522. height: math.unit(300, "km")
  33523. },
  33524. {
  33525. name: "Lounging",
  33526. height: math.unit(11000, "km")
  33527. },
  33528. {
  33529. name: "Planet snacking",
  33530. height: math.unit(2000000, "km")
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(6, "feet"),
  33539. weight: math.unit(215, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/sapphire-svell/front.svg",
  33543. extra: 495 / 455,
  33544. bottom: 20 / 515
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(6, "feet"),
  33549. weight: math.unit(216, "lb"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/sapphire-svell/back.svg",
  33553. extra: 497 / 477,
  33554. bottom: 7 / 504
  33555. }
  33556. },
  33557. maw: {
  33558. height: math.unit(1.57, "feet"),
  33559. name: "Maw",
  33560. image: {
  33561. source: "./media/characters/sapphire-svell/maw.svg"
  33562. }
  33563. },
  33564. foot: {
  33565. height: math.unit(1.07, "feet"),
  33566. name: "Foot",
  33567. image: {
  33568. source: "./media/characters/sapphire-svell/foot.svg"
  33569. }
  33570. },
  33571. toering: {
  33572. height: math.unit(1.7, "inch"),
  33573. name: "Toering",
  33574. image: {
  33575. source: "./media/characters/sapphire-svell/toering.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(300, "feet"),
  33583. default: true
  33584. },
  33585. {
  33586. name: "Augmented",
  33587. height: math.unit(1250, "feet")
  33588. },
  33589. {
  33590. name: "Unleashed",
  33591. height: math.unit(3000, "feet")
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33597. {
  33598. side: {
  33599. height: math.unit(2 + 3 / 12, "feet"),
  33600. weight: math.unit(110, "lb"),
  33601. name: "Side",
  33602. image: {
  33603. source: "./media/characters/glitch-flux/side.svg",
  33604. extra: 997 / 805,
  33605. bottom: 20 / 1017
  33606. }
  33607. },
  33608. },
  33609. [
  33610. {
  33611. name: "Normal",
  33612. height: math.unit(2 + 3 / 12, "feet"),
  33613. default: true
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33619. {
  33620. front: {
  33621. height: math.unit(4, "meters"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/mid/front.svg",
  33625. extra: 507 / 476,
  33626. bottom: 17 / 524
  33627. }
  33628. },
  33629. back: {
  33630. height: math.unit(4, "meters"),
  33631. name: "Back",
  33632. image: {
  33633. source: "./media/characters/mid/back.svg",
  33634. extra: 519 / 487,
  33635. bottom: 7 / 526
  33636. }
  33637. },
  33638. stuck: {
  33639. height: math.unit(2.2, "meters"),
  33640. name: "Stuck",
  33641. image: {
  33642. source: "./media/characters/mid/stuck.svg",
  33643. extra: 1951 / 1869,
  33644. bottom: 88 / 2039
  33645. }
  33646. }
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(4, "meters"),
  33652. default: true
  33653. },
  33654. {
  33655. name: "Big",
  33656. height: math.unit(10, "meters")
  33657. },
  33658. {
  33659. name: "Macro",
  33660. height: math.unit(800, "meters")
  33661. },
  33662. {
  33663. name: "Megamacro",
  33664. height: math.unit(100, "km")
  33665. },
  33666. {
  33667. name: "Overgrown",
  33668. height: math.unit(1, "parsec")
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(2.5, "meters"),
  33677. weight: math.unit(225, "kg"),
  33678. name: "Front",
  33679. image: {
  33680. source: "./media/characters/iris/front.svg",
  33681. extra: 3348 / 3251,
  33682. bottom: 205 / 3553
  33683. }
  33684. },
  33685. maw: {
  33686. height: math.unit(0.56, "meter"),
  33687. name: "Maw",
  33688. image: {
  33689. source: "./media/characters/iris/maw.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Mewter cat",
  33696. height: math.unit(1.2, "meters")
  33697. },
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(2.5, "meters"),
  33701. default: true
  33702. },
  33703. {
  33704. name: "Minimacro",
  33705. height: math.unit(18, "feet")
  33706. },
  33707. {
  33708. name: "Macro",
  33709. height: math.unit(140, "feet")
  33710. },
  33711. {
  33712. name: "Macro+",
  33713. height: math.unit(180, "meters")
  33714. },
  33715. {
  33716. name: "Megamacro",
  33717. height: math.unit(2746, "meters")
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33723. {
  33724. front: {
  33725. height: math.unit(6, "feet"),
  33726. weight: math.unit(135, "lb"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/axel/front.svg",
  33730. extra: 908 / 908,
  33731. bottom: 58 / 966
  33732. }
  33733. },
  33734. side: {
  33735. height: math.unit(6, "feet"),
  33736. weight: math.unit(135, "lb"),
  33737. name: "Side",
  33738. image: {
  33739. source: "./media/characters/axel/side.svg",
  33740. extra: 958 / 958,
  33741. bottom: 11 / 969
  33742. }
  33743. },
  33744. back: {
  33745. height: math.unit(6, "feet"),
  33746. weight: math.unit(135, "lb"),
  33747. name: "Back",
  33748. image: {
  33749. source: "./media/characters/axel/back.svg",
  33750. extra: 887 / 887,
  33751. bottom: 34 / 921
  33752. }
  33753. },
  33754. head: {
  33755. height: math.unit(1.07, "feet"),
  33756. name: "Head",
  33757. image: {
  33758. source: "./media/characters/axel/head.svg"
  33759. }
  33760. },
  33761. beak: {
  33762. height: math.unit(1.4, "feet"),
  33763. name: "Beak",
  33764. image: {
  33765. source: "./media/characters/axel/beak.svg"
  33766. }
  33767. },
  33768. beakSide: {
  33769. height: math.unit(1.4, "feet"),
  33770. name: "Beak Side",
  33771. image: {
  33772. source: "./media/characters/axel/beak-side.svg"
  33773. }
  33774. },
  33775. sheath: {
  33776. height: math.unit(0.5, "feet"),
  33777. name: "Sheath",
  33778. image: {
  33779. source: "./media/characters/axel/sheath.svg"
  33780. }
  33781. },
  33782. dick: {
  33783. height: math.unit(0.98, "feet"),
  33784. name: "Dick",
  33785. image: {
  33786. source: "./media/characters/axel/dick.svg"
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(68, "meters"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(3.5, "meters"),
  33803. weight: math.unit(1200, "kg"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/joanna/front.svg",
  33807. extra: 1596 / 1488,
  33808. bottom: 29 / 1625
  33809. }
  33810. },
  33811. back: {
  33812. height: math.unit(3.5, "meters"),
  33813. weight: math.unit(1200, "kg"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/joanna/back.svg",
  33817. extra: 1594 / 1495,
  33818. bottom: 26 / 1620
  33819. }
  33820. },
  33821. frontShorts: {
  33822. height: math.unit(3.5, "meters"),
  33823. weight: math.unit(1200, "kg"),
  33824. name: "Front (Shorts)",
  33825. image: {
  33826. source: "./media/characters/joanna/front-shorts.svg",
  33827. extra: 1596 / 1488,
  33828. bottom: 29 / 1625
  33829. }
  33830. },
  33831. frontBiker: {
  33832. height: math.unit(3.5, "meters"),
  33833. weight: math.unit(1200, "kg"),
  33834. name: "Front (Biker)",
  33835. image: {
  33836. source: "./media/characters/joanna/front-biker.svg",
  33837. extra: 1596 / 1488,
  33838. bottom: 29 / 1625
  33839. }
  33840. },
  33841. backBiker: {
  33842. height: math.unit(3.5, "meters"),
  33843. weight: math.unit(1200, "kg"),
  33844. name: "Back (Biker)",
  33845. image: {
  33846. source: "./media/characters/joanna/back-biker.svg",
  33847. extra: 1594 / 1495,
  33848. bottom: 88 / 1682
  33849. }
  33850. },
  33851. bikeLeft: {
  33852. height: math.unit(2.4, "meters"),
  33853. weight: math.unit(1600, "kg"),
  33854. name: "Bike (Left)",
  33855. image: {
  33856. source: "./media/characters/joanna/bike-left.svg",
  33857. extra: 720 / 720,
  33858. bottom: 8 / 728
  33859. }
  33860. },
  33861. bikeRight: {
  33862. height: math.unit(2.4, "meters"),
  33863. weight: math.unit(1600, "kg"),
  33864. name: "Bike (Right)",
  33865. image: {
  33866. source: "./media/characters/joanna/bike-right.svg",
  33867. extra: 720 / 720,
  33868. bottom: 8 / 728
  33869. }
  33870. },
  33871. },
  33872. [
  33873. {
  33874. name: "Incognito",
  33875. height: math.unit(3.5, "meters")
  33876. },
  33877. {
  33878. name: "Casual Big",
  33879. height: math.unit(200, "meters")
  33880. },
  33881. {
  33882. name: "Macro",
  33883. height: math.unit(600, "meters")
  33884. },
  33885. {
  33886. name: "Original",
  33887. height: math.unit(20, "km"),
  33888. default: true
  33889. },
  33890. {
  33891. name: "Giga",
  33892. height: math.unit(400, "km")
  33893. },
  33894. {
  33895. name: "Lounging",
  33896. height: math.unit(1500, "km")
  33897. },
  33898. {
  33899. name: "Planetary",
  33900. height: math.unit(200000, "km")
  33901. },
  33902. ]
  33903. ))
  33904. characterMakers.push(() => makeCharacter(
  33905. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33906. {
  33907. front: {
  33908. height: math.unit(6, "feet"),
  33909. weight: math.unit(150, "lb"),
  33910. name: "Front",
  33911. image: {
  33912. source: "./media/characters/hugo-sigil/front.svg",
  33913. extra: 522 / 500,
  33914. bottom: 2 / 524
  33915. }
  33916. },
  33917. back: {
  33918. height: math.unit(6, "feet"),
  33919. weight: math.unit(150, "lb"),
  33920. name: "Back",
  33921. image: {
  33922. source: "./media/characters/hugo-sigil/back.svg",
  33923. extra: 519 / 495,
  33924. bottom: 5 / 524
  33925. }
  33926. },
  33927. maw: {
  33928. height: math.unit(1.4, "feet"),
  33929. weight: math.unit(150, "lb"),
  33930. name: "Maw",
  33931. image: {
  33932. source: "./media/characters/hugo-sigil/maw.svg"
  33933. }
  33934. },
  33935. feet: {
  33936. height: math.unit(1.56, "feet"),
  33937. weight: math.unit(150, "lb"),
  33938. name: "Feet",
  33939. image: {
  33940. source: "./media/characters/hugo-sigil/feet.svg",
  33941. extra: 177 / 177,
  33942. bottom: 12 / 189
  33943. }
  33944. },
  33945. },
  33946. [
  33947. {
  33948. name: "Normal",
  33949. height: math.unit(6, "feet")
  33950. },
  33951. {
  33952. name: "Macro",
  33953. height: math.unit(200, "feet"),
  33954. default: true
  33955. },
  33956. ]
  33957. ))
  33958. characterMakers.push(() => makeCharacter(
  33959. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33960. {
  33961. front: {
  33962. height: math.unit(6, "feet"),
  33963. weight: math.unit(150, "lb"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/peri/front.svg",
  33967. extra: 2354 / 2233,
  33968. bottom: 49 / 2403
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Really Small",
  33975. height: math.unit(1, "nm")
  33976. },
  33977. {
  33978. name: "Micro",
  33979. height: math.unit(4, "inches")
  33980. },
  33981. {
  33982. name: "Normal",
  33983. height: math.unit(7, "inches"),
  33984. default: true
  33985. },
  33986. {
  33987. name: "Macro",
  33988. height: math.unit(400, "feet")
  33989. },
  33990. {
  33991. name: "Megamacro",
  33992. height: math.unit(100, "miles")
  33993. },
  33994. ]
  33995. ))
  33996. characterMakers.push(() => makeCharacter(
  33997. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33998. {
  33999. frontSlim: {
  34000. height: math.unit(7, "feet"),
  34001. name: "Front (Slim)",
  34002. image: {
  34003. source: "./media/characters/issilora/front-slim.svg",
  34004. extra: 529 / 449,
  34005. bottom: 53 / 582
  34006. }
  34007. },
  34008. sideSlim: {
  34009. height: math.unit(7, "feet"),
  34010. name: "Side (Slim)",
  34011. image: {
  34012. source: "./media/characters/issilora/side-slim.svg",
  34013. extra: 570 / 480,
  34014. bottom: 30 / 600
  34015. }
  34016. },
  34017. backSlim: {
  34018. height: math.unit(7, "feet"),
  34019. name: "Back (Slim)",
  34020. image: {
  34021. source: "./media/characters/issilora/back-slim.svg",
  34022. extra: 537 / 455,
  34023. bottom: 46 / 583
  34024. }
  34025. },
  34026. frontBuff: {
  34027. height: math.unit(7, "feet"),
  34028. name: "Front (Buff)",
  34029. image: {
  34030. source: "./media/characters/issilora/front-buff.svg",
  34031. extra: 2310 / 2035,
  34032. bottom: 335 / 2645
  34033. }
  34034. },
  34035. head: {
  34036. height: math.unit(1.94, "feet"),
  34037. name: "Head",
  34038. image: {
  34039. source: "./media/characters/issilora/head.svg"
  34040. }
  34041. },
  34042. },
  34043. [
  34044. {
  34045. name: "Minimum",
  34046. height: math.unit(7, "feet")
  34047. },
  34048. {
  34049. name: "Comfortable",
  34050. height: math.unit(17, "feet")
  34051. },
  34052. {
  34053. name: "Fun Size",
  34054. height: math.unit(47, "feet")
  34055. },
  34056. {
  34057. name: "Natural Macro",
  34058. height: math.unit(137, "feet"),
  34059. default: true
  34060. },
  34061. {
  34062. name: "Maximum Kaiju",
  34063. height: math.unit(397, "feet")
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  34069. {
  34070. front: {
  34071. height: math.unit(50 + 9/12, "feet"),
  34072. weight: math.unit(32.8, "tons"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/irb'iiritaahn/front.svg",
  34076. extra: 1878/1826,
  34077. bottom: 326/2204
  34078. }
  34079. },
  34080. back: {
  34081. height: math.unit(50 + 9/12, "feet"),
  34082. weight: math.unit(32.8, "tons"),
  34083. name: "Back",
  34084. image: {
  34085. source: "./media/characters/irb'iiritaahn/back.svg",
  34086. extra: 2052/2018,
  34087. bottom: 152/2204
  34088. }
  34089. },
  34090. head: {
  34091. height: math.unit(12.86, "feet"),
  34092. name: "Head",
  34093. image: {
  34094. source: "./media/characters/irb'iiritaahn/head.svg"
  34095. }
  34096. },
  34097. maw: {
  34098. height: math.unit(9.66, "feet"),
  34099. name: "Maw",
  34100. image: {
  34101. source: "./media/characters/irb'iiritaahn/maw.svg"
  34102. }
  34103. },
  34104. frontDick: {
  34105. height: math.unit(8.78461, "feet"),
  34106. name: "Front Dick",
  34107. image: {
  34108. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  34109. }
  34110. },
  34111. rearDick: {
  34112. height: math.unit(8.78461, "feet"),
  34113. name: "Rear Dick",
  34114. image: {
  34115. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  34116. }
  34117. },
  34118. rearDickUnfolded: {
  34119. height: math.unit(8.78, "feet"),
  34120. name: "Rear Dick (Unfolded)",
  34121. image: {
  34122. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  34123. }
  34124. },
  34125. wings: {
  34126. height: math.unit(43, "feet"),
  34127. name: "Wings",
  34128. image: {
  34129. source: "./media/characters/irb'iiritaahn/wings.svg"
  34130. }
  34131. },
  34132. },
  34133. [
  34134. {
  34135. name: "Macro",
  34136. height: math.unit(50 + 9/12, "feet"),
  34137. default: true
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(205, "cm"),
  34146. weight: math.unit(102, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/irbisgreif/front.svg",
  34150. extra: 785/706,
  34151. bottom: 13/798
  34152. }
  34153. },
  34154. back: {
  34155. height: math.unit(205, "cm"),
  34156. weight: math.unit(102, "kg"),
  34157. name: "Back",
  34158. image: {
  34159. source: "./media/characters/irbisgreif/back.svg",
  34160. extra: 713/701,
  34161. bottom: 26/739
  34162. }
  34163. },
  34164. frontDressed: {
  34165. height: math.unit(216, "cm"),
  34166. weight: math.unit(102, "kg"),
  34167. name: "Front (Dressed)",
  34168. image: {
  34169. source: "./media/characters/irbisgreif/front-dressed.svg",
  34170. extra: 902/776,
  34171. bottom: 14/916
  34172. }
  34173. },
  34174. sideDressed: {
  34175. height: math.unit(195, "cm"),
  34176. weight: math.unit(102, "kg"),
  34177. name: "Side (Dressed)",
  34178. image: {
  34179. source: "./media/characters/irbisgreif/side-dressed.svg",
  34180. extra: 788/688,
  34181. bottom: 21/809
  34182. }
  34183. },
  34184. backDressed: {
  34185. height: math.unit(216, "cm"),
  34186. weight: math.unit(102, "kg"),
  34187. name: "Back (Dressed)",
  34188. image: {
  34189. source: "./media/characters/irbisgreif/back-dressed.svg",
  34190. extra: 901/783,
  34191. bottom: 10/911
  34192. }
  34193. },
  34194. dick: {
  34195. height: math.unit(0.49, "feet"),
  34196. name: "Dick",
  34197. image: {
  34198. source: "./media/characters/irbisgreif/dick.svg"
  34199. }
  34200. },
  34201. wingTop: {
  34202. height: math.unit(1.93 , "feet"),
  34203. name: "Wing (Top)",
  34204. image: {
  34205. source: "./media/characters/irbisgreif/wing-top.svg"
  34206. }
  34207. },
  34208. wingBottom: {
  34209. height: math.unit(1.93 , "feet"),
  34210. name: "Wing (Bottom)",
  34211. image: {
  34212. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(216, "cm"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34226. {
  34227. front: {
  34228. height: math.unit(6, "feet"),
  34229. weight: math.unit(150, "lb"),
  34230. name: "Front",
  34231. image: {
  34232. source: "./media/characters/pride/front.svg",
  34233. extra: 1299/1230,
  34234. bottom: 18/1317
  34235. }
  34236. },
  34237. },
  34238. [
  34239. {
  34240. name: "Normal",
  34241. height: math.unit(7, "feet")
  34242. },
  34243. {
  34244. name: "Mini-macro",
  34245. height: math.unit(11, "feet")
  34246. },
  34247. {
  34248. name: "Macro",
  34249. height: math.unit(15, "meters"),
  34250. default: true
  34251. },
  34252. {
  34253. name: "Macro+",
  34254. height: math.unit(40, "meters")
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34260. {
  34261. front: {
  34262. height: math.unit(4 + 2 / 12, "feet"),
  34263. weight: math.unit(95, "lb"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/vaelophis-nyx/front.svg",
  34267. extra: 2532/2330,
  34268. bottom: 0/2532
  34269. }
  34270. },
  34271. back: {
  34272. height: math.unit(4 + 2 / 12, "feet"),
  34273. weight: math.unit(95, "lb"),
  34274. name: "Back",
  34275. image: {
  34276. source: "./media/characters/vaelophis-nyx/back.svg",
  34277. extra: 2484/2361,
  34278. bottom: 0/2484
  34279. }
  34280. },
  34281. feralSide: {
  34282. height: math.unit(2 + 1/12, "feet"),
  34283. weight: math.unit(20, "lb"),
  34284. name: "Feral (Side)",
  34285. image: {
  34286. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34287. extra: 1721/1581,
  34288. bottom: 70/1791
  34289. }
  34290. },
  34291. feralLazing: {
  34292. height: math.unit(1.08, "feet"),
  34293. weight: math.unit(20, "lb"),
  34294. name: "Feral (Lazing)",
  34295. image: {
  34296. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34297. extra: 822/822,
  34298. bottom: 248/1070
  34299. }
  34300. },
  34301. ear: {
  34302. height: math.unit(0.416, "feet"),
  34303. name: "Ear",
  34304. image: {
  34305. source: "./media/characters/vaelophis-nyx/ear.svg"
  34306. }
  34307. },
  34308. eye: {
  34309. height: math.unit(0.0748, "feet"),
  34310. name: "Eye",
  34311. image: {
  34312. source: "./media/characters/vaelophis-nyx/eye.svg"
  34313. }
  34314. },
  34315. mouth: {
  34316. height: math.unit(0.378, "feet"),
  34317. name: "Mouth",
  34318. image: {
  34319. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34320. }
  34321. },
  34322. spade: {
  34323. height: math.unit(0.55, "feet"),
  34324. name: "Spade",
  34325. image: {
  34326. source: "./media/characters/vaelophis-nyx/spade.svg"
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Normal",
  34333. height: math.unit(4 + 2/12, "feet"),
  34334. default: true
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34340. {
  34341. front: {
  34342. height: math.unit(7, "feet"),
  34343. weight: math.unit(231, "lb"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/flux/front.svg",
  34347. extra: 919/871,
  34348. bottom: 0/919
  34349. }
  34350. },
  34351. back: {
  34352. height: math.unit(7, "feet"),
  34353. weight: math.unit(231, "lb"),
  34354. name: "Back",
  34355. image: {
  34356. source: "./media/characters/flux/back.svg",
  34357. extra: 1040/992,
  34358. bottom: 0/1040
  34359. }
  34360. },
  34361. frontDressed: {
  34362. height: math.unit(7, "feet"),
  34363. weight: math.unit(231, "lb"),
  34364. name: "Front (Dressed)",
  34365. image: {
  34366. source: "./media/characters/flux/front-dressed.svg",
  34367. extra: 919/871,
  34368. bottom: 0/919
  34369. }
  34370. },
  34371. feralSide: {
  34372. height: math.unit(5, "feet"),
  34373. weight: math.unit(150, "lb"),
  34374. name: "Feral (Side)",
  34375. image: {
  34376. source: "./media/characters/flux/feral-side.svg",
  34377. extra: 598/528,
  34378. bottom: 28/626
  34379. }
  34380. },
  34381. head: {
  34382. height: math.unit(1.585, "feet"),
  34383. name: "Head",
  34384. image: {
  34385. source: "./media/characters/flux/head.svg"
  34386. }
  34387. },
  34388. headSide: {
  34389. height: math.unit(1.74, "feet"),
  34390. name: "Head (Side)",
  34391. image: {
  34392. source: "./media/characters/flux/head-side.svg"
  34393. }
  34394. },
  34395. headSideFire: {
  34396. height: math.unit(1.76, "feet"),
  34397. name: "Head (Side, Fire)",
  34398. image: {
  34399. source: "./media/characters/flux/head-side-fire.svg"
  34400. }
  34401. },
  34402. },
  34403. [
  34404. {
  34405. name: "Normal",
  34406. height: math.unit(7, "feet"),
  34407. default: true
  34408. },
  34409. ]
  34410. ))
  34411. characterMakers.push(() => makeCharacter(
  34412. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34413. {
  34414. front: {
  34415. height: math.unit(9, "feet"),
  34416. weight: math.unit(1012, "lb"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/ulfra-lupae/front.svg",
  34420. extra: 1083/1011,
  34421. bottom: 67/1150
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Micro",
  34428. height: math.unit(6, "inches")
  34429. },
  34430. {
  34431. name: "Socializing",
  34432. height: math.unit(6 + 5/12, "feet")
  34433. },
  34434. {
  34435. name: "Normal",
  34436. height: math.unit(9, "feet"),
  34437. default: true
  34438. },
  34439. {
  34440. name: "Macro",
  34441. height: math.unit(150, "feet")
  34442. },
  34443. ]
  34444. ))
  34445. characterMakers.push(() => makeCharacter(
  34446. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34447. {
  34448. front: {
  34449. height: math.unit(5 + 2/12, "feet"),
  34450. weight: math.unit(120, "lb"),
  34451. name: "Front",
  34452. image: {
  34453. source: "./media/characters/timber/front.svg",
  34454. extra: 2814/2705,
  34455. bottom: 181/2995
  34456. }
  34457. },
  34458. },
  34459. [
  34460. {
  34461. name: "Normal",
  34462. height: math.unit(5 + 2/12, "feet"),
  34463. default: true
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34469. {
  34470. front: {
  34471. height: math.unit(9, "feet"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/nicki/front.svg",
  34475. extra: 1240/990,
  34476. bottom: 45/1285
  34477. },
  34478. form: "anthro",
  34479. default: true
  34480. },
  34481. side: {
  34482. height: math.unit(9, "feet"),
  34483. name: "Side",
  34484. image: {
  34485. source: "./media/characters/nicki/side.svg",
  34486. extra: 1047/973,
  34487. bottom: 61/1108
  34488. },
  34489. form: "anthro"
  34490. },
  34491. back: {
  34492. height: math.unit(9, "feet"),
  34493. name: "Back",
  34494. image: {
  34495. source: "./media/characters/nicki/back.svg",
  34496. extra: 1006/965,
  34497. bottom: 39/1045
  34498. },
  34499. form: "anthro"
  34500. },
  34501. taur: {
  34502. height: math.unit(15, "feet"),
  34503. name: "Taur",
  34504. image: {
  34505. source: "./media/characters/nicki/taur.svg",
  34506. extra: 1592/1347,
  34507. bottom: 0/1592
  34508. },
  34509. form: "taur",
  34510. default: true
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(9, "feet"),
  34517. form: "anthro",
  34518. default: true
  34519. },
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(15, "feet"),
  34523. form: "taur",
  34524. default: true
  34525. }
  34526. ],
  34527. {
  34528. "anthro": {
  34529. name: "Anthro",
  34530. default: true
  34531. },
  34532. "taur": {
  34533. name: "Taur"
  34534. }
  34535. }
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(7 + 10/12, "feet"),
  34542. weight: math.unit(3.5, "tons"),
  34543. name: "Front",
  34544. image: {
  34545. source: "./media/characters/lee/front.svg",
  34546. extra: 1773/1615,
  34547. bottom: 86/1859
  34548. }
  34549. },
  34550. hand: {
  34551. height: math.unit(1.78, "feet"),
  34552. name: "Hand",
  34553. image: {
  34554. source: "./media/characters/lee/hand.svg"
  34555. }
  34556. },
  34557. maw: {
  34558. height: math.unit(1.18, "feet"),
  34559. name: "Maw",
  34560. image: {
  34561. source: "./media/characters/lee/maw.svg"
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(7 + 10/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34575. {
  34576. front: {
  34577. height: math.unit(9, "feet"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/guti/front.svg",
  34581. extra: 4551/4355,
  34582. bottom: 123/4674
  34583. }
  34584. },
  34585. tongue: {
  34586. height: math.unit(1, "feet"),
  34587. name: "Tongue",
  34588. image: {
  34589. source: "./media/characters/guti/tongue.svg"
  34590. }
  34591. },
  34592. paw: {
  34593. height: math.unit(1.18, "feet"),
  34594. name: "Paw",
  34595. image: {
  34596. source: "./media/characters/guti/paw.svg"
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(9, "feet"),
  34604. default: true
  34605. },
  34606. ]
  34607. ))
  34608. characterMakers.push(() => makeCharacter(
  34609. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34610. {
  34611. side: {
  34612. height: math.unit(5, "meters"),
  34613. name: "Side",
  34614. image: {
  34615. source: "./media/characters/vesper/side.svg",
  34616. extra: 1605/1518,
  34617. bottom: 0/1605
  34618. }
  34619. },
  34620. },
  34621. [
  34622. {
  34623. name: "Small",
  34624. height: math.unit(5, "meters")
  34625. },
  34626. {
  34627. name: "Sage",
  34628. height: math.unit(100, "meters"),
  34629. default: true
  34630. },
  34631. {
  34632. name: "Fun Size",
  34633. height: math.unit(600, "meters")
  34634. },
  34635. {
  34636. name: "Goddess",
  34637. height: math.unit(20000, "km")
  34638. },
  34639. {
  34640. name: "Maximum",
  34641. height: math.unit(5, "galaxies")
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34647. {
  34648. front: {
  34649. height: math.unit(6 + 3/12, "feet"),
  34650. weight: math.unit(190, "lb"),
  34651. name: "Front",
  34652. image: {
  34653. source: "./media/characters/gawain/front.svg",
  34654. extra: 2222/2139,
  34655. bottom: 90/2312
  34656. }
  34657. },
  34658. back: {
  34659. height: math.unit(6 + 3/12, "feet"),
  34660. weight: math.unit(190, "lb"),
  34661. name: "Back",
  34662. image: {
  34663. source: "./media/characters/gawain/back.svg",
  34664. extra: 2199/2111,
  34665. bottom: 73/2272
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(6 + 3/12, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34679. {
  34680. side: {
  34681. height: math.unit(3.5, "meters"),
  34682. weight: math.unit(16000, "lb"),
  34683. name: "Side",
  34684. image: {
  34685. source: "./media/characters/dascalti/side.svg",
  34686. extra: 392/273,
  34687. bottom: 47/439
  34688. }
  34689. },
  34690. breath: {
  34691. height: math.unit(7.4, "feet"),
  34692. name: "Breath",
  34693. image: {
  34694. source: "./media/characters/dascalti/breath.svg"
  34695. }
  34696. },
  34697. fed: {
  34698. height: math.unit(3.6, "meters"),
  34699. weight: math.unit(16000, "lb"),
  34700. name: "Fed",
  34701. image: {
  34702. source: "./media/characters/dascalti/fed.svg",
  34703. extra: 1419/820,
  34704. bottom: 95/1514
  34705. }
  34706. },
  34707. },
  34708. [
  34709. {
  34710. name: "Normal",
  34711. height: math.unit(3.5, "meters"),
  34712. default: true
  34713. },
  34714. ]
  34715. ))
  34716. characterMakers.push(() => makeCharacter(
  34717. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34718. {
  34719. front: {
  34720. height: math.unit(3 + 5/12, "feet"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/mauve/front.svg",
  34724. extra: 1126/1033,
  34725. bottom: 65/1191
  34726. }
  34727. },
  34728. side: {
  34729. height: math.unit(3 + 5/12, "feet"),
  34730. name: "Side",
  34731. image: {
  34732. source: "./media/characters/mauve/side.svg",
  34733. extra: 1089/1001,
  34734. bottom: 29/1118
  34735. }
  34736. },
  34737. back: {
  34738. height: math.unit(3 + 5/12, "feet"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/mauve/back.svg",
  34742. extra: 1173/1053,
  34743. bottom: 109/1282
  34744. }
  34745. },
  34746. },
  34747. [
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(3 + 5/12, "feet"),
  34751. default: true
  34752. },
  34753. ]
  34754. ))
  34755. characterMakers.push(() => makeCharacter(
  34756. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34757. {
  34758. front: {
  34759. height: math.unit(6 + 3/12, "feet"),
  34760. weight: math.unit(450, "lb"),
  34761. name: "Front",
  34762. image: {
  34763. source: "./media/characters/carlos/front.svg",
  34764. extra: 444/423,
  34765. bottom: 27/471
  34766. }
  34767. },
  34768. },
  34769. [
  34770. {
  34771. name: "Normal",
  34772. height: math.unit(6 + 3/12, "feet"),
  34773. default: true
  34774. },
  34775. ]
  34776. ))
  34777. characterMakers.push(() => makeCharacter(
  34778. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34779. {
  34780. back: {
  34781. height: math.unit(5 + 10/12, "feet"),
  34782. weight: math.unit(200, "lb"),
  34783. name: "Back",
  34784. image: {
  34785. source: "./media/characters/jax/back.svg",
  34786. extra: 764/739,
  34787. bottom: 25/789
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(5 + 10/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(8, "feet"),
  34804. weight: math.unit(250, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/eikthynir/front.svg",
  34808. extra: 1332/1166,
  34809. bottom: 82/1414
  34810. }
  34811. },
  34812. back: {
  34813. height: math.unit(8, "feet"),
  34814. weight: math.unit(250, "lb"),
  34815. name: "Back",
  34816. image: {
  34817. source: "./media/characters/eikthynir/back.svg",
  34818. extra: 1342/1190,
  34819. bottom: 19/1361
  34820. }
  34821. },
  34822. dick: {
  34823. height: math.unit(2.35, "feet"),
  34824. name: "Dick",
  34825. image: {
  34826. source: "./media/characters/eikthynir/dick.svg"
  34827. }
  34828. },
  34829. },
  34830. [
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(8, "feet"),
  34834. default: true
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(99, "meters"),
  34843. weight: math.unit(13000, "tons"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/zlmos/front.svg",
  34847. extra: 2202/1992,
  34848. bottom: 315/2517
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Macro",
  34855. height: math.unit(99, "meters"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(6 + 5/12, "feet"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/purri/front.svg",
  34868. extra: 1698/1610,
  34869. bottom: 32/1730
  34870. }
  34871. },
  34872. frontAlt: {
  34873. height: math.unit(6 + 5/12, "feet"),
  34874. name: "Front (Alt)",
  34875. image: {
  34876. source: "./media/characters/purri/front-alt.svg",
  34877. extra: 450/420,
  34878. bottom: 26/476
  34879. }
  34880. },
  34881. boots: {
  34882. height: math.unit(5.5, "feet"),
  34883. name: "Boots",
  34884. image: {
  34885. source: "./media/characters/purri/boots.svg",
  34886. extra: 905/853,
  34887. bottom: 18/923
  34888. },
  34889. extraAttributes: {
  34890. "shoeSize": {
  34891. name: "Shoe Size",
  34892. power: 1,
  34893. type: "length",
  34894. base: math.unit(12, "ShoeSizeMensUS")
  34895. },
  34896. "platformHeight": {
  34897. name: "Platform Height",
  34898. power: 1,
  34899. type: "length",
  34900. base: math.unit(2, "inches")
  34901. },
  34902. }
  34903. },
  34904. lying: {
  34905. height: math.unit(2, "feet"),
  34906. name: "Lying",
  34907. image: {
  34908. source: "./media/characters/purri/lying.svg",
  34909. extra: 940/843,
  34910. bottom: 146/1086
  34911. }
  34912. },
  34913. devious: {
  34914. height: math.unit(1.77, "feet"),
  34915. name: "Devious",
  34916. image: {
  34917. source: "./media/characters/purri/devious.svg",
  34918. extra: 1440/1155,
  34919. bottom: 147/1587
  34920. }
  34921. },
  34922. bean: {
  34923. height: math.unit(1.94, "feet"),
  34924. name: "Bean",
  34925. image: {
  34926. source: "./media/characters/purri/bean.svg"
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "Micro",
  34933. height: math.unit(1, "mm")
  34934. },
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(6 + 5/12, "feet"),
  34938. default: true
  34939. },
  34940. {
  34941. name: "Macro :3c",
  34942. height: math.unit(2, "miles")
  34943. },
  34944. ]
  34945. ))
  34946. characterMakers.push(() => makeCharacter(
  34947. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34948. {
  34949. front: {
  34950. height: math.unit(6 + 2/12, "feet"),
  34951. weight: math.unit(250, "lb"),
  34952. name: "Front",
  34953. image: {
  34954. source: "./media/characters/moonlight/front.svg",
  34955. extra: 1044/908,
  34956. bottom: 56/1100
  34957. }
  34958. },
  34959. feral: {
  34960. height: math.unit(3 + 1/12, "feet"),
  34961. weight: math.unit(50, "kg"),
  34962. name: "Feral",
  34963. image: {
  34964. source: "./media/characters/moonlight/feral.svg",
  34965. extra: 3705/2791,
  34966. bottom: 145/3850
  34967. }
  34968. },
  34969. paw: {
  34970. height: math.unit(1, "feet"),
  34971. name: "Paw",
  34972. image: {
  34973. source: "./media/characters/moonlight/paw.svg"
  34974. }
  34975. },
  34976. paws: {
  34977. height: math.unit(0.98, "feet"),
  34978. name: "Paws",
  34979. image: {
  34980. source: "./media/characters/moonlight/paws.svg",
  34981. extra: 939/939,
  34982. bottom: 50/989
  34983. }
  34984. },
  34985. mouth: {
  34986. height: math.unit(0.48, "feet"),
  34987. name: "Mouth",
  34988. image: {
  34989. source: "./media/characters/moonlight/mouth.svg"
  34990. }
  34991. },
  34992. dick: {
  34993. height: math.unit(1.46, "feet"),
  34994. name: "Dick",
  34995. image: {
  34996. source: "./media/characters/moonlight/dick.svg"
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(6 + 2/12, "feet"),
  35004. default: true
  35005. },
  35006. {
  35007. name: "Macro",
  35008. height: math.unit(300, "feet")
  35009. },
  35010. {
  35011. name: "Macro+",
  35012. height: math.unit(1, "mile")
  35013. },
  35014. {
  35015. name: "Mt. Moon",
  35016. height: math.unit(5, "miles")
  35017. },
  35018. {
  35019. name: "Megamacro",
  35020. height: math.unit(15, "miles")
  35021. },
  35022. ]
  35023. ))
  35024. characterMakers.push(() => makeCharacter(
  35025. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  35026. {
  35027. back: {
  35028. height: math.unit(6, "feet"),
  35029. weight: math.unit(150, "lb"),
  35030. name: "Back",
  35031. image: {
  35032. source: "./media/characters/sylen/back.svg",
  35033. extra: 1335/1273,
  35034. bottom: 107/1442
  35035. }
  35036. },
  35037. },
  35038. [
  35039. {
  35040. name: "Normal",
  35041. height: math.unit(5 + 5/12, "feet")
  35042. },
  35043. {
  35044. name: "Megamacro",
  35045. height: math.unit(3, "miles"),
  35046. default: true
  35047. },
  35048. ]
  35049. ))
  35050. characterMakers.push(() => makeCharacter(
  35051. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  35052. {
  35053. front: {
  35054. height: math.unit(6, "feet"),
  35055. weight: math.unit(190, "lb"),
  35056. name: "Front",
  35057. image: {
  35058. source: "./media/characters/huttser/front.svg",
  35059. extra: 1152/1058,
  35060. bottom: 23/1175
  35061. }
  35062. },
  35063. side: {
  35064. height: math.unit(6, "feet"),
  35065. weight: math.unit(190, "lb"),
  35066. name: "Side",
  35067. image: {
  35068. source: "./media/characters/huttser/side.svg",
  35069. extra: 1174/1065,
  35070. bottom: 18/1192
  35071. }
  35072. },
  35073. back: {
  35074. height: math.unit(6, "feet"),
  35075. weight: math.unit(190, "lb"),
  35076. name: "Back",
  35077. image: {
  35078. source: "./media/characters/huttser/back.svg",
  35079. extra: 1158/1056,
  35080. bottom: 12/1170
  35081. }
  35082. },
  35083. },
  35084. [
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  35089. {
  35090. side: {
  35091. height: math.unit(12 + 9/12, "feet"),
  35092. weight: math.unit(15000, "lb"),
  35093. name: "Side",
  35094. image: {
  35095. source: "./media/characters/faan/side.svg",
  35096. extra: 2747/2697,
  35097. bottom: 0/2747
  35098. }
  35099. },
  35100. front: {
  35101. height: math.unit(12 + 9/12, "feet"),
  35102. weight: math.unit(15000, "lb"),
  35103. name: "Front",
  35104. image: {
  35105. source: "./media/characters/faan/front.svg",
  35106. extra: 607/571,
  35107. bottom: 24/631
  35108. }
  35109. },
  35110. head: {
  35111. height: math.unit(2.85, "feet"),
  35112. name: "Head",
  35113. image: {
  35114. source: "./media/characters/faan/head.svg"
  35115. }
  35116. },
  35117. headAlt: {
  35118. height: math.unit(3.13, "feet"),
  35119. name: "Head (Alt)",
  35120. image: {
  35121. source: "./media/characters/faan/head-alt.svg"
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(12 + 9/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(6, "feet"),
  35138. weight: math.unit(300, "lb"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/tanio/front.svg",
  35142. extra: 711/673,
  35143. bottom: 25/736
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Normal",
  35150. height: math.unit(6, "feet"),
  35151. default: true
  35152. },
  35153. ]
  35154. ))
  35155. characterMakers.push(() => makeCharacter(
  35156. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35157. {
  35158. front: {
  35159. height: math.unit(3, "inches"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/noboru/front.svg",
  35163. extra: 1039/932,
  35164. bottom: 18/1057
  35165. }
  35166. },
  35167. },
  35168. [
  35169. {
  35170. name: "Micro",
  35171. height: math.unit(3, "inches"),
  35172. default: true
  35173. },
  35174. ]
  35175. ))
  35176. characterMakers.push(() => makeCharacter(
  35177. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35178. {
  35179. front: {
  35180. height: math.unit(1.85, "meters"),
  35181. weight: math.unit(80, "kg"),
  35182. name: "Front",
  35183. image: {
  35184. source: "./media/characters/daniel-barrett/front.svg",
  35185. extra: 355/337,
  35186. bottom: 9/364
  35187. }
  35188. },
  35189. },
  35190. [
  35191. {
  35192. name: "Pico",
  35193. height: math.unit(0.0433, "mm")
  35194. },
  35195. {
  35196. name: "Nano",
  35197. height: math.unit(1.5, "mm")
  35198. },
  35199. {
  35200. name: "Micro",
  35201. height: math.unit(5.3, "cm"),
  35202. default: true
  35203. },
  35204. {
  35205. name: "Normal",
  35206. height: math.unit(1.85, "meters")
  35207. },
  35208. {
  35209. name: "Macro",
  35210. height: math.unit(64.7, "meters")
  35211. },
  35212. {
  35213. name: "Megamacro",
  35214. height: math.unit(2.26, "km")
  35215. },
  35216. {
  35217. name: "Gigamacro",
  35218. height: math.unit(79, "km")
  35219. },
  35220. {
  35221. name: "Teramacro",
  35222. height: math.unit(2765, "km")
  35223. },
  35224. {
  35225. name: "Petamacro",
  35226. height: math.unit(96678, "km")
  35227. },
  35228. ]
  35229. ))
  35230. characterMakers.push(() => makeCharacter(
  35231. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35232. {
  35233. front: {
  35234. height: math.unit(30, "meters"),
  35235. weight: math.unit(400, "tons"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/zeel/front.svg",
  35239. extra: 2599/2599,
  35240. bottom: 226/2825
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Macro",
  35247. height: math.unit(30, "meters"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(6 + 7/12, "feet"),
  35257. weight: math.unit(210, "lb"),
  35258. name: "Front",
  35259. image: {
  35260. source: "./media/characters/tarn/front.svg",
  35261. extra: 3517/3220,
  35262. bottom: 91/3608
  35263. }
  35264. },
  35265. back: {
  35266. height: math.unit(6 + 7/12, "feet"),
  35267. weight: math.unit(210, "lb"),
  35268. name: "Back",
  35269. image: {
  35270. source: "./media/characters/tarn/back.svg",
  35271. extra: 3566/3241,
  35272. bottom: 34/3600
  35273. }
  35274. },
  35275. dick: {
  35276. height: math.unit(1.65, "feet"),
  35277. name: "Dick",
  35278. image: {
  35279. source: "./media/characters/tarn/dick.svg"
  35280. }
  35281. },
  35282. paw: {
  35283. height: math.unit(1.80, "feet"),
  35284. name: "Paw",
  35285. image: {
  35286. source: "./media/characters/tarn/paw.svg"
  35287. }
  35288. },
  35289. tongue: {
  35290. height: math.unit(0.97, "feet"),
  35291. name: "Tongue",
  35292. image: {
  35293. source: "./media/characters/tarn/tongue.svg"
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Micro",
  35300. height: math.unit(4, "inches")
  35301. },
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(6 + 7/12, "feet"),
  35305. default: true
  35306. },
  35307. {
  35308. name: "Macro",
  35309. height: math.unit(300, "feet")
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35315. {
  35316. front: {
  35317. height: math.unit(5 + 7/12, "feet"),
  35318. weight: math.unit(80, "kg"),
  35319. name: "Front",
  35320. image: {
  35321. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35322. extra: 3023/2865,
  35323. bottom: 33/3056
  35324. }
  35325. },
  35326. back: {
  35327. height: math.unit(5 + 7/12, "feet"),
  35328. weight: math.unit(80, "kg"),
  35329. name: "Back",
  35330. image: {
  35331. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35332. extra: 3020/2886,
  35333. bottom: 30/3050
  35334. }
  35335. },
  35336. dick: {
  35337. height: math.unit(0.98, "feet"),
  35338. name: "Dick",
  35339. image: {
  35340. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35341. }
  35342. },
  35343. anatomy: {
  35344. height: math.unit(2.86, "feet"),
  35345. name: "Anatomy",
  35346. image: {
  35347. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35348. }
  35349. },
  35350. },
  35351. [
  35352. {
  35353. name: "Really Small",
  35354. height: math.unit(2, "inches")
  35355. },
  35356. {
  35357. name: "Micro",
  35358. height: math.unit(5.583, "inches")
  35359. },
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(5 + 7/12, "feet"),
  35363. default: true
  35364. },
  35365. {
  35366. name: "Macro",
  35367. height: math.unit(67, "feet")
  35368. },
  35369. {
  35370. name: "Megamacro",
  35371. height: math.unit(134, "feet")
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(9, "feet"),
  35380. weight: math.unit(120, "lb"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/sally/front.svg",
  35384. extra: 1506/1349,
  35385. bottom: 66/1572
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(9, "feet"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(8, "feet"),
  35402. weight: math.unit(900, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/owen/front.svg",
  35406. extra: 1761/1657,
  35407. bottom: 74/1835
  35408. }
  35409. },
  35410. side: {
  35411. height: math.unit(8, "feet"),
  35412. weight: math.unit(900, "lb"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/owen/side.svg",
  35416. extra: 1797/1734,
  35417. bottom: 30/1827
  35418. }
  35419. },
  35420. back: {
  35421. height: math.unit(8, "feet"),
  35422. weight: math.unit(900, "lb"),
  35423. name: "Back",
  35424. image: {
  35425. source: "./media/characters/owen/back.svg",
  35426. extra: 1796/1706,
  35427. bottom: 59/1855
  35428. }
  35429. },
  35430. maw: {
  35431. height: math.unit(1.76, "feet"),
  35432. name: "Maw",
  35433. image: {
  35434. source: "./media/characters/owen/maw.svg"
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(8, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35448. {
  35449. front: {
  35450. height: math.unit(4, "feet"),
  35451. weight: math.unit(400, "lb"),
  35452. name: "Front",
  35453. image: {
  35454. source: "./media/characters/ryth/front.svg",
  35455. extra: 1920/1748,
  35456. bottom: 42/1962
  35457. }
  35458. },
  35459. back: {
  35460. height: math.unit(4, "feet"),
  35461. weight: math.unit(400, "lb"),
  35462. name: "Back",
  35463. image: {
  35464. source: "./media/characters/ryth/back.svg",
  35465. extra: 1897/1690,
  35466. bottom: 89/1986
  35467. }
  35468. },
  35469. mouth: {
  35470. height: math.unit(1.39, "feet"),
  35471. name: "Mouth",
  35472. image: {
  35473. source: "./media/characters/ryth/mouth.svg"
  35474. }
  35475. },
  35476. tailmaw: {
  35477. height: math.unit(1.23, "feet"),
  35478. name: "Tailmaw",
  35479. image: {
  35480. source: "./media/characters/ryth/tailmaw.svg"
  35481. }
  35482. },
  35483. goia: {
  35484. height: math.unit(4, "meters"),
  35485. weight: math.unit(10800, "lb"),
  35486. name: "Goia",
  35487. image: {
  35488. source: "./media/characters/ryth/goia.svg",
  35489. extra: 745/640,
  35490. bottom: 107/852
  35491. }
  35492. },
  35493. goiaFront: {
  35494. height: math.unit(4, "meters"),
  35495. weight: math.unit(10800, "lb"),
  35496. name: "Goia (Front)",
  35497. image: {
  35498. source: "./media/characters/ryth/goia-front.svg",
  35499. extra: 750/586,
  35500. bottom: 114/864
  35501. }
  35502. },
  35503. goiaMaw: {
  35504. height: math.unit(5.55, "feet"),
  35505. name: "Goia Maw",
  35506. image: {
  35507. source: "./media/characters/ryth/goia-maw.svg"
  35508. }
  35509. },
  35510. goiaForepaw: {
  35511. height: math.unit(3.5, "feet"),
  35512. name: "Goia Forepaw",
  35513. image: {
  35514. source: "./media/characters/ryth/goia-forepaw.svg"
  35515. }
  35516. },
  35517. goiaHindpaw: {
  35518. height: math.unit(5.55, "feet"),
  35519. name: "Goia Hindpaw",
  35520. image: {
  35521. source: "./media/characters/ryth/goia-hindpaw.svg"
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(4, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(7, "feet"),
  35538. weight: math.unit(180, "lb"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/necrolance/front.svg",
  35542. extra: 1062/947,
  35543. bottom: 41/1103
  35544. }
  35545. },
  35546. back: {
  35547. height: math.unit(7, "feet"),
  35548. weight: math.unit(180, "lb"),
  35549. name: "Back",
  35550. image: {
  35551. source: "./media/characters/necrolance/back.svg",
  35552. extra: 1045/984,
  35553. bottom: 14/1059
  35554. }
  35555. },
  35556. wing: {
  35557. height: math.unit(2.67, "feet"),
  35558. name: "Wing",
  35559. image: {
  35560. source: "./media/characters/necrolance/wing.svg"
  35561. }
  35562. },
  35563. },
  35564. [
  35565. {
  35566. name: "Normal",
  35567. height: math.unit(7, "feet"),
  35568. default: true
  35569. },
  35570. ]
  35571. ))
  35572. characterMakers.push(() => makeCharacter(
  35573. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35574. {
  35575. front: {
  35576. height: math.unit(76, "meters"),
  35577. weight: math.unit(30000, "tons"),
  35578. name: "Front",
  35579. image: {
  35580. source: "./media/characters/tyler/front.svg",
  35581. extra: 1640/1640,
  35582. bottom: 114/1754
  35583. }
  35584. },
  35585. },
  35586. [
  35587. {
  35588. name: "Macro",
  35589. height: math.unit(76, "meters"),
  35590. default: true
  35591. },
  35592. ]
  35593. ))
  35594. characterMakers.push(() => makeCharacter(
  35595. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35596. {
  35597. front: {
  35598. height: math.unit(4 + 11/12, "feet"),
  35599. weight: math.unit(132, "lb"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/icey/front.svg",
  35603. extra: 2750/2550,
  35604. bottom: 33/2783
  35605. }
  35606. },
  35607. back: {
  35608. height: math.unit(4 + 11/12, "feet"),
  35609. weight: math.unit(132, "lb"),
  35610. name: "Back",
  35611. image: {
  35612. source: "./media/characters/icey/back.svg",
  35613. extra: 2624/2481,
  35614. bottom: 35/2659
  35615. }
  35616. },
  35617. },
  35618. [
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(4 + 11/12, "feet"),
  35622. default: true
  35623. },
  35624. ]
  35625. ))
  35626. characterMakers.push(() => makeCharacter(
  35627. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35628. {
  35629. front: {
  35630. height: math.unit(100, "feet"),
  35631. weight: math.unit(0, "lb"),
  35632. name: "Front",
  35633. image: {
  35634. source: "./media/characters/smile/front.svg",
  35635. extra: 2983/2912,
  35636. bottom: 162/3145
  35637. }
  35638. },
  35639. back: {
  35640. height: math.unit(100, "feet"),
  35641. weight: math.unit(0, "lb"),
  35642. name: "Back",
  35643. image: {
  35644. source: "./media/characters/smile/back.svg",
  35645. extra: 3143/3031,
  35646. bottom: 91/3234
  35647. }
  35648. },
  35649. head: {
  35650. height: math.unit(26.3, "feet"),
  35651. weight: math.unit(0, "lb"),
  35652. name: "Head",
  35653. image: {
  35654. source: "./media/characters/smile/head.svg"
  35655. }
  35656. },
  35657. collar: {
  35658. height: math.unit(5.3, "feet"),
  35659. weight: math.unit(0, "lb"),
  35660. name: "Collar",
  35661. image: {
  35662. source: "./media/characters/smile/collar.svg"
  35663. }
  35664. },
  35665. },
  35666. [
  35667. {
  35668. name: "Macro",
  35669. height: math.unit(100, "feet"),
  35670. default: true
  35671. },
  35672. ]
  35673. ))
  35674. characterMakers.push(() => makeCharacter(
  35675. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35676. {
  35677. dragon: {
  35678. height: math.unit(26, "feet"),
  35679. weight: math.unit(36, "tons"),
  35680. name: "Dragon",
  35681. image: {
  35682. source: "./media/characters/arimphae/dragon.svg",
  35683. extra: 1574/983,
  35684. bottom: 357/1931
  35685. }
  35686. },
  35687. drake: {
  35688. height: math.unit(9, "feet"),
  35689. weight: math.unit(1.5, "tons"),
  35690. name: "Drake",
  35691. image: {
  35692. source: "./media/characters/arimphae/drake.svg",
  35693. extra: 1120/925,
  35694. bottom: 435/1555
  35695. }
  35696. },
  35697. },
  35698. [
  35699. {
  35700. name: "Small",
  35701. height: math.unit(26*5/9, "feet")
  35702. },
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(26, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35712. {
  35713. front: {
  35714. height: math.unit(8 + 9/12, "feet"),
  35715. name: "Front",
  35716. image: {
  35717. source: "./media/characters/xander/front.svg",
  35718. extra: 1237/974,
  35719. bottom: 94/1331
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(8 + 9/12, "feet"),
  35727. default: true
  35728. },
  35729. {
  35730. name: "Gaze Grabber",
  35731. height: math.unit(13 + 8/12, "feet")
  35732. },
  35733. {
  35734. name: "Jaw Dropper",
  35735. height: math.unit(27, "feet")
  35736. },
  35737. {
  35738. name: "Show Stopper",
  35739. height: math.unit(136, "feet")
  35740. },
  35741. {
  35742. name: "Superstar",
  35743. height: math.unit(1.9e6, "miles")
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35749. {
  35750. side: {
  35751. height: math.unit(2100, "feet"),
  35752. name: "Side",
  35753. image: {
  35754. source: "./media/characters/osiris/side.svg",
  35755. extra: 1105/939,
  35756. bottom: 167/1272
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Macro",
  35763. height: math.unit(2100, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(6 + 8/12, "feet"),
  35773. weight: math.unit(225, "lb"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/rhys-londe/front.svg",
  35777. extra: 2258/2141,
  35778. bottom: 188/2446
  35779. }
  35780. },
  35781. back: {
  35782. height: math.unit(6 + 8/12, "feet"),
  35783. weight: math.unit(225, "lb"),
  35784. name: "Back",
  35785. image: {
  35786. source: "./media/characters/rhys-londe/back.svg",
  35787. extra: 2237/2137,
  35788. bottom: 63/2300
  35789. }
  35790. },
  35791. frontNsfw: {
  35792. height: math.unit(6 + 8/12, "feet"),
  35793. weight: math.unit(225, "lb"),
  35794. name: "Front (NSFW)",
  35795. image: {
  35796. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35797. extra: 2258/2141,
  35798. bottom: 188/2446
  35799. }
  35800. },
  35801. backNsfw: {
  35802. height: math.unit(6 + 8/12, "feet"),
  35803. weight: math.unit(225, "lb"),
  35804. name: "Back (NSFW)",
  35805. image: {
  35806. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35807. extra: 2237/2137,
  35808. bottom: 63/2300
  35809. }
  35810. },
  35811. dick: {
  35812. height: math.unit(30, "inches"),
  35813. name: "Dick",
  35814. image: {
  35815. source: "./media/characters/rhys-londe/dick.svg"
  35816. }
  35817. },
  35818. maw: {
  35819. height: math.unit(1.6, "feet"),
  35820. name: "Maw",
  35821. image: {
  35822. source: "./media/characters/rhys-londe/maw.svg"
  35823. }
  35824. },
  35825. },
  35826. [
  35827. {
  35828. name: "Normal",
  35829. height: math.unit(6 + 8/12, "feet"),
  35830. default: true
  35831. },
  35832. ]
  35833. ))
  35834. characterMakers.push(() => makeCharacter(
  35835. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35836. {
  35837. front: {
  35838. height: math.unit(3 + 10/12, "feet"),
  35839. weight: math.unit(90, "lb"),
  35840. name: "Front",
  35841. image: {
  35842. source: "./media/characters/taivas-ensim/front.svg",
  35843. extra: 1327/1216,
  35844. bottom: 96/1423
  35845. }
  35846. },
  35847. back: {
  35848. height: math.unit(3 + 10/12, "feet"),
  35849. weight: math.unit(90, "lb"),
  35850. name: "Back",
  35851. image: {
  35852. source: "./media/characters/taivas-ensim/back.svg",
  35853. extra: 1355/1247,
  35854. bottom: 11/1366
  35855. }
  35856. },
  35857. frontNsfw: {
  35858. height: math.unit(3 + 10/12, "feet"),
  35859. weight: math.unit(90, "lb"),
  35860. name: "Front (NSFW)",
  35861. image: {
  35862. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35863. extra: 1327/1216,
  35864. bottom: 96/1423
  35865. }
  35866. },
  35867. backNsfw: {
  35868. height: math.unit(3 + 10/12, "feet"),
  35869. weight: math.unit(90, "lb"),
  35870. name: "Back (NSFW)",
  35871. image: {
  35872. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35873. extra: 1355/1247,
  35874. bottom: 11/1366
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(3 + 10/12, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35888. {
  35889. front: {
  35890. height: math.unit(9 + 6/12, "feet"),
  35891. weight: math.unit(940, "lb"),
  35892. name: "Front",
  35893. image: {
  35894. source: "./media/characters/byliss/front.svg",
  35895. extra: 1327/1290,
  35896. bottom: 82/1409
  35897. }
  35898. },
  35899. back: {
  35900. height: math.unit(9 + 6/12, "feet"),
  35901. weight: math.unit(940, "lb"),
  35902. name: "Back",
  35903. image: {
  35904. source: "./media/characters/byliss/back.svg",
  35905. extra: 1376/1349,
  35906. bottom: 9/1385
  35907. }
  35908. },
  35909. frontNsfw: {
  35910. height: math.unit(9 + 6/12, "feet"),
  35911. weight: math.unit(940, "lb"),
  35912. name: "Front (NSFW)",
  35913. image: {
  35914. source: "./media/characters/byliss/front-nsfw.svg",
  35915. extra: 1327/1290,
  35916. bottom: 82/1409
  35917. }
  35918. },
  35919. backNsfw: {
  35920. height: math.unit(9 + 6/12, "feet"),
  35921. weight: math.unit(940, "lb"),
  35922. name: "Back (NSFW)",
  35923. image: {
  35924. source: "./media/characters/byliss/back-nsfw.svg",
  35925. extra: 1376/1349,
  35926. bottom: 9/1385
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(9 + 6/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(5 + 2/12, "feet"),
  35943. weight: math.unit(200, "lb"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/noraly/front.svg",
  35947. extra: 4985/4773,
  35948. bottom: 150/5135
  35949. }
  35950. },
  35951. full: {
  35952. height: math.unit(5 + 2/12, "feet"),
  35953. weight: math.unit(164, "lb"),
  35954. name: "Full",
  35955. image: {
  35956. source: "./media/characters/noraly/full.svg",
  35957. extra: 1114/1059,
  35958. bottom: 35/1149
  35959. }
  35960. },
  35961. fuller: {
  35962. height: math.unit(5 + 2/12, "feet"),
  35963. weight: math.unit(230, "lb"),
  35964. name: "Fuller",
  35965. image: {
  35966. source: "./media/characters/noraly/fuller.svg",
  35967. extra: 1114/1059,
  35968. bottom: 35/1149
  35969. }
  35970. },
  35971. fullest: {
  35972. height: math.unit(5 + 2/12, "feet"),
  35973. weight: math.unit(300, "lb"),
  35974. name: "Fullest",
  35975. image: {
  35976. source: "./media/characters/noraly/fullest.svg",
  35977. extra: 1114/1059,
  35978. bottom: 35/1149
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(5 + 2/12, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35992. {
  35993. front: {
  35994. height: math.unit(5 + 2/12, "feet"),
  35995. weight: math.unit(210, "lb"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/pera/front.svg",
  35999. extra: 1560/1531,
  36000. bottom: 165/1725
  36001. }
  36002. },
  36003. back: {
  36004. height: math.unit(5 + 2/12, "feet"),
  36005. weight: math.unit(210, "lb"),
  36006. name: "Back",
  36007. image: {
  36008. source: "./media/characters/pera/back.svg",
  36009. extra: 1523/1493,
  36010. bottom: 152/1675
  36011. }
  36012. },
  36013. dick: {
  36014. height: math.unit(2.4, "feet"),
  36015. name: "Dick",
  36016. image: {
  36017. source: "./media/characters/pera/dick.svg"
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Normal",
  36024. height: math.unit(5 + 2/12, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(12, "feet"),
  36034. weight: math.unit(3200, "lb"),
  36035. name: "Front",
  36036. image: {
  36037. source: "./media/characters/julian/front.svg",
  36038. extra: 2962/2701,
  36039. bottom: 184/3146
  36040. }
  36041. },
  36042. maw: {
  36043. height: math.unit(5.35, "feet"),
  36044. name: "Maw",
  36045. image: {
  36046. source: "./media/characters/julian/maw.svg"
  36047. }
  36048. },
  36049. paw: {
  36050. height: math.unit(3.07, "feet"),
  36051. name: "Paw",
  36052. image: {
  36053. source: "./media/characters/julian/paw.svg"
  36054. }
  36055. },
  36056. },
  36057. [
  36058. {
  36059. name: "Actual Size",
  36060. height: math.unit(1e-8, "angstroms")
  36061. },
  36062. {
  36063. name: "Max Size",
  36064. height: math.unit(0.01, "mm"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  36071. {
  36072. solgooleo: {
  36073. height: math.unit(4, "meters"),
  36074. weight: math.unit(6000*1.5, "kg"),
  36075. volume: math.unit(6000, "liters"),
  36076. name: "Solgooleo",
  36077. image: {
  36078. source: "./media/characters/pi/solgooleo.svg",
  36079. extra: 388/331,
  36080. bottom: 29/417
  36081. }
  36082. },
  36083. },
  36084. [
  36085. {
  36086. name: "Normal",
  36087. height: math.unit(4, "meters"),
  36088. default: true
  36089. },
  36090. ]
  36091. ))
  36092. characterMakers.push(() => makeCharacter(
  36093. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  36094. {
  36095. front: {
  36096. height: math.unit(8, "feet"),
  36097. weight: math.unit(4, "tons"),
  36098. name: "Front",
  36099. image: {
  36100. source: "./media/characters/shaun/front.svg",
  36101. extra: 503/495,
  36102. bottom: 20/523
  36103. }
  36104. },
  36105. back: {
  36106. height: math.unit(8, "feet"),
  36107. weight: math.unit(4, "tons"),
  36108. name: "Back",
  36109. image: {
  36110. source: "./media/characters/shaun/back.svg",
  36111. extra: 487/480,
  36112. bottom: 20/507
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Lorg",
  36119. height: math.unit(8, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36126. {
  36127. frontAnthro: {
  36128. height: math.unit(7, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/sini/front-anthro.svg",
  36132. extra: 726/678,
  36133. bottom: 35/761
  36134. },
  36135. form: "anthro",
  36136. default: true
  36137. },
  36138. backAnthro: {
  36139. height: math.unit(7, "feet"),
  36140. name: "Back",
  36141. image: {
  36142. source: "./media/characters/sini/back-anthro.svg",
  36143. extra: 743/701,
  36144. bottom: 12/755
  36145. },
  36146. form: "anthro",
  36147. },
  36148. frontAnthroNsfw: {
  36149. height: math.unit(7, "feet"),
  36150. name: "Front (NSFW)",
  36151. image: {
  36152. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36153. extra: 726/678,
  36154. bottom: 35/761
  36155. },
  36156. form: "anthro"
  36157. },
  36158. backAnthroNsfw: {
  36159. height: math.unit(7, "feet"),
  36160. name: "Back (NSFW)",
  36161. image: {
  36162. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36163. extra: 743/701,
  36164. bottom: 12/755
  36165. },
  36166. form: "anthro",
  36167. },
  36168. mawAnthro: {
  36169. height: math.unit(2.14, "feet"),
  36170. name: "Maw",
  36171. image: {
  36172. source: "./media/characters/sini/maw-anthro.svg"
  36173. },
  36174. form: "anthro"
  36175. },
  36176. dick: {
  36177. height: math.unit(1.45, "feet"),
  36178. name: "Dick",
  36179. image: {
  36180. source: "./media/characters/sini/dick-anthro.svg"
  36181. },
  36182. form: "anthro"
  36183. },
  36184. feral: {
  36185. height: math.unit(16, "feet"),
  36186. name: "Feral",
  36187. image: {
  36188. source: "./media/characters/sini/feral.svg",
  36189. extra: 814/605,
  36190. bottom: 11/825
  36191. },
  36192. form: "feral",
  36193. default: true
  36194. },
  36195. feralNsfw: {
  36196. height: math.unit(16, "feet"),
  36197. name: "Feral (NSFW)",
  36198. image: {
  36199. source: "./media/characters/sini/feral-nsfw.svg",
  36200. extra: 814/605,
  36201. bottom: 11/825
  36202. },
  36203. form: "feral"
  36204. },
  36205. mawFeral: {
  36206. height: math.unit(5.66, "feet"),
  36207. name: "Maw",
  36208. image: {
  36209. source: "./media/characters/sini/maw-feral.svg"
  36210. },
  36211. form: "feral",
  36212. },
  36213. pawFeral: {
  36214. height: math.unit(5.17, "feet"),
  36215. name: "Paw",
  36216. image: {
  36217. source: "./media/characters/sini/paw-feral.svg"
  36218. },
  36219. form: "feral",
  36220. },
  36221. rumpFeral: {
  36222. height: math.unit(13.11, "feet"),
  36223. name: "Rump",
  36224. image: {
  36225. source: "./media/characters/sini/rump-feral.svg"
  36226. },
  36227. form: "feral",
  36228. },
  36229. dickFeral: {
  36230. height: math.unit(1, "feet"),
  36231. name: "Dick",
  36232. image: {
  36233. source: "./media/characters/sini/dick-feral.svg"
  36234. },
  36235. form: "feral",
  36236. },
  36237. eyeFeral: {
  36238. height: math.unit(1.23, "feet"),
  36239. name: "Eye",
  36240. image: {
  36241. source: "./media/characters/sini/eye-feral.svg"
  36242. },
  36243. form: "feral",
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(7, "feet"),
  36250. default: true,
  36251. form: "anthro"
  36252. },
  36253. {
  36254. name: "Normal",
  36255. height: math.unit(16, "feet"),
  36256. default: true,
  36257. form: "feral"
  36258. },
  36259. ],
  36260. {
  36261. "anthro": {
  36262. name: "Anthro",
  36263. default: true
  36264. },
  36265. "feral": {
  36266. name: "Feral",
  36267. }
  36268. }
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36272. {
  36273. side: {
  36274. height: math.unit(47.2, "meters"),
  36275. weight: math.unit(10000, "tons"),
  36276. name: "Side",
  36277. image: {
  36278. source: "./media/characters/raylldo/side.svg",
  36279. extra: 2363/642,
  36280. bottom: 221/2584
  36281. }
  36282. },
  36283. top: {
  36284. height: math.unit(240, "meters"),
  36285. weight: math.unit(10000, "tons"),
  36286. name: "Top",
  36287. image: {
  36288. source: "./media/characters/raylldo/top.svg"
  36289. }
  36290. },
  36291. bottom: {
  36292. height: math.unit(240, "meters"),
  36293. weight: math.unit(10000, "tons"),
  36294. name: "Bottom",
  36295. image: {
  36296. source: "./media/characters/raylldo/bottom.svg"
  36297. }
  36298. },
  36299. head: {
  36300. height: math.unit(38.6, "meters"),
  36301. name: "Head",
  36302. image: {
  36303. source: "./media/characters/raylldo/head.svg",
  36304. extra: 1335/1112,
  36305. bottom: 0/1335
  36306. }
  36307. },
  36308. maw: {
  36309. height: math.unit(16.37, "meters"),
  36310. name: "Maw",
  36311. image: {
  36312. source: "./media/characters/raylldo/maw.svg",
  36313. extra: 883/660,
  36314. bottom: 0/883
  36315. },
  36316. extraAttributes: {
  36317. preyCapacity: {
  36318. name: "Capacity",
  36319. power: 3,
  36320. type: "volume",
  36321. base: math.unit(1000, "people")
  36322. },
  36323. tongueSize: {
  36324. name: "Tongue Size",
  36325. power: 2,
  36326. type: "area",
  36327. base: math.unit(21, "m^2")
  36328. }
  36329. }
  36330. },
  36331. forepaw: {
  36332. height: math.unit(18, "meters"),
  36333. name: "Forepaw",
  36334. image: {
  36335. source: "./media/characters/raylldo/forepaw.svg"
  36336. }
  36337. },
  36338. hindpaw: {
  36339. height: math.unit(23, "meters"),
  36340. name: "Hindpaw",
  36341. image: {
  36342. source: "./media/characters/raylldo/hindpaw.svg"
  36343. }
  36344. },
  36345. genitals: {
  36346. height: math.unit(42, "meters"),
  36347. name: "Genitals",
  36348. image: {
  36349. source: "./media/characters/raylldo/genitals.svg"
  36350. }
  36351. },
  36352. },
  36353. [
  36354. {
  36355. name: "Normal",
  36356. height: math.unit(47.2, "meters"),
  36357. default: true
  36358. },
  36359. ]
  36360. ))
  36361. characterMakers.push(() => makeCharacter(
  36362. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36363. {
  36364. anthroFront: {
  36365. height: math.unit(9, "feet"),
  36366. weight: math.unit(600, "lb"),
  36367. name: "Anthro (Front)",
  36368. image: {
  36369. source: "./media/characters/glint/anthro-front.svg",
  36370. extra: 1097/1018,
  36371. bottom: 28/1125
  36372. }
  36373. },
  36374. anthroBack: {
  36375. height: math.unit(9, "feet"),
  36376. weight: math.unit(600, "lb"),
  36377. name: "Anthro (Back)",
  36378. image: {
  36379. source: "./media/characters/glint/anthro-back.svg",
  36380. extra: 1154/997,
  36381. bottom: 36/1190
  36382. }
  36383. },
  36384. feral: {
  36385. height: math.unit(11, "feet"),
  36386. weight: math.unit(50000, "lb"),
  36387. name: "Feral",
  36388. image: {
  36389. source: "./media/characters/glint/feral.svg",
  36390. extra: 3035/1585,
  36391. bottom: 1169/4204
  36392. }
  36393. },
  36394. dickAnthro: {
  36395. height: math.unit(0.7, "meters"),
  36396. name: "Dick (Anthro)",
  36397. image: {
  36398. source: "./media/characters/glint/dick-anthro.svg"
  36399. }
  36400. },
  36401. dickFeral: {
  36402. height: math.unit(2.65, "meters"),
  36403. name: "Dick (Feral)",
  36404. image: {
  36405. source: "./media/characters/glint/dick-feral.svg"
  36406. }
  36407. },
  36408. slitHidden: {
  36409. height: math.unit(5.85, "meters"),
  36410. name: "Slit (Hidden)",
  36411. image: {
  36412. source: "./media/characters/glint/slit-hidden.svg"
  36413. }
  36414. },
  36415. slitErect: {
  36416. height: math.unit(5.85, "meters"),
  36417. name: "Slit (Erect)",
  36418. image: {
  36419. source: "./media/characters/glint/slit-erect.svg"
  36420. }
  36421. },
  36422. mawAnthro: {
  36423. height: math.unit(0.63, "meters"),
  36424. name: "Maw (Anthro)",
  36425. image: {
  36426. source: "./media/characters/glint/maw.svg"
  36427. }
  36428. },
  36429. mawFeral: {
  36430. height: math.unit(2.89, "meters"),
  36431. name: "Maw (Feral)",
  36432. image: {
  36433. source: "./media/characters/glint/maw.svg"
  36434. }
  36435. },
  36436. },
  36437. [
  36438. {
  36439. name: "Normal",
  36440. height: math.unit(9, "feet"),
  36441. default: true
  36442. },
  36443. ]
  36444. ))
  36445. characterMakers.push(() => makeCharacter(
  36446. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36447. {
  36448. side: {
  36449. height: math.unit(15, "feet"),
  36450. weight: math.unit(5000, "kg"),
  36451. name: "Side",
  36452. image: {
  36453. source: "./media/characters/kairne/side.svg",
  36454. extra: 979/811,
  36455. bottom: 13/992
  36456. }
  36457. },
  36458. front: {
  36459. height: math.unit(15, "feet"),
  36460. weight: math.unit(5000, "kg"),
  36461. name: "Front",
  36462. image: {
  36463. source: "./media/characters/kairne/front.svg",
  36464. extra: 908/814,
  36465. bottom: 26/934
  36466. }
  36467. },
  36468. sideNsfw: {
  36469. height: math.unit(15, "feet"),
  36470. weight: math.unit(5000, "kg"),
  36471. name: "Side (NSFW)",
  36472. image: {
  36473. source: "./media/characters/kairne/side-nsfw.svg",
  36474. extra: 979/811,
  36475. bottom: 13/992
  36476. }
  36477. },
  36478. frontNsfw: {
  36479. height: math.unit(15, "feet"),
  36480. weight: math.unit(5000, "kg"),
  36481. name: "Front (NSFW)",
  36482. image: {
  36483. source: "./media/characters/kairne/front-nsfw.svg",
  36484. extra: 908/814,
  36485. bottom: 26/934
  36486. }
  36487. },
  36488. dickCaged: {
  36489. height: math.unit(0.65, "meters"),
  36490. name: "Dick (Caged)",
  36491. image: {
  36492. source: "./media/characters/kairne/dick-caged.svg"
  36493. }
  36494. },
  36495. dick: {
  36496. height: math.unit(0.79, "meters"),
  36497. name: "Dick",
  36498. image: {
  36499. source: "./media/characters/kairne/dick.svg"
  36500. }
  36501. },
  36502. genitals: {
  36503. height: math.unit(1.29, "meters"),
  36504. name: "Genitals",
  36505. image: {
  36506. source: "./media/characters/kairne/genitals.svg"
  36507. }
  36508. },
  36509. maw: {
  36510. height: math.unit(1.73, "meters"),
  36511. name: "Maw",
  36512. image: {
  36513. source: "./media/characters/kairne/maw.svg"
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(15, "feet"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(5 + 8/12, "feet"),
  36530. weight: math.unit(139, "lb"),
  36531. name: "Front",
  36532. image: {
  36533. source: "./media/characters/biscuit-jackal/front.svg",
  36534. extra: 2106/1961,
  36535. bottom: 58/2164
  36536. }
  36537. },
  36538. back: {
  36539. height: math.unit(5 + 8/12, "feet"),
  36540. weight: math.unit(139, "lb"),
  36541. name: "Back",
  36542. image: {
  36543. source: "./media/characters/biscuit-jackal/back.svg",
  36544. extra: 2132/1976,
  36545. bottom: 57/2189
  36546. }
  36547. },
  36548. werejackal: {
  36549. height: math.unit(6 + 3/12, "feet"),
  36550. weight: math.unit(188, "lb"),
  36551. name: "Werejackal",
  36552. image: {
  36553. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36554. extra: 2373/2178,
  36555. bottom: 53/2426
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(5 + 8/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(140, "cm"),
  36572. weight: math.unit(45, "kg"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/tayra-white/front.svg",
  36576. extra: 2229/2192,
  36577. bottom: 75/2304
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Normal",
  36584. height: math.unit(140, "cm"),
  36585. default: true
  36586. },
  36587. ]
  36588. ))
  36589. characterMakers.push(() => makeCharacter(
  36590. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36591. {
  36592. front: {
  36593. height: math.unit(4 + 5/12, "feet"),
  36594. name: "Front",
  36595. image: {
  36596. source: "./media/characters/scoop/front.svg",
  36597. extra: 1257/1136,
  36598. bottom: 69/1326
  36599. }
  36600. },
  36601. back: {
  36602. height: math.unit(4 + 5/12, "feet"),
  36603. name: "Back",
  36604. image: {
  36605. source: "./media/characters/scoop/back.svg",
  36606. extra: 1321/1152,
  36607. bottom: 32/1353
  36608. }
  36609. },
  36610. maw: {
  36611. height: math.unit(0.68, "feet"),
  36612. name: "Maw",
  36613. image: {
  36614. source: "./media/characters/scoop/maw.svg"
  36615. }
  36616. },
  36617. },
  36618. [
  36619. {
  36620. name: "Really Small",
  36621. height: math.unit(1, "mm")
  36622. },
  36623. {
  36624. name: "Micro",
  36625. height: math.unit(1, "inch")
  36626. },
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(4 + 5/12, "feet"),
  36630. default: true
  36631. },
  36632. {
  36633. name: "Macro",
  36634. height: math.unit(200, "feet")
  36635. },
  36636. {
  36637. name: "Megamacro",
  36638. height: math.unit(3240, "feet")
  36639. },
  36640. {
  36641. name: "Teramacro",
  36642. height: math.unit(2500, "miles")
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(15 + 7/12, "feet"),
  36651. weight: math.unit(1150, "tons"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/saphinara/front.svg",
  36655. extra: 1837/1643,
  36656. bottom: 84/1921
  36657. },
  36658. form: "normal",
  36659. default: true
  36660. },
  36661. side: {
  36662. height: math.unit(15 + 7/12, "feet"),
  36663. weight: math.unit(1150, "tons"),
  36664. name: "Side",
  36665. image: {
  36666. source: "./media/characters/saphinara/side.svg",
  36667. extra: 605/547,
  36668. bottom: 6/611
  36669. },
  36670. form: "normal"
  36671. },
  36672. back: {
  36673. height: math.unit(15 + 7/12, "feet"),
  36674. weight: math.unit(1150, "tons"),
  36675. name: "Back",
  36676. image: {
  36677. source: "./media/characters/saphinara/back.svg",
  36678. extra: 591/531,
  36679. bottom: 13/604
  36680. },
  36681. form: "normal"
  36682. },
  36683. frontTail: {
  36684. height: math.unit(15 + 7/12, "feet"),
  36685. weight: math.unit(1150, "tons"),
  36686. name: "Front (Full Tail)",
  36687. image: {
  36688. source: "./media/characters/saphinara/front-tail.svg",
  36689. extra: 2256/1630,
  36690. bottom: 261/2517
  36691. },
  36692. form: "normal"
  36693. },
  36694. insides: {
  36695. height: math.unit(11.92, "feet"),
  36696. name: "Insides",
  36697. image: {
  36698. source: "./media/characters/saphinara/insides.svg"
  36699. },
  36700. form: "normal"
  36701. },
  36702. head: {
  36703. height: math.unit(4.17, "feet"),
  36704. name: "Head",
  36705. image: {
  36706. source: "./media/characters/saphinara/head.svg"
  36707. },
  36708. form: "normal"
  36709. },
  36710. tongue: {
  36711. height: math.unit(4.60, "feet"),
  36712. name: "Tongue",
  36713. image: {
  36714. source: "./media/characters/saphinara/tongue.svg"
  36715. },
  36716. form: "normal"
  36717. },
  36718. headEnraged: {
  36719. height: math.unit(5.55, "feet"),
  36720. name: "Head (Enraged)",
  36721. image: {
  36722. source: "./media/characters/saphinara/head-enraged.svg"
  36723. },
  36724. form: "normal"
  36725. },
  36726. wings: {
  36727. height: math.unit(11.95, "feet"),
  36728. name: "Wings",
  36729. image: {
  36730. source: "./media/characters/saphinara/wings.svg"
  36731. },
  36732. form: "normal"
  36733. },
  36734. feathers: {
  36735. height: math.unit(8.92, "feet"),
  36736. name: "Feathers",
  36737. image: {
  36738. source: "./media/characters/saphinara/feathers.svg"
  36739. },
  36740. form: "normal"
  36741. },
  36742. shackles: {
  36743. height: math.unit(2, "feet"),
  36744. name: "Shackles",
  36745. image: {
  36746. source: "./media/characters/saphinara/shackles.svg"
  36747. },
  36748. form: "normal"
  36749. },
  36750. eyes: {
  36751. height: math.unit(1.331, "feet"),
  36752. name: "Eyes",
  36753. image: {
  36754. source: "./media/characters/saphinara/eyes.svg"
  36755. },
  36756. form: "normal"
  36757. },
  36758. eyesEnraged: {
  36759. height: math.unit(1.331, "feet"),
  36760. name: "Eyes (Enraged)",
  36761. image: {
  36762. source: "./media/characters/saphinara/eyes-enraged.svg"
  36763. },
  36764. form: "normal"
  36765. },
  36766. trueFormSide: {
  36767. height: math.unit(200, "feet"),
  36768. weight: math.unit(1e7, "tons"),
  36769. name: "Side",
  36770. image: {
  36771. source: "./media/characters/saphinara/true-form-side.svg",
  36772. extra: 1399/770,
  36773. bottom: 97/1496
  36774. },
  36775. form: "true-form",
  36776. default: true
  36777. },
  36778. trueFormMaw: {
  36779. height: math.unit(71.5, "feet"),
  36780. name: "Maw",
  36781. image: {
  36782. source: "./media/characters/saphinara/true-form-maw.svg",
  36783. extra: 2302/1453,
  36784. bottom: 0/2302
  36785. },
  36786. form: "true-form"
  36787. },
  36788. meowberusSide: {
  36789. height: math.unit(75, "feet"),
  36790. weight: math.unit(180000, "kg"),
  36791. preyCapacity: math.unit(50000, "people"),
  36792. name: "Side",
  36793. image: {
  36794. source: "./media/characters/saphinara/meowberus-side.svg",
  36795. extra: 1400/711,
  36796. bottom: 126/1526
  36797. },
  36798. form: "meowberus",
  36799. extraAttributes: {
  36800. "pawArea": {
  36801. name: "Paw Size",
  36802. power: 2,
  36803. type: "area",
  36804. base: math.unit(35, "m^2")
  36805. }
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(15 + 7/12, "feet"),
  36813. default: true,
  36814. form: "normal"
  36815. },
  36816. {
  36817. name: "Angry",
  36818. height: math.unit(30 + 6/12, "feet"),
  36819. form: "normal"
  36820. },
  36821. {
  36822. name: "Enraged",
  36823. height: math.unit(102 + 1/12, "feet"),
  36824. form: "normal"
  36825. },
  36826. {
  36827. name: "True",
  36828. height: math.unit(200, "feet"),
  36829. default: true,
  36830. form: "true-form"
  36831. },
  36832. {
  36833. name: "Normal",
  36834. height: math.unit(75, "feet"),
  36835. default: true,
  36836. form: "meowberus"
  36837. },
  36838. ],
  36839. {
  36840. "normal": {
  36841. name: "Normal",
  36842. default: true
  36843. },
  36844. "true-form": {
  36845. name: "True Form"
  36846. },
  36847. "meowberus": {
  36848. name: "Meowberus",
  36849. },
  36850. }
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(6 + 8/12, "feet"),
  36857. weight: math.unit(300, "lb"),
  36858. name: "Front",
  36859. image: {
  36860. source: "./media/characters/jrain/front.svg",
  36861. extra: 3039/2865,
  36862. bottom: 399/3438
  36863. }
  36864. },
  36865. back: {
  36866. height: math.unit(6 + 8/12, "feet"),
  36867. weight: math.unit(300, "lb"),
  36868. name: "Back",
  36869. image: {
  36870. source: "./media/characters/jrain/back.svg",
  36871. extra: 3089/2938,
  36872. bottom: 172/3261
  36873. }
  36874. },
  36875. head: {
  36876. height: math.unit(2.14, "feet"),
  36877. name: "Head",
  36878. image: {
  36879. source: "./media/characters/jrain/head.svg"
  36880. }
  36881. },
  36882. maw: {
  36883. height: math.unit(1.77, "feet"),
  36884. name: "Maw",
  36885. image: {
  36886. source: "./media/characters/jrain/maw.svg"
  36887. }
  36888. },
  36889. leftHand: {
  36890. height: math.unit(1.1, "feet"),
  36891. name: "Left Hand",
  36892. image: {
  36893. source: "./media/characters/jrain/left-hand.svg"
  36894. }
  36895. },
  36896. rightHand: {
  36897. height: math.unit(1.1, "feet"),
  36898. name: "Right Hand",
  36899. image: {
  36900. source: "./media/characters/jrain/right-hand.svg"
  36901. }
  36902. },
  36903. eye: {
  36904. height: math.unit(0.35, "feet"),
  36905. name: "Eye",
  36906. image: {
  36907. source: "./media/characters/jrain/eye.svg"
  36908. }
  36909. },
  36910. },
  36911. [
  36912. {
  36913. name: "Normal",
  36914. height: math.unit(6 + 8/12, "feet"),
  36915. default: true
  36916. },
  36917. {
  36918. name: "Casually Large",
  36919. height: math.unit(25, "feet")
  36920. },
  36921. {
  36922. name: "Giant",
  36923. height: math.unit(100, "feet")
  36924. },
  36925. {
  36926. name: "Kaiju",
  36927. height: math.unit(300, "feet")
  36928. },
  36929. ]
  36930. ))
  36931. characterMakers.push(() => makeCharacter(
  36932. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36933. {
  36934. dragon: {
  36935. height: math.unit(5, "meters"),
  36936. name: "Dragon",
  36937. image: {
  36938. source: "./media/characters/sabrina/dragon.svg",
  36939. extra: 3670 / 2365,
  36940. bottom: 333 / 4003
  36941. }
  36942. },
  36943. gryphon: {
  36944. height: math.unit(3, "meters"),
  36945. name: "Gryphon",
  36946. image: {
  36947. source: "./media/characters/sabrina/gryphon.svg",
  36948. extra: 1576 / 945,
  36949. bottom: 71 / 1647
  36950. }
  36951. },
  36952. snake: {
  36953. height: math.unit(12, "meters"),
  36954. name: "Snake",
  36955. image: {
  36956. source: "./media/characters/sabrina/snake.svg",
  36957. extra: 1758 / 1320,
  36958. bottom: 186 / 1944
  36959. }
  36960. },
  36961. collar: {
  36962. height: math.unit(1.86, "meters"),
  36963. name: "Collar",
  36964. image: {
  36965. source: "./media/characters/sabrina/collar.svg"
  36966. }
  36967. },
  36968. eye: {
  36969. height: math.unit(0.53, "meters"),
  36970. name: "Eye",
  36971. image: {
  36972. source: "./media/characters/sabrina/eye.svg"
  36973. }
  36974. },
  36975. foot: {
  36976. height: math.unit(1.86, "meters"),
  36977. name: "Foot",
  36978. image: {
  36979. source: "./media/characters/sabrina/foot.svg"
  36980. }
  36981. },
  36982. hand: {
  36983. height: math.unit(1.32, "meters"),
  36984. name: "Hand",
  36985. image: {
  36986. source: "./media/characters/sabrina/hand.svg"
  36987. }
  36988. },
  36989. head: {
  36990. height: math.unit(2.44, "meters"),
  36991. name: "Head",
  36992. image: {
  36993. source: "./media/characters/sabrina/head.svg"
  36994. }
  36995. },
  36996. headAngry: {
  36997. height: math.unit(2.44, "meters"),
  36998. name: "Head (Angry))",
  36999. image: {
  37000. source: "./media/characters/sabrina/head-angry.svg"
  37001. }
  37002. },
  37003. maw: {
  37004. height: math.unit(1.65, "meters"),
  37005. name: "Maw",
  37006. image: {
  37007. source: "./media/characters/sabrina/maw.svg"
  37008. }
  37009. },
  37010. spikes: {
  37011. height: math.unit(1.69, "meters"),
  37012. name: "Spikes",
  37013. image: {
  37014. source: "./media/characters/sabrina/spikes.svg"
  37015. }
  37016. },
  37017. stomach: {
  37018. height: math.unit(1.15, "meters"),
  37019. name: "Stomach",
  37020. image: {
  37021. source: "./media/characters/sabrina/stomach.svg"
  37022. }
  37023. },
  37024. tongue: {
  37025. height: math.unit(1.27, "meters"),
  37026. name: "Tongue",
  37027. image: {
  37028. source: "./media/characters/sabrina/tongue.svg"
  37029. }
  37030. },
  37031. wingDorsal: {
  37032. height: math.unit(4.85, "meters"),
  37033. name: "Wing (Dorsal)",
  37034. image: {
  37035. source: "./media/characters/sabrina/wing-dorsal.svg"
  37036. }
  37037. },
  37038. wingVentral: {
  37039. height: math.unit(4.85, "meters"),
  37040. name: "Wing (Ventral)",
  37041. image: {
  37042. source: "./media/characters/sabrina/wing-ventral.svg"
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(5, "meters"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  37056. {
  37057. frontMaid: {
  37058. height: math.unit(5 + 5/12, "feet"),
  37059. weight: math.unit(130, "lb"),
  37060. name: "Front (Maid)",
  37061. image: {
  37062. source: "./media/characters/midnight-tales/front-maid.svg",
  37063. extra: 489/454,
  37064. bottom: 61/550
  37065. }
  37066. },
  37067. frontFormal: {
  37068. height: math.unit(5 + 5/12, "feet"),
  37069. weight: math.unit(130, "lb"),
  37070. name: "Front (Formal)",
  37071. image: {
  37072. source: "./media/characters/midnight-tales/front-formal.svg",
  37073. extra: 489/454,
  37074. bottom: 61/550
  37075. }
  37076. },
  37077. back: {
  37078. height: math.unit(5 + 5/12, "feet"),
  37079. weight: math.unit(130, "lb"),
  37080. name: "Back",
  37081. image: {
  37082. source: "./media/characters/midnight-tales/back.svg",
  37083. extra: 498/456,
  37084. bottom: 33/531
  37085. }
  37086. },
  37087. frontBeast: {
  37088. height: math.unit(40, "feet"),
  37089. weight: math.unit(64000, "lb"),
  37090. name: "Front (Beast)",
  37091. image: {
  37092. source: "./media/characters/midnight-tales/front-beast.svg",
  37093. extra: 927/860,
  37094. bottom: 53/980
  37095. }
  37096. },
  37097. backBeast: {
  37098. height: math.unit(40, "feet"),
  37099. weight: math.unit(64000, "lb"),
  37100. name: "Back (Beast)",
  37101. image: {
  37102. source: "./media/characters/midnight-tales/back-beast.svg",
  37103. extra: 929/855,
  37104. bottom: 16/945
  37105. }
  37106. },
  37107. footBeast: {
  37108. height: math.unit(6.7, "feet"),
  37109. name: "Foot (Beast)",
  37110. image: {
  37111. source: "./media/characters/midnight-tales/foot-beast.svg"
  37112. }
  37113. },
  37114. headBeast: {
  37115. height: math.unit(8, "feet"),
  37116. name: "Head (Beast)",
  37117. image: {
  37118. source: "./media/characters/midnight-tales/head-beast.svg"
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(5 + 5 / 12, "feet"),
  37126. default: true
  37127. },
  37128. {
  37129. name: "Macro",
  37130. height: math.unit(25, "feet")
  37131. },
  37132. ]
  37133. ))
  37134. characterMakers.push(() => makeCharacter(
  37135. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37136. {
  37137. front: {
  37138. height: math.unit(6 + 2/12, "feet"),
  37139. weight: math.unit(115, "kg"),
  37140. preyCapacity: math.unit(3, "people"),
  37141. name: "Front",
  37142. image: {
  37143. source: "./media/characters/argon/front.svg",
  37144. extra: 2009/1935,
  37145. bottom: 118/2127
  37146. },
  37147. extraAttributes: {
  37148. "tailLength": {
  37149. name: "Tail Length",
  37150. power: 1,
  37151. type: "length",
  37152. base: math.unit(6, "feet")
  37153. },
  37154. "tailWeight": {
  37155. name: "Tail Weight",
  37156. power: 3,
  37157. type: "mass",
  37158. base: math.unit(40, "kg")
  37159. },
  37160. }
  37161. },
  37162. back: {
  37163. height: math.unit(6 + 2/12, "feet"),
  37164. weight: math.unit(115, "kg"),
  37165. preyCapacity: math.unit(3, "people"),
  37166. name: "Back",
  37167. image: {
  37168. source: "./media/characters/argon/back.svg",
  37169. extra: 2047/1992,
  37170. bottom: 20/2067
  37171. },
  37172. extraAttributes: {
  37173. "tailLength": {
  37174. name: "Tail Length",
  37175. power: 1,
  37176. type: "length",
  37177. base: math.unit(6, "feet")
  37178. },
  37179. "tailWeight": {
  37180. name: "Tail Weight",
  37181. power: 3,
  37182. type: "mass",
  37183. base: math.unit(40, "kg")
  37184. },
  37185. }
  37186. },
  37187. frontDressed: {
  37188. height: math.unit(6 + 2/12, "feet"),
  37189. weight: math.unit(115, "kg"),
  37190. preyCapacity: math.unit(3, "people"),
  37191. name: "Front (Dressed)",
  37192. image: {
  37193. source: "./media/characters/argon/front-dressed.svg",
  37194. extra: 2009/1935,
  37195. bottom: 118/2127
  37196. },
  37197. extraAttributes: {
  37198. "tailLength": {
  37199. name: "Tail Length",
  37200. power: 1,
  37201. type: "length",
  37202. base: math.unit(6, "feet")
  37203. },
  37204. "tailWeight": {
  37205. name: "Tail Weight",
  37206. power: 3,
  37207. type: "mass",
  37208. base: math.unit(40, "kg")
  37209. },
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Minimum",
  37216. height: math.unit(2 + 8/12, "feet")
  37217. },
  37218. {
  37219. name: "Normal",
  37220. height: math.unit(6 + 2/12, "feet"),
  37221. default: true
  37222. },
  37223. {
  37224. name: "Maximum",
  37225. height: math.unit(20, "feet")
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(8 + 6/12, "feet"),
  37234. weight: math.unit(1150, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/kichi/front.svg",
  37238. extra: 1267/1164,
  37239. bottom: 61/1328
  37240. }
  37241. },
  37242. back: {
  37243. height: math.unit(8 + 6/12, "feet"),
  37244. weight: math.unit(1150, "lb"),
  37245. name: "Back",
  37246. image: {
  37247. source: "./media/characters/kichi/back.svg",
  37248. extra: 1273/1166,
  37249. bottom: 33/1306
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(8 + 6/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37263. {
  37264. front: {
  37265. height: math.unit(6, "feet"),
  37266. weight: math.unit(210, "lb"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/manetel-greyscale/front.svg",
  37270. extra: 483/444,
  37271. bottom: 22/505
  37272. },
  37273. extraAttributes: {
  37274. "tailLength": {
  37275. name: "Tail Length",
  37276. power: 1,
  37277. type: "length",
  37278. base: math.unit(6.5, "feet")
  37279. },
  37280. }
  37281. },
  37282. side: {
  37283. height: math.unit(6, "feet"),
  37284. weight: math.unit(210, "lb"),
  37285. name: "Side",
  37286. image: {
  37287. source: "./media/characters/manetel-greyscale/side.svg",
  37288. extra: 478/426,
  37289. bottom: 20/498
  37290. },
  37291. extraAttributes: {
  37292. "tailLength": {
  37293. name: "Tail Length",
  37294. power: 1,
  37295. type: "length",
  37296. base: math.unit(6.5, "feet")
  37297. },
  37298. }
  37299. },
  37300. back: {
  37301. height: math.unit(6, "feet"),
  37302. weight: math.unit(210, "lb"),
  37303. name: "Back",
  37304. image: {
  37305. source: "./media/characters/manetel-greyscale/back.svg",
  37306. extra: 482/445,
  37307. bottom: 12/494
  37308. },
  37309. extraAttributes: {
  37310. "tailLength": {
  37311. name: "Tail Length",
  37312. power: 1,
  37313. type: "length",
  37314. base: math.unit(6.5, "feet")
  37315. },
  37316. }
  37317. },
  37318. },
  37319. [
  37320. {
  37321. name: "Micro",
  37322. height: math.unit(2, "inches")
  37323. },
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(6, "feet"),
  37327. default: true
  37328. },
  37329. {
  37330. name: "Macro",
  37331. height: math.unit(117, "feet")
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37337. {
  37338. side: {
  37339. height: math.unit(5 + 1/12, "feet"),
  37340. weight: math.unit(418, "lb"),
  37341. name: "Side",
  37342. image: {
  37343. source: "./media/characters/softpurr/side.svg",
  37344. extra: 1993/1945,
  37345. bottom: 134/2127
  37346. }
  37347. },
  37348. front: {
  37349. height: math.unit(5 + 1/12, "feet"),
  37350. weight: math.unit(418, "lb"),
  37351. name: "Front",
  37352. image: {
  37353. source: "./media/characters/softpurr/front.svg",
  37354. extra: 1950/1856,
  37355. bottom: 174/2124
  37356. }
  37357. },
  37358. paw: {
  37359. height: math.unit(1, "feet"),
  37360. name: "Paw",
  37361. image: {
  37362. source: "./media/characters/softpurr/paw.svg"
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(5 + 1/12, "feet"),
  37370. default: true
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(300, "meters"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/anahita/front.svg",
  37382. extra: 609/576,
  37383. bottom: 51/660
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Macro",
  37390. height: math.unit(300, "meters"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(4 + 10/12, "feet"),
  37400. weight: math.unit(160, "lb"),
  37401. name: "Front",
  37402. image: {
  37403. source: "./media/characters/chip-mouse/front.svg",
  37404. extra: 3528/3408,
  37405. bottom: 0/3528
  37406. }
  37407. },
  37408. frontNsfw: {
  37409. height: math.unit(4 + 10/12, "feet"),
  37410. weight: math.unit(160, "lb"),
  37411. name: "Front (NSFW)",
  37412. image: {
  37413. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37414. extra: 3528/3408,
  37415. bottom: 0/3528
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Normal",
  37422. height: math.unit(4 + 10/12, "feet"),
  37423. default: true
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37429. {
  37430. side: {
  37431. height: math.unit(10, "feet"),
  37432. weight: math.unit(14000, "lb"),
  37433. name: "Side",
  37434. image: {
  37435. source: "./media/characters/kremm/side.svg",
  37436. extra: 1390/1053,
  37437. bottom: 90/1480
  37438. }
  37439. },
  37440. gut: {
  37441. height: math.unit(5.8, "feet"),
  37442. name: "Gut",
  37443. image: {
  37444. source: "./media/characters/kremm/gut.svg"
  37445. }
  37446. },
  37447. ass: {
  37448. height: math.unit(6.1, "feet"),
  37449. name: "Ass",
  37450. image: {
  37451. source: "./media/characters/kremm/ass.svg"
  37452. }
  37453. },
  37454. jaws: {
  37455. height: math.unit(2.2, "feet"),
  37456. name: "Jaws",
  37457. image: {
  37458. source: "./media/characters/kremm/jaws.svg"
  37459. }
  37460. },
  37461. dick: {
  37462. height: math.unit(4.26, "feet"),
  37463. name: "Dick",
  37464. image: {
  37465. source: "./media/characters/kremm/dick.svg"
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(10, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(30, "stories"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/kai/front.svg",
  37485. extra: 1892/1718,
  37486. bottom: 162/2054
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Macro",
  37493. height: math.unit(30, "stories"),
  37494. default: true
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(6 + 4/12, "feet"),
  37503. weight: math.unit(145, "lb"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/sykes/front.svg",
  37507. extra: 1321 / 1187,
  37508. bottom: 66 / 1387
  37509. }
  37510. },
  37511. back: {
  37512. height: math.unit(6 + 4/12, "feet"),
  37513. weight: math.unit(145, "lb"),
  37514. name: "Back",
  37515. image: {
  37516. source: "./media/characters/sykes/back.svg",
  37517. extra: 1326/1181,
  37518. bottom: 31/1357
  37519. }
  37520. },
  37521. traditionalOutfit: {
  37522. height: math.unit(6 + 4/12, "feet"),
  37523. weight: math.unit(145, "lb"),
  37524. name: "Traditional Outfit",
  37525. image: {
  37526. source: "./media/characters/sykes/traditional-outfit.svg",
  37527. extra: 1321 / 1187,
  37528. bottom: 66 / 1387
  37529. }
  37530. },
  37531. adventureOutfit: {
  37532. height: math.unit(6 + 4/12, "feet"),
  37533. weight: math.unit(145, "lb"),
  37534. name: "Adventure Outfit",
  37535. image: {
  37536. source: "./media/characters/sykes/adventure-outfit.svg",
  37537. extra: 1321 / 1187,
  37538. bottom: 66 / 1387
  37539. }
  37540. },
  37541. handLeft: {
  37542. height: math.unit(0.9, "feet"),
  37543. name: "Hand (Left)",
  37544. image: {
  37545. source: "./media/characters/sykes/hand-left.svg"
  37546. }
  37547. },
  37548. handRight: {
  37549. height: math.unit(0.839, "feet"),
  37550. name: "Hand (Right)",
  37551. image: {
  37552. source: "./media/characters/sykes/hand-right.svg"
  37553. }
  37554. },
  37555. leftFoot: {
  37556. height: math.unit(1.2, "feet"),
  37557. name: "Foot (Left)",
  37558. image: {
  37559. source: "./media/characters/sykes/foot-left.svg"
  37560. }
  37561. },
  37562. rightFoot: {
  37563. height: math.unit(1.2, "feet"),
  37564. name: "Foot (Right)",
  37565. image: {
  37566. source: "./media/characters/sykes/foot-right.svg"
  37567. }
  37568. },
  37569. maw: {
  37570. height: math.unit(1.93, "feet"),
  37571. name: "Maw",
  37572. image: {
  37573. source: "./media/characters/sykes/maw.svg"
  37574. }
  37575. },
  37576. teeth: {
  37577. height: math.unit(0.51, "feet"),
  37578. name: "Teeth",
  37579. image: {
  37580. source: "./media/characters/sykes/teeth.svg"
  37581. }
  37582. },
  37583. tongue: {
  37584. height: math.unit(2.13, "feet"),
  37585. name: "Tongue",
  37586. image: {
  37587. source: "./media/characters/sykes/tongue.svg"
  37588. }
  37589. },
  37590. uvula: {
  37591. height: math.unit(0.16, "feet"),
  37592. name: "Uvula",
  37593. image: {
  37594. source: "./media/characters/sykes/uvula.svg"
  37595. }
  37596. },
  37597. collar: {
  37598. height: math.unit(0.287, "feet"),
  37599. name: "Collar",
  37600. image: {
  37601. source: "./media/characters/sykes/collar.svg"
  37602. }
  37603. },
  37604. tail: {
  37605. height: math.unit(3.8, "feet"),
  37606. name: "Tail",
  37607. image: {
  37608. source: "./media/characters/sykes/tail.svg"
  37609. }
  37610. },
  37611. },
  37612. [
  37613. {
  37614. name: "Shrunken",
  37615. height: math.unit(5, "inches")
  37616. },
  37617. {
  37618. name: "Normal",
  37619. height: math.unit(6 + 4 / 12, "feet"),
  37620. default: true
  37621. },
  37622. {
  37623. name: "Big",
  37624. height: math.unit(15, "feet")
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(5 + 8/12, "feet"),
  37633. weight: math.unit(190, "lb"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/oven-otter/front.svg",
  37637. extra: 1809/1740,
  37638. bottom: 181/1990
  37639. }
  37640. },
  37641. back: {
  37642. height: math.unit(5 + 8/12, "feet"),
  37643. weight: math.unit(190, "lb"),
  37644. name: "Back",
  37645. image: {
  37646. source: "./media/characters/oven-otter/back.svg",
  37647. extra: 1709/1635,
  37648. bottom: 118/1827
  37649. }
  37650. },
  37651. hand: {
  37652. height: math.unit(1.07, "feet"),
  37653. name: "Hand",
  37654. image: {
  37655. source: "./media/characters/oven-otter/hand.svg"
  37656. }
  37657. },
  37658. beans: {
  37659. height: math.unit(1.74, "feet"),
  37660. name: "Beans",
  37661. image: {
  37662. source: "./media/characters/oven-otter/beans.svg"
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Micro",
  37669. height: math.unit(0.5, "inches")
  37670. },
  37671. {
  37672. name: "Normal",
  37673. height: math.unit(5 + 8/12, "feet"),
  37674. default: true
  37675. },
  37676. {
  37677. name: "Macro",
  37678. height: math.unit(250, "feet")
  37679. },
  37680. {
  37681. name: "Really High",
  37682. height: math.unit(420, "feet")
  37683. },
  37684. ]
  37685. ))
  37686. characterMakers.push(() => makeCharacter(
  37687. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37688. {
  37689. front: {
  37690. height: math.unit(5, "meters"),
  37691. weight: math.unit(292000000000000, "kg"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/devourer/front.svg",
  37695. extra: 1800/1733,
  37696. bottom: 211/2011
  37697. }
  37698. },
  37699. maw: {
  37700. height: math.unit(1.1, "meter"),
  37701. name: "Maw",
  37702. image: {
  37703. source: "./media/characters/devourer/maw.svg"
  37704. }
  37705. },
  37706. },
  37707. [
  37708. {
  37709. name: "Small",
  37710. height: math.unit(3, "meters")
  37711. },
  37712. {
  37713. name: "Large",
  37714. height: math.unit(5, "meters"),
  37715. default: true
  37716. },
  37717. {
  37718. name: "Macro",
  37719. height: math.unit(20, "meters")
  37720. },
  37721. ]
  37722. ))
  37723. characterMakers.push(() => makeCharacter(
  37724. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37725. {
  37726. front: {
  37727. height: math.unit(6, "feet"),
  37728. weight: math.unit(400, "lb"),
  37729. name: "Front",
  37730. image: {
  37731. source: "./media/characters/ellarby/front.svg",
  37732. extra: 1909/1763,
  37733. bottom: 80/1989
  37734. }
  37735. },
  37736. back: {
  37737. height: math.unit(6, "feet"),
  37738. weight: math.unit(400, "lb"),
  37739. name: "Back",
  37740. image: {
  37741. source: "./media/characters/ellarby/back.svg",
  37742. extra: 1914/1784,
  37743. bottom: 172/2086
  37744. }
  37745. },
  37746. },
  37747. [
  37748. {
  37749. name: "Mischief",
  37750. height: math.unit(18, "inches")
  37751. },
  37752. {
  37753. name: "Trouble",
  37754. height: math.unit(12, "feet")
  37755. },
  37756. {
  37757. name: "Havoc",
  37758. height: math.unit(200, "feet"),
  37759. default: true
  37760. },
  37761. {
  37762. name: "Pandemonium",
  37763. height: math.unit(1, "mile")
  37764. },
  37765. {
  37766. name: "Catastrophe",
  37767. height: math.unit(100, "miles")
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37773. {
  37774. front: {
  37775. height: math.unit(4.7, "meters"),
  37776. weight: math.unit(6500, "kg"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/vex/front.svg",
  37780. extra: 1288/1140,
  37781. bottom: 100/1388
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(4.7, "meters"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37795. {
  37796. normal: {
  37797. height: math.unit(6, "feet"),
  37798. weight: math.unit(350, "lb"),
  37799. name: "Normal",
  37800. image: {
  37801. source: "./media/characters/teshy/normal.svg",
  37802. extra: 1795/1735,
  37803. bottom: 16/1811
  37804. }
  37805. },
  37806. monsterFront: {
  37807. height: math.unit(12, "feet"),
  37808. weight: math.unit(4700, "lb"),
  37809. name: "Monster (Front)",
  37810. image: {
  37811. source: "./media/characters/teshy/monster-front.svg",
  37812. extra: 2042/2034,
  37813. bottom: 128/2170
  37814. }
  37815. },
  37816. monsterSide: {
  37817. height: math.unit(12, "feet"),
  37818. weight: math.unit(4700, "lb"),
  37819. name: "Monster (Side)",
  37820. image: {
  37821. source: "./media/characters/teshy/monster-side.svg",
  37822. extra: 2067/2056,
  37823. bottom: 70/2137
  37824. }
  37825. },
  37826. monsterBack: {
  37827. height: math.unit(12, "feet"),
  37828. weight: math.unit(4700, "lb"),
  37829. name: "Monster (Back)",
  37830. image: {
  37831. source: "./media/characters/teshy/monster-back.svg",
  37832. extra: 1921/1914,
  37833. bottom: 171/2092
  37834. }
  37835. },
  37836. },
  37837. [
  37838. {
  37839. name: "Normal",
  37840. height: math.unit(6, "feet"),
  37841. default: true
  37842. },
  37843. ]
  37844. ))
  37845. characterMakers.push(() => makeCharacter(
  37846. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37847. {
  37848. front: {
  37849. height: math.unit(6, "feet"),
  37850. name: "Front",
  37851. image: {
  37852. source: "./media/characters/ramey/front.svg",
  37853. extra: 790/787,
  37854. bottom: 27/817
  37855. }
  37856. },
  37857. },
  37858. [
  37859. {
  37860. name: "Normal",
  37861. height: math.unit(6, "feet"),
  37862. default: true
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(5 + 5/12, "feet"),
  37871. weight: math.unit(120, "lb"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/phirae/front.svg",
  37875. extra: 2491/2436,
  37876. bottom: 38/2529
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(5 + 5/12, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37890. {
  37891. front: {
  37892. height: math.unit(5 + 3/12, "feet"),
  37893. name: "Front",
  37894. image: {
  37895. source: "./media/characters/stagglas/front.svg",
  37896. extra: 962/882,
  37897. bottom: 53/1015
  37898. }
  37899. },
  37900. feral: {
  37901. height: math.unit(335, "cm"),
  37902. name: "Feral",
  37903. image: {
  37904. source: "./media/characters/stagglas/feral.svg",
  37905. extra: 1732/1090,
  37906. bottom: 48/1780
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(5 + 3/12, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(5 + 4/12, "feet"),
  37923. weight: math.unit(145, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/starra/front.svg",
  37927. extra: 1790/1691,
  37928. bottom: 91/1881
  37929. }
  37930. },
  37931. },
  37932. [
  37933. {
  37934. name: "Normal",
  37935. height: math.unit(5 + 4/12, "feet"),
  37936. default: true
  37937. },
  37938. ]
  37939. ))
  37940. characterMakers.push(() => makeCharacter(
  37941. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37942. {
  37943. front: {
  37944. height: math.unit(3.5, "meters"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37948. extra: 1248/972,
  37949. bottom: 38/1286
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(3.5, "meters"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37963. {
  37964. side: {
  37965. height: math.unit(8 + 2/12, "feet"),
  37966. weight: math.unit(1240, "lb"),
  37967. name: "Side",
  37968. image: {
  37969. source: "./media/characters/mika-valentine/side.svg",
  37970. extra: 2670/2501,
  37971. bottom: 250/2920
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Normal",
  37978. height: math.unit(8 + 2/12, "feet"),
  37979. default: true
  37980. },
  37981. ]
  37982. ))
  37983. characterMakers.push(() => makeCharacter(
  37984. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37985. {
  37986. front: {
  37987. height: math.unit(7 + 2/12, "feet"),
  37988. name: "Front",
  37989. image: {
  37990. source: "./media/characters/xoltol/front.svg",
  37991. extra: 2212/2124,
  37992. bottom: 84/2296
  37993. }
  37994. },
  37995. side: {
  37996. height: math.unit(7 + 2/12, "feet"),
  37997. name: "Side",
  37998. image: {
  37999. source: "./media/characters/xoltol/side.svg",
  38000. extra: 2273/2197,
  38001. bottom: 26/2299
  38002. }
  38003. },
  38004. hand: {
  38005. height: math.unit(2.5, "feet"),
  38006. name: "Hand",
  38007. image: {
  38008. source: "./media/characters/xoltol/hand.svg"
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Small-ish",
  38015. height: math.unit(5 + 11/12, "feet")
  38016. },
  38017. {
  38018. name: "Normal",
  38019. height: math.unit(7 + 2/12, "feet")
  38020. },
  38021. {
  38022. name: "\"Macro\"",
  38023. height: math.unit(14 + 9/12, "feet"),
  38024. default: true
  38025. },
  38026. {
  38027. name: "Alternate Height",
  38028. height: math.unit(20, "feet")
  38029. },
  38030. {
  38031. name: "Actually Macro",
  38032. height: math.unit(100, "feet")
  38033. },
  38034. ]
  38035. ))
  38036. characterMakers.push(() => makeCharacter(
  38037. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  38038. {
  38039. front: {
  38040. height: math.unit(5 + 2/12, "feet"),
  38041. weight: math.unit(75, "kg"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/kotetsu-redwood/front.svg",
  38045. extra: 1053/942,
  38046. bottom: 60/1113
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(5 + 2/12, "feet"),
  38054. default: true
  38055. },
  38056. ]
  38057. ))
  38058. characterMakers.push(() => makeCharacter(
  38059. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  38060. {
  38061. front: {
  38062. height: math.unit(2.4, "meters"),
  38063. weight: math.unit(125, "kg"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/lilith/front.svg",
  38067. extra: 1590/1513,
  38068. bottom: 203/1793
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Humanoid",
  38075. height: math.unit(2.4, "meters")
  38076. },
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(6, "meters"),
  38080. default: true
  38081. },
  38082. {
  38083. name: "Largest",
  38084. height: math.unit(55, "meters")
  38085. },
  38086. ]
  38087. ))
  38088. characterMakers.push(() => makeCharacter(
  38089. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  38090. {
  38091. front: {
  38092. height: math.unit(8 + 4/12, "feet"),
  38093. weight: math.unit(535, "lb"),
  38094. name: "Front",
  38095. image: {
  38096. source: "./media/characters/beh'kah-bolger/front.svg",
  38097. extra: 1660/1603,
  38098. bottom: 37/1697
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Normal",
  38105. height: math.unit(8 + 4/12, "feet"),
  38106. default: true
  38107. },
  38108. {
  38109. name: "Kaiju",
  38110. height: math.unit(250, "feet")
  38111. },
  38112. {
  38113. name: "Still Growing",
  38114. height: math.unit(10, "miles")
  38115. },
  38116. {
  38117. name: "Continental",
  38118. height: math.unit(5000, "miles")
  38119. },
  38120. {
  38121. name: "Final Form",
  38122. height: math.unit(2500000, "miles")
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(7 + 2/12, "feet"),
  38131. weight: math.unit(230, "kg"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/tatyana-milewska/front.svg",
  38135. extra: 1199/1150,
  38136. bottom: 86/1285
  38137. }
  38138. },
  38139. },
  38140. [
  38141. {
  38142. name: "Normal",
  38143. height: math.unit(7 + 2/12, "feet"),
  38144. default: true
  38145. },
  38146. {
  38147. name: "Big",
  38148. height: math.unit(12, "feet")
  38149. },
  38150. {
  38151. name: "Minimacro",
  38152. height: math.unit(20, "feet")
  38153. },
  38154. {
  38155. name: "Macro",
  38156. height: math.unit(120, "feet")
  38157. },
  38158. ]
  38159. ))
  38160. characterMakers.push(() => makeCharacter(
  38161. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38162. {
  38163. front: {
  38164. height: math.unit(7 + 8/12, "feet"),
  38165. weight: math.unit(152, "kg"),
  38166. name: "Front",
  38167. image: {
  38168. source: "./media/characters/helen-arri/front.svg",
  38169. extra: 440/423,
  38170. bottom: 14/454
  38171. }
  38172. },
  38173. back: {
  38174. height: math.unit(7 + 8/12, "feet"),
  38175. weight: math.unit(152, "kg"),
  38176. name: "Back",
  38177. image: {
  38178. source: "./media/characters/helen-arri/back.svg",
  38179. extra: 443/426,
  38180. bottom: 8/451
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(7 + 8/12, "feet"),
  38188. default: true
  38189. },
  38190. {
  38191. name: "Big",
  38192. height: math.unit(14, "feet")
  38193. },
  38194. {
  38195. name: "Minimacro",
  38196. height: math.unit(24, "feet")
  38197. },
  38198. {
  38199. name: "Macro",
  38200. height: math.unit(140, "feet")
  38201. },
  38202. ]
  38203. ))
  38204. characterMakers.push(() => makeCharacter(
  38205. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38206. {
  38207. front: {
  38208. height: math.unit(6, "meters"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/ehanu-rehu/front.svg",
  38212. extra: 1800/1800,
  38213. bottom: 59/1859
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(6, "meters"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38227. {
  38228. front: {
  38229. height: math.unit(7 + 3/12, "feet"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/renholder/front.svg",
  38233. extra: 3096/2960,
  38234. bottom: 250/3346
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Normal Bat",
  38241. height: math.unit(7 + 3/12, "feet"),
  38242. default: true
  38243. },
  38244. {
  38245. name: "Slightly Tall Bat",
  38246. height: math.unit(100, "feet")
  38247. },
  38248. {
  38249. name: "Big Bat",
  38250. height: math.unit(1000, "feet")
  38251. },
  38252. {
  38253. name: "City-Sized Bat",
  38254. height: math.unit(200000, "feet")
  38255. },
  38256. {
  38257. name: "Bigger Bat",
  38258. height: math.unit(10000, "miles")
  38259. },
  38260. {
  38261. name: "Solar Sized Bat",
  38262. height: math.unit(100, "AU")
  38263. },
  38264. {
  38265. name: "Galactic Bat",
  38266. height: math.unit(200000, "lightyears")
  38267. },
  38268. {
  38269. name: "Universally Known Bat",
  38270. height: math.unit(1, "universe")
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(6 + 11/12, "feet"),
  38279. weight: math.unit(250, "lb"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/cookiecat/front.svg",
  38283. extra: 893/827,
  38284. bottom: 14/907
  38285. }
  38286. },
  38287. },
  38288. [
  38289. {
  38290. name: "Micro",
  38291. height: math.unit(3, "inches")
  38292. },
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(6 + 11/12, "feet"),
  38296. default: true
  38297. },
  38298. {
  38299. name: "Macro",
  38300. height: math.unit(100, "feet")
  38301. },
  38302. {
  38303. name: "Macro+",
  38304. height: math.unit(404, "feet")
  38305. },
  38306. {
  38307. name: "Megamacro",
  38308. height: math.unit(165, "miles")
  38309. },
  38310. {
  38311. name: "Planetary",
  38312. height: math.unit(4600, "miles")
  38313. },
  38314. ]
  38315. ))
  38316. characterMakers.push(() => makeCharacter(
  38317. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38318. {
  38319. front: {
  38320. height: math.unit(10 + 3/12, "feet"),
  38321. weight: math.unit(1500, "lb"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/tux-kusanagi/front.svg",
  38325. extra: 944/840,
  38326. bottom: 39/983
  38327. }
  38328. },
  38329. back: {
  38330. height: math.unit(10 + 3/12, "feet"),
  38331. weight: math.unit(1500, "lb"),
  38332. name: "Back",
  38333. image: {
  38334. source: "./media/characters/tux-kusanagi/back.svg",
  38335. extra: 941/842,
  38336. bottom: 28/969
  38337. }
  38338. },
  38339. rump: {
  38340. height: math.unit(5.25, "feet"),
  38341. name: "Rump",
  38342. image: {
  38343. source: "./media/characters/tux-kusanagi/rump.svg"
  38344. }
  38345. },
  38346. beak: {
  38347. height: math.unit(1.54, "feet"),
  38348. name: "Beak",
  38349. image: {
  38350. source: "./media/characters/tux-kusanagi/beak.svg"
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(10 + 3/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(58, "feet"),
  38367. weight: math.unit(200, "tons"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/uzarmazari/front.svg",
  38371. extra: 1575/1455,
  38372. bottom: 152/1727
  38373. }
  38374. },
  38375. back: {
  38376. height: math.unit(58, "feet"),
  38377. weight: math.unit(200, "tons"),
  38378. name: "Back",
  38379. image: {
  38380. source: "./media/characters/uzarmazari/back.svg",
  38381. extra: 1585/1510,
  38382. bottom: 157/1742
  38383. }
  38384. },
  38385. head: {
  38386. height: math.unit(26, "feet"),
  38387. name: "Head",
  38388. image: {
  38389. source: "./media/characters/uzarmazari/head.svg"
  38390. }
  38391. },
  38392. },
  38393. [
  38394. {
  38395. name: "Normal",
  38396. height: math.unit(58, "feet"),
  38397. default: true
  38398. },
  38399. ]
  38400. ))
  38401. characterMakers.push(() => makeCharacter(
  38402. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38403. {
  38404. side: {
  38405. height: math.unit(15, "feet"),
  38406. name: "Side",
  38407. image: {
  38408. source: "./media/characters/akitu/side.svg",
  38409. extra: 1421/1321,
  38410. bottom: 157/1578
  38411. }
  38412. },
  38413. front: {
  38414. height: math.unit(15, "feet"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/akitu/front.svg",
  38418. extra: 1435/1326,
  38419. bottom: 232/1667
  38420. }
  38421. },
  38422. },
  38423. [
  38424. {
  38425. name: "Normal",
  38426. height: math.unit(15, "feet"),
  38427. default: true
  38428. },
  38429. ]
  38430. ))
  38431. characterMakers.push(() => makeCharacter(
  38432. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38433. {
  38434. front: {
  38435. height: math.unit(10 + 8/12, "feet"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/azalie-croixland/front.svg",
  38439. extra: 1972/1856,
  38440. bottom: 31/2003
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Original Height",
  38447. height: math.unit(5 + 4/12, "feet")
  38448. },
  38449. {
  38450. name: "Normal Height",
  38451. height: math.unit(10 + 8/12, "feet"),
  38452. default: true
  38453. },
  38454. ]
  38455. ))
  38456. characterMakers.push(() => makeCharacter(
  38457. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38458. {
  38459. side: {
  38460. height: math.unit(7 + 1/12, "feet"),
  38461. weight: math.unit(245, "lb"),
  38462. name: "Side",
  38463. image: {
  38464. source: "./media/characters/kavus-kazian/side.svg",
  38465. extra: 349/342,
  38466. bottom: 15/364
  38467. }
  38468. },
  38469. },
  38470. [
  38471. {
  38472. name: "Normal",
  38473. height: math.unit(7 + 1/12, "feet"),
  38474. default: true
  38475. },
  38476. ]
  38477. ))
  38478. characterMakers.push(() => makeCharacter(
  38479. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38480. {
  38481. normalFront: {
  38482. height: math.unit(5 + 11/12, "feet"),
  38483. name: "Front",
  38484. image: {
  38485. source: "./media/characters/moonlight-rose/normal-front.svg",
  38486. extra: 1980/1825,
  38487. bottom: 18/1998
  38488. },
  38489. form: "normal",
  38490. default: true
  38491. },
  38492. normalBack: {
  38493. height: math.unit(5 + 11/12, "feet"),
  38494. name: "Back",
  38495. image: {
  38496. source: "./media/characters/moonlight-rose/normal-back.svg",
  38497. extra: 2010/1839,
  38498. bottom: 10/2020
  38499. },
  38500. form: "normal"
  38501. },
  38502. demonFront: {
  38503. height: math.unit(1.5, "earths"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/moonlight-rose/demon.svg",
  38507. extra: 1400/1294,
  38508. bottom: 45/1445
  38509. },
  38510. form: "demon",
  38511. default: true
  38512. },
  38513. terraFront: {
  38514. height: math.unit(1.5, "earths"),
  38515. name: "Front",
  38516. image: {
  38517. source: "./media/characters/moonlight-rose/terra.svg"
  38518. },
  38519. form: "terra",
  38520. default: true
  38521. },
  38522. jupiterFront: {
  38523. height: math.unit(69911*2, "km"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38527. extra: 1367/1286,
  38528. bottom: 55/1422
  38529. },
  38530. form: "jupiter",
  38531. default: true
  38532. },
  38533. neptuneFront: {
  38534. height: math.unit(24622*2, "feet"),
  38535. name: "Front",
  38536. image: {
  38537. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38538. extra: 1851/1712,
  38539. bottom: 0/1851
  38540. },
  38541. form: "neptune",
  38542. default: true
  38543. },
  38544. },
  38545. [
  38546. {
  38547. name: "\"Natural\" Height",
  38548. height: math.unit(5 + 11/12, "feet"),
  38549. form: "normal"
  38550. },
  38551. {
  38552. name: "Smallest comfortable size",
  38553. height: math.unit(40, "meters"),
  38554. form: "normal"
  38555. },
  38556. {
  38557. name: "Common size",
  38558. height: math.unit(50, "km"),
  38559. form: "normal",
  38560. default: true
  38561. },
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(1.5, "earths"),
  38565. form: "demon",
  38566. default: true
  38567. },
  38568. {
  38569. name: "Universal",
  38570. height: math.unit(15, "universes"),
  38571. form: "demon"
  38572. },
  38573. {
  38574. name: "Earth",
  38575. height: math.unit(1.5, "earths"),
  38576. form: "terra",
  38577. default: true
  38578. },
  38579. {
  38580. name: "Super Earth",
  38581. height: math.unit(67.5, "earths"),
  38582. form: "terra"
  38583. },
  38584. {
  38585. name: "Doesn't fit in a solar system...",
  38586. height: math.unit(1, "galaxy"),
  38587. form: "terra"
  38588. },
  38589. {
  38590. name: "Saturn",
  38591. height: math.unit(58232*2, "km"),
  38592. form: "jupiter"
  38593. },
  38594. {
  38595. name: "Jupiter",
  38596. height: math.unit(69911*2, "km"),
  38597. form: "jupiter",
  38598. default: true
  38599. },
  38600. {
  38601. name: "HD 100546 b",
  38602. height: math.unit(482938, "km"),
  38603. form: "jupiter"
  38604. },
  38605. {
  38606. name: "Enceladus",
  38607. height: math.unit(513*2, "km"),
  38608. form: "neptune"
  38609. },
  38610. {
  38611. name: "Europe",
  38612. height: math.unit(1560*2, "km"),
  38613. form: "neptune"
  38614. },
  38615. {
  38616. name: "Neptune",
  38617. height: math.unit(24622*2, "km"),
  38618. form: "neptune",
  38619. default: true
  38620. },
  38621. {
  38622. name: "CoRoT-9b",
  38623. height: math.unit(75067*2, "km"),
  38624. form: "neptune"
  38625. },
  38626. ],
  38627. {
  38628. "normal": {
  38629. name: "Normal",
  38630. default: true
  38631. },
  38632. "demon": {
  38633. name: "Demon"
  38634. },
  38635. "terra": {
  38636. name: "Terra"
  38637. },
  38638. "jupiter": {
  38639. name: "Jupiter"
  38640. },
  38641. "neptune": {
  38642. name: "Neptune"
  38643. }
  38644. }
  38645. ))
  38646. characterMakers.push(() => makeCharacter(
  38647. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38648. {
  38649. front: {
  38650. height: math.unit(16, "feet"),
  38651. weight: math.unit(610, "kg"),
  38652. name: "Front",
  38653. image: {
  38654. source: "./media/characters/huckle/front.svg",
  38655. extra: 1731/1625,
  38656. bottom: 33/1764
  38657. }
  38658. },
  38659. back: {
  38660. height: math.unit(16, "feet"),
  38661. weight: math.unit(610, "kg"),
  38662. name: "Back",
  38663. image: {
  38664. source: "./media/characters/huckle/back.svg",
  38665. extra: 1738/1651,
  38666. bottom: 37/1775
  38667. }
  38668. },
  38669. laughing: {
  38670. height: math.unit(3.75, "feet"),
  38671. name: "Laughing",
  38672. image: {
  38673. source: "./media/characters/huckle/laughing.svg"
  38674. }
  38675. },
  38676. angry: {
  38677. height: math.unit(4.15, "feet"),
  38678. name: "Angry",
  38679. image: {
  38680. source: "./media/characters/huckle/angry.svg"
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(16, "feet"),
  38688. default: true
  38689. },
  38690. {
  38691. name: "Mini Macro",
  38692. height: math.unit(463, "feet")
  38693. },
  38694. {
  38695. name: "Macro",
  38696. height: math.unit(1680, "meters")
  38697. },
  38698. {
  38699. name: "Mega Macro",
  38700. height: math.unit(175, "km")
  38701. },
  38702. {
  38703. name: "Terra Macro",
  38704. height: math.unit(32, "gigameters")
  38705. },
  38706. {
  38707. name: "Multiverse+",
  38708. height: math.unit(2.56e23, "yottameters")
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(6 + 9/12, "feet"),
  38717. weight: math.unit(280, "lb"),
  38718. name: "Front",
  38719. image: {
  38720. source: "./media/characters/candy/front.svg",
  38721. extra: 234/217,
  38722. bottom: 11/245
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Really Small",
  38729. height: math.unit(0.1, "nm")
  38730. },
  38731. {
  38732. name: "Micro",
  38733. height: math.unit(2, "inches")
  38734. },
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(6 + 9/12, "feet"),
  38738. default: true
  38739. },
  38740. {
  38741. name: "Small Macro",
  38742. height: math.unit(69, "feet")
  38743. },
  38744. {
  38745. name: "Macro",
  38746. height: math.unit(160, "feet")
  38747. },
  38748. {
  38749. name: "Megamacro",
  38750. height: math.unit(22000, "miles")
  38751. },
  38752. {
  38753. name: "Gigamacro",
  38754. height: math.unit(50000, "miles")
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(4, "feet"),
  38763. weight: math.unit(90, "lb"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/joey-mcdonald/front.svg",
  38767. extra: 1059/852,
  38768. bottom: 33/1092
  38769. }
  38770. },
  38771. back: {
  38772. height: math.unit(4, "feet"),
  38773. weight: math.unit(90, "lb"),
  38774. name: "Back",
  38775. image: {
  38776. source: "./media/characters/joey-mcdonald/back.svg",
  38777. extra: 1077/879,
  38778. bottom: 5/1082
  38779. }
  38780. },
  38781. frontKobold: {
  38782. height: math.unit(4, "feet"),
  38783. weight: math.unit(100, "lb"),
  38784. name: "Front (Kobold)",
  38785. image: {
  38786. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38787. extra: 1480/1367,
  38788. bottom: 0/1480
  38789. }
  38790. },
  38791. backKobold: {
  38792. height: math.unit(4, "feet"),
  38793. weight: math.unit(100, "lb"),
  38794. name: "Back (Kobold)",
  38795. image: {
  38796. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38797. extra: 1449/1361,
  38798. bottom: 0/1449
  38799. }
  38800. },
  38801. },
  38802. [
  38803. {
  38804. name: "Normal",
  38805. height: math.unit(4, "feet"),
  38806. default: true
  38807. },
  38808. ]
  38809. ))
  38810. characterMakers.push(() => makeCharacter(
  38811. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38812. {
  38813. front: {
  38814. height: math.unit(12 + 6/12, "feet"),
  38815. name: "Front",
  38816. image: {
  38817. source: "./media/characters/kass-lockheed/front.svg",
  38818. extra: 354/343,
  38819. bottom: 9/363
  38820. }
  38821. },
  38822. back: {
  38823. height: math.unit(12 + 6/12, "feet"),
  38824. name: "Back",
  38825. image: {
  38826. source: "./media/characters/kass-lockheed/back.svg",
  38827. extra: 364/352,
  38828. bottom: 3/367
  38829. }
  38830. },
  38831. dick: {
  38832. height: math.unit(3.12, "feet"),
  38833. name: "Dick",
  38834. image: {
  38835. source: "./media/characters/kass-lockheed/dick.svg"
  38836. }
  38837. },
  38838. head: {
  38839. height: math.unit(2.6, "feet"),
  38840. name: "Head",
  38841. image: {
  38842. source: "./media/characters/kass-lockheed/head.svg"
  38843. }
  38844. },
  38845. bleh: {
  38846. height: math.unit(2.85, "feet"),
  38847. name: "Bleh",
  38848. image: {
  38849. source: "./media/characters/kass-lockheed/bleh.svg"
  38850. }
  38851. },
  38852. smug: {
  38853. height: math.unit(2.85, "feet"),
  38854. name: "Smug",
  38855. image: {
  38856. source: "./media/characters/kass-lockheed/smug.svg"
  38857. }
  38858. },
  38859. },
  38860. [
  38861. {
  38862. name: "Normal",
  38863. height: math.unit(12 + 6/12, "feet"),
  38864. default: true
  38865. },
  38866. ]
  38867. ))
  38868. characterMakers.push(() => makeCharacter(
  38869. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38870. {
  38871. front: {
  38872. height: math.unit(6 + 2/12, "feet"),
  38873. name: "Front",
  38874. image: {
  38875. source: "./media/characters/taylor/front.svg",
  38876. extra: 639/495,
  38877. bottom: 12/651
  38878. }
  38879. },
  38880. },
  38881. [
  38882. {
  38883. name: "Normal",
  38884. height: math.unit(6 + 2/12, "feet"),
  38885. default: true
  38886. },
  38887. {
  38888. name: "Big",
  38889. height: math.unit(15, "feet")
  38890. },
  38891. {
  38892. name: "Lorg",
  38893. height: math.unit(80, "feet")
  38894. },
  38895. {
  38896. name: "Too Lorg",
  38897. height: math.unit(120, "feet")
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38903. {
  38904. front: {
  38905. height: math.unit(15, "feet"),
  38906. name: "Front",
  38907. image: {
  38908. source: "./media/characters/kaizer/front.svg",
  38909. extra: 1612/1436,
  38910. bottom: 43/1655
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(15, "feet"),
  38918. default: true
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38924. {
  38925. front: {
  38926. height: math.unit(2, "feet"),
  38927. weight: math.unit(30, "lb"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/sandy/front.svg",
  38931. extra: 1439/1307,
  38932. bottom: 194/1633
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(2, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(3, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/mellvi/front.svg",
  38952. extra: 1831/1630,
  38953. bottom: 58/1889
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(3, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(5 + 11/12, "feet"),
  38970. weight: math.unit(200, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/shirou/front.svg",
  38974. extra: 2491/2383,
  38975. bottom: 189/2680
  38976. }
  38977. },
  38978. back: {
  38979. height: math.unit(5 + 11/12, "feet"),
  38980. weight: math.unit(200, "lb"),
  38981. name: "Back",
  38982. image: {
  38983. source: "./media/characters/shirou/back.svg",
  38984. extra: 2554/2450,
  38985. bottom: 76/2630
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(5 + 11/12, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(6 + 3/12, "feet"),
  39002. weight: math.unit(177, "lb"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/noryu/front.svg",
  39006. extra: 973/885,
  39007. bottom: 10/983
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(6 + 3/12, "feet"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  39021. {
  39022. front: {
  39023. height: math.unit(5 + 6/12, "feet"),
  39024. weight: math.unit(170, "lb"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/mevolas-rubenido/front.svg",
  39028. extra: 2109/1901,
  39029. bottom: 96/2205
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(5 + 6/12, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(100, "feet"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/dee/front.svg",
  39049. extra: 2153/2036,
  39050. bottom: 59/2212
  39051. }
  39052. },
  39053. back: {
  39054. height: math.unit(100, "feet"),
  39055. name: "Back",
  39056. image: {
  39057. source: "./media/characters/dee/back.svg",
  39058. extra: 2183/2058,
  39059. bottom: 75/2258
  39060. }
  39061. },
  39062. foot: {
  39063. height: math.unit(19.43, "feet"),
  39064. name: "Foot",
  39065. image: {
  39066. source: "./media/characters/dee/foot.svg"
  39067. }
  39068. },
  39069. hoof: {
  39070. height: math.unit(20.6, "feet"),
  39071. name: "Hoof",
  39072. image: {
  39073. source: "./media/characters/dee/hoof.svg"
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Macro",
  39080. height: math.unit(100, "feet"),
  39081. default: true
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(5 + 6/12, "feet"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/teh/front.svg",
  39093. extra: 1002/847,
  39094. bottom: 62/1064
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(5 + 6/12, "feet"),
  39102. default: true
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  39108. {
  39109. side: {
  39110. height: math.unit(6 + 1/12, "feet"),
  39111. weight: math.unit(204, "lb"),
  39112. name: "Side",
  39113. image: {
  39114. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39115. extra: 974/775,
  39116. bottom: 169/1143
  39117. }
  39118. },
  39119. sitting: {
  39120. height: math.unit(6 + 2/12, "feet"),
  39121. weight: math.unit(204, "lb"),
  39122. name: "Sitting",
  39123. image: {
  39124. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39125. extra: 1175/964,
  39126. bottom: 378/1553
  39127. }
  39128. },
  39129. },
  39130. [
  39131. {
  39132. name: "Normal",
  39133. height: math.unit(6 + 1/12, "feet"),
  39134. default: true
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(6, "inches"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/tululi/front.svg",
  39146. extra: 1997/1876,
  39147. bottom: 20/2017
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(6, "inches"),
  39155. default: true
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(4 + 1/12, "feet"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/star/front.svg",
  39167. extra: 1493/1189,
  39168. bottom: 48/1541
  39169. }
  39170. },
  39171. },
  39172. [
  39173. {
  39174. name: "Normal",
  39175. height: math.unit(4 + 1/12, "feet"),
  39176. default: true
  39177. },
  39178. ]
  39179. ))
  39180. characterMakers.push(() => makeCharacter(
  39181. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39182. {
  39183. front: {
  39184. height: math.unit(6 + 3/12, "feet"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/comet/front.svg",
  39188. extra: 1681/1462,
  39189. bottom: 26/1707
  39190. }
  39191. },
  39192. },
  39193. [
  39194. {
  39195. name: "Normal",
  39196. height: math.unit(6 + 3/12, "feet"),
  39197. default: true
  39198. },
  39199. ]
  39200. ))
  39201. characterMakers.push(() => makeCharacter(
  39202. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39203. {
  39204. front: {
  39205. height: math.unit(950, "feet"),
  39206. name: "Front",
  39207. image: {
  39208. source: "./media/characters/vortex/front.svg",
  39209. extra: 1497/1434,
  39210. bottom: 56/1553
  39211. }
  39212. },
  39213. maw: {
  39214. height: math.unit(285, "feet"),
  39215. name: "Maw",
  39216. image: {
  39217. source: "./media/characters/vortex/maw.svg"
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Macro",
  39224. height: math.unit(950, "feet"),
  39225. default: true
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(600, "feet"),
  39234. weight: math.unit(0.02, "grams"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/doodle/front.svg",
  39238. extra: 1578/1413,
  39239. bottom: 37/1615
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Macro",
  39246. height: math.unit(600, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(6 + 6/12, "feet"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/jai/front.svg",
  39259. extra: 1645/1534,
  39260. bottom: 115/1760
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Normal",
  39267. height: math.unit(6 + 6/12, "feet"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(6 + 8/12, "feet"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/pixel/front.svg",
  39280. extra: 1900/1735,
  39281. bottom: 63/1963
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(6 + 8/12, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39295. {
  39296. back: {
  39297. height: math.unit(4 + 1/12, "feet"),
  39298. weight: math.unit(75, "lb"),
  39299. name: "Back",
  39300. image: {
  39301. source: "./media/characters/rhett/back.svg",
  39302. extra: 930/878,
  39303. bottom: 25/955
  39304. }
  39305. },
  39306. front: {
  39307. height: math.unit(4 + 1/12, "feet"),
  39308. weight: math.unit(75, "lb"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/rhett/front.svg",
  39312. extra: 1682/1586,
  39313. bottom: 92/1774
  39314. }
  39315. },
  39316. },
  39317. [
  39318. {
  39319. name: "Micro",
  39320. height: math.unit(8, "inches")
  39321. },
  39322. {
  39323. name: "Tiny",
  39324. height: math.unit(2, "feet")
  39325. },
  39326. {
  39327. name: "Normal",
  39328. height: math.unit(4 + 1/12, "feet"),
  39329. default: true
  39330. },
  39331. ]
  39332. ))
  39333. characterMakers.push(() => makeCharacter(
  39334. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39335. {
  39336. front: {
  39337. height: math.unit(3 + 3/12, "feet"),
  39338. name: "Front",
  39339. image: {
  39340. source: "./media/characters/penny/front.svg",
  39341. extra: 1406/1311,
  39342. bottom: 26/1432
  39343. }
  39344. },
  39345. },
  39346. [
  39347. {
  39348. name: "Normal",
  39349. height: math.unit(3 + 3/12, "feet"),
  39350. default: true
  39351. },
  39352. ]
  39353. ))
  39354. characterMakers.push(() => makeCharacter(
  39355. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39356. {
  39357. front: {
  39358. height: math.unit(4 + 11/12, "feet"),
  39359. name: "Front",
  39360. image: {
  39361. source: "./media/characters/monty/front.svg",
  39362. extra: 1479/1209,
  39363. bottom: 0/1479
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(4 + 11/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39377. {
  39378. front: {
  39379. height: math.unit(8 + 4/12, "feet"),
  39380. name: "Front",
  39381. image: {
  39382. source: "./media/characters/sterling/front.svg",
  39383. extra: 1420/1236,
  39384. bottom: 27/1447
  39385. }
  39386. },
  39387. },
  39388. [
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(8 + 4/12, "feet"),
  39392. default: true
  39393. },
  39394. ]
  39395. ))
  39396. characterMakers.push(() => makeCharacter(
  39397. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39398. {
  39399. front: {
  39400. height: math.unit(15, "feet"),
  39401. name: "Front",
  39402. image: {
  39403. source: "./media/characters/marble/front.svg",
  39404. extra: 973/937,
  39405. bottom: 32/1005
  39406. }
  39407. },
  39408. },
  39409. [
  39410. {
  39411. name: "Normal",
  39412. height: math.unit(15, "feet"),
  39413. default: true
  39414. },
  39415. ]
  39416. ))
  39417. characterMakers.push(() => makeCharacter(
  39418. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39419. {
  39420. front: {
  39421. height: math.unit(3, "inches"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/powder/front.svg",
  39425. extra: 1504/1334,
  39426. bottom: 518/2022
  39427. }
  39428. },
  39429. },
  39430. [
  39431. {
  39432. name: "Normal",
  39433. height: math.unit(3, "inches"),
  39434. default: true
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(4 + 5/12, "feet"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/joey-raccoon/front.svg",
  39446. extra: 1273/1197,
  39447. bottom: 0/1273
  39448. }
  39449. },
  39450. },
  39451. [
  39452. {
  39453. name: "Normal",
  39454. height: math.unit(4 + 5/12, "feet"),
  39455. default: true
  39456. },
  39457. ]
  39458. ))
  39459. characterMakers.push(() => makeCharacter(
  39460. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39461. {
  39462. front: {
  39463. height: math.unit(8 + 4/12, "feet"),
  39464. name: "Front",
  39465. image: {
  39466. source: "./media/characters/vick/front.svg",
  39467. extra: 2187/2118,
  39468. bottom: 47/2234
  39469. }
  39470. },
  39471. },
  39472. [
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(8 + 4/12, "feet"),
  39476. default: true
  39477. },
  39478. ]
  39479. ))
  39480. characterMakers.push(() => makeCharacter(
  39481. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39482. {
  39483. front: {
  39484. height: math.unit(5 + 5/12, "feet"),
  39485. name: "Front",
  39486. image: {
  39487. source: "./media/characters/mitsy/front.svg",
  39488. extra: 1842/1695,
  39489. bottom: 0/1842
  39490. }
  39491. },
  39492. },
  39493. [
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(5 + 5/12, "feet"),
  39497. default: true
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(6 + 3/12, "feet"),
  39506. name: "Front",
  39507. image: {
  39508. source: "./media/characters/silvy/front.svg",
  39509. extra: 1995/1836,
  39510. bottom: 225/2220
  39511. }
  39512. },
  39513. },
  39514. [
  39515. {
  39516. name: "Normal",
  39517. height: math.unit(6 + 3/12, "feet"),
  39518. default: true
  39519. },
  39520. ]
  39521. ))
  39522. characterMakers.push(() => makeCharacter(
  39523. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39524. {
  39525. front: {
  39526. height: math.unit(3 + 8/12, "feet"),
  39527. name: "Front",
  39528. image: {
  39529. source: "./media/characters/rodney/front.svg",
  39530. extra: 1956/1747,
  39531. bottom: 31/1987
  39532. }
  39533. },
  39534. frontDressed: {
  39535. height: math.unit(2.9, "feet"),
  39536. name: "Front (Dressed)",
  39537. image: {
  39538. source: "./media/characters/rodney/front-dressed.svg",
  39539. extra: 1382/1241,
  39540. bottom: 385/1767
  39541. }
  39542. },
  39543. },
  39544. [
  39545. {
  39546. name: "Normal",
  39547. height: math.unit(3 + 8/12, "feet"),
  39548. default: true
  39549. },
  39550. ]
  39551. ))
  39552. characterMakers.push(() => makeCharacter(
  39553. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39554. {
  39555. front: {
  39556. height: math.unit(5 + 9/12, "feet"),
  39557. weight: math.unit(194, "lbs"),
  39558. name: "Front",
  39559. image: {
  39560. source: "./media/characters/zakail-sudekai/front.svg",
  39561. extra: 2696/2533,
  39562. bottom: 248/2944
  39563. }
  39564. },
  39565. maw: {
  39566. height: math.unit(1.35, "feet"),
  39567. name: "Maw",
  39568. image: {
  39569. source: "./media/characters/zakail-sudekai/maw.svg"
  39570. }
  39571. },
  39572. },
  39573. [
  39574. {
  39575. name: "Normal",
  39576. height: math.unit(5 + 9/12, "feet"),
  39577. default: true
  39578. },
  39579. ]
  39580. ))
  39581. characterMakers.push(() => makeCharacter(
  39582. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39583. {
  39584. front: {
  39585. height: math.unit(8 + 4/12, "feet"),
  39586. weight: math.unit(1200, "lb"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/eleanor/front.svg",
  39590. extra: 1226/1192,
  39591. bottom: 52/1278
  39592. }
  39593. },
  39594. back: {
  39595. height: math.unit(8 + 4/12, "feet"),
  39596. weight: math.unit(1200, "lb"),
  39597. name: "Back",
  39598. image: {
  39599. source: "./media/characters/eleanor/back.svg",
  39600. extra: 1242/1184,
  39601. bottom: 60/1302
  39602. }
  39603. },
  39604. head: {
  39605. height: math.unit(2.62, "feet"),
  39606. name: "Head",
  39607. image: {
  39608. source: "./media/characters/eleanor/head.svg"
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(8 + 4/12, "feet"),
  39616. default: true
  39617. },
  39618. ]
  39619. ))
  39620. characterMakers.push(() => makeCharacter(
  39621. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39622. {
  39623. front: {
  39624. height: math.unit(8 + 4/12, "feet"),
  39625. weight: math.unit(750, "lb"),
  39626. name: "Front",
  39627. image: {
  39628. source: "./media/characters/tanya/front.svg",
  39629. extra: 1749/1615,
  39630. bottom: 33/1782
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(8 + 4/12, "feet"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(5, "feet"),
  39647. weight: math.unit(225, "lb"),
  39648. name: "Front",
  39649. image: {
  39650. source: "./media/characters/cindy/front.svg",
  39651. extra: 1320/1250,
  39652. bottom: 42/1362
  39653. }
  39654. },
  39655. frontDressed: {
  39656. height: math.unit(5, "feet"),
  39657. weight: math.unit(225, "lb"),
  39658. name: "Front (Dressed)",
  39659. image: {
  39660. source: "./media/characters/cindy/front-dressed.svg",
  39661. extra: 1320/1250,
  39662. bottom: 42/1362
  39663. }
  39664. },
  39665. back: {
  39666. height: math.unit(5, "feet"),
  39667. weight: math.unit(225, "lb"),
  39668. name: "Back",
  39669. image: {
  39670. source: "./media/characters/cindy/back.svg",
  39671. extra: 1384/1346,
  39672. bottom: 14/1398
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(5, "feet"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(6 + 9/12, "feet"),
  39689. weight: math.unit(440, "lb"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/wilbur-owen/front.svg",
  39693. extra: 1575/1448,
  39694. bottom: 72/1647
  39695. }
  39696. },
  39697. back: {
  39698. height: math.unit(6 + 9/12, "feet"),
  39699. weight: math.unit(440, "lb"),
  39700. name: "Back",
  39701. image: {
  39702. source: "./media/characters/wilbur-owen/back.svg",
  39703. extra: 1578/1445,
  39704. bottom: 36/1614
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(6 + 9/12, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39718. {
  39719. front: {
  39720. height: math.unit(6 + 5/12, "feet"),
  39721. weight: math.unit(650, "lb"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/keegan/front.svg",
  39725. extra: 2387/2198,
  39726. bottom: 33/2420
  39727. }
  39728. },
  39729. side: {
  39730. height: math.unit(6 + 5/12, "feet"),
  39731. weight: math.unit(650, "lb"),
  39732. name: "Side",
  39733. image: {
  39734. source: "./media/characters/keegan/side.svg",
  39735. extra: 2390/2202,
  39736. bottom: 47/2437
  39737. }
  39738. },
  39739. back: {
  39740. height: math.unit(6 + 5/12, "feet"),
  39741. weight: math.unit(650, "lb"),
  39742. name: "Back",
  39743. image: {
  39744. source: "./media/characters/keegan/back.svg",
  39745. extra: 2418/2268,
  39746. bottom: 15/2433
  39747. }
  39748. },
  39749. frontSfw: {
  39750. height: math.unit(6 + 5/12, "feet"),
  39751. weight: math.unit(650, "lb"),
  39752. name: "Front (SFW)",
  39753. image: {
  39754. source: "./media/characters/keegan/front-sfw.svg",
  39755. extra: 2387/2198,
  39756. bottom: 33/2420
  39757. }
  39758. },
  39759. beans: {
  39760. height: math.unit(1.85, "feet"),
  39761. name: "Beans",
  39762. image: {
  39763. source: "./media/characters/keegan/beans.svg"
  39764. }
  39765. },
  39766. },
  39767. [
  39768. {
  39769. name: "Normal",
  39770. height: math.unit(6 + 5/12, "feet"),
  39771. default: true
  39772. },
  39773. ]
  39774. ))
  39775. characterMakers.push(() => makeCharacter(
  39776. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39777. {
  39778. front: {
  39779. height: math.unit(9, "feet"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/colton/front.svg",
  39783. extra: 1589/1326,
  39784. bottom: 139/1728
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Normal",
  39791. height: math.unit(9, "feet"),
  39792. default: true
  39793. },
  39794. ]
  39795. ))
  39796. characterMakers.push(() => makeCharacter(
  39797. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39798. {
  39799. front: {
  39800. height: math.unit(2 + 9/12, "feet"),
  39801. name: "Front",
  39802. image: {
  39803. source: "./media/characters/bora/front.svg",
  39804. extra: 1265/1250,
  39805. bottom: 24/1289
  39806. }
  39807. },
  39808. },
  39809. [
  39810. {
  39811. name: "Normal",
  39812. height: math.unit(2 + 9/12, "feet"),
  39813. default: true
  39814. },
  39815. ]
  39816. ))
  39817. characterMakers.push(() => makeCharacter(
  39818. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39819. {
  39820. front: {
  39821. height: math.unit(8, "feet"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/myu-myu/front.svg",
  39825. extra: 1949/1857,
  39826. bottom: 90/2039
  39827. }
  39828. },
  39829. },
  39830. [
  39831. {
  39832. name: "Normal",
  39833. height: math.unit(8, "feet"),
  39834. default: true
  39835. },
  39836. {
  39837. name: "Big",
  39838. height: math.unit(15, "feet")
  39839. },
  39840. {
  39841. name: "BIG",
  39842. height: math.unit(25, "feet")
  39843. },
  39844. ]
  39845. ))
  39846. characterMakers.push(() => makeCharacter(
  39847. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39848. {
  39849. side: {
  39850. height: math.unit(7 + 5/12, "feet"),
  39851. weight: math.unit(2800, "lb"),
  39852. name: "Side",
  39853. image: {
  39854. source: "./media/characters/haloren/side.svg",
  39855. extra: 1793/409,
  39856. bottom: 59/1852
  39857. }
  39858. },
  39859. frontPaw: {
  39860. height: math.unit(2.36, "feet"),
  39861. name: "Front paw",
  39862. image: {
  39863. source: "./media/characters/haloren/front-paw.svg"
  39864. }
  39865. },
  39866. hindPaw: {
  39867. height: math.unit(3.18, "feet"),
  39868. name: "Hind paw",
  39869. image: {
  39870. source: "./media/characters/haloren/hind-paw.svg"
  39871. }
  39872. },
  39873. maw: {
  39874. height: math.unit(5.05, "feet"),
  39875. name: "Maw",
  39876. image: {
  39877. source: "./media/characters/haloren/maw.svg"
  39878. }
  39879. },
  39880. dick: {
  39881. height: math.unit(2.90, "feet"),
  39882. name: "Dick",
  39883. image: {
  39884. source: "./media/characters/haloren/dick.svg"
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Normal",
  39891. height: math.unit(7 + 5/12, "feet"),
  39892. default: true
  39893. },
  39894. {
  39895. name: "Enhanced",
  39896. height: math.unit(14 + 3/12, "feet")
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39902. {
  39903. front: {
  39904. height: math.unit(171, "cm"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/kimmy/front.svg",
  39908. extra: 1491/1435,
  39909. bottom: 53/1544
  39910. }
  39911. },
  39912. },
  39913. [
  39914. {
  39915. name: "Small",
  39916. height: math.unit(9, "cm")
  39917. },
  39918. {
  39919. name: "Normal",
  39920. height: math.unit(171, "cm"),
  39921. default: true
  39922. },
  39923. ]
  39924. ))
  39925. characterMakers.push(() => makeCharacter(
  39926. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39927. {
  39928. front: {
  39929. height: math.unit(8, "feet"),
  39930. weight: math.unit(300, "lb"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/galeboomer/front.svg",
  39934. extra: 4651/4415,
  39935. bottom: 162/4813
  39936. }
  39937. },
  39938. back: {
  39939. height: math.unit(8, "feet"),
  39940. weight: math.unit(300, "lb"),
  39941. name: "Back",
  39942. image: {
  39943. source: "./media/characters/galeboomer/back.svg",
  39944. extra: 4544/4314,
  39945. bottom: 16/4560
  39946. }
  39947. },
  39948. frontAlt: {
  39949. height: math.unit(8, "feet"),
  39950. weight: math.unit(300, "lb"),
  39951. name: "Front (Alt)",
  39952. image: {
  39953. source: "./media/characters/galeboomer/front-alt.svg",
  39954. extra: 4458/4228,
  39955. bottom: 68/4526
  39956. }
  39957. },
  39958. maw: {
  39959. height: math.unit(1.2, "feet"),
  39960. name: "Maw",
  39961. image: {
  39962. source: "./media/characters/galeboomer/maw.svg"
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Normal",
  39969. height: math.unit(8, "feet"),
  39970. default: true
  39971. },
  39972. ]
  39973. ))
  39974. characterMakers.push(() => makeCharacter(
  39975. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39976. {
  39977. front: {
  39978. height: math.unit(5 + 9/12, "feet"),
  39979. weight: math.unit(120, "lb"),
  39980. name: "Front",
  39981. image: {
  39982. source: "./media/characters/chyr/front.svg",
  39983. extra: 1323/1254,
  39984. bottom: 63/1386
  39985. }
  39986. },
  39987. back: {
  39988. height: math.unit(5 + 9/12, "feet"),
  39989. weight: math.unit(120, "lb"),
  39990. name: "Back",
  39991. image: {
  39992. source: "./media/characters/chyr/back.svg",
  39993. extra: 1323/1252,
  39994. bottom: 48/1371
  39995. }
  39996. },
  39997. },
  39998. [
  39999. {
  40000. name: "Normal",
  40001. height: math.unit(5 + 9/12, "feet"),
  40002. default: true
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(7, "feet"),
  40011. weight: math.unit(310, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/solarus/front.svg",
  40015. extra: 2415/2021,
  40016. bottom: 103/2518
  40017. }
  40018. },
  40019. back: {
  40020. height: math.unit(7, "feet"),
  40021. weight: math.unit(310, "lb"),
  40022. name: "Back",
  40023. image: {
  40024. source: "./media/characters/solarus/back.svg",
  40025. extra: 2463/2089,
  40026. bottom: 79/2542
  40027. }
  40028. },
  40029. },
  40030. [
  40031. {
  40032. name: "Normal",
  40033. height: math.unit(7, "feet"),
  40034. default: true
  40035. },
  40036. ]
  40037. ))
  40038. characterMakers.push(() => makeCharacter(
  40039. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  40040. {
  40041. front: {
  40042. height: math.unit(16, "feet"),
  40043. name: "Front",
  40044. image: {
  40045. source: "./media/characters/mutsuju-koizaemon/front.svg",
  40046. extra: 1844/1780,
  40047. bottom: 58/1902
  40048. }
  40049. },
  40050. winterCoat: {
  40051. height: math.unit(16, "feet"),
  40052. name: "Winter Coat",
  40053. image: {
  40054. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  40055. extra: 1807/1775,
  40056. bottom: 69/1876
  40057. }
  40058. },
  40059. },
  40060. [
  40061. {
  40062. name: "Normal",
  40063. height: math.unit(16, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Chicago Size",
  40068. height: math.unit(560, "feet")
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  40074. {
  40075. front: {
  40076. height: math.unit(11 + 6/12, "feet"),
  40077. weight: math.unit(1366, "lb"),
  40078. name: "Front",
  40079. image: {
  40080. source: "./media/characters/lexor/front.svg",
  40081. extra: 1560/1481,
  40082. bottom: 211/1771
  40083. }
  40084. },
  40085. back: {
  40086. height: math.unit(11 + 6/12, "feet"),
  40087. weight: math.unit(1366, "lb"),
  40088. name: "Back",
  40089. image: {
  40090. source: "./media/characters/lexor/back.svg",
  40091. extra: 1614/1533,
  40092. bottom: 76/1690
  40093. }
  40094. },
  40095. maw: {
  40096. height: math.unit(3, "feet"),
  40097. name: "Maw",
  40098. image: {
  40099. source: "./media/characters/lexor/maw.svg"
  40100. }
  40101. },
  40102. dick: {
  40103. height: math.unit(2.59, "feet"),
  40104. name: "Dick",
  40105. image: {
  40106. source: "./media/characters/lexor/dick.svg"
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Normal",
  40113. height: math.unit(11 + 6/12, "feet"),
  40114. default: true
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(5 + 8/12, "feet"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/magnum/front.svg",
  40126. extra: 942/855,
  40127. bottom: 26/968
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Normal",
  40134. height: math.unit(5 + 8/12, "feet"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(18 + 4/12, "feet"),
  40144. weight: math.unit(1500, "kg"),
  40145. name: "Front",
  40146. image: {
  40147. source: "./media/characters/solas-sharpsman/front.svg",
  40148. extra: 1698/1589,
  40149. bottom: 0/1698
  40150. }
  40151. },
  40152. },
  40153. [
  40154. {
  40155. name: "Normal",
  40156. height: math.unit(18 + 4/12, "feet"),
  40157. default: true
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(5 + 5/12, "feet"),
  40166. weight: math.unit(180, "lb"),
  40167. name: "Front",
  40168. image: {
  40169. source: "./media/characters/october/front.svg",
  40170. extra: 1800/1650,
  40171. bottom: 0/1800
  40172. }
  40173. },
  40174. frontNsfw: {
  40175. height: math.unit(5 + 5/12, "feet"),
  40176. weight: math.unit(180, "lb"),
  40177. name: "Front (NSFW)",
  40178. image: {
  40179. source: "./media/characters/october/front-nsfw.svg",
  40180. extra: 1392/1307,
  40181. bottom: 42/1434
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(5 + 5/12, "feet"),
  40189. default: true
  40190. },
  40191. ]
  40192. ))
  40193. characterMakers.push(() => makeCharacter(
  40194. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40195. {
  40196. front: {
  40197. height: math.unit(8 + 6/12, "feet"),
  40198. name: "Front",
  40199. image: {
  40200. source: "./media/characters/essynkardi/front.svg",
  40201. extra: 1541/1457,
  40202. bottom: 47/1588
  40203. }
  40204. },
  40205. },
  40206. [
  40207. {
  40208. name: "Normal",
  40209. height: math.unit(8 + 6/12, "feet"),
  40210. default: true
  40211. },
  40212. ]
  40213. ))
  40214. characterMakers.push(() => makeCharacter(
  40215. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40216. {
  40217. front: {
  40218. height: math.unit(6 + 6/12, "feet"),
  40219. weight: math.unit(7, "lb"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/icky/front.svg",
  40223. extra: 813/782,
  40224. bottom: 66/879
  40225. }
  40226. },
  40227. back: {
  40228. height: math.unit(6 + 6/12, "feet"),
  40229. weight: math.unit(7, "lb"),
  40230. name: "Back",
  40231. image: {
  40232. source: "./media/characters/icky/back.svg",
  40233. extra: 754/735,
  40234. bottom: 56/810
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Normal",
  40241. height: math.unit(6 + 6/12, "feet"),
  40242. default: true
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(15, "feet"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/rojas/front.svg",
  40254. extra: 1462/1408,
  40255. bottom: 95/1557
  40256. }
  40257. },
  40258. back: {
  40259. height: math.unit(15, "feet"),
  40260. name: "Back",
  40261. image: {
  40262. source: "./media/characters/rojas/back.svg",
  40263. extra: 1023/954,
  40264. bottom: 28/1051
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Normal",
  40271. height: math.unit(15, "feet"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40278. {
  40279. frontHuman: {
  40280. height: math.unit(5 + 7/12, "feet"),
  40281. name: "Front (Human)",
  40282. image: {
  40283. source: "./media/characters/alek-dryagan/front-human.svg",
  40284. extra: 1687/1667,
  40285. bottom: 69/1756
  40286. }
  40287. },
  40288. backHuman: {
  40289. height: math.unit(5 + 7/12, "feet"),
  40290. name: "Back (Human)",
  40291. image: {
  40292. source: "./media/characters/alek-dryagan/back-human.svg",
  40293. extra: 1670/1649,
  40294. bottom: 65/1735
  40295. }
  40296. },
  40297. frontDemi: {
  40298. height: math.unit(65, "feet"),
  40299. name: "Front (Demi)",
  40300. image: {
  40301. source: "./media/characters/alek-dryagan/front-demi.svg",
  40302. extra: 1669/1642,
  40303. bottom: 49/1718
  40304. }
  40305. },
  40306. backDemi: {
  40307. height: math.unit(65, "feet"),
  40308. name: "Back (Demi)",
  40309. image: {
  40310. source: "./media/characters/alek-dryagan/back-demi.svg",
  40311. extra: 1658/1637,
  40312. bottom: 40/1698
  40313. }
  40314. },
  40315. mawHuman: {
  40316. height: math.unit(0.3, "feet"),
  40317. name: "Maw (Human)",
  40318. image: {
  40319. source: "./media/characters/alek-dryagan/maw-human.svg"
  40320. }
  40321. },
  40322. mawDemi: {
  40323. height: math.unit(3.8, "feet"),
  40324. name: "Maw (Demi)",
  40325. image: {
  40326. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40327. }
  40328. },
  40329. },
  40330. [
  40331. {
  40332. name: "Normal",
  40333. height: math.unit(5 + 7/12, "feet"),
  40334. default: true
  40335. },
  40336. ]
  40337. ))
  40338. characterMakers.push(() => makeCharacter(
  40339. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40340. {
  40341. frontHuman: {
  40342. height: math.unit(5 + 2/12, "feet"),
  40343. name: "Front (Human)",
  40344. image: {
  40345. source: "./media/characters/gen/front-human.svg",
  40346. extra: 1627/1538,
  40347. bottom: 71/1698
  40348. }
  40349. },
  40350. backHuman: {
  40351. height: math.unit(5 + 2/12, "feet"),
  40352. name: "Back (Human)",
  40353. image: {
  40354. source: "./media/characters/gen/back-human.svg",
  40355. extra: 1638/1548,
  40356. bottom: 69/1707
  40357. }
  40358. },
  40359. frontDemi: {
  40360. height: math.unit(5 + 2/12, "feet"),
  40361. name: "Front (Demi)",
  40362. image: {
  40363. source: "./media/characters/gen/front-demi.svg",
  40364. extra: 1627/1538,
  40365. bottom: 71/1698
  40366. }
  40367. },
  40368. backDemi: {
  40369. height: math.unit(5 + 2/12, "feet"),
  40370. name: "Back (Demi)",
  40371. image: {
  40372. source: "./media/characters/gen/back-demi.svg",
  40373. extra: 1638/1548,
  40374. bottom: 69/1707
  40375. }
  40376. },
  40377. },
  40378. [
  40379. {
  40380. name: "Normal",
  40381. height: math.unit(5 + 2/12, "feet"),
  40382. default: true
  40383. },
  40384. ]
  40385. ))
  40386. characterMakers.push(() => makeCharacter(
  40387. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40388. {
  40389. frontImp: {
  40390. height: math.unit(1 + 11/12, "feet"),
  40391. name: "Front (Imp)",
  40392. image: {
  40393. source: "./media/characters/max-kobold/front-imp.svg",
  40394. extra: 1238/1134,
  40395. bottom: 81/1319
  40396. }
  40397. },
  40398. backImp: {
  40399. height: math.unit(1 + 11/12, "feet"),
  40400. name: "Back (Imp)",
  40401. image: {
  40402. source: "./media/characters/max-kobold/back-imp.svg",
  40403. extra: 1334/1175,
  40404. bottom: 34/1368
  40405. }
  40406. },
  40407. frontDemi: {
  40408. height: math.unit(5 + 9/12, "feet"),
  40409. name: "Front (Demi)",
  40410. image: {
  40411. source: "./media/characters/max-kobold/front-demi.svg",
  40412. extra: 1715/1685,
  40413. bottom: 54/1769
  40414. }
  40415. },
  40416. backDemi: {
  40417. height: math.unit(5 + 9/12, "feet"),
  40418. name: "Back (Demi)",
  40419. image: {
  40420. source: "./media/characters/max-kobold/back-demi.svg",
  40421. extra: 1752/1729,
  40422. bottom: 41/1793
  40423. }
  40424. },
  40425. handImp: {
  40426. height: math.unit(0.45, "feet"),
  40427. name: "Hand (Imp)",
  40428. image: {
  40429. source: "./media/characters/max-kobold/hand.svg"
  40430. }
  40431. },
  40432. pawImp: {
  40433. height: math.unit(0.46, "feet"),
  40434. name: "Paw (Imp)",
  40435. image: {
  40436. source: "./media/characters/max-kobold/paw.svg"
  40437. }
  40438. },
  40439. handDemi: {
  40440. height: math.unit(0.80, "feet"),
  40441. name: "Hand (Demi)",
  40442. image: {
  40443. source: "./media/characters/max-kobold/hand.svg"
  40444. }
  40445. },
  40446. pawDemi: {
  40447. height: math.unit(1.1, "feet"),
  40448. name: "Paw (Demi)",
  40449. image: {
  40450. source: "./media/characters/max-kobold/paw.svg"
  40451. }
  40452. },
  40453. headImp: {
  40454. height: math.unit(1.33, "feet"),
  40455. name: "Head (Imp)",
  40456. image: {
  40457. source: "./media/characters/max-kobold/head-imp.svg"
  40458. }
  40459. },
  40460. mawImp: {
  40461. height: math.unit(0.75, "feet"),
  40462. name: "Maw (Imp)",
  40463. image: {
  40464. source: "./media/characters/max-kobold/maw-imp.svg"
  40465. }
  40466. },
  40467. mawDemi: {
  40468. height: math.unit(0.42, "feet"),
  40469. name: "Maw (Demi)",
  40470. image: {
  40471. source: "./media/characters/max-kobold/maw-demi.svg"
  40472. }
  40473. },
  40474. },
  40475. [
  40476. {
  40477. name: "Normal",
  40478. height: math.unit(1 + 11/12, "feet"),
  40479. default: true
  40480. },
  40481. ]
  40482. ))
  40483. characterMakers.push(() => makeCharacter(
  40484. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40485. {
  40486. front: {
  40487. height: math.unit(7 + 5/12, "feet"),
  40488. name: "Front",
  40489. image: {
  40490. source: "./media/characters/carbon/front.svg",
  40491. extra: 1754/1689,
  40492. bottom: 65/1819
  40493. }
  40494. },
  40495. back: {
  40496. height: math.unit(7 + 5/12, "feet"),
  40497. name: "Back",
  40498. image: {
  40499. source: "./media/characters/carbon/back.svg",
  40500. extra: 1762/1695,
  40501. bottom: 24/1786
  40502. }
  40503. },
  40504. frontGigantamax: {
  40505. height: math.unit(150, "feet"),
  40506. name: "Front (Gigantamax)",
  40507. image: {
  40508. source: "./media/characters/carbon/front-gigantamax.svg",
  40509. extra: 1826/1669,
  40510. bottom: 59/1885
  40511. }
  40512. },
  40513. backGigantamax: {
  40514. height: math.unit(150, "feet"),
  40515. name: "Back (Gigantamax)",
  40516. image: {
  40517. source: "./media/characters/carbon/back-gigantamax.svg",
  40518. extra: 1796/1653,
  40519. bottom: 53/1849
  40520. }
  40521. },
  40522. maw: {
  40523. height: math.unit(0.48, "feet"),
  40524. name: "Maw",
  40525. image: {
  40526. source: "./media/characters/carbon/maw.svg"
  40527. }
  40528. },
  40529. mawGigantamax: {
  40530. height: math.unit(7.5, "feet"),
  40531. name: "Maw (Gigantamax)",
  40532. image: {
  40533. source: "./media/characters/carbon/maw-gigantamax.svg"
  40534. }
  40535. },
  40536. },
  40537. [
  40538. {
  40539. name: "Normal",
  40540. height: math.unit(7 + 5/12, "feet"),
  40541. default: true
  40542. },
  40543. ]
  40544. ))
  40545. characterMakers.push(() => makeCharacter(
  40546. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40547. {
  40548. front: {
  40549. height: math.unit(6, "feet"),
  40550. name: "Front",
  40551. image: {
  40552. source: "./media/characters/maverick/front.svg",
  40553. extra: 1672/1661,
  40554. bottom: 85/1757
  40555. }
  40556. },
  40557. back: {
  40558. height: math.unit(6, "feet"),
  40559. name: "Back",
  40560. image: {
  40561. source: "./media/characters/maverick/back.svg",
  40562. extra: 1642/1631,
  40563. bottom: 38/1680
  40564. }
  40565. },
  40566. },
  40567. [
  40568. {
  40569. name: "Normal",
  40570. height: math.unit(6, "feet"),
  40571. default: true
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(15, "feet"),
  40580. weight: math.unit(615, "lb"),
  40581. name: "Front",
  40582. image: {
  40583. source: "./media/characters/grockle/front.svg",
  40584. extra: 1535/1427,
  40585. bottom: 56/1591
  40586. }
  40587. },
  40588. },
  40589. [
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(15, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Large",
  40597. height: math.unit(150, "feet")
  40598. },
  40599. {
  40600. name: "Macro",
  40601. height: math.unit(1876, "feet")
  40602. },
  40603. {
  40604. name: "Mega Macro",
  40605. height: math.unit(121940, "feet")
  40606. },
  40607. {
  40608. name: "Giga Macro",
  40609. height: math.unit(750, "km")
  40610. },
  40611. {
  40612. name: "Tera Macro",
  40613. height: math.unit(750000, "km")
  40614. },
  40615. {
  40616. name: "Galactic",
  40617. height: math.unit(1.4e5, "km")
  40618. },
  40619. {
  40620. name: "Godlike",
  40621. height: math.unit(9.8e280, "galaxies")
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40627. {
  40628. front: {
  40629. height: math.unit(11, "meters"),
  40630. weight: math.unit(20, "tonnes"),
  40631. name: "Front",
  40632. image: {
  40633. source: "./media/characters/alistair/front.svg",
  40634. extra: 1265/1009,
  40635. bottom: 93/1358
  40636. }
  40637. },
  40638. },
  40639. [
  40640. {
  40641. name: "Normal",
  40642. height: math.unit(11, "meters"),
  40643. default: true
  40644. },
  40645. ]
  40646. ))
  40647. characterMakers.push(() => makeCharacter(
  40648. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40649. {
  40650. front: {
  40651. height: math.unit(5 + 8/12, "feet"),
  40652. name: "Front",
  40653. image: {
  40654. source: "./media/characters/haruka/front.svg",
  40655. extra: 2012/1952,
  40656. bottom: 0/2012
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(5 + 8/12, "feet"),
  40664. default: true
  40665. },
  40666. ]
  40667. ))
  40668. characterMakers.push(() => makeCharacter(
  40669. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40670. {
  40671. back: {
  40672. height: math.unit(9, "feet"),
  40673. name: "Back",
  40674. image: {
  40675. source: "./media/characters/vivian-sylveon/back.svg",
  40676. extra: 1853/1714,
  40677. bottom: 0/1853
  40678. }
  40679. },
  40680. hyper: {
  40681. height: math.unit(5.58, "feet"),
  40682. name: "Hyper",
  40683. preyCapacity: math.unit(2.80616218797, "m^3"),
  40684. image: {
  40685. source: "./media/characters/vivian-sylveon/hyper.svg",
  40686. extra: 999/676,
  40687. bottom: 697/1696
  40688. },
  40689. },
  40690. paw: {
  40691. height: math.unit(1.8, "feet"),
  40692. name: "Paw",
  40693. image: {
  40694. source: "./media/characters/vivian-sylveon/paw.svg"
  40695. }
  40696. },
  40697. danger: {
  40698. height: math.unit(7.5, "feet"),
  40699. name: "DANGER",
  40700. image: {
  40701. source: "./media/characters/vivian-sylveon/danger.svg"
  40702. }
  40703. },
  40704. },
  40705. [
  40706. {
  40707. name: "Normal",
  40708. height: math.unit(10, "feet"),
  40709. default: true
  40710. },
  40711. {
  40712. name: "Macro",
  40713. height: math.unit(500, "feet")
  40714. },
  40715. {
  40716. name: "Megamacro",
  40717. height: math.unit(600, "miles")
  40718. },
  40719. {
  40720. name: "Gigamacro",
  40721. height: math.unit(30000, "miles")
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40727. {
  40728. anthro: {
  40729. height: math.unit(5 + 10/12, "feet"),
  40730. weight: math.unit(100, "lb"),
  40731. name: "Anthro",
  40732. image: {
  40733. source: "./media/characters/daiki/anthro.svg",
  40734. extra: 1115/1027,
  40735. bottom: 69/1184
  40736. }
  40737. },
  40738. feral: {
  40739. height: math.unit(200, "feet"),
  40740. name: "Feral",
  40741. image: {
  40742. source: "./media/characters/daiki/feral.svg",
  40743. extra: 1256/313,
  40744. bottom: 39/1295
  40745. }
  40746. },
  40747. feralHead: {
  40748. height: math.unit(171, "feet"),
  40749. name: "Feral Head",
  40750. image: {
  40751. source: "./media/characters/daiki/feral-head.svg"
  40752. }
  40753. },
  40754. manaDragon: {
  40755. height: math.unit(170, "meters"),
  40756. name: "Mana Dragon",
  40757. image: {
  40758. source: "./media/characters/daiki/mana-dragon.svg",
  40759. extra: 763/420,
  40760. bottom: 97/860
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Normal",
  40767. height: math.unit(5 + 10/12, "feet"),
  40768. default: true
  40769. },
  40770. ]
  40771. ))
  40772. characterMakers.push(() => makeCharacter(
  40773. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40774. {
  40775. fullyEquippedFront: {
  40776. height: math.unit(3 + 1/12, "feet"),
  40777. weight: math.unit(24, "lb"),
  40778. name: "Fully Equipped (Front)",
  40779. image: {
  40780. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40781. extra: 687/605,
  40782. bottom: 18/705
  40783. }
  40784. },
  40785. fullyEquippedBack: {
  40786. height: math.unit(3 + 1/12, "feet"),
  40787. weight: math.unit(24, "lb"),
  40788. name: "Fully Equipped (Back)",
  40789. image: {
  40790. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40791. extra: 689/590,
  40792. bottom: 18/707
  40793. }
  40794. },
  40795. dailyWear: {
  40796. height: math.unit(3 + 1/12, "feet"),
  40797. weight: math.unit(24, "lb"),
  40798. name: "Daily Wear",
  40799. image: {
  40800. source: "./media/characters/tea-spot/daily-wear.svg",
  40801. extra: 701/620,
  40802. bottom: 21/722
  40803. }
  40804. },
  40805. maidWork: {
  40806. height: math.unit(3 + 1/12, "feet"),
  40807. weight: math.unit(24, "lb"),
  40808. name: "Maid Work",
  40809. image: {
  40810. source: "./media/characters/tea-spot/maid-work.svg",
  40811. extra: 693/609,
  40812. bottom: 15/708
  40813. }
  40814. },
  40815. },
  40816. [
  40817. {
  40818. name: "Normal",
  40819. height: math.unit(3 + 1/12, "feet"),
  40820. default: true
  40821. },
  40822. ]
  40823. ))
  40824. characterMakers.push(() => makeCharacter(
  40825. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40826. {
  40827. front: {
  40828. height: math.unit(175, "cm"),
  40829. weight: math.unit(75, "kg"),
  40830. name: "Front",
  40831. image: {
  40832. source: "./media/characters/chee/front.svg",
  40833. extra: 1796/1740,
  40834. bottom: 40/1836
  40835. }
  40836. },
  40837. },
  40838. [
  40839. {
  40840. name: "Micro-Micro",
  40841. height: math.unit(1, "nm")
  40842. },
  40843. {
  40844. name: "Micro-erst",
  40845. height: math.unit(1, "micrometer")
  40846. },
  40847. {
  40848. name: "Micro-er",
  40849. height: math.unit(1, "cm")
  40850. },
  40851. {
  40852. name: "Normal",
  40853. height: math.unit(175, "cm"),
  40854. default: true
  40855. },
  40856. {
  40857. name: "Macro",
  40858. height: math.unit(100, "m")
  40859. },
  40860. {
  40861. name: "Macro-er",
  40862. height: math.unit(1, "km")
  40863. },
  40864. {
  40865. name: "Macro-erst",
  40866. height: math.unit(10, "km")
  40867. },
  40868. {
  40869. name: "Macro-Macro",
  40870. height: math.unit(100, "km")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(11 + 9/12, "feet"),
  40879. weight: math.unit(935, "lb"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/kingsley/front.svg",
  40883. extra: 1803/1674,
  40884. bottom: 127/1930
  40885. }
  40886. },
  40887. frontNude: {
  40888. height: math.unit(11 + 9/12, "feet"),
  40889. weight: math.unit(935, "lb"),
  40890. name: "Front (Nude)",
  40891. image: {
  40892. source: "./media/characters/kingsley/front-nude.svg",
  40893. extra: 1803/1674,
  40894. bottom: 127/1930
  40895. }
  40896. },
  40897. },
  40898. [
  40899. {
  40900. name: "Normal",
  40901. height: math.unit(11 + 9/12, "feet"),
  40902. default: true
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40908. {
  40909. side: {
  40910. height: math.unit(9, "feet"),
  40911. name: "Side",
  40912. image: {
  40913. source: "./media/characters/rymel/side.svg",
  40914. extra: 792/469,
  40915. bottom: 121/913
  40916. }
  40917. },
  40918. maw: {
  40919. height: math.unit(2.4, "meters"),
  40920. name: "Maw",
  40921. image: {
  40922. source: "./media/characters/rymel/maw.svg"
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "House Drake",
  40929. height: math.unit(2, "feet")
  40930. },
  40931. {
  40932. name: "Reduced",
  40933. height: math.unit(4.5, "feet")
  40934. },
  40935. {
  40936. name: "Normal",
  40937. height: math.unit(9, "feet"),
  40938. default: true
  40939. },
  40940. ]
  40941. ))
  40942. characterMakers.push(() => makeCharacter(
  40943. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40944. {
  40945. front: {
  40946. height: math.unit(1.74, "meters"),
  40947. weight: math.unit(55, "kg"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/rubus/front.svg",
  40951. extra: 1894/1742,
  40952. bottom: 44/1938
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(1.74, "meters"),
  40960. default: true
  40961. },
  40962. ]
  40963. ))
  40964. characterMakers.push(() => makeCharacter(
  40965. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40966. {
  40967. front: {
  40968. height: math.unit(5 + 2/12, "feet"),
  40969. weight: math.unit(112, "lb"),
  40970. name: "Front",
  40971. image: {
  40972. source: "./media/characters/cassie-kingston/front.svg",
  40973. extra: 1438/1390,
  40974. bottom: 47/1485
  40975. }
  40976. },
  40977. },
  40978. [
  40979. {
  40980. name: "Normal",
  40981. height: math.unit(5 + 2/12, "feet"),
  40982. default: true
  40983. },
  40984. {
  40985. name: "Macro",
  40986. height: math.unit(128, "feet")
  40987. },
  40988. {
  40989. name: "Megamacro",
  40990. height: math.unit(2.56, "miles")
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(7, "feet"),
  40999. name: "Front",
  41000. image: {
  41001. source: "./media/characters/fox/front.svg",
  41002. extra: 1798/1703,
  41003. bottom: 55/1853
  41004. }
  41005. },
  41006. back: {
  41007. height: math.unit(7, "feet"),
  41008. name: "Back",
  41009. image: {
  41010. source: "./media/characters/fox/back.svg",
  41011. extra: 1748/1649,
  41012. bottom: 32/1780
  41013. }
  41014. },
  41015. head: {
  41016. height: math.unit(1.95, "feet"),
  41017. name: "Head",
  41018. image: {
  41019. source: "./media/characters/fox/head.svg"
  41020. }
  41021. },
  41022. dick: {
  41023. height: math.unit(1.33, "feet"),
  41024. name: "Dick",
  41025. image: {
  41026. source: "./media/characters/fox/dick.svg"
  41027. }
  41028. },
  41029. foot: {
  41030. height: math.unit(1, "feet"),
  41031. name: "Foot",
  41032. image: {
  41033. source: "./media/characters/fox/foot.svg"
  41034. }
  41035. },
  41036. paw: {
  41037. height: math.unit(0.92, "feet"),
  41038. name: "Paw",
  41039. image: {
  41040. source: "./media/characters/fox/paw.svg"
  41041. }
  41042. },
  41043. },
  41044. [
  41045. {
  41046. name: "Small",
  41047. height: math.unit(3, "inches")
  41048. },
  41049. {
  41050. name: "\"Realistic\"",
  41051. height: math.unit(7, "feet")
  41052. },
  41053. {
  41054. name: "Normal",
  41055. height: math.unit(150, "feet"),
  41056. default: true
  41057. },
  41058. {
  41059. name: "BIG",
  41060. height: math.unit(1200, "feet")
  41061. },
  41062. {
  41063. name: "👀",
  41064. height: math.unit(5, "miles")
  41065. },
  41066. {
  41067. name: "👀👀👀",
  41068. height: math.unit(64, "miles")
  41069. },
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  41074. {
  41075. front: {
  41076. height: math.unit(625, "feet"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/asonja-rossa/front.svg",
  41080. extra: 1833/1686,
  41081. bottom: 24/1857
  41082. }
  41083. },
  41084. back: {
  41085. height: math.unit(625, "feet"),
  41086. name: "Back",
  41087. image: {
  41088. source: "./media/characters/asonja-rossa/back.svg",
  41089. extra: 1852/1753,
  41090. bottom: 26/1878
  41091. }
  41092. },
  41093. },
  41094. [
  41095. {
  41096. name: "Macro",
  41097. height: math.unit(625, "feet"),
  41098. default: true
  41099. },
  41100. ]
  41101. ))
  41102. characterMakers.push(() => makeCharacter(
  41103. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  41104. {
  41105. side: {
  41106. height: math.unit(8, "feet"),
  41107. name: "Side",
  41108. image: {
  41109. source: "./media/characters/rezukii/side.svg",
  41110. extra: 979/542,
  41111. bottom: 87/1066
  41112. }
  41113. },
  41114. sitting: {
  41115. height: math.unit(14.6, "feet"),
  41116. name: "Sitting",
  41117. image: {
  41118. source: "./media/characters/rezukii/sitting.svg",
  41119. extra: 1023/813,
  41120. bottom: 45/1068
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Tiny",
  41127. height: math.unit(2, "feet")
  41128. },
  41129. {
  41130. name: "Smol",
  41131. height: math.unit(4, "feet")
  41132. },
  41133. {
  41134. name: "Normal",
  41135. height: math.unit(8, "feet"),
  41136. default: true
  41137. },
  41138. {
  41139. name: "Big",
  41140. height: math.unit(12, "feet")
  41141. },
  41142. {
  41143. name: "Macro",
  41144. height: math.unit(30, "feet")
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(14, "feet"),
  41153. weight: math.unit(9.5, "tonnes"),
  41154. name: "Front",
  41155. image: {
  41156. source: "./media/characters/dawnheart/front.svg",
  41157. extra: 2792/2675,
  41158. bottom: 64/2856
  41159. }
  41160. },
  41161. },
  41162. [
  41163. {
  41164. name: "Normal",
  41165. height: math.unit(14, "feet"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41172. {
  41173. front: {
  41174. height: math.unit(1.7, "m"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/gladi/front.svg",
  41178. extra: 1460/1362,
  41179. bottom: 19/1479
  41180. }
  41181. },
  41182. back: {
  41183. height: math.unit(1.7, "m"),
  41184. name: "Back",
  41185. image: {
  41186. source: "./media/characters/gladi/back.svg",
  41187. extra: 1459/1357,
  41188. bottom: 12/1471
  41189. }
  41190. },
  41191. feral: {
  41192. height: math.unit(2.05, "m"),
  41193. name: "Feral",
  41194. image: {
  41195. source: "./media/characters/gladi/feral.svg",
  41196. extra: 821/557,
  41197. bottom: 91/912
  41198. }
  41199. },
  41200. },
  41201. [
  41202. {
  41203. name: "Shortest",
  41204. height: math.unit(70, "cm")
  41205. },
  41206. {
  41207. name: "Normal",
  41208. height: math.unit(1.7, "m")
  41209. },
  41210. {
  41211. name: "Macro",
  41212. height: math.unit(10, "m"),
  41213. default: true
  41214. },
  41215. {
  41216. name: "Tallest",
  41217. height: math.unit(200, "m")
  41218. },
  41219. ]
  41220. ))
  41221. characterMakers.push(() => makeCharacter(
  41222. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41223. {
  41224. front: {
  41225. height: math.unit(5 + 7/12, "feet"),
  41226. weight: math.unit(2, "tons"),
  41227. name: "Front",
  41228. image: {
  41229. source: "./media/characters/erdno/front.svg",
  41230. extra: 1234/1129,
  41231. bottom: 35/1269
  41232. }
  41233. },
  41234. angled: {
  41235. height: math.unit(5 + 7/12, "feet"),
  41236. weight: math.unit(2, "tons"),
  41237. name: "Angled",
  41238. image: {
  41239. source: "./media/characters/erdno/angled.svg",
  41240. extra: 1185/1139,
  41241. bottom: 36/1221
  41242. }
  41243. },
  41244. side: {
  41245. height: math.unit(5 + 7/12, "feet"),
  41246. weight: math.unit(2, "tons"),
  41247. name: "Side",
  41248. image: {
  41249. source: "./media/characters/erdno/side.svg",
  41250. extra: 1191/1144,
  41251. bottom: 40/1231
  41252. }
  41253. },
  41254. back: {
  41255. height: math.unit(5 + 7/12, "feet"),
  41256. weight: math.unit(2, "tons"),
  41257. name: "Back",
  41258. image: {
  41259. source: "./media/characters/erdno/back.svg",
  41260. extra: 1202/1146,
  41261. bottom: 17/1219
  41262. }
  41263. },
  41264. frontNsfw: {
  41265. height: math.unit(5 + 7/12, "feet"),
  41266. weight: math.unit(2, "tons"),
  41267. name: "Front (NSFW)",
  41268. image: {
  41269. source: "./media/characters/erdno/front-nsfw.svg",
  41270. extra: 1234/1129,
  41271. bottom: 35/1269
  41272. }
  41273. },
  41274. angledNsfw: {
  41275. height: math.unit(5 + 7/12, "feet"),
  41276. weight: math.unit(2, "tons"),
  41277. name: "Angled (NSFW)",
  41278. image: {
  41279. source: "./media/characters/erdno/angled-nsfw.svg",
  41280. extra: 1185/1139,
  41281. bottom: 36/1221
  41282. }
  41283. },
  41284. sideNsfw: {
  41285. height: math.unit(5 + 7/12, "feet"),
  41286. weight: math.unit(2, "tons"),
  41287. name: "Side (NSFW)",
  41288. image: {
  41289. source: "./media/characters/erdno/side-nsfw.svg",
  41290. extra: 1191/1144,
  41291. bottom: 40/1231
  41292. }
  41293. },
  41294. backNsfw: {
  41295. height: math.unit(5 + 7/12, "feet"),
  41296. weight: math.unit(2, "tons"),
  41297. name: "Back (NSFW)",
  41298. image: {
  41299. source: "./media/characters/erdno/back-nsfw.svg",
  41300. extra: 1202/1146,
  41301. bottom: 17/1219
  41302. }
  41303. },
  41304. frontHyper: {
  41305. height: math.unit(5 + 7/12, "feet"),
  41306. weight: math.unit(2, "tons"),
  41307. name: "Front (Hyper)",
  41308. image: {
  41309. source: "./media/characters/erdno/front-hyper.svg",
  41310. extra: 1298/1136,
  41311. bottom: 35/1333
  41312. }
  41313. },
  41314. },
  41315. [
  41316. {
  41317. name: "Normal",
  41318. height: math.unit(5 + 7/12, "feet"),
  41319. default: true
  41320. },
  41321. {
  41322. name: "Big",
  41323. height: math.unit(5.7, "meters")
  41324. },
  41325. {
  41326. name: "Macro",
  41327. height: math.unit(5.7, "kilometers")
  41328. },
  41329. {
  41330. name: "Megamacro",
  41331. height: math.unit(5.7, "earths")
  41332. },
  41333. ]
  41334. ))
  41335. characterMakers.push(() => makeCharacter(
  41336. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41337. {
  41338. front: {
  41339. height: math.unit(5 + 10/12, "feet"),
  41340. weight: math.unit(150, "lb"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/jamie/front.svg",
  41344. extra: 1908/1768,
  41345. bottom: 19/1927
  41346. }
  41347. },
  41348. },
  41349. [
  41350. {
  41351. name: "Minimum",
  41352. height: math.unit(2, "cm")
  41353. },
  41354. {
  41355. name: "Micro",
  41356. height: math.unit(3, "inches")
  41357. },
  41358. {
  41359. name: "Normal",
  41360. height: math.unit(5 + 10/12, "feet"),
  41361. default: true
  41362. },
  41363. {
  41364. name: "Macro",
  41365. height: math.unit(150, "feet")
  41366. },
  41367. {
  41368. name: "Megamacro",
  41369. height: math.unit(10000, "m")
  41370. },
  41371. ]
  41372. ))
  41373. characterMakers.push(() => makeCharacter(
  41374. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41375. {
  41376. front: {
  41377. height: math.unit(2, "meters"),
  41378. weight: math.unit(100, "kg"),
  41379. name: "Front",
  41380. image: {
  41381. source: "./media/characters/shiron/front.svg",
  41382. extra: 2103/1985,
  41383. bottom: 98/2201
  41384. }
  41385. },
  41386. back: {
  41387. height: math.unit(2, "meters"),
  41388. weight: math.unit(100, "kg"),
  41389. name: "Back",
  41390. image: {
  41391. source: "./media/characters/shiron/back.svg",
  41392. extra: 2110/2015,
  41393. bottom: 89/2199
  41394. }
  41395. },
  41396. hand: {
  41397. height: math.unit(0.96, "feet"),
  41398. name: "Hand",
  41399. image: {
  41400. source: "./media/characters/shiron/hand.svg"
  41401. }
  41402. },
  41403. foot: {
  41404. height: math.unit(1.464, "feet"),
  41405. name: "Foot",
  41406. image: {
  41407. source: "./media/characters/shiron/foot.svg"
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Normal",
  41414. height: math.unit(2, "meters")
  41415. },
  41416. {
  41417. name: "Macro",
  41418. height: math.unit(500, "meters"),
  41419. default: true
  41420. },
  41421. {
  41422. name: "Megamacro",
  41423. height: math.unit(20, "km")
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(6, "feet"),
  41432. name: "Front",
  41433. image: {
  41434. source: "./media/characters/sam/front.svg",
  41435. extra: 849/826,
  41436. bottom: 19/868
  41437. }
  41438. },
  41439. },
  41440. [
  41441. {
  41442. name: "Normal",
  41443. height: math.unit(6, "feet"),
  41444. default: true
  41445. },
  41446. ]
  41447. ))
  41448. characterMakers.push(() => makeCharacter(
  41449. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41450. {
  41451. front: {
  41452. height: math.unit(8 + 4/12, "feet"),
  41453. weight: math.unit(122, "kg"),
  41454. name: "Front",
  41455. image: {
  41456. source: "./media/characters/namori-kurogawa/front.svg",
  41457. extra: 1894/1576,
  41458. bottom: 34/1928
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Normal",
  41465. height: math.unit(8 + 4/12, "feet"),
  41466. default: true
  41467. },
  41468. ]
  41469. ))
  41470. characterMakers.push(() => makeCharacter(
  41471. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41472. {
  41473. front: {
  41474. height: math.unit(9, "feet"),
  41475. weight: math.unit(621, "lb"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/unmru/front.svg",
  41479. extra: 1853/1747,
  41480. bottom: 73/1926
  41481. }
  41482. },
  41483. side: {
  41484. height: math.unit(9, "feet"),
  41485. weight: math.unit(621, "lb"),
  41486. name: "Side",
  41487. image: {
  41488. source: "./media/characters/unmru/side.svg",
  41489. extra: 1781/1671,
  41490. bottom: 127/1908
  41491. }
  41492. },
  41493. back: {
  41494. height: math.unit(9, "feet"),
  41495. weight: math.unit(621, "lb"),
  41496. name: "Back",
  41497. image: {
  41498. source: "./media/characters/unmru/back.svg",
  41499. extra: 1894/1765,
  41500. bottom: 75/1969
  41501. }
  41502. },
  41503. dick: {
  41504. height: math.unit(3, "feet"),
  41505. weight: math.unit(35, "lb"),
  41506. name: "Dick",
  41507. image: {
  41508. source: "./media/characters/unmru/dick.svg"
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(9, "feet")
  41516. },
  41517. {
  41518. name: "Natural",
  41519. height: math.unit(27, "feet"),
  41520. default: true
  41521. },
  41522. {
  41523. name: "Giant",
  41524. height: math.unit(90, "feet")
  41525. },
  41526. {
  41527. name: "Kaiju",
  41528. height: math.unit(270, "feet")
  41529. },
  41530. {
  41531. name: "Macro",
  41532. height: math.unit(900, "feet")
  41533. },
  41534. {
  41535. name: "Macro+",
  41536. height: math.unit(2700, "feet")
  41537. },
  41538. {
  41539. name: "Megamacro",
  41540. height: math.unit(9000, "feet")
  41541. },
  41542. {
  41543. name: "City-Crushing",
  41544. height: math.unit(27000, "feet")
  41545. },
  41546. {
  41547. name: "Mountain-Mashing",
  41548. height: math.unit(90000, "feet")
  41549. },
  41550. {
  41551. name: "Earth-Eclipsing",
  41552. height: math.unit(2.7e8, "feet")
  41553. },
  41554. {
  41555. name: "Sol-Swallowing",
  41556. height: math.unit(9e10, "feet")
  41557. },
  41558. {
  41559. name: "Majoris-Munching",
  41560. height: math.unit(2.7e13, "feet")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41566. {
  41567. front: {
  41568. height: math.unit(1, "inch"),
  41569. name: "Front",
  41570. image: {
  41571. source: "./media/characters/squeaks-mouse/front.svg",
  41572. extra: 352/308,
  41573. bottom: 25/377
  41574. }
  41575. },
  41576. },
  41577. [
  41578. {
  41579. name: "Micro",
  41580. height: math.unit(1, "inch"),
  41581. default: true
  41582. },
  41583. ]
  41584. ))
  41585. characterMakers.push(() => makeCharacter(
  41586. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41587. {
  41588. side: {
  41589. height: math.unit(35, "feet"),
  41590. name: "Side",
  41591. image: {
  41592. source: "./media/characters/sayko/side.svg",
  41593. extra: 1697/1021,
  41594. bottom: 82/1779
  41595. }
  41596. },
  41597. head: {
  41598. height: math.unit(16, "feet"),
  41599. name: "Head",
  41600. image: {
  41601. source: "./media/characters/sayko/head.svg"
  41602. }
  41603. },
  41604. forepaw: {
  41605. height: math.unit(7.85, "feet"),
  41606. name: "Forepaw",
  41607. image: {
  41608. source: "./media/characters/sayko/forepaw.svg"
  41609. }
  41610. },
  41611. hindpaw: {
  41612. height: math.unit(8.8, "feet"),
  41613. name: "Hindpaw",
  41614. image: {
  41615. source: "./media/characters/sayko/hindpaw.svg"
  41616. }
  41617. },
  41618. },
  41619. [
  41620. {
  41621. name: "Normal",
  41622. height: math.unit(35, "feet"),
  41623. default: true
  41624. },
  41625. {
  41626. name: "Colossus",
  41627. height: math.unit(100, "meters")
  41628. },
  41629. {
  41630. name: "\"Small\" Deity",
  41631. height: math.unit(1, "km")
  41632. },
  41633. {
  41634. name: "\"Large\" Deity",
  41635. height: math.unit(15, "km")
  41636. },
  41637. ]
  41638. ))
  41639. characterMakers.push(() => makeCharacter(
  41640. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41641. {
  41642. front: {
  41643. height: math.unit(6, "feet"),
  41644. weight: math.unit(250, "lb"),
  41645. name: "Front",
  41646. image: {
  41647. source: "./media/characters/mukiro/front.svg",
  41648. extra: 1368/1310,
  41649. bottom: 34/1402
  41650. }
  41651. },
  41652. },
  41653. [
  41654. {
  41655. name: "Normal",
  41656. height: math.unit(6, "feet"),
  41657. default: true
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41663. {
  41664. front: {
  41665. height: math.unit(12 + 4/12, "feet"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41669. extra: 1346/1311,
  41670. bottom: 65/1411
  41671. }
  41672. },
  41673. },
  41674. [
  41675. {
  41676. name: "Base",
  41677. height: math.unit(12 + 4/12, "feet"),
  41678. default: true
  41679. },
  41680. {
  41681. name: "Macro",
  41682. height: math.unit(150, "feet")
  41683. },
  41684. {
  41685. name: "Mega",
  41686. height: math.unit(2, "miles")
  41687. },
  41688. {
  41689. name: "Demi God",
  41690. height: math.unit(4, "AU")
  41691. },
  41692. {
  41693. name: "God Size",
  41694. height: math.unit(1, "universe")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(3 + 3/12, "feet"),
  41703. weight: math.unit(88, "lb"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/trey/front.svg",
  41707. extra: 1815/1509,
  41708. bottom: 60/1875
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Normal",
  41715. height: math.unit(3 + 3/12, "feet"),
  41716. default: true
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41722. {
  41723. front: {
  41724. height: math.unit(4, "meters"),
  41725. name: "Front",
  41726. image: {
  41727. source: "./media/characters/adelonda/front.svg",
  41728. extra: 1077/982,
  41729. bottom: 39/1116
  41730. }
  41731. },
  41732. back: {
  41733. height: math.unit(4, "meters"),
  41734. name: "Back",
  41735. image: {
  41736. source: "./media/characters/adelonda/back.svg",
  41737. extra: 1105/1003,
  41738. bottom: 25/1130
  41739. }
  41740. },
  41741. feral: {
  41742. height: math.unit(40/1.5, "meters"),
  41743. name: "Feral",
  41744. image: {
  41745. source: "./media/characters/adelonda/feral.svg",
  41746. extra: 597/271,
  41747. bottom: 387/984
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Normal",
  41754. height: math.unit(4, "meters"),
  41755. default: true
  41756. },
  41757. ]
  41758. ))
  41759. characterMakers.push(() => makeCharacter(
  41760. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41761. {
  41762. front: {
  41763. height: math.unit(8 + 4/12, "feet"),
  41764. weight: math.unit(670, "lb"),
  41765. name: "Front",
  41766. image: {
  41767. source: "./media/characters/acadiel/front.svg",
  41768. extra: 1901/1595,
  41769. bottom: 142/2043
  41770. }
  41771. },
  41772. },
  41773. [
  41774. {
  41775. name: "Normal",
  41776. height: math.unit(8 + 4/12, "feet"),
  41777. default: true
  41778. },
  41779. {
  41780. name: "Macro",
  41781. height: math.unit(200, "feet")
  41782. },
  41783. ]
  41784. ))
  41785. characterMakers.push(() => makeCharacter(
  41786. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41787. {
  41788. front: {
  41789. height: math.unit(6 + 2/12, "feet"),
  41790. weight: math.unit(185, "lb"),
  41791. name: "Front",
  41792. image: {
  41793. source: "./media/characters/kayne-ein/front.svg",
  41794. extra: 1780/1560,
  41795. bottom: 81/1861
  41796. }
  41797. },
  41798. },
  41799. [
  41800. {
  41801. name: "Normal",
  41802. height: math.unit(6 + 2/12, "feet"),
  41803. default: true
  41804. },
  41805. {
  41806. name: "Transformation Stage",
  41807. height: math.unit(15, "feet")
  41808. },
  41809. {
  41810. name: "Macro",
  41811. height: math.unit(150, "feet")
  41812. },
  41813. {
  41814. name: "Earth's Shadow",
  41815. height: math.unit(6200, "miles")
  41816. },
  41817. {
  41818. name: "Universal Demon",
  41819. height: math.unit(28e9, "parsecs")
  41820. },
  41821. {
  41822. name: "Multiverse God",
  41823. height: math.unit(3, "multiverses")
  41824. },
  41825. ]
  41826. ))
  41827. characterMakers.push(() => makeCharacter(
  41828. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41829. {
  41830. front: {
  41831. height: math.unit(5 + 5/12, "feet"),
  41832. name: "Front",
  41833. image: {
  41834. source: "./media/characters/fawn/front.svg",
  41835. extra: 1873/1731,
  41836. bottom: 95/1968
  41837. }
  41838. },
  41839. back: {
  41840. height: math.unit(5 + 5/12, "feet"),
  41841. name: "Back",
  41842. image: {
  41843. source: "./media/characters/fawn/back.svg",
  41844. extra: 1813/1700,
  41845. bottom: 14/1827
  41846. }
  41847. },
  41848. hoof: {
  41849. height: math.unit(1.45, "feet"),
  41850. name: "Hoof",
  41851. image: {
  41852. source: "./media/characters/fawn/hoof.svg"
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(5 + 5/12, "feet"),
  41860. default: true
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(2 + 5/12, "feet"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/orion/front.svg",
  41872. extra: 1366/1304,
  41873. bottom: 43/1409
  41874. }
  41875. },
  41876. paw: {
  41877. height: math.unit(0.52, "feet"),
  41878. name: "Paw",
  41879. image: {
  41880. source: "./media/characters/orion/paw.svg"
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(2 + 5/12, "feet"),
  41888. default: true
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(5 + 10/12, "feet"),
  41897. name: "Front",
  41898. image: {
  41899. source: "./media/characters/vera/front.svg",
  41900. extra: 1680/1575,
  41901. bottom: 49/1729
  41902. }
  41903. },
  41904. back: {
  41905. height: math.unit(5 + 10/12, "feet"),
  41906. name: "Back",
  41907. image: {
  41908. source: "./media/characters/vera/back.svg",
  41909. extra: 1700/1588,
  41910. bottom: 18/1718
  41911. }
  41912. },
  41913. arcanine: {
  41914. height: math.unit(6 + 8/12, "feet"),
  41915. name: "Arcanine",
  41916. image: {
  41917. source: "./media/characters/vera/arcanine.svg",
  41918. extra: 1590/1511,
  41919. bottom: 71/1661
  41920. }
  41921. },
  41922. maw: {
  41923. height: math.unit(0.82, "feet"),
  41924. name: "Maw",
  41925. image: {
  41926. source: "./media/characters/vera/maw.svg"
  41927. }
  41928. },
  41929. mawArcanine: {
  41930. height: math.unit(0.97, "feet"),
  41931. name: "Maw (Arcanine)",
  41932. image: {
  41933. source: "./media/characters/vera/maw-arcanine.svg"
  41934. }
  41935. },
  41936. paw: {
  41937. height: math.unit(0.75, "feet"),
  41938. name: "Paw",
  41939. image: {
  41940. source: "./media/characters/vera/paw.svg"
  41941. }
  41942. },
  41943. pawprint: {
  41944. height: math.unit(0.52, "feet"),
  41945. name: "Pawprint",
  41946. image: {
  41947. source: "./media/characters/vera/pawprint.svg"
  41948. }
  41949. },
  41950. },
  41951. [
  41952. {
  41953. name: "Normal",
  41954. height: math.unit(5 + 10/12, "feet"),
  41955. default: true
  41956. },
  41957. {
  41958. name: "Macro",
  41959. height: math.unit(75, "feet")
  41960. },
  41961. ]
  41962. ))
  41963. characterMakers.push(() => makeCharacter(
  41964. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41965. {
  41966. front: {
  41967. height: math.unit(4, "feet"),
  41968. weight: math.unit(40, "lb"),
  41969. name: "Front",
  41970. image: {
  41971. source: "./media/characters/orvan-rabbit/front.svg",
  41972. extra: 1896/1642,
  41973. bottom: 29/1925
  41974. }
  41975. },
  41976. },
  41977. [
  41978. {
  41979. name: "Normal",
  41980. height: math.unit(4, "feet"),
  41981. default: true
  41982. },
  41983. ]
  41984. ))
  41985. characterMakers.push(() => makeCharacter(
  41986. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41987. {
  41988. front: {
  41989. height: math.unit(6, "feet"),
  41990. weight: math.unit(168, "lb"),
  41991. name: "Front",
  41992. image: {
  41993. source: "./media/characters/lisa/front.svg",
  41994. extra: 2065/1867,
  41995. bottom: 46/2111
  41996. }
  41997. },
  41998. back: {
  41999. height: math.unit(6, "feet"),
  42000. weight: math.unit(168, "lb"),
  42001. name: "Back",
  42002. image: {
  42003. source: "./media/characters/lisa/back.svg",
  42004. extra: 1982/1838,
  42005. bottom: 29/2011
  42006. }
  42007. },
  42008. maw: {
  42009. height: math.unit(0.81, "feet"),
  42010. name: "Maw",
  42011. image: {
  42012. source: "./media/characters/lisa/maw.svg"
  42013. }
  42014. },
  42015. paw: {
  42016. height: math.unit(0.9, "feet"),
  42017. name: "Paw",
  42018. image: {
  42019. source: "./media/characters/lisa/paw.svg"
  42020. }
  42021. },
  42022. caribousune: {
  42023. height: math.unit(7 + 2/12, "feet"),
  42024. weight: math.unit(268, "lb"),
  42025. name: "Caribousune",
  42026. image: {
  42027. source: "./media/characters/lisa/caribousune.svg",
  42028. extra: 1843/1633,
  42029. bottom: 29/1872
  42030. }
  42031. },
  42032. frontCaribousune: {
  42033. height: math.unit(7 + 2/12, "feet"),
  42034. weight: math.unit(268, "lb"),
  42035. name: "Front (Caribousune)",
  42036. image: {
  42037. source: "./media/characters/lisa/front-caribousune.svg",
  42038. extra: 1818/1638,
  42039. bottom: 52/1870
  42040. }
  42041. },
  42042. sideCaribousune: {
  42043. height: math.unit(7 + 2/12, "feet"),
  42044. weight: math.unit(268, "lb"),
  42045. name: "Side (Caribousune)",
  42046. image: {
  42047. source: "./media/characters/lisa/side-caribousune.svg",
  42048. extra: 1851/1635,
  42049. bottom: 16/1867
  42050. }
  42051. },
  42052. backCaribousune: {
  42053. height: math.unit(7 + 2/12, "feet"),
  42054. weight: math.unit(268, "lb"),
  42055. name: "Back (Caribousune)",
  42056. image: {
  42057. source: "./media/characters/lisa/back-caribousune.svg",
  42058. extra: 1801/1604,
  42059. bottom: 44/1845
  42060. }
  42061. },
  42062. caribou: {
  42063. height: math.unit(7 + 2/12, "feet"),
  42064. weight: math.unit(268, "lb"),
  42065. name: "Caribou",
  42066. image: {
  42067. source: "./media/characters/lisa/caribou.svg",
  42068. extra: 1843/1633,
  42069. bottom: 29/1872
  42070. }
  42071. },
  42072. frontCaribou: {
  42073. height: math.unit(7 + 2/12, "feet"),
  42074. weight: math.unit(268, "lb"),
  42075. name: "Front (Caribou)",
  42076. image: {
  42077. source: "./media/characters/lisa/front-caribou.svg",
  42078. extra: 1818/1638,
  42079. bottom: 52/1870
  42080. }
  42081. },
  42082. sideCaribou: {
  42083. height: math.unit(7 + 2/12, "feet"),
  42084. weight: math.unit(268, "lb"),
  42085. name: "Side (Caribou)",
  42086. image: {
  42087. source: "./media/characters/lisa/side-caribou.svg",
  42088. extra: 1851/1635,
  42089. bottom: 16/1867
  42090. }
  42091. },
  42092. backCaribou: {
  42093. height: math.unit(7 + 2/12, "feet"),
  42094. weight: math.unit(268, "lb"),
  42095. name: "Back (Caribou)",
  42096. image: {
  42097. source: "./media/characters/lisa/back-caribou.svg",
  42098. extra: 1801/1604,
  42099. bottom: 44/1845
  42100. }
  42101. },
  42102. mawCaribou: {
  42103. height: math.unit(1.45, "feet"),
  42104. name: "Maw (Caribou)",
  42105. image: {
  42106. source: "./media/characters/lisa/maw-caribou.svg"
  42107. }
  42108. },
  42109. mawCaribousune: {
  42110. height: math.unit(1.45, "feet"),
  42111. name: "Maw (Caribousune)",
  42112. image: {
  42113. source: "./media/characters/lisa/maw-caribousune.svg"
  42114. }
  42115. },
  42116. pawCaribousune: {
  42117. height: math.unit(1.61, "feet"),
  42118. name: "Paw (Caribou)",
  42119. image: {
  42120. source: "./media/characters/lisa/paw-caribousune.svg"
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(6, "feet")
  42128. },
  42129. {
  42130. name: "God Size",
  42131. height: math.unit(72, "feet"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Towering",
  42136. height: math.unit(288, "feet")
  42137. },
  42138. {
  42139. name: "City Size",
  42140. height: math.unit(48384, "feet")
  42141. },
  42142. {
  42143. name: "Continental",
  42144. height: math.unit(4200, "miles")
  42145. },
  42146. {
  42147. name: "Planet Eater",
  42148. height: math.unit(42, "earths")
  42149. },
  42150. {
  42151. name: "Star Swallower",
  42152. height: math.unit(42, "solarradii")
  42153. },
  42154. {
  42155. name: "System Swallower",
  42156. height: math.unit(84000, "AU")
  42157. },
  42158. {
  42159. name: "Galaxy Gobbler",
  42160. height: math.unit(42, "galaxies")
  42161. },
  42162. {
  42163. name: "Universe Devourer",
  42164. height: math.unit(42, "universes")
  42165. },
  42166. {
  42167. name: "Multiverse Muncher",
  42168. height: math.unit(42, "multiverses")
  42169. },
  42170. ]
  42171. ))
  42172. characterMakers.push(() => makeCharacter(
  42173. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42174. {
  42175. front: {
  42176. height: math.unit(36, "feet"),
  42177. name: "Front",
  42178. image: {
  42179. source: "./media/characters/shadow-rat/front.svg",
  42180. extra: 1845/1758,
  42181. bottom: 83/1928
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Macro",
  42188. height: math.unit(36, "feet"),
  42189. default: true
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42195. {
  42196. side: {
  42197. height: math.unit(8, "feet"),
  42198. weight: math.unit(2630, "lb"),
  42199. name: "Side",
  42200. image: {
  42201. source: "./media/characters/torallia/side.svg",
  42202. extra: 2164/2021,
  42203. bottom: 371/2535
  42204. }
  42205. },
  42206. },
  42207. [
  42208. {
  42209. name: "Mortal Interaction",
  42210. height: math.unit(8, "feet")
  42211. },
  42212. {
  42213. name: "Natural",
  42214. height: math.unit(24, "feet"),
  42215. default: true
  42216. },
  42217. {
  42218. name: "Giant",
  42219. height: math.unit(80, "feet")
  42220. },
  42221. {
  42222. name: "Kaiju",
  42223. height: math.unit(240, "feet")
  42224. },
  42225. {
  42226. name: "Macro",
  42227. height: math.unit(800, "feet")
  42228. },
  42229. {
  42230. name: "Macro+",
  42231. height: math.unit(2400, "feet")
  42232. },
  42233. {
  42234. name: "Macro++",
  42235. height: math.unit(8000, "feet")
  42236. },
  42237. {
  42238. name: "City-Crushing",
  42239. height: math.unit(24000, "feet")
  42240. },
  42241. {
  42242. name: "Mountain-Mashing",
  42243. height: math.unit(80000, "feet")
  42244. },
  42245. {
  42246. name: "District Demolisher",
  42247. height: math.unit(240000, "feet")
  42248. },
  42249. {
  42250. name: "Tri-County Terror",
  42251. height: math.unit(800000, "feet")
  42252. },
  42253. {
  42254. name: "State Smasher",
  42255. height: math.unit(2.4e6, "feet")
  42256. },
  42257. {
  42258. name: "Nation Nemesis",
  42259. height: math.unit(8e6, "feet")
  42260. },
  42261. {
  42262. name: "Continent Cracker",
  42263. height: math.unit(2.4e7, "feet")
  42264. },
  42265. {
  42266. name: "Planet-Pillaging",
  42267. height: math.unit(8e7, "feet")
  42268. },
  42269. {
  42270. name: "Earth-Eclipsing",
  42271. height: math.unit(2.4e8, "feet")
  42272. },
  42273. {
  42274. name: "Jovian-Jostling",
  42275. height: math.unit(8e8, "feet")
  42276. },
  42277. {
  42278. name: "Gas Giant Gulper",
  42279. height: math.unit(2.4e9, "feet")
  42280. },
  42281. {
  42282. name: "Astral Annihilator",
  42283. height: math.unit(8e9, "feet")
  42284. },
  42285. {
  42286. name: "Celestial Conqueror",
  42287. height: math.unit(2.4e10, "feet")
  42288. },
  42289. {
  42290. name: "Sol-Swallowing",
  42291. height: math.unit(8e10, "feet")
  42292. },
  42293. {
  42294. name: "Hunter of the Heavens",
  42295. height: math.unit(2.4e13, "feet")
  42296. },
  42297. ]
  42298. ))
  42299. characterMakers.push(() => makeCharacter(
  42300. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42301. {
  42302. front: {
  42303. height: math.unit(10, "feet"),
  42304. weight: math.unit(844, "kilograms"),
  42305. name: "Front",
  42306. image: {
  42307. source: "./media/characters/rebecca-pawlson/front.svg",
  42308. extra: 1196/1099,
  42309. bottom: 81/1277
  42310. },
  42311. extraAttributes: {
  42312. "pawSize": {
  42313. name: "Paw Size",
  42314. power: 2,
  42315. type: "area",
  42316. base: math.unit(0.2 * 0.375, "meters^2")
  42317. },
  42318. "handSize": {
  42319. name: "Hand Size",
  42320. power: 2,
  42321. type: "area",
  42322. base: math.unit(0.2 * 0.35, "meters^2")
  42323. },
  42324. "breastDiameter": {
  42325. name: "Breast Diameter",
  42326. power: 1,
  42327. type: "length",
  42328. base: math.unit(0.5, "meters")
  42329. },
  42330. "breastVolume": {
  42331. name: "Breast Volume",
  42332. power: 3,
  42333. type: "volume",
  42334. base: math.unit(0.065, "m^3")
  42335. },
  42336. "breastMass": {
  42337. name: "Breast Mass",
  42338. power: 3,
  42339. type: "mass",
  42340. base: math.unit(65, "kg")
  42341. },
  42342. "nippleDiameter": {
  42343. name: "Nipple Diameter",
  42344. power: 1,
  42345. type: "length",
  42346. base: math.unit(0.1, "meters")
  42347. },
  42348. }
  42349. },
  42350. back: {
  42351. height: math.unit(10, "feet"),
  42352. weight: math.unit(844, "kilograms"),
  42353. name: "Back",
  42354. image: {
  42355. source: "./media/characters/rebecca-pawlson/back.svg",
  42356. extra: 879/776,
  42357. bottom: 43/922
  42358. },
  42359. extraAttributes: {
  42360. "pawSize": {
  42361. name: "Paw Size",
  42362. power: 2,
  42363. type: "area",
  42364. base: math.unit(0.2 * 0.375, "meters^2")
  42365. },
  42366. "handSize": {
  42367. name: "Hand Size",
  42368. power: 2,
  42369. type: "area",
  42370. base: math.unit(0.2 * 0.35, "meters^2")
  42371. },
  42372. "breastDiameter": {
  42373. name: "Breast Diameter",
  42374. power: 1,
  42375. type: "length",
  42376. base: math.unit(0.5, "meters")
  42377. },
  42378. "breastVolume": {
  42379. name: "Breast Volume",
  42380. power: 3,
  42381. type: "volume",
  42382. base: math.unit(0.065, "m^3")
  42383. },
  42384. "breastMass": {
  42385. name: "Breast Mass",
  42386. power: 3,
  42387. type: "mass",
  42388. base: math.unit(65, "kg")
  42389. },
  42390. "nippleDiameter": {
  42391. name: "Nipple Diameter",
  42392. power: 1,
  42393. type: "length",
  42394. base: math.unit(0.1, "meters")
  42395. },
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(6 + 8/12, "feet")
  42403. },
  42404. {
  42405. name: "Mini Macro",
  42406. height: math.unit(10, "feet"),
  42407. default: true
  42408. },
  42409. {
  42410. name: "Macro",
  42411. height: math.unit(100, "feet")
  42412. },
  42413. {
  42414. name: "Mega Macro",
  42415. height: math.unit(2500, "feet")
  42416. },
  42417. {
  42418. name: "Giga Macro",
  42419. height: math.unit(50, "miles")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(7 + 6/12, "feet"),
  42428. weight: math.unit(600, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/moxie-nova/front.svg",
  42432. extra: 1734/1652,
  42433. bottom: 41/1775
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Normal",
  42440. height: math.unit(7 + 6/12, "feet"),
  42441. default: true
  42442. },
  42443. ]
  42444. ))
  42445. characterMakers.push(() => makeCharacter(
  42446. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42447. {
  42448. goat: {
  42449. height: math.unit(4, "feet"),
  42450. weight: math.unit(180, "lb"),
  42451. name: "Goat",
  42452. image: {
  42453. source: "./media/characters/tiffany/goat.svg",
  42454. extra: 1845/1595,
  42455. bottom: 106/1951
  42456. }
  42457. },
  42458. front: {
  42459. height: math.unit(5, "feet"),
  42460. weight: math.unit(150, "lb"),
  42461. name: "Foxcoon",
  42462. image: {
  42463. source: "./media/characters/tiffany/foxcoon.svg",
  42464. extra: 1941/1845,
  42465. bottom: 58/1999
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(5, "feet"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(8, "feet"),
  42482. weight: math.unit(300, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/raxinath/front.svg",
  42486. extra: 1407/1309,
  42487. bottom: 39/1446
  42488. }
  42489. },
  42490. back: {
  42491. height: math.unit(8, "feet"),
  42492. weight: math.unit(300, "lb"),
  42493. name: "Back",
  42494. image: {
  42495. source: "./media/characters/raxinath/back.svg",
  42496. extra: 1405/1315,
  42497. bottom: 9/1414
  42498. }
  42499. },
  42500. },
  42501. [
  42502. {
  42503. name: "Speck",
  42504. height: math.unit(0.5, "nm")
  42505. },
  42506. {
  42507. name: "Micro",
  42508. height: math.unit(3, "inches")
  42509. },
  42510. {
  42511. name: "Kobold",
  42512. height: math.unit(3, "feet")
  42513. },
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(8, "feet"),
  42517. default: true
  42518. },
  42519. {
  42520. name: "Giant",
  42521. height: math.unit(50, "feet")
  42522. },
  42523. {
  42524. name: "Macro",
  42525. height: math.unit(1000, "feet")
  42526. },
  42527. {
  42528. name: "Megamacro",
  42529. height: math.unit(1, "mile")
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(10, "feet"),
  42538. weight: math.unit(1442, "lb"),
  42539. name: "Front",
  42540. image: {
  42541. source: "./media/characters/mal-dragon/front.svg",
  42542. extra: 1515/1444,
  42543. bottom: 113/1628
  42544. }
  42545. },
  42546. back: {
  42547. height: math.unit(10, "feet"),
  42548. weight: math.unit(1442, "lb"),
  42549. name: "Back",
  42550. image: {
  42551. source: "./media/characters/mal-dragon/back.svg",
  42552. extra: 1527/1434,
  42553. bottom: 25/1552
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Mortal Interaction",
  42560. height: math.unit(10, "feet"),
  42561. default: true
  42562. },
  42563. {
  42564. name: "Large",
  42565. height: math.unit(30, "feet")
  42566. },
  42567. {
  42568. name: "Kaiju",
  42569. height: math.unit(300, "feet")
  42570. },
  42571. {
  42572. name: "Megamacro",
  42573. height: math.unit(10000, "feet")
  42574. },
  42575. {
  42576. name: "Continent Cracker",
  42577. height: math.unit(30000000, "feet")
  42578. },
  42579. {
  42580. name: "Sol-Swallowing",
  42581. height: math.unit(1e11, "feet")
  42582. },
  42583. {
  42584. name: "Light Universal",
  42585. height: math.unit(5, "universes")
  42586. },
  42587. {
  42588. name: "Universe Atoms",
  42589. height: math.unit(1.829e9, "universes")
  42590. },
  42591. {
  42592. name: "Light Multiversal",
  42593. height: math.unit(5, "multiverses")
  42594. },
  42595. {
  42596. name: "Multiverse Atoms",
  42597. height: math.unit(1.829e9, "multiverses")
  42598. },
  42599. {
  42600. name: "Fabric of Time",
  42601. height: math.unit(1e262, "multiverses")
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(9, "feet"),
  42610. weight: math.unit(1050, "lb"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/tabitha/front.svg",
  42614. extra: 2083/1994,
  42615. bottom: 68/2151
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Baseline",
  42622. height: math.unit(9, "feet"),
  42623. default: true
  42624. },
  42625. {
  42626. name: "Giant",
  42627. height: math.unit(90, "feet")
  42628. },
  42629. {
  42630. name: "Macro",
  42631. height: math.unit(900, "feet")
  42632. },
  42633. {
  42634. name: "Megamacro",
  42635. height: math.unit(9000, "feet")
  42636. },
  42637. {
  42638. name: "City-Crushing",
  42639. height: math.unit(27000, "feet")
  42640. },
  42641. {
  42642. name: "Mountain-Mashing",
  42643. height: math.unit(90000, "feet")
  42644. },
  42645. {
  42646. name: "Nation Nemesis",
  42647. height: math.unit(9e6, "feet")
  42648. },
  42649. {
  42650. name: "Continent Cracker",
  42651. height: math.unit(27e6, "feet")
  42652. },
  42653. {
  42654. name: "Earth-Eclipsing",
  42655. height: math.unit(2.7e8, "feet")
  42656. },
  42657. {
  42658. name: "Gas Giant Gulper",
  42659. height: math.unit(2.7e9, "feet")
  42660. },
  42661. {
  42662. name: "Sol-Swallowing",
  42663. height: math.unit(9e10, "feet")
  42664. },
  42665. {
  42666. name: "Galaxy Gulper",
  42667. height: math.unit(9, "galaxies")
  42668. },
  42669. {
  42670. name: "Cosmos Churner",
  42671. height: math.unit(9, "universes")
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42677. {
  42678. front: {
  42679. height: math.unit(160, "cm"),
  42680. weight: math.unit(55, "kg"),
  42681. name: "Front",
  42682. image: {
  42683. source: "./media/characters/tow/front.svg",
  42684. extra: 1751/1722,
  42685. bottom: 74/1825
  42686. }
  42687. },
  42688. },
  42689. [
  42690. {
  42691. name: "Norm",
  42692. height: math.unit(160, "cm")
  42693. },
  42694. {
  42695. name: "Casual",
  42696. height: math.unit(3200, "m"),
  42697. default: true
  42698. },
  42699. {
  42700. name: "Show-Off",
  42701. height: math.unit(160, "km")
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42707. {
  42708. front: {
  42709. height: math.unit(7 + 11/12, "feet"),
  42710. weight: math.unit(342.8, "lb"),
  42711. name: "Front",
  42712. image: {
  42713. source: "./media/characters/vivian-orca-dragon/front.svg",
  42714. extra: 1890/1865,
  42715. bottom: 28/1918
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Micro",
  42722. height: math.unit(5, "inches")
  42723. },
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(7 + 11/12, "feet"),
  42727. default: true
  42728. },
  42729. {
  42730. name: "Macro",
  42731. height: math.unit(395 + 7/12, "feet")
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42737. {
  42738. side: {
  42739. height: math.unit(10, "feet"),
  42740. weight: math.unit(1442, "lb"),
  42741. name: "Side",
  42742. image: {
  42743. source: "./media/characters/lotherakon/side.svg",
  42744. extra: 1604/1497,
  42745. bottom: 89/1693
  42746. }
  42747. },
  42748. },
  42749. [
  42750. {
  42751. name: "Mortal Interaction",
  42752. height: math.unit(10, "feet")
  42753. },
  42754. {
  42755. name: "Large",
  42756. height: math.unit(30, "feet"),
  42757. default: true
  42758. },
  42759. {
  42760. name: "Giant",
  42761. height: math.unit(100, "feet")
  42762. },
  42763. {
  42764. name: "Kaiju",
  42765. height: math.unit(300, "feet")
  42766. },
  42767. {
  42768. name: "Macro",
  42769. height: math.unit(1000, "feet")
  42770. },
  42771. {
  42772. name: "Macro+",
  42773. height: math.unit(3000, "feet")
  42774. },
  42775. {
  42776. name: "Megamacro",
  42777. height: math.unit(10000, "feet")
  42778. },
  42779. {
  42780. name: "City-Crushing",
  42781. height: math.unit(30000, "feet")
  42782. },
  42783. {
  42784. name: "Continent Cracker",
  42785. height: math.unit(30e6, "feet")
  42786. },
  42787. {
  42788. name: "Earth Eclipsing",
  42789. height: math.unit(3e8, "feet")
  42790. },
  42791. {
  42792. name: "Gas Giant Gulper",
  42793. height: math.unit(3e9, "feet")
  42794. },
  42795. {
  42796. name: "Sol-Swallowing",
  42797. height: math.unit(1e11, "feet")
  42798. },
  42799. {
  42800. name: "System Swallower",
  42801. height: math.unit(3e14, "feet")
  42802. },
  42803. {
  42804. name: "Galaxy Gulper",
  42805. height: math.unit(10, "galaxies")
  42806. },
  42807. {
  42808. name: "Light Universal",
  42809. height: math.unit(5, "universes")
  42810. },
  42811. {
  42812. name: "Universe Palm",
  42813. height: math.unit(20, "universes")
  42814. },
  42815. {
  42816. name: "Light Multiversal",
  42817. height: math.unit(5, "multiverses")
  42818. },
  42819. {
  42820. name: "Multiverse Palm",
  42821. height: math.unit(20, "multiverses")
  42822. },
  42823. {
  42824. name: "Inferno Incarnate",
  42825. height: math.unit(1e7, "multiverses")
  42826. },
  42827. ]
  42828. ))
  42829. characterMakers.push(() => makeCharacter(
  42830. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42831. {
  42832. front: {
  42833. height: math.unit(8, "feet"),
  42834. weight: math.unit(1200, "lb"),
  42835. name: "Front",
  42836. image: {
  42837. source: "./media/characters/malithee/front.svg",
  42838. extra: 1675/1640,
  42839. bottom: 162/1837
  42840. }
  42841. },
  42842. },
  42843. [
  42844. {
  42845. name: "Mortal Interaction",
  42846. height: math.unit(8, "feet"),
  42847. default: true
  42848. },
  42849. {
  42850. name: "Large",
  42851. height: math.unit(24, "feet")
  42852. },
  42853. {
  42854. name: "Kaiju",
  42855. height: math.unit(240, "feet")
  42856. },
  42857. {
  42858. name: "Megamacro",
  42859. height: math.unit(8000, "feet")
  42860. },
  42861. {
  42862. name: "Continent Cracker",
  42863. height: math.unit(24e6, "feet")
  42864. },
  42865. {
  42866. name: "Earth-Eclipsing",
  42867. height: math.unit(2.4e8, "feet")
  42868. },
  42869. {
  42870. name: "Sol-Swallowing",
  42871. height: math.unit(8e10, "feet")
  42872. },
  42873. {
  42874. name: "Galaxy Gulper",
  42875. height: math.unit(8, "galaxies")
  42876. },
  42877. {
  42878. name: "Light Universal",
  42879. height: math.unit(4, "universes")
  42880. },
  42881. {
  42882. name: "Universe Atoms",
  42883. height: math.unit(1.829e9, "universes")
  42884. },
  42885. {
  42886. name: "Light Multiversal",
  42887. height: math.unit(4, "multiverses")
  42888. },
  42889. {
  42890. name: "Multiverse Atoms",
  42891. height: math.unit(1.829e9, "multiverses")
  42892. },
  42893. {
  42894. name: "Nigh-Omnipresence",
  42895. height: math.unit(8e261, "multiverses")
  42896. },
  42897. ]
  42898. ))
  42899. characterMakers.push(() => makeCharacter(
  42900. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42901. {
  42902. front: {
  42903. height: math.unit(10, "feet"),
  42904. weight: math.unit(1500, "lb"),
  42905. name: "Front",
  42906. image: {
  42907. source: "./media/characters/miles-thestia/front.svg",
  42908. extra: 1812/1727,
  42909. bottom: 86/1898
  42910. }
  42911. },
  42912. back: {
  42913. height: math.unit(10, "feet"),
  42914. weight: math.unit(1500, "lb"),
  42915. name: "Back",
  42916. image: {
  42917. source: "./media/characters/miles-thestia/back.svg",
  42918. extra: 1799/1690,
  42919. bottom: 47/1846
  42920. }
  42921. },
  42922. frontNsfw: {
  42923. height: math.unit(10, "feet"),
  42924. weight: math.unit(1500, "lb"),
  42925. name: "Front (NSFW)",
  42926. image: {
  42927. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42928. extra: 1812/1727,
  42929. bottom: 86/1898
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Mini-Macro",
  42936. height: math.unit(10, "feet"),
  42937. default: true
  42938. },
  42939. ]
  42940. ))
  42941. characterMakers.push(() => makeCharacter(
  42942. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42943. {
  42944. front: {
  42945. height: math.unit(25, "feet"),
  42946. name: "Front",
  42947. image: {
  42948. source: "./media/characters/titan-s-wulf/front.svg",
  42949. extra: 1560/1484,
  42950. bottom: 76/1636
  42951. }
  42952. },
  42953. },
  42954. [
  42955. {
  42956. name: "Smallest",
  42957. height: math.unit(25, "feet"),
  42958. default: true
  42959. },
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(200, "feet")
  42963. },
  42964. {
  42965. name: "Macro",
  42966. height: math.unit(200000, "feet")
  42967. },
  42968. {
  42969. name: "Multiversal Original",
  42970. height: math.unit(10000, "multiverses")
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42976. {
  42977. front: {
  42978. height: math.unit(8, "feet"),
  42979. weight: math.unit(553, "lb"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/tawendeh/front.svg",
  42983. extra: 2365/2268,
  42984. bottom: 83/2448
  42985. }
  42986. },
  42987. frontClothed: {
  42988. height: math.unit(8, "feet"),
  42989. weight: math.unit(553, "lb"),
  42990. name: "Front (Clothed)",
  42991. image: {
  42992. source: "./media/characters/tawendeh/front-clothed.svg",
  42993. extra: 2365/2268,
  42994. bottom: 83/2448
  42995. }
  42996. },
  42997. back: {
  42998. height: math.unit(8, "feet"),
  42999. weight: math.unit(553, "lb"),
  43000. name: "Back",
  43001. image: {
  43002. source: "./media/characters/tawendeh/back.svg",
  43003. extra: 2397/2294,
  43004. bottom: 42/2439
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Mortal Interaction",
  43011. height: math.unit(8, "feet"),
  43012. default: true
  43013. },
  43014. {
  43015. name: "Giant",
  43016. height: math.unit(80, "feet")
  43017. },
  43018. {
  43019. name: "Macro",
  43020. height: math.unit(800, "feet")
  43021. },
  43022. {
  43023. name: "Megamacro",
  43024. height: math.unit(8000, "feet")
  43025. },
  43026. {
  43027. name: "City-Crushing",
  43028. height: math.unit(24000, "feet")
  43029. },
  43030. {
  43031. name: "Mountain-Mashing",
  43032. height: math.unit(80000, "feet")
  43033. },
  43034. {
  43035. name: "Nation Nemesis",
  43036. height: math.unit(8e6, "feet")
  43037. },
  43038. {
  43039. name: "Continent Cracker",
  43040. height: math.unit(24e6, "feet")
  43041. },
  43042. {
  43043. name: "Earth-Eclipsing",
  43044. height: math.unit(2.4e8, "feet")
  43045. },
  43046. {
  43047. name: "Gas Giant Gulper",
  43048. height: math.unit(2.4e9, "feet")
  43049. },
  43050. {
  43051. name: "Sol-Swallowing",
  43052. height: math.unit(8e10, "feet")
  43053. },
  43054. {
  43055. name: "Galaxy Gulper",
  43056. height: math.unit(8, "galaxies")
  43057. },
  43058. {
  43059. name: "Cosmos Churner",
  43060. height: math.unit(8, "universes")
  43061. },
  43062. {
  43063. name: "Omnipotent Otter",
  43064. height: math.unit(80, "universes")
  43065. },
  43066. ]
  43067. ))
  43068. characterMakers.push(() => makeCharacter(
  43069. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  43070. {
  43071. front: {
  43072. height: math.unit(2.6, "meters"),
  43073. weight: math.unit(900, "kg"),
  43074. name: "Front",
  43075. image: {
  43076. source: "./media/characters/neesha/front.svg",
  43077. extra: 1803/1653,
  43078. bottom: 128/1931
  43079. }
  43080. },
  43081. },
  43082. [
  43083. {
  43084. name: "Normal",
  43085. height: math.unit(2.6, "meters"),
  43086. default: true
  43087. },
  43088. {
  43089. name: "Macro",
  43090. height: math.unit(50, "meters")
  43091. },
  43092. ]
  43093. ))
  43094. characterMakers.push(() => makeCharacter(
  43095. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  43096. {
  43097. front: {
  43098. height: math.unit(5, "feet"),
  43099. weight: math.unit(185, "lb"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/kyera/front.svg",
  43103. extra: 1875/1790,
  43104. bottom: 96/1971
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(5, "feet"),
  43112. default: true
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43118. {
  43119. front: {
  43120. height: math.unit(7 + 6/12, "feet"),
  43121. weight: math.unit(540, "lb"),
  43122. name: "Front",
  43123. image: {
  43124. source: "./media/characters/yuko/front.svg",
  43125. extra: 1282/1222,
  43126. bottom: 101/1383
  43127. }
  43128. },
  43129. frontClothed: {
  43130. height: math.unit(7 + 6/12, "feet"),
  43131. weight: math.unit(540, "lb"),
  43132. name: "Front (Clothed)",
  43133. image: {
  43134. source: "./media/characters/yuko/front-clothed.svg",
  43135. extra: 1282/1222,
  43136. bottom: 101/1383
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(7 + 6/12, "feet"),
  43144. default: true
  43145. },
  43146. {
  43147. name: "Macro",
  43148. height: math.unit(26 + 9/12, "feet")
  43149. },
  43150. {
  43151. name: "Megamacro",
  43152. height: math.unit(300, "feet")
  43153. },
  43154. {
  43155. name: "Gigamacro",
  43156. height: math.unit(5000, "feet")
  43157. },
  43158. {
  43159. name: "Planetary",
  43160. height: math.unit(10000, "miles")
  43161. },
  43162. ]
  43163. ))
  43164. characterMakers.push(() => makeCharacter(
  43165. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43166. {
  43167. front: {
  43168. height: math.unit(8 + 2/12, "feet"),
  43169. weight: math.unit(600, "lb"),
  43170. name: "Front",
  43171. image: {
  43172. source: "./media/characters/deam-nitrel/front.svg",
  43173. extra: 1308/1234,
  43174. bottom: 125/1433
  43175. }
  43176. },
  43177. },
  43178. [
  43179. {
  43180. name: "Normal",
  43181. height: math.unit(8 + 2/12, "feet"),
  43182. default: true
  43183. },
  43184. ]
  43185. ))
  43186. characterMakers.push(() => makeCharacter(
  43187. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43188. {
  43189. front: {
  43190. height: math.unit(6.1, "feet"),
  43191. weight: math.unit(180, "lb"),
  43192. name: "Front",
  43193. image: {
  43194. source: "./media/characters/skyress/front.svg",
  43195. extra: 1045/915,
  43196. bottom: 28/1073
  43197. }
  43198. },
  43199. maw: {
  43200. height: math.unit(1, "feet"),
  43201. name: "Maw",
  43202. image: {
  43203. source: "./media/characters/skyress/maw.svg"
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Normal",
  43210. height: math.unit(6.1, "feet"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Macro",
  43215. height: math.unit(200, "feet")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43221. {
  43222. front: {
  43223. height: math.unit(4 + 2/12, "feet"),
  43224. weight: math.unit(40, "kg"),
  43225. name: "Front",
  43226. image: {
  43227. source: "./media/characters/amethyst-jones/front.svg",
  43228. extra: 1220/1150,
  43229. bottom: 101/1321
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(4 + 2/12, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(1.7, "m"),
  43246. weight: math.unit(135, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/jade/front.svg",
  43250. extra: 1818/1767,
  43251. bottom: 32/1850
  43252. }
  43253. },
  43254. back: {
  43255. height: math.unit(1.7, "m"),
  43256. weight: math.unit(135, "lb"),
  43257. name: "Back",
  43258. image: {
  43259. source: "./media/characters/jade/back.svg",
  43260. extra: 1869/1809,
  43261. bottom: 35/1904
  43262. }
  43263. },
  43264. hand: {
  43265. height: math.unit(0.24, "m"),
  43266. name: "Hand",
  43267. image: {
  43268. source: "./media/characters/jade/hand.svg"
  43269. }
  43270. },
  43271. foot: {
  43272. height: math.unit(0.263, "m"),
  43273. name: "Foot",
  43274. image: {
  43275. source: "./media/characters/jade/foot.svg"
  43276. }
  43277. },
  43278. dick: {
  43279. height: math.unit(0.47, "m"),
  43280. name: "Dick",
  43281. image: {
  43282. source: "./media/characters/jade/dick.svg"
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Micro",
  43289. height: math.unit(22, "cm")
  43290. },
  43291. {
  43292. name: "Normal",
  43293. height: math.unit(1.7, "m"),
  43294. default: true
  43295. },
  43296. {
  43297. name: "Macro",
  43298. height: math.unit(152, "m")
  43299. },
  43300. ]
  43301. ))
  43302. characterMakers.push(() => makeCharacter(
  43303. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43304. {
  43305. front: {
  43306. height: math.unit(100, "miles"),
  43307. weight: math.unit(20000, "tons"),
  43308. name: "Front",
  43309. image: {
  43310. source: "./media/characters/cookie/front.svg",
  43311. extra: 1125/1070,
  43312. bottom: 30/1155
  43313. }
  43314. },
  43315. },
  43316. [
  43317. {
  43318. name: "Big",
  43319. height: math.unit(50, "feet")
  43320. },
  43321. {
  43322. name: "Macro",
  43323. height: math.unit(100, "miles"),
  43324. default: true
  43325. },
  43326. {
  43327. name: "Megamacro",
  43328. height: math.unit(90000, "miles")
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43334. {
  43335. front: {
  43336. height: math.unit(6, "feet"),
  43337. weight: math.unit(145, "lb"),
  43338. name: "Front",
  43339. image: {
  43340. source: "./media/characters/farzian/front.svg",
  43341. extra: 1902/1693,
  43342. bottom: 108/2010
  43343. }
  43344. },
  43345. },
  43346. [
  43347. {
  43348. name: "Macro",
  43349. height: math.unit(500, "feet"),
  43350. default: true
  43351. },
  43352. ]
  43353. ))
  43354. characterMakers.push(() => makeCharacter(
  43355. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43356. {
  43357. front: {
  43358. height: math.unit(3 + 6/12, "feet"),
  43359. weight: math.unit(50, "lb"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/kimberly-tilson/front.svg",
  43363. extra: 1400/1322,
  43364. bottom: 36/1436
  43365. }
  43366. },
  43367. back: {
  43368. height: math.unit(3 + 6/12, "feet"),
  43369. weight: math.unit(50, "lb"),
  43370. name: "Back",
  43371. image: {
  43372. source: "./media/characters/kimberly-tilson/back.svg",
  43373. extra: 1370/1307,
  43374. bottom: 20/1390
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(3 + 6/12, "feet"),
  43382. default: true
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(350, "meters"),
  43391. weight: math.unit(7.57059e+8, "lb"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/harthos/front.svg",
  43395. extra: 455/446,
  43396. bottom: 15/470
  43397. },
  43398. form: "peacekeeper",
  43399. default: true
  43400. },
  43401. allusus_front: {
  43402. height: math.unit(270, "meters"),
  43403. weight: math.unit(3.47550e+8, "lb"),
  43404. name: "Front",
  43405. image: {
  43406. source: "./media/characters/harthos/allusus-front.svg",
  43407. extra: 455/446,
  43408. bottom: 15/470
  43409. },
  43410. form: "allusus",
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Macro",
  43416. height: math.unit(350, "meters"),
  43417. default: true,
  43418. form: "peacekeeper"
  43419. },
  43420. {
  43421. name: "Macro",
  43422. height: math.unit(270, "meters"),
  43423. default: true,
  43424. form: "allusus"
  43425. },
  43426. ],
  43427. {
  43428. "peacekeeper": {
  43429. name: "Peacekeeper",
  43430. default: true
  43431. },
  43432. "allusus": {
  43433. name: "Allusus",
  43434. },
  43435. }
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(15, "feet"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/hypatia/front.svg",
  43445. extra: 1653/1591,
  43446. bottom: 79/1732
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(15, "feet")
  43454. },
  43455. {
  43456. name: "Small",
  43457. height: math.unit(300, "feet")
  43458. },
  43459. {
  43460. name: "Macro",
  43461. height: math.unit(2500, "feet"),
  43462. default: true
  43463. },
  43464. {
  43465. name: "Mega Macro",
  43466. height: math.unit(1500, "miles")
  43467. },
  43468. {
  43469. name: "Giga Macro",
  43470. height: math.unit(1.5e6, "miles")
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(6, "feet"),
  43479. weight: math.unit(200, "lb"),
  43480. name: "Front",
  43481. image: {
  43482. source: "./media/characters/wulver/front.svg",
  43483. extra: 1724/1632,
  43484. bottom: 130/1854
  43485. }
  43486. },
  43487. frontNsfw: {
  43488. height: math.unit(6, "feet"),
  43489. weight: math.unit(200, "lb"),
  43490. name: "Front (NSFW)",
  43491. image: {
  43492. source: "./media/characters/wulver/front-nsfw.svg",
  43493. extra: 1724/1632,
  43494. bottom: 130/1854
  43495. }
  43496. },
  43497. },
  43498. [
  43499. {
  43500. name: "Human-Sized",
  43501. height: math.unit(6, "feet")
  43502. },
  43503. {
  43504. name: "Normal",
  43505. height: math.unit(4, "meters"),
  43506. default: true
  43507. },
  43508. {
  43509. name: "Large",
  43510. height: math.unit(6, "m")
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43516. {
  43517. front: {
  43518. height: math.unit(7, "feet"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/maru/front.svg",
  43522. extra: 1595/1570,
  43523. bottom: 0/1595
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(7, "feet"),
  43531. default: true
  43532. },
  43533. {
  43534. name: "Macro",
  43535. height: math.unit(700, "feet")
  43536. },
  43537. {
  43538. name: "Mega Macro",
  43539. height: math.unit(25, "miles")
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(6, "feet"),
  43548. weight: math.unit(170, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/xenon/front.svg",
  43552. extra: 1376/1305,
  43553. bottom: 56/1432
  43554. }
  43555. },
  43556. back: {
  43557. height: math.unit(6, "feet"),
  43558. weight: math.unit(170, "lb"),
  43559. name: "Back",
  43560. image: {
  43561. source: "./media/characters/xenon/back.svg",
  43562. extra: 1328/1259,
  43563. bottom: 95/1423
  43564. }
  43565. },
  43566. maw: {
  43567. height: math.unit(0.52, "feet"),
  43568. name: "Maw",
  43569. image: {
  43570. source: "./media/characters/xenon/maw.svg"
  43571. }
  43572. },
  43573. handLeft: {
  43574. height: math.unit(0.82 * 169 / 153, "feet"),
  43575. name: "Hand (Left)",
  43576. image: {
  43577. source: "./media/characters/xenon/hand-left.svg"
  43578. }
  43579. },
  43580. handRight: {
  43581. height: math.unit(0.82, "feet"),
  43582. name: "Hand (Right)",
  43583. image: {
  43584. source: "./media/characters/xenon/hand-right.svg"
  43585. }
  43586. },
  43587. footLeft: {
  43588. height: math.unit(1.13, "feet"),
  43589. name: "Foot (Left)",
  43590. image: {
  43591. source: "./media/characters/xenon/foot-left.svg"
  43592. }
  43593. },
  43594. footRight: {
  43595. height: math.unit(1.13 * 194 / 196, "feet"),
  43596. name: "Foot (Right)",
  43597. image: {
  43598. source: "./media/characters/xenon/foot-right.svg"
  43599. }
  43600. },
  43601. },
  43602. [
  43603. {
  43604. name: "Micro",
  43605. height: math.unit(0.8, "inches")
  43606. },
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(6, "feet")
  43610. },
  43611. {
  43612. name: "Macro",
  43613. height: math.unit(50, "feet"),
  43614. default: true
  43615. },
  43616. {
  43617. name: "Macro+",
  43618. height: math.unit(250, "feet")
  43619. },
  43620. {
  43621. name: "Megamacro",
  43622. height: math.unit(1500, "feet")
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43628. {
  43629. front: {
  43630. height: math.unit(7 + 5/12, "feet"),
  43631. name: "Front",
  43632. image: {
  43633. source: "./media/characters/zane/front.svg",
  43634. extra: 1260/1203,
  43635. bottom: 94/1354
  43636. }
  43637. },
  43638. back: {
  43639. height: math.unit(5.05, "feet"),
  43640. name: "Back",
  43641. image: {
  43642. source: "./media/characters/zane/back.svg",
  43643. extra: 893/829,
  43644. bottom: 30/923
  43645. }
  43646. },
  43647. werewolf: {
  43648. height: math.unit(11, "feet"),
  43649. name: "Werewolf",
  43650. image: {
  43651. source: "./media/characters/zane/werewolf.svg",
  43652. extra: 1383/1323,
  43653. bottom: 89/1472
  43654. }
  43655. },
  43656. foot: {
  43657. height: math.unit(1.46, "feet"),
  43658. name: "Foot",
  43659. image: {
  43660. source: "./media/characters/zane/foot.svg"
  43661. }
  43662. },
  43663. footFront: {
  43664. height: math.unit(0.784, "feet"),
  43665. name: "Foot (Front)",
  43666. image: {
  43667. source: "./media/characters/zane/foot-front.svg"
  43668. }
  43669. },
  43670. dick: {
  43671. height: math.unit(1.95, "feet"),
  43672. name: "Dick",
  43673. image: {
  43674. source: "./media/characters/zane/dick.svg"
  43675. }
  43676. },
  43677. dickWerewolf: {
  43678. height: math.unit(3.77, "feet"),
  43679. name: "Dick (Werewolf)",
  43680. image: {
  43681. source: "./media/characters/zane/dick.svg"
  43682. }
  43683. },
  43684. },
  43685. [
  43686. {
  43687. name: "Normal",
  43688. height: math.unit(7 + 5/12, "feet"),
  43689. default: true
  43690. },
  43691. ]
  43692. ))
  43693. characterMakers.push(() => makeCharacter(
  43694. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43695. {
  43696. front: {
  43697. height: math.unit(6 + 2/12, "feet"),
  43698. weight: math.unit(284, "lb"),
  43699. name: "Front",
  43700. image: {
  43701. source: "./media/characters/benni-desparque/front.svg",
  43702. extra: 878/729,
  43703. bottom: 58/936
  43704. }
  43705. },
  43706. back: {
  43707. height: math.unit(6 + 2/12, "feet"),
  43708. weight: math.unit(284, "lb"),
  43709. name: "Back",
  43710. image: {
  43711. source: "./media/characters/benni-desparque/back.svg",
  43712. extra: 901/756,
  43713. bottom: 51/952
  43714. }
  43715. },
  43716. dressed: {
  43717. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43718. weight: math.unit(284, "lb"),
  43719. name: "Dressed",
  43720. image: {
  43721. source: "./media/characters/benni-desparque/dressed.svg",
  43722. extra: 1514/1276,
  43723. bottom: 65/1579
  43724. }
  43725. },
  43726. hand: {
  43727. height: math.unit(1.28, "feet"),
  43728. name: "Hand",
  43729. image: {
  43730. source: "./media/characters/benni-desparque/hand.svg"
  43731. }
  43732. },
  43733. foot: {
  43734. height: math.unit(1.53, "feet"),
  43735. name: "Foot",
  43736. image: {
  43737. source: "./media/characters/benni-desparque/foot.svg"
  43738. }
  43739. },
  43740. aiControlUnit: {
  43741. height: math.unit(0.175, "feet"),
  43742. name: "AI Control Unit",
  43743. image: {
  43744. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43745. }
  43746. },
  43747. },
  43748. [
  43749. {
  43750. name: "Civilian",
  43751. height: math.unit(6 + 2/12, "feet")
  43752. },
  43753. {
  43754. name: "Normal",
  43755. height: math.unit(98, "feet"),
  43756. default: true
  43757. },
  43758. {
  43759. name: "Kaiju Fighter",
  43760. height: math.unit(268, "feet")
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43766. {
  43767. front: {
  43768. height: math.unit(5, "feet"),
  43769. weight: math.unit(105, "lb"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/maxine/front.svg",
  43773. extra: 1386/1250,
  43774. bottom: 71/1457
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Normal",
  43781. height: math.unit(5, "feet"),
  43782. default: true
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43788. {
  43789. front: {
  43790. height: math.unit(11 + 7/12, "feet"),
  43791. weight: math.unit(9576, "lb"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/scaly/front.svg",
  43795. extra: 888/867,
  43796. bottom: 36/924
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(11 + 7/12, "feet"),
  43804. default: true
  43805. },
  43806. ]
  43807. ))
  43808. characterMakers.push(() => makeCharacter(
  43809. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43810. {
  43811. front: {
  43812. height: math.unit(6 + 3/12, "feet"),
  43813. name: "Front",
  43814. image: {
  43815. source: "./media/characters/saelria/front.svg",
  43816. extra: 1243/1138,
  43817. bottom: 46/1289
  43818. }
  43819. },
  43820. },
  43821. [
  43822. {
  43823. name: "Micro",
  43824. height: math.unit(6, "inches"),
  43825. },
  43826. {
  43827. name: "Normal",
  43828. height: math.unit(6 + 3/12, "feet"),
  43829. default: true
  43830. },
  43831. {
  43832. name: "Macro",
  43833. height: math.unit(25, "feet")
  43834. },
  43835. ]
  43836. ))
  43837. characterMakers.push(() => makeCharacter(
  43838. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43839. {
  43840. front: {
  43841. height: math.unit(80, "meters"),
  43842. weight: math.unit(7000, "tonnes"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/tef/front.svg",
  43846. extra: 2036/1991,
  43847. bottom: 54/2090
  43848. }
  43849. },
  43850. back: {
  43851. height: math.unit(80, "meters"),
  43852. weight: math.unit(7000, "tonnes"),
  43853. name: "Back",
  43854. image: {
  43855. source: "./media/characters/tef/back.svg",
  43856. extra: 2036/1991,
  43857. bottom: 54/2090
  43858. }
  43859. },
  43860. },
  43861. [
  43862. {
  43863. name: "Macro",
  43864. height: math.unit(80, "meters"),
  43865. default: true
  43866. },
  43867. ]
  43868. ))
  43869. characterMakers.push(() => makeCharacter(
  43870. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43871. {
  43872. front: {
  43873. height: math.unit(13, "feet"),
  43874. weight: math.unit(6, "tons"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/rover/front.svg",
  43878. extra: 1233/1156,
  43879. bottom: 50/1283
  43880. }
  43881. },
  43882. back: {
  43883. height: math.unit(13, "feet"),
  43884. weight: math.unit(6, "tons"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/rover/back.svg",
  43888. extra: 1327/1258,
  43889. bottom: 39/1366
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(13, "feet"),
  43897. default: true
  43898. },
  43899. {
  43900. name: "Macro",
  43901. height: math.unit(1300, "feet")
  43902. },
  43903. {
  43904. name: "Megamacro",
  43905. height: math.unit(1300, "miles")
  43906. },
  43907. {
  43908. name: "Gigamacro",
  43909. height: math.unit(1300000, "miles")
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43915. {
  43916. front: {
  43917. height: math.unit(10, "feet"),
  43918. weight: math.unit(500, "lb"),
  43919. name: "Front",
  43920. image: {
  43921. source: "./media/characters/ariz/front.svg",
  43922. extra: 461/450,
  43923. bottom: 16/477
  43924. }
  43925. },
  43926. },
  43927. [
  43928. {
  43929. name: "MiniMacro",
  43930. height: math.unit(10, "feet"),
  43931. default: true
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(6, "feet"),
  43940. weight: math.unit(140, "lb"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/sigrun/front.svg",
  43944. extra: 1418/1359,
  43945. bottom: 27/1445
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Macro",
  43952. height: math.unit(35, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43959. {
  43960. front: {
  43961. height: math.unit(6, "feet"),
  43962. weight: math.unit(150, "lb"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/numin/front.svg",
  43966. extra: 1433/1388,
  43967. bottom: 12/1445
  43968. }
  43969. },
  43970. },
  43971. [
  43972. {
  43973. name: "Macro",
  43974. height: math.unit(21.5, "km"),
  43975. default: true
  43976. },
  43977. ]
  43978. ))
  43979. characterMakers.push(() => makeCharacter(
  43980. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43981. {
  43982. front: {
  43983. height: math.unit(6, "feet"),
  43984. weight: math.unit(463, "lb"),
  43985. name: "Front",
  43986. image: {
  43987. source: "./media/characters/melwa/front.svg",
  43988. extra: 1307/1248,
  43989. bottom: 93/1400
  43990. }
  43991. },
  43992. },
  43993. [
  43994. {
  43995. name: "Macro",
  43996. height: math.unit(50, "meters"),
  43997. default: true
  43998. },
  43999. ]
  44000. ))
  44001. characterMakers.push(() => makeCharacter(
  44002. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  44003. {
  44004. front: {
  44005. height: math.unit(325, "feet"),
  44006. name: "Front",
  44007. image: {
  44008. source: "./media/characters/zorkaiju/front.svg",
  44009. extra: 1955/1814,
  44010. bottom: 40/1995
  44011. }
  44012. },
  44013. frontExtended: {
  44014. height: math.unit(325, "feet"),
  44015. name: "Front (Extended)",
  44016. image: {
  44017. source: "./media/characters/zorkaiju/front-extended.svg",
  44018. extra: 1955/1814,
  44019. bottom: 40/1995
  44020. }
  44021. },
  44022. side: {
  44023. height: math.unit(325, "feet"),
  44024. name: "Side",
  44025. image: {
  44026. source: "./media/characters/zorkaiju/side.svg",
  44027. extra: 1495/1396,
  44028. bottom: 17/1512
  44029. }
  44030. },
  44031. sideExtended: {
  44032. height: math.unit(325, "feet"),
  44033. name: "Side (Extended)",
  44034. image: {
  44035. source: "./media/characters/zorkaiju/side-extended.svg",
  44036. extra: 1495/1396,
  44037. bottom: 17/1512
  44038. }
  44039. },
  44040. back: {
  44041. height: math.unit(325, "feet"),
  44042. name: "Back",
  44043. image: {
  44044. source: "./media/characters/zorkaiju/back.svg",
  44045. extra: 1959/1821,
  44046. bottom: 31/1990
  44047. }
  44048. },
  44049. backExtended: {
  44050. height: math.unit(325, "feet"),
  44051. name: "Back (Extended)",
  44052. image: {
  44053. source: "./media/characters/zorkaiju/back-extended.svg",
  44054. extra: 1959/1821,
  44055. bottom: 31/1990
  44056. }
  44057. },
  44058. hand: {
  44059. height: math.unit(58.4, "feet"),
  44060. name: "Hand",
  44061. image: {
  44062. source: "./media/characters/zorkaiju/hand.svg"
  44063. }
  44064. },
  44065. handExtended: {
  44066. height: math.unit(61.4, "feet"),
  44067. name: "Hand (Extended)",
  44068. image: {
  44069. source: "./media/characters/zorkaiju/hand-extended.svg"
  44070. }
  44071. },
  44072. foot: {
  44073. height: math.unit(95, "feet"),
  44074. name: "Foot",
  44075. image: {
  44076. source: "./media/characters/zorkaiju/foot.svg"
  44077. }
  44078. },
  44079. leftArm: {
  44080. height: math.unit(59, "feet"),
  44081. name: "Left Arm",
  44082. image: {
  44083. source: "./media/characters/zorkaiju/left-arm.svg"
  44084. }
  44085. },
  44086. rightArm: {
  44087. height: math.unit(59, "feet"),
  44088. name: "Right Arm",
  44089. image: {
  44090. source: "./media/characters/zorkaiju/right-arm.svg"
  44091. }
  44092. },
  44093. leftArmExtended: {
  44094. height: math.unit(59 * 1.033546, "feet"),
  44095. name: "Left Arm (Extended)",
  44096. image: {
  44097. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  44098. }
  44099. },
  44100. rightArmExtended: {
  44101. height: math.unit(59 * 1.0496, "feet"),
  44102. name: "Right Arm (Extended)",
  44103. image: {
  44104. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  44105. }
  44106. },
  44107. tail: {
  44108. height: math.unit(104, "feet"),
  44109. name: "Tail",
  44110. image: {
  44111. source: "./media/characters/zorkaiju/tail.svg"
  44112. }
  44113. },
  44114. tailExtended: {
  44115. height: math.unit(104, "feet"),
  44116. name: "Tail (Extended)",
  44117. image: {
  44118. source: "./media/characters/zorkaiju/tail-extended.svg"
  44119. }
  44120. },
  44121. tailBottom: {
  44122. height: math.unit(104, "feet"),
  44123. name: "Tail Bottom",
  44124. image: {
  44125. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44126. }
  44127. },
  44128. crystal: {
  44129. height: math.unit(27.54, "feet"),
  44130. name: "Crystal",
  44131. image: {
  44132. source: "./media/characters/zorkaiju/crystal.svg"
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Kaiju",
  44139. height: math.unit(325, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(6 + 1/12, "feet"),
  44149. weight: math.unit(115, "lb"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/bailey-belfry/front.svg",
  44153. extra: 1240/1121,
  44154. bottom: 101/1341
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(6 + 1/12, "feet"),
  44162. default: true
  44163. },
  44164. ]
  44165. ))
  44166. characterMakers.push(() => makeCharacter(
  44167. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44168. {
  44169. side: {
  44170. height: math.unit(4, "meters"),
  44171. weight: math.unit(250, "kg"),
  44172. name: "Side",
  44173. image: {
  44174. source: "./media/characters/blacky/side.svg",
  44175. extra: 1027/919,
  44176. bottom: 43/1070
  44177. }
  44178. },
  44179. maw: {
  44180. height: math.unit(1, "meters"),
  44181. name: "Maw",
  44182. image: {
  44183. source: "./media/characters/blacky/maw.svg"
  44184. }
  44185. },
  44186. paw: {
  44187. height: math.unit(1, "meters"),
  44188. name: "Paw",
  44189. image: {
  44190. source: "./media/characters/blacky/paw.svg"
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(4, "meters"),
  44198. default: true
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44204. {
  44205. front: {
  44206. height: math.unit(170, "cm"),
  44207. weight: math.unit(66, "kg"),
  44208. name: "Front",
  44209. image: {
  44210. source: "./media/characters/thux-ei/front.svg",
  44211. extra: 1109/1011,
  44212. bottom: 8/1117
  44213. }
  44214. },
  44215. },
  44216. [
  44217. {
  44218. name: "Normal",
  44219. height: math.unit(170, "cm"),
  44220. default: true
  44221. },
  44222. ]
  44223. ))
  44224. characterMakers.push(() => makeCharacter(
  44225. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44226. {
  44227. front: {
  44228. height: math.unit(5, "feet"),
  44229. weight: math.unit(120, "lb"),
  44230. name: "Front",
  44231. image: {
  44232. source: "./media/characters/roxanne-voltaire/front.svg",
  44233. extra: 1901/1779,
  44234. bottom: 53/1954
  44235. }
  44236. },
  44237. },
  44238. [
  44239. {
  44240. name: "Normal",
  44241. height: math.unit(5, "feet"),
  44242. default: true
  44243. },
  44244. {
  44245. name: "Giant",
  44246. height: math.unit(50, "feet")
  44247. },
  44248. {
  44249. name: "Titan",
  44250. height: math.unit(500, "feet")
  44251. },
  44252. {
  44253. name: "Macro",
  44254. height: math.unit(5000, "feet")
  44255. },
  44256. {
  44257. name: "Megamacro",
  44258. height: math.unit(50000, "feet")
  44259. },
  44260. {
  44261. name: "Gigamacro",
  44262. height: math.unit(500000, "feet")
  44263. },
  44264. {
  44265. name: "Teramacro",
  44266. height: math.unit(5e6, "feet")
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(6 + 2/12, "feet"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/squeaks/front.svg",
  44278. extra: 1823/1768,
  44279. bottom: 138/1961
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Micro",
  44286. height: math.unit(0.5, "inches")
  44287. },
  44288. {
  44289. name: "Normal",
  44290. height: math.unit(6 + 2/12, "feet"),
  44291. default: true
  44292. },
  44293. {
  44294. name: "Macro",
  44295. height: math.unit(600, "feet")
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44301. {
  44302. front: {
  44303. height: math.unit(1.72, "meters"),
  44304. name: "Front",
  44305. image: {
  44306. source: "./media/characters/archinger/front.svg",
  44307. extra: 1861/1675,
  44308. bottom: 125/1986
  44309. }
  44310. },
  44311. back: {
  44312. height: math.unit(1.72, "meters"),
  44313. name: "Back",
  44314. image: {
  44315. source: "./media/characters/archinger/back.svg",
  44316. extra: 1844/1701,
  44317. bottom: 104/1948
  44318. }
  44319. },
  44320. cock: {
  44321. height: math.unit(0.59, "feet"),
  44322. name: "Cock",
  44323. image: {
  44324. source: "./media/characters/archinger/cock.svg"
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(1.72, "meters"),
  44332. default: true
  44333. },
  44334. {
  44335. name: "Macro",
  44336. height: math.unit(84, "meters")
  44337. },
  44338. {
  44339. name: "Macro+",
  44340. height: math.unit(112, "meters")
  44341. },
  44342. {
  44343. name: "Macro++",
  44344. height: math.unit(960, "meters")
  44345. },
  44346. {
  44347. name: "Macro+++",
  44348. height: math.unit(4, "km")
  44349. },
  44350. {
  44351. name: "Macro++++",
  44352. height: math.unit(48, "km")
  44353. },
  44354. {
  44355. name: "Macro+++++",
  44356. height: math.unit(4500, "km")
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(5 + 5/12, "feet"),
  44365. name: "Front",
  44366. image: {
  44367. source: "./media/characters/alsnapz/front.svg",
  44368. extra: 1157/1065,
  44369. bottom: 42/1199
  44370. }
  44371. },
  44372. },
  44373. [
  44374. {
  44375. name: "Normal",
  44376. height: math.unit(5 + 5/12, "feet"),
  44377. default: true
  44378. },
  44379. ]
  44380. ))
  44381. characterMakers.push(() => makeCharacter(
  44382. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44383. {
  44384. side: {
  44385. height: math.unit(3.2, "earths"),
  44386. name: "Side",
  44387. image: {
  44388. source: "./media/characters/mag/side.svg",
  44389. extra: 1331/1008,
  44390. bottom: 52/1383
  44391. }
  44392. },
  44393. wing: {
  44394. height: math.unit(1.94, "earths"),
  44395. name: "Wing",
  44396. image: {
  44397. source: "./media/characters/mag/wing.svg"
  44398. }
  44399. },
  44400. dick: {
  44401. height: math.unit(1.8, "earths"),
  44402. name: "Dick",
  44403. image: {
  44404. source: "./media/characters/mag/dick.svg"
  44405. }
  44406. },
  44407. ass: {
  44408. height: math.unit(1.33, "earths"),
  44409. name: "Ass",
  44410. image: {
  44411. source: "./media/characters/mag/ass.svg"
  44412. }
  44413. },
  44414. head: {
  44415. height: math.unit(1.1, "earths"),
  44416. name: "Head",
  44417. image: {
  44418. source: "./media/characters/mag/head.svg"
  44419. }
  44420. },
  44421. maw: {
  44422. height: math.unit(1.62, "earths"),
  44423. name: "Maw",
  44424. image: {
  44425. source: "./media/characters/mag/maw.svg"
  44426. }
  44427. },
  44428. },
  44429. [
  44430. {
  44431. name: "Small",
  44432. height: math.unit(162, "feet")
  44433. },
  44434. {
  44435. name: "Normal",
  44436. height: math.unit(3.2, "earths"),
  44437. default: true
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44443. {
  44444. front: {
  44445. height: math.unit(512, "feet"),
  44446. weight: math.unit(63509, "tonnes"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/vorrel-harroc/front.svg",
  44450. extra: 1075/1063,
  44451. bottom: 62/1137
  44452. }
  44453. },
  44454. },
  44455. [
  44456. {
  44457. name: "Normal",
  44458. height: math.unit(10, "feet")
  44459. },
  44460. {
  44461. name: "Macro",
  44462. height: math.unit(512, "feet"),
  44463. default: true
  44464. },
  44465. {
  44466. name: "Megamacro",
  44467. height: math.unit(256, "miles")
  44468. },
  44469. {
  44470. name: "Gigamacro",
  44471. height: math.unit(4096, "miles")
  44472. },
  44473. ]
  44474. ))
  44475. characterMakers.push(() => makeCharacter(
  44476. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44477. {
  44478. side: {
  44479. height: math.unit(50, "feet"),
  44480. name: "Side",
  44481. image: {
  44482. source: "./media/characters/froimar/side.svg",
  44483. extra: 855/638,
  44484. bottom: 99/954
  44485. }
  44486. },
  44487. },
  44488. [
  44489. {
  44490. name: "Macro",
  44491. height: math.unit(50, "feet"),
  44492. default: true
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(210, "miles"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/timothy/front.svg",
  44504. extra: 1007/943,
  44505. bottom: 62/1069
  44506. }
  44507. },
  44508. frontSkirt: {
  44509. height: math.unit(210, "miles"),
  44510. name: "Front (Skirt)",
  44511. image: {
  44512. source: "./media/characters/timothy/front-skirt.svg",
  44513. extra: 1007/943,
  44514. bottom: 62/1069
  44515. }
  44516. },
  44517. frontCoat: {
  44518. height: math.unit(210, "miles"),
  44519. name: "Front (Coat)",
  44520. image: {
  44521. source: "./media/characters/timothy/front-coat.svg",
  44522. extra: 1007/943,
  44523. bottom: 62/1069
  44524. }
  44525. },
  44526. },
  44527. [
  44528. {
  44529. name: "Macro",
  44530. height: math.unit(210, "miles"),
  44531. default: true
  44532. },
  44533. {
  44534. name: "Megamacro",
  44535. height: math.unit(210000, "miles")
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(188, "feet"),
  44544. name: "Front",
  44545. image: {
  44546. source: "./media/characters/pyotr/front.svg",
  44547. extra: 1912/1826,
  44548. bottom: 18/1930
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Macro",
  44555. height: math.unit(188, "feet"),
  44556. default: true
  44557. },
  44558. {
  44559. name: "Megamacro",
  44560. height: math.unit(8, "miles")
  44561. },
  44562. ]
  44563. ))
  44564. characterMakers.push(() => makeCharacter(
  44565. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44566. {
  44567. side: {
  44568. height: math.unit(10, "feet"),
  44569. weight: math.unit(4500, "lb"),
  44570. name: "Side",
  44571. image: {
  44572. source: "./media/characters/ackart/side.svg",
  44573. extra: 1776/1668,
  44574. bottom: 116/1892
  44575. }
  44576. },
  44577. },
  44578. [
  44579. {
  44580. name: "Normal",
  44581. height: math.unit(10, "feet"),
  44582. default: true
  44583. },
  44584. ]
  44585. ))
  44586. characterMakers.push(() => makeCharacter(
  44587. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44588. {
  44589. side: {
  44590. height: math.unit(21, "feet"),
  44591. name: "Side",
  44592. image: {
  44593. source: "./media/characters/nolow/side.svg",
  44594. extra: 1484/1434,
  44595. bottom: 85/1569
  44596. }
  44597. },
  44598. sideErect: {
  44599. height: math.unit(21, "feet"),
  44600. name: "Side (Erect)",
  44601. image: {
  44602. source: "./media/characters/nolow/side-erect.svg",
  44603. extra: 1484/1434,
  44604. bottom: 85/1569
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Regular",
  44611. height: math.unit(12, "feet")
  44612. },
  44613. {
  44614. name: "Big Chee",
  44615. height: math.unit(21, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(7, "feet"),
  44625. weight: math.unit(250, "lb"),
  44626. name: "Front",
  44627. image: {
  44628. source: "./media/characters/nines/front.svg",
  44629. extra: 1741/1607,
  44630. bottom: 41/1782
  44631. }
  44632. },
  44633. side: {
  44634. height: math.unit(7, "feet"),
  44635. weight: math.unit(250, "lb"),
  44636. name: "Side",
  44637. image: {
  44638. source: "./media/characters/nines/side.svg",
  44639. extra: 1854/1735,
  44640. bottom: 93/1947
  44641. }
  44642. },
  44643. back: {
  44644. height: math.unit(7, "feet"),
  44645. weight: math.unit(250, "lb"),
  44646. name: "Back",
  44647. image: {
  44648. source: "./media/characters/nines/back.svg",
  44649. extra: 1748/1615,
  44650. bottom: 20/1768
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Megamacro",
  44657. height: math.unit(99, "km"),
  44658. default: true
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(5 + 10/12, "feet"),
  44667. weight: math.unit(210, "lb"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/zenith/front.svg",
  44671. extra: 1531/1452,
  44672. bottom: 198/1729
  44673. }
  44674. },
  44675. back: {
  44676. height: math.unit(5 + 10/12, "feet"),
  44677. weight: math.unit(210, "lb"),
  44678. name: "Back",
  44679. image: {
  44680. source: "./media/characters/zenith/back.svg",
  44681. extra: 1571/1487,
  44682. bottom: 75/1646
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(5 + 10/12, "feet"),
  44690. default: true
  44691. }
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44696. {
  44697. front: {
  44698. height: math.unit(4, "feet"),
  44699. weight: math.unit(60, "lb"),
  44700. name: "Front",
  44701. image: {
  44702. source: "./media/characters/jasper/front.svg",
  44703. extra: 1450/1379,
  44704. bottom: 19/1469
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Normal",
  44711. height: math.unit(4, "feet"),
  44712. default: true
  44713. },
  44714. ]
  44715. ))
  44716. characterMakers.push(() => makeCharacter(
  44717. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44718. {
  44719. front: {
  44720. height: math.unit(6 + 5/12, "feet"),
  44721. weight: math.unit(290, "lb"),
  44722. name: "Front",
  44723. image: {
  44724. source: "./media/characters/tiberius-thyben/front.svg",
  44725. extra: 757/739,
  44726. bottom: 39/796
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Micro",
  44733. height: math.unit(1.5, "inches")
  44734. },
  44735. {
  44736. name: "Normal",
  44737. height: math.unit(6 + 5/12, "feet"),
  44738. default: true
  44739. },
  44740. {
  44741. name: "Macro",
  44742. height: math.unit(300, "feet")
  44743. },
  44744. ]
  44745. ))
  44746. characterMakers.push(() => makeCharacter(
  44747. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44748. {
  44749. front: {
  44750. height: math.unit(5 + 6/12, "feet"),
  44751. weight: math.unit(60, "kg"),
  44752. name: "Front",
  44753. image: {
  44754. source: "./media/characters/sabre/front.svg",
  44755. extra: 738/671,
  44756. bottom: 27/765
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Teeny",
  44763. height: math.unit(2, "inches")
  44764. },
  44765. {
  44766. name: "Smol",
  44767. height: math.unit(8, "inches")
  44768. },
  44769. {
  44770. name: "Normal",
  44771. height: math.unit(5 + 6/12, "feet"),
  44772. default: true
  44773. },
  44774. {
  44775. name: "Mini-Macro",
  44776. height: math.unit(15, "feet")
  44777. },
  44778. {
  44779. name: "Macro",
  44780. height: math.unit(50, "feet")
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(6 + 4/12, "feet"),
  44789. weight: math.unit(170, "lb"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/charlie/front.svg",
  44793. extra: 1348/1228,
  44794. bottom: 15/1363
  44795. }
  44796. },
  44797. },
  44798. [
  44799. {
  44800. name: "Macro",
  44801. height: math.unit(1700, "meters"),
  44802. default: true
  44803. },
  44804. {
  44805. name: "MegaMacro",
  44806. height: math.unit(20400, "meters")
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(1.96, "meters"),
  44815. weight: math.unit(220, "lb"),
  44816. name: "Front",
  44817. image: {
  44818. source: "./media/characters/susan-grant/front.svg",
  44819. extra: 482/478,
  44820. bottom: 7/489
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Normal",
  44827. height: math.unit(1.96, "meters"),
  44828. default: true
  44829. },
  44830. {
  44831. name: "Macro",
  44832. height: math.unit(76.2, "meters")
  44833. },
  44834. {
  44835. name: "MegaMacro",
  44836. height: math.unit(305, "meters")
  44837. },
  44838. {
  44839. name: "GigaMacro",
  44840. height: math.unit(1220, "meters")
  44841. },
  44842. {
  44843. name: "SuperMacro",
  44844. height: math.unit(4878, "meters")
  44845. },
  44846. ]
  44847. ))
  44848. characterMakers.push(() => makeCharacter(
  44849. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44850. {
  44851. front: {
  44852. height: math.unit(5 + 4/12, "feet"),
  44853. weight: math.unit(110, "lb"),
  44854. name: "Front",
  44855. image: {
  44856. source: "./media/characters/axel-isanov/front.svg",
  44857. extra: 1096/1065,
  44858. bottom: 13/1109
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(5 + 4/12, "feet"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(9, "feet"),
  44875. weight: math.unit(467, "lb"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/necahual/front.svg",
  44879. extra: 920/873,
  44880. bottom: 26/946
  44881. }
  44882. },
  44883. back: {
  44884. height: math.unit(9, "feet"),
  44885. weight: math.unit(467, "lb"),
  44886. name: "Back",
  44887. image: {
  44888. source: "./media/characters/necahual/back.svg",
  44889. extra: 930/884,
  44890. bottom: 16/946
  44891. }
  44892. },
  44893. frontUnderwear: {
  44894. height: math.unit(9, "feet"),
  44895. weight: math.unit(467, "lb"),
  44896. name: "Front (Underwear)",
  44897. image: {
  44898. source: "./media/characters/necahual/front-underwear.svg",
  44899. extra: 920/873,
  44900. bottom: 26/946
  44901. }
  44902. },
  44903. frontDressed: {
  44904. height: math.unit(9, "feet"),
  44905. weight: math.unit(467, "lb"),
  44906. name: "Front (Dressed)",
  44907. image: {
  44908. source: "./media/characters/necahual/front-dressed.svg",
  44909. extra: 920/873,
  44910. bottom: 26/946
  44911. }
  44912. },
  44913. },
  44914. [
  44915. {
  44916. name: "Comprsesed",
  44917. height: math.unit(9, "feet")
  44918. },
  44919. {
  44920. name: "Natural",
  44921. height: math.unit(15, "feet"),
  44922. default: true
  44923. },
  44924. {
  44925. name: "Boosted",
  44926. height: math.unit(50, "feet")
  44927. },
  44928. {
  44929. name: "Boosted+",
  44930. height: math.unit(150, "feet")
  44931. },
  44932. {
  44933. name: "Max",
  44934. height: math.unit(500, "feet")
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44940. {
  44941. front: {
  44942. height: math.unit(22 + 1/12, "feet"),
  44943. weight: math.unit(3200, "lb"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/theo-acacia/front.svg",
  44947. extra: 1796/1741,
  44948. bottom: 83/1879
  44949. }
  44950. },
  44951. frontUnderwear: {
  44952. height: math.unit(22 + 1/12, "feet"),
  44953. weight: math.unit(3200, "lb"),
  44954. name: "Front (Underwear)",
  44955. image: {
  44956. source: "./media/characters/theo-acacia/front-underwear.svg",
  44957. extra: 1796/1741,
  44958. bottom: 83/1879
  44959. }
  44960. },
  44961. frontNude: {
  44962. height: math.unit(22 + 1/12, "feet"),
  44963. weight: math.unit(3200, "lb"),
  44964. name: "Front (Nude)",
  44965. image: {
  44966. source: "./media/characters/theo-acacia/front-nude.svg",
  44967. extra: 1796/1741,
  44968. bottom: 83/1879
  44969. }
  44970. },
  44971. },
  44972. [
  44973. {
  44974. name: "Normal",
  44975. height: math.unit(22 + 1/12, "feet"),
  44976. default: true
  44977. },
  44978. ]
  44979. ))
  44980. characterMakers.push(() => makeCharacter(
  44981. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44982. {
  44983. front: {
  44984. height: math.unit(20, "feet"),
  44985. name: "Front",
  44986. image: {
  44987. source: "./media/characters/astra/front.svg",
  44988. extra: 1850/1714,
  44989. bottom: 106/1956
  44990. }
  44991. },
  44992. frontUndressed: {
  44993. height: math.unit(20, "feet"),
  44994. name: "Front (Undressed)",
  44995. image: {
  44996. source: "./media/characters/astra/front-undressed.svg",
  44997. extra: 1926/1749,
  44998. bottom: 0/1926
  44999. }
  45000. },
  45001. hand: {
  45002. height: math.unit(1.53, "feet"),
  45003. name: "Hand",
  45004. image: {
  45005. source: "./media/characters/astra/hand.svg"
  45006. }
  45007. },
  45008. paw: {
  45009. height: math.unit(1.53, "feet"),
  45010. name: "Paw",
  45011. image: {
  45012. source: "./media/characters/astra/paw.svg"
  45013. }
  45014. },
  45015. },
  45016. [
  45017. {
  45018. name: "Smallest",
  45019. height: math.unit(20, "feet")
  45020. },
  45021. {
  45022. name: "Normal",
  45023. height: math.unit(1e9, "miles"),
  45024. default: true
  45025. },
  45026. {
  45027. name: "Larger",
  45028. height: math.unit(5, "multiverses")
  45029. },
  45030. {
  45031. name: "Largest",
  45032. height: math.unit(1e9, "multiverses")
  45033. },
  45034. ]
  45035. ))
  45036. characterMakers.push(() => makeCharacter(
  45037. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  45038. {
  45039. front: {
  45040. height: math.unit(8, "feet"),
  45041. name: "Front",
  45042. image: {
  45043. source: "./media/characters/breanna/front.svg",
  45044. extra: 1912/1632,
  45045. bottom: 33/1945
  45046. }
  45047. },
  45048. },
  45049. [
  45050. {
  45051. name: "Smallest",
  45052. height: math.unit(8, "feet")
  45053. },
  45054. {
  45055. name: "Normal",
  45056. height: math.unit(1, "mile"),
  45057. default: true
  45058. },
  45059. {
  45060. name: "Maximum",
  45061. height: math.unit(1500000000000, "lightyears")
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  45067. {
  45068. front: {
  45069. height: math.unit(5 + 11/12, "feet"),
  45070. weight: math.unit(155, "lb"),
  45071. name: "Front",
  45072. image: {
  45073. source: "./media/characters/cai/front.svg",
  45074. extra: 1823/1702,
  45075. bottom: 32/1855
  45076. }
  45077. },
  45078. back: {
  45079. height: math.unit(5 + 11/12, "feet"),
  45080. weight: math.unit(155, "lb"),
  45081. name: "Back",
  45082. image: {
  45083. source: "./media/characters/cai/back.svg",
  45084. extra: 1809/1708,
  45085. bottom: 31/1840
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(5 + 11/12, "feet"),
  45093. default: true
  45094. },
  45095. {
  45096. name: "Big",
  45097. height: math.unit(15, "feet")
  45098. },
  45099. {
  45100. name: "Macro",
  45101. height: math.unit(200, "feet")
  45102. },
  45103. ]
  45104. ))
  45105. characterMakers.push(() => makeCharacter(
  45106. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  45107. {
  45108. front: {
  45109. height: math.unit(5 + 6/12, "feet"),
  45110. weight: math.unit(160, "lb"),
  45111. name: "Front",
  45112. image: {
  45113. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45114. extra: 1227/1174,
  45115. bottom: 37/1264
  45116. }
  45117. },
  45118. },
  45119. [
  45120. {
  45121. name: "Macro",
  45122. height: math.unit(444, "meters"),
  45123. default: true
  45124. },
  45125. ]
  45126. ))
  45127. characterMakers.push(() => makeCharacter(
  45128. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45129. {
  45130. front: {
  45131. height: math.unit(18 + 7/12, "feet"),
  45132. name: "Front",
  45133. image: {
  45134. source: "./media/characters/rex/front.svg",
  45135. extra: 1941/1807,
  45136. bottom: 66/2007
  45137. }
  45138. },
  45139. back: {
  45140. height: math.unit(18 + 7/12, "feet"),
  45141. name: "Back",
  45142. image: {
  45143. source: "./media/characters/rex/back.svg",
  45144. extra: 1937/1822,
  45145. bottom: 42/1979
  45146. }
  45147. },
  45148. boot: {
  45149. height: math.unit(3.45, "feet"),
  45150. name: "Boot",
  45151. image: {
  45152. source: "./media/characters/rex/boot.svg"
  45153. }
  45154. },
  45155. paw: {
  45156. height: math.unit(4.17, "feet"),
  45157. name: "Paw",
  45158. image: {
  45159. source: "./media/characters/rex/paw.svg"
  45160. }
  45161. },
  45162. head: {
  45163. height: math.unit(6.728, "feet"),
  45164. name: "Head",
  45165. image: {
  45166. source: "./media/characters/rex/head.svg"
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Nano",
  45173. height: math.unit(18 + 7/12, "feet")
  45174. },
  45175. {
  45176. name: "Micro",
  45177. height: math.unit(1.5, "megameters")
  45178. },
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(440, "megameters"),
  45182. default: true
  45183. },
  45184. {
  45185. name: "Macro",
  45186. height: math.unit(2.5, "gigameters")
  45187. },
  45188. {
  45189. name: "Gigamacro",
  45190. height: math.unit(2, "galaxies")
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45196. {
  45197. side: {
  45198. height: math.unit(32, "feet"),
  45199. weight: math.unit(250000, "lb"),
  45200. name: "Side",
  45201. image: {
  45202. source: "./media/characters/silverwing/side.svg",
  45203. extra: 1100/1019,
  45204. bottom: 204/1304
  45205. }
  45206. },
  45207. },
  45208. [
  45209. {
  45210. name: "Normal",
  45211. height: math.unit(32, "feet"),
  45212. default: true
  45213. },
  45214. ]
  45215. ))
  45216. characterMakers.push(() => makeCharacter(
  45217. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45218. {
  45219. skunkFront: {
  45220. height: math.unit(4 + 6/12, "feet"),
  45221. weight: math.unit(120, "lb"),
  45222. name: "Front",
  45223. image: {
  45224. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45225. extra: 330/318,
  45226. bottom: 25/355
  45227. },
  45228. form: "skunk",
  45229. default: true
  45230. },
  45231. alolanUmbraichu_front: {
  45232. height: math.unit(2 + 6/12, "feet"),
  45233. name: "Front",
  45234. image: {
  45235. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45236. extra: 389/350,
  45237. bottom: 33/422
  45238. },
  45239. form: "alolan-umbraichu",
  45240. default: true
  45241. },
  45242. },
  45243. [
  45244. {
  45245. name: "Normal",
  45246. height: math.unit(4 + 6/12, "feet"),
  45247. form: "skunk",
  45248. default: true
  45249. },
  45250. {
  45251. name: "Normal",
  45252. height: math.unit(2 + 6/12, "feet"),
  45253. form: "alolan-umbraichu",
  45254. default: true
  45255. },
  45256. ],
  45257. {
  45258. "skunk": {
  45259. name: "Skunk",
  45260. default: true
  45261. },
  45262. "alolan-umbraichu": {
  45263. name: "Alolan Umbraichu",
  45264. },
  45265. }
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45269. {
  45270. front: {
  45271. height: math.unit(5 + 11/12, "feet"),
  45272. weight: math.unit(190, "lb"),
  45273. name: "Front",
  45274. image: {
  45275. source: "./media/characters/mizu/front.svg",
  45276. extra: 1988/1788,
  45277. bottom: 14/2002
  45278. }
  45279. },
  45280. },
  45281. [
  45282. {
  45283. name: "Normal",
  45284. height: math.unit(5 + 11/12, "feet"),
  45285. default: true
  45286. },
  45287. ]
  45288. ))
  45289. characterMakers.push(() => makeCharacter(
  45290. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45291. {
  45292. front: {
  45293. height: math.unit(1.7, "feet"),
  45294. weight: math.unit(50, "lb"),
  45295. name: "Front",
  45296. image: {
  45297. source: "./media/characters/dechroma/front.svg",
  45298. extra: 1095/859,
  45299. bottom: 64/1159
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(1.7, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45313. {
  45314. side: {
  45315. height: math.unit(30, "feet"),
  45316. name: "Side",
  45317. image: {
  45318. source: "./media/characters/veluren-thanazel/side.svg",
  45319. extra: 1611/633,
  45320. bottom: 118/1729
  45321. }
  45322. },
  45323. front: {
  45324. height: math.unit(30, "feet"),
  45325. name: "Front",
  45326. image: {
  45327. source: "./media/characters/veluren-thanazel/front.svg",
  45328. extra: 1486/636,
  45329. bottom: 238/1724
  45330. }
  45331. },
  45332. head: {
  45333. height: math.unit(21.4, "feet"),
  45334. name: "Head",
  45335. image: {
  45336. source: "./media/characters/veluren-thanazel/head.svg"
  45337. }
  45338. },
  45339. genitals: {
  45340. height: math.unit(19.4, "feet"),
  45341. name: "Genitals",
  45342. image: {
  45343. source: "./media/characters/veluren-thanazel/genitals.svg"
  45344. }
  45345. },
  45346. },
  45347. [
  45348. {
  45349. name: "Social",
  45350. height: math.unit(6, "feet")
  45351. },
  45352. {
  45353. name: "Play",
  45354. height: math.unit(12, "feet")
  45355. },
  45356. {
  45357. name: "True",
  45358. height: math.unit(30, "feet"),
  45359. default: true
  45360. },
  45361. ]
  45362. ))
  45363. characterMakers.push(() => makeCharacter(
  45364. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45365. {
  45366. front: {
  45367. height: math.unit(7 + 6/12, "feet"),
  45368. weight: math.unit(500, "kg"),
  45369. name: "Front",
  45370. image: {
  45371. source: "./media/characters/arcturas/front.svg",
  45372. extra: 1700/1500,
  45373. bottom: 145/1845
  45374. }
  45375. },
  45376. },
  45377. [
  45378. {
  45379. name: "Normal",
  45380. height: math.unit(7 + 6/12, "feet"),
  45381. default: true
  45382. },
  45383. ]
  45384. ))
  45385. characterMakers.push(() => makeCharacter(
  45386. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45387. {
  45388. side: {
  45389. height: math.unit(6, "feet"),
  45390. weight: math.unit(2, "tons"),
  45391. name: "Side",
  45392. image: {
  45393. source: "./media/characters/vitaen/side.svg",
  45394. extra: 1157/617,
  45395. bottom: 122/1279
  45396. }
  45397. },
  45398. },
  45399. [
  45400. {
  45401. name: "Normal",
  45402. height: math.unit(6, "feet"),
  45403. default: true
  45404. },
  45405. ]
  45406. ))
  45407. characterMakers.push(() => makeCharacter(
  45408. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45409. {
  45410. front: {
  45411. height: math.unit(19, "feet"),
  45412. name: "Front",
  45413. image: {
  45414. source: "./media/characters/fia-dreamweaver/front.svg",
  45415. extra: 1630/1504,
  45416. bottom: 25/1655
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(19, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45430. {
  45431. front: {
  45432. height: math.unit(5 + 4/12, "feet"),
  45433. name: "Front",
  45434. image: {
  45435. source: "./media/characters/artan/front.svg",
  45436. extra: 1618/1535,
  45437. bottom: 46/1664
  45438. }
  45439. },
  45440. back: {
  45441. height: math.unit(5 + 4/12, "feet"),
  45442. name: "Back",
  45443. image: {
  45444. source: "./media/characters/artan/back.svg",
  45445. extra: 1618/1543,
  45446. bottom: 31/1649
  45447. }
  45448. },
  45449. },
  45450. [
  45451. {
  45452. name: "Normal",
  45453. height: math.unit(5 + 4/12, "feet"),
  45454. default: true
  45455. },
  45456. ]
  45457. ))
  45458. characterMakers.push(() => makeCharacter(
  45459. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45460. {
  45461. side: {
  45462. height: math.unit(182, "cm"),
  45463. weight: math.unit(1000, "lb"),
  45464. name: "Side",
  45465. image: {
  45466. source: "./media/characters/silver-dragon/side.svg",
  45467. extra: 710/287,
  45468. bottom: 88/798
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(182, "cm"),
  45476. default: true
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45482. {
  45483. side: {
  45484. height: math.unit(6 + 6/12, "feet"),
  45485. weight: math.unit(1.5, "tons"),
  45486. name: "Side",
  45487. image: {
  45488. source: "./media/characters/zephyr/side.svg",
  45489. extra: 1436/603,
  45490. bottom: 105/1541
  45491. }
  45492. },
  45493. },
  45494. [
  45495. {
  45496. name: "Normal",
  45497. height: math.unit(6 + 6/12, "feet"),
  45498. default: true
  45499. },
  45500. ]
  45501. ))
  45502. characterMakers.push(() => makeCharacter(
  45503. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45504. {
  45505. side: {
  45506. height: math.unit(1, "feet"),
  45507. name: "Side",
  45508. image: {
  45509. source: "./media/characters/vixye/side.svg",
  45510. extra: 632/541,
  45511. bottom: 0/632
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(1, "feet"),
  45519. default: true
  45520. },
  45521. {
  45522. name: "True",
  45523. height: math.unit(1e15, "multiverses")
  45524. },
  45525. ]
  45526. ))
  45527. characterMakers.push(() => makeCharacter(
  45528. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45529. {
  45530. front: {
  45531. height: math.unit(8 + 2/12, "feet"),
  45532. weight: math.unit(650, "lb"),
  45533. name: "Front",
  45534. image: {
  45535. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45536. extra: 1174/1137,
  45537. bottom: 82/1256
  45538. }
  45539. },
  45540. back: {
  45541. height: math.unit(8 + 2/12, "feet"),
  45542. weight: math.unit(650, "lb"),
  45543. name: "Back",
  45544. image: {
  45545. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45546. extra: 1204/1157,
  45547. bottom: 46/1250
  45548. }
  45549. },
  45550. },
  45551. [
  45552. {
  45553. name: "Wildform",
  45554. height: math.unit(8 + 2/12, "feet"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(18, "feet"),
  45564. name: "Front",
  45565. image: {
  45566. source: "./media/characters/cyphin/front.svg",
  45567. extra: 970/886,
  45568. bottom: 42/1012
  45569. }
  45570. },
  45571. back: {
  45572. height: math.unit(18, "feet"),
  45573. name: "Back",
  45574. image: {
  45575. source: "./media/characters/cyphin/back.svg",
  45576. extra: 1009/894,
  45577. bottom: 24/1033
  45578. }
  45579. },
  45580. head: {
  45581. height: math.unit(5.05, "feet"),
  45582. name: "Head",
  45583. image: {
  45584. source: "./media/characters/cyphin/head.svg"
  45585. }
  45586. },
  45587. tailbud: {
  45588. height: math.unit(5, "feet"),
  45589. name: "Tailbud",
  45590. image: {
  45591. source: "./media/characters/cyphin/tailbud.svg"
  45592. }
  45593. },
  45594. },
  45595. [
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45600. {
  45601. side: {
  45602. height: math.unit(10, "feet"),
  45603. weight: math.unit(6, "tons"),
  45604. name: "Side",
  45605. image: {
  45606. source: "./media/characters/raijin/side.svg",
  45607. extra: 1529/613,
  45608. bottom: 337/1866
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Normal",
  45615. height: math.unit(10, "feet"),
  45616. default: true
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45622. {
  45623. side: {
  45624. height: math.unit(9, "feet"),
  45625. name: "Side",
  45626. image: {
  45627. source: "./media/characters/nilghais/side.svg",
  45628. extra: 1047/744,
  45629. bottom: 91/1138
  45630. }
  45631. },
  45632. head: {
  45633. height: math.unit(3.14, "feet"),
  45634. name: "Head",
  45635. image: {
  45636. source: "./media/characters/nilghais/head.svg"
  45637. }
  45638. },
  45639. mouth: {
  45640. height: math.unit(4.6, "feet"),
  45641. name: "Mouth",
  45642. image: {
  45643. source: "./media/characters/nilghais/mouth.svg"
  45644. }
  45645. },
  45646. wings: {
  45647. height: math.unit(24, "feet"),
  45648. name: "Wings",
  45649. image: {
  45650. source: "./media/characters/nilghais/wings.svg"
  45651. }
  45652. },
  45653. ass: {
  45654. height: math.unit(6.12, "feet"),
  45655. name: "Ass",
  45656. image: {
  45657. source: "./media/characters/nilghais/ass.svg"
  45658. }
  45659. },
  45660. },
  45661. [
  45662. {
  45663. name: "Normal",
  45664. height: math.unit(9, "feet"),
  45665. default: true
  45666. },
  45667. ]
  45668. ))
  45669. characterMakers.push(() => makeCharacter(
  45670. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45671. {
  45672. regular: {
  45673. height: math.unit(16 + 2/12, "feet"),
  45674. weight: math.unit(2300, "lb"),
  45675. name: "Regular",
  45676. image: {
  45677. source: "./media/characters/zolgar/regular.svg",
  45678. extra: 1246/1004,
  45679. bottom: 124/1370
  45680. }
  45681. },
  45682. boxers: {
  45683. height: math.unit(16 + 2/12, "feet"),
  45684. weight: math.unit(2300, "lb"),
  45685. name: "Boxers",
  45686. image: {
  45687. source: "./media/characters/zolgar/boxers.svg",
  45688. extra: 1246/1004,
  45689. bottom: 124/1370
  45690. }
  45691. },
  45692. armored: {
  45693. height: math.unit(16 + 2/12, "feet"),
  45694. weight: math.unit(2300, "lb"),
  45695. name: "Armored",
  45696. image: {
  45697. source: "./media/characters/zolgar/armored.svg",
  45698. extra: 1246/1004,
  45699. bottom: 124/1370
  45700. }
  45701. },
  45702. goth: {
  45703. height: math.unit(16 + 2/12, "feet"),
  45704. weight: math.unit(2300, "lb"),
  45705. name: "Goth",
  45706. image: {
  45707. source: "./media/characters/zolgar/goth.svg",
  45708. extra: 1246/1004,
  45709. bottom: 124/1370
  45710. }
  45711. },
  45712. },
  45713. [
  45714. {
  45715. name: "Shrunken Down",
  45716. height: math.unit(9 + 2/12, "feet")
  45717. },
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(16 + 2/12, "feet"),
  45721. default: true
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45727. {
  45728. front: {
  45729. height: math.unit(6, "feet"),
  45730. weight: math.unit(168, "lb"),
  45731. name: "Front",
  45732. image: {
  45733. source: "./media/characters/luca/front.svg",
  45734. extra: 841/667,
  45735. bottom: 102/943
  45736. }
  45737. },
  45738. },
  45739. [
  45740. {
  45741. name: "Normal",
  45742. height: math.unit(6, "feet"),
  45743. default: true
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45749. {
  45750. side: {
  45751. height: math.unit(7 + 3/12, "feet"),
  45752. weight: math.unit(312, "lb"),
  45753. name: "Side",
  45754. image: {
  45755. source: "./media/characters/zezo/side.svg",
  45756. extra: 1192/1067,
  45757. bottom: 63/1255
  45758. }
  45759. },
  45760. },
  45761. [
  45762. {
  45763. name: "Normal",
  45764. height: math.unit(7 + 3/12, "feet"),
  45765. default: true
  45766. },
  45767. ]
  45768. ))
  45769. characterMakers.push(() => makeCharacter(
  45770. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45771. {
  45772. front: {
  45773. height: math.unit(5 + 5/12, "feet"),
  45774. weight: math.unit(170, "lb"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/mayso/front.svg",
  45778. extra: 1215/1108,
  45779. bottom: 16/1231
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(5 + 5/12, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45793. {
  45794. front: {
  45795. height: math.unit(4 + 3/12, "feet"),
  45796. weight: math.unit(80, "lb"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/hess/front.svg",
  45800. extra: 1200/1123,
  45801. bottom: 16/1216
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(4 + 3/12, "feet"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45815. {
  45816. front: {
  45817. height: math.unit(1.9, "meters"),
  45818. name: "Front",
  45819. image: {
  45820. source: "./media/characters/ashgar/front.svg",
  45821. extra: 1177/1146,
  45822. bottom: 99/1276
  45823. }
  45824. },
  45825. back: {
  45826. height: math.unit(1.9, "meters"),
  45827. name: "Back",
  45828. image: {
  45829. source: "./media/characters/ashgar/back.svg",
  45830. extra: 1201/1183,
  45831. bottom: 53/1254
  45832. }
  45833. },
  45834. feral: {
  45835. height: math.unit(1.4, "meters"),
  45836. name: "Feral",
  45837. image: {
  45838. source: "./media/characters/ashgar/feral.svg",
  45839. extra: 370/345,
  45840. bottom: 45/415
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(1.9, "meters"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45854. {
  45855. regular: {
  45856. height: math.unit(6, "feet"),
  45857. weight: math.unit(220, "lb"),
  45858. name: "Regular",
  45859. image: {
  45860. source: "./media/characters/phillip/regular.svg",
  45861. extra: 1373/1277,
  45862. bottom: 75/1448
  45863. }
  45864. },
  45865. dressed: {
  45866. height: math.unit(6, "feet"),
  45867. weight: math.unit(220, "lb"),
  45868. name: "Dressed",
  45869. image: {
  45870. source: "./media/characters/phillip/dressed.svg",
  45871. extra: 1373/1277,
  45872. bottom: 75/1448
  45873. }
  45874. },
  45875. paw: {
  45876. height: math.unit(1.44, "feet"),
  45877. name: "Paw",
  45878. image: {
  45879. source: "./media/characters/phillip/paw.svg"
  45880. }
  45881. },
  45882. },
  45883. [
  45884. {
  45885. name: "Normal",
  45886. height: math.unit(6, "feet"),
  45887. default: true
  45888. },
  45889. ]
  45890. ))
  45891. characterMakers.push(() => makeCharacter(
  45892. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45893. {
  45894. side: {
  45895. height: math.unit(42, "feet"),
  45896. name: "Side",
  45897. image: {
  45898. source: "./media/characters/uvula/side.svg",
  45899. extra: 683/586,
  45900. bottom: 60/743
  45901. }
  45902. },
  45903. front: {
  45904. height: math.unit(42, "feet"),
  45905. name: "Front",
  45906. image: {
  45907. source: "./media/characters/uvula/front.svg",
  45908. extra: 705/613,
  45909. bottom: 54/759
  45910. }
  45911. },
  45912. maw: {
  45913. height: math.unit(23.5, "feet"),
  45914. name: "Maw",
  45915. image: {
  45916. source: "./media/characters/uvula/maw.svg"
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Original Size",
  45923. height: math.unit(14, "inches")
  45924. },
  45925. {
  45926. name: "Human Size",
  45927. height: math.unit(6, "feet")
  45928. },
  45929. {
  45930. name: "Big",
  45931. height: math.unit(42, "feet"),
  45932. default: true
  45933. },
  45934. {
  45935. name: "Bigger",
  45936. height: math.unit(100, "feet")
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45942. {
  45943. front: {
  45944. height: math.unit(5 + 11/12, "feet"),
  45945. name: "Front",
  45946. image: {
  45947. source: "./media/characters/lannah/front.svg",
  45948. extra: 1208/1113,
  45949. bottom: 97/1305
  45950. }
  45951. },
  45952. },
  45953. [
  45954. {
  45955. name: "Normal",
  45956. height: math.unit(5 + 11/12, "feet"),
  45957. default: true
  45958. },
  45959. ]
  45960. ))
  45961. characterMakers.push(() => makeCharacter(
  45962. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45963. {
  45964. front: {
  45965. height: math.unit(6 + 3/12, "feet"),
  45966. weight: math.unit(3.5, "tons"),
  45967. name: "Front",
  45968. image: {
  45969. source: "./media/characters/emberflame/front.svg",
  45970. extra: 1198/672,
  45971. bottom: 82/1280
  45972. }
  45973. },
  45974. side: {
  45975. height: math.unit(6 + 3/12, "feet"),
  45976. weight: math.unit(3.5, "tons"),
  45977. name: "Side",
  45978. image: {
  45979. source: "./media/characters/emberflame/side.svg",
  45980. extra: 938/527,
  45981. bottom: 56/994
  45982. }
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Normal",
  45988. height: math.unit(6 + 3/12, "feet"),
  45989. default: true
  45990. },
  45991. ]
  45992. ))
  45993. characterMakers.push(() => makeCharacter(
  45994. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45995. {
  45996. side: {
  45997. height: math.unit(17.5, "feet"),
  45998. weight: math.unit(35, "tons"),
  45999. name: "Side",
  46000. image: {
  46001. source: "./media/characters/sophie-ambrose/side.svg",
  46002. extra: 1573/1242,
  46003. bottom: 71/1644
  46004. }
  46005. },
  46006. maw: {
  46007. height: math.unit(7.4, "feet"),
  46008. name: "Maw",
  46009. image: {
  46010. source: "./media/characters/sophie-ambrose/maw.svg"
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(17.5, "feet"),
  46018. default: true
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(280, "feet"),
  46027. weight: math.unit(550, "tons"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/king-mugi/front.svg",
  46031. extra: 1102/947,
  46032. bottom: 104/1206
  46033. }
  46034. },
  46035. },
  46036. [
  46037. {
  46038. name: "King Mugi",
  46039. height: math.unit(280, "feet"),
  46040. default: true
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  46046. {
  46047. female: {
  46048. height: math.unit(300, "meters"),
  46049. name: "Front",
  46050. image: {
  46051. source: "./media/characters/nova-fox/female.svg",
  46052. extra: 664/632,
  46053. bottom: 51/715
  46054. },
  46055. form: "female",
  46056. default: true
  46057. },
  46058. male: {
  46059. height: math.unit(300, "meters"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/nova-fox/male.svg",
  46063. extra: 663/631,
  46064. bottom: 30/693
  46065. },
  46066. form: "male",
  46067. default: true
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Macro",
  46073. height: math.unit(300, "meters"),
  46074. default: true,
  46075. allForms: true
  46076. },
  46077. ],
  46078. {
  46079. "female": {
  46080. name: "Female",
  46081. default: true
  46082. },
  46083. "male": {
  46084. name: "Male",
  46085. },
  46086. }
  46087. ))
  46088. characterMakers.push(() => makeCharacter(
  46089. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  46090. {
  46091. front: {
  46092. height: math.unit(6 + 3/12, "feet"),
  46093. weight: math.unit(170, "lb"),
  46094. name: "Front",
  46095. image: {
  46096. source: "./media/characters/sam-bat/front.svg",
  46097. extra: 1601/1411,
  46098. bottom: 125/1726
  46099. }
  46100. },
  46101. back: {
  46102. height: math.unit(6 + 3/12, "feet"),
  46103. weight: math.unit(170, "lb"),
  46104. name: "Back",
  46105. image: {
  46106. source: "./media/characters/sam-bat/back.svg",
  46107. extra: 1577/1405,
  46108. bottom: 58/1635
  46109. }
  46110. },
  46111. },
  46112. [
  46113. {
  46114. name: "Normal",
  46115. height: math.unit(6 + 3/12, "feet"),
  46116. default: true
  46117. },
  46118. ]
  46119. ))
  46120. characterMakers.push(() => makeCharacter(
  46121. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46122. {
  46123. front: {
  46124. height: math.unit(59, "feet"),
  46125. weight: math.unit(40000, "lb"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/inari/front.svg",
  46129. extra: 1884/1350,
  46130. bottom: 95/1979
  46131. }
  46132. },
  46133. },
  46134. [
  46135. {
  46136. name: "Gigantamax",
  46137. height: math.unit(59, "feet"),
  46138. default: true
  46139. },
  46140. ]
  46141. ))
  46142. characterMakers.push(() => makeCharacter(
  46143. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46144. {
  46145. front: {
  46146. height: math.unit(5 + 8/12, "feet"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/elizabeth/front.svg",
  46150. extra: 1395/1298,
  46151. bottom: 54/1449
  46152. }
  46153. },
  46154. mouth: {
  46155. height: math.unit(1.97, "feet"),
  46156. name: "Mouth",
  46157. image: {
  46158. source: "./media/characters/elizabeth/mouth.svg"
  46159. }
  46160. },
  46161. foot: {
  46162. height: math.unit(1.17, "feet"),
  46163. name: "Foot",
  46164. image: {
  46165. source: "./media/characters/elizabeth/foot.svg"
  46166. }
  46167. },
  46168. },
  46169. [
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(5 + 8/12, "feet"),
  46173. default: true
  46174. },
  46175. {
  46176. name: "Minimacro",
  46177. height: math.unit(18, "feet")
  46178. },
  46179. {
  46180. name: "Macro",
  46181. height: math.unit(180, "feet")
  46182. },
  46183. ]
  46184. ))
  46185. characterMakers.push(() => makeCharacter(
  46186. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46187. {
  46188. front: {
  46189. height: math.unit(5 + 2/12, "feet"),
  46190. name: "Front",
  46191. image: {
  46192. source: "./media/characters/october-gossamer/front.svg",
  46193. extra: 505/454,
  46194. bottom: 7/512
  46195. }
  46196. },
  46197. back: {
  46198. height: math.unit(5 + 2/12, "feet"),
  46199. name: "Back",
  46200. image: {
  46201. source: "./media/characters/october-gossamer/back.svg",
  46202. extra: 501/454,
  46203. bottom: 11/512
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(5 + 2/12, "feet"),
  46211. default: true
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46217. {
  46218. front: {
  46219. height: math.unit(5, "feet"),
  46220. name: "Front",
  46221. image: {
  46222. source: "./media/characters/epiglottis/front.svg",
  46223. extra: 923/849,
  46224. bottom: 17/940
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Original Size",
  46231. height: math.unit(10, "inches")
  46232. },
  46233. {
  46234. name: "Human Size",
  46235. height: math.unit(5, "feet"),
  46236. default: true
  46237. },
  46238. {
  46239. name: "Big",
  46240. height: math.unit(25, "feet")
  46241. },
  46242. {
  46243. name: "Bigger",
  46244. height: math.unit(50, "feet")
  46245. },
  46246. {
  46247. name: "oh lawd",
  46248. height: math.unit(75, "feet")
  46249. },
  46250. ]
  46251. ))
  46252. characterMakers.push(() => makeCharacter(
  46253. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46254. {
  46255. front: {
  46256. height: math.unit(2 + 4/12, "feet"),
  46257. weight: math.unit(60, "lb"),
  46258. name: "Front",
  46259. image: {
  46260. source: "./media/characters/lerm/front.svg",
  46261. extra: 796/790,
  46262. bottom: 79/875
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(2 + 4/12, "feet"),
  46270. default: true
  46271. },
  46272. ]
  46273. ))
  46274. characterMakers.push(() => makeCharacter(
  46275. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46276. {
  46277. front: {
  46278. height: math.unit(5.5, "feet"),
  46279. weight: math.unit(130, "lb"),
  46280. name: "Front",
  46281. image: {
  46282. source: "./media/characters/xena-nebadon/front.svg",
  46283. extra: 1828/1730,
  46284. bottom: 79/1907
  46285. }
  46286. },
  46287. },
  46288. [
  46289. {
  46290. name: "Tiny Puppy",
  46291. height: math.unit(3, "inches")
  46292. },
  46293. {
  46294. name: "Normal",
  46295. height: math.unit(5.5, "feet"),
  46296. default: true
  46297. },
  46298. {
  46299. name: "Lotta Lady",
  46300. height: math.unit(12, "feet")
  46301. },
  46302. {
  46303. name: "Pretty Big",
  46304. height: math.unit(100, "feet")
  46305. },
  46306. {
  46307. name: "Big",
  46308. height: math.unit(500, "feet")
  46309. },
  46310. {
  46311. name: "Skyscraper Toys",
  46312. height: math.unit(2500, "feet")
  46313. },
  46314. {
  46315. name: "Plane Catcher",
  46316. height: math.unit(8, "miles")
  46317. },
  46318. {
  46319. name: "Planet Toys",
  46320. height: math.unit(15, "earths")
  46321. },
  46322. {
  46323. name: "Stardust",
  46324. height: math.unit(0.25, "galaxies")
  46325. },
  46326. {
  46327. name: "Snacks",
  46328. height: math.unit(70, "universes")
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46334. {
  46335. front: {
  46336. height: math.unit(1.6, "meters"),
  46337. weight: math.unit(60, "kg"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/bounty/front.svg",
  46341. extra: 1426/1308,
  46342. bottom: 15/1441
  46343. }
  46344. },
  46345. back: {
  46346. height: math.unit(1.6, "meters"),
  46347. weight: math.unit(60, "kg"),
  46348. name: "Back",
  46349. image: {
  46350. source: "./media/characters/bounty/back.svg",
  46351. extra: 1417/1307,
  46352. bottom: 8/1425
  46353. }
  46354. },
  46355. },
  46356. [
  46357. {
  46358. name: "Normal",
  46359. height: math.unit(1.6, "meters"),
  46360. default: true
  46361. },
  46362. {
  46363. name: "Macro",
  46364. height: math.unit(300, "meters")
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46370. {
  46371. front: {
  46372. height: math.unit(2 + 8/12, "feet"),
  46373. weight: math.unit(15, "lb"),
  46374. name: "Front",
  46375. image: {
  46376. source: "./media/characters/mochi/front.svg",
  46377. extra: 1022/852,
  46378. bottom: 435/1457
  46379. }
  46380. },
  46381. back: {
  46382. height: math.unit(2 + 8/12, "feet"),
  46383. weight: math.unit(15, "lb"),
  46384. name: "Back",
  46385. image: {
  46386. source: "./media/characters/mochi/back.svg",
  46387. extra: 1335/1119,
  46388. bottom: 39/1374
  46389. }
  46390. },
  46391. bird: {
  46392. height: math.unit(2 + 8/12, "feet"),
  46393. weight: math.unit(15, "lb"),
  46394. name: "Bird",
  46395. image: {
  46396. source: "./media/characters/mochi/bird.svg",
  46397. extra: 1251/1113,
  46398. bottom: 178/1429
  46399. }
  46400. },
  46401. kaiju: {
  46402. height: math.unit(154, "feet"),
  46403. weight: math.unit(1e7, "lb"),
  46404. name: "Kaiju",
  46405. image: {
  46406. source: "./media/characters/mochi/kaiju.svg",
  46407. extra: 460/324,
  46408. bottom: 40/500
  46409. }
  46410. },
  46411. head: {
  46412. height: math.unit(1.21, "feet"),
  46413. name: "Head",
  46414. image: {
  46415. source: "./media/characters/mochi/head.svg"
  46416. }
  46417. },
  46418. alternateTail: {
  46419. height: math.unit(2 + 8/12, "feet"),
  46420. weight: math.unit(45, "lb"),
  46421. name: "Alternate Tail",
  46422. image: {
  46423. source: "./media/characters/mochi/alternate-tail.svg",
  46424. extra: 139/76,
  46425. bottom: 45/184
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Micro",
  46432. height: math.unit(2, "inches")
  46433. },
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(2 + 8/12, "feet"),
  46437. default: true
  46438. },
  46439. {
  46440. name: "Macro",
  46441. height: math.unit(106, "feet")
  46442. },
  46443. ]
  46444. ))
  46445. characterMakers.push(() => makeCharacter(
  46446. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46447. {
  46448. front: {
  46449. height: math.unit(5.67, "feet"),
  46450. weight: math.unit(135, "lb"),
  46451. name: "Front",
  46452. image: {
  46453. source: "./media/characters/sarel/front.svg",
  46454. extra: 865/788,
  46455. bottom: 97/962
  46456. }
  46457. },
  46458. back: {
  46459. height: math.unit(5.67, "feet"),
  46460. weight: math.unit(135, "lb"),
  46461. name: "Back",
  46462. image: {
  46463. source: "./media/characters/sarel/back.svg",
  46464. extra: 857/777,
  46465. bottom: 32/889
  46466. }
  46467. },
  46468. chozoan: {
  46469. height: math.unit(5.67, "feet"),
  46470. weight: math.unit(135, "lb"),
  46471. name: "Chozoan",
  46472. image: {
  46473. source: "./media/characters/sarel/chozoan.svg",
  46474. extra: 865/788,
  46475. bottom: 97/962
  46476. }
  46477. },
  46478. current: {
  46479. height: math.unit(5.67, "feet"),
  46480. weight: math.unit(135, "lb"),
  46481. name: "Current",
  46482. image: {
  46483. source: "./media/characters/sarel/current.svg",
  46484. extra: 865/788,
  46485. bottom: 97/962
  46486. }
  46487. },
  46488. head: {
  46489. height: math.unit(1.77, "feet"),
  46490. name: "Head",
  46491. image: {
  46492. source: "./media/characters/sarel/head.svg"
  46493. }
  46494. },
  46495. claws: {
  46496. height: math.unit(1.8, "feet"),
  46497. name: "Claws",
  46498. image: {
  46499. source: "./media/characters/sarel/claws.svg"
  46500. }
  46501. },
  46502. clawsAlt: {
  46503. height: math.unit(1.8, "feet"),
  46504. name: "Claws (Alt)",
  46505. image: {
  46506. source: "./media/characters/sarel/claws-alt.svg"
  46507. }
  46508. },
  46509. },
  46510. [
  46511. {
  46512. name: "Normal",
  46513. height: math.unit(5.67, "feet"),
  46514. default: true
  46515. },
  46516. ]
  46517. ))
  46518. characterMakers.push(() => makeCharacter(
  46519. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46520. {
  46521. front: {
  46522. height: math.unit(5500, "feet"),
  46523. name: "Front",
  46524. image: {
  46525. source: "./media/characters/alyonia/front.svg",
  46526. extra: 1200/1135,
  46527. bottom: 29/1229
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(5500, "feet"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/alyonia/back.svg",
  46535. extra: 1205/1138,
  46536. bottom: 10/1215
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Small",
  46543. height: math.unit(10, "feet")
  46544. },
  46545. {
  46546. name: "Macro",
  46547. height: math.unit(500, "feet")
  46548. },
  46549. {
  46550. name: "Mega Macro",
  46551. height: math.unit(5500, "feet"),
  46552. default: true
  46553. },
  46554. {
  46555. name: "Mega Macro+",
  46556. height: math.unit(500000, "feet")
  46557. },
  46558. {
  46559. name: "Giga Macro",
  46560. height: math.unit(3000, "miles")
  46561. },
  46562. {
  46563. name: "Tera Macro",
  46564. height: math.unit(2.8e6, "miles")
  46565. },
  46566. {
  46567. name: "Galactic",
  46568. height: math.unit(120000, "lightyears")
  46569. },
  46570. ]
  46571. ))
  46572. characterMakers.push(() => makeCharacter(
  46573. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46574. {
  46575. werewolf: {
  46576. height: math.unit(8, "feet"),
  46577. weight: math.unit(425, "lb"),
  46578. name: "Werewolf",
  46579. image: {
  46580. source: "./media/characters/autumn/werewolf.svg",
  46581. extra: 2154/2031,
  46582. bottom: 160/2314
  46583. }
  46584. },
  46585. human: {
  46586. height: math.unit(5 + 8/12, "feet"),
  46587. weight: math.unit(150, "lb"),
  46588. name: "Human",
  46589. image: {
  46590. source: "./media/characters/autumn/human.svg",
  46591. extra: 1200/1149,
  46592. bottom: 30/1230
  46593. }
  46594. },
  46595. },
  46596. [
  46597. {
  46598. name: "Normal",
  46599. height: math.unit(8, "feet"),
  46600. default: true
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46606. {
  46607. front: {
  46608. height: math.unit(8 + 5/12, "feet"),
  46609. weight: math.unit(825, "lb"),
  46610. name: "Front",
  46611. image: {
  46612. source: "./media/characters/cobalt-charizard/front.svg",
  46613. extra: 1268/1155,
  46614. bottom: 122/1390
  46615. }
  46616. },
  46617. side: {
  46618. height: math.unit(8 + 5/12, "feet"),
  46619. weight: math.unit(825, "lb"),
  46620. name: "Side",
  46621. image: {
  46622. source: "./media/characters/cobalt-charizard/side.svg",
  46623. extra: 1348/1257,
  46624. bottom: 58/1406
  46625. }
  46626. },
  46627. gMax: {
  46628. height: math.unit(134 + 11/12, "feet"),
  46629. name: "G-Max",
  46630. image: {
  46631. source: "./media/characters/cobalt-charizard/g-max.svg",
  46632. extra: 1835/1541,
  46633. bottom: 151/1986
  46634. }
  46635. },
  46636. },
  46637. [
  46638. {
  46639. name: "Normal",
  46640. height: math.unit(8 + 5/12, "feet"),
  46641. default: true
  46642. },
  46643. ]
  46644. ))
  46645. characterMakers.push(() => makeCharacter(
  46646. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46647. {
  46648. front: {
  46649. height: math.unit(6 + 3/12, "feet"),
  46650. weight: math.unit(210, "lb"),
  46651. name: "Front",
  46652. image: {
  46653. source: "./media/characters/stella/front.svg",
  46654. extra: 3549/3335,
  46655. bottom: 51/3600
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Normal",
  46662. height: math.unit(6 + 3/12, "feet"),
  46663. default: true
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46669. {
  46670. front: {
  46671. height: math.unit(5, "feet"),
  46672. weight: math.unit(90, "lb"),
  46673. name: "Front",
  46674. image: {
  46675. source: "./media/characters/riley-bishop/front.svg",
  46676. extra: 1450/1428,
  46677. bottom: 152/1602
  46678. }
  46679. },
  46680. },
  46681. [
  46682. {
  46683. name: "Normal",
  46684. height: math.unit(5, "feet"),
  46685. default: true
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46691. {
  46692. side: {
  46693. height: math.unit(8 + 2/12, "feet"),
  46694. weight: math.unit(500, "kg"),
  46695. name: "Side",
  46696. image: {
  46697. source: "./media/characters/theo-arcanine/side.svg",
  46698. extra: 1342/1074,
  46699. bottom: 111/1453
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(8 + 2/12, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46713. {
  46714. front: {
  46715. height: math.unit(4, "feet"),
  46716. name: "Front",
  46717. image: {
  46718. source: "./media/characters/kali/front.svg",
  46719. extra: 1074/867,
  46720. bottom: 34/1108
  46721. }
  46722. },
  46723. back: {
  46724. height: math.unit(4, "feet"),
  46725. name: "Back",
  46726. image: {
  46727. source: "./media/characters/kali/back.svg",
  46728. extra: 1068/863,
  46729. bottom: 26/1094
  46730. }
  46731. },
  46732. frontAlt: {
  46733. height: math.unit(4, "feet"),
  46734. name: "Front (Alt)",
  46735. image: {
  46736. source: "./media/characters/kali/front-alt.svg",
  46737. extra: 1921/1357,
  46738. bottom: 70/1991
  46739. }
  46740. },
  46741. },
  46742. [
  46743. {
  46744. name: "Normal",
  46745. height: math.unit(4, "feet"),
  46746. default: true
  46747. },
  46748. {
  46749. name: "Big'vali",
  46750. height: math.unit(11, "feet")
  46751. },
  46752. {
  46753. name: "Macro",
  46754. height: math.unit(32, "meters")
  46755. },
  46756. {
  46757. name: "Macro+",
  46758. height: math.unit(150, "meters")
  46759. },
  46760. {
  46761. name: "Megamacro",
  46762. height: math.unit(7500, "meters")
  46763. },
  46764. {
  46765. name: "Megamacro+",
  46766. height: math.unit(80, "kilometers")
  46767. },
  46768. ]
  46769. ))
  46770. characterMakers.push(() => makeCharacter(
  46771. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46772. {
  46773. side: {
  46774. height: math.unit(5 + 11/12, "feet"),
  46775. weight: math.unit(236, "lb"),
  46776. name: "Side",
  46777. image: {
  46778. source: "./media/characters/gapp/side.svg",
  46779. extra: 775/340,
  46780. bottom: 58/833
  46781. }
  46782. },
  46783. mouth: {
  46784. height: math.unit(2.98, "feet"),
  46785. name: "Mouth",
  46786. image: {
  46787. source: "./media/characters/gapp/mouth.svg"
  46788. }
  46789. },
  46790. },
  46791. [
  46792. {
  46793. name: "Normal",
  46794. height: math.unit(5 + 1/12, "feet"),
  46795. default: true
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46801. {
  46802. front: {
  46803. height: math.unit(6, "feet"),
  46804. name: "Front",
  46805. image: {
  46806. source: "./media/characters/persephone/front.svg",
  46807. extra: 1895/1717,
  46808. bottom: 96/1991
  46809. }
  46810. },
  46811. back: {
  46812. height: math.unit(6, "feet"),
  46813. name: "Back",
  46814. image: {
  46815. source: "./media/characters/persephone/back.svg",
  46816. extra: 1868/1679,
  46817. bottom: 26/1894
  46818. }
  46819. },
  46820. casual: {
  46821. height: math.unit(6, "feet"),
  46822. name: "Casual",
  46823. image: {
  46824. source: "./media/characters/persephone/casual.svg",
  46825. extra: 1713/1541,
  46826. bottom: 76/1789
  46827. }
  46828. },
  46829. gaming: {
  46830. height: math.unit(3.55, "feet"),
  46831. name: "Gaming",
  46832. image: {
  46833. source: "./media/characters/persephone/gaming.svg",
  46834. extra: 1242/1038,
  46835. bottom: 66/1308
  46836. }
  46837. },
  46838. head: {
  46839. height: math.unit(2.15, "feet"),
  46840. name: "😐",
  46841. image: {
  46842. source: "./media/characters/persephone/head.svg"
  46843. }
  46844. },
  46845. talking: {
  46846. height: math.unit(2.5, "feet"),
  46847. name: "💬",
  46848. image: {
  46849. source: "./media/characters/persephone/talking.svg"
  46850. }
  46851. },
  46852. hmm: {
  46853. height: math.unit(2.28, "feet"),
  46854. name: "🤨",
  46855. image: {
  46856. source: "./media/characters/persephone/hmm.svg"
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Human Size",
  46863. height: math.unit(6, "feet")
  46864. },
  46865. {
  46866. name: "Big Steppy",
  46867. height: math.unit(600, "meters"),
  46868. default: true
  46869. },
  46870. {
  46871. name: "Galaxy Brain",
  46872. height: math.unit(1, "zettameter")
  46873. },
  46874. ]
  46875. ))
  46876. characterMakers.push(() => makeCharacter(
  46877. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46878. {
  46879. front: {
  46880. height: math.unit(1.85, "meters"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/riley-foxthing/front.svg",
  46884. extra: 1495/1354,
  46885. bottom: 122/1617
  46886. }
  46887. },
  46888. frontAlt: {
  46889. height: math.unit(1.85, "meters"),
  46890. name: "Front (Alt)",
  46891. image: {
  46892. source: "./media/characters/riley-foxthing/front-alt.svg",
  46893. extra: 1572/1389,
  46894. bottom: 116/1688
  46895. }
  46896. },
  46897. },
  46898. [
  46899. {
  46900. name: "Normal Sized",
  46901. height: math.unit(1.85, "meters"),
  46902. default: true
  46903. },
  46904. {
  46905. name: "Quite Sizable",
  46906. height: math.unit(5, "meters")
  46907. },
  46908. {
  46909. name: "Rather Large",
  46910. height: math.unit(20, "meters")
  46911. },
  46912. {
  46913. name: "Macro",
  46914. height: math.unit(450, "meters")
  46915. },
  46916. {
  46917. name: "Giga",
  46918. height: math.unit(5, "km")
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46924. {
  46925. front: {
  46926. height: math.unit(6, "feet"),
  46927. weight: math.unit(200, "lb"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/blizzard/front.svg",
  46931. extra: 1136/990,
  46932. bottom: 136/1272
  46933. }
  46934. },
  46935. back: {
  46936. height: math.unit(6, "feet"),
  46937. weight: math.unit(200, "lb"),
  46938. name: "Back",
  46939. image: {
  46940. source: "./media/characters/blizzard/back.svg",
  46941. extra: 1175/1034,
  46942. bottom: 97/1272
  46943. }
  46944. },
  46945. sitting: {
  46946. height: math.unit(3.725, "feet"),
  46947. weight: math.unit(200, "lb"),
  46948. name: "Sitting",
  46949. image: {
  46950. source: "./media/characters/blizzard/sitting.svg",
  46951. extra: 581/485,
  46952. bottom: 90/671
  46953. }
  46954. },
  46955. frontWizard: {
  46956. height: math.unit(7.9, "feet"),
  46957. weight: math.unit(200, "lb"),
  46958. name: "Front (Wizard)",
  46959. image: {
  46960. source: "./media/characters/blizzard/front-wizard.svg"
  46961. }
  46962. },
  46963. backWizard: {
  46964. height: math.unit(7.9, "feet"),
  46965. weight: math.unit(200, "lb"),
  46966. name: "Back (Wizard)",
  46967. image: {
  46968. source: "./media/characters/blizzard/back-wizard.svg"
  46969. }
  46970. },
  46971. frontNsfw: {
  46972. height: math.unit(6, "feet"),
  46973. weight: math.unit(200, "lb"),
  46974. name: "Front (NSFW)",
  46975. image: {
  46976. source: "./media/characters/blizzard/front-nsfw.svg",
  46977. extra: 1136/990,
  46978. bottom: 136/1272
  46979. }
  46980. },
  46981. backNsfw: {
  46982. height: math.unit(6, "feet"),
  46983. weight: math.unit(200, "lb"),
  46984. name: "Back (NSFW)",
  46985. image: {
  46986. source: "./media/characters/blizzard/back-nsfw.svg",
  46987. extra: 1175/1034,
  46988. bottom: 97/1272
  46989. }
  46990. },
  46991. sittingNsfw: {
  46992. height: math.unit(3.725, "feet"),
  46993. weight: math.unit(200, "lb"),
  46994. name: "Sitting (NSFW)",
  46995. image: {
  46996. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46997. extra: 581/485,
  46998. bottom: 90/671
  46999. }
  47000. },
  47001. wizardFrontNsfw: {
  47002. height: math.unit(7.9, "feet"),
  47003. weight: math.unit(200, "lb"),
  47004. name: "Wizard (Front, NSFW)",
  47005. image: {
  47006. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Normal",
  47013. height: math.unit(6, "feet"),
  47014. default: true
  47015. },
  47016. ]
  47017. ))
  47018. characterMakers.push(() => makeCharacter(
  47019. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  47020. {
  47021. front: {
  47022. height: math.unit(5 + 2/12, "feet"),
  47023. name: "Front",
  47024. image: {
  47025. source: "./media/characters/lumi/front.svg",
  47026. extra: 1328/1268,
  47027. bottom: 103/1431
  47028. }
  47029. },
  47030. back: {
  47031. height: math.unit(5 + 2/12, "feet"),
  47032. name: "Back",
  47033. image: {
  47034. source: "./media/characters/lumi/back.svg",
  47035. extra: 1381/1327,
  47036. bottom: 43/1424
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(5 + 2/12, "feet"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. characterMakers.push(() => makeCharacter(
  47049. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  47050. {
  47051. front: {
  47052. height: math.unit(5 + 9/12, "feet"),
  47053. name: "Front",
  47054. image: {
  47055. source: "./media/characters/aliya-cotton/front.svg",
  47056. extra: 577/564,
  47057. bottom: 29/606
  47058. }
  47059. },
  47060. },
  47061. [
  47062. {
  47063. name: "Normal",
  47064. height: math.unit(5 + 9/12, "feet"),
  47065. default: true
  47066. },
  47067. ]
  47068. ))
  47069. characterMakers.push(() => makeCharacter(
  47070. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  47071. {
  47072. front: {
  47073. height: math.unit(2.7, "meters"),
  47074. weight: math.unit(25000, "lb"),
  47075. name: "Front",
  47076. image: {
  47077. source: "./media/characters/noah-luxray/front.svg",
  47078. extra: 1644/825,
  47079. bottom: 339/1983
  47080. }
  47081. },
  47082. side: {
  47083. height: math.unit(2.97, "meters"),
  47084. weight: math.unit(25000, "lb"),
  47085. name: "Side",
  47086. image: {
  47087. source: "./media/characters/noah-luxray/side.svg",
  47088. extra: 1319/650,
  47089. bottom: 163/1482
  47090. }
  47091. },
  47092. dick: {
  47093. height: math.unit(7.4, "feet"),
  47094. weight: math.unit(2500, "lb"),
  47095. name: "Dick",
  47096. image: {
  47097. source: "./media/characters/noah-luxray/dick.svg"
  47098. }
  47099. },
  47100. dickAlt: {
  47101. height: math.unit(10.83, "feet"),
  47102. weight: math.unit(2500, "lb"),
  47103. name: "Dick (Alt)",
  47104. image: {
  47105. source: "./media/characters/noah-luxray/dick-alt.svg"
  47106. }
  47107. },
  47108. },
  47109. [
  47110. {
  47111. name: "BIG",
  47112. height: math.unit(2.7, "meters"),
  47113. default: true
  47114. },
  47115. ]
  47116. ))
  47117. characterMakers.push(() => makeCharacter(
  47118. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47119. {
  47120. standing: {
  47121. height: math.unit(183, "cm"),
  47122. weight: math.unit(68, "kg"),
  47123. name: "Standing",
  47124. image: {
  47125. source: "./media/characters/arion/standing.svg",
  47126. extra: 1869/1807,
  47127. bottom: 93/1962
  47128. }
  47129. },
  47130. reclining: {
  47131. height: math.unit(70.5, "cm"),
  47132. weight: math.unit(68, "lb"),
  47133. name: "Reclining",
  47134. image: {
  47135. source: "./media/characters/arion/reclining.svg",
  47136. extra: 937/870,
  47137. bottom: 63/1000
  47138. }
  47139. },
  47140. },
  47141. [
  47142. {
  47143. name: "Colossus Size, Low",
  47144. height: math.unit(33, "meters"),
  47145. default: true
  47146. },
  47147. {
  47148. name: "Colossus Size, Mid",
  47149. height: math.unit(52, "meters")
  47150. },
  47151. {
  47152. name: "Colossus Size, High",
  47153. height: math.unit(60, "meters")
  47154. },
  47155. {
  47156. name: "Titan Size, Low",
  47157. height: math.unit(91, "meters"),
  47158. },
  47159. {
  47160. name: "Titan Size, Mid",
  47161. height: math.unit(122, "meters")
  47162. },
  47163. {
  47164. name: "Titan Size, High",
  47165. height: math.unit(162, "meters")
  47166. },
  47167. ]
  47168. ))
  47169. characterMakers.push(() => makeCharacter(
  47170. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47171. {
  47172. front: {
  47173. height: math.unit(53, "meters"),
  47174. name: "Front",
  47175. image: {
  47176. source: "./media/characters/stellar-marbey/front.svg",
  47177. extra: 1913/1805,
  47178. bottom: 92/2005
  47179. }
  47180. },
  47181. back: {
  47182. height: math.unit(53, "meters"),
  47183. name: "Back",
  47184. image: {
  47185. source: "./media/characters/stellar-marbey/back.svg",
  47186. extra: 1960/1851,
  47187. bottom: 28/1988
  47188. }
  47189. },
  47190. mouth: {
  47191. height: math.unit(3.5, "meters"),
  47192. name: "Mouth",
  47193. image: {
  47194. source: "./media/characters/stellar-marbey/mouth.svg"
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Macro",
  47201. height: math.unit(53, "meters"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(8 + 1/12, "feet"),
  47211. weight: math.unit(233, "lb"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/matsu/front.svg",
  47215. extra: 832/772,
  47216. bottom: 40/872
  47217. }
  47218. },
  47219. back: {
  47220. height: math.unit(8 + 1/12, "feet"),
  47221. weight: math.unit(233, "lb"),
  47222. name: "Back",
  47223. image: {
  47224. source: "./media/characters/matsu/back.svg",
  47225. extra: 839/780,
  47226. bottom: 47/886
  47227. }
  47228. },
  47229. },
  47230. [
  47231. {
  47232. name: "Normal",
  47233. height: math.unit(8 + 1/12, "feet"),
  47234. default: true
  47235. },
  47236. ]
  47237. ))
  47238. characterMakers.push(() => makeCharacter(
  47239. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47240. {
  47241. front: {
  47242. height: math.unit(4, "feet"),
  47243. weight: math.unit(148, "lb"),
  47244. name: "Front",
  47245. image: {
  47246. source: "./media/characters/thiz/front.svg",
  47247. extra: 1913/1748,
  47248. bottom: 62/1975
  47249. }
  47250. },
  47251. },
  47252. [
  47253. {
  47254. name: "Normal",
  47255. height: math.unit(4, "feet"),
  47256. default: true
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47262. {
  47263. front: {
  47264. height: math.unit(7 + 6/12, "feet"),
  47265. weight: math.unit(267, "lb"),
  47266. name: "Front",
  47267. image: {
  47268. source: "./media/characters/marcel/front.svg",
  47269. extra: 1221/1096,
  47270. bottom: 76/1297
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Normal",
  47277. height: math.unit(7 + 6/12, "feet"),
  47278. default: true
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47284. {
  47285. side: {
  47286. height: math.unit(42, "meters"),
  47287. name: "Side",
  47288. image: {
  47289. source: "./media/characters/flake/side.svg",
  47290. extra: 1525/1306,
  47291. bottom: 209/1734
  47292. }
  47293. },
  47294. },
  47295. [
  47296. {
  47297. name: "Normal",
  47298. height: math.unit(42, "meters"),
  47299. default: true
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47305. {
  47306. dressed: {
  47307. height: math.unit(6 + 4/12, "feet"),
  47308. weight: math.unit(520, "lb"),
  47309. name: "Dressed",
  47310. image: {
  47311. source: "./media/characters/someonne/dressed.svg",
  47312. extra: 1020/1010,
  47313. bottom: 178/1198
  47314. }
  47315. },
  47316. undressed: {
  47317. height: math.unit(6 + 4/12, "feet"),
  47318. weight: math.unit(520, "lb"),
  47319. name: "Undressed",
  47320. image: {
  47321. source: "./media/characters/someonne/undressed.svg",
  47322. extra: 1019/1014,
  47323. bottom: 169/1188
  47324. }
  47325. },
  47326. },
  47327. [
  47328. {
  47329. name: "Normal",
  47330. height: math.unit(6 + 4/12, "feet"),
  47331. default: true
  47332. },
  47333. ]
  47334. ))
  47335. characterMakers.push(() => makeCharacter(
  47336. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47337. {
  47338. front: {
  47339. height: math.unit(3, "feet"),
  47340. weight: math.unit(30, "lb"),
  47341. name: "Front",
  47342. image: {
  47343. source: "./media/characters/till/front.svg",
  47344. extra: 892/823,
  47345. bottom: 55/947
  47346. }
  47347. },
  47348. },
  47349. [
  47350. {
  47351. name: "Normal",
  47352. height: math.unit(3, "feet"),
  47353. default: true
  47354. },
  47355. ]
  47356. ))
  47357. characterMakers.push(() => makeCharacter(
  47358. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47359. {
  47360. front: {
  47361. height: math.unit(9 + 8/12, "feet"),
  47362. weight: math.unit(800, "lb"),
  47363. name: "Front",
  47364. image: {
  47365. source: "./media/characters/sydney-heki/front.svg",
  47366. extra: 1360/1300,
  47367. bottom: 22/1382
  47368. }
  47369. },
  47370. back: {
  47371. height: math.unit(9 + 8/12, "feet"),
  47372. weight: math.unit(800, "lb"),
  47373. name: "Back",
  47374. image: {
  47375. source: "./media/characters/sydney-heki/back.svg",
  47376. extra: 1356/1293,
  47377. bottom: 12/1368
  47378. }
  47379. },
  47380. frontDressed: {
  47381. height: math.unit(9 + 8/12, "feet"),
  47382. weight: math.unit(800, "lb"),
  47383. name: "Front (Dressed)",
  47384. image: {
  47385. source: "./media/characters/sydney-heki/front-dressed.svg",
  47386. extra: 1360/1300,
  47387. bottom: 22/1382
  47388. }
  47389. },
  47390. },
  47391. [
  47392. {
  47393. name: "Normal",
  47394. height: math.unit(9 + 8/12, "feet"),
  47395. default: true
  47396. },
  47397. {
  47398. name: "Macro",
  47399. height: math.unit(500, "feet")
  47400. },
  47401. {
  47402. name: "Megamacro",
  47403. height: math.unit(3.6, "miles")
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47409. {
  47410. front: {
  47411. height: math.unit(200, "cm"),
  47412. weight: math.unit(250, "lb"),
  47413. name: "Front",
  47414. image: {
  47415. source: "./media/characters/fowler-karlsson/front.svg",
  47416. extra: 897/845,
  47417. bottom: 123/1020
  47418. }
  47419. },
  47420. back: {
  47421. height: math.unit(200, "cm"),
  47422. weight: math.unit(250, "lb"),
  47423. name: "Back",
  47424. image: {
  47425. source: "./media/characters/fowler-karlsson/back.svg",
  47426. extra: 999/944,
  47427. bottom: 26/1025
  47428. }
  47429. },
  47430. dick: {
  47431. height: math.unit(1.92, "feet"),
  47432. weight: math.unit(150, "lb"),
  47433. name: "Dick",
  47434. image: {
  47435. source: "./media/characters/fowler-karlsson/dick.svg"
  47436. }
  47437. },
  47438. },
  47439. [
  47440. {
  47441. name: "Normal",
  47442. height: math.unit(200, "cm"),
  47443. default: true
  47444. },
  47445. {
  47446. name: "Smaller Macro",
  47447. height: math.unit(90, "m")
  47448. },
  47449. {
  47450. name: "Macro",
  47451. height: math.unit(150, "m")
  47452. },
  47453. {
  47454. name: "Bigger Macro",
  47455. height: math.unit(300, "m")
  47456. },
  47457. ]
  47458. ))
  47459. characterMakers.push(() => makeCharacter(
  47460. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47461. {
  47462. side: {
  47463. height: math.unit(8 + 2/12, "feet"),
  47464. weight: math.unit(1, "tonne"),
  47465. name: "Side",
  47466. image: {
  47467. source: "./media/characters/rylide/side.svg",
  47468. extra: 1318/1034,
  47469. bottom: 106/1424
  47470. }
  47471. },
  47472. sitting: {
  47473. height: math.unit(303, "cm"),
  47474. weight: math.unit(1, "tonne"),
  47475. name: "Sitting",
  47476. image: {
  47477. source: "./media/characters/rylide/sitting.svg",
  47478. extra: 1303/1103,
  47479. bottom: 36/1339
  47480. }
  47481. },
  47482. },
  47483. [
  47484. {
  47485. name: "Normal",
  47486. height: math.unit(8 + 2/12, "feet"),
  47487. default: true
  47488. },
  47489. ]
  47490. ))
  47491. characterMakers.push(() => makeCharacter(
  47492. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47493. {
  47494. front: {
  47495. height: math.unit(5 + 10/12, "feet"),
  47496. weight: math.unit(160, "lb"),
  47497. name: "Front",
  47498. image: {
  47499. source: "./media/characters/pudask/front.svg",
  47500. extra: 1616/1590,
  47501. bottom: 161/1777
  47502. }
  47503. },
  47504. },
  47505. [
  47506. {
  47507. name: "Ferret Height",
  47508. height: math.unit(2 + 5/12, "feet")
  47509. },
  47510. {
  47511. name: "Canon Height",
  47512. height: math.unit(5 + 10/12, "feet"),
  47513. default: true
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47519. {
  47520. front: {
  47521. height: math.unit(3 + 6/12, "feet"),
  47522. weight: math.unit(60, "lb"),
  47523. name: "Front",
  47524. image: {
  47525. source: "./media/characters/ramita/front.svg",
  47526. extra: 1402/1232,
  47527. bottom: 62/1464
  47528. }
  47529. },
  47530. dressed: {
  47531. height: math.unit(3 + 6/12, "feet"),
  47532. weight: math.unit(60, "lb"),
  47533. name: "Dressed",
  47534. image: {
  47535. source: "./media/characters/ramita/dressed.svg",
  47536. extra: 1534/1249,
  47537. bottom: 50/1584
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(3 + 6/12, "feet"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47551. {
  47552. front: {
  47553. height: math.unit(8, "feet"),
  47554. name: "Front",
  47555. image: {
  47556. source: "./media/characters/ark/front.svg",
  47557. extra: 772/693,
  47558. bottom: 45/817
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(8, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47572. {
  47573. front: {
  47574. height: math.unit(6, "feet"),
  47575. weight: math.unit(250, "lb"),
  47576. volume: math.unit(5/8, "gallons"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/ludwig-horn/front.svg",
  47580. extra: 1782/1635,
  47581. bottom: 96/1878
  47582. }
  47583. },
  47584. back: {
  47585. height: math.unit(6, "feet"),
  47586. weight: math.unit(250, "lb"),
  47587. volume: math.unit(5/8, "gallons"),
  47588. name: "Back",
  47589. image: {
  47590. source: "./media/characters/ludwig-horn/back.svg",
  47591. extra: 1874/1729,
  47592. bottom: 27/1901
  47593. }
  47594. },
  47595. dick: {
  47596. height: math.unit(1.05, "feet"),
  47597. weight: math.unit(15, "lb"),
  47598. volume: math.unit(5/8, "gallons"),
  47599. name: "Dick",
  47600. image: {
  47601. source: "./media/characters/ludwig-horn/dick.svg"
  47602. }
  47603. },
  47604. },
  47605. [
  47606. {
  47607. name: "Small",
  47608. height: math.unit(6, "feet")
  47609. },
  47610. {
  47611. name: "Typical",
  47612. height: math.unit(12, "feet"),
  47613. default: true
  47614. },
  47615. {
  47616. name: "Building",
  47617. height: math.unit(80, "feet")
  47618. },
  47619. {
  47620. name: "Town",
  47621. height: math.unit(800, "feet")
  47622. },
  47623. {
  47624. name: "Kingdom",
  47625. height: math.unit(80000, "feet")
  47626. },
  47627. {
  47628. name: "Planet",
  47629. height: math.unit(8000000, "feet")
  47630. },
  47631. {
  47632. name: "Universe",
  47633. height: math.unit(8000000000, "feet")
  47634. },
  47635. {
  47636. name: "Transcended",
  47637. height: math.unit(8e27, "feet")
  47638. },
  47639. ]
  47640. ))
  47641. characterMakers.push(() => makeCharacter(
  47642. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47643. {
  47644. front: {
  47645. height: math.unit(5, "feet"),
  47646. weight: math.unit(50, "kg"),
  47647. name: "Front",
  47648. image: {
  47649. source: "./media/characters/biot-avery/front.svg",
  47650. extra: 1295/1232,
  47651. bottom: 86/1381
  47652. }
  47653. },
  47654. },
  47655. [
  47656. {
  47657. name: "Normal",
  47658. height: math.unit(5, "feet"),
  47659. default: true
  47660. },
  47661. ]
  47662. ))
  47663. characterMakers.push(() => makeCharacter(
  47664. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47665. {
  47666. front: {
  47667. height: math.unit(6, "feet"),
  47668. name: "Front",
  47669. image: {
  47670. source: "./media/characters/kitsune-kiro/front.svg",
  47671. extra: 1270/1158,
  47672. bottom: 42/1312
  47673. }
  47674. },
  47675. frontAlt: {
  47676. height: math.unit(6, "feet"),
  47677. name: "Front (Alt)",
  47678. image: {
  47679. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47680. extra: 1130/1081,
  47681. bottom: 36/1166
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Smol",
  47688. height: math.unit(3, "feet")
  47689. },
  47690. {
  47691. name: "Normal",
  47692. height: math.unit(6, "feet"),
  47693. default: true
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(6, "feet"),
  47702. weight: math.unit(125, "lb"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/jack-thatcher/front.svg",
  47706. extra: 1474/1370,
  47707. bottom: 26/1500
  47708. }
  47709. },
  47710. back: {
  47711. height: math.unit(6, "feet"),
  47712. weight: math.unit(125, "lb"),
  47713. name: "Back",
  47714. image: {
  47715. source: "./media/characters/jack-thatcher/back.svg",
  47716. extra: 1489/1384,
  47717. bottom: 18/1507
  47718. }
  47719. },
  47720. },
  47721. [
  47722. {
  47723. name: "Normal",
  47724. height: math.unit(6, "feet"),
  47725. default: true
  47726. },
  47727. {
  47728. name: "Macro",
  47729. height: math.unit(75, "feet")
  47730. },
  47731. {
  47732. name: "Macro-er",
  47733. height: math.unit(250, "feet")
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47739. {
  47740. front: {
  47741. height: math.unit(7, "feet"),
  47742. weight: math.unit(110, "kg"),
  47743. name: "Front",
  47744. image: {
  47745. source: "./media/characters/max-hyper/front.svg",
  47746. extra: 1969/1881,
  47747. bottom: 49/2018
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Normal",
  47754. height: math.unit(7, "feet"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47761. {
  47762. front: {
  47763. height: math.unit(5 + 5/12, "feet"),
  47764. weight: math.unit(160, "lb"),
  47765. name: "Front",
  47766. image: {
  47767. source: "./media/characters/spook/front.svg",
  47768. extra: 794/791,
  47769. bottom: 54/848
  47770. }
  47771. },
  47772. back: {
  47773. height: math.unit(5 + 5/12, "feet"),
  47774. weight: math.unit(160, "lb"),
  47775. name: "Back",
  47776. image: {
  47777. source: "./media/characters/spook/back.svg",
  47778. extra: 812/798,
  47779. bottom: 32/844
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(5 + 5/12, "feet"),
  47787. default: true
  47788. },
  47789. ]
  47790. ))
  47791. characterMakers.push(() => makeCharacter(
  47792. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47793. {
  47794. front: {
  47795. height: math.unit(18, "feet"),
  47796. name: "Front",
  47797. image: {
  47798. source: "./media/characters/xeaduulix/front.svg",
  47799. extra: 1380/1166,
  47800. bottom: 110/1490
  47801. }
  47802. },
  47803. back: {
  47804. height: math.unit(18, "feet"),
  47805. name: "Back",
  47806. image: {
  47807. source: "./media/characters/xeaduulix/back.svg",
  47808. extra: 1592/1170,
  47809. bottom: 128/1720
  47810. }
  47811. },
  47812. frontNsfw: {
  47813. height: math.unit(18, "feet"),
  47814. name: "Front (NSFW)",
  47815. image: {
  47816. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47817. extra: 1380/1166,
  47818. bottom: 110/1490
  47819. }
  47820. },
  47821. backNsfw: {
  47822. height: math.unit(18, "feet"),
  47823. name: "Back (NSFW)",
  47824. image: {
  47825. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47826. extra: 1592/1170,
  47827. bottom: 128/1720
  47828. }
  47829. },
  47830. },
  47831. [
  47832. {
  47833. name: "Normal",
  47834. height: math.unit(18, "feet"),
  47835. default: true
  47836. },
  47837. ]
  47838. ))
  47839. characterMakers.push(() => makeCharacter(
  47840. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47841. {
  47842. spreadWings: {
  47843. height: math.unit(20, "feet"),
  47844. name: "Spread Wings",
  47845. image: {
  47846. source: "./media/characters/fledge/spread-wings.svg",
  47847. extra: 693/635,
  47848. bottom: 26/719
  47849. }
  47850. },
  47851. front: {
  47852. height: math.unit(20, "feet"),
  47853. name: "Front",
  47854. image: {
  47855. source: "./media/characters/fledge/front.svg",
  47856. extra: 684/637,
  47857. bottom: 18/702
  47858. }
  47859. },
  47860. frontAlt: {
  47861. height: math.unit(20, "feet"),
  47862. name: "Front (Alt)",
  47863. image: {
  47864. source: "./media/characters/fledge/front-alt.svg",
  47865. extra: 708/664,
  47866. bottom: 13/721
  47867. }
  47868. },
  47869. back: {
  47870. height: math.unit(20, "feet"),
  47871. name: "Back",
  47872. image: {
  47873. source: "./media/characters/fledge/back.svg",
  47874. extra: 718/634,
  47875. bottom: 22/740
  47876. }
  47877. },
  47878. head: {
  47879. height: math.unit(5.55, "feet"),
  47880. name: "Head",
  47881. image: {
  47882. source: "./media/characters/fledge/head.svg"
  47883. }
  47884. },
  47885. headAlt: {
  47886. height: math.unit(5.1, "feet"),
  47887. name: "Head (Alt)",
  47888. image: {
  47889. source: "./media/characters/fledge/head-alt.svg"
  47890. }
  47891. },
  47892. },
  47893. [
  47894. {
  47895. name: "Small",
  47896. height: math.unit(6 + 2/12, "feet")
  47897. },
  47898. {
  47899. name: "Big",
  47900. height: math.unit(20, "feet"),
  47901. default: true
  47902. },
  47903. {
  47904. name: "Giant",
  47905. height: math.unit(100, "feet")
  47906. },
  47907. {
  47908. name: "Macro",
  47909. height: math.unit(200, "feet")
  47910. },
  47911. ]
  47912. ))
  47913. characterMakers.push(() => makeCharacter(
  47914. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47915. {
  47916. front: {
  47917. height: math.unit(1, "meter"),
  47918. name: "Front",
  47919. image: {
  47920. source: "./media/characters/atlas-morenai/front.svg",
  47921. extra: 1275/1043,
  47922. bottom: 19/1294
  47923. }
  47924. },
  47925. back: {
  47926. height: math.unit(1, "meter"),
  47927. name: "Back",
  47928. image: {
  47929. source: "./media/characters/atlas-morenai/back.svg",
  47930. extra: 1141/1001,
  47931. bottom: 25/1166
  47932. }
  47933. },
  47934. },
  47935. [
  47936. {
  47937. name: "Normal",
  47938. height: math.unit(1, "meter"),
  47939. default: true
  47940. },
  47941. {
  47942. name: "Magic-Infused",
  47943. height: math.unit(5, "meters")
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47949. {
  47950. front: {
  47951. height: math.unit(5, "meters"),
  47952. name: "Front",
  47953. image: {
  47954. source: "./media/characters/cintia/front.svg",
  47955. extra: 1312/1228,
  47956. bottom: 38/1350
  47957. }
  47958. },
  47959. back: {
  47960. height: math.unit(5, "meters"),
  47961. name: "Back",
  47962. image: {
  47963. source: "./media/characters/cintia/back.svg",
  47964. extra: 1260/1166,
  47965. bottom: 98/1358
  47966. }
  47967. },
  47968. frontDick: {
  47969. height: math.unit(5, "meters"),
  47970. name: "Front (Dick)",
  47971. image: {
  47972. source: "./media/characters/cintia/front-dick.svg",
  47973. extra: 1312/1228,
  47974. bottom: 38/1350
  47975. }
  47976. },
  47977. backDick: {
  47978. height: math.unit(5, "meters"),
  47979. name: "Back (Dick)",
  47980. image: {
  47981. source: "./media/characters/cintia/back-dick.svg",
  47982. extra: 1260/1166,
  47983. bottom: 98/1358
  47984. }
  47985. },
  47986. bust: {
  47987. height: math.unit(1.97, "meters"),
  47988. name: "Bust",
  47989. image: {
  47990. source: "./media/characters/cintia/bust.svg",
  47991. extra: 617/565,
  47992. bottom: 0/617
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(5, "meters"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  48006. {
  48007. side: {
  48008. height: math.unit(100, "feet"),
  48009. name: "Side",
  48010. image: {
  48011. source: "./media/characters/denora/side.svg",
  48012. extra: 875/803,
  48013. bottom: 9/884
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Standard",
  48020. height: math.unit(100, "feet"),
  48021. default: true
  48022. },
  48023. {
  48024. name: "Grand",
  48025. height: math.unit(1000, "feet")
  48026. },
  48027. {
  48028. name: "Conquering",
  48029. height: math.unit(10000, "feet")
  48030. },
  48031. ]
  48032. ))
  48033. characterMakers.push(() => makeCharacter(
  48034. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  48035. {
  48036. front: {
  48037. height: math.unit(8 + 5/12, "feet"),
  48038. weight: math.unit(700, "lb"),
  48039. name: "Front",
  48040. image: {
  48041. source: "./media/characters/kiva/front.svg",
  48042. extra: 419/406,
  48043. bottom: 30/449
  48044. }
  48045. },
  48046. sideDressed: {
  48047. height: math.unit(8 + 5/12, "feet"),
  48048. weight: math.unit(700, "lb"),
  48049. name: "Side (Dressed)",
  48050. image: {
  48051. source: "./media/characters/kiva/side-dressed.svg",
  48052. extra: 1102/1055,
  48053. bottom: 60/1162
  48054. }
  48055. },
  48056. sideNude: {
  48057. height: math.unit(8 + 5/12, "feet"),
  48058. weight: math.unit(700, "lb"),
  48059. name: "Side (Nude)",
  48060. image: {
  48061. source: "./media/characters/kiva/side-nude.svg",
  48062. extra: 1102/1055,
  48063. bottom: 60/1162
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Base Height",
  48070. height: math.unit(8 + 5/12, "feet"),
  48071. default: true
  48072. },
  48073. {
  48074. name: "Macro",
  48075. height: math.unit(100, "feet")
  48076. },
  48077. {
  48078. name: "Max",
  48079. height: math.unit(3280, "feet")
  48080. },
  48081. ]
  48082. ))
  48083. characterMakers.push(() => makeCharacter(
  48084. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  48085. {
  48086. front: {
  48087. height: math.unit(6 + 8/12, "feet"),
  48088. weight: math.unit(250, "lb"),
  48089. name: "Front",
  48090. image: {
  48091. source: "./media/characters/ztragon/front.svg",
  48092. extra: 1825/1684,
  48093. bottom: 98/1923
  48094. }
  48095. },
  48096. },
  48097. [
  48098. {
  48099. name: "Normal",
  48100. height: math.unit(6 + 8/12, "feet"),
  48101. default: true
  48102. },
  48103. {
  48104. name: "Macro",
  48105. height: math.unit(80, "feet")
  48106. },
  48107. ]
  48108. ))
  48109. characterMakers.push(() => makeCharacter(
  48110. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48111. {
  48112. front: {
  48113. height: math.unit(10.4, "feet"),
  48114. weight: math.unit(2, "tons"),
  48115. name: "Front",
  48116. image: {
  48117. source: "./media/characters/yesenia/front.svg",
  48118. extra: 1479/1474,
  48119. bottom: 233/1712
  48120. }
  48121. },
  48122. },
  48123. [
  48124. {
  48125. name: "Normal",
  48126. height: math.unit(10.4, "feet"),
  48127. default: true
  48128. },
  48129. ]
  48130. ))
  48131. characterMakers.push(() => makeCharacter(
  48132. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48133. {
  48134. normal: {
  48135. height: math.unit(6 + 1/12, "feet"),
  48136. weight: math.unit(180, "lb"),
  48137. name: "Normal",
  48138. image: {
  48139. source: "./media/characters/leanne-lycheborne/normal.svg",
  48140. extra: 1748/1660,
  48141. bottom: 98/1846
  48142. }
  48143. },
  48144. were: {
  48145. height: math.unit(12, "feet"),
  48146. weight: math.unit(1600, "lb"),
  48147. name: "Were",
  48148. image: {
  48149. source: "./media/characters/leanne-lycheborne/were.svg",
  48150. extra: 1485/1432,
  48151. bottom: 66/1551
  48152. }
  48153. },
  48154. },
  48155. [
  48156. {
  48157. name: "Normal",
  48158. height: math.unit(6 + 1/12, "feet"),
  48159. default: true
  48160. },
  48161. ]
  48162. ))
  48163. characterMakers.push(() => makeCharacter(
  48164. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48165. {
  48166. side: {
  48167. height: math.unit(13, "feet"),
  48168. name: "Side",
  48169. image: {
  48170. source: "./media/characters/kira-tyler/side.svg",
  48171. extra: 693/393,
  48172. bottom: 58/751
  48173. }
  48174. },
  48175. },
  48176. [
  48177. {
  48178. name: "Normal",
  48179. height: math.unit(13, "feet"),
  48180. default: true
  48181. },
  48182. ]
  48183. ))
  48184. characterMakers.push(() => makeCharacter(
  48185. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48186. {
  48187. front: {
  48188. height: math.unit(10.3, "feet"),
  48189. weight: math.unit(150, "lb"),
  48190. name: "Front",
  48191. image: {
  48192. source: "./media/characters/blaze/front.svg",
  48193. extra: 1378/1286,
  48194. bottom: 172/1550
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(10.3, "feet"),
  48202. default: true
  48203. },
  48204. ]
  48205. ))
  48206. characterMakers.push(() => makeCharacter(
  48207. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48208. {
  48209. side: {
  48210. height: math.unit(2, "meters"),
  48211. weight: math.unit(400, "kg"),
  48212. name: "Side",
  48213. image: {
  48214. source: "./media/characters/anu/side.svg",
  48215. extra: 506/394,
  48216. bottom: 18/524
  48217. }
  48218. },
  48219. },
  48220. [
  48221. {
  48222. name: "Humanoid",
  48223. height: math.unit(2, "meters")
  48224. },
  48225. {
  48226. name: "Normal",
  48227. height: math.unit(5, "meters"),
  48228. default: true
  48229. },
  48230. ]
  48231. ))
  48232. characterMakers.push(() => makeCharacter(
  48233. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48234. {
  48235. front: {
  48236. height: math.unit(5 + 5/12, "feet"),
  48237. weight: math.unit(170, "lb"),
  48238. name: "Front",
  48239. image: {
  48240. source: "./media/characters/synx-the-lynx/front.svg",
  48241. extra: 1893/1745,
  48242. bottom: 17/1910
  48243. }
  48244. },
  48245. side: {
  48246. height: math.unit(5 + 5/12, "feet"),
  48247. weight: math.unit(170, "lb"),
  48248. name: "Side",
  48249. image: {
  48250. source: "./media/characters/synx-the-lynx/side.svg",
  48251. extra: 1884/1740,
  48252. bottom: 39/1923
  48253. }
  48254. },
  48255. back: {
  48256. height: math.unit(5 + 5/12, "feet"),
  48257. weight: math.unit(170, "lb"),
  48258. name: "Back",
  48259. image: {
  48260. source: "./media/characters/synx-the-lynx/back.svg",
  48261. extra: 1903/1755,
  48262. bottom: 14/1917
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Normal",
  48269. height: math.unit(5 + 5/12, "feet"),
  48270. default: true
  48271. },
  48272. ]
  48273. ))
  48274. characterMakers.push(() => makeCharacter(
  48275. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48276. {
  48277. back: {
  48278. height: math.unit(15, "feet"),
  48279. name: "Back",
  48280. image: {
  48281. source: "./media/characters/nadezda-fex/back.svg",
  48282. extra: 1695/1481,
  48283. bottom: 25/1720
  48284. }
  48285. },
  48286. },
  48287. [
  48288. {
  48289. name: "Normal",
  48290. height: math.unit(15, "feet"),
  48291. default: true
  48292. },
  48293. {
  48294. name: "Macro",
  48295. height: math.unit(2.5, "miles")
  48296. },
  48297. {
  48298. name: "Goddess",
  48299. height: math.unit(2, "multiverses")
  48300. },
  48301. ]
  48302. ))
  48303. characterMakers.push(() => makeCharacter(
  48304. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48305. {
  48306. front: {
  48307. height: math.unit(216, "cm"),
  48308. name: "Front",
  48309. image: {
  48310. source: "./media/characters/lev/front.svg",
  48311. extra: 1728/1670,
  48312. bottom: 82/1810
  48313. }
  48314. },
  48315. back: {
  48316. height: math.unit(216, "cm"),
  48317. name: "Back",
  48318. image: {
  48319. source: "./media/characters/lev/back.svg",
  48320. extra: 1738/1675,
  48321. bottom: 24/1762
  48322. }
  48323. },
  48324. dressed: {
  48325. height: math.unit(216, "cm"),
  48326. name: "Dressed",
  48327. image: {
  48328. source: "./media/characters/lev/dressed.svg",
  48329. extra: 1397/1351,
  48330. bottom: 73/1470
  48331. }
  48332. },
  48333. head: {
  48334. height: math.unit(0.51, "meter"),
  48335. name: "Head",
  48336. image: {
  48337. source: "./media/characters/lev/head.svg"
  48338. }
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(216, "cm"),
  48345. default: true
  48346. },
  48347. {
  48348. name: "Relatively Macro",
  48349. height: math.unit(80, "meters")
  48350. },
  48351. {
  48352. name: "Megamacro",
  48353. height: math.unit(21600, "meters")
  48354. },
  48355. {
  48356. name: "Megamacro+",
  48357. height: math.unit(64800, "meters")
  48358. },
  48359. ]
  48360. ))
  48361. characterMakers.push(() => makeCharacter(
  48362. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48363. {
  48364. front: {
  48365. height: math.unit(2, "meters"),
  48366. weight: math.unit(80, "kg"),
  48367. name: "Front",
  48368. image: {
  48369. source: "./media/characters/moka/front.svg",
  48370. extra: 1337/1255,
  48371. bottom: 58/1395
  48372. }
  48373. },
  48374. },
  48375. [
  48376. {
  48377. name: "Micro",
  48378. height: math.unit(15, "cm")
  48379. },
  48380. {
  48381. name: "Normal",
  48382. height: math.unit(2, "meters"),
  48383. default: true
  48384. },
  48385. {
  48386. name: "Macro",
  48387. height: math.unit(20, "meters"),
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(9, "feet"),
  48396. weight: math.unit(240, "lb"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/kuzco/front.svg",
  48400. extra: 1593/1487,
  48401. bottom: 32/1625
  48402. }
  48403. },
  48404. side: {
  48405. height: math.unit(9, "feet"),
  48406. weight: math.unit(240, "lb"),
  48407. name: "Side",
  48408. image: {
  48409. source: "./media/characters/kuzco/side.svg",
  48410. extra: 1575/1485,
  48411. bottom: 30/1605
  48412. }
  48413. },
  48414. back: {
  48415. height: math.unit(9, "feet"),
  48416. weight: math.unit(240, "lb"),
  48417. name: "Back",
  48418. image: {
  48419. source: "./media/characters/kuzco/back.svg",
  48420. extra: 1603/1514,
  48421. bottom: 14/1617
  48422. }
  48423. },
  48424. },
  48425. [
  48426. {
  48427. name: "Normal",
  48428. height: math.unit(9, "feet"),
  48429. default: true
  48430. },
  48431. ]
  48432. ))
  48433. characterMakers.push(() => makeCharacter(
  48434. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48435. {
  48436. side: {
  48437. height: math.unit(2, "meters"),
  48438. weight: math.unit(300, "kg"),
  48439. name: "Side",
  48440. image: {
  48441. source: "./media/characters/ceruleus/side.svg",
  48442. extra: 1068/974,
  48443. bottom: 126/1194
  48444. }
  48445. },
  48446. maw: {
  48447. height: math.unit(0.8125, "meter"),
  48448. name: "Maw",
  48449. image: {
  48450. source: "./media/characters/ceruleus/maw.svg"
  48451. }
  48452. },
  48453. },
  48454. [
  48455. {
  48456. name: "Normal",
  48457. height: math.unit(16, "meters"),
  48458. default: true
  48459. },
  48460. ]
  48461. ))
  48462. characterMakers.push(() => makeCharacter(
  48463. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48464. {
  48465. front: {
  48466. height: math.unit(9, "feet"),
  48467. weight: math.unit(500, "kg"),
  48468. name: "Front",
  48469. image: {
  48470. source: "./media/characters/acouya/front.svg",
  48471. extra: 1660/1473,
  48472. bottom: 28/1688
  48473. }
  48474. },
  48475. },
  48476. [
  48477. {
  48478. name: "Normal",
  48479. height: math.unit(9, "feet"),
  48480. default: true
  48481. },
  48482. ]
  48483. ))
  48484. characterMakers.push(() => makeCharacter(
  48485. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48486. {
  48487. front: {
  48488. height: math.unit(5 + 6/12, "feet"),
  48489. weight: math.unit(195, "lb"),
  48490. name: "Front",
  48491. image: {
  48492. source: "./media/characters/vant/front.svg",
  48493. extra: 1396/1320,
  48494. bottom: 20/1416
  48495. }
  48496. },
  48497. back: {
  48498. height: math.unit(5 + 6/12, "feet"),
  48499. weight: math.unit(195, "lb"),
  48500. name: "Back",
  48501. image: {
  48502. source: "./media/characters/vant/back.svg",
  48503. extra: 1396/1320,
  48504. bottom: 20/1416
  48505. }
  48506. },
  48507. maw: {
  48508. height: math.unit(0.75, "feet"),
  48509. name: "Maw",
  48510. image: {
  48511. source: "./media/characters/vant/maw.svg"
  48512. }
  48513. },
  48514. paw: {
  48515. height: math.unit(1.07, "feet"),
  48516. name: "Paw",
  48517. image: {
  48518. source: "./media/characters/vant/paw.svg"
  48519. }
  48520. },
  48521. },
  48522. [
  48523. {
  48524. name: "Micro",
  48525. height: math.unit(0.25, "inches")
  48526. },
  48527. {
  48528. name: "Normal",
  48529. height: math.unit(5 + 6/12, "feet"),
  48530. default: true
  48531. },
  48532. {
  48533. name: "Macro",
  48534. height: math.unit(75, "feet")
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(30, "meters"),
  48543. weight: math.unit(363, "tons"),
  48544. name: "Front",
  48545. image: {
  48546. source: "./media/characters/ahra/front.svg",
  48547. extra: 1914/1814,
  48548. bottom: 46/1960
  48549. }
  48550. },
  48551. },
  48552. [
  48553. {
  48554. name: "Macro",
  48555. height: math.unit(30, "meters"),
  48556. default: true
  48557. },
  48558. ]
  48559. ))
  48560. characterMakers.push(() => makeCharacter(
  48561. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48562. {
  48563. undressed: {
  48564. height: math.unit(2, "m"),
  48565. weight: math.unit(250, "kg"),
  48566. name: "Undressed",
  48567. image: {
  48568. source: "./media/characters/coriander/undressed.svg",
  48569. extra: 1757/1606,
  48570. bottom: 107/1864
  48571. }
  48572. },
  48573. dressed: {
  48574. height: math.unit(2, "m"),
  48575. weight: math.unit(250, "kg"),
  48576. name: "Dressed",
  48577. image: {
  48578. source: "./media/characters/coriander/dressed.svg",
  48579. extra: 1757/1606,
  48580. bottom: 107/1864
  48581. }
  48582. },
  48583. },
  48584. [
  48585. {
  48586. name: "Normal",
  48587. height: math.unit(4, "meters"),
  48588. default: true
  48589. },
  48590. {
  48591. name: "XL",
  48592. height: math.unit(6, "meters")
  48593. },
  48594. {
  48595. name: "XXL",
  48596. height: math.unit(8, "meters")
  48597. },
  48598. ]
  48599. ))
  48600. characterMakers.push(() => makeCharacter(
  48601. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48602. {
  48603. front: {
  48604. height: math.unit(6, "feet"),
  48605. name: "Front",
  48606. image: {
  48607. source: "./media/characters/syrinx/front.svg",
  48608. extra: 1557/1259,
  48609. bottom: 171/1728
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Normal",
  48616. height: math.unit(6 + 3/12, "feet"),
  48617. default: true
  48618. },
  48619. ]
  48620. ))
  48621. characterMakers.push(() => makeCharacter(
  48622. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48623. {
  48624. front: {
  48625. height: math.unit(11 + 6/12, "feet"),
  48626. weight: math.unit(1.5, "tons"),
  48627. name: "Front",
  48628. image: {
  48629. source: "./media/characters/bor/front.svg",
  48630. extra: 1189/1109,
  48631. bottom: 170/1359
  48632. }
  48633. },
  48634. },
  48635. [
  48636. {
  48637. name: "Normal",
  48638. height: math.unit(11 + 6/12, "feet"),
  48639. default: true
  48640. },
  48641. {
  48642. name: "Macro",
  48643. height: math.unit(32 + 9/12, "feet")
  48644. },
  48645. ]
  48646. ))
  48647. characterMakers.push(() => makeCharacter(
  48648. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48649. {
  48650. anthro: {
  48651. height: math.unit(9, "feet"),
  48652. weight: math.unit(2076, "lb"),
  48653. name: "Anthro",
  48654. image: {
  48655. source: "./media/characters/abacus/anthro.svg",
  48656. extra: 1540/1494,
  48657. bottom: 233/1773
  48658. }
  48659. },
  48660. pigeon: {
  48661. height: math.unit(1, "feet"),
  48662. name: "Pigeon",
  48663. image: {
  48664. source: "./media/characters/abacus/pigeon.svg",
  48665. extra: 528/525,
  48666. bottom: 46/574
  48667. }
  48668. },
  48669. },
  48670. [
  48671. {
  48672. name: "Normal",
  48673. height: math.unit(9, "feet"),
  48674. default: true
  48675. },
  48676. ]
  48677. ))
  48678. characterMakers.push(() => makeCharacter(
  48679. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48680. {
  48681. side: {
  48682. height: math.unit(6, "feet"),
  48683. name: "Side",
  48684. image: {
  48685. source: "./media/characters/delkhan/side.svg",
  48686. extra: 1884/1786,
  48687. bottom: 308/2192
  48688. }
  48689. },
  48690. head: {
  48691. height: math.unit(3.38, "feet"),
  48692. name: "Head",
  48693. image: {
  48694. source: "./media/characters/delkhan/head.svg"
  48695. }
  48696. },
  48697. },
  48698. [
  48699. {
  48700. name: "Normal",
  48701. height: math.unit(72, "feet"),
  48702. default: true
  48703. },
  48704. {
  48705. name: "Giant",
  48706. height: math.unit(172, "feet")
  48707. },
  48708. ]
  48709. ))
  48710. characterMakers.push(() => makeCharacter(
  48711. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48712. {
  48713. standing: {
  48714. height: math.unit(6, "feet"),
  48715. name: "Standing",
  48716. image: {
  48717. source: "./media/characters/euchidat/standing.svg",
  48718. extra: 1612/1553,
  48719. bottom: 116/1728
  48720. }
  48721. },
  48722. leaning: {
  48723. height: math.unit(6, "feet"),
  48724. name: "Leaning",
  48725. image: {
  48726. source: "./media/characters/euchidat/leaning.svg",
  48727. extra: 1719/1674,
  48728. bottom: 27/1746
  48729. }
  48730. },
  48731. },
  48732. [
  48733. {
  48734. name: "Normal",
  48735. height: math.unit(175, "feet"),
  48736. default: true
  48737. },
  48738. {
  48739. name: "Megamacro",
  48740. height: math.unit(190, "miles")
  48741. },
  48742. {
  48743. name: "Gigamacro",
  48744. height: math.unit(190000, "miles")
  48745. },
  48746. ]
  48747. ))
  48748. characterMakers.push(() => makeCharacter(
  48749. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48750. {
  48751. front: {
  48752. height: math.unit(6, "feet"),
  48753. weight: math.unit(150, "lb"),
  48754. name: "Front",
  48755. image: {
  48756. source: "./media/characters/rebecca-stack/front.svg",
  48757. extra: 1256/1201,
  48758. bottom: 18/1274
  48759. }
  48760. },
  48761. },
  48762. [
  48763. {
  48764. name: "Normal",
  48765. height: math.unit(5 + 8/12, "feet"),
  48766. default: true
  48767. },
  48768. {
  48769. name: "Demolitionist",
  48770. height: math.unit(200, "feet")
  48771. },
  48772. {
  48773. name: "Out of Control",
  48774. height: math.unit(2, "miles")
  48775. },
  48776. {
  48777. name: "Giga",
  48778. height: math.unit(7200, "miles")
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(6, "feet"),
  48787. weight: math.unit(150, "lb"),
  48788. name: "Front",
  48789. image: {
  48790. source: "./media/characters/jenny-cartwright/front.svg",
  48791. extra: 1384/1376,
  48792. bottom: 58/1442
  48793. }
  48794. },
  48795. },
  48796. [
  48797. {
  48798. name: "Normal",
  48799. height: math.unit(6 + 7/12, "feet"),
  48800. default: true
  48801. },
  48802. {
  48803. name: "Librarian",
  48804. height: math.unit(55, "feet")
  48805. },
  48806. {
  48807. name: "Sightseer",
  48808. height: math.unit(50, "miles")
  48809. },
  48810. {
  48811. name: "Giga",
  48812. height: math.unit(30000, "miles")
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48818. {
  48819. nude: {
  48820. height: math.unit(8, "feet"),
  48821. weight: math.unit(225, "lb"),
  48822. name: "Nude",
  48823. image: {
  48824. source: "./media/characters/marvy/nude.svg",
  48825. extra: 1900/1683,
  48826. bottom: 89/1989
  48827. }
  48828. },
  48829. dressed: {
  48830. height: math.unit(8, "feet"),
  48831. weight: math.unit(225, "lb"),
  48832. name: "Dressed",
  48833. image: {
  48834. source: "./media/characters/marvy/dressed.svg",
  48835. extra: 1900/1683,
  48836. bottom: 89/1989
  48837. }
  48838. },
  48839. head: {
  48840. height: math.unit(2.85, "feet"),
  48841. name: "Head",
  48842. image: {
  48843. source: "./media/characters/marvy/head.svg"
  48844. }
  48845. },
  48846. },
  48847. [
  48848. {
  48849. name: "Normal",
  48850. height: math.unit(8, "feet"),
  48851. default: true
  48852. },
  48853. ]
  48854. ))
  48855. characterMakers.push(() => makeCharacter(
  48856. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48857. {
  48858. front: {
  48859. height: math.unit(8, "feet"),
  48860. weight: math.unit(250, "lb"),
  48861. name: "Front",
  48862. image: {
  48863. source: "./media/characters/leah/front.svg",
  48864. extra: 1257/1149,
  48865. bottom: 109/1366
  48866. }
  48867. },
  48868. },
  48869. [
  48870. {
  48871. name: "Normal",
  48872. height: math.unit(8, "feet"),
  48873. default: true
  48874. },
  48875. {
  48876. name: "Minimacro",
  48877. height: math.unit(40, "feet")
  48878. },
  48879. {
  48880. name: "Macro",
  48881. height: math.unit(124, "feet")
  48882. },
  48883. {
  48884. name: "Megamacro",
  48885. height: math.unit(850, "feet")
  48886. },
  48887. ]
  48888. ))
  48889. characterMakers.push(() => makeCharacter(
  48890. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48891. {
  48892. side: {
  48893. height: math.unit(13 + 6/12, "feet"),
  48894. weight: math.unit(3200, "lb"),
  48895. name: "Side",
  48896. image: {
  48897. source: "./media/characters/alvir/side.svg",
  48898. extra: 896/589,
  48899. bottom: 26/922
  48900. }
  48901. },
  48902. },
  48903. [
  48904. {
  48905. name: "Normal",
  48906. height: math.unit(13 + 6/12, "feet"),
  48907. default: true
  48908. },
  48909. ]
  48910. ))
  48911. characterMakers.push(() => makeCharacter(
  48912. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48913. {
  48914. front: {
  48915. height: math.unit(5 + 4/12, "feet"),
  48916. weight: math.unit(236, "lb"),
  48917. name: "Front",
  48918. image: {
  48919. source: "./media/characters/zaina-khalil/front.svg",
  48920. extra: 1533/1485,
  48921. bottom: 94/1627
  48922. }
  48923. },
  48924. side: {
  48925. height: math.unit(5 + 4/12, "feet"),
  48926. weight: math.unit(236, "lb"),
  48927. name: "Side",
  48928. image: {
  48929. source: "./media/characters/zaina-khalil/side.svg",
  48930. extra: 1537/1498,
  48931. bottom: 66/1603
  48932. }
  48933. },
  48934. back: {
  48935. height: math.unit(5 + 4/12, "feet"),
  48936. weight: math.unit(236, "lb"),
  48937. name: "Back",
  48938. image: {
  48939. source: "./media/characters/zaina-khalil/back.svg",
  48940. extra: 1546/1494,
  48941. bottom: 89/1635
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Normal",
  48948. height: math.unit(5 + 4/12, "feet"),
  48949. default: true
  48950. },
  48951. ]
  48952. ))
  48953. characterMakers.push(() => makeCharacter(
  48954. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48955. {
  48956. side: {
  48957. height: math.unit(12, "feet"),
  48958. weight: math.unit(4000, "lb"),
  48959. name: "Side",
  48960. image: {
  48961. source: "./media/characters/terry/side.svg",
  48962. extra: 1518/1439,
  48963. bottom: 149/1667
  48964. }
  48965. },
  48966. },
  48967. [
  48968. {
  48969. name: "Normal",
  48970. height: math.unit(12, "feet"),
  48971. default: true
  48972. },
  48973. ]
  48974. ))
  48975. characterMakers.push(() => makeCharacter(
  48976. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48977. {
  48978. front: {
  48979. height: math.unit(12, "feet"),
  48980. weight: math.unit(1500, "lb"),
  48981. name: "Front",
  48982. image: {
  48983. source: "./media/characters/kahea/front.svg",
  48984. extra: 1722/1617,
  48985. bottom: 179/1901
  48986. }
  48987. },
  48988. },
  48989. [
  48990. {
  48991. name: "Normal",
  48992. height: math.unit(12, "feet"),
  48993. default: true
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48999. {
  49000. demonFront: {
  49001. height: math.unit(36, "feet"),
  49002. name: "Front",
  49003. image: {
  49004. source: "./media/characters/alex-xuria/demon-front.svg",
  49005. extra: 1705/1673,
  49006. bottom: 198/1903
  49007. },
  49008. form: "demon",
  49009. default: true
  49010. },
  49011. demonBack: {
  49012. height: math.unit(36, "feet"),
  49013. name: "Back",
  49014. image: {
  49015. source: "./media/characters/alex-xuria/demon-back.svg",
  49016. extra: 1725/1693,
  49017. bottom: 70/1795
  49018. },
  49019. form: "demon"
  49020. },
  49021. demonHead: {
  49022. height: math.unit(2.14, "meters"),
  49023. name: "Head",
  49024. image: {
  49025. source: "./media/characters/alex-xuria/demon-head.svg"
  49026. },
  49027. form: "demon"
  49028. },
  49029. demonHand: {
  49030. height: math.unit(1.61, "meters"),
  49031. name: "Hand",
  49032. image: {
  49033. source: "./media/characters/alex-xuria/demon-hand.svg"
  49034. },
  49035. form: "demon"
  49036. },
  49037. demonPaw: {
  49038. height: math.unit(1.35, "meters"),
  49039. name: "Paw",
  49040. image: {
  49041. source: "./media/characters/alex-xuria/demon-paw.svg"
  49042. },
  49043. form: "demon"
  49044. },
  49045. demonFoot: {
  49046. height: math.unit(2.2, "meters"),
  49047. name: "Foot",
  49048. image: {
  49049. source: "./media/characters/alex-xuria/demon-foot.svg"
  49050. },
  49051. form: "demon"
  49052. },
  49053. demonCock: {
  49054. height: math.unit(1.74, "meters"),
  49055. name: "Cock",
  49056. image: {
  49057. source: "./media/characters/alex-xuria/demon-cock.svg"
  49058. },
  49059. form: "demon"
  49060. },
  49061. demonTailClosed: {
  49062. height: math.unit(1.47, "meters"),
  49063. name: "Tail (Closed)",
  49064. image: {
  49065. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  49066. },
  49067. form: "demon"
  49068. },
  49069. demonTailOpen: {
  49070. height: math.unit(2.85, "meters"),
  49071. name: "Tail (Open)",
  49072. image: {
  49073. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  49074. },
  49075. form: "demon"
  49076. },
  49077. incubusFront: {
  49078. height: math.unit(12, "feet"),
  49079. name: "Front",
  49080. image: {
  49081. source: "./media/characters/alex-xuria/incubus-front.svg",
  49082. extra: 1754/1677,
  49083. bottom: 125/1879
  49084. },
  49085. form: "incubus",
  49086. default: true
  49087. },
  49088. incubusBack: {
  49089. height: math.unit(12, "feet"),
  49090. name: "Back",
  49091. image: {
  49092. source: "./media/characters/alex-xuria/incubus-back.svg",
  49093. extra: 1702/1647,
  49094. bottom: 30/1732
  49095. },
  49096. form: "incubus"
  49097. },
  49098. incubusHead: {
  49099. height: math.unit(3.45, "feet"),
  49100. name: "Head",
  49101. image: {
  49102. source: "./media/characters/alex-xuria/incubus-head.svg"
  49103. },
  49104. form: "incubus"
  49105. },
  49106. rabbitFront: {
  49107. height: math.unit(6, "feet"),
  49108. name: "Front",
  49109. image: {
  49110. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49111. extra: 1369/1349,
  49112. bottom: 45/1414
  49113. },
  49114. form: "rabbit",
  49115. default: true
  49116. },
  49117. rabbitSide: {
  49118. height: math.unit(6, "feet"),
  49119. name: "Side",
  49120. image: {
  49121. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49122. extra: 1370/1356,
  49123. bottom: 37/1407
  49124. },
  49125. form: "rabbit"
  49126. },
  49127. rabbitBack: {
  49128. height: math.unit(6, "feet"),
  49129. name: "Back",
  49130. image: {
  49131. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49132. extra: 1375/1358,
  49133. bottom: 43/1418
  49134. },
  49135. form: "rabbit"
  49136. },
  49137. },
  49138. [
  49139. {
  49140. name: "Normal",
  49141. height: math.unit(6, "feet"),
  49142. default: true,
  49143. form: "rabbit"
  49144. },
  49145. {
  49146. name: "Incubus",
  49147. height: math.unit(12, "feet"),
  49148. default: true,
  49149. form: "incubus"
  49150. },
  49151. {
  49152. name: "Demon",
  49153. height: math.unit(36, "feet"),
  49154. default: true,
  49155. form: "demon"
  49156. }
  49157. ],
  49158. {
  49159. "demon": {
  49160. name: "Demon",
  49161. default: true
  49162. },
  49163. "incubus": {
  49164. name: "Incubus",
  49165. },
  49166. "rabbit": {
  49167. name: "Rabbit"
  49168. }
  49169. }
  49170. ))
  49171. characterMakers.push(() => makeCharacter(
  49172. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49173. {
  49174. front: {
  49175. height: math.unit(7 + 5/12, "feet"),
  49176. weight: math.unit(510, "lb"),
  49177. name: "Front",
  49178. image: {
  49179. source: "./media/characters/syrup/front.svg",
  49180. extra: 932/916,
  49181. bottom: 26/958
  49182. }
  49183. },
  49184. },
  49185. [
  49186. {
  49187. name: "Normal",
  49188. height: math.unit(7 + 5/12, "feet"),
  49189. default: true
  49190. },
  49191. {
  49192. name: "Big",
  49193. height: math.unit(50, "feet")
  49194. },
  49195. {
  49196. name: "Macro",
  49197. height: math.unit(300, "feet")
  49198. },
  49199. {
  49200. name: "Megamacro",
  49201. height: math.unit(1, "mile")
  49202. },
  49203. ]
  49204. ))
  49205. characterMakers.push(() => makeCharacter(
  49206. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49207. {
  49208. front: {
  49209. height: math.unit(6 + 9/12, "feet"),
  49210. name: "Front",
  49211. image: {
  49212. source: "./media/characters/zeimne/front.svg",
  49213. extra: 1969/1806,
  49214. bottom: 53/2022
  49215. }
  49216. },
  49217. },
  49218. [
  49219. {
  49220. name: "Normal",
  49221. height: math.unit(6 + 9/12, "feet"),
  49222. default: true
  49223. },
  49224. {
  49225. name: "Giant",
  49226. height: math.unit(550, "feet")
  49227. },
  49228. {
  49229. name: "Mega",
  49230. height: math.unit(3, "miles")
  49231. },
  49232. {
  49233. name: "Giga",
  49234. height: math.unit(250, "miles")
  49235. },
  49236. {
  49237. name: "Tera",
  49238. height: math.unit(1, "AU")
  49239. },
  49240. ]
  49241. ))
  49242. characterMakers.push(() => makeCharacter(
  49243. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49244. {
  49245. front: {
  49246. height: math.unit(5 + 2/12, "feet"),
  49247. name: "Front",
  49248. image: {
  49249. source: "./media/characters/grar/front.svg",
  49250. extra: 1331/1119,
  49251. bottom: 60/1391
  49252. }
  49253. },
  49254. back: {
  49255. height: math.unit(5 + 2/12, "feet"),
  49256. name: "Back",
  49257. image: {
  49258. source: "./media/characters/grar/back.svg",
  49259. extra: 1385/1169,
  49260. bottom: 23/1408
  49261. }
  49262. },
  49263. },
  49264. [
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(5 + 2/12, "feet"),
  49268. default: true
  49269. },
  49270. ]
  49271. ))
  49272. characterMakers.push(() => makeCharacter(
  49273. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49274. {
  49275. front: {
  49276. height: math.unit(13 + 7/12, "feet"),
  49277. weight: math.unit(2200, "lb"),
  49278. name: "Front",
  49279. image: {
  49280. source: "./media/characters/endraya/front.svg",
  49281. extra: 1289/1215,
  49282. bottom: 50/1339
  49283. }
  49284. },
  49285. nude: {
  49286. height: math.unit(13 + 7/12, "feet"),
  49287. weight: math.unit(2200, "lb"),
  49288. name: "Nude",
  49289. image: {
  49290. source: "./media/characters/endraya/nude.svg",
  49291. extra: 1247/1171,
  49292. bottom: 40/1287
  49293. }
  49294. },
  49295. head: {
  49296. height: math.unit(2.6, "feet"),
  49297. name: "Head",
  49298. image: {
  49299. source: "./media/characters/endraya/head.svg"
  49300. }
  49301. },
  49302. slit: {
  49303. height: math.unit(3.4, "feet"),
  49304. name: "Slit",
  49305. image: {
  49306. source: "./media/characters/endraya/slit.svg"
  49307. }
  49308. },
  49309. },
  49310. [
  49311. {
  49312. name: "Normal",
  49313. height: math.unit(13 + 7/12, "feet"),
  49314. default: true
  49315. },
  49316. {
  49317. name: "Macro",
  49318. height: math.unit(200, "feet")
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(1.81, "meters"),
  49327. weight: math.unit(69, "kg"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/rodryana/front.svg",
  49331. extra: 2002/1921,
  49332. bottom: 53/2055
  49333. }
  49334. },
  49335. back: {
  49336. height: math.unit(1.81, "meters"),
  49337. weight: math.unit(69, "kg"),
  49338. name: "Back",
  49339. image: {
  49340. source: "./media/characters/rodryana/back.svg",
  49341. extra: 1993/1926,
  49342. bottom: 48/2041
  49343. }
  49344. },
  49345. maw: {
  49346. height: math.unit(0.19769417475, "meters"),
  49347. name: "Maw",
  49348. image: {
  49349. source: "./media/characters/rodryana/maw.svg"
  49350. }
  49351. },
  49352. slit: {
  49353. height: math.unit(0.31631067961, "meters"),
  49354. name: "Slit",
  49355. image: {
  49356. source: "./media/characters/rodryana/slit.svg"
  49357. }
  49358. },
  49359. },
  49360. [
  49361. {
  49362. name: "Normal",
  49363. height: math.unit(1.81, "meters")
  49364. },
  49365. {
  49366. name: "Mini Macro",
  49367. height: math.unit(181, "meters")
  49368. },
  49369. {
  49370. name: "Macro",
  49371. height: math.unit(452, "meters"),
  49372. default: true
  49373. },
  49374. {
  49375. name: "Mega Macro",
  49376. height: math.unit(1.375, "km")
  49377. },
  49378. {
  49379. name: "Giga Macro",
  49380. height: math.unit(13.575, "km")
  49381. },
  49382. ]
  49383. ))
  49384. characterMakers.push(() => makeCharacter(
  49385. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49386. {
  49387. front: {
  49388. height: math.unit(6, "feet"),
  49389. weight: math.unit(1000, "lb"),
  49390. name: "Front",
  49391. image: {
  49392. source: "./media/characters/asaya/front.svg",
  49393. extra: 1460/1200,
  49394. bottom: 71/1531
  49395. }
  49396. },
  49397. },
  49398. [
  49399. {
  49400. name: "Normal",
  49401. height: math.unit(8, "km"),
  49402. default: true
  49403. },
  49404. ]
  49405. ))
  49406. characterMakers.push(() => makeCharacter(
  49407. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49408. {
  49409. front: {
  49410. height: math.unit(3.5, "meters"),
  49411. name: "Front",
  49412. image: {
  49413. source: "./media/characters/sarzu-and-israz/front.svg",
  49414. extra: 1570/1558,
  49415. bottom: 150/1720
  49416. },
  49417. },
  49418. back: {
  49419. height: math.unit(3.5, "meters"),
  49420. name: "Back",
  49421. image: {
  49422. source: "./media/characters/sarzu-and-israz/back.svg",
  49423. extra: 1523/1509,
  49424. bottom: 132/1655
  49425. },
  49426. },
  49427. frontFemale: {
  49428. height: math.unit(3.5, "meters"),
  49429. name: "Front (Female)",
  49430. image: {
  49431. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49432. extra: 1570/1558,
  49433. bottom: 150/1720
  49434. },
  49435. },
  49436. frontHerm: {
  49437. height: math.unit(3.5, "meters"),
  49438. name: "Front (Herm)",
  49439. image: {
  49440. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49441. extra: 1570/1558,
  49442. bottom: 150/1720
  49443. },
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(3.5, "meters"),
  49450. default: true,
  49451. },
  49452. {
  49453. name: "Macro",
  49454. height: math.unit(65.5, "meters"),
  49455. },
  49456. ],
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(6, "feet"),
  49463. weight: math.unit(250, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/zenimma/front.svg",
  49467. extra: 1346/1320,
  49468. bottom: 58/1404
  49469. }
  49470. },
  49471. back: {
  49472. height: math.unit(6, "feet"),
  49473. weight: math.unit(250, "lb"),
  49474. name: "Back",
  49475. image: {
  49476. source: "./media/characters/zenimma/back.svg",
  49477. extra: 1324/1308,
  49478. bottom: 44/1368
  49479. }
  49480. },
  49481. dick: {
  49482. height: math.unit(1.44, "feet"),
  49483. name: "Dick",
  49484. image: {
  49485. source: "./media/characters/zenimma/dick.svg"
  49486. }
  49487. },
  49488. },
  49489. [
  49490. {
  49491. name: "Canon Height",
  49492. height: math.unit(66, "miles"),
  49493. default: true
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49499. {
  49500. nude: {
  49501. height: math.unit(6, "feet"),
  49502. weight: math.unit(150, "lb"),
  49503. name: "Nude",
  49504. image: {
  49505. source: "./media/characters/shavon/nude.svg",
  49506. extra: 1242/1096,
  49507. bottom: 98/1340
  49508. }
  49509. },
  49510. dressed: {
  49511. height: math.unit(6, "feet"),
  49512. weight: math.unit(150, "lb"),
  49513. name: "Dressed",
  49514. image: {
  49515. source: "./media/characters/shavon/dressed.svg",
  49516. extra: 1242/1096,
  49517. bottom: 98/1340
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Macro",
  49524. height: math.unit(255, "feet"),
  49525. default: true
  49526. },
  49527. ]
  49528. ))
  49529. characterMakers.push(() => makeCharacter(
  49530. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49531. {
  49532. front: {
  49533. height: math.unit(6, "feet"),
  49534. name: "Front",
  49535. image: {
  49536. source: "./media/characters/steph/front.svg",
  49537. extra: 1430/1330,
  49538. bottom: 54/1484
  49539. }
  49540. },
  49541. },
  49542. [
  49543. {
  49544. name: "Normal",
  49545. height: math.unit(6, "feet"),
  49546. default: true
  49547. },
  49548. ]
  49549. ))
  49550. characterMakers.push(() => makeCharacter(
  49551. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49552. {
  49553. front: {
  49554. height: math.unit(9, "feet"),
  49555. weight: math.unit(400, "lb"),
  49556. name: "Front",
  49557. image: {
  49558. source: "./media/characters/kil'aman/front.svg",
  49559. extra: 1210/1159,
  49560. bottom: 109/1319
  49561. }
  49562. },
  49563. head: {
  49564. height: math.unit(2.14, "feet"),
  49565. name: "Head",
  49566. image: {
  49567. source: "./media/characters/kil'aman/head.svg"
  49568. }
  49569. },
  49570. maw: {
  49571. height: math.unit(1.21, "feet"),
  49572. name: "Maw",
  49573. image: {
  49574. source: "./media/characters/kil'aman/maw.svg"
  49575. }
  49576. },
  49577. foot: {
  49578. height: math.unit(1.7, "feet"),
  49579. name: "Foot",
  49580. image: {
  49581. source: "./media/characters/kil'aman/foot.svg"
  49582. }
  49583. },
  49584. dick: {
  49585. height: math.unit(2.1, "feet"),
  49586. name: "Dick",
  49587. image: {
  49588. source: "./media/characters/kil'aman/dick.svg"
  49589. }
  49590. },
  49591. },
  49592. [
  49593. {
  49594. name: "Normal",
  49595. height: math.unit(9, "feet")
  49596. },
  49597. {
  49598. name: "Canon Height",
  49599. height: math.unit(10, "miles"),
  49600. default: true
  49601. },
  49602. {
  49603. name: "Maximum",
  49604. height: math.unit(6e9, "miles")
  49605. },
  49606. ]
  49607. ))
  49608. characterMakers.push(() => makeCharacter(
  49609. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49610. {
  49611. front: {
  49612. height: math.unit(90, "feet"),
  49613. weight: math.unit(675000, "lb"),
  49614. name: "Front",
  49615. image: {
  49616. source: "./media/characters/qadan/front.svg",
  49617. extra: 1012/1004,
  49618. bottom: 78/1090
  49619. }
  49620. },
  49621. back: {
  49622. height: math.unit(90, "feet"),
  49623. weight: math.unit(675000, "lb"),
  49624. name: "Back",
  49625. image: {
  49626. source: "./media/characters/qadan/back.svg",
  49627. extra: 1042/1031,
  49628. bottom: 55/1097
  49629. }
  49630. },
  49631. armored: {
  49632. height: math.unit(90, "feet"),
  49633. weight: math.unit(675000, "lb"),
  49634. name: "Armored",
  49635. image: {
  49636. source: "./media/characters/qadan/armored.svg",
  49637. extra: 1047/1037,
  49638. bottom: 48/1095
  49639. }
  49640. },
  49641. },
  49642. [
  49643. {
  49644. name: "Normal",
  49645. height: math.unit(90, "feet"),
  49646. default: true
  49647. },
  49648. ]
  49649. ))
  49650. characterMakers.push(() => makeCharacter(
  49651. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49652. {
  49653. front: {
  49654. height: math.unit(6, "feet"),
  49655. weight: math.unit(225, "lb"),
  49656. name: "Front",
  49657. image: {
  49658. source: "./media/characters/brooke/front.svg",
  49659. extra: 1050/1010,
  49660. bottom: 66/1116
  49661. }
  49662. },
  49663. back: {
  49664. height: math.unit(6, "feet"),
  49665. weight: math.unit(225, "lb"),
  49666. name: "Back",
  49667. image: {
  49668. source: "./media/characters/brooke/back.svg",
  49669. extra: 1053/1013,
  49670. bottom: 41/1094
  49671. }
  49672. },
  49673. dressed: {
  49674. height: math.unit(6, "feet"),
  49675. weight: math.unit(225, "lb"),
  49676. name: "Dressed",
  49677. image: {
  49678. source: "./media/characters/brooke/dressed.svg",
  49679. extra: 1050/1010,
  49680. bottom: 66/1116
  49681. }
  49682. },
  49683. },
  49684. [
  49685. {
  49686. name: "Canon Height",
  49687. height: math.unit(500, "miles"),
  49688. default: true
  49689. },
  49690. ]
  49691. ))
  49692. characterMakers.push(() => makeCharacter(
  49693. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49694. {
  49695. front: {
  49696. height: math.unit(6 + 2/12, "feet"),
  49697. weight: math.unit(210, "lb"),
  49698. name: "Front",
  49699. image: {
  49700. source: "./media/characters/wubs/front.svg",
  49701. extra: 1345/1325,
  49702. bottom: 70/1415
  49703. }
  49704. },
  49705. back: {
  49706. height: math.unit(6 + 2/12, "feet"),
  49707. weight: math.unit(210, "lb"),
  49708. name: "Back",
  49709. image: {
  49710. source: "./media/characters/wubs/back.svg",
  49711. extra: 1296/1275,
  49712. bottom: 58/1354
  49713. }
  49714. },
  49715. },
  49716. [
  49717. {
  49718. name: "Normal",
  49719. height: math.unit(6 + 2/12, "feet"),
  49720. default: true
  49721. },
  49722. {
  49723. name: "Macro",
  49724. height: math.unit(1000, "feet")
  49725. },
  49726. {
  49727. name: "Megamacro",
  49728. height: math.unit(1, "mile")
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(4, "feet"),
  49737. weight: math.unit(120, "lb"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/blue/front.svg",
  49741. extra: 1636/1525,
  49742. bottom: 43/1679
  49743. }
  49744. },
  49745. back: {
  49746. height: math.unit(4, "feet"),
  49747. weight: math.unit(120, "lb"),
  49748. name: "Back",
  49749. image: {
  49750. source: "./media/characters/blue/back.svg",
  49751. extra: 1660/1560,
  49752. bottom: 57/1717
  49753. }
  49754. },
  49755. paws: {
  49756. height: math.unit(0.826, "feet"),
  49757. name: "Paws",
  49758. image: {
  49759. source: "./media/characters/blue/paws.svg"
  49760. }
  49761. },
  49762. },
  49763. [
  49764. {
  49765. name: "Micro",
  49766. height: math.unit(3, "inches")
  49767. },
  49768. {
  49769. name: "Normal",
  49770. height: math.unit(4, "feet"),
  49771. default: true
  49772. },
  49773. {
  49774. name: "Femenine Form",
  49775. height: math.unit(14, "feet")
  49776. },
  49777. {
  49778. name: "Werebat Form",
  49779. height: math.unit(18, "feet")
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49785. {
  49786. female: {
  49787. height: math.unit(7 + 4/12, "feet"),
  49788. weight: math.unit(243, "lb"),
  49789. name: "Female",
  49790. image: {
  49791. source: "./media/characters/kaya/female.svg",
  49792. extra: 975/898,
  49793. bottom: 34/1009
  49794. }
  49795. },
  49796. herm: {
  49797. height: math.unit(7 + 4/12, "feet"),
  49798. weight: math.unit(243, "lb"),
  49799. name: "Herm",
  49800. image: {
  49801. source: "./media/characters/kaya/herm.svg",
  49802. extra: 975/898,
  49803. bottom: 34/1009
  49804. }
  49805. },
  49806. },
  49807. [
  49808. {
  49809. name: "Normal",
  49810. height: math.unit(7 + 4/12, "feet"),
  49811. default: true
  49812. },
  49813. ]
  49814. ))
  49815. characterMakers.push(() => makeCharacter(
  49816. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49817. {
  49818. female: {
  49819. height: math.unit(9 + 4/12, "feet"),
  49820. weight: math.unit(398, "lb"),
  49821. name: "Female",
  49822. image: {
  49823. source: "./media/characters/kassandra/female.svg",
  49824. extra: 908/839,
  49825. bottom: 61/969
  49826. }
  49827. },
  49828. intersex: {
  49829. height: math.unit(9 + 4/12, "feet"),
  49830. weight: math.unit(398, "lb"),
  49831. name: "Intersex",
  49832. image: {
  49833. source: "./media/characters/kassandra/intersex.svg",
  49834. extra: 908/839,
  49835. bottom: 61/969
  49836. }
  49837. },
  49838. },
  49839. [
  49840. {
  49841. name: "Normal",
  49842. height: math.unit(9 + 4/12, "feet"),
  49843. default: true
  49844. },
  49845. ]
  49846. ))
  49847. characterMakers.push(() => makeCharacter(
  49848. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49849. {
  49850. front: {
  49851. height: math.unit(3, "meters"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/amy/front.svg",
  49855. extra: 1380/1343,
  49856. bottom: 70/1450
  49857. }
  49858. },
  49859. back: {
  49860. height: math.unit(3, "meters"),
  49861. name: "Back",
  49862. image: {
  49863. source: "./media/characters/amy/back.svg",
  49864. extra: 1380/1347,
  49865. bottom: 66/1446
  49866. }
  49867. },
  49868. },
  49869. [
  49870. {
  49871. name: "Normal",
  49872. height: math.unit(3, "meters"),
  49873. default: true
  49874. },
  49875. ]
  49876. ))
  49877. characterMakers.push(() => makeCharacter(
  49878. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49879. {
  49880. side: {
  49881. height: math.unit(47, "cm"),
  49882. weight: math.unit(10.8, "kg"),
  49883. name: "Side",
  49884. image: {
  49885. source: "./media/characters/alphaschakal/side.svg",
  49886. extra: 1058/568,
  49887. bottom: 62/1120
  49888. }
  49889. },
  49890. back: {
  49891. height: math.unit(78, "cm"),
  49892. weight: math.unit(10.8, "kg"),
  49893. name: "Back",
  49894. image: {
  49895. source: "./media/characters/alphaschakal/back.svg",
  49896. extra: 1102/942,
  49897. bottom: 185/1287
  49898. }
  49899. },
  49900. head: {
  49901. height: math.unit(28, "cm"),
  49902. name: "Head",
  49903. image: {
  49904. source: "./media/characters/alphaschakal/head.svg",
  49905. extra: 696/508,
  49906. bottom: 0/696
  49907. }
  49908. },
  49909. paw: {
  49910. height: math.unit(16, "cm"),
  49911. name: "Paw",
  49912. image: {
  49913. source: "./media/characters/alphaschakal/paw.svg"
  49914. }
  49915. },
  49916. },
  49917. [
  49918. {
  49919. name: "Normal",
  49920. height: math.unit(47, "cm"),
  49921. default: true
  49922. },
  49923. {
  49924. name: "Macro",
  49925. height: math.unit(340, "cm")
  49926. },
  49927. ]
  49928. ))
  49929. characterMakers.push(() => makeCharacter(
  49930. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49931. {
  49932. front: {
  49933. height: math.unit(36, "earths"),
  49934. name: "Front",
  49935. image: {
  49936. source: "./media/characters/ecobyss/front.svg",
  49937. extra: 1282/1215,
  49938. bottom: 11/1293
  49939. }
  49940. },
  49941. back: {
  49942. height: math.unit(36, "earths"),
  49943. name: "Back",
  49944. image: {
  49945. source: "./media/characters/ecobyss/back.svg",
  49946. extra: 1291/1222,
  49947. bottom: 8/1299
  49948. }
  49949. },
  49950. },
  49951. [
  49952. {
  49953. name: "Normal",
  49954. height: math.unit(36, "earths"),
  49955. default: true
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49961. {
  49962. front: {
  49963. height: math.unit(12, "feet"),
  49964. name: "Front",
  49965. image: {
  49966. source: "./media/characters/vasuk/front.svg",
  49967. extra: 1326/1207,
  49968. bottom: 64/1390
  49969. }
  49970. },
  49971. },
  49972. [
  49973. {
  49974. name: "Normal",
  49975. height: math.unit(12, "feet"),
  49976. default: true
  49977. },
  49978. ]
  49979. ))
  49980. characterMakers.push(() => makeCharacter(
  49981. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49982. {
  49983. side: {
  49984. height: math.unit(100, "feet"),
  49985. name: "Side",
  49986. image: {
  49987. source: "./media/characters/linneaus/side.svg",
  49988. extra: 987/807,
  49989. bottom: 47/1034
  49990. }
  49991. },
  49992. },
  49993. [
  49994. {
  49995. name: "Macro",
  49996. height: math.unit(100, "feet"),
  49997. default: true
  49998. },
  49999. ]
  50000. ))
  50001. characterMakers.push(() => makeCharacter(
  50002. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  50003. {
  50004. front: {
  50005. height: math.unit(8, "feet"),
  50006. weight: math.unit(1200, "lb"),
  50007. name: "Front",
  50008. image: {
  50009. source: "./media/characters/nyterious-daligdig/front.svg",
  50010. extra: 1284/1094,
  50011. bottom: 84/1368
  50012. }
  50013. },
  50014. back: {
  50015. height: math.unit(8, "feet"),
  50016. weight: math.unit(1200, "lb"),
  50017. name: "Back",
  50018. image: {
  50019. source: "./media/characters/nyterious-daligdig/back.svg",
  50020. extra: 1301/1121,
  50021. bottom: 129/1430
  50022. }
  50023. },
  50024. mouth: {
  50025. height: math.unit(1.464, "feet"),
  50026. name: "Mouth",
  50027. image: {
  50028. source: "./media/characters/nyterious-daligdig/mouth.svg"
  50029. }
  50030. },
  50031. },
  50032. [
  50033. {
  50034. name: "Small",
  50035. height: math.unit(8, "feet"),
  50036. default: true
  50037. },
  50038. {
  50039. name: "Normal",
  50040. height: math.unit(15, "feet")
  50041. },
  50042. {
  50043. name: "Macro",
  50044. height: math.unit(90, "feet")
  50045. },
  50046. ]
  50047. ))
  50048. characterMakers.push(() => makeCharacter(
  50049. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  50050. {
  50051. front: {
  50052. height: math.unit(7 + 4/12, "feet"),
  50053. weight: math.unit(252, "lb"),
  50054. name: "Front",
  50055. image: {
  50056. source: "./media/characters/bandel/front.svg",
  50057. extra: 1946/1775,
  50058. bottom: 26/1972
  50059. }
  50060. },
  50061. back: {
  50062. height: math.unit(7 + 4/12, "feet"),
  50063. weight: math.unit(252, "lb"),
  50064. name: "Back",
  50065. image: {
  50066. source: "./media/characters/bandel/back.svg",
  50067. extra: 1940/1770,
  50068. bottom: 25/1965
  50069. }
  50070. },
  50071. maw: {
  50072. height: math.unit(2.15, "feet"),
  50073. name: "Maw",
  50074. image: {
  50075. source: "./media/characters/bandel/maw.svg"
  50076. }
  50077. },
  50078. stomach: {
  50079. height: math.unit(1.95, "feet"),
  50080. name: "Stomach",
  50081. image: {
  50082. source: "./media/characters/bandel/stomach.svg"
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Normal",
  50089. height: math.unit(7 + 4/12, "feet"),
  50090. default: true
  50091. },
  50092. ]
  50093. ))
  50094. characterMakers.push(() => makeCharacter(
  50095. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  50096. {
  50097. front: {
  50098. height: math.unit(10 + 5/12, "feet"),
  50099. weight: math.unit(773.5, "kg"),
  50100. name: "Front",
  50101. image: {
  50102. source: "./media/characters/zed/front.svg",
  50103. extra: 987/941,
  50104. bottom: 52/1039
  50105. }
  50106. },
  50107. },
  50108. [
  50109. {
  50110. name: "Short",
  50111. height: math.unit(5 + 4/12, "feet")
  50112. },
  50113. {
  50114. name: "Average",
  50115. height: math.unit(10 + 5/12, "feet"),
  50116. default: true
  50117. },
  50118. {
  50119. name: "Mini-Macro",
  50120. height: math.unit(24 + 9/12, "feet")
  50121. },
  50122. {
  50123. name: "Macro",
  50124. height: math.unit(249, "feet")
  50125. },
  50126. {
  50127. name: "Mega-Macro",
  50128. height: math.unit(12490, "feet")
  50129. },
  50130. {
  50131. name: "Giga-Macro",
  50132. height: math.unit(24.9, "miles")
  50133. },
  50134. {
  50135. name: "Tera-Macro",
  50136. height: math.unit(24900, "miles")
  50137. },
  50138. {
  50139. name: "Cosmic Scale",
  50140. height: math.unit(38.9, "lightyears")
  50141. },
  50142. {
  50143. name: "Universal Scale",
  50144. height: math.unit(138e12, "lightyears")
  50145. },
  50146. ]
  50147. ))
  50148. characterMakers.push(() => makeCharacter(
  50149. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50150. {
  50151. front: {
  50152. height: math.unit(1561, "inches"),
  50153. name: "Front",
  50154. image: {
  50155. source: "./media/characters/ivan/front.svg",
  50156. extra: 1126/1071,
  50157. bottom: 26/1152
  50158. }
  50159. },
  50160. back: {
  50161. height: math.unit(1561, "inches"),
  50162. name: "Back",
  50163. image: {
  50164. source: "./media/characters/ivan/back.svg",
  50165. extra: 1134/1079,
  50166. bottom: 30/1164
  50167. }
  50168. },
  50169. },
  50170. [
  50171. {
  50172. name: "Normal",
  50173. height: math.unit(1561, "inches"),
  50174. default: true
  50175. },
  50176. ]
  50177. ))
  50178. characterMakers.push(() => makeCharacter(
  50179. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50180. {
  50181. front: {
  50182. height: math.unit(5 + 7/12, "feet"),
  50183. weight: math.unit(150, "lb"),
  50184. name: "Front",
  50185. image: {
  50186. source: "./media/characters/robin-arctic-hare/front.svg",
  50187. extra: 1148/974,
  50188. bottom: 20/1168
  50189. }
  50190. },
  50191. },
  50192. [
  50193. {
  50194. name: "Normal",
  50195. height: math.unit(5 + 7/12, "feet"),
  50196. default: true
  50197. },
  50198. ]
  50199. ))
  50200. characterMakers.push(() => makeCharacter(
  50201. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50202. {
  50203. side: {
  50204. height: math.unit(5, "feet"),
  50205. name: "Side",
  50206. image: {
  50207. source: "./media/characters/birch/side.svg",
  50208. extra: 985/796,
  50209. bottom: 111/1096
  50210. }
  50211. },
  50212. },
  50213. [
  50214. {
  50215. name: "Normal",
  50216. height: math.unit(5, "feet"),
  50217. default: true
  50218. },
  50219. ]
  50220. ))
  50221. characterMakers.push(() => makeCharacter(
  50222. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50223. {
  50224. front: {
  50225. height: math.unit(4, "feet"),
  50226. name: "Front",
  50227. image: {
  50228. source: "./media/characters/rasp/front.svg",
  50229. extra: 561/478,
  50230. bottom: 74/635
  50231. }
  50232. },
  50233. },
  50234. [
  50235. {
  50236. name: "Normal",
  50237. height: math.unit(4, "feet"),
  50238. default: true
  50239. },
  50240. ]
  50241. ))
  50242. characterMakers.push(() => makeCharacter(
  50243. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50244. {
  50245. front: {
  50246. height: math.unit(4 + 6/12, "feet"),
  50247. name: "Front",
  50248. image: {
  50249. source: "./media/characters/agatha/front.svg",
  50250. extra: 947/933,
  50251. bottom: 42/989
  50252. }
  50253. },
  50254. back: {
  50255. height: math.unit(4 + 6/12, "feet"),
  50256. name: "Back",
  50257. image: {
  50258. source: "./media/characters/agatha/back.svg",
  50259. extra: 935/922,
  50260. bottom: 48/983
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Normal",
  50267. height: math.unit(4 + 6 /12, "feet"),
  50268. default: true
  50269. },
  50270. {
  50271. name: "Max Size",
  50272. height: math.unit(500, "feet")
  50273. },
  50274. ]
  50275. ))
  50276. characterMakers.push(() => makeCharacter(
  50277. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50278. {
  50279. side: {
  50280. height: math.unit(30, "feet"),
  50281. name: "Side",
  50282. image: {
  50283. source: "./media/characters/roggy/side.svg",
  50284. extra: 909/643,
  50285. bottom: 63/972
  50286. }
  50287. },
  50288. lounging: {
  50289. height: math.unit(20, "feet"),
  50290. name: "Lounging",
  50291. image: {
  50292. source: "./media/characters/roggy/lounging.svg",
  50293. extra: 643/479,
  50294. bottom: 145/788
  50295. }
  50296. },
  50297. handpaw: {
  50298. height: math.unit(13.1, "feet"),
  50299. name: "Handpaw",
  50300. image: {
  50301. source: "./media/characters/roggy/handpaw.svg"
  50302. }
  50303. },
  50304. footpaw: {
  50305. height: math.unit(15.8, "feet"),
  50306. name: "Footpaw",
  50307. image: {
  50308. source: "./media/characters/roggy/footpaw.svg"
  50309. }
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Menacing",
  50315. height: math.unit(30, "feet"),
  50316. default: true
  50317. },
  50318. ]
  50319. ))
  50320. characterMakers.push(() => makeCharacter(
  50321. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50322. {
  50323. front: {
  50324. height: math.unit(5 + 7/12, "feet"),
  50325. weight: math.unit(135, "lb"),
  50326. name: "Front",
  50327. image: {
  50328. source: "./media/characters/naomi/front.svg",
  50329. extra: 1209/1154,
  50330. bottom: 129/1338
  50331. }
  50332. },
  50333. back: {
  50334. height: math.unit(5 + 7/12, "feet"),
  50335. weight: math.unit(135, "lb"),
  50336. name: "Back",
  50337. image: {
  50338. source: "./media/characters/naomi/back.svg",
  50339. extra: 1252/1190,
  50340. bottom: 23/1275
  50341. }
  50342. },
  50343. },
  50344. [
  50345. {
  50346. name: "Normal",
  50347. height: math.unit(5 + 7 /12, "feet"),
  50348. default: true
  50349. },
  50350. ]
  50351. ))
  50352. characterMakers.push(() => makeCharacter(
  50353. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50354. {
  50355. side: {
  50356. height: math.unit(35, "meters"),
  50357. name: "Side",
  50358. image: {
  50359. source: "./media/characters/kimpi/side.svg",
  50360. extra: 419/382,
  50361. bottom: 63/482
  50362. }
  50363. },
  50364. hand: {
  50365. height: math.unit(8.96, "meters"),
  50366. name: "Hand",
  50367. image: {
  50368. source: "./media/characters/kimpi/hand.svg"
  50369. }
  50370. },
  50371. },
  50372. [
  50373. {
  50374. name: "Normal",
  50375. height: math.unit(35, "meters"),
  50376. default: true
  50377. },
  50378. ]
  50379. ))
  50380. characterMakers.push(() => makeCharacter(
  50381. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50382. {
  50383. front: {
  50384. height: math.unit(4 + 4/12, "feet"),
  50385. name: "Front",
  50386. image: {
  50387. source: "./media/characters/pepper-purrloin/front.svg",
  50388. extra: 1141/1024,
  50389. bottom: 21/1162
  50390. }
  50391. },
  50392. },
  50393. [
  50394. {
  50395. name: "Normal",
  50396. height: math.unit(4 + 4/12, "feet"),
  50397. default: true
  50398. },
  50399. ]
  50400. ))
  50401. characterMakers.push(() => makeCharacter(
  50402. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50403. {
  50404. front: {
  50405. height: math.unit(6 + 2/12, "feet"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/raphael/front.svg",
  50409. extra: 1101/962,
  50410. bottom: 59/1160
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Normal",
  50417. height: math.unit(6 + 2/12, "feet"),
  50418. default: true
  50419. },
  50420. ]
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50424. {
  50425. front: {
  50426. height: math.unit(6, "feet"),
  50427. weight: math.unit(150, "lb"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/victor-williams/front.svg",
  50431. extra: 1894/1825,
  50432. bottom: 67/1961
  50433. }
  50434. },
  50435. },
  50436. [
  50437. {
  50438. name: "Normal",
  50439. height: math.unit(6, "feet"),
  50440. default: true
  50441. },
  50442. ]
  50443. ))
  50444. characterMakers.push(() => makeCharacter(
  50445. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50446. {
  50447. front: {
  50448. height: math.unit(5 + 8/12, "feet"),
  50449. weight: math.unit(150, "lb"),
  50450. name: "Front",
  50451. image: {
  50452. source: "./media/characters/rachel/front.svg",
  50453. extra: 1902/1787,
  50454. bottom: 46/1948
  50455. }
  50456. },
  50457. },
  50458. [
  50459. {
  50460. name: "Base Height",
  50461. height: math.unit(5 + 8/12, "feet"),
  50462. default: true
  50463. },
  50464. {
  50465. name: "Macro",
  50466. height: math.unit(200, "feet")
  50467. },
  50468. {
  50469. name: "Mega Macro",
  50470. height: math.unit(1, "mile")
  50471. },
  50472. {
  50473. name: "Giga Macro",
  50474. height: math.unit(1500, "miles")
  50475. },
  50476. {
  50477. name: "Tera Macro",
  50478. height: math.unit(8000, "miles")
  50479. },
  50480. {
  50481. name: "Tera Macro+",
  50482. height: math.unit(2e5, "miles")
  50483. },
  50484. ]
  50485. ))
  50486. characterMakers.push(() => makeCharacter(
  50487. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50488. {
  50489. front: {
  50490. height: math.unit(6.5, "feet"),
  50491. name: "Front",
  50492. image: {
  50493. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50494. extra: 860/819,
  50495. bottom: 307/1167
  50496. }
  50497. },
  50498. back: {
  50499. height: math.unit(6.5, "feet"),
  50500. name: "Back",
  50501. image: {
  50502. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50503. extra: 880/837,
  50504. bottom: 395/1275
  50505. }
  50506. },
  50507. sleeping: {
  50508. height: math.unit(2.79, "feet"),
  50509. name: "Sleeping",
  50510. image: {
  50511. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50512. extra: 465/383,
  50513. bottom: 263/728
  50514. }
  50515. },
  50516. maw: {
  50517. height: math.unit(2.52, "feet"),
  50518. name: "Maw",
  50519. image: {
  50520. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(6.5, "feet"),
  50528. default: true
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(5, "feet"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/nova-nerium/front.svg",
  50540. extra: 1548/1392,
  50541. bottom: 374/1922
  50542. }
  50543. },
  50544. back: {
  50545. height: math.unit(5, "feet"),
  50546. name: "Back",
  50547. image: {
  50548. source: "./media/characters/nova-nerium/back.svg",
  50549. extra: 1658/1468,
  50550. bottom: 257/1915
  50551. }
  50552. },
  50553. },
  50554. [
  50555. {
  50556. name: "Normal",
  50557. height: math.unit(5, "feet"),
  50558. default: true
  50559. },
  50560. ]
  50561. ))
  50562. characterMakers.push(() => makeCharacter(
  50563. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50564. {
  50565. front: {
  50566. height: math.unit(5 + 4/12, "feet"),
  50567. name: "Front",
  50568. image: {
  50569. source: "./media/characters/ashe-pyriph/front.svg",
  50570. extra: 1935/1747,
  50571. bottom: 60/1995
  50572. }
  50573. },
  50574. },
  50575. [
  50576. {
  50577. name: "Normal",
  50578. height: math.unit(5 + 4/12, "feet"),
  50579. default: true
  50580. },
  50581. ]
  50582. ))
  50583. characterMakers.push(() => makeCharacter(
  50584. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50585. {
  50586. front: {
  50587. height: math.unit(8.7, "feet"),
  50588. name: "Front",
  50589. image: {
  50590. source: "./media/characters/flicker-wisp/front.svg",
  50591. extra: 1835/1613,
  50592. bottom: 449/2284
  50593. }
  50594. },
  50595. side: {
  50596. height: math.unit(8.7, "feet"),
  50597. name: "Side",
  50598. image: {
  50599. source: "./media/characters/flicker-wisp/side.svg",
  50600. extra: 1841/1642,
  50601. bottom: 336/2177
  50602. },
  50603. default: true
  50604. },
  50605. maw: {
  50606. height: math.unit(3.35, "feet"),
  50607. name: "Maw",
  50608. image: {
  50609. source: "./media/characters/flicker-wisp/maw.svg",
  50610. extra: 2338/1506,
  50611. bottom: 0/2338
  50612. }
  50613. },
  50614. ovipositor: {
  50615. height: math.unit(4.95, "feet"),
  50616. name: "Ovipositor",
  50617. image: {
  50618. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50619. }
  50620. },
  50621. egg: {
  50622. height: math.unit(0.385, "feet"),
  50623. weight: math.unit(2, "lb"),
  50624. name: "Egg",
  50625. image: {
  50626. source: "./media/characters/flicker-wisp/egg.svg"
  50627. }
  50628. },
  50629. },
  50630. [
  50631. {
  50632. name: "Normal",
  50633. height: math.unit(8.7, "feet"),
  50634. default: true
  50635. },
  50636. ]
  50637. ))
  50638. characterMakers.push(() => makeCharacter(
  50639. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50640. {
  50641. side: {
  50642. height: math.unit(11, "feet"),
  50643. name: "Side",
  50644. image: {
  50645. source: "./media/characters/faefnul/side.svg",
  50646. extra: 1100/1007,
  50647. bottom: 0/1100
  50648. }
  50649. },
  50650. },
  50651. [
  50652. {
  50653. name: "Normal",
  50654. height: math.unit(11, "feet"),
  50655. default: true
  50656. },
  50657. ]
  50658. ))
  50659. characterMakers.push(() => makeCharacter(
  50660. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50661. {
  50662. front: {
  50663. height: math.unit(6 + 2/12, "feet"),
  50664. name: "Front",
  50665. image: {
  50666. source: "./media/characters/shady/front.svg",
  50667. extra: 502/461,
  50668. bottom: 9/511
  50669. }
  50670. },
  50671. kneeling: {
  50672. height: math.unit(4.6, "feet"),
  50673. name: "Kneeling",
  50674. image: {
  50675. source: "./media/characters/shady/kneeling.svg",
  50676. extra: 1328/1219,
  50677. bottom: 117/1445
  50678. }
  50679. },
  50680. maw: {
  50681. height: math.unit(2, "feet"),
  50682. name: "Maw",
  50683. image: {
  50684. source: "./media/characters/shady/maw.svg"
  50685. }
  50686. },
  50687. },
  50688. [
  50689. {
  50690. name: "Nano",
  50691. height: math.unit(1, "mm")
  50692. },
  50693. {
  50694. name: "Micro",
  50695. height: math.unit(12, "mm")
  50696. },
  50697. {
  50698. name: "Tiny",
  50699. height: math.unit(3, "inches")
  50700. },
  50701. {
  50702. name: "Normal",
  50703. height: math.unit(6 + 2/12, "feet"),
  50704. default: true
  50705. },
  50706. {
  50707. name: "Big",
  50708. height: math.unit(15, "feet")
  50709. },
  50710. {
  50711. name: "Macro",
  50712. height: math.unit(150, "feet")
  50713. },
  50714. {
  50715. name: "Titanic",
  50716. height: math.unit(500, "feet")
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(12, "feet"),
  50725. name: "Front",
  50726. image: {
  50727. source: "./media/characters/fenrir/front.svg",
  50728. extra: 968/875,
  50729. bottom: 22/990
  50730. }
  50731. },
  50732. },
  50733. [
  50734. {
  50735. name: "Big",
  50736. height: math.unit(12, "feet"),
  50737. default: true
  50738. },
  50739. ]
  50740. ))
  50741. characterMakers.push(() => makeCharacter(
  50742. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50743. {
  50744. front: {
  50745. height: math.unit(5 + 4/12, "feet"),
  50746. name: "Front",
  50747. image: {
  50748. source: "./media/characters/makar/front.svg",
  50749. extra: 1181/1112,
  50750. bottom: 78/1259
  50751. }
  50752. },
  50753. },
  50754. [
  50755. {
  50756. name: "Normal",
  50757. height: math.unit(5 + 4/12, "feet"),
  50758. default: true
  50759. },
  50760. ]
  50761. ))
  50762. characterMakers.push(() => makeCharacter(
  50763. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50764. {
  50765. front: {
  50766. height: math.unit(5 + 7/12, "feet"),
  50767. name: "Front",
  50768. image: {
  50769. source: "./media/characters/callow/front.svg",
  50770. extra: 1482/1304,
  50771. bottom: 23/1505
  50772. }
  50773. },
  50774. back: {
  50775. height: math.unit(5 + 7/12, "feet"),
  50776. name: "Back",
  50777. image: {
  50778. source: "./media/characters/callow/back.svg",
  50779. extra: 1484/1296,
  50780. bottom: 25/1509
  50781. }
  50782. },
  50783. },
  50784. [
  50785. {
  50786. name: "Micro",
  50787. height: math.unit(3, "inches"),
  50788. default: true
  50789. },
  50790. {
  50791. name: "Normal",
  50792. height: math.unit(5 + 7/12, "feet")
  50793. },
  50794. ]
  50795. ))
  50796. characterMakers.push(() => makeCharacter(
  50797. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50798. {
  50799. front: {
  50800. height: math.unit(6 + 2/12, "feet"),
  50801. name: "Front",
  50802. image: {
  50803. source: "./media/characters/natel/front.svg",
  50804. extra: 1833/1692,
  50805. bottom: 166/1999
  50806. }
  50807. },
  50808. },
  50809. [
  50810. {
  50811. name: "Normal",
  50812. height: math.unit(6 + 2/12, "feet"),
  50813. default: true
  50814. },
  50815. ]
  50816. ))
  50817. characterMakers.push(() => makeCharacter(
  50818. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50819. {
  50820. front: {
  50821. height: math.unit(1.75, "meters"),
  50822. name: "Front",
  50823. image: {
  50824. source: "./media/characters/misu/front.svg",
  50825. extra: 1690/1558,
  50826. bottom: 234/1924
  50827. }
  50828. },
  50829. back: {
  50830. height: math.unit(1.75, "meters"),
  50831. name: "Back",
  50832. image: {
  50833. source: "./media/characters/misu/back.svg",
  50834. extra: 1762/1618,
  50835. bottom: 146/1908
  50836. }
  50837. },
  50838. frontNude: {
  50839. height: math.unit(1.75, "meters"),
  50840. name: "Front (Nude)",
  50841. image: {
  50842. source: "./media/characters/misu/front-nude.svg",
  50843. extra: 1690/1558,
  50844. bottom: 234/1924
  50845. }
  50846. },
  50847. backNude: {
  50848. height: math.unit(1.75, "meters"),
  50849. name: "Back (Nude)",
  50850. image: {
  50851. source: "./media/characters/misu/back-nude.svg",
  50852. extra: 1762/1618,
  50853. bottom: 146/1908
  50854. }
  50855. },
  50856. frontErect: {
  50857. height: math.unit(1.75, "meters"),
  50858. name: "Front (Erect)",
  50859. image: {
  50860. source: "./media/characters/misu/front-erect.svg",
  50861. extra: 1690/1558,
  50862. bottom: 234/1924
  50863. }
  50864. },
  50865. maw: {
  50866. height: math.unit(0.47, "meters"),
  50867. name: "Maw",
  50868. image: {
  50869. source: "./media/characters/misu/maw.svg"
  50870. }
  50871. },
  50872. head: {
  50873. height: math.unit(0.35, "meters"),
  50874. name: "Head",
  50875. image: {
  50876. source: "./media/characters/misu/head.svg"
  50877. }
  50878. },
  50879. rear: {
  50880. height: math.unit(0.47, "meters"),
  50881. name: "Rear",
  50882. image: {
  50883. source: "./media/characters/misu/rear.svg"
  50884. }
  50885. },
  50886. },
  50887. [
  50888. {
  50889. name: "Normal",
  50890. height: math.unit(1.75, "meters")
  50891. },
  50892. {
  50893. name: "Not good for the people",
  50894. height: math.unit(42, "meters")
  50895. },
  50896. {
  50897. name: "Not good for the neighborhood",
  50898. height: math.unit(135, "meters")
  50899. },
  50900. {
  50901. name: "Bit bigger problem",
  50902. height: math.unit(380, "meters"),
  50903. default: true
  50904. },
  50905. {
  50906. name: "Not good for the city",
  50907. height: math.unit(1.5, "km")
  50908. },
  50909. {
  50910. name: "Not good for the county",
  50911. height: math.unit(5.5, "km")
  50912. },
  50913. {
  50914. name: "Not good for the state",
  50915. height: math.unit(25, "km")
  50916. },
  50917. {
  50918. name: "Not good for the country",
  50919. height: math.unit(125, "km")
  50920. },
  50921. {
  50922. name: "Not good for the continent",
  50923. height: math.unit(2100, "km")
  50924. },
  50925. {
  50926. name: "Not good for the planet",
  50927. height: math.unit(35000, "km")
  50928. },
  50929. {
  50930. name: "Just no",
  50931. height: math.unit(8.5e18, "km")
  50932. },
  50933. ]
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(6.5, "feet"),
  50940. name: "Front",
  50941. image: {
  50942. source: "./media/characters/poppy/front.svg",
  50943. extra: 1878/1812,
  50944. bottom: 43/1921
  50945. }
  50946. },
  50947. feet: {
  50948. height: math.unit(1.06, "feet"),
  50949. name: "Feet",
  50950. image: {
  50951. source: "./media/characters/poppy/feet.svg",
  50952. extra: 1083/1083,
  50953. bottom: 87/1170
  50954. }
  50955. },
  50956. },
  50957. [
  50958. {
  50959. name: "Human",
  50960. height: math.unit(6.5, "feet")
  50961. },
  50962. {
  50963. name: "Default",
  50964. height: math.unit(300, "feet"),
  50965. default: true
  50966. },
  50967. {
  50968. name: "Huge",
  50969. height: math.unit(850, "feet")
  50970. },
  50971. {
  50972. name: "Mega",
  50973. height: math.unit(8000, "feet")
  50974. },
  50975. {
  50976. name: "Giga",
  50977. height: math.unit(300, "miles")
  50978. },
  50979. ]
  50980. ))
  50981. characterMakers.push(() => makeCharacter(
  50982. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50983. {
  50984. bipedal: {
  50985. height: math.unit(7, "feet"),
  50986. name: "Bipedal",
  50987. image: {
  50988. source: "./media/characters/zener/bipedal.svg",
  50989. extra: 874/805,
  50990. bottom: 109/983
  50991. }
  50992. },
  50993. quadrupedal: {
  50994. height: math.unit(4.64, "feet"),
  50995. name: "Quadrupedal",
  50996. image: {
  50997. source: "./media/characters/zener/quadrupedal.svg",
  50998. extra: 638/507,
  50999. bottom: 190/828
  51000. }
  51001. },
  51002. cock: {
  51003. height: math.unit(18, "inches"),
  51004. name: "Cock",
  51005. image: {
  51006. source: "./media/characters/zener/cock.svg"
  51007. }
  51008. },
  51009. },
  51010. [
  51011. {
  51012. name: "Normal",
  51013. height: math.unit(7, "feet"),
  51014. default: true
  51015. },
  51016. ]
  51017. ))
  51018. characterMakers.push(() => makeCharacter(
  51019. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  51020. {
  51021. nude: {
  51022. height: math.unit(5 + 6/12, "feet"),
  51023. name: "Nude",
  51024. image: {
  51025. source: "./media/characters/charlie-dog/nude.svg",
  51026. extra: 768/734,
  51027. bottom: 26/794
  51028. }
  51029. },
  51030. dressed: {
  51031. height: math.unit(5 + 6/12, "feet"),
  51032. name: "Dressed",
  51033. image: {
  51034. source: "./media/characters/charlie-dog/dressed.svg",
  51035. extra: 768/734,
  51036. bottom: 26/794
  51037. }
  51038. },
  51039. },
  51040. [
  51041. {
  51042. name: "Normal",
  51043. height: math.unit(5 + 6/12, "feet"),
  51044. default: true
  51045. },
  51046. ]
  51047. ))
  51048. characterMakers.push(() => makeCharacter(
  51049. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  51050. {
  51051. front: {
  51052. height: math.unit(6 + 4/12, "feet"),
  51053. name: "Front",
  51054. image: {
  51055. source: "./media/characters/ir'istrasz/front.svg",
  51056. extra: 1014/977,
  51057. bottom: 65/1079
  51058. }
  51059. },
  51060. back: {
  51061. height: math.unit(6 + 4/12, "feet"),
  51062. name: "Back",
  51063. image: {
  51064. source: "./media/characters/ir'istrasz/back.svg",
  51065. extra: 1024/992,
  51066. bottom: 34/1058
  51067. }
  51068. },
  51069. },
  51070. [
  51071. {
  51072. name: "Normal",
  51073. height: math.unit(6 + 4/12, "feet"),
  51074. default: true
  51075. },
  51076. ]
  51077. ))
  51078. characterMakers.push(() => makeCharacter(
  51079. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  51080. {
  51081. front: {
  51082. height: math.unit(5 + 8/12, "feet"),
  51083. name: "Front",
  51084. image: {
  51085. source: "./media/characters/dee-ditto/front.svg",
  51086. extra: 1874/1785,
  51087. bottom: 68/1942
  51088. }
  51089. },
  51090. back: {
  51091. height: math.unit(5 + 8/12, "feet"),
  51092. name: "Back",
  51093. image: {
  51094. source: "./media/characters/dee-ditto/back.svg",
  51095. extra: 1870/1783,
  51096. bottom: 77/1947
  51097. }
  51098. },
  51099. },
  51100. [
  51101. {
  51102. name: "Normal",
  51103. height: math.unit(5 + 8/12, "feet"),
  51104. default: true
  51105. },
  51106. ]
  51107. ))
  51108. characterMakers.push(() => makeCharacter(
  51109. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51110. {
  51111. front: {
  51112. height: math.unit(7 + 6/12, "feet"),
  51113. name: "Front",
  51114. image: {
  51115. source: "./media/characters/fey/front.svg",
  51116. extra: 995/979,
  51117. bottom: 30/1025
  51118. }
  51119. },
  51120. back: {
  51121. height: math.unit(7 + 6/12, "feet"),
  51122. name: "Back",
  51123. image: {
  51124. source: "./media/characters/fey/back.svg",
  51125. extra: 1079/1008,
  51126. bottom: 5/1084
  51127. }
  51128. },
  51129. dressed: {
  51130. height: math.unit(7 + 6/12, "feet"),
  51131. name: "Dressed",
  51132. image: {
  51133. source: "./media/characters/fey/dressed.svg",
  51134. extra: 995/979,
  51135. bottom: 30/1025
  51136. }
  51137. },
  51138. },
  51139. [
  51140. {
  51141. name: "Normal",
  51142. height: math.unit(7 + 6/12, "feet"),
  51143. default: true
  51144. },
  51145. ]
  51146. ))
  51147. characterMakers.push(() => makeCharacter(
  51148. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51149. {
  51150. standing: {
  51151. height: math.unit(17, "feet"),
  51152. name: "Standing",
  51153. image: {
  51154. source: "./media/characters/aster/standing.svg",
  51155. extra: 1798/1598,
  51156. bottom: 117/1915
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(17, "feet"),
  51164. default: true
  51165. },
  51166. {
  51167. name: "Homewrecker",
  51168. height: math.unit(95, "feet")
  51169. },
  51170. {
  51171. name: "Planet Devourer",
  51172. height: math.unit(1008000, "miles")
  51173. },
  51174. ]
  51175. ))
  51176. characterMakers.push(() => makeCharacter(
  51177. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51178. {
  51179. front: {
  51180. height: math.unit(6 + 5/12, "feet"),
  51181. weight: math.unit(265, "lb"),
  51182. name: "Front",
  51183. image: {
  51184. source: "./media/characters/devon-childs/front.svg",
  51185. extra: 1795/1721,
  51186. bottom: 41/1836
  51187. }
  51188. },
  51189. side: {
  51190. height: math.unit(6 + 5/12, "feet"),
  51191. weight: math.unit(265, "lb"),
  51192. name: "Side",
  51193. image: {
  51194. source: "./media/characters/devon-childs/side.svg",
  51195. extra: 1812/1738,
  51196. bottom: 30/1842
  51197. }
  51198. },
  51199. back: {
  51200. height: math.unit(6 + 5/12, "feet"),
  51201. weight: math.unit(265, "lb"),
  51202. name: "Back",
  51203. image: {
  51204. source: "./media/characters/devon-childs/back.svg",
  51205. extra: 1808/1735,
  51206. bottom: 23/1831
  51207. }
  51208. },
  51209. hand: {
  51210. height: math.unit(1.464, "feet"),
  51211. name: "Hand",
  51212. image: {
  51213. source: "./media/characters/devon-childs/hand.svg"
  51214. }
  51215. },
  51216. foot: {
  51217. height: math.unit(1.6, "feet"),
  51218. name: "Foot",
  51219. image: {
  51220. source: "./media/characters/devon-childs/foot.svg"
  51221. }
  51222. },
  51223. },
  51224. [
  51225. {
  51226. name: "Micro",
  51227. height: math.unit(7, "cm")
  51228. },
  51229. {
  51230. name: "Normal",
  51231. height: math.unit(6 + 5/12, "feet"),
  51232. default: true
  51233. },
  51234. {
  51235. name: "Macro",
  51236. height: math.unit(154, "feet")
  51237. },
  51238. ]
  51239. ))
  51240. characterMakers.push(() => makeCharacter(
  51241. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51242. {
  51243. front: {
  51244. height: math.unit(6, "feet"),
  51245. weight: math.unit(180, "lb"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/lydemox-vir/front.svg",
  51249. extra: 1632/1435,
  51250. bottom: 58/1690
  51251. }
  51252. },
  51253. frontSFW: {
  51254. height: math.unit(6, "feet"),
  51255. weight: math.unit(180, "lb"),
  51256. name: "Front (SFW)",
  51257. image: {
  51258. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51259. extra: 1632/1435,
  51260. bottom: 58/1690
  51261. }
  51262. },
  51263. back: {
  51264. height: math.unit(6, "feet"),
  51265. weight: math.unit(180, "lb"),
  51266. name: "Back",
  51267. image: {
  51268. source: "./media/characters/lydemox-vir/back.svg",
  51269. extra: 1593/1408,
  51270. bottom: 31/1624
  51271. }
  51272. },
  51273. paw: {
  51274. height: math.unit(1.85, "feet"),
  51275. name: "Paw",
  51276. image: {
  51277. source: "./media/characters/lydemox-vir/paw.svg"
  51278. }
  51279. },
  51280. dick: {
  51281. height: math.unit(1.8, "feet"),
  51282. name: "Dick",
  51283. image: {
  51284. source: "./media/characters/lydemox-vir/dick.svg"
  51285. }
  51286. },
  51287. },
  51288. [
  51289. {
  51290. name: "Macro",
  51291. height: math.unit(100, "feet"),
  51292. default: true
  51293. },
  51294. {
  51295. name: "Teramacro",
  51296. height: math.unit(1, "earth")
  51297. },
  51298. {
  51299. name: "Planetary",
  51300. height: math.unit(20, "earths")
  51301. },
  51302. ]
  51303. ))
  51304. characterMakers.push(() => makeCharacter(
  51305. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51306. {
  51307. front: {
  51308. height: math.unit(15 + 8/12, "feet"),
  51309. weight: math.unit(1237, "kg"),
  51310. name: "Front",
  51311. image: {
  51312. source: "./media/characters/mia/front.svg",
  51313. extra: 1573/1446,
  51314. bottom: 58/1631
  51315. }
  51316. },
  51317. },
  51318. [
  51319. {
  51320. name: "Small",
  51321. height: math.unit(9 + 5/12, "feet")
  51322. },
  51323. {
  51324. name: "Normal",
  51325. height: math.unit(15 + 8/12, "feet"),
  51326. default: true
  51327. },
  51328. ]
  51329. ))
  51330. characterMakers.push(() => makeCharacter(
  51331. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51332. {
  51333. front: {
  51334. height: math.unit(10 + 6/12, "feet"),
  51335. weight: math.unit(1.3, "tons"),
  51336. name: "Front",
  51337. image: {
  51338. source: "./media/characters/mr-graves/front.svg",
  51339. extra: 1779/1695,
  51340. bottom: 198/1977
  51341. }
  51342. },
  51343. },
  51344. [
  51345. {
  51346. name: "Normal",
  51347. height: math.unit(10 + 6 /12, "feet"),
  51348. default: true
  51349. },
  51350. ]
  51351. ))
  51352. characterMakers.push(() => makeCharacter(
  51353. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51354. {
  51355. dressedFront: {
  51356. height: math.unit(5 + 8/12, "feet"),
  51357. weight: math.unit(125, "lb"),
  51358. name: "Dressed (Front)",
  51359. image: {
  51360. source: "./media/characters/jess/dressed-front.svg",
  51361. extra: 1176/1152,
  51362. bottom: 42/1218
  51363. }
  51364. },
  51365. dressedSide: {
  51366. height: math.unit(5 + 8/12, "feet"),
  51367. weight: math.unit(125, "lb"),
  51368. name: "Dressed (Side)",
  51369. image: {
  51370. source: "./media/characters/jess/dressed-side.svg",
  51371. extra: 1204/1190,
  51372. bottom: 6/1210
  51373. }
  51374. },
  51375. nudeFront: {
  51376. height: math.unit(5 + 8/12, "feet"),
  51377. weight: math.unit(125, "lb"),
  51378. name: "Nude (Front)",
  51379. image: {
  51380. source: "./media/characters/jess/nude-front.svg",
  51381. extra: 1176/1152,
  51382. bottom: 42/1218
  51383. }
  51384. },
  51385. nudeSide: {
  51386. height: math.unit(5 + 8/12, "feet"),
  51387. weight: math.unit(125, "lb"),
  51388. name: "Nude (Side)",
  51389. image: {
  51390. source: "./media/characters/jess/nude-side.svg",
  51391. extra: 1204/1190,
  51392. bottom: 6/1210
  51393. }
  51394. },
  51395. organsFront: {
  51396. height: math.unit(2.83799342105, "feet"),
  51397. name: "Organs (Front)",
  51398. image: {
  51399. source: "./media/characters/jess/organs-front.svg"
  51400. }
  51401. },
  51402. organsSide: {
  51403. height: math.unit(2.64225290474, "feet"),
  51404. name: "Organs (Side)",
  51405. image: {
  51406. source: "./media/characters/jess/organs-side.svg"
  51407. }
  51408. },
  51409. digestiveTractFront: {
  51410. height: math.unit(2.8106580871, "feet"),
  51411. name: "Digestive Tract (Front)",
  51412. image: {
  51413. source: "./media/characters/jess/digestive-tract-front.svg"
  51414. }
  51415. },
  51416. digestiveTractSide: {
  51417. height: math.unit(2.54365045014, "feet"),
  51418. name: "Digestive Tract (Side)",
  51419. image: {
  51420. source: "./media/characters/jess/digestive-tract-side.svg"
  51421. }
  51422. },
  51423. respiratorySystemFront: {
  51424. height: math.unit(1.11196233456, "feet"),
  51425. name: "Respiratory System (Front)",
  51426. image: {
  51427. source: "./media/characters/jess/respiratory-system-front.svg"
  51428. }
  51429. },
  51430. respiratorySystemSide: {
  51431. height: math.unit(0.89327966297, "feet"),
  51432. name: "Respiratory System (Side)",
  51433. image: {
  51434. source: "./media/characters/jess/respiratory-system-side.svg"
  51435. }
  51436. },
  51437. urinaryTractFront: {
  51438. height: math.unit(1.16126356186, "feet"),
  51439. name: "Urinary Tract (Front)",
  51440. image: {
  51441. source: "./media/characters/jess/urinary-tract-front.svg"
  51442. }
  51443. },
  51444. urinaryTractSide: {
  51445. height: math.unit(1.20910039627, "feet"),
  51446. name: "Urinary Tract (Side)",
  51447. image: {
  51448. source: "./media/characters/jess/urinary-tract-side.svg"
  51449. }
  51450. },
  51451. reproductiveOrgansFront: {
  51452. height: math.unit(0.48422591566, "feet"),
  51453. name: "Reproductive Organs (Front)",
  51454. image: {
  51455. source: "./media/characters/jess/reproductive-organs-front.svg"
  51456. }
  51457. },
  51458. reproductiveOrgansSide: {
  51459. height: math.unit(0.61553314481, "feet"),
  51460. name: "Reproductive Organs (Side)",
  51461. image: {
  51462. source: "./media/characters/jess/reproductive-organs-side.svg"
  51463. }
  51464. },
  51465. breastsFront: {
  51466. height: math.unit(0.47690395121, "feet"),
  51467. name: "Breasts (Front)",
  51468. image: {
  51469. source: "./media/characters/jess/breasts-front.svg"
  51470. }
  51471. },
  51472. breastsSide: {
  51473. height: math.unit(0.30556998307, "feet"),
  51474. name: "Breasts (Side)",
  51475. image: {
  51476. source: "./media/characters/jess/breasts-side.svg"
  51477. }
  51478. },
  51479. heartFront: {
  51480. height: math.unit(0.53011022622, "feet"),
  51481. name: "Heart (Front)",
  51482. image: {
  51483. source: "./media/characters/jess/heart-front.svg"
  51484. }
  51485. },
  51486. heartSide: {
  51487. height: math.unit(0.51790695213, "feet"),
  51488. name: "Heart (Side)",
  51489. image: {
  51490. source: "./media/characters/jess/heart-side.svg"
  51491. }
  51492. },
  51493. earsAndNoseFront: {
  51494. height: math.unit(0.29385483995, "feet"),
  51495. name: "Ears and Nose (Front)",
  51496. image: {
  51497. source: "./media/characters/jess/ears-and-nose-front.svg"
  51498. }
  51499. },
  51500. earsAndNoseSide: {
  51501. height: math.unit(0.18109658741, "feet"),
  51502. name: "Ears and Nose (Side)",
  51503. image: {
  51504. source: "./media/characters/jess/ears-and-nose-side.svg"
  51505. }
  51506. },
  51507. },
  51508. [
  51509. {
  51510. name: "Normal",
  51511. height: math.unit(5 + 8/12, "feet"),
  51512. default: true
  51513. },
  51514. ]
  51515. ))
  51516. characterMakers.push(() => makeCharacter(
  51517. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51518. {
  51519. front: {
  51520. height: math.unit(6, "feet"),
  51521. weight: math.unit(6.64467e-7, "grams"),
  51522. name: "Front",
  51523. image: {
  51524. source: "./media/characters/wimpering/front.svg",
  51525. extra: 597/587,
  51526. bottom: 34/631
  51527. }
  51528. },
  51529. },
  51530. [
  51531. {
  51532. name: "Micro",
  51533. height: math.unit(0.4, "mm"),
  51534. default: true
  51535. },
  51536. ]
  51537. ))
  51538. characterMakers.push(() => makeCharacter(
  51539. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51540. {
  51541. front: {
  51542. height: math.unit(5 + 2/12, "feet"),
  51543. weight: math.unit(110, "lb"),
  51544. name: "Front",
  51545. image: {
  51546. source: "./media/characters/keltre/front.svg",
  51547. extra: 1099/1057,
  51548. bottom: 22/1121
  51549. }
  51550. },
  51551. back: {
  51552. height: math.unit(5 + 2/12, "feet"),
  51553. weight: math.unit(110, "lb"),
  51554. name: "Back",
  51555. image: {
  51556. source: "./media/characters/keltre/back.svg",
  51557. extra: 1095/1053,
  51558. bottom: 17/1112
  51559. }
  51560. },
  51561. dressed: {
  51562. height: math.unit(5 + 2/12, "feet"),
  51563. weight: math.unit(110, "lb"),
  51564. name: "Dressed",
  51565. image: {
  51566. source: "./media/characters/keltre/dressed.svg",
  51567. extra: 1099/1057,
  51568. bottom: 22/1121
  51569. }
  51570. },
  51571. winter: {
  51572. height: math.unit(5 + 2/12, "feet"),
  51573. weight: math.unit(110, "lb"),
  51574. name: "Winter",
  51575. image: {
  51576. source: "./media/characters/keltre/winter.svg",
  51577. extra: 1099/1057,
  51578. bottom: 22/1121
  51579. }
  51580. },
  51581. head: {
  51582. height: math.unit(1.61 * 0.86, "feet"),
  51583. name: "Head",
  51584. image: {
  51585. source: "./media/characters/keltre/head.svg",
  51586. extra: 534/421,
  51587. bottom: 0/534
  51588. }
  51589. },
  51590. hand: {
  51591. height: math.unit(1.3 * 0.86, "feet"),
  51592. name: "Hand",
  51593. image: {
  51594. source: "./media/characters/keltre/hand.svg"
  51595. }
  51596. },
  51597. foot: {
  51598. height: math.unit(1.8 * 0.86, "feet"),
  51599. name: "Foot",
  51600. image: {
  51601. source: "./media/characters/keltre/foot.svg"
  51602. }
  51603. },
  51604. },
  51605. [
  51606. {
  51607. name: "Fine",
  51608. height: math.unit(1, "inch")
  51609. },
  51610. {
  51611. name: "Dimnutive",
  51612. height: math.unit(4, "inches")
  51613. },
  51614. {
  51615. name: "Tiny",
  51616. height: math.unit(1, "foot")
  51617. },
  51618. {
  51619. name: "Small",
  51620. height: math.unit(3, "feet")
  51621. },
  51622. {
  51623. name: "Normal",
  51624. height: math.unit(5 + 2/12, "feet"),
  51625. default: true
  51626. },
  51627. ]
  51628. ))
  51629. characterMakers.push(() => makeCharacter(
  51630. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51631. {
  51632. front: {
  51633. height: math.unit(6 + 2/12, "feet"),
  51634. name: "Front",
  51635. image: {
  51636. source: "./media/characters/nox/front.svg",
  51637. extra: 1917/1830,
  51638. bottom: 74/1991
  51639. }
  51640. },
  51641. back: {
  51642. height: math.unit(6 + 2/12, "feet"),
  51643. name: "Back",
  51644. image: {
  51645. source: "./media/characters/nox/back.svg",
  51646. extra: 1896/1815,
  51647. bottom: 21/1917
  51648. }
  51649. },
  51650. head: {
  51651. height: math.unit(1.1, "feet"),
  51652. name: "Head",
  51653. image: {
  51654. source: "./media/characters/nox/head.svg",
  51655. extra: 874/704,
  51656. bottom: 0/874
  51657. }
  51658. },
  51659. tattoo: {
  51660. height: math.unit(0.729, "feet"),
  51661. name: "Tattoo",
  51662. image: {
  51663. source: "./media/characters/nox/tattoo.svg"
  51664. }
  51665. },
  51666. },
  51667. [
  51668. {
  51669. name: "Normal",
  51670. height: math.unit(6 + 2/12, "feet")
  51671. },
  51672. {
  51673. name: "Gigamacro",
  51674. height: math.unit(2, "earths"),
  51675. default: true
  51676. },
  51677. {
  51678. name: "Cosmic",
  51679. height: math.unit(867, "yottameters")
  51680. },
  51681. ]
  51682. ))
  51683. characterMakers.push(() => makeCharacter(
  51684. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51685. {
  51686. front: {
  51687. height: math.unit(6, "feet"),
  51688. weight: math.unit(150, "lb"),
  51689. name: "Front",
  51690. image: {
  51691. source: "./media/characters/caspian/front.svg",
  51692. extra: 1443/1359,
  51693. bottom: 0/1443
  51694. }
  51695. },
  51696. back: {
  51697. height: math.unit(6, "feet"),
  51698. weight: math.unit(150, "lb"),
  51699. name: "Back",
  51700. image: {
  51701. source: "./media/characters/caspian/back.svg",
  51702. extra: 1379/1309,
  51703. bottom: 0/1379
  51704. }
  51705. },
  51706. head: {
  51707. height: math.unit(0.9, "feet"),
  51708. name: "Head",
  51709. image: {
  51710. source: "./media/characters/caspian/head.svg",
  51711. extra: 692/492,
  51712. bottom: 0/692
  51713. }
  51714. },
  51715. headAlt: {
  51716. height: math.unit(0.95, "feet"),
  51717. name: "Head (Alt)",
  51718. image: {
  51719. source: "./media/characters/caspian/head-alt.svg",
  51720. extra: 668/508,
  51721. bottom: 0/668
  51722. }
  51723. },
  51724. hand: {
  51725. height: math.unit(0.8, "feet"),
  51726. name: "Hand",
  51727. image: {
  51728. source: "./media/characters/caspian/hand.svg"
  51729. }
  51730. },
  51731. paw: {
  51732. height: math.unit(0.95, "feet"),
  51733. name: "Paw",
  51734. image: {
  51735. source: "./media/characters/caspian/paw.svg"
  51736. }
  51737. },
  51738. },
  51739. [
  51740. {
  51741. name: "Normal",
  51742. height: math.unit(162, "feet"),
  51743. default: true
  51744. },
  51745. ]
  51746. ))
  51747. characterMakers.push(() => makeCharacter(
  51748. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51749. {
  51750. front: {
  51751. height: math.unit(6, "feet"),
  51752. name: "Front",
  51753. image: {
  51754. source: "./media/characters/myra-aisling/front.svg",
  51755. extra: 1268/1166,
  51756. bottom: 73/1341
  51757. }
  51758. },
  51759. back: {
  51760. height: math.unit(6, "feet"),
  51761. name: "Back",
  51762. image: {
  51763. source: "./media/characters/myra-aisling/back.svg",
  51764. extra: 1249/1149,
  51765. bottom: 79/1328
  51766. }
  51767. },
  51768. dressed: {
  51769. height: math.unit(6, "feet"),
  51770. name: "Dressed",
  51771. image: {
  51772. source: "./media/characters/myra-aisling/dressed.svg",
  51773. extra: 1290/1189,
  51774. bottom: 47/1337
  51775. }
  51776. },
  51777. hand: {
  51778. height: math.unit(1.1, "feet"),
  51779. name: "Hand",
  51780. image: {
  51781. source: "./media/characters/myra-aisling/hand.svg"
  51782. }
  51783. },
  51784. paw: {
  51785. height: math.unit(1.23, "feet"),
  51786. name: "Paw",
  51787. image: {
  51788. source: "./media/characters/myra-aisling/paw.svg"
  51789. }
  51790. },
  51791. },
  51792. [
  51793. {
  51794. name: "Normal",
  51795. height: math.unit(160, "feet"),
  51796. default: true
  51797. },
  51798. ]
  51799. ))
  51800. characterMakers.push(() => makeCharacter(
  51801. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51802. {
  51803. front: {
  51804. height: math.unit(6, "feet"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/tenley-sidero/front.svg",
  51808. extra: 1365/1276,
  51809. bottom: 47/1412
  51810. }
  51811. },
  51812. back: {
  51813. height: math.unit(6, "feet"),
  51814. name: "Back",
  51815. image: {
  51816. source: "./media/characters/tenley-sidero/back.svg",
  51817. extra: 1383/1283,
  51818. bottom: 35/1418
  51819. }
  51820. },
  51821. dressed: {
  51822. height: math.unit(6, "feet"),
  51823. name: "Dressed",
  51824. image: {
  51825. source: "./media/characters/tenley-sidero/dressed.svg",
  51826. extra: 1364/1275,
  51827. bottom: 42/1406
  51828. }
  51829. },
  51830. head: {
  51831. height: math.unit(1.47, "feet"),
  51832. name: "Head",
  51833. image: {
  51834. source: "./media/characters/tenley-sidero/head.svg",
  51835. extra: 610/490,
  51836. bottom: 0/610
  51837. }
  51838. },
  51839. },
  51840. [
  51841. {
  51842. name: "Normal",
  51843. height: math.unit(154, "feet"),
  51844. default: true
  51845. },
  51846. ]
  51847. ))
  51848. characterMakers.push(() => makeCharacter(
  51849. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51850. {
  51851. front: {
  51852. height: math.unit(5, "inches"),
  51853. name: "Front",
  51854. image: {
  51855. source: "./media/characters/mallory/front.svg",
  51856. extra: 1919/1678,
  51857. bottom: 29/1948
  51858. }
  51859. },
  51860. hand: {
  51861. height: math.unit(0.73, "inches"),
  51862. name: "Hand",
  51863. image: {
  51864. source: "./media/characters/mallory/hand.svg"
  51865. }
  51866. },
  51867. paw: {
  51868. height: math.unit(0.68, "inches"),
  51869. name: "Paw",
  51870. image: {
  51871. source: "./media/characters/mallory/paw.svg"
  51872. }
  51873. },
  51874. },
  51875. [
  51876. {
  51877. name: "Small",
  51878. height: math.unit(5, "inches"),
  51879. default: true
  51880. },
  51881. ]
  51882. ))
  51883. characterMakers.push(() => makeCharacter(
  51884. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51885. {
  51886. naked: {
  51887. height: math.unit(6, "feet"),
  51888. name: "Naked",
  51889. image: {
  51890. source: "./media/characters/mab/naked.svg",
  51891. extra: 1855/1757,
  51892. bottom: 208/2063
  51893. }
  51894. },
  51895. outside: {
  51896. height: math.unit(6, "feet"),
  51897. name: "Outside",
  51898. image: {
  51899. source: "./media/characters/mab/outside.svg",
  51900. extra: 1855/1757,
  51901. bottom: 208/2063
  51902. }
  51903. },
  51904. party: {
  51905. height: math.unit(6, "feet"),
  51906. name: "Party",
  51907. image: {
  51908. source: "./media/characters/mab/party.svg",
  51909. extra: 1855/1757,
  51910. bottom: 208/2063
  51911. }
  51912. },
  51913. },
  51914. [
  51915. {
  51916. name: "Normal",
  51917. height: math.unit(165, "feet"),
  51918. default: true
  51919. },
  51920. ]
  51921. ))
  51922. characterMakers.push(() => makeCharacter(
  51923. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51924. {
  51925. feral: {
  51926. height: math.unit(12, "feet"),
  51927. weight: math.unit(20000, "lb"),
  51928. name: "Side",
  51929. image: {
  51930. source: "./media/characters/winter/feral.svg",
  51931. extra: 1286/943,
  51932. bottom: 112/1398
  51933. },
  51934. form: "feral",
  51935. default: true
  51936. },
  51937. feralNsfw: {
  51938. height: math.unit(12, "feet"),
  51939. weight: math.unit(20000, "lb"),
  51940. name: "Side (NSFW)",
  51941. image: {
  51942. source: "./media/characters/winter/feral-nsfw.svg",
  51943. extra: 1286/943,
  51944. bottom: 112/1398
  51945. },
  51946. form: "feral"
  51947. },
  51948. dick: {
  51949. height: math.unit(3.79, "feet"),
  51950. name: "Dick",
  51951. image: {
  51952. source: "./media/characters/winter/dick.svg"
  51953. },
  51954. form: "feral"
  51955. },
  51956. anthro: {
  51957. height: math.unit(12, "feet"),
  51958. weight: math.unit(10, "tons"),
  51959. name: "Anthro",
  51960. image: {
  51961. source: "./media/characters/winter/anthro.svg",
  51962. extra: 1701/1553,
  51963. bottom: 64/1765
  51964. },
  51965. form: "anthro",
  51966. default: true
  51967. },
  51968. },
  51969. [
  51970. {
  51971. name: "Big",
  51972. height: math.unit(12, "feet"),
  51973. default: true,
  51974. form: "feral"
  51975. },
  51976. {
  51977. name: "Big",
  51978. height: math.unit(12, "feet"),
  51979. default: true,
  51980. form: "anthro"
  51981. },
  51982. ],
  51983. {
  51984. "feral": {
  51985. name: "Feral",
  51986. default: true
  51987. },
  51988. "anthro": {
  51989. name: "Anthro"
  51990. }
  51991. }
  51992. ))
  51993. characterMakers.push(() => makeCharacter(
  51994. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51995. {
  51996. front: {
  51997. height: math.unit(4.1, "inches"),
  51998. name: "Front",
  51999. image: {
  52000. source: "./media/characters/alto/front.svg",
  52001. extra: 736/627,
  52002. bottom: 90/826
  52003. }
  52004. },
  52005. },
  52006. [
  52007. {
  52008. name: "Normal",
  52009. height: math.unit(4.1, "inches"),
  52010. default: true
  52011. },
  52012. ]
  52013. ))
  52014. characterMakers.push(() => makeCharacter(
  52015. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  52016. {
  52017. sitting: {
  52018. height: math.unit(3, "feet"),
  52019. name: "Sitting",
  52020. image: {
  52021. source: "./media/characters/ratstrid-v/sitting.svg",
  52022. extra: 355/310,
  52023. bottom: 136/491
  52024. }
  52025. },
  52026. },
  52027. [
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(3, "feet"),
  52031. default: true
  52032. },
  52033. ]
  52034. ))
  52035. characterMakers.push(() => makeCharacter(
  52036. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  52037. {
  52038. back: {
  52039. height: math.unit(6, "feet"),
  52040. weight: math.unit(450, "lb"),
  52041. name: "Back",
  52042. image: {
  52043. source: "./media/characters/siz/back.svg",
  52044. extra: 1449/1274,
  52045. bottom: 13/1462
  52046. }
  52047. },
  52048. },
  52049. [
  52050. {
  52051. name: "Smallest",
  52052. height: math.unit(18 + 3/12, "feet")
  52053. },
  52054. {
  52055. name: "Modest",
  52056. height: math.unit(56 + 8/12, "feet"),
  52057. default: true
  52058. },
  52059. {
  52060. name: "Largest",
  52061. height: math.unit(3590, "feet")
  52062. },
  52063. ]
  52064. ))
  52065. characterMakers.push(() => makeCharacter(
  52066. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  52067. {
  52068. front: {
  52069. height: math.unit(5 + 9/12, "feet"),
  52070. weight: math.unit(150, "lb"),
  52071. name: "Front",
  52072. image: {
  52073. source: "./media/characters/ven/front.svg",
  52074. extra: 1372/1320,
  52075. bottom: 73/1445
  52076. }
  52077. },
  52078. side: {
  52079. height: math.unit(5 + 9/12, "feet"),
  52080. weight: math.unit(1150, "lb"),
  52081. name: "Side",
  52082. image: {
  52083. source: "./media/characters/ven/side.svg",
  52084. extra: 1119/1070,
  52085. bottom: 42/1161
  52086. },
  52087. default: true
  52088. },
  52089. },
  52090. [
  52091. {
  52092. name: "Normal",
  52093. height: math.unit(5 + 9/12, "feet"),
  52094. default: true
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(12, "feet"),
  52103. weight: math.unit(1000, "kg"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/maple/front.svg",
  52107. extra: 1193/1081,
  52108. bottom: 22/1215
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Compressed",
  52115. height: math.unit(7, "feet")
  52116. },
  52117. {
  52118. name: "Normal",
  52119. height: math.unit(12, "feet"),
  52120. default: true
  52121. },
  52122. ]
  52123. ))
  52124. characterMakers.push(() => makeCharacter(
  52125. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52126. {
  52127. front: {
  52128. height: math.unit(9, "feet"),
  52129. weight: math.unit(1500, "lb"),
  52130. name: "Front",
  52131. image: {
  52132. source: "./media/characters/nora/front.svg",
  52133. extra: 1348/1286,
  52134. bottom: 218/1566
  52135. }
  52136. },
  52137. erect: {
  52138. height: math.unit(9, "feet"),
  52139. weight: math.unit(11500, "lb"),
  52140. name: "Erect",
  52141. image: {
  52142. source: "./media/characters/nora/erect.svg",
  52143. extra: 1488/1433,
  52144. bottom: 133/1621
  52145. }
  52146. },
  52147. },
  52148. [
  52149. {
  52150. name: "Normal",
  52151. height: math.unit(9, "feet"),
  52152. default: true
  52153. },
  52154. ]
  52155. ))
  52156. characterMakers.push(() => makeCharacter(
  52157. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52158. {
  52159. front: {
  52160. height: math.unit(25, "feet"),
  52161. weight: math.unit(27500, "lb"),
  52162. name: "Front",
  52163. image: {
  52164. source: "./media/characters/north-caudin/front.svg",
  52165. extra: 1184/1082,
  52166. bottom: 23/1207
  52167. }
  52168. },
  52169. },
  52170. [
  52171. {
  52172. name: "Compressed",
  52173. height: math.unit(10, "feet")
  52174. },
  52175. {
  52176. name: "Normal",
  52177. height: math.unit(25, "feet"),
  52178. default: true
  52179. },
  52180. ]
  52181. ))
  52182. characterMakers.push(() => makeCharacter(
  52183. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52184. {
  52185. front: {
  52186. height: math.unit(9, "feet"),
  52187. weight: math.unit(1250, "lb"),
  52188. name: "Front",
  52189. image: {
  52190. source: "./media/characters/merrian/front.svg",
  52191. extra: 2393/2304,
  52192. bottom: 40/2433
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Normal",
  52199. height: math.unit(9, "feet"),
  52200. default: true
  52201. },
  52202. ]
  52203. ))
  52204. characterMakers.push(() => makeCharacter(
  52205. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52206. {
  52207. front: {
  52208. height: math.unit(9, "feet"),
  52209. weight: math.unit(1000, "lb"),
  52210. name: "Front",
  52211. image: {
  52212. source: "./media/characters/hazel/front.svg",
  52213. extra: 2351/2298,
  52214. bottom: 38/2389
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(9, "feet"),
  52222. default: true
  52223. },
  52224. ]
  52225. ))
  52226. characterMakers.push(() => makeCharacter(
  52227. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52228. {
  52229. front: {
  52230. height: math.unit(13, "feet"),
  52231. weight: math.unit(3200, "lb"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/emma/front.svg",
  52235. extra: 2263/2029,
  52236. bottom: 68/2331
  52237. }
  52238. },
  52239. },
  52240. [
  52241. {
  52242. name: "Normal",
  52243. height: math.unit(13, "feet"),
  52244. default: true
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(11 + 9/12, "feet"),
  52253. weight: math.unit(2500, "lb"),
  52254. name: "Front",
  52255. image: {
  52256. source: "./media/characters/ilumina/front.svg",
  52257. extra: 2248/2209,
  52258. bottom: 164/2412
  52259. }
  52260. },
  52261. },
  52262. [
  52263. {
  52264. name: "Normal",
  52265. height: math.unit(11 + 9/12, "feet"),
  52266. default: true
  52267. },
  52268. ]
  52269. ))
  52270. characterMakers.push(() => makeCharacter(
  52271. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52272. {
  52273. front: {
  52274. height: math.unit(8 + 10/12, "feet"),
  52275. weight: math.unit(1350, "lb"),
  52276. name: "Front",
  52277. image: {
  52278. source: "./media/characters/moonshine/front.svg",
  52279. extra: 2395/2288,
  52280. bottom: 40/2435
  52281. }
  52282. },
  52283. },
  52284. [
  52285. {
  52286. name: "Normal",
  52287. height: math.unit(8 + 10/12, "feet"),
  52288. default: true
  52289. },
  52290. ]
  52291. ))
  52292. characterMakers.push(() => makeCharacter(
  52293. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52294. {
  52295. front: {
  52296. height: math.unit(14, "feet"),
  52297. weight: math.unit(3400, "lb"),
  52298. name: "Front",
  52299. image: {
  52300. source: "./media/characters/aletia/front.svg",
  52301. extra: 1185/1052,
  52302. bottom: 21/1206
  52303. }
  52304. },
  52305. },
  52306. [
  52307. {
  52308. name: "Compressed",
  52309. height: math.unit(8, "feet")
  52310. },
  52311. {
  52312. name: "Normal",
  52313. height: math.unit(14, "feet"),
  52314. default: true
  52315. },
  52316. ]
  52317. ))
  52318. characterMakers.push(() => makeCharacter(
  52319. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52320. {
  52321. front: {
  52322. height: math.unit(17, "feet"),
  52323. weight: math.unit(6500, "lb"),
  52324. name: "Front",
  52325. image: {
  52326. source: "./media/characters/deidra/front.svg",
  52327. extra: 1201/1081,
  52328. bottom: 16/1217
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Compressed",
  52335. height: math.unit(9 + 6/12, "feet")
  52336. },
  52337. {
  52338. name: "Normal",
  52339. height: math.unit(17, "feet"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52346. {
  52347. front: {
  52348. height: math.unit(7 + 4/12, "feet"),
  52349. weight: math.unit(280, "lb"),
  52350. name: "Front",
  52351. image: {
  52352. source: "./media/characters/freki-yrmori/front.svg",
  52353. extra: 1286/1182,
  52354. bottom: 29/1315
  52355. }
  52356. },
  52357. maw: {
  52358. height: math.unit(0.9, "feet"),
  52359. name: "Maw",
  52360. image: {
  52361. source: "./media/characters/freki-yrmori/maw.svg"
  52362. }
  52363. },
  52364. },
  52365. [
  52366. {
  52367. name: "Normal",
  52368. height: math.unit(7 + 4/12, "feet"),
  52369. default: true
  52370. },
  52371. {
  52372. name: "Macro",
  52373. height: math.unit(38.5, "meters")
  52374. },
  52375. ]
  52376. ))
  52377. characterMakers.push(() => makeCharacter(
  52378. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52379. {
  52380. side: {
  52381. height: math.unit(47.2, "meters"),
  52382. weight: math.unit(10000, "tons"),
  52383. name: "Side",
  52384. image: {
  52385. source: "./media/characters/aetherios/side.svg",
  52386. extra: 2363/642,
  52387. bottom: 221/2584
  52388. }
  52389. },
  52390. top: {
  52391. height: math.unit(240, "meters"),
  52392. weight: math.unit(10000, "tons"),
  52393. name: "Top",
  52394. image: {
  52395. source: "./media/characters/aetherios/top.svg"
  52396. }
  52397. },
  52398. bottom: {
  52399. height: math.unit(240, "meters"),
  52400. weight: math.unit(10000, "tons"),
  52401. name: "Bottom",
  52402. image: {
  52403. source: "./media/characters/aetherios/bottom.svg"
  52404. }
  52405. },
  52406. head: {
  52407. height: math.unit(38.6, "meters"),
  52408. name: "Head",
  52409. image: {
  52410. source: "./media/characters/aetherios/head.svg",
  52411. extra: 1335/1112,
  52412. bottom: 0/1335
  52413. }
  52414. },
  52415. front: {
  52416. height: math.unit(29, "meters"),
  52417. name: "Front",
  52418. image: {
  52419. source: "./media/characters/aetherios/front.svg",
  52420. extra: 1266/953,
  52421. bottom: 158/1424
  52422. }
  52423. },
  52424. maw: {
  52425. height: math.unit(16.37, "meters"),
  52426. name: "Maw",
  52427. image: {
  52428. source: "./media/characters/aetherios/maw.svg",
  52429. extra: 748/637,
  52430. bottom: 0/748
  52431. },
  52432. extraAttributes: {
  52433. preyCapacity: {
  52434. name: "Capacity",
  52435. power: 3,
  52436. type: "volume",
  52437. base: math.unit(1000, "people")
  52438. },
  52439. tongueSize: {
  52440. name: "Tongue Size",
  52441. power: 2,
  52442. type: "area",
  52443. base: math.unit(21, "m^2")
  52444. }
  52445. }
  52446. },
  52447. forepaw: {
  52448. height: math.unit(18, "meters"),
  52449. name: "Forepaw",
  52450. image: {
  52451. source: "./media/characters/aetherios/forepaw.svg"
  52452. }
  52453. },
  52454. hindpaw: {
  52455. height: math.unit(23, "meters"),
  52456. name: "Hindpaw",
  52457. image: {
  52458. source: "./media/characters/aetherios/hindpaw.svg"
  52459. }
  52460. },
  52461. genitals: {
  52462. height: math.unit(42, "meters"),
  52463. name: "Genitals",
  52464. image: {
  52465. source: "./media/characters/aetherios/genitals.svg"
  52466. }
  52467. },
  52468. },
  52469. [
  52470. {
  52471. name: "Normal",
  52472. height: math.unit(47.2, "meters"),
  52473. default: true
  52474. },
  52475. {
  52476. name: "Macro",
  52477. height: math.unit(160, "meters")
  52478. },
  52479. {
  52480. name: "Mega",
  52481. height: math.unit(1.87, "km")
  52482. },
  52483. {
  52484. name: "Giga",
  52485. height: math.unit(40000, "km")
  52486. },
  52487. {
  52488. name: "Stellar",
  52489. height: math.unit(158000000, "km")
  52490. },
  52491. {
  52492. name: "Cosmic",
  52493. height: math.unit(9.46e12, "km")
  52494. },
  52495. ]
  52496. ))
  52497. characterMakers.push(() => makeCharacter(
  52498. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52499. {
  52500. front: {
  52501. height: math.unit(5 + 4/12, "feet"),
  52502. weight: math.unit(80, "lb"),
  52503. name: "Front",
  52504. image: {
  52505. source: "./media/characters/mizu-gieeg/front.svg",
  52506. extra: 850/709,
  52507. bottom: 52/902
  52508. }
  52509. },
  52510. back: {
  52511. height: math.unit(5 + 4/12, "feet"),
  52512. weight: math.unit(80, "lb"),
  52513. name: "Back",
  52514. image: {
  52515. source: "./media/characters/mizu-gieeg/back.svg",
  52516. extra: 882/745,
  52517. bottom: 25/907
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(5 + 4/12, "feet"),
  52525. default: true
  52526. },
  52527. ]
  52528. ))
  52529. characterMakers.push(() => makeCharacter(
  52530. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52531. {
  52532. front: {
  52533. height: math.unit(6, "feet"),
  52534. name: "Front",
  52535. image: {
  52536. source: "./media/characters/roselle-st-papier/front.svg",
  52537. extra: 1430/1280,
  52538. bottom: 37/1467
  52539. }
  52540. },
  52541. back: {
  52542. height: math.unit(6, "feet"),
  52543. name: "Back",
  52544. image: {
  52545. source: "./media/characters/roselle-st-papier/back.svg",
  52546. extra: 1491/1296,
  52547. bottom: 23/1514
  52548. }
  52549. },
  52550. ear: {
  52551. height: math.unit(1.26, "feet"),
  52552. name: "Ear",
  52553. image: {
  52554. source: "./media/characters/roselle-st-papier/ear.svg"
  52555. }
  52556. },
  52557. },
  52558. [
  52559. {
  52560. name: "Normal",
  52561. height: math.unit(150, "feet"),
  52562. default: true
  52563. },
  52564. ]
  52565. ))
  52566. characterMakers.push(() => makeCharacter(
  52567. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52568. {
  52569. front: {
  52570. height: math.unit(1, "inches"),
  52571. name: "Front",
  52572. image: {
  52573. source: "./media/characters/valargent/front.svg",
  52574. extra: 1825/1694,
  52575. bottom: 62/1887
  52576. }
  52577. },
  52578. back: {
  52579. height: math.unit(1, "inches"),
  52580. name: "Back",
  52581. image: {
  52582. source: "./media/characters/valargent/back.svg",
  52583. extra: 1775/1682,
  52584. bottom: 88/1863
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Micro",
  52591. height: math.unit(1, "inch"),
  52592. default: true
  52593. },
  52594. ]
  52595. ))
  52596. characterMakers.push(() => makeCharacter(
  52597. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52598. {
  52599. front: {
  52600. height: math.unit(3.4, "meters"),
  52601. name: "Front",
  52602. image: {
  52603. source: "./media/characters/zarina/front.svg",
  52604. extra: 1733/1425,
  52605. bottom: 93/1826
  52606. }
  52607. },
  52608. squatting: {
  52609. height: math.unit(2.14, "meters"),
  52610. name: "Squatting",
  52611. image: {
  52612. source: "./media/characters/zarina/squatting.svg",
  52613. extra: 1073/788,
  52614. bottom: 63/1136
  52615. }
  52616. },
  52617. back: {
  52618. height: math.unit(2.14, "meters"),
  52619. name: "Back",
  52620. image: {
  52621. source: "./media/characters/zarina/back.svg",
  52622. extra: 1128/885,
  52623. bottom: 0/1128
  52624. }
  52625. },
  52626. },
  52627. [
  52628. {
  52629. name: "Normal",
  52630. height: math.unit(3.4, "meters"),
  52631. default: true
  52632. },
  52633. {
  52634. name: "Big",
  52635. height: math.unit(5, "meters")
  52636. },
  52637. {
  52638. name: "Macro",
  52639. height: math.unit(110, "meters")
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(7, "feet"),
  52648. name: "Front",
  52649. image: {
  52650. source: "./media/characters/ventus-astro-fox/front.svg",
  52651. extra: 1792/1623,
  52652. bottom: 28/1820
  52653. }
  52654. },
  52655. back: {
  52656. height: math.unit(7, "feet"),
  52657. name: "Back",
  52658. image: {
  52659. source: "./media/characters/ventus-astro-fox/back.svg",
  52660. extra: 1789/1620,
  52661. bottom: 31/1820
  52662. }
  52663. },
  52664. outfit: {
  52665. height: math.unit(7, "feet"),
  52666. name: "Outfit",
  52667. image: {
  52668. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52669. extra: 1054/925,
  52670. bottom: 15/1069
  52671. }
  52672. },
  52673. head: {
  52674. height: math.unit(1.12, "feet"),
  52675. name: "Head",
  52676. image: {
  52677. source: "./media/characters/ventus-astro-fox/head.svg",
  52678. extra: 866/504,
  52679. bottom: 0/866
  52680. }
  52681. },
  52682. hand: {
  52683. height: math.unit(1, "feet"),
  52684. name: "Hand",
  52685. image: {
  52686. source: "./media/characters/ventus-astro-fox/hand.svg"
  52687. }
  52688. },
  52689. paw: {
  52690. height: math.unit(1.5, "feet"),
  52691. name: "Paw",
  52692. image: {
  52693. source: "./media/characters/ventus-astro-fox/paw.svg"
  52694. }
  52695. },
  52696. },
  52697. [
  52698. {
  52699. name: "Normal",
  52700. height: math.unit(7, "feet"),
  52701. default: true
  52702. },
  52703. {
  52704. name: "Macro",
  52705. height: math.unit(200, "feet")
  52706. },
  52707. {
  52708. name: "Cosmic",
  52709. height: math.unit(3, "universes")
  52710. },
  52711. ]
  52712. ))
  52713. characterMakers.push(() => makeCharacter(
  52714. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52715. {
  52716. front: {
  52717. height: math.unit(3, "meters"),
  52718. weight: math.unit(7000, "lb"),
  52719. name: "Front",
  52720. image: {
  52721. source: "./media/characters/core-t/front.svg",
  52722. extra: 5729/4941,
  52723. bottom: 1129/6858
  52724. }
  52725. },
  52726. },
  52727. [
  52728. {
  52729. name: "Big",
  52730. height: math.unit(3, "meters"),
  52731. default: true
  52732. },
  52733. ]
  52734. ))
  52735. characterMakers.push(() => makeCharacter(
  52736. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52737. {
  52738. normal: {
  52739. height: math.unit(6 + 6/12, "feet"),
  52740. weight: math.unit(275, "lb"),
  52741. name: "Front",
  52742. image: {
  52743. source: "./media/characters/cadbunny/normal.svg",
  52744. extra: 1129/947,
  52745. bottom: 93/1222
  52746. },
  52747. default: true,
  52748. form: "normal"
  52749. },
  52750. gigantamax: {
  52751. height: math.unit(26, "feet"),
  52752. weight: math.unit(16000, "lb"),
  52753. name: "Front",
  52754. image: {
  52755. source: "./media/characters/cadbunny/gigantamax.svg",
  52756. extra: 1133/944,
  52757. bottom: 90/1223
  52758. },
  52759. default: true,
  52760. form: "gigantamax"
  52761. },
  52762. },
  52763. [
  52764. {
  52765. name: "Normal",
  52766. height: math.unit(6 + 6/12, "feet"),
  52767. default: true,
  52768. form: "normal"
  52769. },
  52770. {
  52771. name: "Small",
  52772. height: math.unit(26, "feet"),
  52773. default: true,
  52774. form: "gigantamax"
  52775. },
  52776. {
  52777. name: "Large",
  52778. height: math.unit(78, "feet"),
  52779. form: "gigantamax"
  52780. },
  52781. ],
  52782. {
  52783. "normal": {
  52784. name: "Normal",
  52785. default: true
  52786. },
  52787. "gigantamax": {
  52788. name: "Gigantamax"
  52789. }
  52790. }
  52791. ))
  52792. characterMakers.push(() => makeCharacter(
  52793. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52794. {
  52795. anthroFront: {
  52796. height: math.unit(8, "feet"),
  52797. weight: math.unit(300, "lb"),
  52798. name: "Front",
  52799. image: {
  52800. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52801. extra: 1272/1176,
  52802. bottom: 53/1325
  52803. },
  52804. form: "anthro",
  52805. default: true
  52806. },
  52807. feralSide: {
  52808. height: math.unit(4, "feet"),
  52809. weight: math.unit(250, "lb"),
  52810. name: "Side",
  52811. image: {
  52812. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52813. extra: 731/621,
  52814. bottom: 0/731
  52815. },
  52816. form: "feral",
  52817. default: true
  52818. },
  52819. },
  52820. [
  52821. {
  52822. name: "Regular",
  52823. height: math.unit(8, "feet"),
  52824. form: "anthro"
  52825. },
  52826. {
  52827. name: "Macro",
  52828. height: math.unit(250, "feet"),
  52829. form: "anthro",
  52830. default: true
  52831. },
  52832. {
  52833. name: "Regular",
  52834. height: math.unit(4, "feet"),
  52835. form: "feral"
  52836. },
  52837. {
  52838. name: "Macro",
  52839. height: math.unit(125, "feet"),
  52840. form: "feral",
  52841. default: true
  52842. },
  52843. ],
  52844. {
  52845. "anthro": {
  52846. name: "Anthro",
  52847. default: true
  52848. },
  52849. "feral": {
  52850. name: "Feral",
  52851. },
  52852. }
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52856. {
  52857. front: {
  52858. height: math.unit(11 + 10/12, "feet"),
  52859. weight: math.unit(1587, "kg"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/maple-javira-dragon/front.svg",
  52863. extra: 1136/744,
  52864. bottom: 73/1209
  52865. }
  52866. },
  52867. side: {
  52868. height: math.unit(11 + 10/12, "feet"),
  52869. weight: math.unit(1587, "kg"),
  52870. name: "Side",
  52871. image: {
  52872. source: "./media/characters/maple-javira-dragon/side.svg",
  52873. extra: 712/505,
  52874. bottom: 17/729
  52875. }
  52876. },
  52877. head: {
  52878. height: math.unit(8.05, "feet"),
  52879. name: "Head",
  52880. image: {
  52881. source: "./media/characters/maple-javira-dragon/head.svg",
  52882. extra: 1420/1344,
  52883. bottom: 0/1420
  52884. }
  52885. },
  52886. },
  52887. [
  52888. {
  52889. name: "Normal",
  52890. height: math.unit(11 + 10/12, "feet"),
  52891. default: true
  52892. },
  52893. ]
  52894. ))
  52895. characterMakers.push(() => makeCharacter(
  52896. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52897. {
  52898. front: {
  52899. height: math.unit(117, "cm"),
  52900. weight: math.unit(50, "kg"),
  52901. name: "Front",
  52902. image: {
  52903. source: "./media/characters/sonia-wyverntail/front.svg",
  52904. extra: 708/592,
  52905. bottom: 25/733
  52906. }
  52907. },
  52908. },
  52909. [
  52910. {
  52911. name: "Normal",
  52912. height: math.unit(117, "cm"),
  52913. default: true
  52914. },
  52915. ]
  52916. ))
  52917. characterMakers.push(() => makeCharacter(
  52918. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52919. {
  52920. front: {
  52921. height: math.unit(6 + 5/12, "feet"),
  52922. name: "Front",
  52923. image: {
  52924. source: "./media/characters/micah/front.svg",
  52925. extra: 1758/1546,
  52926. bottom: 214/1972
  52927. }
  52928. },
  52929. },
  52930. [
  52931. {
  52932. name: "Normal",
  52933. height: math.unit(6 + 5/12, "feet"),
  52934. default: true
  52935. },
  52936. ]
  52937. ))
  52938. characterMakers.push(() => makeCharacter(
  52939. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52940. {
  52941. front: {
  52942. height: math.unit(1.75, "meters"),
  52943. weight: math.unit(100, "kg"),
  52944. name: "Front",
  52945. image: {
  52946. source: "./media/characters/zarya/front.svg",
  52947. extra: 741/735,
  52948. bottom: 44/785
  52949. },
  52950. extraAttributes: {
  52951. "tailLength": {
  52952. name: "Tail Length",
  52953. power: 1,
  52954. type: "length",
  52955. base: math.unit(180, "cm")
  52956. },
  52957. "pawLength": {
  52958. name: "Paw Length",
  52959. power: 1,
  52960. type: "length",
  52961. base: math.unit(31, "cm")
  52962. },
  52963. }
  52964. },
  52965. side: {
  52966. height: math.unit(1.75, "meters"),
  52967. weight: math.unit(100, "kg"),
  52968. name: "Side",
  52969. image: {
  52970. source: "./media/characters/zarya/side.svg",
  52971. extra: 776/770,
  52972. bottom: 17/793
  52973. },
  52974. extraAttributes: {
  52975. "tailLength": {
  52976. name: "Tail Length",
  52977. power: 1,
  52978. type: "length",
  52979. base: math.unit(180, "cm")
  52980. },
  52981. "pawLength": {
  52982. name: "Paw Length",
  52983. power: 1,
  52984. type: "length",
  52985. base: math.unit(31, "cm")
  52986. },
  52987. }
  52988. },
  52989. back: {
  52990. height: math.unit(1.75, "meters"),
  52991. weight: math.unit(100, "kg"),
  52992. name: "Back",
  52993. image: {
  52994. source: "./media/characters/zarya/back.svg",
  52995. extra: 741/735,
  52996. bottom: 44/785
  52997. },
  52998. extraAttributes: {
  52999. "tailLength": {
  53000. name: "Tail Length",
  53001. power: 1,
  53002. type: "length",
  53003. base: math.unit(180, "cm")
  53004. },
  53005. "pawLength": {
  53006. name: "Paw Length",
  53007. power: 1,
  53008. type: "length",
  53009. base: math.unit(31, "cm")
  53010. },
  53011. }
  53012. },
  53013. frontNoTail: {
  53014. height: math.unit(1.75, "meters"),
  53015. weight: math.unit(100, "kg"),
  53016. name: "Front (No Tail)",
  53017. image: {
  53018. source: "./media/characters/zarya/front-no-tail.svg",
  53019. extra: 741/735,
  53020. bottom: 44/785
  53021. },
  53022. extraAttributes: {
  53023. "tailLength": {
  53024. name: "Tail Length",
  53025. power: 1,
  53026. type: "length",
  53027. base: math.unit(180, "cm")
  53028. },
  53029. "pawLength": {
  53030. name: "Paw Length",
  53031. power: 1,
  53032. type: "length",
  53033. base: math.unit(31, "cm")
  53034. },
  53035. }
  53036. },
  53037. dressed: {
  53038. height: math.unit(1.75, "meters"),
  53039. weight: math.unit(100, "kg"),
  53040. name: "Dressed",
  53041. image: {
  53042. source: "./media/characters/zarya/dressed.svg",
  53043. extra: 683/672,
  53044. bottom: 79/762
  53045. },
  53046. extraAttributes: {
  53047. "tailLength": {
  53048. name: "Tail Length",
  53049. power: 1,
  53050. type: "length",
  53051. base: math.unit(180, "cm")
  53052. },
  53053. "pawLength": {
  53054. name: "Paw Length",
  53055. power: 1,
  53056. type: "length",
  53057. base: math.unit(31, "cm")
  53058. },
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Micro",
  53065. height: math.unit(5, "cm")
  53066. },
  53067. {
  53068. name: "Normal",
  53069. height: math.unit(1.75, "meters"),
  53070. default: true
  53071. },
  53072. {
  53073. name: "Macro",
  53074. height: math.unit(122, "meters")
  53075. },
  53076. ]
  53077. ))
  53078. characterMakers.push(() => makeCharacter(
  53079. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  53080. {
  53081. front: {
  53082. height: math.unit(7.5, "feet"),
  53083. name: "Front",
  53084. image: {
  53085. source: "./media/characters/sven-hatisson/front.svg",
  53086. extra: 917/857,
  53087. bottom: 42/959
  53088. }
  53089. },
  53090. back: {
  53091. height: math.unit(7.5, "feet"),
  53092. name: "Back",
  53093. image: {
  53094. source: "./media/characters/sven-hatisson/back.svg",
  53095. extra: 903/856,
  53096. bottom: 15/918
  53097. }
  53098. },
  53099. },
  53100. [
  53101. {
  53102. name: "Base Height",
  53103. height: math.unit(7.5, "feet")
  53104. },
  53105. {
  53106. name: "Usual Height",
  53107. height: math.unit(13.5, "feet"),
  53108. default: true
  53109. },
  53110. {
  53111. name: "Smaller Macro",
  53112. height: math.unit(85, "feet")
  53113. },
  53114. {
  53115. name: "Moderate Macro",
  53116. height: math.unit(320, "feet")
  53117. },
  53118. {
  53119. name: "Large Macro",
  53120. height: math.unit(1000, "feet")
  53121. },
  53122. {
  53123. name: "Largest Size",
  53124. height: math.unit(2, "miles")
  53125. },
  53126. ]
  53127. ))
  53128. characterMakers.push(() => makeCharacter(
  53129. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53130. {
  53131. side: {
  53132. height: math.unit(1.8, "meters"),
  53133. weight: math.unit(275, "kg"),
  53134. name: "Side",
  53135. image: {
  53136. source: "./media/characters/terra/side.svg",
  53137. extra: 1273/1147,
  53138. bottom: 0/1273
  53139. }
  53140. },
  53141. },
  53142. [
  53143. {
  53144. name: "Normal",
  53145. height: math.unit(16.2, "meters"),
  53146. default: true
  53147. },
  53148. ]
  53149. ))
  53150. characterMakers.push(() => makeCharacter(
  53151. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53152. {
  53153. borzoiFront: {
  53154. height: math.unit(6 + 9/12, "feet"),
  53155. name: "Front",
  53156. image: {
  53157. source: "./media/characters/rae/borzoi-front.svg",
  53158. extra: 1161/1098,
  53159. bottom: 31/1192
  53160. },
  53161. form: "borzoi",
  53162. default: true
  53163. },
  53164. werewolfFront: {
  53165. height: math.unit(8 + 7/12, "feet"),
  53166. name: "Front",
  53167. image: {
  53168. source: "./media/characters/rae/werewolf-front.svg",
  53169. extra: 1411/1334,
  53170. bottom: 127/1538
  53171. },
  53172. form: "werewolf",
  53173. default: true
  53174. },
  53175. },
  53176. [
  53177. {
  53178. name: "Normal",
  53179. height: math.unit(6 + 9/12, "feet"),
  53180. default: true,
  53181. form: "borzoi"
  53182. },
  53183. {
  53184. name: "Normal",
  53185. height: math.unit(8 + 7/12, "feet"),
  53186. default: true,
  53187. form: "werewolf"
  53188. },
  53189. ],
  53190. {
  53191. "borzoi": {
  53192. name: "Borzoi",
  53193. default: true
  53194. },
  53195. "werewolf": {
  53196. name: "Werewolf",
  53197. },
  53198. }
  53199. ))
  53200. characterMakers.push(() => makeCharacter(
  53201. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53202. {
  53203. front: {
  53204. height: math.unit(8 + 7/12, "feet"),
  53205. weight: math.unit(482, "lb"),
  53206. name: "Front",
  53207. image: {
  53208. source: "./media/characters/kit/front.svg",
  53209. extra: 1247/1103,
  53210. bottom: 41/1288
  53211. }
  53212. },
  53213. back: {
  53214. height: math.unit(8 + 7/12, "feet"),
  53215. weight: math.unit(482, "lb"),
  53216. name: "Back",
  53217. image: {
  53218. source: "./media/characters/kit/back.svg",
  53219. extra: 1252/1123,
  53220. bottom: 21/1273
  53221. }
  53222. },
  53223. paw: {
  53224. height: math.unit(1.46, "feet"),
  53225. name: "Paw",
  53226. image: {
  53227. source: "./media/characters/kit/paw.svg"
  53228. }
  53229. },
  53230. },
  53231. [
  53232. {
  53233. name: "Normal",
  53234. height: math.unit(2.61, "meters"),
  53235. default: true
  53236. },
  53237. {
  53238. name: "\"Tall\"",
  53239. height: math.unit(8.21, "meters")
  53240. },
  53241. {
  53242. name: "Tall",
  53243. height: math.unit(19.6, "meters")
  53244. },
  53245. {
  53246. name: "Very Tall",
  53247. height: math.unit(57.91, "meters")
  53248. },
  53249. {
  53250. name: "Semi-Macro",
  53251. height: math.unit(138.64, "meters")
  53252. },
  53253. {
  53254. name: "Macro",
  53255. height: math.unit(831.99, "meters")
  53256. },
  53257. {
  53258. name: "EX-Macro",
  53259. height: math.unit(96451121, "meters")
  53260. },
  53261. {
  53262. name: "S1-Omnipotent",
  53263. height: math.unit(4.42074e+9, "meters")
  53264. },
  53265. {
  53266. name: "S2-Omnipotent",
  53267. height: math.unit(9.42074e+17, "meters")
  53268. },
  53269. {
  53270. name: "Omnipotent",
  53271. height: math.unit(4.23112e+24, "meters")
  53272. },
  53273. {
  53274. name: "Hypergod",
  53275. height: math.unit(5.05176e+27, "meters")
  53276. },
  53277. {
  53278. name: "Hypergod-EX",
  53279. height: math.unit(9.45532e+49, "meters")
  53280. },
  53281. {
  53282. name: "Hypergod-SP",
  53283. height: math.unit(9.45532e+195, "meters")
  53284. },
  53285. ]
  53286. ))
  53287. characterMakers.push(() => makeCharacter(
  53288. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53289. {
  53290. side: {
  53291. height: math.unit(0.6, "meters"),
  53292. weight: math.unit(24, "kg"),
  53293. name: "Side",
  53294. image: {
  53295. source: "./media/characters/celeste/side.svg",
  53296. extra: 810/517,
  53297. bottom: 53/863
  53298. }
  53299. },
  53300. },
  53301. [
  53302. {
  53303. name: "Velociraptor",
  53304. height: math.unit(0.6, "meters"),
  53305. default: true
  53306. },
  53307. {
  53308. name: "Utahraptor",
  53309. height: math.unit(1.8, "meters")
  53310. },
  53311. {
  53312. name: "Gallimimus",
  53313. height: math.unit(4.0, "meters")
  53314. },
  53315. {
  53316. name: "Large",
  53317. height: math.unit(20, "meters")
  53318. },
  53319. {
  53320. name: "Planetary",
  53321. height: math.unit(50, "megameters")
  53322. },
  53323. {
  53324. name: "Stellar",
  53325. height: math.unit(1.5, "gigameters")
  53326. },
  53327. {
  53328. name: "Galactic",
  53329. height: math.unit(100, "exameters")
  53330. },
  53331. ]
  53332. ))
  53333. characterMakers.push(() => makeCharacter(
  53334. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53335. {
  53336. front: {
  53337. height: math.unit(6, "feet"),
  53338. weight: math.unit(210, "lb"),
  53339. name: "Front",
  53340. image: {
  53341. source: "./media/characters/glacia/front.svg",
  53342. extra: 958/901,
  53343. bottom: 45/1003
  53344. }
  53345. },
  53346. },
  53347. [
  53348. {
  53349. name: "Macro",
  53350. height: math.unit(1000, "meters"),
  53351. default: true
  53352. },
  53353. ]
  53354. ))
  53355. characterMakers.push(() => makeCharacter(
  53356. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53357. {
  53358. front: {
  53359. height: math.unit(4, "meters"),
  53360. name: "Front",
  53361. image: {
  53362. source: "./media/characters/giri/front.svg",
  53363. extra: 966/894,
  53364. bottom: 21/987
  53365. }
  53366. },
  53367. },
  53368. [
  53369. {
  53370. name: "Normal",
  53371. height: math.unit(4, "meters"),
  53372. default: true
  53373. },
  53374. ]
  53375. ))
  53376. characterMakers.push(() => makeCharacter(
  53377. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53378. {
  53379. back: {
  53380. height: math.unit(4, "feet"),
  53381. weight: math.unit(37, "lb"),
  53382. name: "Back",
  53383. image: {
  53384. source: "./media/characters/tin/back.svg",
  53385. extra: 845/780,
  53386. bottom: 28/873
  53387. }
  53388. },
  53389. },
  53390. [
  53391. {
  53392. name: "Normal",
  53393. height: math.unit(4, "feet"),
  53394. default: true
  53395. },
  53396. ]
  53397. ))
  53398. characterMakers.push(() => makeCharacter(
  53399. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53400. {
  53401. front: {
  53402. height: math.unit(25, "feet"),
  53403. name: "Front",
  53404. image: {
  53405. source: "./media/characters/cadenza-vivace/front.svg",
  53406. extra: 1842/1578,
  53407. bottom: 30/1872
  53408. }
  53409. },
  53410. },
  53411. [
  53412. {
  53413. name: "Macro",
  53414. height: math.unit(25, "feet"),
  53415. default: true
  53416. },
  53417. ]
  53418. ))
  53419. characterMakers.push(() => makeCharacter(
  53420. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53421. {
  53422. front: {
  53423. height: math.unit(10, "feet"),
  53424. weight: math.unit(625, "kg"),
  53425. name: "Front",
  53426. image: {
  53427. source: "./media/characters/zain/front.svg",
  53428. extra: 1682/1498,
  53429. bottom: 223/1905
  53430. }
  53431. },
  53432. back: {
  53433. height: math.unit(10, "feet"),
  53434. weight: math.unit(625, "kg"),
  53435. name: "Back",
  53436. image: {
  53437. source: "./media/characters/zain/back.svg",
  53438. extra: 1814/1657,
  53439. bottom: 152/1966
  53440. }
  53441. },
  53442. head: {
  53443. height: math.unit(10, "feet"),
  53444. weight: math.unit(625, "kg"),
  53445. name: "Head",
  53446. image: {
  53447. source: "./media/characters/zain/head.svg",
  53448. extra: 1059/762,
  53449. bottom: 0/1059
  53450. }
  53451. },
  53452. },
  53453. [
  53454. {
  53455. name: "Normal",
  53456. height: math.unit(10, "feet"),
  53457. default: true
  53458. },
  53459. ]
  53460. ))
  53461. characterMakers.push(() => makeCharacter(
  53462. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53463. {
  53464. front: {
  53465. height: math.unit(6 + 5/12, "feet"),
  53466. weight: math.unit(750, "lb"),
  53467. name: "Front",
  53468. image: {
  53469. source: "./media/characters/ruchex/front.svg",
  53470. extra: 877/820,
  53471. bottom: 17/894
  53472. },
  53473. extraAttributes: {
  53474. "width": {
  53475. name: "Width",
  53476. power: 1,
  53477. type: "length",
  53478. base: math.unit(4.757, "feet")
  53479. },
  53480. }
  53481. },
  53482. },
  53483. [
  53484. {
  53485. name: "Normal",
  53486. height: math.unit(6 + 5/12, "feet"),
  53487. default: true
  53488. },
  53489. ]
  53490. ))
  53491. characterMakers.push(() => makeCharacter(
  53492. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53493. {
  53494. dressedFront: {
  53495. height: math.unit(191, "cm"),
  53496. weight: math.unit(80, "kg"),
  53497. name: "Front",
  53498. image: {
  53499. source: "./media/characters/buster/dressed-front.svg",
  53500. extra: 1022/973,
  53501. bottom: 69/1091
  53502. }
  53503. },
  53504. dressedBack: {
  53505. height: math.unit(191, "cm"),
  53506. weight: math.unit(80, "kg"),
  53507. name: "Back",
  53508. image: {
  53509. source: "./media/characters/buster/dressed-back.svg",
  53510. extra: 1018/970,
  53511. bottom: 55/1073
  53512. }
  53513. },
  53514. nudeFront: {
  53515. height: math.unit(191, "cm"),
  53516. weight: math.unit(80, "kg"),
  53517. name: "Front (Nude)",
  53518. image: {
  53519. source: "./media/characters/buster/nude-front.svg",
  53520. extra: 1022/973,
  53521. bottom: 69/1091
  53522. }
  53523. },
  53524. nudeBack: {
  53525. height: math.unit(191, "cm"),
  53526. weight: math.unit(80, "kg"),
  53527. name: "Back (Nude)",
  53528. image: {
  53529. source: "./media/characters/buster/nude-back.svg",
  53530. extra: 1018/970,
  53531. bottom: 55/1073
  53532. }
  53533. },
  53534. dick: {
  53535. height: math.unit(2.59, "feet"),
  53536. name: "Dick",
  53537. image: {
  53538. source: "./media/characters/buster/dick.svg"
  53539. }
  53540. },
  53541. ass: {
  53542. height: math.unit(1.2, "feet"),
  53543. name: "Ass",
  53544. image: {
  53545. source: "./media/characters/buster/ass.svg"
  53546. }
  53547. },
  53548. },
  53549. [
  53550. {
  53551. name: "Normal",
  53552. height: math.unit(191, "cm"),
  53553. default: true
  53554. },
  53555. ]
  53556. ))
  53557. characterMakers.push(() => makeCharacter(
  53558. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53559. {
  53560. side: {
  53561. height: math.unit(8.1, "feet"),
  53562. weight: math.unit(3500, "lb"),
  53563. name: "Side",
  53564. image: {
  53565. source: "./media/characters/sonya/side.svg",
  53566. extra: 1730/1317,
  53567. bottom: 86/1816
  53568. }
  53569. },
  53570. },
  53571. [
  53572. {
  53573. name: "Normal",
  53574. height: math.unit(8.1, "feet"),
  53575. default: true
  53576. },
  53577. ]
  53578. ))
  53579. characterMakers.push(() => makeCharacter(
  53580. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53581. {
  53582. front: {
  53583. height: math.unit(6, "feet"),
  53584. weight: math.unit(150, "lb"),
  53585. name: "Front",
  53586. image: {
  53587. source: "./media/characters/cadence-andrysiak/front.svg",
  53588. extra: 1164/1121,
  53589. bottom: 60/1224
  53590. }
  53591. },
  53592. back: {
  53593. height: math.unit(6, "feet"),
  53594. weight: math.unit(150, "lb"),
  53595. name: "Back",
  53596. image: {
  53597. source: "./media/characters/cadence-andrysiak/back.svg",
  53598. extra: 1200/1165,
  53599. bottom: 9/1209
  53600. }
  53601. },
  53602. dressed: {
  53603. height: math.unit(6, "feet"),
  53604. weight: math.unit(150, "lb"),
  53605. name: "Dressed",
  53606. image: {
  53607. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53608. extra: 1164/1121,
  53609. bottom: 60/1224
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Micro",
  53616. height: math.unit(1, "mm")
  53617. },
  53618. {
  53619. name: "Normal",
  53620. height: math.unit(6, "feet"),
  53621. default: true
  53622. },
  53623. ]
  53624. ))
  53625. characterMakers.push(() => makeCharacter(
  53626. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53627. {
  53628. front: {
  53629. height: math.unit(60, "inches"),
  53630. weight: math.unit(16, "lb"),
  53631. preyCapacity: math.unit(80, "liters"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/penny-lynx/front.svg",
  53635. extra: 1959/1769,
  53636. bottom: 49/2008
  53637. }
  53638. },
  53639. },
  53640. [
  53641. {
  53642. name: "Nokia",
  53643. height: math.unit(2, "inches")
  53644. },
  53645. {
  53646. name: "Desktop",
  53647. height: math.unit(24, "inches")
  53648. },
  53649. {
  53650. name: "TV",
  53651. height: math.unit(60, "inches")
  53652. },
  53653. {
  53654. name: "Jumbotron",
  53655. height: math.unit(12, "feet")
  53656. },
  53657. {
  53658. name: "Billboard",
  53659. height: math.unit(48, "feet"),
  53660. default: true
  53661. },
  53662. {
  53663. name: "IMAX",
  53664. height: math.unit(96, "feet")
  53665. },
  53666. {
  53667. name: "SINGULARITY",
  53668. height: math.unit(864938, "miles")
  53669. },
  53670. ]
  53671. ))
  53672. characterMakers.push(() => makeCharacter(
  53673. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53674. {
  53675. front: {
  53676. height: math.unit(5 + 4/12, "feet"),
  53677. weight: math.unit(230, "lb"),
  53678. name: "Front",
  53679. image: {
  53680. source: "./media/characters/sukebe/front.svg",
  53681. extra: 2130/2038,
  53682. bottom: 90/2220
  53683. }
  53684. },
  53685. back: {
  53686. height: math.unit(3.48, "feet"),
  53687. weight: math.unit(230, "lb"),
  53688. name: "Back",
  53689. image: {
  53690. source: "./media/characters/sukebe/back.svg",
  53691. extra: 1670/1604,
  53692. bottom: 0/1670
  53693. }
  53694. },
  53695. },
  53696. [
  53697. {
  53698. name: "Normal",
  53699. height: math.unit(5 + 4/12, "feet"),
  53700. default: true
  53701. },
  53702. ]
  53703. ))
  53704. characterMakers.push(() => makeCharacter(
  53705. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53706. {
  53707. front: {
  53708. height: math.unit(6, "feet"),
  53709. name: "Front",
  53710. image: {
  53711. source: "./media/characters/nylla/front.svg",
  53712. extra: 1868/1699,
  53713. bottom: 97/1965
  53714. }
  53715. },
  53716. back: {
  53717. height: math.unit(6, "feet"),
  53718. name: "Back",
  53719. image: {
  53720. source: "./media/characters/nylla/back.svg",
  53721. extra: 1889/1712,
  53722. bottom: 93/1982
  53723. }
  53724. },
  53725. frontNsfw: {
  53726. height: math.unit(6, "feet"),
  53727. name: "Front (NSFW)",
  53728. image: {
  53729. source: "./media/characters/nylla/front-nsfw.svg",
  53730. extra: 1868/1699,
  53731. bottom: 97/1965
  53732. },
  53733. extraAttributes: {
  53734. "dickLength": {
  53735. name: "Dick Length",
  53736. power: 1,
  53737. type: "length",
  53738. base: math.unit(1.4, "feet")
  53739. },
  53740. "cumVolume": {
  53741. name: "Cum Volume",
  53742. power: 3,
  53743. type: "volume",
  53744. base: math.unit(100, "mL")
  53745. },
  53746. }
  53747. },
  53748. backNsfw: {
  53749. height: math.unit(6, "feet"),
  53750. name: "Back (NSFW)",
  53751. image: {
  53752. source: "./media/characters/nylla/back-nsfw.svg",
  53753. extra: 1889/1712,
  53754. bottom: 93/1982
  53755. }
  53756. },
  53757. maw: {
  53758. height: math.unit(2.10, "feet"),
  53759. name: "Maw",
  53760. image: {
  53761. source: "./media/characters/nylla/maw.svg"
  53762. }
  53763. },
  53764. paws: {
  53765. height: math.unit(2.06, "feet"),
  53766. name: "Paws",
  53767. image: {
  53768. source: "./media/characters/nylla/paws.svg"
  53769. }
  53770. },
  53771. muzzle: {
  53772. height: math.unit(0.61, "feet"),
  53773. name: "Muzzle",
  53774. image: {
  53775. source: "./media/characters/nylla/muzzle.svg"
  53776. }
  53777. },
  53778. sheath: {
  53779. height: math.unit(1.305, "feet"),
  53780. name: "Sheath",
  53781. image: {
  53782. source: "./media/characters/nylla/sheath.svg"
  53783. }
  53784. },
  53785. },
  53786. [
  53787. {
  53788. name: "Micro",
  53789. height: math.unit(7.5, "inches")
  53790. },
  53791. {
  53792. name: "Normal",
  53793. height: math.unit(7, "feet"),
  53794. default: true
  53795. },
  53796. {
  53797. name: "Macro",
  53798. height: math.unit(60, "feet")
  53799. },
  53800. {
  53801. name: "Mega",
  53802. height: math.unit(200, "feet")
  53803. },
  53804. ]
  53805. ))
  53806. characterMakers.push(() => makeCharacter(
  53807. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53808. {
  53809. front: {
  53810. height: math.unit(10, "feet"),
  53811. weight: math.unit(2300, "lb"),
  53812. name: "Front",
  53813. image: {
  53814. source: "./media/characters/hunt3r/front.svg",
  53815. extra: 1909/1742,
  53816. bottom: 46/1955
  53817. }
  53818. },
  53819. },
  53820. [
  53821. {
  53822. name: "Normal",
  53823. height: math.unit(10, "feet"),
  53824. default: true
  53825. },
  53826. ]
  53827. ))
  53828. characterMakers.push(() => makeCharacter(
  53829. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53830. {
  53831. dressed: {
  53832. height: math.unit(11, "feet"),
  53833. weight: math.unit(18500, "lb"),
  53834. preyCapacity: math.unit(9, "people"),
  53835. name: "Dressed",
  53836. image: {
  53837. source: "./media/characters/cylphis/dressed.svg",
  53838. extra: 1028/1003,
  53839. bottom: 75/1103
  53840. },
  53841. },
  53842. undressed: {
  53843. height: math.unit(11, "feet"),
  53844. weight: math.unit(18500, "lb"),
  53845. preyCapacity: math.unit(9, "people"),
  53846. name: "Undressed",
  53847. image: {
  53848. source: "./media/characters/cylphis/undressed.svg",
  53849. extra: 1028/1003,
  53850. bottom: 75/1103
  53851. }
  53852. },
  53853. full: {
  53854. height: math.unit(11, "feet"),
  53855. weight: math.unit(18500 + 150*9, "lb"),
  53856. preyCapacity: math.unit(9, "people"),
  53857. name: "Full",
  53858. image: {
  53859. source: "./media/characters/cylphis/full.svg",
  53860. extra: 1028/1003,
  53861. bottom: 75/1103
  53862. }
  53863. },
  53864. },
  53865. [
  53866. {
  53867. name: "Small",
  53868. height: math.unit(8, "feet")
  53869. },
  53870. {
  53871. name: "Normal",
  53872. height: math.unit(11, "feet"),
  53873. default: true
  53874. },
  53875. ]
  53876. ))
  53877. characterMakers.push(() => makeCharacter(
  53878. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53879. {
  53880. front: {
  53881. height: math.unit(2 + 7/12, "feet"),
  53882. name: "Front",
  53883. image: {
  53884. source: "./media/characters/orishan/front.svg",
  53885. extra: 1058/1023,
  53886. bottom: 23/1081
  53887. }
  53888. },
  53889. back: {
  53890. height: math.unit(2 + 7/12, "feet"),
  53891. name: "Back",
  53892. image: {
  53893. source: "./media/characters/orishan/back.svg",
  53894. extra: 1058/1023,
  53895. bottom: 23/1081
  53896. }
  53897. },
  53898. },
  53899. [
  53900. {
  53901. name: "Micro",
  53902. height: math.unit(2, "cm")
  53903. },
  53904. {
  53905. name: "Normal",
  53906. height: math.unit(2 + 7/12, "feet"),
  53907. default: true
  53908. },
  53909. ]
  53910. ))
  53911. characterMakers.push(() => makeCharacter(
  53912. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53913. {
  53914. front: {
  53915. height: math.unit(3, "meters"),
  53916. weight: math.unit(508, "kg"),
  53917. name: "Front",
  53918. image: {
  53919. source: "./media/characters/seranis/front.svg",
  53920. extra: 1478/1454,
  53921. bottom: 41/1519
  53922. }
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Normal",
  53928. height: math.unit(3, "meters"),
  53929. default: true
  53930. },
  53931. {
  53932. name: "Macro",
  53933. height: math.unit(108, "meters")
  53934. },
  53935. {
  53936. name: "Megamacro",
  53937. height: math.unit(1250, "meters")
  53938. },
  53939. ]
  53940. ))
  53941. characterMakers.push(() => makeCharacter(
  53942. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53943. {
  53944. undressed: {
  53945. height: math.unit(5 + 3/12, "feet"),
  53946. name: "Undressed",
  53947. image: {
  53948. source: "./media/characters/ankou/undressed.svg",
  53949. extra: 1301/1213,
  53950. bottom: 87/1388
  53951. }
  53952. },
  53953. dressed: {
  53954. height: math.unit(5 + 3/12, "feet"),
  53955. name: "Dressed",
  53956. image: {
  53957. source: "./media/characters/ankou/dressed.svg",
  53958. extra: 1301/1213,
  53959. bottom: 87/1388
  53960. }
  53961. },
  53962. head: {
  53963. height: math.unit(1.61, "feet"),
  53964. name: "Head",
  53965. image: {
  53966. source: "./media/characters/ankou/head.svg"
  53967. }
  53968. },
  53969. },
  53970. [
  53971. {
  53972. name: "Normal",
  53973. height: math.unit(5 + 3/12, "feet"),
  53974. default: true
  53975. },
  53976. ]
  53977. ))
  53978. characterMakers.push(() => makeCharacter(
  53979. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53980. {
  53981. side: {
  53982. height: math.unit(6 + 3/12, "feet"),
  53983. weight: math.unit(200, "kg"),
  53984. name: "Side",
  53985. image: {
  53986. source: "./media/characters/juniper-skunktaur/side.svg",
  53987. extra: 1574/1229,
  53988. bottom: 38/1612
  53989. }
  53990. },
  53991. front: {
  53992. height: math.unit(6 + 3/12, "feet"),
  53993. weight: math.unit(200, "kg"),
  53994. name: "Front",
  53995. image: {
  53996. source: "./media/characters/juniper-skunktaur/front.svg",
  53997. extra: 1337/1278,
  53998. bottom: 22/1359
  53999. }
  54000. },
  54001. back: {
  54002. height: math.unit(6 + 3/12, "feet"),
  54003. weight: math.unit(200, "kg"),
  54004. name: "Back",
  54005. image: {
  54006. source: "./media/characters/juniper-skunktaur/back.svg",
  54007. extra: 1618/1273,
  54008. bottom: 13/1631
  54009. }
  54010. },
  54011. top: {
  54012. height: math.unit(2.62, "feet"),
  54013. weight: math.unit(200, "kg"),
  54014. name: "Top",
  54015. image: {
  54016. source: "./media/characters/juniper-skunktaur/top.svg"
  54017. }
  54018. },
  54019. },
  54020. [
  54021. {
  54022. name: "Normal",
  54023. height: math.unit(6 + 3/12, "feet"),
  54024. default: true
  54025. },
  54026. ]
  54027. ))
  54028. characterMakers.push(() => makeCharacter(
  54029. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  54030. {
  54031. front: {
  54032. height: math.unit(20.5, "feet"),
  54033. name: "Front",
  54034. image: {
  54035. source: "./media/characters/rei/front.svg",
  54036. extra: 1349/1195,
  54037. bottom: 31/1380
  54038. }
  54039. },
  54040. back: {
  54041. height: math.unit(20.5, "feet"),
  54042. name: "Back",
  54043. image: {
  54044. source: "./media/characters/rei/back.svg",
  54045. extra: 1358/1204,
  54046. bottom: 22/1380
  54047. }
  54048. },
  54049. pawsDigi: {
  54050. height: math.unit(3.45, "feet"),
  54051. name: "Paws (Digi)",
  54052. image: {
  54053. source: "./media/characters/rei/paws-digi.svg"
  54054. }
  54055. },
  54056. pawsPlanti: {
  54057. height: math.unit(3.45, "feet"),
  54058. name: "Paws (Planti)",
  54059. image: {
  54060. source: "./media/characters/rei/paws-planti.svg"
  54061. }
  54062. },
  54063. },
  54064. [
  54065. {
  54066. name: "Normal",
  54067. height: math.unit(20.5, "feet"),
  54068. default: true
  54069. },
  54070. ]
  54071. ))
  54072. characterMakers.push(() => makeCharacter(
  54073. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  54074. {
  54075. front: {
  54076. height: math.unit(5 + 11/12, "feet"),
  54077. name: "Front",
  54078. image: {
  54079. source: "./media/characters/carina/front.svg",
  54080. extra: 1720/1449,
  54081. bottom: 14/1734
  54082. }
  54083. },
  54084. back: {
  54085. height: math.unit(5 + 11/12, "feet"),
  54086. name: "Back",
  54087. image: {
  54088. source: "./media/characters/carina/back.svg",
  54089. extra: 1493/1445,
  54090. bottom: 17/1510
  54091. }
  54092. },
  54093. paw: {
  54094. height: math.unit(0.92, "feet"),
  54095. name: "Paw",
  54096. image: {
  54097. source: "./media/characters/carina/paw.svg"
  54098. }
  54099. },
  54100. },
  54101. [
  54102. {
  54103. name: "Normal",
  54104. height: math.unit(5 + 11/12, "feet"),
  54105. default: true
  54106. },
  54107. ]
  54108. ))
  54109. characterMakers.push(() => makeCharacter(
  54110. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54111. {
  54112. normal_front: {
  54113. height: math.unit(4.88, "meters"),
  54114. name: "Front",
  54115. image: {
  54116. source: "./media/characters/maya/normal-front.svg",
  54117. extra: 1222/1145,
  54118. bottom: 57/1279
  54119. },
  54120. form: "normal",
  54121. default: true
  54122. },
  54123. monstrous_front: {
  54124. height: math.unit(10, "meters"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/maya/monstrous-front.svg",
  54128. extra: 1523/1109,
  54129. bottom: 113/1636
  54130. },
  54131. form: "monstrous",
  54132. extraAttributes: {
  54133. "swallowSize": {
  54134. name: "Tailmaw Bite Size",
  54135. power: 3,
  54136. type: "volume",
  54137. base: math.unit(43000, "liters")
  54138. },
  54139. }
  54140. },
  54141. taur_front: {
  54142. height: math.unit(10, "meters"),
  54143. name: "Front",
  54144. image: {
  54145. source: "./media/characters/maya/taur-front.svg",
  54146. extra: 743/506,
  54147. bottom: 101/844
  54148. },
  54149. form: "taur",
  54150. },
  54151. },
  54152. [
  54153. {
  54154. name: "Normal",
  54155. height: math.unit(4.88, "meters"),
  54156. default: true,
  54157. form: "normal"
  54158. },
  54159. {
  54160. name: "Macro",
  54161. height: math.unit(38.1, "meters"),
  54162. form: "normal"
  54163. },
  54164. {
  54165. name: "Macro+",
  54166. height: math.unit(152.4, "meters"),
  54167. form: "normal"
  54168. },
  54169. {
  54170. name: "Macro++",
  54171. height: math.unit(16.09, "km"),
  54172. form: "normal"
  54173. },
  54174. {
  54175. name: "Mega-macro",
  54176. height: math.unit(700, "megameters"),
  54177. form: "normal"
  54178. },
  54179. {
  54180. name: "Satiated",
  54181. height: math.unit(10, "meters"),
  54182. default: true,
  54183. form: "monstrous"
  54184. },
  54185. {
  54186. name: "Hungry",
  54187. height: math.unit(75, "meters"),
  54188. form: "monstrous"
  54189. },
  54190. {
  54191. name: "Ravenous",
  54192. height: math.unit(500, "meters"),
  54193. form: "monstrous"
  54194. },
  54195. {
  54196. name: "\"Normal\"",
  54197. height: math.unit(10, "meters"),
  54198. form: "taur"
  54199. },
  54200. {
  54201. name: "Macro",
  54202. height: math.unit(50, "meters"),
  54203. form: "taur"
  54204. },
  54205. ],
  54206. {
  54207. "normal": {
  54208. name: "Normal",
  54209. default: true
  54210. },
  54211. "monstrous": {
  54212. name: "Monstrous",
  54213. },
  54214. "taur": {
  54215. name: "Taur",
  54216. },
  54217. }
  54218. ))
  54219. characterMakers.push(() => makeCharacter(
  54220. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54221. {
  54222. front: {
  54223. height: math.unit(6 + 2/12, "feet"),
  54224. weight: math.unit(500, "lb"),
  54225. preyCapacity: math.unit(4, "people"),
  54226. name: "Front",
  54227. image: {
  54228. source: "./media/characters/yepir/front.svg"
  54229. }
  54230. },
  54231. side: {
  54232. height: math.unit(6 + 2/12, "feet"),
  54233. weight: math.unit(500, "lb"),
  54234. preyCapacity: math.unit(4, "people"),
  54235. name: "Side",
  54236. image: {
  54237. source: "./media/characters/yepir/side.svg"
  54238. }
  54239. },
  54240. paw: {
  54241. height: math.unit(1.05, "feet"),
  54242. name: "Paw",
  54243. image: {
  54244. source: "./media/characters/yepir/paw.svg"
  54245. }
  54246. },
  54247. },
  54248. [
  54249. {
  54250. name: "Normal",
  54251. height: math.unit(6 + 2/12, "feet"),
  54252. default: true
  54253. },
  54254. ]
  54255. ))
  54256. characterMakers.push(() => makeCharacter(
  54257. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54258. {
  54259. front: {
  54260. height: math.unit(5 + 4/12, "feet"),
  54261. name: "Front",
  54262. image: {
  54263. source: "./media/characters/russec/front.svg",
  54264. extra: 1926/1626,
  54265. bottom: 72/1998
  54266. }
  54267. },
  54268. back: {
  54269. height: math.unit(5 + 4/12, "feet"),
  54270. name: "Back",
  54271. image: {
  54272. source: "./media/characters/russec/back.svg",
  54273. extra: 1910/1591,
  54274. bottom: 48/1958
  54275. }
  54276. },
  54277. },
  54278. [
  54279. {
  54280. name: "Small",
  54281. height: math.unit(5 + 4/12, "feet")
  54282. },
  54283. {
  54284. name: "Normal",
  54285. height: math.unit(72, "feet"),
  54286. default: true
  54287. },
  54288. ]
  54289. ))
  54290. characterMakers.push(() => makeCharacter(
  54291. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54292. {
  54293. side: {
  54294. height: math.unit(12, "feet"),
  54295. name: "Side",
  54296. image: {
  54297. source: "./media/characters/cianus/side.svg",
  54298. extra: 808/526,
  54299. bottom: 61/869
  54300. }
  54301. },
  54302. },
  54303. [
  54304. {
  54305. name: "Normal",
  54306. height: math.unit(12, "feet"),
  54307. default: true
  54308. },
  54309. ]
  54310. ))
  54311. characterMakers.push(() => makeCharacter(
  54312. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54313. {
  54314. front: {
  54315. height: math.unit(9 + 6/12, "feet"),
  54316. weight: math.unit(300, "lb"),
  54317. name: "Front",
  54318. image: {
  54319. source: "./media/characters/ahab/front.svg",
  54320. extra: 1897/1868,
  54321. bottom: 121/2018
  54322. }
  54323. },
  54324. frontNsfw: {
  54325. height: math.unit(9 + 6/12, "feet"),
  54326. weight: math.unit(300, "lb"),
  54327. name: "Front (NSFW)",
  54328. image: {
  54329. source: "./media/characters/ahab/front-nsfw.svg",
  54330. extra: 1897/1868,
  54331. bottom: 121/2018
  54332. }
  54333. },
  54334. },
  54335. [
  54336. {
  54337. name: "Normal",
  54338. height: math.unit(9 + 6/12, "feet")
  54339. },
  54340. {
  54341. name: "Macro",
  54342. height: math.unit(657, "feet"),
  54343. default: true
  54344. },
  54345. ]
  54346. ))
  54347. characterMakers.push(() => makeCharacter(
  54348. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54349. {
  54350. front: {
  54351. height: math.unit(2.69, "meters"),
  54352. weight: math.unit(132, "kg"),
  54353. name: "Front",
  54354. image: {
  54355. source: "./media/characters/aarkus/front.svg",
  54356. extra: 1400/1231,
  54357. bottom: 34/1434
  54358. }
  54359. },
  54360. back: {
  54361. height: math.unit(2.69, "meters"),
  54362. weight: math.unit(132, "kg"),
  54363. name: "Back",
  54364. image: {
  54365. source: "./media/characters/aarkus/back.svg",
  54366. extra: 1381/1218,
  54367. bottom: 30/1411
  54368. }
  54369. },
  54370. frontNsfw: {
  54371. height: math.unit(2.69, "meters"),
  54372. weight: math.unit(132, "kg"),
  54373. name: "Front (NSFW)",
  54374. image: {
  54375. source: "./media/characters/aarkus/front-nsfw.svg",
  54376. extra: 1400/1231,
  54377. bottom: 34/1434
  54378. }
  54379. },
  54380. foot: {
  54381. height: math.unit(1.45, "feet"),
  54382. name: "Foot",
  54383. image: {
  54384. source: "./media/characters/aarkus/foot.svg"
  54385. }
  54386. },
  54387. head: {
  54388. height: math.unit(2.85, "feet"),
  54389. name: "Head",
  54390. image: {
  54391. source: "./media/characters/aarkus/head.svg"
  54392. }
  54393. },
  54394. headAlt: {
  54395. height: math.unit(3.07, "feet"),
  54396. name: "Head (Alt)",
  54397. image: {
  54398. source: "./media/characters/aarkus/head-alt.svg"
  54399. }
  54400. },
  54401. mouth: {
  54402. height: math.unit(1.25, "feet"),
  54403. name: "Mouth",
  54404. image: {
  54405. source: "./media/characters/aarkus/mouth.svg"
  54406. }
  54407. },
  54408. dick: {
  54409. height: math.unit(1.77, "feet"),
  54410. name: "Dick",
  54411. image: {
  54412. source: "./media/characters/aarkus/dick.svg"
  54413. }
  54414. },
  54415. },
  54416. [
  54417. {
  54418. name: "Normal",
  54419. height: math.unit(2.69, "meters"),
  54420. default: true
  54421. },
  54422. {
  54423. name: "Macro",
  54424. height: math.unit(269, "meters")
  54425. },
  54426. {
  54427. name: "Macro+",
  54428. height: math.unit(672.5, "meters")
  54429. },
  54430. {
  54431. name: "Megamacro",
  54432. height: math.unit(2.017, "km")
  54433. },
  54434. ]
  54435. ))
  54436. characterMakers.push(() => makeCharacter(
  54437. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54438. {
  54439. front: {
  54440. height: math.unit(23.47, "cm"),
  54441. weight: math.unit(600, "grams"),
  54442. name: "Front",
  54443. image: {
  54444. source: "./media/characters/diode/front.svg",
  54445. extra: 1778/1396,
  54446. bottom: 95/1873
  54447. }
  54448. },
  54449. side: {
  54450. height: math.unit(23.47, "cm"),
  54451. weight: math.unit(600, "grams"),
  54452. name: "Side",
  54453. image: {
  54454. source: "./media/characters/diode/side.svg",
  54455. extra: 1831/1404,
  54456. bottom: 86/1917
  54457. }
  54458. },
  54459. wings: {
  54460. height: math.unit(0.683, "feet"),
  54461. name: "Wings",
  54462. image: {
  54463. source: "./media/characters/diode/wings.svg"
  54464. }
  54465. },
  54466. },
  54467. [
  54468. {
  54469. name: "Normal",
  54470. height: math.unit(23.47, "cm"),
  54471. default: true
  54472. },
  54473. ]
  54474. ))
  54475. characterMakers.push(() => makeCharacter(
  54476. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54477. {
  54478. front: {
  54479. height: math.unit(6 + 3/12, "feet"),
  54480. weight: math.unit(250, "lb"),
  54481. name: "Front",
  54482. image: {
  54483. source: "./media/characters/reika/front.svg",
  54484. extra: 1120/1078,
  54485. bottom: 86/1206
  54486. }
  54487. },
  54488. },
  54489. [
  54490. {
  54491. name: "Normal",
  54492. height: math.unit(6 + 3/12, "feet"),
  54493. default: true
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(16 + 8/12, "feet"),
  54502. weight: math.unit(9000, "lb"),
  54503. name: "Front",
  54504. image: {
  54505. source: "./media/characters/lokuto-takama/front.svg",
  54506. extra: 1774/1632,
  54507. bottom: 147/1921
  54508. },
  54509. extraAttributes: {
  54510. "bustWidth": {
  54511. name: "Bust Width",
  54512. power: 1,
  54513. type: "length",
  54514. base: math.unit(2.4, "meters")
  54515. },
  54516. "breastWeight": {
  54517. name: "Breast Weight",
  54518. power: 3,
  54519. type: "mass",
  54520. base: math.unit(1000, "kg")
  54521. },
  54522. }
  54523. },
  54524. },
  54525. [
  54526. {
  54527. name: "Normal",
  54528. height: math.unit(16 + 8/12, "feet"),
  54529. default: true
  54530. },
  54531. ]
  54532. ))
  54533. characterMakers.push(() => makeCharacter(
  54534. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54535. {
  54536. front: {
  54537. height: math.unit(10, "cm"),
  54538. weight: math.unit(850, "grams"),
  54539. name: "Front",
  54540. image: {
  54541. source: "./media/characters/owak-bone/front.svg",
  54542. extra: 1965/1801,
  54543. bottom: 31/1996
  54544. }
  54545. },
  54546. },
  54547. [
  54548. {
  54549. name: "Normal",
  54550. height: math.unit(10, "cm"),
  54551. default: true
  54552. },
  54553. ]
  54554. ))
  54555. characterMakers.push(() => makeCharacter(
  54556. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54557. {
  54558. front: {
  54559. height: math.unit(2 + 6/12, "feet"),
  54560. weight: math.unit(9, "lb"),
  54561. name: "Front",
  54562. image: {
  54563. source: "./media/characters/muffin/front.svg",
  54564. extra: 1220/1195,
  54565. bottom: 84/1304
  54566. }
  54567. },
  54568. },
  54569. [
  54570. {
  54571. name: "Normal",
  54572. height: math.unit(2 + 6/12, "feet"),
  54573. default: true
  54574. },
  54575. ]
  54576. ))
  54577. characterMakers.push(() => makeCharacter(
  54578. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54579. {
  54580. front: {
  54581. height: math.unit(7, "feet"),
  54582. name: "Front",
  54583. image: {
  54584. source: "./media/characters/chimera/front.svg",
  54585. extra: 1752/1614,
  54586. bottom: 68/1820
  54587. }
  54588. },
  54589. },
  54590. [
  54591. {
  54592. name: "Normal",
  54593. height: math.unit(7, "feet")
  54594. },
  54595. {
  54596. name: "Gigamacro",
  54597. height: math.unit(2.9, "gigameters"),
  54598. default: true
  54599. },
  54600. {
  54601. name: "Universal",
  54602. height: math.unit(1.56e26, "yottameters")
  54603. },
  54604. ]
  54605. ))
  54606. characterMakers.push(() => makeCharacter(
  54607. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54608. {
  54609. front: {
  54610. height: math.unit(3, "feet"),
  54611. weight: math.unit(20, "lb"),
  54612. name: "Front",
  54613. image: {
  54614. source: "./media/characters/kit-fennec-fox/front.svg",
  54615. extra: 1027/932,
  54616. bottom: 16/1043
  54617. }
  54618. },
  54619. back: {
  54620. height: math.unit(3, "feet"),
  54621. weight: math.unit(20, "lb"),
  54622. name: "Back",
  54623. image: {
  54624. source: "./media/characters/kit-fennec-fox/back.svg",
  54625. extra: 1027/932,
  54626. bottom: 16/1043
  54627. }
  54628. },
  54629. },
  54630. [
  54631. {
  54632. name: "Normal",
  54633. height: math.unit(3, "feet"),
  54634. default: true
  54635. },
  54636. ]
  54637. ))
  54638. characterMakers.push(() => makeCharacter(
  54639. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54640. {
  54641. front: {
  54642. height: math.unit(167, "cm"),
  54643. name: "Front",
  54644. image: {
  54645. source: "./media/characters/blue-otter/front.svg",
  54646. extra: 1951/1920,
  54647. bottom: 31/1982
  54648. }
  54649. },
  54650. },
  54651. [
  54652. {
  54653. name: "Otter-Sized",
  54654. height: math.unit(100, "cm")
  54655. },
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(167, "cm"),
  54659. default: true
  54660. },
  54661. ]
  54662. ))
  54663. characterMakers.push(() => makeCharacter(
  54664. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54665. {
  54666. front: {
  54667. height: math.unit(4 + 4/12, "feet"),
  54668. name: "Front",
  54669. image: {
  54670. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54671. extra: 1072/1067,
  54672. bottom: 117/1189
  54673. }
  54674. },
  54675. back: {
  54676. height: math.unit(4 + 4/12, "feet"),
  54677. name: "Back",
  54678. image: {
  54679. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54680. extra: 1135/1129,
  54681. bottom: 57/1192
  54682. }
  54683. },
  54684. head: {
  54685. height: math.unit(1.77, "feet"),
  54686. name: "Head",
  54687. image: {
  54688. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54689. }
  54690. },
  54691. },
  54692. [
  54693. {
  54694. name: "Normal",
  54695. height: math.unit(4 + 4/12, "feet"),
  54696. default: true
  54697. },
  54698. ]
  54699. ))
  54700. characterMakers.push(() => makeCharacter(
  54701. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54702. {
  54703. front: {
  54704. height: math.unit(2, "inches"),
  54705. name: "Front",
  54706. image: {
  54707. source: "./media/characters/carley-hartford/front.svg",
  54708. extra: 1035/988,
  54709. bottom: 23/1058
  54710. }
  54711. },
  54712. back: {
  54713. height: math.unit(2, "inches"),
  54714. name: "Back",
  54715. image: {
  54716. source: "./media/characters/carley-hartford/back.svg",
  54717. extra: 1035/988,
  54718. bottom: 23/1058
  54719. }
  54720. },
  54721. dressed: {
  54722. height: math.unit(2, "inches"),
  54723. name: "Dressed",
  54724. image: {
  54725. source: "./media/characters/carley-hartford/dressed.svg",
  54726. extra: 651/620,
  54727. bottom: 0/651
  54728. }
  54729. },
  54730. },
  54731. [
  54732. {
  54733. name: "Micro",
  54734. height: math.unit(2, "inches"),
  54735. default: true
  54736. },
  54737. {
  54738. name: "Macro",
  54739. height: math.unit(6 + 3/12, "feet")
  54740. },
  54741. ]
  54742. ))
  54743. characterMakers.push(() => makeCharacter(
  54744. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54745. {
  54746. front: {
  54747. height: math.unit(2 + 3/12, "feet"),
  54748. weight: math.unit(15 + 7/16, "lb"),
  54749. name: "Front",
  54750. image: {
  54751. source: "./media/characters/duke/front.svg",
  54752. extra: 910/815,
  54753. bottom: 30/940
  54754. }
  54755. },
  54756. },
  54757. [
  54758. {
  54759. name: "Normal",
  54760. height: math.unit(2 + 3/12, "feet"),
  54761. default: true
  54762. },
  54763. ]
  54764. ))
  54765. characterMakers.push(() => makeCharacter(
  54766. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54767. {
  54768. front: {
  54769. height: math.unit(5 + 4/12, "feet"),
  54770. weight: math.unit(156, "lb"),
  54771. name: "Front",
  54772. image: {
  54773. source: "./media/characters/dein/front.svg",
  54774. extra: 855/815,
  54775. bottom: 48/903
  54776. }
  54777. },
  54778. side: {
  54779. height: math.unit(5 + 4/12, "feet"),
  54780. weight: math.unit(156, "lb"),
  54781. name: "side",
  54782. image: {
  54783. source: "./media/characters/dein/side.svg",
  54784. extra: 846/803,
  54785. bottom: 25/871
  54786. }
  54787. },
  54788. maw: {
  54789. height: math.unit(1.45, "feet"),
  54790. name: "Maw",
  54791. image: {
  54792. source: "./media/characters/dein/maw.svg"
  54793. }
  54794. },
  54795. },
  54796. [
  54797. {
  54798. name: "Ferret Sized",
  54799. height: math.unit(2 + 5/12, "feet")
  54800. },
  54801. {
  54802. name: "Normal",
  54803. height: math.unit(5 + 4/12, "feet"),
  54804. default: true
  54805. },
  54806. ]
  54807. ))
  54808. characterMakers.push(() => makeCharacter(
  54809. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54810. {
  54811. front: {
  54812. height: math.unit(84 + 8/12, "feet"),
  54813. weight: math.unit(942180, "lb"),
  54814. name: "Front",
  54815. image: {
  54816. source: "./media/characters/daurine-arima/front.svg",
  54817. extra: 1989/1782,
  54818. bottom: 37/2026
  54819. }
  54820. },
  54821. side: {
  54822. height: math.unit(84 + 8/12, "feet"),
  54823. weight: math.unit(942180, "lb"),
  54824. name: "Side",
  54825. image: {
  54826. source: "./media/characters/daurine-arima/side.svg",
  54827. extra: 1997/1790,
  54828. bottom: 21/2018
  54829. }
  54830. },
  54831. back: {
  54832. height: math.unit(84 + 8/12, "feet"),
  54833. weight: math.unit(942180, "lb"),
  54834. name: "Back",
  54835. image: {
  54836. source: "./media/characters/daurine-arima/back.svg",
  54837. extra: 1992/1800,
  54838. bottom: 12/2004
  54839. }
  54840. },
  54841. head: {
  54842. height: math.unit(15.5, "feet"),
  54843. name: "Head",
  54844. image: {
  54845. source: "./media/characters/daurine-arima/head.svg"
  54846. }
  54847. },
  54848. headAlt: {
  54849. height: math.unit(19.19, "feet"),
  54850. name: "Head (Alt)",
  54851. image: {
  54852. source: "./media/characters/daurine-arima/head-alt.svg"
  54853. }
  54854. },
  54855. },
  54856. [
  54857. {
  54858. name: "Minimum height",
  54859. height: math.unit(8 + 10/12, "feet")
  54860. },
  54861. {
  54862. name: "Comfort height",
  54863. height: math.unit(19 + 6 /12, "feet")
  54864. },
  54865. {
  54866. name: "\"Normal\" height",
  54867. height: math.unit(28 + 10/12, "feet")
  54868. },
  54869. {
  54870. name: "Base height",
  54871. height: math.unit(84 + 8/12, "feet"),
  54872. default: true
  54873. },
  54874. {
  54875. name: "Mini-macro",
  54876. height: math.unit(2360, "feet")
  54877. },
  54878. {
  54879. name: "Macro",
  54880. height: math.unit(10, "miles")
  54881. },
  54882. {
  54883. name: "Goddess",
  54884. height: math.unit(9.99e40, "yottameters")
  54885. },
  54886. ]
  54887. ))
  54888. characterMakers.push(() => makeCharacter(
  54889. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54890. {
  54891. front: {
  54892. height: math.unit(2.3, "meters"),
  54893. name: "Front",
  54894. image: {
  54895. source: "./media/characters/cilenomon/front.svg",
  54896. extra: 1963/1778,
  54897. bottom: 54/2017
  54898. }
  54899. },
  54900. },
  54901. [
  54902. {
  54903. name: "Normal",
  54904. height: math.unit(2.3, "meters"),
  54905. default: true
  54906. },
  54907. {
  54908. name: "Big",
  54909. height: math.unit(5, "meters")
  54910. },
  54911. {
  54912. name: "Macro",
  54913. height: math.unit(30, "meters")
  54914. },
  54915. {
  54916. name: "True",
  54917. height: math.unit(1, "universe")
  54918. },
  54919. ]
  54920. ))
  54921. characterMakers.push(() => makeCharacter(
  54922. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54923. {
  54924. front: {
  54925. height: math.unit(5, "feet"),
  54926. name: "Front",
  54927. image: {
  54928. source: "./media/characters/sen-mink/front.svg",
  54929. extra: 1727/1675,
  54930. bottom: 35/1762
  54931. }
  54932. },
  54933. },
  54934. [
  54935. {
  54936. name: "Normal",
  54937. height: math.unit(5, "feet"),
  54938. default: true
  54939. },
  54940. ]
  54941. ))
  54942. characterMakers.push(() => makeCharacter(
  54943. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54944. {
  54945. front: {
  54946. height: math.unit(5.42999, "feet"),
  54947. weight: math.unit(100, "lb"),
  54948. name: "Front",
  54949. image: {
  54950. source: "./media/characters/ophois/front.svg",
  54951. extra: 1429/1286,
  54952. bottom: 60/1489
  54953. }
  54954. },
  54955. },
  54956. [
  54957. {
  54958. name: "Normal",
  54959. height: math.unit(5.42999, "feet"),
  54960. default: true
  54961. },
  54962. ]
  54963. ))
  54964. characterMakers.push(() => makeCharacter(
  54965. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54966. {
  54967. front: {
  54968. height: math.unit(2, "meters"),
  54969. name: "Front",
  54970. image: {
  54971. source: "./media/characters/riley/front.svg",
  54972. extra: 1779/1754,
  54973. bottom: 139/1918
  54974. }
  54975. },
  54976. },
  54977. [
  54978. {
  54979. name: "Normal",
  54980. height: math.unit(2, "meters"),
  54981. default: true
  54982. },
  54983. ]
  54984. ))
  54985. characterMakers.push(() => makeCharacter(
  54986. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54987. {
  54988. front: {
  54989. height: math.unit(6 + 2/12, "feet"),
  54990. weight: math.unit(195, "lb"),
  54991. preyCapacity: math.unit(6, "people"),
  54992. name: "Front",
  54993. image: {
  54994. source: "./media/characters/shuken-flash/front.svg",
  54995. extra: 1905/1739,
  54996. bottom: 65/1970
  54997. }
  54998. },
  54999. back: {
  55000. height: math.unit(6 + 2/12, "feet"),
  55001. weight: math.unit(195, "lb"),
  55002. preyCapacity: math.unit(6, "people"),
  55003. name: "Back",
  55004. image: {
  55005. source: "./media/characters/shuken-flash/back.svg",
  55006. extra: 1912/1751,
  55007. bottom: 13/1925
  55008. }
  55009. },
  55010. },
  55011. [
  55012. {
  55013. name: "Normal",
  55014. height: math.unit(6 + 2/12, "feet"),
  55015. default: true
  55016. },
  55017. ]
  55018. ))
  55019. characterMakers.push(() => makeCharacter(
  55020. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  55021. {
  55022. front: {
  55023. height: math.unit(5 + 9/12, "feet"),
  55024. weight: math.unit(150, "lb"),
  55025. name: "Front",
  55026. image: {
  55027. source: "./media/characters/plat/front.svg",
  55028. extra: 1816/1703,
  55029. bottom: 43/1859
  55030. }
  55031. },
  55032. side: {
  55033. height: math.unit(5 + 9/12, "feet"),
  55034. weight: math.unit(300, "lb"),
  55035. name: "Side",
  55036. image: {
  55037. source: "./media/characters/plat/side.svg",
  55038. extra: 1824/1699,
  55039. bottom: 18/1842
  55040. }
  55041. },
  55042. },
  55043. [
  55044. {
  55045. name: "Normal",
  55046. height: math.unit(5 + 9/12, "feet"),
  55047. default: true
  55048. },
  55049. ]
  55050. ))
  55051. characterMakers.push(() => makeCharacter(
  55052. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  55053. {
  55054. front: {
  55055. height: math.unit(9, "feet"),
  55056. weight: math.unit(1800, "lb"),
  55057. name: "Front",
  55058. image: {
  55059. source: "./media/characters/elaine/front.svg",
  55060. extra: 1833/1354,
  55061. bottom: 25/1858
  55062. }
  55063. },
  55064. back: {
  55065. height: math.unit(8.8, "feet"),
  55066. weight: math.unit(1800, "lb"),
  55067. name: "Back",
  55068. image: {
  55069. source: "./media/characters/elaine/back.svg",
  55070. extra: 1641/1233,
  55071. bottom: 53/1694
  55072. }
  55073. },
  55074. },
  55075. [
  55076. {
  55077. name: "Normal",
  55078. height: math.unit(9, "feet"),
  55079. default: true
  55080. },
  55081. ]
  55082. ))
  55083. characterMakers.push(() => makeCharacter(
  55084. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  55085. {
  55086. front: {
  55087. height: math.unit(17 + 9/12, "feet"),
  55088. weight: math.unit(8000, "lb"),
  55089. name: "Front",
  55090. image: {
  55091. source: "./media/characters/vera-raven/front.svg",
  55092. extra: 1457/1412,
  55093. bottom: 121/1578
  55094. }
  55095. },
  55096. side: {
  55097. height: math.unit(17 + 9/12, "feet"),
  55098. weight: math.unit(8000, "lb"),
  55099. name: "Side",
  55100. image: {
  55101. source: "./media/characters/vera-raven/side.svg",
  55102. extra: 1510/1464,
  55103. bottom: 54/1564
  55104. }
  55105. },
  55106. },
  55107. [
  55108. {
  55109. name: "Normal",
  55110. height: math.unit(17 + 9/12, "feet"),
  55111. default: true
  55112. },
  55113. ]
  55114. ))
  55115. characterMakers.push(() => makeCharacter(
  55116. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55117. {
  55118. dressed: {
  55119. height: math.unit(6 + 9/12, "feet"),
  55120. name: "Dressed",
  55121. image: {
  55122. source: "./media/characters/nakisha/dressed.svg",
  55123. extra: 1909/1757,
  55124. bottom: 48/1957
  55125. }
  55126. },
  55127. nude: {
  55128. height: math.unit(6 + 9/12, "feet"),
  55129. name: "Nude",
  55130. image: {
  55131. source: "./media/characters/nakisha/nude.svg",
  55132. extra: 1917/1765,
  55133. bottom: 34/1951
  55134. }
  55135. },
  55136. },
  55137. [
  55138. {
  55139. name: "Normal",
  55140. height: math.unit(6 + 9/12, "feet"),
  55141. default: true
  55142. },
  55143. ]
  55144. ))
  55145. characterMakers.push(() => makeCharacter(
  55146. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55147. {
  55148. front: {
  55149. height: math.unit(87, "meters"),
  55150. name: "Front",
  55151. image: {
  55152. source: "./media/characters/serafin/front.svg",
  55153. extra: 1919/1776,
  55154. bottom: 65/1984
  55155. }
  55156. },
  55157. },
  55158. [
  55159. {
  55160. name: "Normal",
  55161. height: math.unit(87, "meters"),
  55162. default: true
  55163. },
  55164. ]
  55165. ))
  55166. characterMakers.push(() => makeCharacter(
  55167. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55168. {
  55169. front: {
  55170. height: math.unit(6, "feet"),
  55171. weight: math.unit(200, "lb"),
  55172. name: "Front",
  55173. image: {
  55174. source: "./media/characters/poptart/front.svg",
  55175. extra: 615/583,
  55176. bottom: 23/638
  55177. }
  55178. },
  55179. back: {
  55180. height: math.unit(6, "feet"),
  55181. weight: math.unit(200, "lb"),
  55182. name: "Back",
  55183. image: {
  55184. source: "./media/characters/poptart/back.svg",
  55185. extra: 617/584,
  55186. bottom: 22/639
  55187. }
  55188. },
  55189. frontNsfw: {
  55190. height: math.unit(6, "feet"),
  55191. weight: math.unit(200, "lb"),
  55192. name: "Front (NSFW)",
  55193. image: {
  55194. source: "./media/characters/poptart/front-nsfw.svg",
  55195. extra: 615/583,
  55196. bottom: 23/638
  55197. }
  55198. },
  55199. backNsfw: {
  55200. height: math.unit(6, "feet"),
  55201. weight: math.unit(200, "lb"),
  55202. name: "Back (NSFW)",
  55203. image: {
  55204. source: "./media/characters/poptart/back-nsfw.svg",
  55205. extra: 617/584,
  55206. bottom: 22/639
  55207. }
  55208. },
  55209. hand: {
  55210. height: math.unit(1.14, "feet"),
  55211. name: "Hand",
  55212. image: {
  55213. source: "./media/characters/poptart/hand.svg"
  55214. }
  55215. },
  55216. foot: {
  55217. height: math.unit(1.5, "feet"),
  55218. name: "Foot",
  55219. image: {
  55220. source: "./media/characters/poptart/foot.svg"
  55221. }
  55222. },
  55223. },
  55224. [
  55225. {
  55226. name: "Normal",
  55227. height: math.unit(6, "feet"),
  55228. default: true
  55229. },
  55230. {
  55231. name: "Grande",
  55232. height: math.unit(350, "feet")
  55233. },
  55234. {
  55235. name: "Massif",
  55236. height: math.unit(967, "feet")
  55237. },
  55238. ]
  55239. ))
  55240. characterMakers.push(() => makeCharacter(
  55241. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55242. {
  55243. hyenaSide: {
  55244. height: math.unit(120, "cm"),
  55245. weight: math.unit(120, "lb"),
  55246. name: "Side",
  55247. image: {
  55248. source: "./media/characters/trance/hyena-side.svg",
  55249. extra: 998/904,
  55250. bottom: 76/1074
  55251. }
  55252. },
  55253. },
  55254. [
  55255. {
  55256. name: "Normal",
  55257. height: math.unit(120, "cm"),
  55258. default: true
  55259. },
  55260. {
  55261. name: "Dire",
  55262. height: math.unit(230, "cm")
  55263. },
  55264. {
  55265. name: "Macro",
  55266. height: math.unit(37, "feet")
  55267. },
  55268. ]
  55269. ))
  55270. characterMakers.push(() => makeCharacter(
  55271. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55272. {
  55273. front: {
  55274. height: math.unit(6 + 3/12, "feet"),
  55275. name: "Front",
  55276. image: {
  55277. source: "./media/characters/michael-berretta/front.svg",
  55278. extra: 515/494,
  55279. bottom: 20/535
  55280. }
  55281. },
  55282. back: {
  55283. height: math.unit(6 + 3/12, "feet"),
  55284. name: "Back",
  55285. image: {
  55286. source: "./media/characters/michael-berretta/back.svg",
  55287. extra: 520/497,
  55288. bottom: 21/541
  55289. }
  55290. },
  55291. frontNsfw: {
  55292. height: math.unit(6 + 3/12, "feet"),
  55293. name: "Front (NSFW)",
  55294. image: {
  55295. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55296. extra: 515/494,
  55297. bottom: 20/535
  55298. }
  55299. },
  55300. dick: {
  55301. height: math.unit(1, "feet"),
  55302. name: "Dick",
  55303. image: {
  55304. source: "./media/characters/michael-berretta/dick.svg"
  55305. }
  55306. },
  55307. },
  55308. [
  55309. {
  55310. name: "Normal",
  55311. height: math.unit(6 + 3/12, "feet"),
  55312. default: true
  55313. },
  55314. {
  55315. name: "Big",
  55316. height: math.unit(12, "feet")
  55317. },
  55318. {
  55319. name: "Macro",
  55320. height: math.unit(187.5, "feet")
  55321. },
  55322. ]
  55323. ))
  55324. characterMakers.push(() => makeCharacter(
  55325. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55326. {
  55327. front: {
  55328. height: math.unit(9 + 9/12, "feet"),
  55329. weight: math.unit(1244, "lb"),
  55330. name: "Front",
  55331. image: {
  55332. source: "./media/characters/stella-edgecomb/front.svg",
  55333. extra: 1835/1706,
  55334. bottom: 49/1884
  55335. }
  55336. },
  55337. pen: {
  55338. height: math.unit(0.95, "feet"),
  55339. name: "Pen",
  55340. image: {
  55341. source: "./media/characters/stella-edgecomb/pen.svg"
  55342. }
  55343. },
  55344. },
  55345. [
  55346. {
  55347. name: "Cozy Bear",
  55348. height: math.unit(0.5, "inches")
  55349. },
  55350. {
  55351. name: "Normal",
  55352. height: math.unit(9 + 9/12, "feet"),
  55353. default: true
  55354. },
  55355. {
  55356. name: "Giga Bear",
  55357. height: math.unit(1, "mile")
  55358. },
  55359. {
  55360. name: "Great Bear",
  55361. height: math.unit(53, "miles")
  55362. },
  55363. {
  55364. name: "Goddess Bear",
  55365. height: math.unit(40000, "miles")
  55366. },
  55367. {
  55368. name: "Sun Bear",
  55369. height: math.unit(900000, "miles")
  55370. },
  55371. ]
  55372. ))
  55373. characterMakers.push(() => makeCharacter(
  55374. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55375. {
  55376. anthroFront: {
  55377. height: math.unit(556, "cm"),
  55378. weight: math.unit(2650, "kg"),
  55379. preyCapacity: math.unit(3, "people"),
  55380. name: "Front",
  55381. image: {
  55382. source: "./media/characters/ash´iika/front.svg",
  55383. extra: 710/673,
  55384. bottom: 15/725
  55385. },
  55386. form: "anthro",
  55387. default: true
  55388. },
  55389. anthroSide: {
  55390. height: math.unit(556, "cm"),
  55391. weight: math.unit(2650, "kg"),
  55392. preyCapacity: math.unit(3, "people"),
  55393. name: "Side",
  55394. image: {
  55395. source: "./media/characters/ash´iika/side.svg",
  55396. extra: 696/676,
  55397. bottom: 13/709
  55398. },
  55399. form: "anthro"
  55400. },
  55401. anthroDressed: {
  55402. height: math.unit(556, "cm"),
  55403. weight: math.unit(2650, "kg"),
  55404. preyCapacity: math.unit(3, "people"),
  55405. name: "Dressed",
  55406. image: {
  55407. source: "./media/characters/ash´iika/dressed.svg",
  55408. extra: 710/673,
  55409. bottom: 15/725
  55410. },
  55411. form: "anthro"
  55412. },
  55413. anthroHead: {
  55414. height: math.unit(3.5, "feet"),
  55415. name: "Head",
  55416. image: {
  55417. source: "./media/characters/ash´iika/head.svg",
  55418. extra: 348/291,
  55419. bottom: 45/393
  55420. },
  55421. form: "anthro"
  55422. },
  55423. feralSide: {
  55424. height: math.unit(870, "cm"),
  55425. weight: math.unit(17500, "kg"),
  55426. preyCapacity: math.unit(15, "people"),
  55427. name: "Side",
  55428. image: {
  55429. source: "./media/characters/ash´iika/feral.svg",
  55430. extra: 595/199,
  55431. bottom: 7/602
  55432. },
  55433. form: "feral",
  55434. default: true,
  55435. },
  55436. },
  55437. [
  55438. {
  55439. name: "Normal",
  55440. height: math.unit(556, "cm"),
  55441. default: true,
  55442. form: "anthro"
  55443. },
  55444. {
  55445. name: "Macro",
  55446. height: math.unit(88, "meters"),
  55447. form: "anthro"
  55448. },
  55449. {
  55450. name: "Normal",
  55451. height: math.unit(870, "cm"),
  55452. default: true,
  55453. form: "feral"
  55454. },
  55455. {
  55456. name: "Large",
  55457. height: math.unit(25, "meters"),
  55458. form: "feral"
  55459. },
  55460. ],
  55461. {
  55462. "anthro": {
  55463. name: "Anthro",
  55464. default: true
  55465. },
  55466. "feral": {
  55467. name: "Feral",
  55468. },
  55469. }
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55473. {
  55474. front: {
  55475. height: math.unit(10, "feet"),
  55476. weight: math.unit(800, "lb"),
  55477. name: "Front",
  55478. image: {
  55479. source: "./media/characters/yen/front.svg",
  55480. extra: 443/411,
  55481. bottom: 6/449
  55482. }
  55483. },
  55484. sleeping: {
  55485. height: math.unit(10, "feet"),
  55486. weight: math.unit(800, "lb"),
  55487. name: "Sleeping",
  55488. image: {
  55489. source: "./media/characters/yen/sleeping.svg",
  55490. extra: 470/422,
  55491. bottom: 0/470
  55492. }
  55493. },
  55494. head: {
  55495. height: math.unit(2.2, "feet"),
  55496. name: "Head",
  55497. image: {
  55498. source: "./media/characters/yen/head.svg"
  55499. }
  55500. },
  55501. headAlt: {
  55502. height: math.unit(2.1, "feet"),
  55503. name: "Head (Alt)",
  55504. image: {
  55505. source: "./media/characters/yen/head-alt.svg"
  55506. }
  55507. },
  55508. },
  55509. [
  55510. {
  55511. name: "Normal",
  55512. height: math.unit(10, "feet"),
  55513. default: true
  55514. },
  55515. ]
  55516. ))
  55517. characterMakers.push(() => makeCharacter(
  55518. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55519. {
  55520. front: {
  55521. height: math.unit(12, "feet"),
  55522. name: "Front",
  55523. image: {
  55524. source: "./media/characters/citra/front.svg",
  55525. extra: 1950/1710,
  55526. bottom: 47/1997
  55527. }
  55528. },
  55529. },
  55530. [
  55531. {
  55532. name: "Normal",
  55533. height: math.unit(12, "feet"),
  55534. default: true
  55535. },
  55536. ]
  55537. ))
  55538. characterMakers.push(() => makeCharacter(
  55539. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55540. {
  55541. side: {
  55542. height: math.unit(7 + 10/12, "feet"),
  55543. name: "Side",
  55544. image: {
  55545. source: "./media/characters/sholstim/side.svg",
  55546. extra: 786/682,
  55547. bottom: 40/826
  55548. }
  55549. },
  55550. },
  55551. [
  55552. {
  55553. name: "Normal",
  55554. height: math.unit(7 + 10/12, "feet"),
  55555. default: true
  55556. },
  55557. ]
  55558. ))
  55559. characterMakers.push(() => makeCharacter(
  55560. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55561. {
  55562. front: {
  55563. height: math.unit(3.10, "meters"),
  55564. name: "Front",
  55565. image: {
  55566. source: "./media/characters/aggyn/front.svg",
  55567. extra: 1188/963,
  55568. bottom: 24/1212
  55569. }
  55570. },
  55571. },
  55572. [
  55573. {
  55574. name: "Normal",
  55575. height: math.unit(3.10, "meters"),
  55576. default: true
  55577. },
  55578. ]
  55579. ))
  55580. characterMakers.push(() => makeCharacter(
  55581. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55582. {
  55583. front: {
  55584. height: math.unit(7 + 5/12, "feet"),
  55585. weight: math.unit(687, "lb"),
  55586. name: "Front",
  55587. image: {
  55588. source: "./media/characters/alsandair-hergenroether/front.svg",
  55589. extra: 1251/1186,
  55590. bottom: 75/1326
  55591. }
  55592. },
  55593. back: {
  55594. height: math.unit(7 + 5/12, "feet"),
  55595. weight: math.unit(687, "lb"),
  55596. name: "Back",
  55597. image: {
  55598. source: "./media/characters/alsandair-hergenroether/back.svg",
  55599. extra: 1290/1229,
  55600. bottom: 17/1307
  55601. }
  55602. },
  55603. },
  55604. [
  55605. {
  55606. name: "Max Compression",
  55607. height: math.unit(7 + 5/12, "feet"),
  55608. default: true
  55609. },
  55610. {
  55611. name: "\"Normal\"",
  55612. height: math.unit(2, "universes")
  55613. },
  55614. ]
  55615. ))
  55616. characterMakers.push(() => makeCharacter(
  55617. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55618. {
  55619. front: {
  55620. height: math.unit(4 + 1/12, "feet"),
  55621. weight: math.unit(92, "lb"),
  55622. name: "Front",
  55623. image: {
  55624. source: "./media/characters/ie/front.svg",
  55625. extra: 1585/1352,
  55626. bottom: 91/1676
  55627. }
  55628. },
  55629. },
  55630. [
  55631. {
  55632. name: "Normal",
  55633. height: math.unit(4 + 1/12, "feet"),
  55634. default: true
  55635. },
  55636. ]
  55637. ))
  55638. characterMakers.push(() => makeCharacter(
  55639. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55640. {
  55641. anthro: {
  55642. height: math.unit(6, "feet"),
  55643. weight: math.unit(150, "lb"),
  55644. name: "Front",
  55645. image: {
  55646. source: "./media/characters/willow/anthro.svg",
  55647. extra: 1073/986,
  55648. bottom: 34/1107
  55649. },
  55650. form: "anthro",
  55651. default: true
  55652. },
  55653. taur: {
  55654. height: math.unit(6, "feet"),
  55655. weight: math.unit(150, "lb"),
  55656. name: "Side",
  55657. image: {
  55658. source: "./media/characters/willow/taur.svg",
  55659. extra: 647/512,
  55660. bottom: 136/783
  55661. },
  55662. form: "taur",
  55663. default: true
  55664. },
  55665. },
  55666. [
  55667. {
  55668. name: "Humanoid",
  55669. height: math.unit(2.7, "meters"),
  55670. form: "anthro"
  55671. },
  55672. {
  55673. name: "Normal",
  55674. height: math.unit(9, "meters"),
  55675. form: "anthro",
  55676. default: true
  55677. },
  55678. {
  55679. name: "Humanoid",
  55680. height: math.unit(2.1, "meters"),
  55681. form: "taur"
  55682. },
  55683. {
  55684. name: "Normal",
  55685. height: math.unit(7, "meters"),
  55686. form: "taur",
  55687. default: true
  55688. },
  55689. ],
  55690. {
  55691. "anthro": {
  55692. name: "Anthro",
  55693. default: true
  55694. },
  55695. "taur": {
  55696. name: "Taur",
  55697. },
  55698. }
  55699. ))
  55700. characterMakers.push(() => makeCharacter(
  55701. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55702. {
  55703. front: {
  55704. height: math.unit(2 + 5/12, "feet"),
  55705. name: "Front",
  55706. image: {
  55707. source: "./media/characters/kyan/front.svg",
  55708. extra: 460/334,
  55709. bottom: 23/483
  55710. },
  55711. extraAttributes: {
  55712. "toeLength": {
  55713. name: "Toe Length",
  55714. power: 1,
  55715. type: "length",
  55716. base: math.unit(7, "cm")
  55717. },
  55718. "toeclawLength": {
  55719. name: "Toeclaw Length",
  55720. power: 1,
  55721. type: "length",
  55722. base: math.unit(4.7, "cm")
  55723. },
  55724. "earHeight": {
  55725. name: "Ear Height",
  55726. power: 1,
  55727. type: "length",
  55728. base: math.unit(14.1, "cm")
  55729. },
  55730. }
  55731. },
  55732. paws: {
  55733. height: math.unit(0.45, "feet"),
  55734. name: "Paws",
  55735. image: {
  55736. source: "./media/characters/kyan/paws.svg",
  55737. extra: 581/581,
  55738. bottom: 114/695
  55739. }
  55740. },
  55741. },
  55742. [
  55743. {
  55744. name: "Normal",
  55745. height: math.unit(2 + 5/12, "feet"),
  55746. default: true
  55747. },
  55748. ]
  55749. ))
  55750. characterMakers.push(() => makeCharacter(
  55751. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55752. {
  55753. front: {
  55754. height: math.unit(2 + 2/3, "feet"),
  55755. name: "Front",
  55756. image: {
  55757. source: "./media/characters/xazzon/front.svg",
  55758. extra: 1109/984,
  55759. bottom: 42/1151
  55760. }
  55761. },
  55762. back: {
  55763. height: math.unit(2 + 2/3, "feet"),
  55764. name: "Back",
  55765. image: {
  55766. source: "./media/characters/xazzon/back.svg",
  55767. extra: 1095/971,
  55768. bottom: 23/1118
  55769. }
  55770. },
  55771. },
  55772. [
  55773. {
  55774. name: "Normal",
  55775. height: math.unit(2 + 2/3, "feet"),
  55776. default: true
  55777. },
  55778. ]
  55779. ))
  55780. characterMakers.push(() => makeCharacter(
  55781. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55782. {
  55783. front: {
  55784. height: math.unit(8, "feet"),
  55785. weight: math.unit(300, "lb"),
  55786. name: "Front",
  55787. image: {
  55788. source: "./media/characters/khyla-shadowsong/front.svg",
  55789. extra: 861/798,
  55790. bottom: 32/893
  55791. }
  55792. },
  55793. side: {
  55794. height: math.unit(8, "feet"),
  55795. weight: math.unit(300, "lb"),
  55796. name: "Side",
  55797. image: {
  55798. source: "./media/characters/khyla-shadowsong/side.svg",
  55799. extra: 790/750,
  55800. bottom: 87/877
  55801. }
  55802. },
  55803. back: {
  55804. height: math.unit(8, "feet"),
  55805. weight: math.unit(300, "lb"),
  55806. name: "Back",
  55807. image: {
  55808. source: "./media/characters/khyla-shadowsong/back.svg",
  55809. extra: 855/808,
  55810. bottom: 14/869
  55811. }
  55812. },
  55813. head: {
  55814. height: math.unit(2.7, "feet"),
  55815. name: "Head",
  55816. image: {
  55817. source: "./media/characters/khyla-shadowsong/head.svg"
  55818. }
  55819. },
  55820. },
  55821. [
  55822. {
  55823. name: "Micro",
  55824. height: math.unit(6, "inches")
  55825. },
  55826. {
  55827. name: "Normal",
  55828. height: math.unit(8, "feet"),
  55829. default: true
  55830. },
  55831. ]
  55832. ))
  55833. characterMakers.push(() => makeCharacter(
  55834. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55835. {
  55836. hyperFront: {
  55837. height: math.unit(9 + 4/12, "feet"),
  55838. weight: math.unit(2000, "lb"),
  55839. name: "Front",
  55840. image: {
  55841. source: "./media/characters/tiden/hyper-front.svg",
  55842. extra: 400/382,
  55843. bottom: 6/406
  55844. },
  55845. form: "hyper",
  55846. },
  55847. regularFront: {
  55848. height: math.unit(7 + 10/12, "feet"),
  55849. weight: math.unit(470, "lb"),
  55850. name: "Front",
  55851. image: {
  55852. source: "./media/characters/tiden/regular-front.svg",
  55853. extra: 468/442,
  55854. bottom: 6/474
  55855. },
  55856. form: "regular",
  55857. },
  55858. },
  55859. [
  55860. {
  55861. name: "Normal",
  55862. height: math.unit(9 + 4/12, "feet"),
  55863. default: true,
  55864. form: "hyper"
  55865. },
  55866. {
  55867. name: "Normal",
  55868. height: math.unit(7 + 10/12, "feet"),
  55869. default: true,
  55870. form: "regular"
  55871. },
  55872. ],
  55873. {
  55874. "hyper": {
  55875. name: "Hyper",
  55876. default: true
  55877. },
  55878. "regular": {
  55879. name: "Regular",
  55880. },
  55881. }
  55882. ))
  55883. characterMakers.push(() => makeCharacter(
  55884. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55885. {
  55886. side: {
  55887. height: math.unit(6, "feet"),
  55888. weight: math.unit(150, "lb"),
  55889. name: "Side",
  55890. image: {
  55891. source: "./media/characters/jason-crowe/side.svg",
  55892. extra: 1771/766,
  55893. bottom: 219/1990
  55894. }
  55895. },
  55896. },
  55897. [
  55898. {
  55899. name: "Pocket Gryphon",
  55900. height: math.unit(6, "cm")
  55901. },
  55902. {
  55903. name: "Raven",
  55904. height: math.unit(60, "cm")
  55905. },
  55906. {
  55907. name: "Normal",
  55908. height: math.unit(1, "meter"),
  55909. default: true
  55910. },
  55911. ]
  55912. ))
  55913. characterMakers.push(() => makeCharacter(
  55914. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55915. {
  55916. front: {
  55917. height: math.unit(9 + 6/12, "feet"),
  55918. weight: math.unit(1100, "lb"),
  55919. name: "Front",
  55920. image: {
  55921. source: "./media/characters/django/front.svg",
  55922. extra: 1231/1136,
  55923. bottom: 34/1265
  55924. }
  55925. },
  55926. side: {
  55927. height: math.unit(9 + 6/12, "feet"),
  55928. weight: math.unit(1100, "lb"),
  55929. name: "Side",
  55930. image: {
  55931. source: "./media/characters/django/side.svg",
  55932. extra: 1267/1174,
  55933. bottom: 9/1276
  55934. }
  55935. },
  55936. },
  55937. [
  55938. {
  55939. name: "Normal",
  55940. height: math.unit(9 + 6/12, "feet"),
  55941. default: true
  55942. },
  55943. {
  55944. name: "Macro 1",
  55945. height: math.unit(50, "feet")
  55946. },
  55947. {
  55948. name: "Macro 2",
  55949. height: math.unit(500, "feet")
  55950. },
  55951. {
  55952. name: "Mega Macro",
  55953. height: math.unit(5300, "feet")
  55954. },
  55955. ]
  55956. ))
  55957. characterMakers.push(() => makeCharacter(
  55958. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55959. {
  55960. frontSfw: {
  55961. height: math.unit(120, "cm"),
  55962. weight: math.unit(15, "kg"),
  55963. name: "Front (SFW)",
  55964. image: {
  55965. source: "./media/characters/eri/front-sfw.svg",
  55966. extra: 1014/939,
  55967. bottom: 37/1051
  55968. },
  55969. form: "moth",
  55970. },
  55971. frontNsfw: {
  55972. height: math.unit(120, "cm"),
  55973. weight: math.unit(15, "kg"),
  55974. name: "Front (NSFW)",
  55975. image: {
  55976. source: "./media/characters/eri/front-nsfw.svg",
  55977. extra: 1014/939,
  55978. bottom: 37/1051
  55979. },
  55980. form: "moth",
  55981. default: true
  55982. },
  55983. egg: {
  55984. height: math.unit(10, "cm"),
  55985. name: "Egg",
  55986. image: {
  55987. source: "./media/characters/eri/egg.svg"
  55988. },
  55989. form: "egg",
  55990. default: true
  55991. },
  55992. },
  55993. [
  55994. {
  55995. name: "Normal",
  55996. height: math.unit(120, "cm"),
  55997. default: true,
  55998. form: "moth"
  55999. },
  56000. {
  56001. name: "Normal",
  56002. height: math.unit(10, "cm"),
  56003. default: true,
  56004. form: "egg"
  56005. },
  56006. ],
  56007. {
  56008. "moth": {
  56009. name: "Moth",
  56010. default: true
  56011. },
  56012. "egg": {
  56013. name: "Egg",
  56014. },
  56015. }
  56016. ))
  56017. characterMakers.push(() => makeCharacter(
  56018. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  56019. {
  56020. front: {
  56021. height: math.unit(200, "feet"),
  56022. name: "Front",
  56023. image: {
  56024. source: "./media/characters/bishop-dowser/front.svg",
  56025. extra: 933/868,
  56026. bottom: 106/1039
  56027. }
  56028. },
  56029. },
  56030. [
  56031. {
  56032. name: "Giant",
  56033. height: math.unit(200, "feet"),
  56034. default: true
  56035. },
  56036. ]
  56037. ))
  56038. characterMakers.push(() => makeCharacter(
  56039. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  56040. {
  56041. front: {
  56042. height: math.unit(2, "meters"),
  56043. preyCapacity: math.unit(3, "people"),
  56044. name: "Front",
  56045. image: {
  56046. source: "./media/characters/fryra/front.svg",
  56047. extra: 1025/948,
  56048. bottom: 30/1055
  56049. },
  56050. extraAttributes: {
  56051. "breastVolume": {
  56052. name: "Breast Volume",
  56053. power: 3,
  56054. type: "volume",
  56055. base: math.unit(8, "liters")
  56056. },
  56057. }
  56058. },
  56059. back: {
  56060. height: math.unit(2, "meters"),
  56061. preyCapacity: math.unit(3, "people"),
  56062. name: "Back",
  56063. image: {
  56064. source: "./media/characters/fryra/back.svg",
  56065. extra: 993/938,
  56066. bottom: 38/1031
  56067. },
  56068. extraAttributes: {
  56069. "breastVolume": {
  56070. name: "Breast Volume",
  56071. power: 3,
  56072. type: "volume",
  56073. base: math.unit(8, "liters")
  56074. },
  56075. }
  56076. },
  56077. head: {
  56078. height: math.unit(1.33, "feet"),
  56079. name: "Head",
  56080. image: {
  56081. source: "./media/characters/fryra/head.svg"
  56082. }
  56083. },
  56084. maw: {
  56085. height: math.unit(0.56, "feet"),
  56086. name: "Maw",
  56087. image: {
  56088. source: "./media/characters/fryra/maw.svg"
  56089. }
  56090. },
  56091. },
  56092. [
  56093. {
  56094. name: "Micro",
  56095. height: math.unit(5, "cm")
  56096. },
  56097. {
  56098. name: "Normal",
  56099. height: math.unit(2, "meters"),
  56100. default: true
  56101. },
  56102. {
  56103. name: "Small Macro",
  56104. height: math.unit(8, "meters")
  56105. },
  56106. {
  56107. name: "Macro",
  56108. height: math.unit(50, "meters")
  56109. },
  56110. {
  56111. name: "Megamacro",
  56112. height: math.unit(1, "km")
  56113. },
  56114. {
  56115. name: "Planetary",
  56116. height: math.unit(300000, "km")
  56117. },
  56118. {
  56119. name: "Universal",
  56120. height: math.unit(250, "lightyears")
  56121. },
  56122. {
  56123. name: "Fabric of Reality",
  56124. height: math.unit(1000, "multiverses")
  56125. },
  56126. ]
  56127. ))
  56128. characterMakers.push(() => makeCharacter(
  56129. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56130. {
  56131. frontDressed: {
  56132. height: math.unit(6 + 2/12, "feet"),
  56133. name: "Front (Dressed)",
  56134. image: {
  56135. source: "./media/characters/fiera/front-dressed.svg",
  56136. extra: 1883/1793,
  56137. bottom: 70/1953
  56138. }
  56139. },
  56140. backDressed: {
  56141. height: math.unit(6 + 2/12, "feet"),
  56142. name: "Back (Dressed)",
  56143. image: {
  56144. source: "./media/characters/fiera/back-dressed.svg",
  56145. extra: 1847/1780,
  56146. bottom: 70/1917
  56147. }
  56148. },
  56149. frontNude: {
  56150. height: math.unit(6 + 2/12, "feet"),
  56151. name: "Front (Nude)",
  56152. image: {
  56153. source: "./media/characters/fiera/front-nude.svg",
  56154. extra: 1875/1785,
  56155. bottom: 66/1941
  56156. }
  56157. },
  56158. backNude: {
  56159. height: math.unit(6 + 2/12, "feet"),
  56160. name: "Back (Nude)",
  56161. image: {
  56162. source: "./media/characters/fiera/back-nude.svg",
  56163. extra: 1855/1788,
  56164. bottom: 44/1899
  56165. }
  56166. },
  56167. maw: {
  56168. height: math.unit(1.3, "feet"),
  56169. name: "Maw",
  56170. image: {
  56171. source: "./media/characters/fiera/maw.svg"
  56172. }
  56173. },
  56174. paw: {
  56175. height: math.unit(1, "feet"),
  56176. name: "Paw",
  56177. image: {
  56178. source: "./media/characters/fiera/paw.svg"
  56179. }
  56180. },
  56181. shoe: {
  56182. height: math.unit(1.05, "feet"),
  56183. name: "Shoe",
  56184. image: {
  56185. source: "./media/characters/fiera/shoe.svg"
  56186. }
  56187. },
  56188. },
  56189. [
  56190. {
  56191. name: "Normal",
  56192. height: math.unit(6 + 2/12, "feet"),
  56193. default: true
  56194. },
  56195. {
  56196. name: "Size Difference",
  56197. height: math.unit(13, "feet")
  56198. },
  56199. {
  56200. name: "Macro",
  56201. height: math.unit(60, "feet")
  56202. },
  56203. {
  56204. name: "Mega Macro",
  56205. height: math.unit(200, "feet")
  56206. },
  56207. ]
  56208. ))
  56209. characterMakers.push(() => makeCharacter(
  56210. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56211. {
  56212. back: {
  56213. height: math.unit(6, "feet"),
  56214. name: "Back",
  56215. image: {
  56216. source: "./media/characters/flare/back.svg",
  56217. extra: 1883/1765,
  56218. bottom: 32/1915
  56219. }
  56220. },
  56221. },
  56222. [
  56223. {
  56224. name: "Normal",
  56225. height: math.unit(6 + 2/12, "feet"),
  56226. default: true
  56227. },
  56228. {
  56229. name: "Size Difference",
  56230. height: math.unit(13, "feet")
  56231. },
  56232. {
  56233. name: "Macro",
  56234. height: math.unit(60, "feet")
  56235. },
  56236. {
  56237. name: "Macro 2",
  56238. height: math.unit(100, "feet")
  56239. },
  56240. {
  56241. name: "Mega Macro",
  56242. height: math.unit(200, "feet")
  56243. },
  56244. ]
  56245. ))
  56246. characterMakers.push(() => makeCharacter(
  56247. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56248. {
  56249. front: {
  56250. height: math.unit(2.2, "m"),
  56251. weight: math.unit(300, "kg"),
  56252. name: "Front",
  56253. image: {
  56254. source: "./media/characters/hanna/front.svg",
  56255. extra: 1696/1502,
  56256. bottom: 206/1902
  56257. }
  56258. },
  56259. },
  56260. [
  56261. {
  56262. name: "Humanoid",
  56263. height: math.unit(2.2, "meters")
  56264. },
  56265. {
  56266. name: "Normal",
  56267. height: math.unit(4.8, "meters"),
  56268. default: true
  56269. },
  56270. ]
  56271. ))
  56272. characterMakers.push(() => makeCharacter(
  56273. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56274. {
  56275. front: {
  56276. height: math.unit(2.8, "meters"),
  56277. name: "Front",
  56278. image: {
  56279. source: "./media/characters/argo/front.svg",
  56280. extra: 731/518,
  56281. bottom: 84/815
  56282. }
  56283. },
  56284. },
  56285. [
  56286. {
  56287. name: "Normal",
  56288. height: math.unit(3, "meters"),
  56289. default: true
  56290. },
  56291. ]
  56292. ))
  56293. characterMakers.push(() => makeCharacter(
  56294. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56295. {
  56296. side: {
  56297. height: math.unit(3.8, "meters"),
  56298. name: "Side",
  56299. image: {
  56300. source: "./media/characters/sybil/side.svg",
  56301. extra: 382/361,
  56302. bottom: 25/407
  56303. }
  56304. },
  56305. },
  56306. [
  56307. {
  56308. name: "Normal",
  56309. height: math.unit(3.8, "meters"),
  56310. default: true
  56311. },
  56312. ]
  56313. ))
  56314. characterMakers.push(() => makeCharacter(
  56315. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56316. {
  56317. side: {
  56318. height: math.unit(6, "meters"),
  56319. name: "Side",
  56320. image: {
  56321. source: "./media/characters/plum/side.svg",
  56322. extra: 858/755,
  56323. bottom: 45/903
  56324. },
  56325. form: "taur",
  56326. default: true
  56327. },
  56328. back: {
  56329. height: math.unit(6.3, "meters"),
  56330. name: "Back",
  56331. image: {
  56332. source: "./media/characters/plum/back.svg",
  56333. extra: 887/813,
  56334. bottom: 32/919
  56335. },
  56336. form: "taur",
  56337. },
  56338. feral: {
  56339. height: math.unit(5.5, "meter"),
  56340. name: "Front",
  56341. image: {
  56342. source: "./media/characters/plum/feral.svg",
  56343. extra: 568/403,
  56344. bottom: 51/619
  56345. },
  56346. form: "feral",
  56347. default: true
  56348. },
  56349. head: {
  56350. height: math.unit(1.46, "meter"),
  56351. name: "Head",
  56352. image: {
  56353. source: "./media/characters/plum/head.svg"
  56354. },
  56355. form: "taur"
  56356. },
  56357. tailTop: {
  56358. height: math.unit(5.6, "meter"),
  56359. name: "Tail (Top)",
  56360. image: {
  56361. source: "./media/characters/plum/tail-top.svg"
  56362. },
  56363. form: "taur",
  56364. },
  56365. tailBottom: {
  56366. height: math.unit(5.6, "meter"),
  56367. name: "Tail (Bottom)",
  56368. image: {
  56369. source: "./media/characters/plum/tail-bottom.svg"
  56370. },
  56371. form: "taur",
  56372. },
  56373. feralHead: {
  56374. height: math.unit(2.56549521, "meter"),
  56375. name: "Head",
  56376. image: {
  56377. source: "./media/characters/plum/head.svg"
  56378. },
  56379. form: "feral"
  56380. },
  56381. feralTailTop: {
  56382. height: math.unit(5.44728435, "meter"),
  56383. name: "Tail (Top)",
  56384. image: {
  56385. source: "./media/characters/plum/tail-top.svg"
  56386. },
  56387. form: "feral",
  56388. },
  56389. feralTailBottom: {
  56390. height: math.unit(5.44728435, "meter"),
  56391. name: "Tail (Bottom)",
  56392. image: {
  56393. source: "./media/characters/plum/tail-bottom.svg"
  56394. },
  56395. form: "feral",
  56396. },
  56397. },
  56398. [
  56399. {
  56400. name: "Normal",
  56401. height: math.unit(6, "meters"),
  56402. default: true,
  56403. form: "taur"
  56404. },
  56405. {
  56406. name: "Normal",
  56407. height: math.unit(5.5, "meters"),
  56408. default: true,
  56409. form: "feral"
  56410. },
  56411. ],
  56412. {
  56413. "taur": {
  56414. name: "Taur",
  56415. default: true
  56416. },
  56417. "feral": {
  56418. name: "Feral",
  56419. },
  56420. }
  56421. ))
  56422. characterMakers.push(() => makeCharacter(
  56423. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56424. {
  56425. front: {
  56426. height: math.unit(6, "feet"),
  56427. weight: math.unit(115, "lb"),
  56428. name: "Front",
  56429. image: {
  56430. source: "./media/characters/celeste-kitsune/front.svg",
  56431. extra: 393/366,
  56432. bottom: 7/400
  56433. }
  56434. },
  56435. side: {
  56436. height: math.unit(6, "feet"),
  56437. weight: math.unit(115, "lb"),
  56438. name: "Side",
  56439. image: {
  56440. source: "./media/characters/celeste-kitsune/side.svg",
  56441. extra: 818/765,
  56442. bottom: 40/858
  56443. }
  56444. },
  56445. },
  56446. [
  56447. {
  56448. name: "Megamacro",
  56449. height: math.unit(1500, "miles"),
  56450. default: true
  56451. },
  56452. ]
  56453. ))
  56454. characterMakers.push(() => makeCharacter(
  56455. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56456. {
  56457. front: {
  56458. height: math.unit(8, "meters"),
  56459. name: "Front",
  56460. image: {
  56461. source: "./media/characters/io/front.svg",
  56462. extra: 865/722,
  56463. bottom: 58/923
  56464. }
  56465. },
  56466. back: {
  56467. height: math.unit(8, "meters"),
  56468. name: "Back",
  56469. image: {
  56470. source: "./media/characters/io/back.svg",
  56471. extra: 920/776,
  56472. bottom: 42/962
  56473. }
  56474. },
  56475. head: {
  56476. height: math.unit(5.09, "meters"),
  56477. name: "Head",
  56478. image: {
  56479. source: "./media/characters/io/head.svg"
  56480. }
  56481. },
  56482. hand: {
  56483. height: math.unit(1.6, "meters"),
  56484. name: "Hand",
  56485. image: {
  56486. source: "./media/characters/io/hand.svg"
  56487. }
  56488. },
  56489. foot: {
  56490. height: math.unit(2.4, "meters"),
  56491. name: "Foot",
  56492. image: {
  56493. source: "./media/characters/io/foot.svg"
  56494. }
  56495. },
  56496. },
  56497. [
  56498. {
  56499. name: "Normal",
  56500. height: math.unit(8, "meters"),
  56501. default: true
  56502. },
  56503. ]
  56504. ))
  56505. characterMakers.push(() => makeCharacter(
  56506. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56507. {
  56508. side: {
  56509. height: math.unit(6 + 3/12, "feet"),
  56510. weight: math.unit(225, "lb"),
  56511. name: "Side",
  56512. image: {
  56513. source: "./media/characters/silas/side.svg",
  56514. extra: 703/653,
  56515. bottom: 23/726
  56516. },
  56517. extraAttributes: {
  56518. "pawLength": {
  56519. name: "Paw Length",
  56520. power: 1,
  56521. type: "length",
  56522. base: math.unit(12, "inches")
  56523. },
  56524. "pawWidth": {
  56525. name: "Paw Width",
  56526. power: 1,
  56527. type: "length",
  56528. base: math.unit(4.5, "inches")
  56529. },
  56530. "pawArea": {
  56531. name: "Paw Area",
  56532. power: 2,
  56533. type: "area",
  56534. base: math.unit(12 * 4.5, "inches^2")
  56535. },
  56536. }
  56537. },
  56538. },
  56539. [
  56540. {
  56541. name: "Normal",
  56542. height: math.unit(6 + 3/12, "feet"),
  56543. default: true
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56549. {
  56550. back: {
  56551. height: math.unit(1.6, "meters"),
  56552. weight: math.unit(150, "lb"),
  56553. name: "Back",
  56554. image: {
  56555. source: "./media/characters/zari/back.svg",
  56556. extra: 424/411,
  56557. bottom: 32/456
  56558. },
  56559. extraAttributes: {
  56560. "bladderCapacity": {
  56561. name: "Bladder Size",
  56562. power: 3,
  56563. type: "volume",
  56564. base: math.unit(500, "mL")
  56565. },
  56566. "bladderFlow": {
  56567. name: "Flow Rate",
  56568. power: 3,
  56569. type: "volume",
  56570. base: math.unit(25, "mL")
  56571. },
  56572. }
  56573. },
  56574. },
  56575. [
  56576. {
  56577. name: "Normal",
  56578. height: math.unit(1.6, "meters"),
  56579. default: true
  56580. },
  56581. ]
  56582. ))
  56583. characterMakers.push(() => makeCharacter(
  56584. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56585. {
  56586. front: {
  56587. height: math.unit(25, "feet"),
  56588. weight: math.unit(5, "tons"),
  56589. name: "Front",
  56590. image: {
  56591. source: "./media/characters/charlie-human/front.svg",
  56592. extra: 1870/1740,
  56593. bottom: 102/1972
  56594. },
  56595. extraAttributes: {
  56596. "dickLength": {
  56597. name: "Dick Length",
  56598. power: 1,
  56599. type: "length",
  56600. base: math.unit(9, "feet")
  56601. },
  56602. }
  56603. },
  56604. back: {
  56605. height: math.unit(25, "feet"),
  56606. weight: math.unit(5, "tons"),
  56607. name: "Back",
  56608. image: {
  56609. source: "./media/characters/charlie-human/back.svg",
  56610. extra: 1858/1733,
  56611. bottom: 105/1963
  56612. },
  56613. extraAttributes: {
  56614. "dickLength": {
  56615. name: "Dick Length",
  56616. power: 1,
  56617. type: "length",
  56618. base: math.unit(9, "feet")
  56619. },
  56620. }
  56621. },
  56622. },
  56623. [
  56624. {
  56625. name: "\"Normal\"",
  56626. height: math.unit(6 + 4/12, "feet")
  56627. },
  56628. {
  56629. name: "Big",
  56630. height: math.unit(25, "feet"),
  56631. default: true
  56632. },
  56633. ]
  56634. ))
  56635. characterMakers.push(() => makeCharacter(
  56636. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56637. {
  56638. front: {
  56639. height: math.unit(6 + 4/12, "feet"),
  56640. weight: math.unit(320, "lb"),
  56641. name: "Front",
  56642. image: {
  56643. source: "./media/characters/ookitsu/front.svg",
  56644. extra: 1160/976,
  56645. bottom: 38/1198
  56646. }
  56647. },
  56648. frontNsfw: {
  56649. height: math.unit(6 + 4/12, "feet"),
  56650. weight: math.unit(320, "lb"),
  56651. name: "Front (NSFW)",
  56652. image: {
  56653. source: "./media/characters/ookitsu/front-nsfw.svg",
  56654. extra: 1160/976,
  56655. bottom: 38/1198
  56656. }
  56657. },
  56658. back: {
  56659. height: math.unit(6 + 4/12, "feet"),
  56660. weight: math.unit(320, "lb"),
  56661. name: "Back",
  56662. image: {
  56663. source: "./media/characters/ookitsu/back.svg",
  56664. extra: 1030/975,
  56665. bottom: 70/1100
  56666. }
  56667. },
  56668. head: {
  56669. height: math.unit(1.79, "feet"),
  56670. name: "Head",
  56671. image: {
  56672. source: "./media/characters/ookitsu/head.svg"
  56673. }
  56674. },
  56675. hand: {
  56676. height: math.unit(0.92, "feet"),
  56677. name: "Hand",
  56678. image: {
  56679. source: "./media/characters/ookitsu/hand.svg"
  56680. }
  56681. },
  56682. tails: {
  56683. height: math.unit(3.3, "feet"),
  56684. name: "Tails",
  56685. image: {
  56686. source: "./media/characters/ookitsu/tails.svg"
  56687. }
  56688. },
  56689. dick: {
  56690. height: math.unit(1.10833, "feet"),
  56691. name: "Dick",
  56692. image: {
  56693. source: "./media/characters/ookitsu/dick.svg"
  56694. }
  56695. },
  56696. },
  56697. [
  56698. {
  56699. name: "Normal",
  56700. height: math.unit(6 + 4/12, "feet"),
  56701. default: true
  56702. },
  56703. {
  56704. name: "Macro",
  56705. height: math.unit(30, "feet")
  56706. },
  56707. ]
  56708. ))
  56709. characterMakers.push(() => makeCharacter(
  56710. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56711. {
  56712. anthroFront: {
  56713. height: math.unit(6, "feet"),
  56714. weight: math.unit(250, "lb"),
  56715. name: "Front",
  56716. image: {
  56717. source: "./media/characters/jhusky/anthro-front.svg",
  56718. extra: 474/439,
  56719. bottom: 7/481
  56720. },
  56721. form: "anthro",
  56722. default: true
  56723. },
  56724. taurSideSfw: {
  56725. height: math.unit(6 + 4/12, "feet"),
  56726. weight: math.unit(500, "lb"),
  56727. name: "Side (SFW)",
  56728. image: {
  56729. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56730. extra: 1741/1629,
  56731. bottom: 196/1937
  56732. },
  56733. form: "taur",
  56734. default: true
  56735. },
  56736. taurSideNsfw: {
  56737. height: math.unit(6 + 4/12, "feet"),
  56738. weight: math.unit(500, "lb"),
  56739. name: "Taur (NSFW)",
  56740. image: {
  56741. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56742. extra: 1741/1629,
  56743. bottom: 196/1937
  56744. },
  56745. form: "taur",
  56746. },
  56747. },
  56748. [
  56749. {
  56750. name: "Huge",
  56751. height: math.unit(500, "feet"),
  56752. form: "anthro"
  56753. },
  56754. {
  56755. name: "Macro",
  56756. height: math.unit(1000, "feet"),
  56757. default: true,
  56758. form: "anthro"
  56759. },
  56760. {
  56761. name: "Megamacro",
  56762. height: math.unit(10000, "feet"),
  56763. form: "anthro"
  56764. },
  56765. {
  56766. name: "Huge",
  56767. height: math.unit(528, "feet"),
  56768. form: "taur"
  56769. },
  56770. {
  56771. name: "Macro",
  56772. height: math.unit(1056, "feet"),
  56773. default: true,
  56774. form: "taur"
  56775. },
  56776. {
  56777. name: "Megamacro",
  56778. height: math.unit(10556, "feet"),
  56779. form: "taur"
  56780. },
  56781. ],
  56782. {
  56783. "anthro": {
  56784. name: "Anthro",
  56785. default: true
  56786. },
  56787. "taur": {
  56788. name: "Taur",
  56789. },
  56790. }
  56791. ))
  56792. characterMakers.push(() => makeCharacter(
  56793. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56794. {
  56795. front: {
  56796. height: math.unit(8, "feet"),
  56797. weight: math.unit(500, "lb"),
  56798. name: "Front",
  56799. image: {
  56800. source: "./media/characters/armail/front.svg",
  56801. extra: 1753/1669,
  56802. bottom: 155/1908
  56803. }
  56804. },
  56805. back: {
  56806. height: math.unit(8, "feet"),
  56807. weight: math.unit(500, "lb"),
  56808. name: "Back",
  56809. image: {
  56810. source: "./media/characters/armail/back.svg",
  56811. extra: 1872/1803,
  56812. bottom: 63/1935
  56813. }
  56814. },
  56815. },
  56816. [
  56817. {
  56818. name: "Micro",
  56819. height: math.unit(0.25, "feet")
  56820. },
  56821. {
  56822. name: "Normal",
  56823. height: math.unit(8, "feet"),
  56824. default: true
  56825. },
  56826. {
  56827. name: "Mini-macro",
  56828. height: math.unit(30, "feet")
  56829. },
  56830. {
  56831. name: "Macro",
  56832. height: math.unit(400, "feet")
  56833. },
  56834. {
  56835. name: "Mega-macro",
  56836. height: math.unit(6000, "feet")
  56837. },
  56838. ]
  56839. ))
  56840. characterMakers.push(() => makeCharacter(
  56841. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56842. {
  56843. front: {
  56844. height: math.unit(6 + 7/12, "feet"),
  56845. weight: math.unit(210, "lb"),
  56846. name: "Front",
  56847. image: {
  56848. source: "./media/characters/wilfred-t-buxton/front.svg",
  56849. extra: 1068/882,
  56850. bottom: 28/1096
  56851. }
  56852. },
  56853. },
  56854. [
  56855. {
  56856. name: "Normal",
  56857. height: math.unit(6 + 7/12, "feet"),
  56858. default: true
  56859. },
  56860. ]
  56861. ))
  56862. characterMakers.push(() => makeCharacter(
  56863. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56864. {
  56865. front: {
  56866. height: math.unit(5 + 2/12, "feet"),
  56867. weight: math.unit(120, "lb"),
  56868. name: "Front",
  56869. image: {
  56870. source: "./media/characters/leighton-marrow/front.svg",
  56871. extra: 441/409,
  56872. bottom: 37/478
  56873. }
  56874. },
  56875. },
  56876. [
  56877. {
  56878. name: "Normal",
  56879. height: math.unit(5 + 2/12, "feet"),
  56880. default: true
  56881. },
  56882. ]
  56883. ))
  56884. characterMakers.push(() => makeCharacter(
  56885. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56886. {
  56887. front: {
  56888. height: math.unit(4, "meters"),
  56889. weight: math.unit(1200, "kg"),
  56890. name: "Front",
  56891. image: {
  56892. source: "./media/characters/licos/front.svg",
  56893. extra: 1727/1604,
  56894. bottom: 101/1828
  56895. },
  56896. form: "anthro",
  56897. default: true
  56898. },
  56899. taur_side: {
  56900. height: math.unit(20, "meters"),
  56901. weight: math.unit(1100000, "kg"),
  56902. name: "Side",
  56903. image: {
  56904. source: "./media/characters/licos/taur.svg",
  56905. extra: 1158/1091,
  56906. bottom: 80/1238
  56907. },
  56908. form: "taur",
  56909. default: true
  56910. },
  56911. },
  56912. [
  56913. {
  56914. name: "Normal",
  56915. height: math.unit(4, "meters"),
  56916. default: true,
  56917. form: "anthro"
  56918. },
  56919. {
  56920. name: "Normal",
  56921. height: math.unit(20, "meters"),
  56922. default: true,
  56923. form: "taur"
  56924. },
  56925. ],
  56926. {
  56927. "anthro": {
  56928. name: "Anthro",
  56929. default: true
  56930. },
  56931. "taur": {
  56932. name: "Taur",
  56933. },
  56934. }
  56935. ))
  56936. characterMakers.push(() => makeCharacter(
  56937. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56938. {
  56939. front: {
  56940. height: math.unit(10 + 3/12, "feet"),
  56941. name: "Front",
  56942. image: {
  56943. source: "./media/characters/theo-monkey/front.svg",
  56944. extra: 1735/1658,
  56945. bottom: 73/1808
  56946. }
  56947. },
  56948. back: {
  56949. height: math.unit(10 + 3/12, "feet"),
  56950. name: "Back",
  56951. image: {
  56952. source: "./media/characters/theo-monkey/back.svg",
  56953. extra: 1742/1664,
  56954. bottom: 33/1775
  56955. }
  56956. },
  56957. head: {
  56958. height: math.unit(2.29, "feet"),
  56959. name: "Head",
  56960. image: {
  56961. source: "./media/characters/theo-monkey/head.svg"
  56962. }
  56963. },
  56964. handPalm: {
  56965. height: math.unit(1.73, "feet"),
  56966. name: "Hand (Palm)",
  56967. image: {
  56968. source: "./media/characters/theo-monkey/hand-palm.svg"
  56969. }
  56970. },
  56971. handBack: {
  56972. height: math.unit(1.63, "feet"),
  56973. name: "Hand (Back)",
  56974. image: {
  56975. source: "./media/characters/theo-monkey/hand-back.svg"
  56976. }
  56977. },
  56978. footSole: {
  56979. height: math.unit(2.15, "feet"),
  56980. name: "Foot (Sole)",
  56981. image: {
  56982. source: "./media/characters/theo-monkey/foot-sole.svg"
  56983. }
  56984. },
  56985. footSide: {
  56986. height: math.unit(1.6, "feet"),
  56987. name: "Foot (Side)",
  56988. image: {
  56989. source: "./media/characters/theo-monkey/foot-side.svg"
  56990. }
  56991. },
  56992. },
  56993. [
  56994. {
  56995. name: "Normal",
  56996. height: math.unit(10 + 3/12, "feet"),
  56997. default: true
  56998. },
  56999. ]
  57000. ))
  57001. characterMakers.push(() => makeCharacter(
  57002. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  57003. {
  57004. front: {
  57005. height: math.unit(11, "feet"),
  57006. weight: math.unit(3000, "lb"),
  57007. preyCapacity: math.unit(10, "people"),
  57008. name: "Front",
  57009. image: {
  57010. source: "./media/characters/brook/front.svg",
  57011. extra: 909/835,
  57012. bottom: 108/1017
  57013. }
  57014. },
  57015. back: {
  57016. height: math.unit(11, "feet"),
  57017. weight: math.unit(3000, "lb"),
  57018. preyCapacity: math.unit(10, "people"),
  57019. name: "Back",
  57020. image: {
  57021. source: "./media/characters/brook/back.svg",
  57022. extra: 976/916,
  57023. bottom: 34/1010
  57024. }
  57025. },
  57026. backAlt: {
  57027. height: math.unit(11, "feet"),
  57028. weight: math.unit(3000, "lb"),
  57029. preyCapacity: math.unit(10, "people"),
  57030. name: "Back (Alt)",
  57031. image: {
  57032. source: "./media/characters/brook/back-alt.svg",
  57033. extra: 1283/1213,
  57034. bottom: 35/1318
  57035. }
  57036. },
  57037. bust: {
  57038. height: math.unit(9.0859030837, "feet"),
  57039. weight: math.unit(3000, "lb"),
  57040. preyCapacity: math.unit(10, "people"),
  57041. name: "Bust",
  57042. image: {
  57043. source: "./media/characters/brook/bust.svg",
  57044. extra: 2043/1923,
  57045. bottom: 0/2043
  57046. }
  57047. },
  57048. },
  57049. [
  57050. {
  57051. name: "Small",
  57052. height: math.unit(11, "feet"),
  57053. default: true
  57054. },
  57055. {
  57056. name: "Towering",
  57057. height: math.unit(5, "km")
  57058. },
  57059. {
  57060. name: "Enormous",
  57061. height: math.unit(25, "earths")
  57062. },
  57063. ]
  57064. ))
  57065. characterMakers.push(() => makeCharacter(
  57066. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  57067. {
  57068. front: {
  57069. height: math.unit(4, "feet"),
  57070. weight: math.unit(150, "lb"),
  57071. name: "Front",
  57072. image: {
  57073. source: "./media/characters/squishi/front.svg",
  57074. extra: 1428/1271,
  57075. bottom: 30/1458
  57076. },
  57077. extraAttributes: {
  57078. "pawSize": {
  57079. name: "Paw Size",
  57080. power: 1,
  57081. type: "length",
  57082. base: math.unit(14, "ShoeSizeMensUS"),
  57083. defaultUnit: "ShoeSizeMensUS"
  57084. },
  57085. }
  57086. },
  57087. side: {
  57088. height: math.unit(4, "feet"),
  57089. weight: math.unit(150, "lb"),
  57090. name: "Side",
  57091. image: {
  57092. source: "./media/characters/squishi/side.svg",
  57093. extra: 1428/1271,
  57094. bottom: 30/1458
  57095. },
  57096. extraAttributes: {
  57097. "pawSize": {
  57098. name: "Paw Size",
  57099. power: 1,
  57100. type: "length",
  57101. base: math.unit(14, "ShoeSizeMensUS"),
  57102. defaultUnit: "ShoeSizeMensUS"
  57103. },
  57104. }
  57105. },
  57106. back: {
  57107. height: math.unit(4, "feet"),
  57108. weight: math.unit(150, "lb"),
  57109. name: "Back",
  57110. image: {
  57111. source: "./media/characters/squishi/back.svg",
  57112. extra: 1428/1271,
  57113. bottom: 30/1458
  57114. },
  57115. extraAttributes: {
  57116. "pawSize": {
  57117. name: "Paw Size",
  57118. power: 1,
  57119. type: "length",
  57120. base: math.unit(14, "ShoeSizeMensUS"),
  57121. defaultUnit: "ShoeSizeMensUS"
  57122. },
  57123. }
  57124. },
  57125. },
  57126. [
  57127. {
  57128. name: "Normal",
  57129. height: math.unit(4, "feet"),
  57130. default: true
  57131. },
  57132. ]
  57133. ))
  57134. characterMakers.push(() => makeCharacter(
  57135. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57136. {
  57137. front: {
  57138. height: math.unit(7 + 8/12, "feet"),
  57139. weight: math.unit(333, "lb"),
  57140. name: "Front",
  57141. image: {
  57142. source: "./media/characters/vincent-vasroc/front.svg",
  57143. extra: 1962/1860,
  57144. bottom: 41/2003
  57145. }
  57146. },
  57147. back: {
  57148. height: math.unit(7 + 8/12, "feet"),
  57149. weight: math.unit(333, "lb"),
  57150. name: "Back",
  57151. image: {
  57152. source: "./media/characters/vincent-vasroc/back.svg",
  57153. extra: 1952/1815,
  57154. bottom: 33/1985
  57155. }
  57156. },
  57157. paw: {
  57158. height: math.unit(1.24, "feet"),
  57159. name: "Paw",
  57160. image: {
  57161. source: "./media/characters/vincent-vasroc/paw.svg"
  57162. }
  57163. },
  57164. ear: {
  57165. height: math.unit(0.75, "feet"),
  57166. name: "Ear",
  57167. image: {
  57168. source: "./media/characters/vincent-vasroc/ear.svg"
  57169. }
  57170. },
  57171. },
  57172. [
  57173. {
  57174. name: "Nano",
  57175. height: math.unit(92, "micrometers")
  57176. },
  57177. {
  57178. name: "Normal",
  57179. height: math.unit(7 + 8/12, "feet"),
  57180. default: true
  57181. },
  57182. ]
  57183. ))
  57184. characterMakers.push(() => makeCharacter(
  57185. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57186. {
  57187. frontNsfw: {
  57188. height: math.unit(40, "feet"),
  57189. weight: math.unit(58, "tons"),
  57190. name: "Front (NSFW)",
  57191. image: {
  57192. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57193. extra: 1265/965,
  57194. bottom: 155/1420
  57195. }
  57196. },
  57197. frontSfw: {
  57198. height: math.unit(40, "feet"),
  57199. weight: math.unit(58, "tons"),
  57200. name: "Front (SFW)",
  57201. image: {
  57202. source: "./media/characters/ru-kahn/front-sfw.svg",
  57203. extra: 1265/965,
  57204. bottom: 80/1345
  57205. }
  57206. },
  57207. },
  57208. [
  57209. {
  57210. name: "Small",
  57211. height: math.unit(4, "feet")
  57212. },
  57213. {
  57214. name: "Normal",
  57215. height: math.unit(40, "feet"),
  57216. default: true
  57217. },
  57218. {
  57219. name: "Macro",
  57220. height: math.unit(400, "feet")
  57221. },
  57222. ]
  57223. ))
  57224. characterMakers.push(() => makeCharacter(
  57225. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57226. {
  57227. frontNude: {
  57228. height: math.unit(6 + 5/12, "feet"),
  57229. name: "Front (Nude)",
  57230. image: {
  57231. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57232. extra: 1369/1366,
  57233. bottom: 68/1437
  57234. }
  57235. },
  57236. frontDressed: {
  57237. height: math.unit(6 + 5/12, "feet"),
  57238. name: "Front (Dressed)",
  57239. image: {
  57240. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57241. extra: 1369/1366,
  57242. bottom: 68/1437
  57243. }
  57244. },
  57245. },
  57246. [
  57247. {
  57248. name: "Normal",
  57249. height: math.unit(6 + 5/12, "feet"),
  57250. default: true
  57251. },
  57252. {
  57253. name: "Maximum",
  57254. height: math.unit(1930, "feet")
  57255. },
  57256. ]
  57257. ))
  57258. characterMakers.push(() => makeCharacter(
  57259. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57260. {
  57261. front: {
  57262. height: math.unit(5 + 6/12, "feet"),
  57263. name: "Front",
  57264. image: {
  57265. source: "./media/characters/kaja/front.svg",
  57266. extra: 1874/1514,
  57267. bottom: 117/1991
  57268. }
  57269. },
  57270. },
  57271. [
  57272. {
  57273. name: "Normal",
  57274. height: math.unit(5 + 6/12, "feet"),
  57275. default: true
  57276. },
  57277. ]
  57278. ))
  57279. characterMakers.push(() => makeCharacter(
  57280. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57281. {
  57282. front: {
  57283. height: math.unit(5 + 9/12, "feet"),
  57284. weight: math.unit(200, "lb"),
  57285. name: "Front",
  57286. image: {
  57287. source: "./media/characters/mark-smith/front.svg",
  57288. extra: 1004/943,
  57289. bottom: 58/1062
  57290. }
  57291. },
  57292. back: {
  57293. height: math.unit(5 + 9/12, "feet"),
  57294. weight: math.unit(200, "lb"),
  57295. name: "Back",
  57296. image: {
  57297. source: "./media/characters/mark-smith/back.svg",
  57298. extra: 1023/953,
  57299. bottom: 24/1047
  57300. }
  57301. },
  57302. head: {
  57303. height: math.unit(1.82, "feet"),
  57304. name: "Head",
  57305. image: {
  57306. source: "./media/characters/mark-smith/head.svg"
  57307. }
  57308. },
  57309. hand: {
  57310. height: math.unit(1.4, "feet"),
  57311. name: "Hand",
  57312. image: {
  57313. source: "./media/characters/mark-smith/hand.svg"
  57314. }
  57315. },
  57316. paw: {
  57317. height: math.unit(1.69, "feet"),
  57318. name: "Paw",
  57319. image: {
  57320. source: "./media/characters/mark-smith/paw.svg"
  57321. }
  57322. },
  57323. },
  57324. [
  57325. {
  57326. name: "Micro",
  57327. height: math.unit(0.25, "inches")
  57328. },
  57329. {
  57330. name: "Normal",
  57331. height: math.unit(5 + 9/12, "feet"),
  57332. default: true
  57333. },
  57334. {
  57335. name: "Macro",
  57336. height: math.unit(500, "feet")
  57337. },
  57338. ]
  57339. ))
  57340. characterMakers.push(() => makeCharacter(
  57341. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57342. {
  57343. frontNude: {
  57344. height: math.unit(6, "feet"),
  57345. name: "Front (Nude)",
  57346. image: {
  57347. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57348. extra: 1384/1321,
  57349. bottom: 57/1441
  57350. }
  57351. },
  57352. frontDressed: {
  57353. height: math.unit(6, "feet"),
  57354. name: "Front (Dressed)",
  57355. image: {
  57356. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57357. extra: 1384/1321,
  57358. bottom: 57/1441
  57359. }
  57360. },
  57361. },
  57362. [
  57363. {
  57364. name: "Normal",
  57365. height: math.unit(6, "feet"),
  57366. default: true
  57367. },
  57368. {
  57369. name: "Maximum",
  57370. height: math.unit(1776, "feet")
  57371. },
  57372. ]
  57373. ))
  57374. characterMakers.push(() => makeCharacter(
  57375. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57376. {
  57377. front: {
  57378. height: math.unit(2 + 4/12, "feet"),
  57379. weight: math.unit(350, "lb"),
  57380. name: "Front",
  57381. image: {
  57382. source: "./media/characters/devos/front.svg",
  57383. extra: 958/852,
  57384. bottom: 143/1101
  57385. }
  57386. },
  57387. },
  57388. [
  57389. {
  57390. name: "Base",
  57391. height: math.unit(2 + 4/12, "feet"),
  57392. default: true
  57393. },
  57394. ]
  57395. ))
  57396. characterMakers.push(() => makeCharacter(
  57397. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57398. {
  57399. front: {
  57400. height: math.unit(9 + 2/12, "feet"),
  57401. name: "Front",
  57402. image: {
  57403. source: "./media/characters/hiveheart/front.svg",
  57404. extra: 394/364,
  57405. bottom: 65/459
  57406. }
  57407. },
  57408. back: {
  57409. height: math.unit(9 + 2/12, "feet"),
  57410. name: "Back",
  57411. image: {
  57412. source: "./media/characters/hiveheart/back.svg",
  57413. extra: 374/357,
  57414. bottom: 63/437
  57415. }
  57416. },
  57417. },
  57418. [
  57419. {
  57420. name: "Base",
  57421. height: math.unit(9 + 2/12, "feet"),
  57422. default: true
  57423. },
  57424. ]
  57425. ))
  57426. characterMakers.push(() => makeCharacter(
  57427. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57428. {
  57429. front: {
  57430. height: math.unit(2.5, "inches"),
  57431. weight: math.unit(0.6, "oz"),
  57432. name: "Front",
  57433. image: {
  57434. source: "./media/characters/bryn/front.svg",
  57435. extra: 1484/1119,
  57436. bottom: 66/1550
  57437. }
  57438. },
  57439. back: {
  57440. height: math.unit(2.5, "inches"),
  57441. weight: math.unit(0.6, "oz"),
  57442. name: "Back",
  57443. image: {
  57444. source: "./media/characters/bryn/back.svg",
  57445. extra: 1472/1170,
  57446. bottom: 32/1504
  57447. }
  57448. },
  57449. wings: {
  57450. height: math.unit(2.5, "inches"),
  57451. weight: math.unit(0.6, "oz"),
  57452. name: "Wings",
  57453. image: {
  57454. source: "./media/characters/bryn/wings.svg",
  57455. extra: 567/448,
  57456. bottom: 10/577
  57457. }
  57458. },
  57459. dressed: {
  57460. height: math.unit(2.5, "inches"),
  57461. weight: math.unit(0.6, "oz"),
  57462. name: "Dressed",
  57463. image: {
  57464. source: "./media/characters/bryn/dressed.svg",
  57465. extra: 719/589,
  57466. bottom: 54/773
  57467. }
  57468. },
  57469. head: {
  57470. height: math.unit(1.75, "inches"),
  57471. name: "Head",
  57472. image: {
  57473. source: "./media/characters/bryn/head.svg"
  57474. }
  57475. },
  57476. foot: {
  57477. height: math.unit(0.4, "inches"),
  57478. name: "Foot",
  57479. image: {
  57480. source: "./media/characters/bryn/foot.svg"
  57481. }
  57482. },
  57483. },
  57484. [
  57485. {
  57486. name: "Normal",
  57487. height: math.unit(2.5, "inches"),
  57488. default: true
  57489. },
  57490. ]
  57491. ))
  57492. characterMakers.push(() => makeCharacter(
  57493. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57494. {
  57495. side: {
  57496. height: math.unit(7, "feet"),
  57497. weight: math.unit(657, "kg"),
  57498. name: "Side",
  57499. image: {
  57500. source: "./media/characters/delta/side.svg",
  57501. extra: 781/212,
  57502. bottom: 7/788
  57503. },
  57504. extraAttributes: {
  57505. "wingspan": {
  57506. name: "Wingspan",
  57507. power: 1,
  57508. type: "length",
  57509. base: math.unit(48, "feet")
  57510. },
  57511. "length": {
  57512. name: "Length",
  57513. power: 1,
  57514. type: "length",
  57515. base: math.unit(21, "feet")
  57516. },
  57517. "pawSize": {
  57518. name: "Paw Size",
  57519. power: 2,
  57520. type: "area",
  57521. base: math.unit(1.5*1.4, "feet^2")
  57522. },
  57523. }
  57524. },
  57525. },
  57526. [
  57527. {
  57528. name: "Normal",
  57529. height: math.unit(6, "feet"),
  57530. default: true
  57531. },
  57532. ]
  57533. ))
  57534. characterMakers.push(() => makeCharacter(
  57535. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57536. {
  57537. front: {
  57538. height: math.unit(6, "feet"),
  57539. name: "Front",
  57540. image: {
  57541. source: "./media/characters/pyrow/front.svg",
  57542. extra: 513/486,
  57543. bottom: 14/527
  57544. }
  57545. },
  57546. frontWing: {
  57547. height: math.unit(6, "feet"),
  57548. name: "Front (Wing)",
  57549. image: {
  57550. source: "./media/characters/pyrow/front-wing.svg",
  57551. extra: 539/383,
  57552. bottom: 20/559
  57553. }
  57554. },
  57555. back: {
  57556. height: math.unit(6, "feet"),
  57557. name: "Back",
  57558. image: {
  57559. source: "./media/characters/pyrow/back.svg",
  57560. extra: 500/473,
  57561. bottom: 9/509
  57562. }
  57563. },
  57564. },
  57565. [
  57566. {
  57567. name: "Normal",
  57568. height: math.unit(6, "feet"),
  57569. default: true
  57570. },
  57571. ]
  57572. ))
  57573. characterMakers.push(() => makeCharacter(
  57574. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57575. {
  57576. front: {
  57577. height: math.unit(5, "meters"),
  57578. weight: math.unit(3, "tonnes"),
  57579. name: "Front",
  57580. image: {
  57581. source: "./media/characters/velikan/front.svg",
  57582. extra: 867/744,
  57583. bottom: 71/938
  57584. },
  57585. extraAttributes: {
  57586. "shoeSize": {
  57587. name: "Shoe Size",
  57588. power: 1,
  57589. type: "length",
  57590. base: math.unit(135, "ShoeSizeUK"),
  57591. defaultUnit: "ShoeSizeUK"
  57592. },
  57593. }
  57594. },
  57595. },
  57596. [
  57597. {
  57598. name: "Normal",
  57599. height: math.unit(5, "meters"),
  57600. default: true
  57601. },
  57602. {
  57603. name: "Macro",
  57604. height: math.unit(1, "km")
  57605. },
  57606. {
  57607. name: "Mega Macro",
  57608. height: math.unit(100, "km")
  57609. },
  57610. {
  57611. name: "Giga Macro",
  57612. height: math.unit(2, "megameters")
  57613. },
  57614. {
  57615. name: "Planetary",
  57616. height: math.unit(22, "megameters")
  57617. },
  57618. {
  57619. name: "Solar",
  57620. height: math.unit(8, "gigameters")
  57621. },
  57622. {
  57623. name: "Cosmic",
  57624. height: math.unit(10, "zettameters")
  57625. },
  57626. {
  57627. name: "Omni",
  57628. height: math.unit(9e260, "multiverses")
  57629. },
  57630. ]
  57631. ))
  57632. characterMakers.push(() => makeCharacter(
  57633. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57634. {
  57635. front: {
  57636. height: math.unit(4 + 3/12, "feet"),
  57637. weight: math.unit(90, "lb"),
  57638. name: "Front",
  57639. image: {
  57640. source: "./media/characters/sabiki/front.svg",
  57641. extra: 1662/1423,
  57642. bottom: 65/1727
  57643. }
  57644. },
  57645. },
  57646. [
  57647. {
  57648. name: "Normal",
  57649. height: math.unit(4 + 3/12, "feet"),
  57650. default: true
  57651. },
  57652. ]
  57653. ))
  57654. characterMakers.push(() => makeCharacter(
  57655. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57656. {
  57657. frontSfw: {
  57658. height: math.unit(2, "mm"),
  57659. name: "Front (SFW)",
  57660. image: {
  57661. source: "./media/characters/carmel/front-sfw.svg",
  57662. extra: 1131/1006,
  57663. bottom: 66/1197
  57664. }
  57665. },
  57666. frontNsfw: {
  57667. height: math.unit(2, "mm"),
  57668. name: "Front (NSFW)",
  57669. image: {
  57670. source: "./media/characters/carmel/front-nsfw.svg",
  57671. extra: 1131/1006,
  57672. bottom: 66/1197
  57673. }
  57674. },
  57675. foot: {
  57676. height: math.unit(0.3, "mm"),
  57677. name: "Foot",
  57678. image: {
  57679. source: "./media/characters/carmel/foot.svg"
  57680. }
  57681. },
  57682. tongue: {
  57683. height: math.unit(0.71, "mm"),
  57684. name: "Tongue",
  57685. image: {
  57686. source: "./media/characters/carmel/tongue.svg"
  57687. }
  57688. },
  57689. dick: {
  57690. height: math.unit(0.085, "mm"),
  57691. name: "Dick",
  57692. image: {
  57693. source: "./media/characters/carmel/dick.svg"
  57694. }
  57695. },
  57696. },
  57697. [
  57698. {
  57699. name: "Micro",
  57700. height: math.unit(2, "mm"),
  57701. default: true
  57702. },
  57703. {
  57704. name: "Normal",
  57705. height: math.unit(4 + 8/12, "feet")
  57706. },
  57707. {
  57708. name: "Mega Macro",
  57709. height: math.unit(250, "feet")
  57710. },
  57711. {
  57712. name: "BIGGER",
  57713. height: math.unit(1000, "feet")
  57714. },
  57715. {
  57716. name: "BIGGEST",
  57717. height: math.unit(2, "miles")
  57718. },
  57719. ]
  57720. ))
  57721. characterMakers.push(() => makeCharacter(
  57722. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57723. {
  57724. front: {
  57725. height: math.unit(6.5, "feet"),
  57726. weight: math.unit(198, "lb"),
  57727. name: "Front",
  57728. image: {
  57729. source: "./media/characters/tamani/anthro.svg",
  57730. extra: 930/890,
  57731. bottom: 34/964
  57732. },
  57733. form: "anthro",
  57734. default: true
  57735. },
  57736. side: {
  57737. height: math.unit(6, "feet"),
  57738. weight: math.unit(198*2, "lb"),
  57739. name: "Side",
  57740. image: {
  57741. source: "./media/characters/tamani/feral.svg",
  57742. extra: 559/519,
  57743. bottom: 43/602
  57744. },
  57745. form: "feral"
  57746. },
  57747. },
  57748. [
  57749. {
  57750. name: "Normal",
  57751. height: math.unit(6.5, "feet"),
  57752. default: true,
  57753. form: "anthro"
  57754. },
  57755. {
  57756. name: "Normal",
  57757. height: math.unit(6, "feet"),
  57758. default: true,
  57759. form: "feral"
  57760. },
  57761. ],
  57762. {
  57763. "anthro": {
  57764. name: "Anthro",
  57765. default: true
  57766. },
  57767. "feral": {
  57768. name: "Feral",
  57769. },
  57770. }
  57771. ))
  57772. characterMakers.push(() => makeCharacter(
  57773. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57774. {
  57775. front: {
  57776. height: math.unit(4 + 1/12, "feet"),
  57777. weight: math.unit(114, "lb"),
  57778. name: "Front",
  57779. image: {
  57780. source: "./media/characters/dex/front.svg",
  57781. extra: 787/680,
  57782. bottom: 18/805
  57783. }
  57784. },
  57785. side: {
  57786. height: math.unit(4 + 1/12, "feet"),
  57787. weight: math.unit(114, "lb"),
  57788. name: "Side",
  57789. image: {
  57790. source: "./media/characters/dex/side.svg",
  57791. extra: 785/680,
  57792. bottom: 12/797
  57793. }
  57794. },
  57795. back: {
  57796. height: math.unit(4 + 1/12, "feet"),
  57797. weight: math.unit(114, "lb"),
  57798. name: "Back",
  57799. image: {
  57800. source: "./media/characters/dex/back.svg",
  57801. extra: 785/681,
  57802. bottom: 17/802
  57803. }
  57804. },
  57805. loungewear: {
  57806. height: math.unit(4 + 1/12, "feet"),
  57807. weight: math.unit(114, "lb"),
  57808. name: "Loungewear",
  57809. image: {
  57810. source: "./media/characters/dex/loungewear.svg",
  57811. extra: 787/680,
  57812. bottom: 18/805
  57813. }
  57814. },
  57815. workout: {
  57816. height: math.unit(4 + 1/12, "feet"),
  57817. weight: math.unit(114, "lb"),
  57818. name: "Workout",
  57819. image: {
  57820. source: "./media/characters/dex/workout.svg",
  57821. extra: 787/680,
  57822. bottom: 18/805
  57823. }
  57824. },
  57825. schoolUniform: {
  57826. height: math.unit(4 + 1/12, "feet"),
  57827. weight: math.unit(114, "lb"),
  57828. name: "School Uniform",
  57829. image: {
  57830. source: "./media/characters/dex/school-uniform.svg",
  57831. extra: 787/680,
  57832. bottom: 18/805
  57833. }
  57834. },
  57835. maw: {
  57836. height: math.unit(0.55, "feet"),
  57837. name: "Maw",
  57838. image: {
  57839. source: "./media/characters/dex/maw.svg"
  57840. }
  57841. },
  57842. paw: {
  57843. height: math.unit(0.87, "feet"),
  57844. name: "Paw",
  57845. image: {
  57846. source: "./media/characters/dex/paw.svg"
  57847. }
  57848. },
  57849. bust: {
  57850. height: math.unit(1.67, "feet"),
  57851. name: "Bust",
  57852. image: {
  57853. source: "./media/characters/dex/bust.svg"
  57854. }
  57855. },
  57856. },
  57857. [
  57858. {
  57859. name: "Normal",
  57860. height: math.unit(4 + 1/12, "feet"),
  57861. default: true
  57862. },
  57863. ]
  57864. ))
  57865. characterMakers.push(() => makeCharacter(
  57866. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57867. {
  57868. front: {
  57869. height: math.unit(4 + 3/12, "feet"),
  57870. weight: math.unit(60, "lb"),
  57871. name: "Front",
  57872. image: {
  57873. source: "./media/characters/silke/front.svg",
  57874. extra: 1334/1122,
  57875. bottom: 21/1355
  57876. }
  57877. },
  57878. back: {
  57879. height: math.unit(4 + 3/12, "feet"),
  57880. weight: math.unit(60, "lb"),
  57881. name: "Back",
  57882. image: {
  57883. source: "./media/characters/silke/back.svg",
  57884. extra: 1328/1092,
  57885. bottom: 16/1344
  57886. }
  57887. },
  57888. dressed: {
  57889. height: math.unit(4 + 3/12, "feet"),
  57890. weight: math.unit(60, "lb"),
  57891. name: "Dressed",
  57892. image: {
  57893. source: "./media/characters/silke/dressed.svg",
  57894. extra: 1334/1122,
  57895. bottom: 43/1377
  57896. }
  57897. },
  57898. },
  57899. [
  57900. {
  57901. name: "Normal",
  57902. height: math.unit(4 + 3/12, "feet"),
  57903. default: true
  57904. },
  57905. ]
  57906. ))
  57907. characterMakers.push(() => makeCharacter(
  57908. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57909. {
  57910. front: {
  57911. height: math.unit(1.58, "meters"),
  57912. weight: math.unit(47, "kg"),
  57913. name: "Front",
  57914. image: {
  57915. source: "./media/characters/wireshark/front.svg",
  57916. extra: 883/838,
  57917. bottom: 66/949
  57918. }
  57919. },
  57920. },
  57921. [
  57922. {
  57923. name: "Normal",
  57924. height: math.unit(1.58, "meters"),
  57925. default: true
  57926. },
  57927. ]
  57928. ))
  57929. characterMakers.push(() => makeCharacter(
  57930. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57931. {
  57932. front: {
  57933. height: math.unit(6, "meters"),
  57934. weight: math.unit(15000, "kg"),
  57935. name: "Front",
  57936. image: {
  57937. source: "./media/characters/gallagher/front.svg",
  57938. extra: 532/493,
  57939. bottom: 0/532
  57940. }
  57941. },
  57942. },
  57943. [
  57944. {
  57945. name: "Normal",
  57946. height: math.unit(6, "meters"),
  57947. default: true
  57948. },
  57949. ]
  57950. ))
  57951. characterMakers.push(() => makeCharacter(
  57952. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57953. {
  57954. front: {
  57955. height: math.unit(2.4, "meters"),
  57956. weight: math.unit(270, "kg"),
  57957. name: "Front",
  57958. image: {
  57959. source: "./media/characters/alice/front.svg",
  57960. extra: 950/900,
  57961. bottom: 36/986
  57962. }
  57963. },
  57964. side: {
  57965. height: math.unit(2.4, "meters"),
  57966. weight: math.unit(270, "kg"),
  57967. name: "Side",
  57968. image: {
  57969. source: "./media/characters/alice/side.svg",
  57970. extra: 921/876,
  57971. bottom: 19/940
  57972. }
  57973. },
  57974. dressed: {
  57975. height: math.unit(2.4, "meters"),
  57976. weight: math.unit(270, "kg"),
  57977. name: "Dressed",
  57978. image: {
  57979. source: "./media/characters/alice/dressed.svg",
  57980. extra: 905/850,
  57981. bottom: 81/986
  57982. }
  57983. },
  57984. fishnet: {
  57985. height: math.unit(2.4, "meters"),
  57986. weight: math.unit(270, "kg"),
  57987. name: "Fishnet",
  57988. image: {
  57989. source: "./media/characters/alice/fishnet.svg",
  57990. extra: 905/850,
  57991. bottom: 81/986
  57992. }
  57993. },
  57994. },
  57995. [
  57996. {
  57997. name: "Normal",
  57998. height: math.unit(2.4, "meters"),
  57999. default: true
  58000. },
  58001. ]
  58002. ))
  58003. characterMakers.push(() => makeCharacter(
  58004. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  58005. {
  58006. front: {
  58007. height: math.unit(175.25, "feet"),
  58008. name: "Front",
  58009. image: {
  58010. source: "./media/characters/fio/front.svg",
  58011. extra: 1883/1591,
  58012. bottom: 34/1917
  58013. }
  58014. },
  58015. },
  58016. [
  58017. {
  58018. name: "Normal",
  58019. height: math.unit(175.25, "cm"),
  58020. default: true
  58021. },
  58022. ]
  58023. ))
  58024. characterMakers.push(() => makeCharacter(
  58025. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  58026. {
  58027. side: {
  58028. height: math.unit(6, "meters"),
  58029. weight: math.unit(3400, "kg"),
  58030. preyCapacity: math.unit(1700, "liters"),
  58031. name: "Side",
  58032. image: {
  58033. source: "./media/characters/hass/side.svg",
  58034. extra: 1058/997,
  58035. bottom: 177/1235
  58036. }
  58037. },
  58038. feeding: {
  58039. height: math.unit(6*0.63, "meters"),
  58040. weight: math.unit(3400, "kg"),
  58041. preyCapacity: math.unit(1700, "liters"),
  58042. name: "Feeding",
  58043. image: {
  58044. source: "./media/characters/hass/feeding.svg",
  58045. extra: 689/579,
  58046. bottom: 146/835
  58047. }
  58048. },
  58049. guts: {
  58050. height: math.unit(6, "meters"),
  58051. weight: math.unit(3400, "kg"),
  58052. name: "Guts",
  58053. image: {
  58054. source: "./media/characters/hass/guts.svg",
  58055. extra: 1223/1198,
  58056. bottom: 182/1405
  58057. }
  58058. },
  58059. dickFront: {
  58060. height: math.unit(1.4, "meters"),
  58061. name: "Dick (Front)",
  58062. image: {
  58063. source: "./media/characters/hass/dick-front.svg"
  58064. }
  58065. },
  58066. dickSide: {
  58067. height: math.unit(1.3, "meters"),
  58068. name: "Dick (Side)",
  58069. image: {
  58070. source: "./media/characters/hass/dick-side.svg"
  58071. }
  58072. },
  58073. dickBack: {
  58074. height: math.unit(1.4, "meters"),
  58075. name: "Dick (Back)",
  58076. image: {
  58077. source: "./media/characters/hass/dick-back.svg"
  58078. }
  58079. },
  58080. },
  58081. [
  58082. {
  58083. name: "Normal",
  58084. height: math.unit(6, "meters"),
  58085. default: true
  58086. },
  58087. ]
  58088. ))
  58089. characterMakers.push(() => makeCharacter(
  58090. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  58091. {
  58092. front: {
  58093. height: math.unit(4, "feet"),
  58094. weight: math.unit(60, "lb"),
  58095. name: "Front",
  58096. image: {
  58097. source: "./media/characters/hickory-finnegan/front.svg",
  58098. extra: 444/411,
  58099. bottom: 10/454
  58100. }
  58101. },
  58102. side: {
  58103. height: math.unit(4, "feet"),
  58104. weight: math.unit(60, "lb"),
  58105. name: "Side",
  58106. image: {
  58107. source: "./media/characters/hickory-finnegan/side.svg",
  58108. extra: 444/411,
  58109. bottom: 10/454
  58110. }
  58111. },
  58112. back: {
  58113. height: math.unit(4, "feet"),
  58114. weight: math.unit(60, "lb"),
  58115. name: "Back",
  58116. image: {
  58117. source: "./media/characters/hickory-finnegan/back.svg",
  58118. extra: 444/411,
  58119. bottom: 10/454
  58120. }
  58121. },
  58122. },
  58123. [
  58124. {
  58125. name: "Normal",
  58126. height: math.unit(4, "feet"),
  58127. default: true
  58128. },
  58129. ]
  58130. ))
  58131. characterMakers.push(() => makeCharacter(
  58132. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58133. {
  58134. snivy_front: {
  58135. height: math.unit(2, "feet"),
  58136. weight: math.unit(17.9, "lb"),
  58137. name: "Front",
  58138. image: {
  58139. source: "./media/characters/robin-phox/snivy-front.svg",
  58140. extra: 569/504,
  58141. bottom: 33/602
  58142. },
  58143. form: "snivy",
  58144. default: true
  58145. },
  58146. snivy_frontNsfw: {
  58147. height: math.unit(2, "feet"),
  58148. weight: math.unit(17.9, "lb"),
  58149. name: "Front (NSFW)",
  58150. image: {
  58151. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58152. extra: 569/504,
  58153. bottom: 33/602
  58154. },
  58155. form: "snivy",
  58156. },
  58157. snivy_back: {
  58158. height: math.unit(2, "feet"),
  58159. weight: math.unit(17.9, "lb"),
  58160. name: "Back",
  58161. image: {
  58162. source: "./media/characters/robin-phox/snivy-back.svg",
  58163. extra: 577/508,
  58164. bottom: 21/598
  58165. },
  58166. form: "snivy",
  58167. },
  58168. snivy_foot: {
  58169. height: math.unit(0.68, "feet"),
  58170. name: "Foot",
  58171. image: {
  58172. source: "./media/characters/robin-phox/snivy-foot.svg"
  58173. },
  58174. form: "snivy",
  58175. },
  58176. snivy_sole: {
  58177. height: math.unit(0.68, "feet"),
  58178. name: "Sole",
  58179. image: {
  58180. source: "./media/characters/robin-phox/snivy-sole.svg"
  58181. },
  58182. form: "snivy",
  58183. },
  58184. yoshi_front: {
  58185. height: math.unit(6, "feet"),
  58186. weight: math.unit(150, "lb"),
  58187. name: "Front",
  58188. image: {
  58189. source: "./media/characters/robin-phox/yoshi-front.svg",
  58190. extra: 890/792,
  58191. bottom: 29/919
  58192. },
  58193. form: "yoshi",
  58194. default: true
  58195. },
  58196. yoshi_frontNsfw: {
  58197. height: math.unit(6, "feet"),
  58198. weight: math.unit(150, "lb"),
  58199. name: "Front (NSFW)",
  58200. image: {
  58201. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58202. extra: 890/792,
  58203. bottom: 29/919
  58204. },
  58205. form: "yoshi",
  58206. },
  58207. yoshi_back: {
  58208. height: math.unit(6, "feet"),
  58209. weight: math.unit(150, "lb"),
  58210. name: "Back",
  58211. image: {
  58212. source: "./media/characters/robin-phox/yoshi-back.svg",
  58213. extra: 890/792,
  58214. bottom: 29/919
  58215. },
  58216. form: "yoshi",
  58217. },
  58218. yoshi_foot: {
  58219. height: math.unit(1.5, "feet"),
  58220. name: "Foot",
  58221. image: {
  58222. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58223. },
  58224. form: "yoshi",
  58225. },
  58226. delphox_front: {
  58227. height: math.unit(4 + 11/12, "feet"),
  58228. weight: math.unit(86, "lb"),
  58229. name: "Front",
  58230. image: {
  58231. source: "./media/characters/robin-phox/delphox-front.svg",
  58232. extra: 1266/1069,
  58233. bottom: 32/1298
  58234. },
  58235. form: "delphox",
  58236. default: true
  58237. },
  58238. delphox_frontNsfw: {
  58239. height: math.unit(4 + 11/12, "feet"),
  58240. weight: math.unit(86, "lb"),
  58241. name: "Front (NSFW)",
  58242. image: {
  58243. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58244. extra: 1266/1069,
  58245. bottom: 32/1298
  58246. },
  58247. form: "delphox",
  58248. },
  58249. delphox_back: {
  58250. height: math.unit(4 + 11/12, "feet"),
  58251. weight: math.unit(86, "lb"),
  58252. name: "Back",
  58253. image: {
  58254. source: "./media/characters/robin-phox/delphox-back.svg",
  58255. extra: 1269/1083,
  58256. bottom: 15/1284
  58257. },
  58258. form: "delphox",
  58259. },
  58260. mienshao_front: {
  58261. height: math.unit(4 + 7/12, "feet"),
  58262. weight: math.unit(78.3, "lb"),
  58263. name: "Front",
  58264. image: {
  58265. source: "./media/characters/robin-phox/mienshao-front.svg",
  58266. extra: 1052/970,
  58267. bottom: 108/1160
  58268. },
  58269. form: "mienshao",
  58270. default: true
  58271. },
  58272. mienshao_frontNsfw: {
  58273. height: math.unit(4 + 7/12, "feet"),
  58274. weight: math.unit(78.3, "lb"),
  58275. name: "Front (NSFW)",
  58276. image: {
  58277. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58278. extra: 1052/970,
  58279. bottom: 108/1160
  58280. },
  58281. form: "mienshao",
  58282. },
  58283. mienshao_back: {
  58284. height: math.unit(4 + 7/12, "feet"),
  58285. weight: math.unit(78.3, "lb"),
  58286. name: "Back",
  58287. image: {
  58288. source: "./media/characters/robin-phox/mienshao-back.svg",
  58289. extra: 1102/982,
  58290. bottom: 32/1134
  58291. },
  58292. form: "mienshao",
  58293. },
  58294. inteleon_front: {
  58295. height: math.unit(6 + 3/12, "feet"),
  58296. weight: math.unit(99.6, "lb"),
  58297. name: "Front",
  58298. image: {
  58299. source: "./media/characters/robin-phox/inteleon-front.svg",
  58300. extra: 910/799,
  58301. bottom: 76/986
  58302. },
  58303. form: "inteleon",
  58304. default: true
  58305. },
  58306. inteleon_frontNsfw: {
  58307. height: math.unit(6 + 3/12, "feet"),
  58308. weight: math.unit(99.6, "lb"),
  58309. name: "Front (NSFW)",
  58310. image: {
  58311. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58312. extra: 910/799,
  58313. bottom: 76/986
  58314. },
  58315. form: "inteleon",
  58316. },
  58317. inteleon_back: {
  58318. height: math.unit(6 + 3/12, "feet"),
  58319. weight: math.unit(99.6, "lb"),
  58320. name: "Back",
  58321. image: {
  58322. source: "./media/characters/robin-phox/inteleon-back.svg",
  58323. extra: 907/796,
  58324. bottom: 25/932
  58325. },
  58326. form: "inteleon",
  58327. },
  58328. reshiram_front: {
  58329. height: math.unit(10 + 6/12, "feet"),
  58330. weight: math.unit(727.5, "lb"),
  58331. name: "Front",
  58332. image: {
  58333. source: "./media/characters/robin-phox/reshiram-front.svg",
  58334. extra: 1198/940,
  58335. bottom: 123/1321
  58336. },
  58337. form: "reshiram",
  58338. },
  58339. reshiram_frontNsfw: {
  58340. height: math.unit(10 + 6/12, "feet"),
  58341. weight: math.unit(727.5, "lb"),
  58342. name: "Front (NSFW)",
  58343. image: {
  58344. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58345. extra: 1198/940,
  58346. bottom: 123/1321
  58347. },
  58348. form: "reshiram",
  58349. },
  58350. reshiram_back: {
  58351. height: math.unit(10 + 6/12, "feet"),
  58352. weight: math.unit(727.5, "lb"),
  58353. name: "Back",
  58354. image: {
  58355. source: "./media/characters/robin-phox/reshiram-back.svg",
  58356. extra: 1024/904,
  58357. bottom: 85/1109
  58358. },
  58359. form: "reshiram",
  58360. },
  58361. samurott_front: {
  58362. height: math.unit(8, "feet"),
  58363. weight: math.unit(208.6, "lb"),
  58364. name: "Front",
  58365. image: {
  58366. source: "./media/characters/robin-phox/samurott-front.svg",
  58367. extra: 1048/984,
  58368. bottom: 100/1148
  58369. },
  58370. form: "samurott",
  58371. },
  58372. samurott_frontNsfw: {
  58373. height: math.unit(8, "feet"),
  58374. weight: math.unit(208.6, "lb"),
  58375. name: "Front NSFW",
  58376. image: {
  58377. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58378. extra: 1048/984,
  58379. bottom: 100/1148
  58380. },
  58381. form: "samurott",
  58382. },
  58383. samurott_back: {
  58384. height: math.unit(8, "feet"),
  58385. weight: math.unit(208.6, "lb"),
  58386. name: "Back",
  58387. image: {
  58388. source: "./media/characters/robin-phox/samurott-back.svg",
  58389. extra: 1110/1042,
  58390. bottom: 12/1122
  58391. },
  58392. form: "samurott",
  58393. },
  58394. samurott_feral: {
  58395. height: math.unit(4 + 11/12, "feet"),
  58396. weight: math.unit(208.6, "lb"),
  58397. name: "Feral",
  58398. image: {
  58399. source: "./media/characters/robin-phox/samurott-feral.svg",
  58400. extra: 766/681,
  58401. bottom: 108/874
  58402. },
  58403. form: "samurott",
  58404. },
  58405. },
  58406. [
  58407. {
  58408. name: "Normal",
  58409. height: math.unit(2, "feet"),
  58410. default: true,
  58411. form: "snivy"
  58412. },
  58413. {
  58414. name: "Normal",
  58415. height: math.unit(6, "feet"),
  58416. default: true,
  58417. form: "yoshi"
  58418. },
  58419. {
  58420. name: "Normal",
  58421. height: math.unit(4 + 11/12, "feet"),
  58422. default: true,
  58423. form: "delphox"
  58424. },
  58425. {
  58426. name: "Normal",
  58427. height: math.unit(4 + 7/12, "feet"),
  58428. default: true,
  58429. form: "mienshao"
  58430. },
  58431. {
  58432. name: "Normal",
  58433. height: math.unit(6 + 3/12, "feet"),
  58434. default: true,
  58435. form: "inteleon"
  58436. },
  58437. {
  58438. name: "Normal",
  58439. height: math.unit(10 + 6/12, "feet"),
  58440. default: true,
  58441. form: "reshiram"
  58442. },
  58443. {
  58444. name: "Normal",
  58445. height: math.unit(8, "feet"),
  58446. default: true,
  58447. form: "samurott"
  58448. },
  58449. {
  58450. name: "Macro",
  58451. height: math.unit(500, "feet"),
  58452. allForms: true
  58453. },
  58454. {
  58455. name: "Mega Macro",
  58456. height: math.unit(10, "earths"),
  58457. allForms: true
  58458. },
  58459. {
  58460. name: "Giga Macro",
  58461. height: math.unit(1, "galaxy"),
  58462. allForms: true
  58463. },
  58464. {
  58465. name: "Godly Macro",
  58466. height: math.unit(1e10, "multiverses"),
  58467. allForms: true
  58468. },
  58469. ],
  58470. {
  58471. "snivy": {
  58472. name: "Snivy",
  58473. default: true
  58474. },
  58475. "yoshi": {
  58476. name: "Yoshi",
  58477. },
  58478. "delphox": {
  58479. name: "Delphox",
  58480. },
  58481. "mienshao": {
  58482. name: "Mienshao",
  58483. },
  58484. "inteleon": {
  58485. name: "Inteleon",
  58486. },
  58487. "reshiram": {
  58488. name: "Reshiram",
  58489. },
  58490. "samurott": {
  58491. name: "Samurott",
  58492. },
  58493. }
  58494. ))
  58495. characterMakers.push(() => makeCharacter(
  58496. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58497. {
  58498. front: {
  58499. height: math.unit(4, "feet"),
  58500. name: "Front",
  58501. image: {
  58502. source: "./media/characters/ash-leung/front.svg",
  58503. extra: 1916/1792,
  58504. bottom: 50/1966
  58505. }
  58506. },
  58507. },
  58508. [
  58509. {
  58510. name: "Atomic",
  58511. height: math.unit(1, "angstrom")
  58512. },
  58513. {
  58514. name: "Microscopic",
  58515. height: math.unit(4000, "angstroms")
  58516. },
  58517. {
  58518. name: "Speck",
  58519. height: math.unit(1, "mm")
  58520. },
  58521. {
  58522. name: "Small",
  58523. height: math.unit(1, "inch")
  58524. },
  58525. {
  58526. name: "Normal",
  58527. height: math.unit(4, "feet"),
  58528. default: true
  58529. },
  58530. ]
  58531. ))
  58532. characterMakers.push(() => makeCharacter(
  58533. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58534. {
  58535. frontDressed: {
  58536. height: math.unit(2.08, "meters"),
  58537. weight: math.unit(175, "lb"),
  58538. name: "Front (Dressed)",
  58539. image: {
  58540. source: "./media/characters/carie/front-dressed.svg",
  58541. extra: 456/417,
  58542. bottom: 7/463
  58543. }
  58544. },
  58545. backDressed: {
  58546. height: math.unit(2.08, "meters"),
  58547. weight: math.unit(175, "lb"),
  58548. name: "Back (Dressed)",
  58549. image: {
  58550. source: "./media/characters/carie/back-dressed.svg",
  58551. extra: 455/414,
  58552. bottom: 11/466
  58553. }
  58554. },
  58555. front: {
  58556. height: math.unit(2, "meters"),
  58557. weight: math.unit(175, "lb"),
  58558. name: "Front",
  58559. image: {
  58560. source: "./media/characters/carie/front.svg",
  58561. extra: 438/399,
  58562. bottom: 12/450
  58563. }
  58564. },
  58565. back: {
  58566. height: math.unit(2, "meters"),
  58567. weight: math.unit(175, "lb"),
  58568. name: "Back",
  58569. image: {
  58570. source: "./media/characters/carie/back.svg",
  58571. extra: 438/397,
  58572. bottom: 7/445
  58573. }
  58574. },
  58575. },
  58576. [
  58577. {
  58578. name: "Normal",
  58579. height: math.unit(2.08, "meters"),
  58580. default: true
  58581. },
  58582. {
  58583. name: "Macro",
  58584. height: math.unit(2.08e3, "meters")
  58585. },
  58586. {
  58587. name: "Mega Macro",
  58588. height: math.unit(2.08e6, "meters")
  58589. },
  58590. {
  58591. name: "Giga Macro",
  58592. height: math.unit(2.08e9, "meters")
  58593. },
  58594. {
  58595. name: "Tera Macro",
  58596. height: math.unit(2.08e12, "meters")
  58597. },
  58598. {
  58599. name: "Peta Macro",
  58600. height: math.unit(2.08e15, "meters")
  58601. },
  58602. {
  58603. name: "Exa Macro",
  58604. height: math.unit(2.08e18, "meters")
  58605. },
  58606. {
  58607. name: "Zetta Macro",
  58608. height: math.unit(2.08e21, "meters")
  58609. },
  58610. {
  58611. name: "Yotta Macro",
  58612. height: math.unit(2.08e24, "meters")
  58613. },
  58614. ]
  58615. ))
  58616. characterMakers.push(() => makeCharacter(
  58617. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58618. {
  58619. front: {
  58620. height: math.unit(5 + 2/12, "feet"),
  58621. weight: math.unit(120, "lb"),
  58622. name: "Front",
  58623. image: {
  58624. source: "./media/characters/sai-bree/front.svg",
  58625. extra: 1843/1702,
  58626. bottom: 91/1934
  58627. }
  58628. },
  58629. back: {
  58630. height: math.unit(5 + 2/12, "feet"),
  58631. weight: math.unit(120, "lb"),
  58632. name: "Back",
  58633. image: {
  58634. source: "./media/characters/sai-bree/back.svg",
  58635. extra: 1809/1637,
  58636. bottom: 56/1865
  58637. }
  58638. },
  58639. },
  58640. [
  58641. {
  58642. name: "Normal",
  58643. height: math.unit(5 + 2/12, "feet"),
  58644. default: true
  58645. },
  58646. {
  58647. name: "Macro",
  58648. height: math.unit(500, "feet")
  58649. },
  58650. ]
  58651. ))
  58652. characterMakers.push(() => makeCharacter(
  58653. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58654. {
  58655. side: {
  58656. height: math.unit(0.77, "meters"),
  58657. weight: math.unit(120, "lb"),
  58658. name: "Side",
  58659. image: {
  58660. source: "./media/characters/davwyn/side.svg",
  58661. extra: 1557/1225,
  58662. bottom: 131/1688
  58663. }
  58664. },
  58665. front: {
  58666. height: math.unit(0.835410, "meters"),
  58667. weight: math.unit(120, "lb"),
  58668. name: "Front",
  58669. image: {
  58670. source: "./media/characters/davwyn/front.svg",
  58671. extra: 870/843,
  58672. bottom: 175/1045
  58673. }
  58674. },
  58675. },
  58676. [
  58677. {
  58678. name: "Minidrake",
  58679. height: math.unit(0.77/4, "meters")
  58680. },
  58681. {
  58682. name: "Normal",
  58683. height: math.unit(0.77, "meters"),
  58684. default: true
  58685. },
  58686. ]
  58687. ))
  58688. characterMakers.push(() => makeCharacter(
  58689. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58690. {
  58691. front: {
  58692. height: math.unit(10 + 3/12, "feet"),
  58693. weight: math.unit(2857, "lb"),
  58694. name: "Front",
  58695. image: {
  58696. source: "./media/characters/balans/front.svg",
  58697. extra: 427/402,
  58698. bottom: 26/453
  58699. }
  58700. },
  58701. side: {
  58702. height: math.unit(10 + 3/12, "feet"),
  58703. weight: math.unit(2857, "lb"),
  58704. name: "Side",
  58705. image: {
  58706. source: "./media/characters/balans/side.svg",
  58707. extra: 397/371,
  58708. bottom: 17/414
  58709. }
  58710. },
  58711. back: {
  58712. height: math.unit(10 + 3/12, "feet"),
  58713. weight: math.unit(2857, "lb"),
  58714. name: "Back",
  58715. image: {
  58716. source: "./media/characters/balans/back.svg",
  58717. extra: 408/381,
  58718. bottom: 14/422
  58719. }
  58720. },
  58721. hand: {
  58722. height: math.unit(1.15, "feet"),
  58723. name: "Hand",
  58724. image: {
  58725. source: "./media/characters/balans/hand.svg"
  58726. }
  58727. },
  58728. footRest: {
  58729. height: math.unit(3.1, "feet"),
  58730. name: "Foot (Rest)",
  58731. image: {
  58732. source: "./media/characters/balans/foot-rest.svg"
  58733. }
  58734. },
  58735. footActive: {
  58736. height: math.unit(3.5, "feet"),
  58737. name: "Foot (Active)",
  58738. image: {
  58739. source: "./media/characters/balans/foot-active.svg"
  58740. }
  58741. },
  58742. },
  58743. [
  58744. {
  58745. name: "Normal",
  58746. height: math.unit(10 + 3/12, "feet"),
  58747. default: true
  58748. },
  58749. ]
  58750. ))
  58751. characterMakers.push(() => makeCharacter(
  58752. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58753. {
  58754. side: {
  58755. height: math.unit(9, "meters"),
  58756. weight: math.unit(114, "tonnes"),
  58757. name: "Side",
  58758. image: {
  58759. source: "./media/characters/eldkveikir/side.svg",
  58760. extra: 1927/338,
  58761. bottom: 42/1969
  58762. }
  58763. },
  58764. sitting: {
  58765. height: math.unit(13.4, "meters"),
  58766. weight: math.unit(114, "tonnes"),
  58767. name: "Sitting",
  58768. image: {
  58769. source: "./media/characters/eldkveikir/sitting.svg",
  58770. extra: 1108/963,
  58771. bottom: 610/1718
  58772. }
  58773. },
  58774. maw: {
  58775. height: math.unit(8.36, "meters"),
  58776. name: "Maw",
  58777. image: {
  58778. source: "./media/characters/eldkveikir/maw.svg"
  58779. }
  58780. },
  58781. hand: {
  58782. height: math.unit(4.84, "meters"),
  58783. name: "Hand",
  58784. image: {
  58785. source: "./media/characters/eldkveikir/hand.svg"
  58786. }
  58787. },
  58788. foot: {
  58789. height: math.unit(6.9, "meters"),
  58790. name: "Foot",
  58791. image: {
  58792. source: "./media/characters/eldkveikir/foot.svg"
  58793. }
  58794. },
  58795. genitals: {
  58796. height: math.unit(9.6, "meters"),
  58797. name: "Genitals",
  58798. image: {
  58799. source: "./media/characters/eldkveikir/genitals.svg"
  58800. }
  58801. },
  58802. },
  58803. [
  58804. {
  58805. name: "Normal",
  58806. height: math.unit(9, "meters"),
  58807. default: true
  58808. },
  58809. ]
  58810. ))
  58811. characterMakers.push(() => makeCharacter(
  58812. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58813. {
  58814. front: {
  58815. height: math.unit(14, "feet"),
  58816. weight: math.unit(4100, "lb"),
  58817. name: "Front",
  58818. image: {
  58819. source: "./media/characters/arrow/front.svg",
  58820. extra: 330/318,
  58821. bottom: 56/386
  58822. }
  58823. },
  58824. },
  58825. [
  58826. {
  58827. name: "Normal",
  58828. height: math.unit(14, "feet"),
  58829. default: true
  58830. },
  58831. {
  58832. name: "Minimacro",
  58833. height: math.unit(63, "feet")
  58834. },
  58835. {
  58836. name: "Macro",
  58837. height: math.unit(630, "feet")
  58838. },
  58839. {
  58840. name: "Megamacro",
  58841. height: math.unit(12600, "feet")
  58842. },
  58843. {
  58844. name: "Gigamacro",
  58845. height: math.unit(18000, "miles")
  58846. },
  58847. ]
  58848. ))
  58849. characterMakers.push(() => makeCharacter(
  58850. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58851. {
  58852. front: {
  58853. height: math.unit(10, "feet"),
  58854. weight: math.unit(2.4, "tons"),
  58855. name: "Front",
  58856. image: {
  58857. source: "./media/characters/3yk-k0-unit/front.svg",
  58858. extra: 573/561,
  58859. bottom: 33/606
  58860. }
  58861. },
  58862. back: {
  58863. height: math.unit(10, "feet"),
  58864. weight: math.unit(2.4, "tons"),
  58865. name: "Back",
  58866. image: {
  58867. source: "./media/characters/3yk-k0-unit/back.svg",
  58868. extra: 614/573,
  58869. bottom: 32/646
  58870. }
  58871. },
  58872. maw: {
  58873. height: math.unit(2.15, "feet"),
  58874. name: "Maw",
  58875. image: {
  58876. source: "./media/characters/3yk-k0-unit/maw.svg"
  58877. }
  58878. },
  58879. },
  58880. [
  58881. {
  58882. name: "Normal",
  58883. height: math.unit(10, "feet"),
  58884. default: true
  58885. },
  58886. ]
  58887. ))
  58888. characterMakers.push(() => makeCharacter(
  58889. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58890. {
  58891. front: {
  58892. height: math.unit(8 + 8/12, "feet"),
  58893. name: "Front",
  58894. image: {
  58895. source: "./media/characters/nemo/front.svg",
  58896. extra: 1308/1217,
  58897. bottom: 57/1365
  58898. }
  58899. },
  58900. },
  58901. [
  58902. {
  58903. name: "Normal",
  58904. height: math.unit(8 + 8/12, "feet"),
  58905. default: true
  58906. },
  58907. ]
  58908. ))
  58909. characterMakers.push(() => makeCharacter(
  58910. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58911. {
  58912. front: {
  58913. height: math.unit(8, "feet"),
  58914. weight: math.unit(760, "lb"),
  58915. name: "Front",
  58916. image: {
  58917. source: "./media/characters/rexx/front.svg",
  58918. extra: 786/750,
  58919. bottom: 17/803
  58920. },
  58921. extraAttributes: {
  58922. "pawLength": {
  58923. name: "Paw Length",
  58924. power: 1,
  58925. type: "length",
  58926. base: math.unit(27, "inches")
  58927. },
  58928. }
  58929. },
  58930. },
  58931. [
  58932. {
  58933. name: "Micro",
  58934. height: math.unit(2, "inches")
  58935. },
  58936. {
  58937. name: "Normal",
  58938. height: math.unit(8, "feet"),
  58939. default: true
  58940. },
  58941. {
  58942. name: "Macro",
  58943. height: math.unit(150, "feet")
  58944. },
  58945. ]
  58946. ))
  58947. characterMakers.push(() => makeCharacter(
  58948. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58949. {
  58950. front: {
  58951. height: math.unit(18, "feet"),
  58952. weight: math.unit(1975, "lb"),
  58953. name: "Front",
  58954. image: {
  58955. source: "./media/characters/draco/front.svg",
  58956. extra: 1325/1241,
  58957. bottom: 83/1408
  58958. }
  58959. },
  58960. back: {
  58961. height: math.unit(18, "feet"),
  58962. weight: math.unit(1975, "lb"),
  58963. name: "Back",
  58964. image: {
  58965. source: "./media/characters/draco/back.svg",
  58966. extra: 1332/1250,
  58967. bottom: 43/1375
  58968. }
  58969. },
  58970. dick: {
  58971. height: math.unit(7.5, "feet"),
  58972. name: "Dick",
  58973. image: {
  58974. source: "./media/characters/draco/dick.svg"
  58975. }
  58976. },
  58977. },
  58978. [
  58979. {
  58980. name: "Normal",
  58981. height: math.unit(18, "feet"),
  58982. default: true
  58983. },
  58984. ]
  58985. ))
  58986. characterMakers.push(() => makeCharacter(
  58987. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58988. {
  58989. front: {
  58990. height: math.unit(3.2, "meters"),
  58991. name: "Front",
  58992. image: {
  58993. source: "./media/characters/harriett/front.svg",
  58994. extra: 1966/1915,
  58995. bottom: 9/1975
  58996. }
  58997. },
  58998. },
  58999. [
  59000. {
  59001. name: "Normal",
  59002. height: math.unit(3.2, "meters"),
  59003. default: true
  59004. },
  59005. ]
  59006. ))
  59007. characterMakers.push(() => makeCharacter(
  59008. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  59009. {
  59010. standing: {
  59011. height: math.unit(180, "cm"),
  59012. weight: math.unit(185, "lb"),
  59013. name: "Standing",
  59014. image: {
  59015. source: "./media/characters/serpentus/standing.svg",
  59016. extra: 882/878,
  59017. bottom: 16/898
  59018. }
  59019. },
  59020. sitting: {
  59021. height: math.unit(0.8, "meter"),
  59022. weight: math.unit(155, "lb"),
  59023. name: "Sitting",
  59024. image: {
  59025. source: "./media/characters/serpentus/sitting.svg",
  59026. extra: 293/290,
  59027. bottom: 140/433
  59028. }
  59029. },
  59030. },
  59031. [
  59032. {
  59033. name: "Normal",
  59034. height: math.unit(1.8, "meter"),
  59035. default: true
  59036. },
  59037. ]
  59038. ))
  59039. characterMakers.push(() => makeCharacter(
  59040. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  59041. {
  59042. front: {
  59043. height: math.unit(5.7174385736, "feet"),
  59044. name: "Front",
  59045. image: {
  59046. source: "./media/characters/nova-polecat/front.svg",
  59047. extra: 1317/1216,
  59048. bottom: 92/1409
  59049. }
  59050. },
  59051. },
  59052. [
  59053. {
  59054. name: "Normal",
  59055. height: math.unit(5.7174385736, "feet"),
  59056. default: true
  59057. },
  59058. ]
  59059. ))
  59060. characterMakers.push(() => makeCharacter(
  59061. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  59062. {
  59063. front: {
  59064. height: math.unit(5 + 4/12, "feet"),
  59065. weight: math.unit(250, "lb"),
  59066. name: "Front",
  59067. image: {
  59068. source: "./media/characters/mook/front.svg",
  59069. extra: 1088/1037,
  59070. bottom: 132/1220
  59071. }
  59072. },
  59073. back: {
  59074. height: math.unit(5 + 1/12, "feet"),
  59075. weight: math.unit(250, "lb"),
  59076. name: "Back",
  59077. image: {
  59078. source: "./media/characters/mook/back.svg",
  59079. extra: 1184/905,
  59080. bottom: 96/1280
  59081. }
  59082. },
  59083. head: {
  59084. height: math.unit(1.85, "feet"),
  59085. name: "Head",
  59086. image: {
  59087. source: "./media/characters/mook/head.svg"
  59088. }
  59089. },
  59090. hand: {
  59091. height: math.unit(1.9, "feet"),
  59092. name: "Hand",
  59093. image: {
  59094. source: "./media/characters/mook/hand.svg"
  59095. }
  59096. },
  59097. palm: {
  59098. height: math.unit(1.84, "feet"),
  59099. name: "Palm",
  59100. image: {
  59101. source: "./media/characters/mook/palm.svg"
  59102. }
  59103. },
  59104. foot: {
  59105. height: math.unit(1.44, "feet"),
  59106. name: "Foot",
  59107. image: {
  59108. source: "./media/characters/mook/foot.svg"
  59109. }
  59110. },
  59111. sole: {
  59112. height: math.unit(1.44, "feet"),
  59113. name: "Sole",
  59114. image: {
  59115. source: "./media/characters/mook/sole.svg"
  59116. }
  59117. },
  59118. },
  59119. [
  59120. {
  59121. name: "Normal",
  59122. height: math.unit(5 + 4/12, "feet"),
  59123. default: true
  59124. },
  59125. {
  59126. name: "Big",
  59127. height: math.unit(12, "feet")
  59128. },
  59129. ]
  59130. ))
  59131. characterMakers.push(() => makeCharacter(
  59132. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59133. {
  59134. front: {
  59135. height: math.unit(6 + 10/12, "feet"),
  59136. weight: math.unit(233, "lb"),
  59137. name: "Front",
  59138. image: {
  59139. source: "./media/characters/kayla/front.svg",
  59140. extra: 1850/1775,
  59141. bottom: 65/1915
  59142. }
  59143. },
  59144. },
  59145. [
  59146. {
  59147. name: "Normal",
  59148. height: math.unit(6 + 10/12, "feet"),
  59149. default: true
  59150. },
  59151. {
  59152. name: "Amazonian",
  59153. height: math.unit(12 + 5/12, "feet")
  59154. },
  59155. {
  59156. name: "Mini Giantess",
  59157. height: math.unit(26, "feet")
  59158. },
  59159. {
  59160. name: "Giantess",
  59161. height: math.unit(200, "feet")
  59162. },
  59163. {
  59164. name: "Mega Giantess",
  59165. height: math.unit(2500, "feet")
  59166. },
  59167. {
  59168. name: "City Sized",
  59169. height: math.unit(50, "miles")
  59170. },
  59171. {
  59172. name: "Country Sized",
  59173. height: math.unit(500, "miles")
  59174. },
  59175. {
  59176. name: "Continent Sized",
  59177. height: math.unit(2500, "miles")
  59178. },
  59179. {
  59180. name: "Planet Sized",
  59181. height: math.unit(10000, "miles")
  59182. },
  59183. {
  59184. name: "Star Sized",
  59185. height: math.unit(5e6, "miles")
  59186. },
  59187. {
  59188. name: "Solar System Sized",
  59189. height: math.unit(125, "AU")
  59190. },
  59191. {
  59192. name: "Galaxy Sized",
  59193. height: math.unit(300e3, "lightyears")
  59194. },
  59195. {
  59196. name: "Universe Sized",
  59197. height: math.unit(200e9, "lightyears")
  59198. },
  59199. {
  59200. name: "Multiverse Sized",
  59201. height: math.unit(20, "exauniverses")
  59202. },
  59203. {
  59204. name: "Mother of Existence",
  59205. height: math.unit(1e6, "yottauniverses")
  59206. },
  59207. ]
  59208. ))
  59209. characterMakers.push(() => makeCharacter(
  59210. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59211. {
  59212. side: {
  59213. height: math.unit(9.5, "meters"),
  59214. name: "Side",
  59215. image: {
  59216. source: "./media/characters/kulve-ragnarok/side.svg",
  59217. extra: 364/326,
  59218. bottom: 50/414
  59219. }
  59220. },
  59221. },
  59222. [
  59223. {
  59224. name: "Normal",
  59225. height: math.unit(9.5, "meters"),
  59226. default: true
  59227. },
  59228. ]
  59229. ))
  59230. characterMakers.push(() => makeCharacter(
  59231. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59232. {
  59233. front: {
  59234. height: math.unit(8 + 9/12, "feet"),
  59235. name: "Front",
  59236. image: {
  59237. source: "./media/characters/atlas-goat/front.svg",
  59238. extra: 1462/1323,
  59239. bottom: 12/1474
  59240. }
  59241. },
  59242. },
  59243. [
  59244. {
  59245. name: "Normal",
  59246. height: math.unit(8 + 9/12, "feet"),
  59247. default: true
  59248. },
  59249. {
  59250. name: "Skyline",
  59251. height: math.unit(845, "feet")
  59252. },
  59253. {
  59254. name: "Orbital",
  59255. height: math.unit(93000, "miles")
  59256. },
  59257. {
  59258. name: "Constellation",
  59259. height: math.unit(27000, "lightyears")
  59260. },
  59261. ]
  59262. ))
  59263. characterMakers.push(() => makeCharacter(
  59264. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59265. {
  59266. side: {
  59267. height: math.unit(1.8, "meters"),
  59268. weight: math.unit(120, "kg"),
  59269. name: "Side",
  59270. image: {
  59271. source: "./media/characters/xie-ling/side.svg",
  59272. extra: 646/574,
  59273. bottom: 44/690
  59274. }
  59275. },
  59276. },
  59277. [
  59278. {
  59279. name: "Tiny",
  59280. height: math.unit(1.80, "meters")
  59281. },
  59282. {
  59283. name: "Small",
  59284. height: math.unit(6, "meters")
  59285. },
  59286. {
  59287. name: "Medium",
  59288. height: math.unit(15, "meters")
  59289. },
  59290. {
  59291. name: "Normal",
  59292. height: math.unit(30, "meters"),
  59293. default: true
  59294. },
  59295. {
  59296. name: "Above Normal",
  59297. height: math.unit(60, "meters")
  59298. },
  59299. {
  59300. name: "Big",
  59301. height: math.unit(220, "meters")
  59302. },
  59303. {
  59304. name: "Giant",
  59305. height: math.unit(2.2, "km")
  59306. },
  59307. {
  59308. name: "Macro",
  59309. height: math.unit(25, "km")
  59310. },
  59311. {
  59312. name: "Mega Macro",
  59313. height: math.unit(350, "km")
  59314. },
  59315. {
  59316. name: "Mega Macro+",
  59317. height: math.unit(5000, "km")
  59318. },
  59319. {
  59320. name: "Goddess",
  59321. height: math.unit(3, "multiverses")
  59322. },
  59323. ]
  59324. ))
  59325. characterMakers.push(() => makeCharacter(
  59326. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59327. {
  59328. frontSfw: {
  59329. height: math.unit(5 + 11/12, "feet"),
  59330. weight: math.unit(210, "lb"),
  59331. name: "Front",
  59332. image: {
  59333. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59334. extra: 1928/1821,
  59335. bottom: 45/1973
  59336. }
  59337. },
  59338. backSfw: {
  59339. height: math.unit(5 + 11/12, "feet"),
  59340. weight: math.unit(210, "lb"),
  59341. name: "Back",
  59342. image: {
  59343. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59344. extra: 1920/1813,
  59345. bottom: 34/1954
  59346. }
  59347. },
  59348. frontNsfw: {
  59349. height: math.unit(5 + 11/12, "feet"),
  59350. weight: math.unit(210, "lb"),
  59351. name: "Front (NSFW)",
  59352. image: {
  59353. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59354. extra: 1928/1821,
  59355. bottom: 45/1973
  59356. }
  59357. },
  59358. backNsfw: {
  59359. height: math.unit(5 + 11/12, "feet"),
  59360. weight: math.unit(210, "lb"),
  59361. name: "Back (NSFW)",
  59362. image: {
  59363. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59364. extra: 1920/1813,
  59365. bottom: 34/1954
  59366. }
  59367. },
  59368. },
  59369. [
  59370. {
  59371. name: "Normal",
  59372. height: math.unit(5 + 11/12, "feet"),
  59373. default: true
  59374. },
  59375. {
  59376. name: "Goddess",
  59377. height: math.unit(20 + 3/12, "feet")
  59378. },
  59379. {
  59380. name: "Breaker of Man",
  59381. height: math.unit(329 + 9/12, "feet")
  59382. },
  59383. {
  59384. name: "Solar Justice",
  59385. height: math.unit(0.6, "solarradii")
  59386. },
  59387. {
  59388. name: "She Who Judges",
  59389. height: math.unit(1, "universe")
  59390. },
  59391. ]
  59392. ))
  59393. characterMakers.push(() => makeCharacter(
  59394. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59395. {
  59396. casual_front: {
  59397. height: math.unit(6 + 1/12, "feet"),
  59398. weight: math.unit(190, "lb"),
  59399. preyCapacity: math.unit(1, "people"),
  59400. name: "Front",
  59401. image: {
  59402. source: "./media/characters/managarmr/casual-front.svg",
  59403. extra: 411/381,
  59404. bottom: 15/426
  59405. },
  59406. extraAttributes: {
  59407. "pawSize": {
  59408. name: "Paw Size",
  59409. power: 1,
  59410. type: "length",
  59411. base: math.unit(0.2, "meters")
  59412. },
  59413. },
  59414. form: "casual",
  59415. },
  59416. casual_back: {
  59417. height: math.unit(6 + 1/12, "feet"),
  59418. weight: math.unit(190, "lb"),
  59419. preyCapacity: math.unit(1, "people"),
  59420. name: "Back",
  59421. image: {
  59422. source: "./media/characters/managarmr/casual-back.svg",
  59423. extra: 413/383,
  59424. bottom: 13/426
  59425. },
  59426. extraAttributes: {
  59427. "pawSize": {
  59428. name: "Paw Size",
  59429. power: 1,
  59430. type: "length",
  59431. base: math.unit(0.2, "meters")
  59432. },
  59433. },
  59434. form: "casual",
  59435. },
  59436. base_front: {
  59437. height: math.unit(7, "feet"),
  59438. weight: math.unit(210, "lb"),
  59439. preyCapacity: math.unit(2, "people"),
  59440. name: "Front",
  59441. image: {
  59442. source: "./media/characters/managarmr/base-front.svg",
  59443. extra: 580/485,
  59444. bottom: 32/612
  59445. },
  59446. extraAttributes: {
  59447. "wingspan": {
  59448. name: "Wingspan",
  59449. power: 1,
  59450. type: "length",
  59451. base: math.unit(4, "meters")
  59452. },
  59453. "pawSize": {
  59454. name: "Paw Size",
  59455. power: 1,
  59456. type: "length",
  59457. base: math.unit(0.2, "meters")
  59458. },
  59459. },
  59460. form: "base",
  59461. },
  59462. "true-divine_front": {
  59463. height: math.unit(40, "feet"),
  59464. weight: math.unit(39000, "lb"),
  59465. preyCapacity: math.unit(375, "people"),
  59466. name: "Front",
  59467. image: {
  59468. source: "./media/characters/managarmr/true-divine-front.svg",
  59469. extra: 725/573,
  59470. bottom: 120/845
  59471. },
  59472. extraAttributes: {
  59473. "wingspan": {
  59474. name: "Wingspan",
  59475. power: 1,
  59476. type: "length",
  59477. base: math.unit(20, "meters")
  59478. },
  59479. "pawSize": {
  59480. name: "Paw Size",
  59481. power: 1,
  59482. type: "length",
  59483. base: math.unit(1.5, "meters")
  59484. },
  59485. },
  59486. form: "true-divine",
  59487. },
  59488. },
  59489. [
  59490. {
  59491. name: "Normal",
  59492. height: math.unit(6 + 1/12, "feet"),
  59493. form: "casual",
  59494. default: true
  59495. },
  59496. {
  59497. name: "Normal",
  59498. height: math.unit(7, "feet"),
  59499. form: "base",
  59500. default: true
  59501. },
  59502. ],
  59503. {
  59504. "casual": {
  59505. name: "Casual",
  59506. default: true
  59507. },
  59508. "base": {
  59509. name: "Base",
  59510. },
  59511. "true-divine": {
  59512. name: "True Divine",
  59513. },
  59514. }
  59515. ))
  59516. characterMakers.push(() => makeCharacter(
  59517. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59518. {
  59519. front: {
  59520. height: math.unit(1.8, "meters"),
  59521. weight: math.unit(110, "kg"),
  59522. name: "Front",
  59523. image: {
  59524. source: "./media/characters/mystra/front.svg",
  59525. extra: 529/442,
  59526. bottom: 31/560
  59527. }
  59528. },
  59529. frontLewd: {
  59530. height: math.unit(1.8, "meters"),
  59531. weight: math.unit(110, "kg"),
  59532. name: "Front (Lewd)",
  59533. image: {
  59534. source: "./media/characters/mystra/front-lewd.svg",
  59535. extra: 529/442,
  59536. bottom: 31/560
  59537. }
  59538. },
  59539. head: {
  59540. height: math.unit(1.63, "feet"),
  59541. name: "Head",
  59542. image: {
  59543. source: "./media/characters/mystra/head.svg"
  59544. }
  59545. },
  59546. paw: {
  59547. height: math.unit(1.9, "feet"),
  59548. name: "Paw",
  59549. image: {
  59550. source: "./media/characters/mystra/paw.svg"
  59551. }
  59552. },
  59553. },
  59554. [
  59555. {
  59556. name: "Incognito",
  59557. height: math.unit(2.3, "meters")
  59558. },
  59559. {
  59560. name: "Small Macro",
  59561. height: math.unit(300, "meters")
  59562. },
  59563. {
  59564. name: "Small Mega",
  59565. height: math.unit(2, "km")
  59566. },
  59567. {
  59568. name: "Mega",
  59569. height: math.unit(30, "km")
  59570. },
  59571. {
  59572. name: "Small Giga",
  59573. height: math.unit(100, "km")
  59574. },
  59575. {
  59576. name: "Giga",
  59577. height: math.unit(1000, "km"),
  59578. default: true
  59579. },
  59580. {
  59581. name: "Continental",
  59582. height: math.unit(5000, "km")
  59583. },
  59584. {
  59585. name: "Terra",
  59586. height: math.unit(20000, "km")
  59587. },
  59588. {
  59589. name: "Solar",
  59590. height: math.unit(2e6, "km")
  59591. },
  59592. {
  59593. name: "Galactic",
  59594. height: math.unit(528502, "lightyears")
  59595. },
  59596. {
  59597. name: "Universal",
  59598. height: math.unit(20, "universes")
  59599. },
  59600. ]
  59601. ))
  59602. characterMakers.push(() => makeCharacter(
  59603. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59604. {
  59605. front: {
  59606. height: math.unit(2, "meters"),
  59607. weight: math.unit(140, "kg"),
  59608. name: "Front",
  59609. image: {
  59610. source: "./media/characters/caleb/front.svg",
  59611. extra: 873/817,
  59612. bottom: 47/920
  59613. }
  59614. },
  59615. back: {
  59616. height: math.unit(2, "meters"),
  59617. weight: math.unit(140, "kg"),
  59618. name: "Back",
  59619. image: {
  59620. source: "./media/characters/caleb/back.svg",
  59621. extra: 877/828,
  59622. bottom: 24/901
  59623. }
  59624. },
  59625. snakeTail: {
  59626. height: math.unit(1.44, "feet"),
  59627. name: "Snake Tail",
  59628. image: {
  59629. source: "./media/characters/caleb/snake-tail.svg"
  59630. }
  59631. },
  59632. dick: {
  59633. height: math.unit(2.6, "feet"),
  59634. name: "Dick",
  59635. image: {
  59636. source: "./media/characters/caleb/dick.svg"
  59637. }
  59638. },
  59639. },
  59640. [
  59641. {
  59642. name: "Incognito",
  59643. height: math.unit(3, "meters")
  59644. },
  59645. {
  59646. name: "Home Size",
  59647. height: math.unit(200, "meters"),
  59648. default: true
  59649. },
  59650. {
  59651. name: "Macro",
  59652. height: math.unit(500, "meters")
  59653. },
  59654. {
  59655. name: "Big Macro",
  59656. height: math.unit(5, "km")
  59657. },
  59658. {
  59659. name: "Giga",
  59660. height: math.unit(250, "km")
  59661. },
  59662. {
  59663. name: "Giga+",
  59664. height: math.unit(5000, "km")
  59665. },
  59666. {
  59667. name: "Small Terra",
  59668. height: math.unit(35e3, "km")
  59669. },
  59670. {
  59671. name: "Terra",
  59672. height: math.unit(2e6, "km")
  59673. },
  59674. {
  59675. name: "Terra+",
  59676. height: math.unit(1.5e6, "km")
  59677. },
  59678. ]
  59679. ))
  59680. characterMakers.push(() => makeCharacter(
  59681. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59682. {
  59683. front: {
  59684. height: math.unit(2, "meters"),
  59685. weight: math.unit(120, "kg"),
  59686. name: "Front",
  59687. image: {
  59688. source: "./media/characters/gilirian/front.svg",
  59689. extra: 805/737,
  59690. bottom: 13/818
  59691. }
  59692. },
  59693. side: {
  59694. height: math.unit(2, "meters"),
  59695. weight: math.unit(120, "kg"),
  59696. name: "Side",
  59697. image: {
  59698. source: "./media/characters/gilirian/side.svg",
  59699. extra: 810/746,
  59700. bottom: 6/816
  59701. }
  59702. },
  59703. back: {
  59704. height: math.unit(2, "meters"),
  59705. weight: math.unit(120, "kg"),
  59706. name: "Back",
  59707. image: {
  59708. source: "./media/characters/gilirian/back.svg",
  59709. extra: 815/745,
  59710. bottom: 15/830
  59711. }
  59712. },
  59713. frontNsfw: {
  59714. height: math.unit(2, "meters"),
  59715. weight: math.unit(120, "kg"),
  59716. name: "Front (NSFW)",
  59717. image: {
  59718. source: "./media/characters/gilirian/front-nsfw.svg",
  59719. extra: 805/737,
  59720. bottom: 13/818
  59721. }
  59722. },
  59723. sideNsfw: {
  59724. height: math.unit(2, "meters"),
  59725. weight: math.unit(120, "kg"),
  59726. name: "Side (NSFW)",
  59727. image: {
  59728. source: "./media/characters/gilirian/side-nsfw.svg",
  59729. extra: 810/746,
  59730. bottom: 6/816
  59731. }
  59732. },
  59733. },
  59734. [
  59735. {
  59736. name: "Incognito",
  59737. height: math.unit(2, "meters"),
  59738. default: true
  59739. },
  59740. {
  59741. name: "Macro",
  59742. height: math.unit(250, "meters")
  59743. },
  59744. {
  59745. name: "Big Macro",
  59746. height: math.unit(1500, "meters")
  59747. },
  59748. {
  59749. name: "Mega",
  59750. height: math.unit(40, "km")
  59751. },
  59752. {
  59753. name: "Giga",
  59754. height: math.unit(300, "km")
  59755. },
  59756. {
  59757. name: "Extra Giga",
  59758. height: math.unit(5000, "km")
  59759. },
  59760. {
  59761. name: "Small Terra",
  59762. height: math.unit(10e3, "km")
  59763. },
  59764. {
  59765. name: "Terra",
  59766. height: math.unit(3e5, "km")
  59767. },
  59768. {
  59769. name: "Galactic",
  59770. height: math.unit(369950, "lightyears")
  59771. },
  59772. ]
  59773. ))
  59774. characterMakers.push(() => makeCharacter(
  59775. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59776. {
  59777. front: {
  59778. height: math.unit(2.5, "meters"),
  59779. weight: math.unit(230, "lb"),
  59780. name: "Front",
  59781. image: {
  59782. source: "./media/characters/tarken/front.svg",
  59783. extra: 764/720,
  59784. bottom: 49/813
  59785. }
  59786. },
  59787. back: {
  59788. height: math.unit(2.5, "meters"),
  59789. weight: math.unit(230, "lb"),
  59790. name: "Back",
  59791. image: {
  59792. source: "./media/characters/tarken/back.svg",
  59793. extra: 756/720,
  59794. bottom: 35/791
  59795. }
  59796. },
  59797. frontNsfw: {
  59798. height: math.unit(2.5, "meters"),
  59799. weight: math.unit(230, "lb"),
  59800. name: "Front (NSFW)",
  59801. image: {
  59802. source: "./media/characters/tarken/front-nsfw.svg",
  59803. extra: 764/720,
  59804. bottom: 49/813
  59805. }
  59806. },
  59807. backNsfw: {
  59808. height: math.unit(2.5, "meters"),
  59809. weight: math.unit(230, "lb"),
  59810. name: "Back (NSFW)",
  59811. image: {
  59812. source: "./media/characters/tarken/back-nsfw.svg",
  59813. extra: 756/720,
  59814. bottom: 35/791
  59815. }
  59816. },
  59817. head: {
  59818. height: math.unit(2.22, "feet"),
  59819. name: "Head",
  59820. image: {
  59821. source: "./media/characters/tarken/head.svg"
  59822. }
  59823. },
  59824. tail: {
  59825. height: math.unit(5.25, "feet"),
  59826. name: "Tail",
  59827. image: {
  59828. source: "./media/characters/tarken/tail.svg"
  59829. }
  59830. },
  59831. dick: {
  59832. height: math.unit(1.95, "feet"),
  59833. name: "Dick",
  59834. image: {
  59835. source: "./media/characters/tarken/dick.svg"
  59836. }
  59837. },
  59838. hand: {
  59839. height: math.unit(1.78, "feet"),
  59840. name: "Hand",
  59841. image: {
  59842. source: "./media/characters/tarken/hand.svg"
  59843. }
  59844. },
  59845. beam: {
  59846. height: math.unit(1.5, "feet"),
  59847. name: "Beam",
  59848. image: {
  59849. source: "./media/characters/tarken/beam.svg"
  59850. }
  59851. },
  59852. },
  59853. [
  59854. {
  59855. name: "Original Size",
  59856. height: math.unit(2.5, "meters")
  59857. },
  59858. {
  59859. name: "Macro",
  59860. height: math.unit(150, "meters"),
  59861. default: true
  59862. },
  59863. {
  59864. name: "Macro+",
  59865. height: math.unit(300, "meters")
  59866. },
  59867. {
  59868. name: "Mega",
  59869. height: math.unit(2, "km")
  59870. },
  59871. {
  59872. name: "Mega+",
  59873. height: math.unit(35, "km")
  59874. },
  59875.  {
  59876. name: "Mega++",
  59877. height: math.unit(60, "km")
  59878. },
  59879. {
  59880. name: "Giga",
  59881. height: math.unit(200, "km")
  59882. },
  59883. {
  59884. name: "Giga+",
  59885. height: math.unit(2500, "km")
  59886. },
  59887. {
  59888. name: "Giga++",
  59889. height: math.unit(6600, "km")
  59890. },
  59891. {
  59892. name: "Terra",
  59893. height: math.unit(20000, "km")
  59894. },
  59895. {
  59896. name: "Terra+",
  59897. height: math.unit(300000, "km")
  59898. },
  59899. ]
  59900. ))
  59901. characterMakers.push(() => makeCharacter(
  59902. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59903. {
  59904. magpie_dressed: {
  59905. height: math.unit(1.7, "meters"),
  59906. weight: math.unit(70, "kg"),
  59907. name: "Dressed",
  59908. image: {
  59909. source: "./media/characters/otreus/magpie-dressed.svg",
  59910. extra: 691/672,
  59911. bottom: 116/807
  59912. },
  59913. form: "magpie",
  59914. default: true
  59915. },
  59916. magpie_nude: {
  59917. height: math.unit(1.7, "meters"),
  59918. weight: math.unit(70, "kg"),
  59919. name: "Nude",
  59920. image: {
  59921. source: "./media/characters/otreus/magpie-nude.svg",
  59922. extra: 691/672,
  59923. bottom: 116/807
  59924. },
  59925. form: "magpie",
  59926. },
  59927. magpie_dressedLewd: {
  59928. height: math.unit(1.7, "meters"),
  59929. weight: math.unit(70, "kg"),
  59930. name: "Dressed (Lewd)",
  59931. image: {
  59932. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59933. extra: 691/672,
  59934. bottom: 116/807
  59935. },
  59936. form: "magpie",
  59937. },
  59938. magpie_nudeLewd: {
  59939. height: math.unit(1.7, "meters"),
  59940. weight: math.unit(70, "kg"),
  59941. name: "Nude (Lewd)",
  59942. image: {
  59943. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59944. extra: 691/672,
  59945. bottom: 116/807
  59946. },
  59947. form: "magpie",
  59948. },
  59949. magpie_leftFoot: {
  59950. height: math.unit(1.58, "feet"),
  59951. name: "Left Foot",
  59952. image: {
  59953. source: "./media/characters/otreus/magpie-left-foot.svg"
  59954. },
  59955. form: "magpie",
  59956. },
  59957. magpie_rightFoot: {
  59958. height: math.unit(1.58, "feet"),
  59959. name: "Right Foot",
  59960. image: {
  59961. source: "./media/characters/otreus/magpie-right-foot.svg"
  59962. },
  59963. form: "magpie",
  59964. },
  59965. magpie_wingspan: {
  59966. height: math.unit(2, "meters"),
  59967. weight: math.unit(70, "kg"),
  59968. name: "Wingspan",
  59969. image: {
  59970. source: "./media/characters/otreus/magpie-wingspan.svg"
  59971. },
  59972. extraAttributes: {
  59973. "wingspan": {
  59974. name: "Wingspan",
  59975. power: 1,
  59976. type: "length",
  59977. base: math.unit(3.35, "meters")
  59978. },
  59979. },
  59980. form: "magpie",
  59981. },
  59982. hippogriff_dressed: {
  59983. height: math.unit(1.7, "meters"),
  59984. weight: math.unit(70, "kg"),
  59985. name: "Dressed",
  59986. image: {
  59987. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59988. extra: 710/689,
  59989. bottom: 67/777
  59990. },
  59991. form: "hippogriff",
  59992. default: true
  59993. },
  59994. hippogriff_nude: {
  59995. height: math.unit(1.7, "meters"),
  59996. weight: math.unit(70, "kg"),
  59997. name: "Nude",
  59998. image: {
  59999. source: "./media/characters/otreus/hippogriff-nude.svg",
  60000. extra: 710/689,
  60001. bottom: 67/777
  60002. },
  60003. form: "hippogriff",
  60004. },
  60005. hippogriff_dressedLewd: {
  60006. height: math.unit(1.7, "meters"),
  60007. weight: math.unit(70, "kg"),
  60008. name: "Dressed (Lewd)",
  60009. image: {
  60010. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  60011. extra: 710/689,
  60012. bottom: 67/777
  60013. },
  60014. form: "hippogriff",
  60015. },
  60016. hippogriff_nudeLewd: {
  60017. height: math.unit(1.7, "meters"),
  60018. weight: math.unit(70, "kg"),
  60019. name: "Nude (Lewd)",
  60020. image: {
  60021. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  60022. extra: 710/689,
  60023. bottom: 67/777
  60024. },
  60025. form: "hippogriff",
  60026. },
  60027. },
  60028. [
  60029. {
  60030. name: "Original Size",
  60031. height: math.unit(1.7, "meters"),
  60032. allForms: true
  60033. },
  60034. {
  60035. name: "Incognito Size",
  60036. height: math.unit(2, "meters"),
  60037. allForms: true
  60038. },
  60039. {
  60040. name: "Mega",
  60041. height: math.unit(2, "km"),
  60042. allForms: true
  60043. },
  60044. {
  60045. name: "Mega+",
  60046. height: math.unit(40, "km"),
  60047. allForms: true
  60048. },
  60049. {
  60050. name: "Giga",
  60051. height: math.unit(250, "km"),
  60052. allForms: true
  60053. },
  60054. {
  60055. name: "Giga+",
  60056. height: math.unit(3000, "km"),
  60057. allForms: true
  60058. },
  60059. {
  60060. name: "Terra",
  60061. height: math.unit(20000, "km"),
  60062. allForms: true
  60063. },
  60064. {
  60065. name: "Solar (Home Size)",
  60066. height: math.unit(3e6, "km"),
  60067. allForms: true,
  60068. default: true
  60069. },
  60070. ],
  60071. {
  60072. "magpie": {
  60073. name: "Magpie",
  60074. default: true
  60075. },
  60076. "hippogriff": {
  60077. name: "Hippogriff",
  60078. },
  60079. }
  60080. ))
  60081. characterMakers.push(() => makeCharacter(
  60082. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  60083. {
  60084. frontDressed: {
  60085. height: math.unit(1.8, "meters"),
  60086. weight: math.unit(90, "kg"),
  60087. name: "Front (Dressed)",
  60088. image: {
  60089. source: "./media/characters/thalia/front-dressed.svg",
  60090. extra: 478/402,
  60091. bottom: 55/533
  60092. }
  60093. },
  60094. backDressed: {
  60095. height: math.unit(1.8, "meters"),
  60096. weight: math.unit(90, "kg"),
  60097. name: "Back (Dressed)",
  60098. image: {
  60099. source: "./media/characters/thalia/back-dressed.svg",
  60100. extra: 500/424,
  60101. bottom: 15/515
  60102. }
  60103. },
  60104. frontNude: {
  60105. height: math.unit(1.8, "meters"),
  60106. weight: math.unit(90, "kg"),
  60107. name: "Front (Nude)",
  60108. image: {
  60109. source: "./media/characters/thalia/front-nude.svg",
  60110. extra: 478/402,
  60111. bottom: 55/533
  60112. }
  60113. },
  60114. backNude: {
  60115. height: math.unit(1.8, "meters"),
  60116. weight: math.unit(90, "kg"),
  60117. name: "Back (Nude)",
  60118. image: {
  60119. source: "./media/characters/thalia/back-nude.svg",
  60120. extra: 500/424,
  60121. bottom: 15/515
  60122. }
  60123. },
  60124. },
  60125. [
  60126. {
  60127. name: "Incognito",
  60128. height: math.unit(3, "meters")
  60129. },
  60130. {
  60131. name: "Macro",
  60132. height: math.unit(500, "meters")
  60133. },
  60134. {
  60135. name: "Mega",
  60136. height: math.unit(5, "km")
  60137. },
  60138. {
  60139. name: "Mega+",
  60140. height: math.unit(30, "km")
  60141. },
  60142. {
  60143. name: "Giga",
  60144. height: math.unit(350, "km")
  60145. },
  60146. {
  60147. name: "Giga+",
  60148. height: math.unit(4000, "km")
  60149. },
  60150. {
  60151. name: "Terra",
  60152. height: math.unit(35000, "km")
  60153. },
  60154. {
  60155. name: "Original Size",
  60156. height: math.unit(130000, "km")
  60157. },
  60158. {
  60159. name: "Solar (Home Size)",
  60160. height: math.unit(4e6, "km"),
  60161. default: true
  60162. },
  60163. ]
  60164. ))
  60165. characterMakers.push(() => makeCharacter(
  60166. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60167. {
  60168. front: {
  60169. height: math.unit(1.8, "meters"),
  60170. weight: math.unit(95, "kg"),
  60171. name: "Front",
  60172. image: {
  60173. source: "./media/characters/shango/front.svg",
  60174. extra: 1925/1774,
  60175. bottom: 67/1992
  60176. }
  60177. },
  60178. back: {
  60179. height: math.unit(1.8, "meters"),
  60180. weight: math.unit(95, "kg"),
  60181. name: "Back",
  60182. image: {
  60183. source: "./media/characters/shango/back.svg",
  60184. extra: 1915/1766,
  60185. bottom: 52/1967
  60186. }
  60187. },
  60188. frontLewd: {
  60189. height: math.unit(1.8, "meters"),
  60190. weight: math.unit(95, "kg"),
  60191. name: "Front (Lewd)",
  60192. image: {
  60193. source: "./media/characters/shango/front-lewd.svg",
  60194. extra: 1925/1774,
  60195. bottom: 67/1992
  60196. }
  60197. },
  60198. backLewd: {
  60199. height: math.unit(1.8, "meters"),
  60200. weight: math.unit(95, "kg"),
  60201. name: "Back (Lewd)",
  60202. image: {
  60203. source: "./media/characters/shango/back-lewd.svg",
  60204. extra: 1915/1766,
  60205. bottom: 52/1967
  60206. }
  60207. },
  60208. maw: {
  60209. height: math.unit(1.64, "feet"),
  60210. name: "Maw",
  60211. image: {
  60212. source: "./media/characters/shango/maw.svg"
  60213. }
  60214. },
  60215. dick: {
  60216. height: math.unit(2.14, "feet"),
  60217. name: "Dick",
  60218. image: {
  60219. source: "./media/characters/shango/dick.svg"
  60220. }
  60221. },
  60222. },
  60223. [
  60224. {
  60225. name: "Incognito",
  60226. height: math.unit(1.8, "meters")
  60227. },
  60228. {
  60229. name: "Home Size",
  60230. height: math.unit(60, "meters"),
  60231. default: true
  60232. },
  60233. {
  60234. name: "Macro",
  60235. height: math.unit(450, "meters")
  60236. },
  60237. {
  60238. name: "Mega",
  60239. height: math.unit(6, "km")
  60240. },
  60241. {
  60242. name: "Mega+",
  60243. height: math.unit(35, "km")
  60244. },
  60245. {
  60246. name: "Giga",
  60247. height: math.unit(500, "km")
  60248. },
  60249. {
  60250. name: "Giga+",
  60251. height: math.unit(5000, "km")
  60252. },
  60253. {
  60254. name: "Terra",
  60255. height: math.unit(60000, "km")
  60256. },
  60257. {
  60258. name: "Terra+",
  60259. height: math.unit(400000, "km")
  60260. },
  60261. ]
  60262. ))
  60263. characterMakers.push(() => makeCharacter(
  60264. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60265. {
  60266. front: {
  60267. height: math.unit(2, "meters"),
  60268. weight: math.unit(95, "kg"),
  60269. name: "Front",
  60270. image: {
  60271. source: "./media/characters/osiris-gryphon/front.svg",
  60272. extra: 1508/1313,
  60273. bottom: 87/1595
  60274. }
  60275. },
  60276. back: {
  60277. height: math.unit(2, "meters"),
  60278. weight: math.unit(95, "kg"),
  60279. name: "Back",
  60280. image: {
  60281. source: "./media/characters/osiris-gryphon/back.svg",
  60282. extra: 1436/1309,
  60283. bottom: 64/1500
  60284. }
  60285. },
  60286. frontLewd: {
  60287. height: math.unit(2, "meters"),
  60288. weight: math.unit(95, "kg"),
  60289. name: "Front (Lewd)",
  60290. image: {
  60291. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60292. extra: 1508/1313,
  60293. bottom: 87/1595
  60294. }
  60295. },
  60296. wing: {
  60297. height: math.unit(6.3333, "feet"),
  60298. name: "Wing",
  60299. image: {
  60300. source: "./media/characters/osiris-gryphon/wing.svg"
  60301. }
  60302. },
  60303. },
  60304. [
  60305. {
  60306. name: "Incognito",
  60307. height: math.unit(2, "meters")
  60308. },
  60309. {
  60310. name: "Home Size",
  60311. height: math.unit(30, "meters"),
  60312. default: true
  60313. },
  60314. {
  60315. name: "Macro",
  60316. height: math.unit(100, "meters")
  60317. },
  60318. {
  60319. name: "Macro+",
  60320. height: math.unit(350, "meters")
  60321. },
  60322. {
  60323. name: "Mega",
  60324. height: math.unit(40, "km")
  60325. },
  60326. {
  60327. name: "Giga",
  60328. height: math.unit(300, "km")
  60329. },
  60330. {
  60331. name: "Giga+",
  60332. height: math.unit(2000, "km")
  60333. },
  60334. {
  60335. name: "Terra",
  60336. height: math.unit(30000, "km")
  60337. },
  60338. ]
  60339. ))
  60340. characterMakers.push(() => makeCharacter(
  60341. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60342. {
  60343. front: {
  60344. height: math.unit(2.5, "meters"),
  60345. weight: math.unit(200, "kg"),
  60346. name: "Front",
  60347. image: {
  60348. source: "./media/characters/atlas-dragon/front.svg",
  60349. extra: 745/462,
  60350. bottom: 36/781
  60351. }
  60352. },
  60353. back: {
  60354. height: math.unit(2.5, "meters"),
  60355. weight: math.unit(200, "kg"),
  60356. name: "Back",
  60357. image: {
  60358. source: "./media/characters/atlas-dragon/back.svg",
  60359. extra: 848/822,
  60360. bottom: 57/905
  60361. }
  60362. },
  60363. frontLewd: {
  60364. height: math.unit(2.5, "meters"),
  60365. weight: math.unit(200, "kg"),
  60366. name: "Front (Lewd)",
  60367. image: {
  60368. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60369. extra: 745/462,
  60370. bottom: 36/781
  60371. }
  60372. },
  60373. backLewd: {
  60374. height: math.unit(2.5, "meters"),
  60375. weight: math.unit(200, "kg"),
  60376. name: "Back (Lewd)",
  60377. image: {
  60378. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60379. extra: 848/822,
  60380. bottom: 57/905
  60381. }
  60382. },
  60383. },
  60384. [
  60385. {
  60386. name: "Incognito",
  60387. height: math.unit(2.5, "meters")
  60388. },
  60389. {
  60390. name: "Small Macro",
  60391. height: math.unit(50, "meters")
  60392. },
  60393. {
  60394. name: "Macro",
  60395. height: math.unit(350, "meters")
  60396. },
  60397. {
  60398. name: "Mega",
  60399. height: math.unit(5.5, "kilometers")
  60400. },
  60401. {
  60402. name: "Mega+",
  60403. height: math.unit(50, "km")
  60404. },
  60405. {
  60406. name: "Giga",
  60407. height: math.unit(350, "km")
  60408. },
  60409. {
  60410. name: "Giga+",
  60411. height: math.unit(2000, "km")
  60412. },
  60413. {
  60414. name: "Giga++",
  60415. height: math.unit(6500, "km")
  60416. },
  60417. {
  60418. name: "Terra",
  60419. height: math.unit(30000, "km")
  60420. },
  60421. {
  60422. name: "Terra+",
  60423. height: math.unit(250000, "km")
  60424. },
  60425. {
  60426. name: "True Size",
  60427. height: math.unit(100, "multiverses"),
  60428. default: true
  60429. },
  60430. ]
  60431. ))
  60432. characterMakers.push(() => makeCharacter(
  60433. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60434. {
  60435. front: {
  60436. height: math.unit(1.8, "m"),
  60437. weight: math.unit(120, "kg"),
  60438. name: "Front",
  60439. image: {
  60440. source: "./media/characters/chey/front.svg",
  60441. extra: 1359/1270,
  60442. bottom: 18/1377
  60443. }
  60444. },
  60445. arm: {
  60446. height: math.unit(2.05, "feet"),
  60447. name: "Arm",
  60448. image: {
  60449. source: "./media/characters/chey/arm.svg"
  60450. }
  60451. },
  60452. head: {
  60453. height: math.unit(1.89, "feet"),
  60454. name: "Head",
  60455. image: {
  60456. source: "./media/characters/chey/head.svg"
  60457. }
  60458. },
  60459. },
  60460. [
  60461. {
  60462. name: "Original Size",
  60463. height: math.unit(5, "cm")
  60464. },
  60465. {
  60466. name: "Incognito Size",
  60467. height: math.unit(2.4, "m")
  60468. },
  60469. {
  60470. name: "Home Size",
  60471. height: math.unit(200, "meters"),
  60472. default: true
  60473. },
  60474. {
  60475. name: "Mega",
  60476. height: math.unit(2, "km")
  60477. },
  60478. {
  60479. name: "Giga (Preferred Size)",
  60480. height: math.unit(2000, "km")
  60481. },
  60482. {
  60483. name: "Giga+",
  60484. height: math.unit(6000, "km")
  60485. },
  60486. {
  60487. name: "Terra",
  60488. height: math.unit(17000, "km")
  60489. },
  60490. {
  60491. name: "Terra+",
  60492. height: math.unit(75000, "km")
  60493. },
  60494. {
  60495. name: "Terra++",
  60496. height: math.unit(225000, "km")
  60497. },
  60498. ]
  60499. ))
  60500. characterMakers.push(() => makeCharacter(
  60501. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60502. {
  60503. side: {
  60504. height: math.unit(7.8, "meters"),
  60505. name: "Side",
  60506. image: {
  60507. source: "./media/characters/ragnarok/side.svg",
  60508. extra: 725/621,
  60509. bottom: 72/797
  60510. }
  60511. },
  60512. },
  60513. [
  60514. {
  60515. name: "Normal",
  60516. height: math.unit(7.8, "meters"),
  60517. default: true
  60518. },
  60519. ]
  60520. ))
  60521. characterMakers.push(() => makeCharacter(
  60522. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60523. {
  60524. hyena_front: {
  60525. height: math.unit(2.1, "meters"),
  60526. weight: math.unit(110, "kg"),
  60527. name: "Front",
  60528. image: {
  60529. source: "./media/characters/nima/hyena-front.svg",
  60530. extra: 1904/1796,
  60531. bottom: 67/1971
  60532. },
  60533. form: "hyena",
  60534. },
  60535. hyena_back: {
  60536. height: math.unit(2.1, "meters"),
  60537. weight: math.unit(110, "kg"),
  60538. name: "Back",
  60539. image: {
  60540. source: "./media/characters/nima/hyena-back.svg",
  60541. extra: 1964/1884,
  60542. bottom: 35/1999
  60543. },
  60544. form: "hyena",
  60545. },
  60546. shark_front: {
  60547. height: math.unit(1.95, "meters"),
  60548. weight: math.unit(110, "kg"),
  60549. name: "Front",
  60550. image: {
  60551. source: "./media/characters/nima/shark-front.svg",
  60552. extra: 2238/2013,
  60553. bottom: 0/223
  60554. },
  60555. form: "shark",
  60556. },
  60557. paw: {
  60558. height: math.unit(1, "feet"),
  60559. name: "Paw",
  60560. image: {
  60561. source: "./media/characters/nima/paw.svg"
  60562. }
  60563. },
  60564. circlet: {
  60565. height: math.unit(0.3, "feet"),
  60566. name: "Circlet",
  60567. image: {
  60568. source: "./media/characters/nima/circlet.svg"
  60569. }
  60570. },
  60571. necklace: {
  60572. height: math.unit(1.2, "feet"),
  60573. name: "Necklace",
  60574. image: {
  60575. source: "./media/characters/nima/necklace.svg"
  60576. }
  60577. },
  60578. bracelet: {
  60579. height: math.unit(0.51, "feet"),
  60580. name: "Bracelet",
  60581. image: {
  60582. source: "./media/characters/nima/bracelet.svg"
  60583. }
  60584. },
  60585. armband: {
  60586. height: math.unit(1.3, "feet"),
  60587. name: "Armband",
  60588. image: {
  60589. source: "./media/characters/nima/armband.svg"
  60590. }
  60591. },
  60592. },
  60593. [
  60594. {
  60595. name: "Incognito",
  60596. height: math.unit(2.1, "meters"),
  60597. allForms: true
  60598. },
  60599. {
  60600. name: "Small Macro",
  60601. height: math.unit(50, "meters"),
  60602. allForms: true
  60603. },
  60604. {
  60605. name: "Macro",
  60606. height: math.unit(200, "meters"),
  60607. allForms: true
  60608. },
  60609. {
  60610. name: "Mega",
  60611. height: math.unit(2.5, "km"),
  60612. allForms: true
  60613. },
  60614. {
  60615. name: "Mega+",
  60616. height: math.unit(30, "km"),
  60617. allForms: true
  60618. },
  60619. {
  60620. name: "Giga (Home Size)",
  60621. height: math.unit(400, "km"),
  60622. allForms: true,
  60623. default: true
  60624. },
  60625. {
  60626. name: "Giga+",
  60627. height: math.unit(2500, "km"),
  60628. allForms: true
  60629. },
  60630. {
  60631. name: "Giga++",
  60632. height: math.unit(8000, "km"),
  60633. allForms: true
  60634. },
  60635. {
  60636. name: "Terra",
  60637. height: math.unit(20000, "km"),
  60638. allForms: true
  60639. },
  60640. {
  60641. name: "Terra+",
  60642. height: math.unit(70000, "km"),
  60643. allForms: true
  60644. },
  60645. {
  60646. name: "Terra++",
  60647. height: math.unit(600000, "km"),
  60648. allForms: true
  60649. },
  60650. {
  60651. name: "Galactic",
  60652. height: math.unit(40, "galaxies"),
  60653. allForms: true
  60654. },
  60655. {
  60656. name: "Universal",
  60657. height: math.unit(40, "universes"),
  60658. allForms: true
  60659. },
  60660. ],
  60661. {
  60662. "hyena": {
  60663. name: "Hyena",
  60664. default: true
  60665. },
  60666. "shark": {
  60667. name: "Shark",
  60668. },
  60669. }
  60670. ))
  60671. characterMakers.push(() => makeCharacter(
  60672. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60673. {
  60674. anthro_front: {
  60675. height: math.unit(1.5, "meters"),
  60676. name: "Front",
  60677. image: {
  60678. source: "./media/characters/adelaide/anthro-front.svg",
  60679. extra: 860/783,
  60680. bottom: 60/920
  60681. },
  60682. form: "anthro",
  60683. default: true
  60684. },
  60685. hand: {
  60686. height: math.unit(0.65, "feet"),
  60687. name: "Hand",
  60688. image: {
  60689. source: "./media/characters/adelaide/hand.svg"
  60690. },
  60691. form: "anthro"
  60692. },
  60693. foot: {
  60694. height: math.unit(1.38 * 259 / 314, "feet"),
  60695. name: "Foot",
  60696. image: {
  60697. source: "./media/characters/adelaide/foot.svg",
  60698. extra: 259/259,
  60699. bottom: 55/314
  60700. },
  60701. form: "anthro"
  60702. },
  60703. feather: {
  60704. height: math.unit(0.85, "feet"),
  60705. name: "Feather",
  60706. image: {
  60707. source: "./media/characters/adelaide/feather.svg"
  60708. },
  60709. form: "anthro"
  60710. },
  60711. feral_side: {
  60712. height: math.unit(1, "meters"),
  60713. name: "Side",
  60714. image: {
  60715. source: "./media/characters/adelaide/feral-side.svg",
  60716. extra: 550/467,
  60717. bottom: 37/587
  60718. },
  60719. form: "feral",
  60720. default: true
  60721. },
  60722. feral_hand: {
  60723. height: math.unit(0.58, "feet"),
  60724. name: "Hand",
  60725. image: {
  60726. source: "./media/characters/adelaide/hand.svg"
  60727. },
  60728. form: "feral"
  60729. },
  60730. feral_foot: {
  60731. height: math.unit(1.2 * 259 / 314, "feet"),
  60732. name: "Foot",
  60733. image: {
  60734. source: "./media/characters/adelaide/foot.svg",
  60735. extra: 259/259,
  60736. bottom: 55/314
  60737. },
  60738. form: "feral"
  60739. },
  60740. feral_feather: {
  60741. height: math.unit(0.63, "feet"),
  60742. name: "Feather",
  60743. image: {
  60744. source: "./media/characters/adelaide/feather.svg"
  60745. },
  60746. form: "feral"
  60747. },
  60748. },
  60749. [
  60750. {
  60751. name: "Normal",
  60752. height: math.unit(1.5, "meters"),
  60753. form: "anthro",
  60754. default: true
  60755. },
  60756. {
  60757. name: "Normal",
  60758. height: math.unit(1, "meters"),
  60759. form: "feral",
  60760. default: true
  60761. },
  60762. ],
  60763. {
  60764. "anthro": {
  60765. name: "Anthro",
  60766. default: true
  60767. },
  60768. "feral": {
  60769. name: "Feral",
  60770. },
  60771. }
  60772. ))
  60773. characterMakers.push(() => makeCharacter(
  60774. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60775. {
  60776. front: {
  60777. height: math.unit(2.5, "meters"),
  60778. name: "Front",
  60779. image: {
  60780. source: "./media/characters/goa/front.svg",
  60781. extra: 1109/1013,
  60782. bottom: 150/1259
  60783. }
  60784. },
  60785. },
  60786. [
  60787. {
  60788. name: "Normal",
  60789. height: math.unit(2.5, "meters"),
  60790. default: true
  60791. },
  60792. ]
  60793. ))
  60794. characterMakers.push(() => makeCharacter(
  60795. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60796. {
  60797. front: {
  60798. height: math.unit(2, "meters"),
  60799. weight: math.unit(100, "kg"),
  60800. name: "Front",
  60801. image: {
  60802. source: "./media/characters/kiki-weavile/front.svg",
  60803. extra: 357/332,
  60804. bottom: 60/417
  60805. }
  60806. },
  60807. },
  60808. [
  60809. {
  60810. name: "Normal",
  60811. height: math.unit(2, "meters"),
  60812. default: true
  60813. },
  60814. ]
  60815. ))
  60816. characterMakers.push(() => makeCharacter(
  60817. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60818. {
  60819. side: {
  60820. height: math.unit(1.6, "meters"),
  60821. name: "Side",
  60822. image: {
  60823. source: "./media/characters/liza/side.svg",
  60824. extra: 943/915,
  60825. bottom: 72/1015
  60826. }
  60827. },
  60828. },
  60829. [
  60830. {
  60831. name: "Normal",
  60832. height: math.unit(1.6, "meters"),
  60833. default: true
  60834. },
  60835. ]
  60836. ))
  60837. characterMakers.push(() => makeCharacter(
  60838. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60839. {
  60840. side: {
  60841. height: math.unit(2.5, "meters"),
  60842. preyCapacity: math.unit(1, "people"),
  60843. name: "Side",
  60844. image: {
  60845. source: "./media/characters/persephone-sweetbreath/side.svg",
  60846. extra: 796/700,
  60847. bottom: 44/840
  60848. }
  60849. },
  60850. sideVore: {
  60851. height: math.unit(2.5, "meters"),
  60852. preyCapacity: math.unit(1, "people"),
  60853. name: "Side (Full)",
  60854. image: {
  60855. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60856. extra: 796/700,
  60857. bottom: 44/840
  60858. }
  60859. },
  60860. },
  60861. [
  60862. {
  60863. name: "Normal",
  60864. height: math.unit(2.5, "meters"),
  60865. default: true
  60866. },
  60867. ]
  60868. ))
  60869. characterMakers.push(() => makeCharacter(
  60870. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60871. {
  60872. front: {
  60873. height: math.unit(32, "meters"),
  60874. name: "Front",
  60875. image: {
  60876. source: "./media/characters/pierce/front.svg",
  60877. extra: 1695/1475,
  60878. bottom: 185/1880
  60879. }
  60880. },
  60881. side: {
  60882. height: math.unit(32, "meters"),
  60883. name: "Side",
  60884. image: {
  60885. source: "./media/characters/pierce/side.svg",
  60886. extra: 974/859,
  60887. bottom: 43/1017
  60888. }
  60889. },
  60890. frontWingless: {
  60891. height: math.unit(32, "meters"),
  60892. name: "Front (Wingless)",
  60893. image: {
  60894. source: "./media/characters/pierce/front-wingless.svg",
  60895. extra: 1695/1475,
  60896. bottom: 185/1880
  60897. }
  60898. },
  60899. sideWingless: {
  60900. height: math.unit(32, "meters"),
  60901. name: "Side (Wingless)",
  60902. image: {
  60903. source: "./media/characters/pierce/side-wingless.svg",
  60904. extra: 974/859,
  60905. bottom: 43/1017
  60906. }
  60907. },
  60908. maw: {
  60909. height: math.unit(19.3, "meters"),
  60910. name: "Maw",
  60911. image: {
  60912. source: "./media/characters/pierce/maw.svg"
  60913. }
  60914. },
  60915. },
  60916. [
  60917. {
  60918. name: "Small",
  60919. height: math.unit(8.5, "meters")
  60920. },
  60921. {
  60922. name: "Normal",
  60923. height: math.unit(32, "meters"),
  60924. default: true
  60925. },
  60926. ]
  60927. ))
  60928. characterMakers.push(() => makeCharacter(
  60929. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60930. {
  60931. front: {
  60932. height: math.unit(2.3, "meters"),
  60933. weight: math.unit(165, "kg"),
  60934. name: "Front",
  60935. image: {
  60936. source: "./media/characters/shira/front.svg",
  60937. extra: 924/919,
  60938. bottom: 17/941
  60939. },
  60940. form: "cobra",
  60941. default: true
  60942. },
  60943. back: {
  60944. height: math.unit(2.3, "meters"),
  60945. weight: math.unit(165, "kg"),
  60946. name: "Back",
  60947. image: {
  60948. source: "./media/characters/shira/back.svg",
  60949. extra: 928/922,
  60950. bottom: 18/946
  60951. },
  60952. form: "cobra"
  60953. },
  60954. frontLewd: {
  60955. height: math.unit(2.3, "meters"),
  60956. weight: math.unit(165, "kg"),
  60957. name: "Front (Lewd)",
  60958. image: {
  60959. source: "./media/characters/shira/front-lewd.svg",
  60960. extra: 924/919,
  60961. bottom: 17/941
  60962. },
  60963. form: "cobra"
  60964. },
  60965. backLewd: {
  60966. height: math.unit(2.3, "meters"),
  60967. weight: math.unit(165, "kg"),
  60968. name: "Back (Lewd)",
  60969. image: {
  60970. source: "./media/characters/shira/back-lewd.svg",
  60971. extra: 928/922,
  60972. bottom: 18/946
  60973. },
  60974. form: "cobra"
  60975. },
  60976. maw: {
  60977. height: math.unit(1.14, "feet"),
  60978. name: "Maw",
  60979. image: {
  60980. source: "./media/characters/shira/maw.svg"
  60981. },
  60982. form: "cobra"
  60983. },
  60984. magma_front: {
  60985. height: math.unit(2.3, "meters"),
  60986. weight: math.unit(165, "kg"),
  60987. name: "Front",
  60988. image: {
  60989. source: "./media/characters/shira/magma-front.svg",
  60990. extra: 1870/1693,
  60991. bottom: 24/1894
  60992. },
  60993. form: "magma",
  60994. },
  60995. magma_back: {
  60996. height: math.unit(2.3, "meters"),
  60997. weight: math.unit(165, "kg"),
  60998. name: "Back",
  60999. image: {
  61000. source: "./media/characters/shira/magma-back.svg",
  61001. extra: 1918/1756,
  61002. bottom: 46/1964
  61003. },
  61004. form: "magma",
  61005. },
  61006. },
  61007. [
  61008. {
  61009. name: "Incognito",
  61010. height: math.unit(2.3, "meters"),
  61011. allForms: true
  61012. },
  61013. {
  61014. name: "Home Size",
  61015. height: math.unit(150, "meters"),
  61016. default: true,
  61017. allForms: true
  61018. },
  61019. {
  61020. name: "Macro",
  61021. height: math.unit(2, "km"),
  61022. allForms: true
  61023. },
  61024. {
  61025. name: "Mega",
  61026. height: math.unit(30, "km"),
  61027. allForms: true
  61028. },
  61029. {
  61030. name: "Giga",
  61031. height: math.unit(450, "km"),
  61032. allForms: true
  61033. },
  61034. {
  61035. name: "Giga+",
  61036. height: math.unit(3000, "km"),
  61037. allForms: true
  61038. },
  61039. {
  61040. name: "Giga++",
  61041. height: math.unit(6000, "km"),
  61042. allForms: true
  61043. },
  61044. {
  61045. name: "Terra",
  61046. height: math.unit(80000, "km"),
  61047. allForms: true
  61048. },
  61049. {
  61050. name: "Terra+",
  61051. height: math.unit(350000, "km"),
  61052. allForms: true
  61053. },
  61054. {
  61055. name: "Solar",
  61056. height: math.unit(1e6, "km"),
  61057. allForms: true
  61058. },
  61059. ],
  61060. {
  61061. "cobra": {
  61062. name: "Cobra",
  61063. default: true
  61064. },
  61065. "magma": {
  61066. name: "Magma Dragon",
  61067. },
  61068. }
  61069. ))
  61070. characterMakers.push(() => makeCharacter(
  61071. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  61072. {
  61073. front: {
  61074. height: math.unit(2, "meters"),
  61075. weight: math.unit(160, "kg"),
  61076. name: "Front",
  61077. image: {
  61078. source: "./media/characters/daxerios/front.svg",
  61079. extra: 1334/1277,
  61080. bottom: 45/1379
  61081. }
  61082. },
  61083. frontLewd: {
  61084. height: math.unit(2, "meters"),
  61085. weight: math.unit(160, "kg"),
  61086. name: "Front (Lewd)",
  61087. image: {
  61088. source: "./media/characters/daxerios/front-lewd.svg",
  61089. extra: 1334/1277,
  61090. bottom: 45/1379
  61091. }
  61092. },
  61093. dick: {
  61094. height: math.unit(2.35, "feet"),
  61095. name: "Dick",
  61096. image: {
  61097. source: "./media/characters/daxerios/dick.svg"
  61098. }
  61099. },
  61100. },
  61101. [
  61102. {
  61103. name: "\"Small\"",
  61104. height: math.unit(5, "meters")
  61105. },
  61106. {
  61107. name: "Original Size",
  61108. height: math.unit(500, "meters"),
  61109. default: true
  61110. },
  61111. {
  61112. name: "Mega",
  61113. height: math.unit(2, "km")
  61114. },
  61115. {
  61116. name: "Mega+",
  61117. height: math.unit(35, "km")
  61118. },
  61119. {
  61120. name: "Giga",
  61121. height: math.unit(250, "km")
  61122. },
  61123. {
  61124. name: "Giga+",
  61125. height: math.unit(3000, "km")
  61126. },
  61127. {
  61128. name: "Terra",
  61129. height: math.unit(25000, "km")
  61130. },
  61131. {
  61132. name: "Terra+",
  61133. height: math.unit(300000, "km")
  61134. },
  61135. {
  61136. name: "Solar",
  61137. height: math.unit(1e6, "km")
  61138. },
  61139. ]
  61140. ))
  61141. characterMakers.push(() => makeCharacter(
  61142. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61143. {
  61144. front: {
  61145. height: math.unit(8 + 4/12, "feet"),
  61146. weight: math.unit(464, "lb"),
  61147. name: "Front",
  61148. image: {
  61149. source: "./media/characters/caveat/front.svg",
  61150. extra: 1861/1678,
  61151. bottom: 40/1901
  61152. }
  61153. },
  61154. },
  61155. [
  61156. {
  61157. name: "Normal",
  61158. height: math.unit(8 + 4/12, "feet"),
  61159. default: true
  61160. },
  61161. ]
  61162. ))
  61163. characterMakers.push(() => makeCharacter(
  61164. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61165. {
  61166. front: {
  61167. height: math.unit(12, "feet"),
  61168. weight: math.unit(1800, "lb"),
  61169. name: "Front",
  61170. image: {
  61171. source: "./media/characters/centbair/front.svg",
  61172. extra: 781/663,
  61173. bottom: 25/806
  61174. }
  61175. },
  61176. frontNsfw: {
  61177. height: math.unit(12, "feet"),
  61178. weight: math.unit(1800, "lb"),
  61179. name: "Front (NSFW)",
  61180. image: {
  61181. source: "./media/characters/centbair/front-nsfw.svg",
  61182. extra: 781/663,
  61183. bottom: 25/806
  61184. }
  61185. },
  61186. back: {
  61187. height: math.unit(12, "feet"),
  61188. weight: math.unit(1800, "lb"),
  61189. name: "Back",
  61190. image: {
  61191. source: "./media/characters/centbair/back.svg",
  61192. extra: 808/761,
  61193. bottom: 19/827
  61194. }
  61195. },
  61196. dick: {
  61197. height: math.unit(6.5, "feet"),
  61198. name: "Dick",
  61199. image: {
  61200. source: "./media/characters/centbair/dick.svg"
  61201. }
  61202. },
  61203. slit: {
  61204. height: math.unit(3.25, "feet"),
  61205. name: "Slit",
  61206. image: {
  61207. source: "./media/characters/centbair/slit.svg"
  61208. }
  61209. },
  61210. },
  61211. [
  61212. {
  61213. name: "Normal",
  61214. height: math.unit(12, "feet"),
  61215. default: true
  61216. },
  61217. ]
  61218. ))
  61219. characterMakers.push(() => makeCharacter(
  61220. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61221. {
  61222. front: {
  61223. height: math.unit(5 + 7/12, "feet"),
  61224. name: "Front",
  61225. image: {
  61226. source: "./media/characters/andy/front.svg",
  61227. extra: 634/588,
  61228. bottom: 36/670
  61229. },
  61230. extraAttributes: {
  61231. "pawLength": {
  61232. name: "Paw Length",
  61233. power: 1,
  61234. type: "length",
  61235. base: math.unit(1, "feet")
  61236. },
  61237. }
  61238. },
  61239. side: {
  61240. height: math.unit(5 + 7/12, "feet"),
  61241. name: "Side",
  61242. image: {
  61243. source: "./media/characters/andy/side.svg",
  61244. extra: 641/596,
  61245. bottom: 34/675
  61246. },
  61247. extraAttributes: {
  61248. "pawLength": {
  61249. name: "Paw Length",
  61250. power: 1,
  61251. type: "length",
  61252. base: math.unit(1, "feet")
  61253. },
  61254. }
  61255. },
  61256. back: {
  61257. height: math.unit(5 + 7/12, "feet"),
  61258. name: "Back",
  61259. image: {
  61260. source: "./media/characters/andy/back.svg",
  61261. extra: 618/583,
  61262. bottom: 39/657
  61263. },
  61264. extraAttributes: {
  61265. "pawLength": {
  61266. name: "Paw Length",
  61267. power: 1,
  61268. type: "length",
  61269. base: math.unit(1, "feet")
  61270. },
  61271. }
  61272. },
  61273. paw: {
  61274. height: math.unit(1.13, "feet"),
  61275. name: "Paw",
  61276. image: {
  61277. source: "./media/characters/andy/paw.svg"
  61278. }
  61279. },
  61280. },
  61281. [
  61282. {
  61283. name: "Micro",
  61284. height: math.unit(4, "inches")
  61285. },
  61286. {
  61287. name: "Normal",
  61288. height: math.unit(5 + 7/12, "feet"),
  61289. default: true
  61290. },
  61291. {
  61292. name: "Macro",
  61293. height: math.unit(390.42, "feet")
  61294. },
  61295. ]
  61296. ))
  61297. characterMakers.push(() => makeCharacter(
  61298. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61299. {
  61300. front: {
  61301. height: math.unit(7, "feet"),
  61302. weight: math.unit(250, "lb"),
  61303. name: "Front",
  61304. image: {
  61305. source: "./media/characters/vix-titan/front.svg",
  61306. extra: 460/428,
  61307. bottom: 15/475
  61308. },
  61309. extraAttributes: {
  61310. "pawWidth": {
  61311. name: "Paw Width",
  61312. power: 1,
  61313. type: "length",
  61314. base: math.unit(0.75, "feet")
  61315. },
  61316. }
  61317. },
  61318. },
  61319. [
  61320. {
  61321. name: "Normal",
  61322. height: math.unit(7, "feet"),
  61323. default: true
  61324. },
  61325. {
  61326. name: "Giant",
  61327. height: math.unit(1500, "feet")
  61328. },
  61329. {
  61330. name: "Mega",
  61331. height: math.unit(10, "miles")
  61332. },
  61333. {
  61334. name: "Giga",
  61335. height: math.unit(150, "miles")
  61336. },
  61337. {
  61338. name: "Tera",
  61339. height: math.unit(144000, "miles")
  61340. },
  61341. ]
  61342. ))
  61343. characterMakers.push(() => makeCharacter(
  61344. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61345. {
  61346. front: {
  61347. height: math.unit(6 + 2/12, "feet"),
  61348. name: "Front",
  61349. image: {
  61350. source: "./media/characters/reiku/front.svg",
  61351. extra: 1910/1757,
  61352. bottom: 103/2013
  61353. },
  61354. extraAttributes: {
  61355. "thighThickness": {
  61356. name: "Thigh Thickness",
  61357. power: 1,
  61358. type: "length",
  61359. base: math.unit(1.12, "feet")
  61360. },
  61361. "assThickness": {
  61362. name: "Ass Thickness",
  61363. power: 1,
  61364. type: "length",
  61365. base: math.unit(1.12*2, "feet")
  61366. },
  61367. }
  61368. },
  61369. side: {
  61370. height: math.unit(6 + 2/12, "feet"),
  61371. name: "Side",
  61372. image: {
  61373. source: "./media/characters/reiku/side.svg",
  61374. extra: 1846/1748,
  61375. bottom: 99/1945
  61376. },
  61377. extraAttributes: {
  61378. "thighThickness": {
  61379. name: "Thigh Thickness",
  61380. power: 1,
  61381. type: "length",
  61382. base: math.unit(1.12, "feet")
  61383. },
  61384. "assThickness": {
  61385. name: "Ass Thickness",
  61386. power: 1,
  61387. type: "length",
  61388. base: math.unit(1.12*2, "feet")
  61389. },
  61390. }
  61391. },
  61392. back: {
  61393. height: math.unit(6 + 2/12, "feet"),
  61394. name: "Back",
  61395. image: {
  61396. source: "./media/characters/reiku/back.svg",
  61397. extra: 1941/1786,
  61398. bottom: 34/1975
  61399. },
  61400. extraAttributes: {
  61401. "thighThickness": {
  61402. name: "Thigh Thickness",
  61403. power: 1,
  61404. type: "length",
  61405. base: math.unit(1.12, "feet")
  61406. },
  61407. "assThickness": {
  61408. name: "Ass Thickness",
  61409. power: 1,
  61410. type: "length",
  61411. base: math.unit(1.12*2, "feet")
  61412. },
  61413. }
  61414. },
  61415. head: {
  61416. height: math.unit(1.8, "feet"),
  61417. name: "Head",
  61418. image: {
  61419. source: "./media/characters/reiku/head.svg"
  61420. }
  61421. },
  61422. tailTop: {
  61423. height: math.unit(8.4, "feet"),
  61424. name: "Tail (Top)",
  61425. image: {
  61426. source: "./media/characters/reiku/tail-top.svg"
  61427. }
  61428. },
  61429. tailBottom: {
  61430. height: math.unit(8.4, "feet"),
  61431. name: "Tail (Bottom)",
  61432. image: {
  61433. source: "./media/characters/reiku/tail-bottom.svg"
  61434. }
  61435. },
  61436. foot: {
  61437. height: math.unit(2.6, "feet"),
  61438. name: "Foot",
  61439. image: {
  61440. source: "./media/characters/reiku/foot.svg"
  61441. }
  61442. },
  61443. footCurled: {
  61444. height: math.unit(2.3, "feet"),
  61445. name: "Foot (Curled)",
  61446. image: {
  61447. source: "./media/characters/reiku/foot-curled.svg"
  61448. }
  61449. },
  61450. footSide: {
  61451. height: math.unit(1.26, "feet"),
  61452. name: "Foot (Side)",
  61453. image: {
  61454. source: "./media/characters/reiku/foot-side.svg"
  61455. }
  61456. },
  61457. },
  61458. [
  61459. {
  61460. name: "Normal",
  61461. height: math.unit(6 + 2/12, "feet"),
  61462. default: true
  61463. },
  61464. ]
  61465. ))
  61466. characterMakers.push(() => makeCharacter(
  61467. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61468. {
  61469. front: {
  61470. height: math.unit(7, "feet"),
  61471. weight: math.unit(500, "kg"),
  61472. name: "Front",
  61473. image: {
  61474. source: "./media/characters/cialda/front.svg",
  61475. extra: 912/745,
  61476. bottom: 55/967
  61477. }
  61478. },
  61479. },
  61480. [
  61481. {
  61482. name: "Normal",
  61483. height: math.unit(7, "feet"),
  61484. default: true
  61485. },
  61486. ]
  61487. ))
  61488. characterMakers.push(() => makeCharacter(
  61489. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61490. {
  61491. side: {
  61492. height: math.unit(6, "feet"),
  61493. weight: math.unit(600, "lb"),
  61494. preyCapacity: math.unit(25, "liters"),
  61495. name: "Side",
  61496. image: {
  61497. source: "./media/characters/darkkin/side.svg",
  61498. extra: 1597/1447,
  61499. bottom: 101/1698
  61500. }
  61501. },
  61502. },
  61503. [
  61504. {
  61505. name: "Canon Height",
  61506. height: math.unit(568, "feet"),
  61507. default: true
  61508. },
  61509. ]
  61510. ))
  61511. characterMakers.push(() => makeCharacter(
  61512. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61513. {
  61514. front: {
  61515. height: math.unit(6, "feet"),
  61516. weight: math.unit(1500, "lb"),
  61517. preyCapacity: math.unit(3, "people"),
  61518. name: "Front",
  61519. image: {
  61520. source: "./media/characters/livnia/front.svg",
  61521. extra: 934/932,
  61522. bottom: 83/1017
  61523. }
  61524. },
  61525. back: {
  61526. height: math.unit(6, "feet"),
  61527. weight: math.unit(1500, "lb"),
  61528. preyCapacity: math.unit(3, "people"),
  61529. name: "Back",
  61530. image: {
  61531. source: "./media/characters/livnia/back.svg",
  61532. extra: 916/915,
  61533. bottom: 58/974
  61534. }
  61535. },
  61536. head: {
  61537. height: math.unit(1.53, "feet"),
  61538. name: "Head",
  61539. image: {
  61540. source: "./media/characters/livnia/head.svg"
  61541. }
  61542. },
  61543. maw: {
  61544. height: math.unit(0.78, "feet"),
  61545. name: "Maw",
  61546. image: {
  61547. source: "./media/characters/livnia/maw.svg"
  61548. }
  61549. },
  61550. genitals: {
  61551. height: math.unit(0.35, "feet"),
  61552. name: "Genitals",
  61553. image: {
  61554. source: "./media/characters/livnia/genitals.svg"
  61555. }
  61556. },
  61557. },
  61558. [
  61559. {
  61560. name: "Normal",
  61561. height: math.unit(1000, "feet"),
  61562. default: true
  61563. },
  61564. ]
  61565. ))
  61566. characterMakers.push(() => makeCharacter(
  61567. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61568. {
  61569. front: {
  61570. height: math.unit(4, "feet"),
  61571. weight: math.unit(73, "lb"),
  61572. name: "Front",
  61573. image: {
  61574. source: "./media/characters/hayaku/front.svg",
  61575. extra: 1011/888,
  61576. bottom: 33/1044
  61577. }
  61578. },
  61579. back: {
  61580. height: math.unit(4, "feet"),
  61581. weight: math.unit(73, "lb"),
  61582. name: "Back",
  61583. image: {
  61584. source: "./media/characters/hayaku/back.svg",
  61585. extra: 1040/930,
  61586. bottom: 20/1060
  61587. }
  61588. },
  61589. },
  61590. [
  61591. {
  61592. name: "Normal",
  61593. height: math.unit(4, "feet"),
  61594. default: true
  61595. },
  61596. ]
  61597. ))
  61598. characterMakers.push(() => makeCharacter(
  61599. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61600. {
  61601. front: {
  61602. height: math.unit(6 + 7/12, "feet"),
  61603. weight: math.unit(300, "lb"),
  61604. name: "Front",
  61605. image: {
  61606. source: "./media/characters/athena-bryzant/front.svg",
  61607. extra: 870/835,
  61608. bottom: 33/903
  61609. }
  61610. },
  61611. back: {
  61612. height: math.unit(6 + 7/12, "feet"),
  61613. weight: math.unit(300, "lb"),
  61614. name: "Back",
  61615. image: {
  61616. source: "./media/characters/athena-bryzant/back.svg",
  61617. extra: 858/823,
  61618. bottom: 30/888
  61619. }
  61620. },
  61621. head: {
  61622. height: math.unit(2.38, "feet"),
  61623. name: "Head",
  61624. image: {
  61625. source: "./media/characters/athena-bryzant/head.svg"
  61626. }
  61627. },
  61628. wings: {
  61629. height: math.unit(2.85, "feet"),
  61630. name: "Wings",
  61631. image: {
  61632. source: "./media/characters/athena-bryzant/wings.svg"
  61633. }
  61634. },
  61635. },
  61636. [
  61637. {
  61638. name: "Normal",
  61639. height: math.unit(6 + 7/12, "feet"),
  61640. default: true
  61641. },
  61642. {
  61643. name: "Big",
  61644. height: math.unit(8, "feet")
  61645. },
  61646. {
  61647. name: "Very Big",
  61648. height: math.unit(11, "feet")
  61649. },
  61650. ]
  61651. ))
  61652. characterMakers.push(() => makeCharacter(
  61653. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61654. {
  61655. side: {
  61656. height: math.unit(3, "meters"),
  61657. weight: math.unit(7500, "kg"),
  61658. preyCapacity: math.unit(1e12, "people"),
  61659. name: "Side",
  61660. image: {
  61661. source: "./media/characters/zel-kesh/side.svg",
  61662. extra: 910/407,
  61663. bottom: 147/1057
  61664. }
  61665. },
  61666. },
  61667. [
  61668. {
  61669. name: "Normal",
  61670. height: math.unit(3, "meters"),
  61671. default: true
  61672. },
  61673. ]
  61674. ))
  61675. characterMakers.push(() => makeCharacter(
  61676. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61677. {
  61678. front: {
  61679. height: math.unit(2, "meters"),
  61680. weight: math.unit(95, "kg"),
  61681. name: "Front",
  61682. image: {
  61683. source: "./media/characters/kane-fox/front.svg",
  61684. extra: 945/888,
  61685. bottom: 27/972
  61686. }
  61687. },
  61688. back: {
  61689. height: math.unit(2, "meters"),
  61690. weight: math.unit(95, "kg"),
  61691. name: "Back",
  61692. image: {
  61693. source: "./media/characters/kane-fox/back.svg",
  61694. extra: 959/914,
  61695. bottom: 15/974
  61696. }
  61697. },
  61698. frontLewd: {
  61699. height: math.unit(2, "meters"),
  61700. weight: math.unit(95, "kg"),
  61701. name: "Front (Lewd)",
  61702. image: {
  61703. source: "./media/characters/kane-fox/front-lewd.svg",
  61704. extra: 945/888,
  61705. bottom: 27/972
  61706. }
  61707. },
  61708. },
  61709. [
  61710. {
  61711. name: "Home Size",
  61712. height: math.unit(2, "meters"),
  61713. default: true
  61714. },
  61715. {
  61716. name: "Macro",
  61717. height: math.unit(200, "meters")
  61718. },
  61719. {
  61720. name: "Small Mega",
  61721. height: math.unit(3, "km")
  61722. },
  61723. {
  61724. name: "Mega",
  61725. height: math.unit(50, "km")
  61726. },
  61727. {
  61728. name: "Giga",
  61729. height: math.unit(200, "km")
  61730. },
  61731. {
  61732. name: "Giga+",
  61733. height: math.unit(2500, "km")
  61734. },
  61735. {
  61736. name: "Terra",
  61737. height: math.unit(70000, "km")
  61738. },
  61739. {
  61740. name: "Terra+",
  61741. height: math.unit(150000, "km")
  61742. },
  61743. {
  61744. name: "Terra++",
  61745. height: math.unit(400000, "km")
  61746. },
  61747. ]
  61748. ))
  61749. characterMakers.push(() => makeCharacter(
  61750. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61751. {
  61752. otter_front: {
  61753. height: math.unit(1.8, "meters"),
  61754. weight: math.unit(90, "kg"),
  61755. name: "Front",
  61756. image: {
  61757. source: "./media/characters/ayranus/otter-front.svg",
  61758. extra: 468/452,
  61759. bottom: 43/511
  61760. },
  61761. form: "otter",
  61762. },
  61763. otter_frontLewd: {
  61764. height: math.unit(1.8, "meters"),
  61765. weight: math.unit(90, "kg"),
  61766. name: "Front (Lewd)",
  61767. image: {
  61768. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61769. extra: 468/452,
  61770. bottom: 43/511
  61771. },
  61772. form: "otter",
  61773. },
  61774. lionbat_front: {
  61775. height: math.unit(1.8, "meters"),
  61776. weight: math.unit(90, "kg"),
  61777. name: "Front (Lewd)",
  61778. image: {
  61779. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61780. extra: 797/740,
  61781. bottom: 78/875
  61782. },
  61783. form: "lionbat",
  61784. },
  61785. paw: {
  61786. height: math.unit(1.5, "feet"),
  61787. name: "Paw",
  61788. image: {
  61789. source: "./media/characters/ayranus/paw.svg"
  61790. },
  61791. },
  61792. },
  61793. [
  61794. {
  61795. name: "Incognito",
  61796. height: math.unit(1.8, "meters"),
  61797. allForms: true
  61798. },
  61799. {
  61800. name: "Macro",
  61801. height: math.unit(60, "meters"),
  61802. allForms: true
  61803. },
  61804. {
  61805. name: "Macro+",
  61806. height: math.unit(200, "meters"),
  61807. allForms: true
  61808. },
  61809. {
  61810. name: "Mega",
  61811. height: math.unit(35, "km"),
  61812. allForms: true
  61813. },
  61814. {
  61815. name: "Giga",
  61816. height: math.unit(220, "km"),
  61817. allForms: true
  61818. },
  61819. {
  61820. name: "Giga+",
  61821. height: math.unit(1500, "km"),
  61822. allForms: true
  61823. },
  61824. {
  61825. name: "Terra",
  61826. height: math.unit(13000, "km"),
  61827. allForms: true
  61828. },
  61829. {
  61830. name: "Terra+",
  61831. height: math.unit(500000, "km"),
  61832. allForms: true
  61833. },
  61834. {
  61835. name: "Galactic",
  61836. height: math.unit(486080, "parsecs"),
  61837. default: true,
  61838. allForms: true
  61839. },
  61840. ],
  61841. {
  61842. "otter": {
  61843. name: "Otter",
  61844. default: true
  61845. },
  61846. "lionbat": {
  61847. name: "Lionbat",
  61848. },
  61849. }
  61850. ))
  61851. characterMakers.push(() => makeCharacter(
  61852. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61853. {
  61854. front: {
  61855. height: math.unit(7 + 4/12, "feet"),
  61856. weight: math.unit(400, "lb"),
  61857. name: "Front",
  61858. image: {
  61859. source: "./media/characters/proxy/front.svg",
  61860. extra: 1605/1542,
  61861. bottom: 55/1660
  61862. }
  61863. },
  61864. side: {
  61865. height: math.unit(7 + 4/12, "feet"),
  61866. weight: math.unit(400, "lb"),
  61867. name: "Side",
  61868. image: {
  61869. source: "./media/characters/proxy/side.svg",
  61870. extra: 794/759,
  61871. bottom: 6/800
  61872. }
  61873. },
  61874. hand: {
  61875. height: math.unit(1.54, "feet"),
  61876. name: "Hand",
  61877. image: {
  61878. source: "./media/characters/proxy/hand.svg"
  61879. }
  61880. },
  61881. paw: {
  61882. height: math.unit(1.53, "feet"),
  61883. name: "Paw",
  61884. image: {
  61885. source: "./media/characters/proxy/paw.svg"
  61886. }
  61887. },
  61888. maw: {
  61889. height: math.unit(1.9, "feet"),
  61890. name: "Maw",
  61891. image: {
  61892. source: "./media/characters/proxy/maw.svg"
  61893. }
  61894. },
  61895. },
  61896. [
  61897. {
  61898. name: "Normal",
  61899. height: math.unit(7 + 4/12, "feet"),
  61900. default: true
  61901. },
  61902. ]
  61903. ))
  61904. characterMakers.push(() => makeCharacter(
  61905. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61906. {
  61907. front: {
  61908. height: math.unit(4, "meters"),
  61909. name: "Front",
  61910. image: {
  61911. source: "./media/characters/crocozilla/front.svg",
  61912. extra: 1790/1742,
  61913. bottom: 78/1868
  61914. }
  61915. },
  61916. },
  61917. [
  61918. {
  61919. name: "Normal",
  61920. height: math.unit(4, "meters"),
  61921. default: true
  61922. },
  61923. ]
  61924. ))
  61925. characterMakers.push(() => makeCharacter(
  61926. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61927. {
  61928. front: {
  61929. height: math.unit(1.8, "meters"),
  61930. weight: math.unit(120, "kg"),
  61931. name: "Front",
  61932. image: {
  61933. source: "./media/characters/kurz/front.svg",
  61934. extra: 1960/1824,
  61935. bottom: 41/2001
  61936. }
  61937. },
  61938. back: {
  61939. height: math.unit(1.8, "meters"),
  61940. weight: math.unit(120, "kg"),
  61941. name: "Back",
  61942. image: {
  61943. source: "./media/characters/kurz/back.svg",
  61944. extra: 1906/1787,
  61945. bottom: 60/1966
  61946. }
  61947. },
  61948. frontLewd: {
  61949. height: math.unit(1.8, "meters"),
  61950. weight: math.unit(120, "kg"),
  61951. name: "Front (Lewd)",
  61952. image: {
  61953. source: "./media/characters/kurz/front-lewd.svg",
  61954. extra: 1960/1824,
  61955. bottom: 41/2001
  61956. }
  61957. },
  61958. maw: {
  61959. height: math.unit(0.69, "meters"),
  61960. name: "Maw",
  61961. image: {
  61962. source: "./media/characters/kurz/maw.svg"
  61963. }
  61964. },
  61965. },
  61966. [
  61967. {
  61968. name: "Original Size",
  61969. height: math.unit(1.8, "meters")
  61970. },
  61971. {
  61972. name: "Incognito Size",
  61973. height: math.unit(2.4, "meters"),
  61974. default: true
  61975. },
  61976. {
  61977. name: "Macro",
  61978. height: math.unit(30, "meters")
  61979. },
  61980. {
  61981. name: "Macro+",
  61982. height: math.unit(250, "meters")
  61983. },
  61984. {
  61985. name: "Mega",
  61986. height: math.unit(2, "km")
  61987. },
  61988. {
  61989. name: "Mega+",
  61990. height: math.unit(35, "km")
  61991. },
  61992. {
  61993. name: "Mega++",
  61994. height: math.unit(75, "km")
  61995. },
  61996. {
  61997. name: "Giga",
  61998. height: math.unit(250, "km")
  61999. },
  62000. {
  62001. name: "Terra",
  62002. height: math.unit(15000, "km")
  62003. },
  62004. {
  62005. name: "Terra+",
  62006. height: math.unit(2250000, "km")
  62007. },
  62008. ]
  62009. ))
  62010. characterMakers.push(() => makeCharacter(
  62011. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  62012. {
  62013. front: {
  62014. height: math.unit(16 + 3/12, "feet"),
  62015. weight: math.unit(3575, "lb"),
  62016. name: "Front",
  62017. image: {
  62018. source: "./media/characters/nikita/front.svg",
  62019. extra: 1064/955,
  62020. bottom: 47/1111
  62021. }
  62022. },
  62023. },
  62024. [
  62025. {
  62026. name: "Normal",
  62027. height: math.unit(16 + 3/12, "feet"),
  62028. default: true
  62029. },
  62030. {
  62031. name: "Big",
  62032. height: math.unit(21, "feet")
  62033. },
  62034. {
  62035. name: "Biggest",
  62036. height: math.unit(50, "feet")
  62037. },
  62038. ]
  62039. ))
  62040. characterMakers.push(() => makeCharacter(
  62041. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  62042. {
  62043. front: {
  62044. height: math.unit(1.92, "m"),
  62045. weight: math.unit(76, "kg"),
  62046. name: "Front",
  62047. image: {
  62048. source: "./media/characters/kyara/front.svg",
  62049. extra: 1550/1438,
  62050. bottom: 139/1689
  62051. }
  62052. },
  62053. back: {
  62054. height: math.unit(1.92, "m"),
  62055. weight: math.unit(76, "kg"),
  62056. name: "Back",
  62057. image: {
  62058. source: "./media/characters/kyara/back.svg",
  62059. extra: 1523/1427,
  62060. bottom: 83/1606
  62061. }
  62062. },
  62063. head: {
  62064. height: math.unit(1.22, "feet"),
  62065. name: "Head",
  62066. image: {
  62067. source: "./media/characters/kyara/head.svg"
  62068. }
  62069. },
  62070. maw: {
  62071. height: math.unit(0.73, "feet"),
  62072. name: "Maw",
  62073. image: {
  62074. source: "./media/characters/kyara/maw.svg"
  62075. }
  62076. },
  62077. paws: {
  62078. height: math.unit(0.95, "feet"),
  62079. name: "Paws",
  62080. image: {
  62081. source: "./media/characters/kyara/paws.svg"
  62082. }
  62083. },
  62084. },
  62085. [
  62086. {
  62087. name: "Normal",
  62088. height: math.unit(1.92, "meters"),
  62089. default: true
  62090. },
  62091. {
  62092. name: "Mini Macro",
  62093. height: math.unit(192, "meters")
  62094. },
  62095. {
  62096. name: "Macro",
  62097. height: math.unit(480, "meters")
  62098. },
  62099. {
  62100. name: "Mega Macro",
  62101. height: math.unit(1440, "meters")
  62102. },
  62103. ]
  62104. ))
  62105. characterMakers.push(() => makeCharacter(
  62106. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  62107. {
  62108. front: {
  62109. height: math.unit(6, "feet"),
  62110. weight: math.unit(160, "lbs"),
  62111. preyCapacity: math.unit(0.05, "people"),
  62112. name: "Front",
  62113. image: {
  62114. source: "./media/characters/layla-amari/front.svg",
  62115. extra: 1922/1723,
  62116. bottom: 90/2012
  62117. }
  62118. },
  62119. back: {
  62120. height: math.unit(6, "feet"),
  62121. weight: math.unit(160, "lbs"),
  62122. preyCapacity: math.unit(0.05, "people"),
  62123. name: "Back",
  62124. image: {
  62125. source: "./media/characters/layla-amari/back.svg",
  62126. extra: 1917/1718,
  62127. bottom: 50/1967
  62128. }
  62129. },
  62130. frontDressed: {
  62131. height: math.unit(6, "feet"),
  62132. weight: math.unit(160, "lbs"),
  62133. preyCapacity: math.unit(0.05, "people"),
  62134. name: "Front (Dressed)",
  62135. image: {
  62136. source: "./media/characters/layla-amari/front-dressed.svg",
  62137. extra: 1922/1723,
  62138. bottom: 90/2012
  62139. }
  62140. },
  62141. face: {
  62142. height: math.unit(0.93, "feet"),
  62143. name: "Face",
  62144. image: {
  62145. source: "./media/characters/layla-amari/face.svg"
  62146. }
  62147. },
  62148. hand: {
  62149. height: math.unit(0.66 , "feet"),
  62150. name: "Hand",
  62151. image: {
  62152. source: "./media/characters/layla-amari/hand.svg"
  62153. }
  62154. },
  62155. foot: {
  62156. height: math.unit(1, "feet"),
  62157. name: "Foot",
  62158. image: {
  62159. source: "./media/characters/layla-amari/foot.svg"
  62160. }
  62161. },
  62162. necklace: {
  62163. height: math.unit(0.32, "feet"),
  62164. name: "Necklace",
  62165. image: {
  62166. source: "./media/characters/layla-amari/necklace.svg"
  62167. }
  62168. },
  62169. nipple: {
  62170. height: math.unit(0.2, "feet"),
  62171. name: "Nipple",
  62172. image: {
  62173. source: "./media/characters/layla-amari/nipple.svg"
  62174. }
  62175. },
  62176. slit: {
  62177. height: math.unit(0.26, "feet"),
  62178. name: "Slit",
  62179. image: {
  62180. source: "./media/characters/layla-amari/slit.svg"
  62181. }
  62182. },
  62183. },
  62184. [
  62185. {
  62186. name: "Natural",
  62187. height: math.unit(825, "feet"),
  62188. default: true
  62189. },
  62190. {
  62191. name: "Enhanced",
  62192. height: math.unit(8250, "feet")
  62193. },
  62194. {
  62195. name: "Apparent Size",
  62196. height: math.unit(9.04363e+8, "meters")
  62197. },
  62198. ]
  62199. ))
  62200. characterMakers.push(() => makeCharacter(
  62201. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62202. {
  62203. front: {
  62204. height: math.unit(1.3, "meters"),
  62205. name: "Front",
  62206. image: {
  62207. source: "./media/characters/percy/front.svg",
  62208. extra: 1444/1289,
  62209. bottom: 54/1498
  62210. }
  62211. },
  62212. },
  62213. [
  62214. {
  62215. name: "Normal",
  62216. height: math.unit(1.3, "meters"),
  62217. default: true
  62218. },
  62219. ]
  62220. ))
  62221. characterMakers.push(() => makeCharacter(
  62222. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62223. {
  62224. side: {
  62225. height: math.unit(10, "meters"),
  62226. name: "Side",
  62227. image: {
  62228. source: "./media/characters/grev/side.svg",
  62229. extra: 653/266,
  62230. bottom: 77/730
  62231. }
  62232. },
  62233. head: {
  62234. height: math.unit(16.2, "m"),
  62235. name: "Head",
  62236. image: {
  62237. source: "./media/characters/grev/head.svg"
  62238. }
  62239. },
  62240. dick: {
  62241. height: math.unit(2.8135932034, "m"),
  62242. name: "Dick",
  62243. image: {
  62244. source: "./media/characters/grev/dick.svg"
  62245. }
  62246. },
  62247. },
  62248. [
  62249. {
  62250. name: "Friend-Sized",
  62251. height: math.unit(80, "cm")
  62252. },
  62253. {
  62254. name: "Normal",
  62255. height: math.unit(10, "meters"),
  62256. default: true
  62257. },
  62258. {
  62259. name: "Macro",
  62260. height: math.unit(200, "meters")
  62261. },
  62262. ]
  62263. ))
  62264. characterMakers.push(() => makeCharacter(
  62265. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62266. {
  62267. front: {
  62268. height: math.unit(19.75, "feet"),
  62269. weight: math.unit(20000, "lb"),
  62270. name: "Front",
  62271. image: {
  62272. source: "./media/characters/azuuca/front.svg",
  62273. extra: 1593/1511,
  62274. bottom: 55/1648
  62275. }
  62276. },
  62277. },
  62278. [
  62279. {
  62280. name: "Normal",
  62281. height: math.unit(19.75, "feet"),
  62282. default: true
  62283. },
  62284. ]
  62285. ))
  62286. characterMakers.push(() => makeCharacter(
  62287. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62288. {
  62289. front: {
  62290. height: math.unit(15, "feet"),
  62291. weight: math.unit(1500, "lb"),
  62292. name: "Front",
  62293. image: {
  62294. source: "./media/characters/valuria/front.svg",
  62295. extra: 1588/1486,
  62296. bottom: 31/1619
  62297. }
  62298. },
  62299. },
  62300. [
  62301. {
  62302. name: "Normal",
  62303. height: math.unit(15, "feet"),
  62304. default: true
  62305. },
  62306. {
  62307. name: "Small",
  62308. height: math.unit(500, "feet")
  62309. },
  62310. {
  62311. name: "Macro",
  62312. height: math.unit(4000, "feet")
  62313. },
  62314. {
  62315. name: "Mega Macro",
  62316. height: math.unit(2000, "miles")
  62317. },
  62318. {
  62319. name: "Giga Macro",
  62320. height: math.unit(3e6, "miles")
  62321. },
  62322. ]
  62323. ))
  62324. characterMakers.push(() => makeCharacter(
  62325. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62326. {
  62327. front: {
  62328. height: math.unit(3500, "solarradii"),
  62329. name: "Front",
  62330. image: {
  62331. source: "./media/characters/terigaia/front.svg",
  62332. extra: 1531/1451,
  62333. bottom: 98/1629
  62334. }
  62335. },
  62336. },
  62337. [
  62338. {
  62339. name: "Normal",
  62340. height: math.unit(3500, "solarradii"),
  62341. default: true
  62342. },
  62343. ]
  62344. ))
  62345. characterMakers.push(() => makeCharacter(
  62346. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62347. {
  62348. front: {
  62349. height: math.unit(9.34, "feet"),
  62350. weight: math.unit(600, "lb"),
  62351. name: "Front",
  62352. image: {
  62353. source: "./media/characters/blair-blaziken/front.svg",
  62354. extra: 1557/1462,
  62355. bottom: 55/1612
  62356. }
  62357. },
  62358. },
  62359. [
  62360. {
  62361. name: "Normal",
  62362. height: math.unit(9.34, "feet"),
  62363. default: true
  62364. },
  62365. ]
  62366. ))
  62367. characterMakers.push(() => makeCharacter(
  62368. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62369. {
  62370. pistrogre_front: {
  62371. height: math.unit(10, "feet"),
  62372. weight: math.unit(10, "tons"),
  62373. name: "Front",
  62374. image: {
  62375. source: "./media/characters/braxia/pistrogre-front.svg",
  62376. extra: 1531/1334,
  62377. bottom: 114/1645
  62378. },
  62379. form: "pistrogre",
  62380. default: true
  62381. },
  62382. human_front: {
  62383. height: math.unit(10, "feet"),
  62384. weight: math.unit(10, "tons"),
  62385. name: "Front",
  62386. image: {
  62387. source: "./media/characters/braxia/human-front.svg",
  62388. extra: 1574/1501,
  62389. bottom: 37/1611
  62390. },
  62391. form: "human",
  62392. default: true
  62393. },
  62394. },
  62395. [
  62396. {
  62397. name: "Normal",
  62398. height: math.unit(10, "feet"),
  62399. default: true,
  62400. allForms: true
  62401. },
  62402. {
  62403. name: "Macro",
  62404. height: math.unit(1000, "feet"),
  62405. allForms: true
  62406. },
  62407. {
  62408. name: "Mega Macro",
  62409. height: math.unit(100, "miles"),
  62410. allForms: true
  62411. },
  62412. {
  62413. name: "Cosmic",
  62414. height: math.unit(1000000, "lightyears"),
  62415. allForms: true
  62416. },
  62417. {
  62418. name: "ϐѮԆԬӁꭍϞԢ",
  62419. height: math.unit(1000, "multiverses"),
  62420. allForms: true
  62421. },
  62422. ],
  62423. {
  62424. "pistrogre": {
  62425. name: "Pistrogre",
  62426. default: true
  62427. },
  62428. "human": {
  62429. name: "Human",
  62430. },
  62431. }
  62432. ))
  62433. characterMakers.push(() => makeCharacter(
  62434. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62435. {
  62436. front: {
  62437. height: math.unit(6 + 1/12, "feet"),
  62438. weight: math.unit(280, "lb"),
  62439. name: "Front",
  62440. image: {
  62441. source: "./media/characters/kiriga-yato/front.svg",
  62442. extra: 445/394,
  62443. bottom: 11/456
  62444. }
  62445. },
  62446. },
  62447. [
  62448. {
  62449. name: "Descended",
  62450. height: math.unit(3, "feet")
  62451. },
  62452. {
  62453. name: "Average",
  62454. height: math.unit(6 + 1/12, "feet"),
  62455. default: true
  62456. },
  62457. {
  62458. name: "Ascended",
  62459. height: math.unit(9 + 2/12, "feet")
  62460. },
  62461. ]
  62462. ))
  62463. characterMakers.push(() => makeCharacter(
  62464. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62465. {
  62466. front: {
  62467. height: math.unit(6, "feet"),
  62468. weight: math.unit(150, "lb"),
  62469. name: "Front",
  62470. image: {
  62471. source: "./media/characters/kylie/front.svg",
  62472. extra: 1114/1046,
  62473. bottom: 65/1179
  62474. },
  62475. extraAttributes: {
  62476. "hoofSize": {
  62477. name: "Hoof Size",
  62478. power: 2,
  62479. type: "area",
  62480. base: math.unit(0.034, "m^2")
  62481. },
  62482. "footSize": {
  62483. name: "Foot Size",
  62484. power: 2,
  62485. type: "area",
  62486. base: math.unit(0.75, "m^2")
  62487. },
  62488. }
  62489. },
  62490. side: {
  62491. height: math.unit(6, "feet"),
  62492. weight: math.unit(150, "lb"),
  62493. name: "Side",
  62494. image: {
  62495. source: "./media/characters/kylie/side.svg",
  62496. extra: 1178/1110,
  62497. bottom: 21/1199
  62498. },
  62499. extraAttributes: {
  62500. "hoofSize": {
  62501. name: "Hoof Size",
  62502. power: 2,
  62503. type: "area",
  62504. base: math.unit(0.034, "m^2")
  62505. },
  62506. "footSize": {
  62507. name: "Foot Size",
  62508. power: 2,
  62509. type: "area",
  62510. base: math.unit(0.75, "m^2")
  62511. },
  62512. }
  62513. },
  62514. back: {
  62515. height: math.unit(6, "feet"),
  62516. weight: math.unit(150, "lb"),
  62517. name: "Back",
  62518. image: {
  62519. source: "./media/characters/kylie/back.svg",
  62520. extra: 1115/1047,
  62521. bottom: 66/1181
  62522. },
  62523. extraAttributes: {
  62524. "hoofSize": {
  62525. name: "Hoof Size",
  62526. power: 2,
  62527. type: "area",
  62528. base: math.unit(0.034, "m^2")
  62529. },
  62530. "footSize": {
  62531. name: "Foot Size",
  62532. power: 2,
  62533. type: "area",
  62534. base: math.unit(0.75, "m^2")
  62535. },
  62536. }
  62537. },
  62538. head: {
  62539. height: math.unit(1.85, "feet"),
  62540. name: "Head",
  62541. image: {
  62542. source: "./media/characters/kylie/head.svg"
  62543. }
  62544. },
  62545. },
  62546. [
  62547. {
  62548. name: "Normal",
  62549. height: math.unit(90, "meters"),
  62550. default: true
  62551. },
  62552. ]
  62553. ))
  62554. characterMakers.push(() => makeCharacter(
  62555. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62556. {
  62557. front: {
  62558. height: math.unit(245, "feet"),
  62559. weight: math.unit(400000, "lb"),
  62560. name: "Front",
  62561. image: {
  62562. source: "./media/characters/sabado/front.svg",
  62563. extra: 1309/1164,
  62564. bottom: 29/1338
  62565. }
  62566. },
  62567. },
  62568. [
  62569. {
  62570. name: "Normal",
  62571. height: math.unit(245, "feet"),
  62572. default: true
  62573. },
  62574. ]
  62575. ))
  62576. characterMakers.push(() => makeCharacter(
  62577. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62578. {
  62579. shark_front: {
  62580. height: math.unit(2, "meters"),
  62581. weight: math.unit(200, "kg"),
  62582. name: "Front",
  62583. image: {
  62584. source: "./media/characters/zechal/shark-front.svg",
  62585. extra: 969/925,
  62586. bottom: 74/1043
  62587. },
  62588. form: "shark",
  62589. },
  62590. shark_back: {
  62591. height: math.unit(2, "meters"),
  62592. weight: math.unit(200, "kg"),
  62593. name: "Back",
  62594. image: {
  62595. source: "./media/characters/zechal/shark-back.svg",
  62596. extra: 994/949,
  62597. bottom: 176/1170
  62598. },
  62599. form: "shark",
  62600. },
  62601. shark_frontLewd: {
  62602. height: math.unit(2, "meters"),
  62603. weight: math.unit(200, "kg"),
  62604. name: "Front (Lewd)",
  62605. image: {
  62606. source: "./media/characters/zechal/shark-front-lewd.svg",
  62607. extra: 969/925,
  62608. bottom: 74/1043
  62609. },
  62610. form: "shark",
  62611. },
  62612. shark_side: {
  62613. height: math.unit(1.56, "meters"),
  62614. weight: math.unit(200, "kg"),
  62615. name: "Side",
  62616. image: {
  62617. source: "./media/characters/zechal/shark-side.svg"
  62618. },
  62619. form: "shark",
  62620. },
  62621. dragon_front: {
  62622. height: math.unit(2, "meters"),
  62623. weight: math.unit(200, "kg"),
  62624. name: "Front",
  62625. image: {
  62626. source: "./media/characters/zechal/dragon-front.svg",
  62627. extra: 1041/925,
  62628. bottom: 74/1115
  62629. },
  62630. form: "dragon",
  62631. },
  62632. dragon_back: {
  62633. height: math.unit(2, "meters"),
  62634. weight: math.unit(200, "kg"),
  62635. name: "Back",
  62636. image: {
  62637. source: "./media/characters/zechal/dragon-back.svg",
  62638. extra: 1061/949,
  62639. bottom: 176/1237
  62640. },
  62641. form: "dragon",
  62642. },
  62643. dragon_frontLewd: {
  62644. height: math.unit(2, "meters"),
  62645. weight: math.unit(200, "kg"),
  62646. name: "Front (Lewd)",
  62647. image: {
  62648. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62649. extra: 1041/925,
  62650. bottom: 74/1115
  62651. },
  62652. form: "dragon",
  62653. },
  62654. dragon_side: {
  62655. height: math.unit(1.56, "meters"),
  62656. weight: math.unit(200, "kg"),
  62657. name: "Side",
  62658. image: {
  62659. source: "./media/characters/zechal/dragon-side.svg"
  62660. },
  62661. form: "dragon",
  62662. },
  62663. foot: {
  62664. height: math.unit(0.5, "meters"),
  62665. name: "Foot",
  62666. image: {
  62667. source: "./media/characters/zechal/foot.svg"
  62668. }
  62669. },
  62670. sheathFront: {
  62671. height: math.unit(0.45, "meters"),
  62672. name: "Sheath (Front)",
  62673. image: {
  62674. source: "./media/characters/zechal/sheath-front.svg"
  62675. }
  62676. },
  62677. sheathSide: {
  62678. height: math.unit(0.45, "meters"),
  62679. name: "Sheath (Side)",
  62680. image: {
  62681. source: "./media/characters/zechal/sheath-side.svg"
  62682. }
  62683. },
  62684. },
  62685. [
  62686. {
  62687. name: "Incognito",
  62688. height: math.unit(2, "meters"),
  62689. allForms: true
  62690. },
  62691. {
  62692. name: "Small Rampage",
  62693. height: math.unit(25, "meters"),
  62694. allForms: true
  62695. },
  62696. {
  62697. name: "Home Size",
  62698. height: math.unit(250, "meters"),
  62699. allForms: true,
  62700. default: true
  62701. },
  62702. {
  62703. name: "Macro+",
  62704. height: math.unit(700, "meters"),
  62705. allForms: true
  62706. },
  62707. {
  62708. name: "Small Mega",
  62709. height: math.unit(3, "km"),
  62710. allForms: true
  62711. },
  62712. {
  62713. name: "Mega",
  62714. height: math.unit(15, "km"),
  62715. allForms: true
  62716. },
  62717. {
  62718. name: "Giga",
  62719. height: math.unit(300, "km"),
  62720. allForms: true
  62721. },
  62722. {
  62723. name: "Giga+",
  62724. height: math.unit(1750, "km"),
  62725. allForms: true
  62726. },
  62727. {
  62728. name: "Continental",
  62729. height: math.unit(5000, "km"),
  62730. allForms: true
  62731. },
  62732. {
  62733. name: "Terra",
  62734. height: math.unit(20000, "km"),
  62735. allForms: true
  62736. },
  62737. {
  62738. name: "Terra+",
  62739. height: math.unit(300000, "km"),
  62740. allForms: true
  62741. },
  62742. {
  62743. name: "Solar",
  62744. height: math.unit(40000000, "km"),
  62745. allForms: true
  62746. },
  62747. {
  62748. name: "Galactic",
  62749. height: math.unit(810133, "parsecs"),
  62750. allForms: true
  62751. },
  62752. {
  62753. name: "Universal",
  62754. height: math.unit(25, "universes"),
  62755. allForms: true
  62756. },
  62757. ],
  62758. {
  62759. "shark": {
  62760. name: "Shark",
  62761. default: true
  62762. },
  62763. "dragon": {
  62764. name: "Dragon",
  62765. },
  62766. }
  62767. ))
  62768. characterMakers.push(() => makeCharacter(
  62769. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62770. {
  62771. front: {
  62772. height: math.unit(2.2, "meters"),
  62773. weight: math.unit(150, "kg"),
  62774. name: "Front",
  62775. image: {
  62776. source: "./media/characters/sergis/front.svg",
  62777. extra: 1314/1312,
  62778. bottom: 112/1426
  62779. }
  62780. },
  62781. back: {
  62782. height: math.unit(2.2, "meters"),
  62783. weight: math.unit(150, "kg"),
  62784. name: "Back",
  62785. image: {
  62786. source: "./media/characters/sergis/back.svg",
  62787. extra: 1335/1333,
  62788. bottom: 19/1354
  62789. }
  62790. },
  62791. frontLewd: {
  62792. height: math.unit(2.2, "meters"),
  62793. weight: math.unit(150, "kg"),
  62794. name: "Front (Lewd)",
  62795. image: {
  62796. source: "./media/characters/sergis/front-lewd.svg",
  62797. extra: 1314/1312,
  62798. bottom: 112/1426
  62799. }
  62800. },
  62801. frontDressed: {
  62802. height: math.unit(2.2, "meters"),
  62803. weight: math.unit(150, "kg"),
  62804. name: "Front (Dressed)",
  62805. image: {
  62806. source: "./media/characters/sergis/front-dressed.svg",
  62807. extra: 1330/1328,
  62808. bottom: 95/1425
  62809. }
  62810. },
  62811. frontDressedLewd: {
  62812. height: math.unit(2.2, "meters"),
  62813. weight: math.unit(150, "kg"),
  62814. name: "Front (Dressed, Lewd)",
  62815. image: {
  62816. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62817. extra: 1330/1328,
  62818. bottom: 95/1425
  62819. }
  62820. },
  62821. maw: {
  62822. height: math.unit(0.48, "meters"),
  62823. name: "Maw",
  62824. image: {
  62825. source: "./media/characters/sergis/maw.svg"
  62826. }
  62827. },
  62828. sheath: {
  62829. height: math.unit(0.38, "meters"),
  62830. name: "Sheath",
  62831. image: {
  62832. source: "./media/characters/sergis/sheath.svg"
  62833. }
  62834. },
  62835. },
  62836. [
  62837. {
  62838. name: "Incognito Size",
  62839. height: math.unit(2.2, "meters")
  62840. },
  62841. {
  62842. name: "Small Macro",
  62843. height: math.unit(40, "meters")
  62844. },
  62845. {
  62846. name: "Macro",
  62847. height: math.unit(150, "meters")
  62848. },
  62849. {
  62850. name: "Macro+",
  62851. height: math.unit(300, "meters")
  62852. },
  62853. {
  62854. name: "Mega",
  62855. height: math.unit(2.5, "km")
  62856. },
  62857. {
  62858. name: "Mega+",
  62859. height: math.unit(30, "km")
  62860. },
  62861. {
  62862. name: "Home Size",
  62863. height: math.unit(300, "km"),
  62864. default: true
  62865. },
  62866. {
  62867. name: "Giga+",
  62868. height: math.unit(1000, "km")
  62869. },
  62870. {
  62871. name: "Giga++",
  62872. height: math.unit(6000, "km")
  62873. },
  62874. {
  62875. name: "Terra",
  62876. height: math.unit(70000, "km")
  62877. },
  62878. {
  62879. name: "Terra+",
  62880. height: math.unit(200000, "km")
  62881. },
  62882. {
  62883. name: "Galactic",
  62884. height: math.unit(634200, "lightyears")
  62885. },
  62886. ]
  62887. ))
  62888. characterMakers.push(() => makeCharacter(
  62889. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62890. {
  62891. standard: {
  62892. height: math.unit(1 + 5/12, "feet"),
  62893. name: "Standard",
  62894. image: {
  62895. source: "./media/characters/spade/standard.svg",
  62896. extra: 1794/1703,
  62897. bottom: 115/1909
  62898. }
  62899. },
  62900. disguised: {
  62901. height: math.unit(1 + 5/12, "feet"),
  62902. name: "Disguised",
  62903. image: {
  62904. source: "./media/characters/spade/disguised.svg",
  62905. extra: 1794/1700,
  62906. bottom: 98/1892
  62907. }
  62908. },
  62909. },
  62910. [
  62911. {
  62912. name: "Normal",
  62913. height: math.unit(1 + 5/12, "feet"),
  62914. default: true
  62915. },
  62916. ]
  62917. ))
  62918. characterMakers.push(() => makeCharacter(
  62919. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62920. {
  62921. frontNsfw: {
  62922. height: math.unit(5, "meters"),
  62923. weight: math.unit(2000, "kg"),
  62924. preyCapacity: math.unit(5, "people"),
  62925. name: "Front (NSFW)",
  62926. image: {
  62927. source: "./media/characters/zeanlain/front-nsfw.svg",
  62928. extra: 1087/938,
  62929. bottom: 93/1180
  62930. },
  62931. extraAttributes: {
  62932. "wingspan": {
  62933. name: "Wingspan",
  62934. power: 1,
  62935. type: "length",
  62936. base: math.unit(10, "meters")
  62937. },
  62938. "footSize": {
  62939. name: "Foot Size",
  62940. power: 1,
  62941. type: "length",
  62942. base: math.unit(0.68, "meters")
  62943. },
  62944. "cockLength": {
  62945. name: "Cock Length",
  62946. power: 1,
  62947. type: "length",
  62948. base: math.unit(1.69, "meters")
  62949. },
  62950. "ballVolume": {
  62951. name: "Ball Volume",
  62952. power: 3,
  62953. type: "volume",
  62954. base: math.unit(0.028, "m^3")
  62955. },
  62956. }
  62957. },
  62958. front: {
  62959. height: math.unit(5, "meters"),
  62960. weight: math.unit(2000, "kg"),
  62961. preyCapacity: math.unit(3, "people"),
  62962. name: "Front",
  62963. image: {
  62964. source: "./media/characters/zeanlain/front.svg",
  62965. extra: 1087/938,
  62966. bottom: 93/1180
  62967. },
  62968. extraAttributes: {
  62969. "wingspan": {
  62970. name: "Wingspan",
  62971. power: 1,
  62972. type: "length",
  62973. base: math.unit(10, "meters")
  62974. },
  62975. "footSize": {
  62976. name: "Foot Size",
  62977. power: 1,
  62978. type: "length",
  62979. base: math.unit(0.68, "meters")
  62980. },
  62981. }
  62982. },
  62983. dick: {
  62984. height: math.unit(5.15, "feet"),
  62985. name: "Dick",
  62986. image: {
  62987. source: "./media/characters/zeanlain/dick.svg"
  62988. }
  62989. },
  62990. },
  62991. [
  62992. {
  62993. name: "Normal",
  62994. height: math.unit(5, "meters"),
  62995. default: true
  62996. },
  62997. ]
  62998. ))
  62999. characterMakers.push(() => makeCharacter(
  63000. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  63001. {
  63002. front: {
  63003. height: math.unit(10, "meters"),
  63004. weight: math.unit(250000, "kg"),
  63005. name: "Front",
  63006. image: {
  63007. source: "./media/characters/airamis/front.svg",
  63008. extra: 865/835,
  63009. bottom: 13/878
  63010. }
  63011. },
  63012. },
  63013. [
  63014. {
  63015. name: "Normal",
  63016. height: math.unit(10, "meters"),
  63017. default: true
  63018. },
  63019. ]
  63020. ))
  63021. characterMakers.push(() => makeCharacter(
  63022. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  63023. {
  63024. front: {
  63025. height: math.unit(3 + 3/12, "feet"),
  63026. weight: math.unit(75, "lb"),
  63027. name: "Front",
  63028. image: {
  63029. source: "./media/characters/corra-tourmaline/front.svg",
  63030. extra: 1037/864,
  63031. bottom: 39/1076
  63032. }
  63033. },
  63034. back: {
  63035. height: math.unit(3 + 3/12, "feet"),
  63036. weight: math.unit(75, "lb"),
  63037. name: "Back",
  63038. image: {
  63039. source: "./media/characters/corra-tourmaline/back.svg",
  63040. extra: 1022/849,
  63041. bottom: 26/1048
  63042. }
  63043. },
  63044. dressed: {
  63045. height: math.unit(3 + 3/12, "feet"),
  63046. weight: math.unit(75, "lb"),
  63047. name: "Dressed",
  63048. image: {
  63049. source: "./media/characters/corra-tourmaline/dressed.svg",
  63050. extra: 1037/864,
  63051. bottom: 39/1076
  63052. }
  63053. },
  63054. beans: {
  63055. height: math.unit(0.37, "feet"),
  63056. name: "Beans",
  63057. image: {
  63058. source: "./media/characters/corra-tourmaline/beans.svg"
  63059. }
  63060. },
  63061. },
  63062. [
  63063. {
  63064. name: "Normal",
  63065. height: math.unit(3 + 3/12, "feet"),
  63066. default: true
  63067. },
  63068. {
  63069. name: "Macro",
  63070. height: math.unit(32, "feet")
  63071. },
  63072. ]
  63073. ))
  63074. characterMakers.push(() => makeCharacter(
  63075. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  63076. {
  63077. front: {
  63078. height: math.unit(6 + 2/12, "feet"),
  63079. weight: math.unit(203, "lb"),
  63080. name: "Front",
  63081. image: {
  63082. source: "./media/characters/maki-kawa/front.svg",
  63083. extra: 950/890,
  63084. bottom: 62/1012
  63085. }
  63086. },
  63087. back: {
  63088. height: math.unit(6 + 2/12, "feet"),
  63089. weight: math.unit(203, "lb"),
  63090. name: "Back",
  63091. image: {
  63092. source: "./media/characters/maki-kawa/back.svg",
  63093. extra: 953/878,
  63094. bottom: 49/1002
  63095. }
  63096. },
  63097. frontBarista: {
  63098. height: math.unit(6 + 2/12, "feet"),
  63099. weight: math.unit(203, "lb"),
  63100. name: "Front (Barista)",
  63101. image: {
  63102. source: "./media/characters/maki-kawa/front-barista.svg",
  63103. extra: 943/883,
  63104. bottom: 69/1012
  63105. }
  63106. },
  63107. backBarista: {
  63108. height: math.unit(6 + 2/12, "feet"),
  63109. weight: math.unit(203, "lb"),
  63110. name: "Back (Barista)",
  63111. image: {
  63112. source: "./media/characters/maki-kawa/back-barista.svg",
  63113. extra: 953/878,
  63114. bottom: 49/1002
  63115. }
  63116. },
  63117. frontWrestler: {
  63118. height: math.unit(6 + 2/12, "feet"),
  63119. weight: math.unit(203, "lb"),
  63120. name: "Front (Wrestler)",
  63121. image: {
  63122. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63123. extra: 950/890,
  63124. bottom: 62/1012
  63125. }
  63126. },
  63127. backWrestler: {
  63128. height: math.unit(6 + 2/12, "feet"),
  63129. weight: math.unit(203, "lb"),
  63130. name: "Back (Wrestler)",
  63131. image: {
  63132. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63133. extra: 953/878,
  63134. bottom: 49/1002
  63135. }
  63136. },
  63137. headFront: {
  63138. height: math.unit(1.64, "feet"),
  63139. name: "Head (Front)",
  63140. image: {
  63141. source: "./media/characters/maki-kawa/head-front.svg"
  63142. }
  63143. },
  63144. headSide: {
  63145. height: math.unit(1.59, "feet"),
  63146. name: "Head (Side)",
  63147. image: {
  63148. source: "./media/characters/maki-kawa/head-side.svg"
  63149. }
  63150. },
  63151. paw: {
  63152. height: math.unit(0.9, "feet"),
  63153. name: "Paw",
  63154. image: {
  63155. source: "./media/characters/maki-kawa/paw.svg"
  63156. }
  63157. },
  63158. },
  63159. [
  63160. {
  63161. name: "Normal",
  63162. height: math.unit(6 + 2/12, "feet"),
  63163. default: true
  63164. },
  63165. {
  63166. name: "Macro",
  63167. height: math.unit(617, "feet")
  63168. },
  63169. ]
  63170. ))
  63171. characterMakers.push(() => makeCharacter(
  63172. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63173. {
  63174. frontNsfw: {
  63175. height: math.unit(10, "feet"),
  63176. weight: math.unit(1500, "lb"),
  63177. name: "Front (NSFW)",
  63178. image: {
  63179. source: "./media/characters/lennox/front-nsfw.svg",
  63180. extra: 1623/1496,
  63181. bottom: 18/1641
  63182. },
  63183. extraAttributes: {
  63184. "cumVolume": {
  63185. name: "Cum Volume",
  63186. power: 3,
  63187. type: "volume",
  63188. base: math.unit(75, "liters")
  63189. },
  63190. }
  63191. },
  63192. backNsfw: {
  63193. height: math.unit(10, "feet"),
  63194. weight: math.unit(1500, "lb"),
  63195. name: "Back (NSFW)",
  63196. image: {
  63197. source: "./media/characters/lennox/back-nsfw.svg",
  63198. extra: 1641/1481,
  63199. bottom: 13/1654
  63200. },
  63201. extraAttributes: {
  63202. "cumVolume": {
  63203. name: "Cum Volume",
  63204. power: 3,
  63205. type: "volume",
  63206. base: math.unit(75, "liters")
  63207. },
  63208. }
  63209. },
  63210. frontSfw: {
  63211. height: math.unit(10, "feet"),
  63212. weight: math.unit(1500, "lb"),
  63213. name: "Front (SFW)",
  63214. image: {
  63215. source: "./media/characters/lennox/front-sfw.svg",
  63216. extra: 1623/1496,
  63217. bottom: 18/1641
  63218. }
  63219. },
  63220. backSfw: {
  63221. height: math.unit(10, "feet"),
  63222. weight: math.unit(1500, "lb"),
  63223. name: "Back (SFW)",
  63224. image: {
  63225. source: "./media/characters/lennox/back-sfw.svg",
  63226. extra: 1641/1481,
  63227. bottom: 13/1654
  63228. }
  63229. },
  63230. maw: {
  63231. height: math.unit(2.94, "feet"),
  63232. name: "Maw",
  63233. image: {
  63234. source: "./media/characters/lennox/maw.svg"
  63235. }
  63236. },
  63237. dick: {
  63238. height: math.unit(0.8323, "meters"),
  63239. weight: math.unit(0.07315728637*1000, "kg"),
  63240. name: "Dick",
  63241. image: {
  63242. source: "./media/characters/lennox/dick.svg"
  63243. },
  63244. extraAttributes: {
  63245. "thickness": {
  63246. name: "Thickness",
  63247. power: 1,
  63248. type: "length",
  63249. base: math.unit(0.330, "meters")
  63250. },
  63251. "length": {
  63252. name: "Length",
  63253. power: 1,
  63254. type: "length",
  63255. base: math.unit(0.8, "meters")
  63256. },
  63257. "cumVolume": {
  63258. name: "Cum Volume",
  63259. power: 3,
  63260. type: "volume",
  63261. base: math.unit(75, "liters")
  63262. },
  63263. }
  63264. },
  63265. },
  63266. [
  63267. {
  63268. name: "Micro",
  63269. height: math.unit(1, "inch")
  63270. },
  63271. {
  63272. name: "Normal",
  63273. height: math.unit(10, "feet"),
  63274. default: true
  63275. },
  63276. {
  63277. name: "Macro",
  63278. height: math.unit(200, "feet")
  63279. },
  63280. ]
  63281. ))
  63282. characterMakers.push(() => makeCharacter(
  63283. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63284. {
  63285. frontDressed: {
  63286. height: math.unit(15 + 7/12, "feet"),
  63287. weight: math.unit(5000, "lb"),
  63288. name: "Front (Dressed)",
  63289. image: {
  63290. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63291. extra: 1136/1023,
  63292. bottom: 51/1187
  63293. }
  63294. },
  63295. backDressed: {
  63296. height: math.unit(15 + 7/12, "feet"),
  63297. weight: math.unit(5000, "lb"),
  63298. name: "Back (Dressed)",
  63299. image: {
  63300. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63301. extra: 2359/2143,
  63302. bottom: 103/2462
  63303. }
  63304. },
  63305. front: {
  63306. height: math.unit(15 + 7/12, "feet"),
  63307. weight: math.unit(5000, "lb"),
  63308. name: "Front",
  63309. image: {
  63310. source: "./media/characters/vyse-iron-thunder/front.svg",
  63311. extra: 1136/1023,
  63312. bottom: 51/1187
  63313. }
  63314. },
  63315. hand: {
  63316. height: math.unit(2.36, "feet"),
  63317. name: "Hand",
  63318. image: {
  63319. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63320. }
  63321. },
  63322. foot: {
  63323. height: math.unit(1.72, "feet"),
  63324. name: "Foot",
  63325. image: {
  63326. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63327. }
  63328. },
  63329. mouth: {
  63330. height: math.unit(2, "feet"),
  63331. name: "Mouth",
  63332. image: {
  63333. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63334. }
  63335. },
  63336. eye: {
  63337. height: math.unit(0.58, "feet"),
  63338. name: "Eye",
  63339. image: {
  63340. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63341. }
  63342. },
  63343. },
  63344. [
  63345. {
  63346. name: "Normal",
  63347. height: math.unit(15 + 7/12, "feet"),
  63348. default: true
  63349. },
  63350. {
  63351. name: "Macro",
  63352. height: math.unit(157, "feet")
  63353. },
  63354. {
  63355. name: "Macro+",
  63356. height: math.unit(1570, "feet")
  63357. },
  63358. {
  63359. name: "Macro++",
  63360. height: math.unit(15700, "feet")
  63361. },
  63362. {
  63363. name: "Macro+++",
  63364. height: math.unit(157000, "feet")
  63365. },
  63366. {
  63367. name: "Macro++++",
  63368. height: math.unit(1570000, "feet")
  63369. },
  63370. ]
  63371. ))
  63372. characterMakers.push(() => makeCharacter(
  63373. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63374. {
  63375. side: {
  63376. height: math.unit(6, "feet"),
  63377. weight: math.unit(115, "lb"),
  63378. name: "Side",
  63379. image: {
  63380. source: "./media/characters/moonbeam/side.svg",
  63381. extra: 839/485,
  63382. bottom: 60/899
  63383. }
  63384. },
  63385. },
  63386. [
  63387. {
  63388. name: "Normal",
  63389. height: math.unit(6, "feet"),
  63390. default: true
  63391. },
  63392. ]
  63393. ))
  63394. characterMakers.push(() => makeCharacter(
  63395. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63396. {
  63397. front: {
  63398. height: math.unit(3500, "miles"),
  63399. weight: math.unit(1659, "petatonnes"),
  63400. name: "Front",
  63401. image: {
  63402. source: "./media/characters/baltica/front.svg",
  63403. extra: 429/428,
  63404. bottom: 41/470
  63405. }
  63406. },
  63407. back: {
  63408. height: math.unit(3500, "miles"),
  63409. weight: math.unit(1659, "petatonnes"),
  63410. name: "Back",
  63411. image: {
  63412. source: "./media/characters/baltica/back.svg",
  63413. extra: 452/451,
  63414. bottom: 8/460
  63415. }
  63416. },
  63417. },
  63418. [
  63419. {
  63420. name: "Gigamacro",
  63421. height: math.unit(3500, "miles"),
  63422. default: true
  63423. },
  63424. ]
  63425. ))
  63426. characterMakers.push(() => makeCharacter(
  63427. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63428. {
  63429. front: {
  63430. height: math.unit(6 + 10/12, "feet"),
  63431. weight: math.unit(200, "lb"),
  63432. name: "Front",
  63433. image: {
  63434. source: "./media/characters/shadow-wolf/front.svg",
  63435. extra: 1931/1760,
  63436. bottom: 88/2019
  63437. }
  63438. },
  63439. },
  63440. [
  63441. {
  63442. name: "Normal",
  63443. height: math.unit(6 + 10/12, "feet"),
  63444. default: true
  63445. },
  63446. ]
  63447. ))
  63448. characterMakers.push(() => makeCharacter(
  63449. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63450. {
  63451. front: {
  63452. height: math.unit(5 + 10/12, "feet"),
  63453. name: "Front",
  63454. image: {
  63455. source: "./media/characters/quincy-praying-mantis/front.svg",
  63456. extra: 1055/891,
  63457. bottom: 92/1147
  63458. }
  63459. },
  63460. soles: {
  63461. height: math.unit(0.85, "feet"),
  63462. name: "Soles",
  63463. image: {
  63464. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63465. extra: 429/324,
  63466. bottom: 89/518
  63467. },
  63468. extraAttributes: {
  63469. "shoeSize": {
  63470. name: "Shoe Size",
  63471. power: 1,
  63472. type: "length",
  63473. base: math.unit(23, "ShoeSizeMensUS"),
  63474. defaultUnit: "ShoeSizeMensUS"
  63475. },
  63476. }
  63477. },
  63478. foot: {
  63479. height: math.unit(0.72, "feet"),
  63480. name: "Foot",
  63481. image: {
  63482. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63483. extra: 349/349,
  63484. bottom: 76/425
  63485. }
  63486. },
  63487. },
  63488. [
  63489. {
  63490. name: "Normal",
  63491. height: math.unit(5 + 10/12, "feet"),
  63492. default: true
  63493. },
  63494. ]
  63495. ))
  63496. characterMakers.push(() => makeCharacter(
  63497. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63498. {
  63499. front: {
  63500. height: math.unit(6, "feet"),
  63501. name: "Front",
  63502. image: {
  63503. source: "./media/characters/christopher-redwood/front.svg",
  63504. extra: 1402/1341,
  63505. bottom: 23/1425
  63506. }
  63507. },
  63508. back: {
  63509. height: math.unit(6, "feet"),
  63510. name: "Back",
  63511. image: {
  63512. source: "./media/characters/christopher-redwood/back.svg",
  63513. extra: 1406/1345,
  63514. bottom: 36/1442
  63515. }
  63516. },
  63517. head: {
  63518. height: math.unit(1.685, "feet"),
  63519. name: "Head",
  63520. image: {
  63521. source: "./media/characters/christopher-redwood/head.svg"
  63522. }
  63523. },
  63524. },
  63525. [
  63526. {
  63527. name: "Normal",
  63528. height: math.unit(6, "feet"),
  63529. default: true
  63530. },
  63531. ]
  63532. ))
  63533. characterMakers.push(() => makeCharacter(
  63534. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63535. {
  63536. front: {
  63537. height: math.unit(1.9, "meters"),
  63538. weight: math.unit(140, "lb"),
  63539. name: "Front",
  63540. image: {
  63541. source: "./media/characters/kara-fox/front.svg",
  63542. extra: 766/711,
  63543. bottom: 41/807
  63544. }
  63545. },
  63546. back: {
  63547. height: math.unit(1.9, "meters"),
  63548. weight: math.unit(140, "lb"),
  63549. name: "Back",
  63550. image: {
  63551. source: "./media/characters/kara-fox/back.svg",
  63552. extra: 766/596,
  63553. bottom: 29/795
  63554. }
  63555. },
  63556. maw: {
  63557. height: math.unit(0.78, "feet"),
  63558. name: "Maw",
  63559. image: {
  63560. source: "./media/characters/kara-fox/maw.svg"
  63561. }
  63562. },
  63563. pawpads: {
  63564. height: math.unit(0.96, "feet"),
  63565. name: "Pawpads",
  63566. image: {
  63567. source: "./media/characters/kara-fox/pawpads.svg"
  63568. }
  63569. },
  63570. },
  63571. [
  63572. {
  63573. name: "Normal",
  63574. height: math.unit(1.9, "meters"),
  63575. default: true
  63576. },
  63577. {
  63578. name: "Giantess",
  63579. height: math.unit(80, "meters")
  63580. },
  63581. ]
  63582. ))
  63583. characterMakers.push(() => makeCharacter(
  63584. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63585. {
  63586. front: {
  63587. height: math.unit(12, "feet"),
  63588. name: "Front",
  63589. image: {
  63590. source: "./media/characters/naomi-espeon/front.svg",
  63591. extra: 892/797,
  63592. bottom: 5/897
  63593. }
  63594. },
  63595. back: {
  63596. height: math.unit(12, "feet"),
  63597. name: "Back",
  63598. image: {
  63599. source: "./media/characters/naomi-espeon/back.svg",
  63600. extra: 890/785,
  63601. bottom: 12/902
  63602. }
  63603. },
  63604. },
  63605. [
  63606. {
  63607. name: "Normal",
  63608. height: math.unit(12, "feet"),
  63609. default: true
  63610. },
  63611. ]
  63612. ))
  63613. characterMakers.push(() => makeCharacter(
  63614. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63615. {
  63616. anthro_front: {
  63617. height: math.unit(8, "feet"),
  63618. weight: math.unit(625, "lb"),
  63619. name: "Front",
  63620. image: {
  63621. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63622. extra: 638/574,
  63623. bottom: 73/711
  63624. },
  63625. form: "anthro",
  63626. default: true
  63627. },
  63628. anthro_back: {
  63629. height: math.unit(8, "feet"),
  63630. weight: math.unit(625, "lb"),
  63631. name: "Back",
  63632. image: {
  63633. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63634. extra: 674/614,
  63635. bottom: 7/681
  63636. },
  63637. form: "anthro",
  63638. },
  63639. taur_side: {
  63640. height: math.unit(16, "feet"),
  63641. weight: math.unit(4.5, "tons"),
  63642. name: "Side",
  63643. image: {
  63644. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63645. extra: 704/646,
  63646. bottom: 132/836
  63647. },
  63648. form: "taur",
  63649. default: true
  63650. },
  63651. },
  63652. [
  63653. {
  63654. name: "Normal",
  63655. height: math.unit(8, "feet"),
  63656. default: true,
  63657. form: "anthro"
  63658. },
  63659. {
  63660. name: "Normal",
  63661. height: math.unit(16, "feet"),
  63662. default: true,
  63663. form: "taur"
  63664. },
  63665. ],
  63666. {
  63667. "anthro": {
  63668. name: "Anthro",
  63669. default: true
  63670. },
  63671. "taur": {
  63672. name: "Taur",
  63673. },
  63674. }
  63675. ))
  63676. characterMakers.push(() => makeCharacter(
  63677. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63678. {
  63679. front: {
  63680. height: math.unit(190, "cm"),
  63681. weight: math.unit(110, "kg"),
  63682. name: "Front",
  63683. image: {
  63684. source: "./media/characters/amelie/front.svg",
  63685. extra: 530/442,
  63686. bottom: 35/565
  63687. }
  63688. },
  63689. },
  63690. [
  63691. {
  63692. name: "Normal",
  63693. height: math.unit(190, "cm"),
  63694. default: true
  63695. },
  63696. ]
  63697. ))
  63698. characterMakers.push(() => makeCharacter(
  63699. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63700. {
  63701. front: {
  63702. height: math.unit(21, "feet"),
  63703. weight: math.unit(30000, "lb"),
  63704. name: "Front",
  63705. image: {
  63706. source: "./media/characters/valence/front.svg",
  63707. extra: 1430/1306,
  63708. bottom: 51/1481
  63709. }
  63710. },
  63711. },
  63712. [
  63713. {
  63714. name: "Normal",
  63715. height: math.unit(21, "feet"),
  63716. default: true
  63717. },
  63718. ]
  63719. ))
  63720. characterMakers.push(() => makeCharacter(
  63721. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63722. {
  63723. front: {
  63724. height: math.unit(5 + 9/12, "feet"),
  63725. weight: math.unit(170, "lb"),
  63726. name: "Front",
  63727. image: {
  63728. source: "./media/characters/aurora-adkins/front.svg",
  63729. extra: 1141/1089,
  63730. bottom: 41/1182
  63731. }
  63732. },
  63733. },
  63734. [
  63735. {
  63736. name: "Tiny",
  63737. height: math.unit(7, "mm")
  63738. },
  63739. {
  63740. name: "Small",
  63741. height: math.unit(3.4, "inches")
  63742. },
  63743. {
  63744. name: "Normal",
  63745. height: math.unit(5 + 9/12, "feet"),
  63746. default: true
  63747. },
  63748. {
  63749. name: "Big",
  63750. height: math.unit(31, "feet")
  63751. },
  63752. {
  63753. name: "Giant",
  63754. height: math.unit(300, "feet")
  63755. },
  63756. ]
  63757. ))
  63758. characterMakers.push(() => makeCharacter(
  63759. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63760. {
  63761. front: {
  63762. height: math.unit(5 + 6/12, "feet"),
  63763. weight: math.unit(210, "lb"),
  63764. name: "Front",
  63765. image: {
  63766. source: "./media/characters/cyber/front.svg",
  63767. extra: 1968/1798,
  63768. bottom: 10/1978
  63769. },
  63770. extraAttributes: {
  63771. "shoeSize": {
  63772. name: "Shoe Size",
  63773. power: 1,
  63774. type: "length",
  63775. base: math.unit(30, "ShoeSizeMensUS")
  63776. },
  63777. }
  63778. },
  63779. },
  63780. [
  63781. {
  63782. name: "Normal",
  63783. height: math.unit(5 + 6/12, "feet"),
  63784. default: true
  63785. },
  63786. ]
  63787. ))
  63788. characterMakers.push(() => makeCharacter(
  63789. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63790. {
  63791. front: {
  63792. height: math.unit(6 + 6/12, "feet"),
  63793. weight: math.unit(140, "lb"),
  63794. name: "Front",
  63795. image: {
  63796. source: "./media/characters/sapphire-wairimea/front.svg",
  63797. extra: 475/458,
  63798. bottom: 14/489
  63799. }
  63800. },
  63801. },
  63802. [
  63803. {
  63804. name: "Normal",
  63805. height: math.unit(6 + 6/12, "feet")
  63806. },
  63807. {
  63808. name: "Macro",
  63809. height: math.unit(132, "feet"),
  63810. default: true
  63811. },
  63812. ]
  63813. ))
  63814. characterMakers.push(() => makeCharacter(
  63815. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63816. {
  63817. front: {
  63818. height: math.unit(1.6, "meters"),
  63819. weight: math.unit(100, "lb"),
  63820. name: "Front",
  63821. image: {
  63822. source: "./media/characters/cirkazi/front.svg",
  63823. extra: 489/477,
  63824. bottom: 0/489
  63825. }
  63826. },
  63827. },
  63828. [
  63829. {
  63830. name: "Normal",
  63831. height: math.unit(1.6, "meters")
  63832. },
  63833. {
  63834. name: "Macro",
  63835. height: math.unit(800, "feet"),
  63836. default: true
  63837. },
  63838. ]
  63839. ))
  63840. characterMakers.push(() => makeCharacter(
  63841. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63842. {
  63843. front: {
  63844. height: math.unit(5 + 10/12, "feet"),
  63845. weight: math.unit(145, "lb"),
  63846. name: "Front",
  63847. image: {
  63848. source: "./media/characters/corrin-cavelli/front.svg",
  63849. extra: 483/464,
  63850. bottom: 6/489
  63851. }
  63852. },
  63853. },
  63854. [
  63855. {
  63856. name: "Human",
  63857. height: math.unit(5 + 10/12, "feet")
  63858. },
  63859. {
  63860. name: "Giant",
  63861. height: math.unit(210, "feet"),
  63862. default: true
  63863. },
  63864. ]
  63865. ))
  63866. characterMakers.push(() => makeCharacter(
  63867. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63868. {
  63869. back: {
  63870. height: math.unit(5 + 6/12, "feet"),
  63871. weight: math.unit(115, "lb"),
  63872. name: "Back",
  63873. image: {
  63874. source: "./media/characters/lori-lopez/back.svg",
  63875. extra: 483/474,
  63876. bottom: 6/489
  63877. }
  63878. },
  63879. },
  63880. [
  63881. {
  63882. name: "Human",
  63883. height: math.unit(5 + 6/12, "feet")
  63884. },
  63885. {
  63886. name: "Macro",
  63887. height: math.unit(198, "feet"),
  63888. default: true
  63889. },
  63890. ]
  63891. ))
  63892. characterMakers.push(() => makeCharacter(
  63893. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63894. {
  63895. front: {
  63896. height: math.unit(6, "feet"),
  63897. weight: math.unit(220, "lb"),
  63898. name: "Front",
  63899. image: {
  63900. source: "./media/characters/sylvia-beauregard/front.svg",
  63901. extra: 483/479,
  63902. bottom: 6/489
  63903. }
  63904. },
  63905. },
  63906. [
  63907. {
  63908. name: "Macro",
  63909. height: math.unit(2071, "feet"),
  63910. default: true
  63911. },
  63912. ]
  63913. ))
  63914. characterMakers.push(() => makeCharacter(
  63915. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63916. {
  63917. back: {
  63918. height: math.unit(5 + 6/12, "feet"),
  63919. weight: math.unit(160, "lb"),
  63920. name: "Back",
  63921. image: {
  63922. source: "./media/characters/akiko-takahashi/back.svg",
  63923. extra: 459/454,
  63924. bottom: 27/486
  63925. }
  63926. },
  63927. },
  63928. [
  63929. {
  63930. name: "Human",
  63931. height: math.unit(5 + 6/12, "feet")
  63932. },
  63933. {
  63934. name: "Macro",
  63935. height: math.unit(198, "feet"),
  63936. default: true
  63937. },
  63938. {
  63939. name: "Megamacro",
  63940. height: math.unit(7128, "feet")
  63941. },
  63942. ]
  63943. ))
  63944. characterMakers.push(() => makeCharacter(
  63945. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63946. {
  63947. front: {
  63948. height: math.unit(6, "feet"),
  63949. weight: math.unit(140, "lb"),
  63950. name: "Front",
  63951. image: {
  63952. source: "./media/characters/velvet-garza/front.svg",
  63953. extra: 480/462,
  63954. bottom: 7/487
  63955. }
  63956. },
  63957. },
  63958. [
  63959. {
  63960. name: "Macro",
  63961. height: math.unit(37, "feet"),
  63962. default: true
  63963. },
  63964. ]
  63965. ))
  63966. characterMakers.push(() => makeCharacter(
  63967. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63968. {
  63969. front: {
  63970. height: math.unit(7 + 6/12, "feet"),
  63971. weight: math.unit(400, "lb"),
  63972. name: "Front",
  63973. image: {
  63974. source: "./media/characters/gaia/front.svg",
  63975. extra: 474/463,
  63976. bottom: 13/487
  63977. }
  63978. },
  63979. },
  63980. [
  63981. {
  63982. name: "MiniMacro",
  63983. height: math.unit(7 + 6/12, "feet")
  63984. },
  63985. {
  63986. name: "GigaMacro",
  63987. height: math.unit(14500, "feet"),
  63988. default: true
  63989. },
  63990. ]
  63991. ))
  63992. characterMakers.push(() => makeCharacter(
  63993. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63994. {
  63995. front: {
  63996. height: math.unit(6, "feet"),
  63997. weight: math.unit(150, "lb"),
  63998. name: "Front",
  63999. image: {
  64000. source: "./media/characters/tim/front.svg",
  64001. extra: 1878/1743,
  64002. bottom: 9/1887
  64003. }
  64004. },
  64005. frontDressed: {
  64006. height: math.unit(6, "feet"),
  64007. weight: math.unit(150, "lb"),
  64008. name: "Front (Dressed)",
  64009. image: {
  64010. source: "./media/characters/tim/front-dressed.svg",
  64011. extra: 1765/1485,
  64012. bottom: 48/1813
  64013. }
  64014. },
  64015. backDressed: {
  64016. height: math.unit(6, "feet"),
  64017. weight: math.unit(150, "lb"),
  64018. name: "Back (Dressed)",
  64019. image: {
  64020. source: "./media/characters/tim/back-dressed.svg",
  64021. extra: 1750/1465,
  64022. bottom: 25/1775
  64023. }
  64024. },
  64025. dick: {
  64026. height: math.unit(1.5, "feet"),
  64027. weight: math.unit(6, "lb"),
  64028. name: "Dick",
  64029. image: {
  64030. source: "./media/characters/tim/dick.svg"
  64031. }
  64032. },
  64033. hand: {
  64034. height: math.unit(0.522, "feet"),
  64035. name: "Hand",
  64036. image: {
  64037. source: "./media/characters/tim/hand.svg"
  64038. }
  64039. },
  64040. palm: {
  64041. height: math.unit(0.48, "feet"),
  64042. name: "Palm",
  64043. image: {
  64044. source: "./media/characters/tim/palm.svg"
  64045. }
  64046. },
  64047. paw: {
  64048. height: math.unit(0.9, "feet"),
  64049. name: "Paw",
  64050. image: {
  64051. source: "./media/characters/tim/paw.svg"
  64052. }
  64053. },
  64054. sole: {
  64055. height: math.unit(0.88, "feet"),
  64056. name: "Sole",
  64057. image: {
  64058. source: "./media/characters/tim/sole.svg"
  64059. }
  64060. },
  64061. },
  64062. [
  64063. {
  64064. name: "Macro",
  64065. height: math.unit(1000, "feet")
  64066. },
  64067. {
  64068. name: "Megamacro",
  64069. height: math.unit(10000, "feet"),
  64070. default: true
  64071. },
  64072. {
  64073. name: "Megamacro+",
  64074. height: math.unit(50000, "feet")
  64075. },
  64076. {
  64077. name: "Gigamacro",
  64078. height: math.unit(150000, "km")
  64079. },
  64080. ]
  64081. ))
  64082. characterMakers.push(() => makeCharacter(
  64083. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  64084. {
  64085. front: {
  64086. height: math.unit(5 + 8/12, "feet"),
  64087. weight: math.unit(170, "lb"),
  64088. name: "Front",
  64089. image: {
  64090. source: "./media/characters/abel-delreoux/front.svg",
  64091. extra: 1615/1500,
  64092. bottom: 82/1697
  64093. }
  64094. },
  64095. back: {
  64096. height: math.unit(5 + 8/12, "feet"),
  64097. weight: math.unit(170, "lb"),
  64098. name: "Back",
  64099. image: {
  64100. source: "./media/characters/abel-delreoux/back.svg",
  64101. extra: 1644/1534,
  64102. bottom: 24/1668
  64103. }
  64104. },
  64105. casual: {
  64106. height: math.unit(5 + 8/12, "feet"),
  64107. weight: math.unit(170, "lb"),
  64108. name: "Casual",
  64109. image: {
  64110. source: "./media/characters/abel-delreoux/casual.svg",
  64111. extra: 1716/1598,
  64112. bottom: 29/1745
  64113. }
  64114. },
  64115. sleepy: {
  64116. height: math.unit(5 + 8/12, "feet"),
  64117. weight: math.unit(170, "lb"),
  64118. name: "Sleepy",
  64119. image: {
  64120. source: "./media/characters/abel-delreoux/sleepy.svg",
  64121. extra: 1649/1573,
  64122. bottom: 22/1671
  64123. }
  64124. },
  64125. fem: {
  64126. height: math.unit(5 + 8/12, "feet"),
  64127. weight: math.unit(170, "lb"),
  64128. name: "Fem",
  64129. image: {
  64130. source: "./media/characters/abel-delreoux/fem.svg",
  64131. extra: 1680/1564,
  64132. bottom: 17/1697
  64133. }
  64134. },
  64135. hand: {
  64136. height: math.unit(0.78, "feet"),
  64137. name: "Hand",
  64138. image: {
  64139. source: "./media/characters/abel-delreoux/hand.svg"
  64140. }
  64141. },
  64142. paw: {
  64143. height: math.unit(0.78, "feet"),
  64144. name: "Paw",
  64145. image: {
  64146. source: "./media/characters/abel-delreoux/paw.svg"
  64147. }
  64148. },
  64149. },
  64150. [
  64151. {
  64152. name: "Normal",
  64153. height: math.unit(5 + 8/12, "feet"),
  64154. default: true
  64155. },
  64156. ]
  64157. ))
  64158. characterMakers.push(() => makeCharacter(
  64159. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64160. {
  64161. front: {
  64162. height: math.unit(6, "feet"),
  64163. weight: math.unit(159, "lb"),
  64164. name: "Front",
  64165. image: {
  64166. source: "./media/characters/meus/front.svg",
  64167. extra: 938/843,
  64168. bottom: 37/975
  64169. }
  64170. },
  64171. back: {
  64172. height: math.unit(6, "feet"),
  64173. weight: math.unit(159, "lb"),
  64174. name: "Back",
  64175. image: {
  64176. source: "./media/characters/meus/back.svg",
  64177. extra: 967/873,
  64178. bottom: 12/979
  64179. }
  64180. },
  64181. },
  64182. [
  64183. {
  64184. name: "Micro",
  64185. height: math.unit(2, "inches")
  64186. },
  64187. {
  64188. name: "Mini",
  64189. height: math.unit(6, "inches")
  64190. },
  64191. {
  64192. name: "Normal",
  64193. height: math.unit(6, "feet"),
  64194. default: true
  64195. },
  64196. {
  64197. name: "Macro",
  64198. height: math.unit(84, "feet")
  64199. },
  64200. ]
  64201. ))
  64202. characterMakers.push(() => makeCharacter(
  64203. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64204. {
  64205. front: {
  64206. height: math.unit(60, "cm"),
  64207. weight: math.unit(18, "kg"),
  64208. name: "Front",
  64209. image: {
  64210. source: "./media/characters/yamato/front.svg",
  64211. extra: 733/688,
  64212. bottom: 29/762
  64213. }
  64214. },
  64215. },
  64216. [
  64217. {
  64218. name: "Micro",
  64219. height: math.unit(6, "cm")
  64220. },
  64221. {
  64222. name: "Normal",
  64223. height: math.unit(60, "cm"),
  64224. default: true
  64225. },
  64226. ]
  64227. ))
  64228. characterMakers.push(() => makeCharacter(
  64229. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64230. {
  64231. front: {
  64232. height: math.unit(9, "feet"),
  64233. weight: math.unit(518, "lb"),
  64234. name: "Front",
  64235. image: {
  64236. source: "./media/characters/barus/front.svg",
  64237. extra: 1877/1795,
  64238. bottom: 55/1932
  64239. }
  64240. },
  64241. },
  64242. [
  64243. {
  64244. name: "Base Height",
  64245. height: math.unit(9, "feet"),
  64246. default: true
  64247. },
  64248. {
  64249. name: "Large",
  64250. height: math.unit(18, "feet")
  64251. },
  64252. {
  64253. name: "Giant",
  64254. height: math.unit(100, "feet")
  64255. },
  64256. {
  64257. name: "Huge",
  64258. height: math.unit(500, "feet")
  64259. },
  64260. {
  64261. name: "Enormous",
  64262. height: math.unit(300, "meters")
  64263. },
  64264. {
  64265. name: "Deity Among Man",
  64266. height: math.unit(3000, "meters")
  64267. },
  64268. ]
  64269. ))
  64270. characterMakers.push(() => makeCharacter(
  64271. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64272. {
  64273. front: {
  64274. height: math.unit(1.7, "meters"),
  64275. name: "Front",
  64276. image: {
  64277. source: "./media/characters/yari/front.svg",
  64278. extra: 1210/1125,
  64279. bottom: 283/1493
  64280. }
  64281. },
  64282. back: {
  64283. height: math.unit(1.7, "meters"),
  64284. name: "Back",
  64285. image: {
  64286. source: "./media/characters/yari/back.svg",
  64287. extra: 1240/1195,
  64288. bottom: 180/1420
  64289. }
  64290. },
  64291. head: {
  64292. height: math.unit(1.26, "feet"),
  64293. name: "Head",
  64294. image: {
  64295. source: "./media/characters/yari/head.svg"
  64296. }
  64297. },
  64298. },
  64299. [
  64300. {
  64301. name: "Nano",
  64302. height: math.unit(0.5, "mm")
  64303. },
  64304. {
  64305. name: "Micro",
  64306. height: math.unit(3, "inches")
  64307. },
  64308. {
  64309. name: "Short",
  64310. height: math.unit(1.5, "meters")
  64311. },
  64312. {
  64313. name: "Norm",
  64314. height: math.unit(1.7, "meters"),
  64315. default: true
  64316. },
  64317. ]
  64318. ))
  64319. characterMakers.push(() => makeCharacter(
  64320. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64321. {
  64322. front: {
  64323. height: math.unit(5 + 2/12, "feet"),
  64324. weight: math.unit(110, "lb"),
  64325. name: "Front",
  64326. image: {
  64327. source: "./media/characters/salem/front.svg",
  64328. extra: 1895/1800,
  64329. bottom: 23/1918
  64330. }
  64331. },
  64332. back: {
  64333. height: math.unit(5 + 2/12, "feet"),
  64334. weight: math.unit(110, "lb"),
  64335. name: "Back",
  64336. image: {
  64337. source: "./media/characters/salem/back.svg",
  64338. extra: 1875/1802,
  64339. bottom: 20/1895
  64340. }
  64341. },
  64342. head: {
  64343. height: math.unit(1, "feet"),
  64344. name: "Head",
  64345. image: {
  64346. source: "./media/characters/salem/head.svg"
  64347. }
  64348. },
  64349. paw: {
  64350. height: math.unit(0.59, "feet"),
  64351. name: "Paw",
  64352. image: {
  64353. source: "./media/characters/salem/paw.svg"
  64354. }
  64355. },
  64356. beans: {
  64357. height: math.unit(0.66, "feet"),
  64358. name: "Beans",
  64359. image: {
  64360. source: "./media/characters/salem/beans.svg"
  64361. }
  64362. },
  64363. eye: {
  64364. height: math.unit(0.224, "feet"),
  64365. name: "Eye",
  64366. image: {
  64367. source: "./media/characters/salem/eye.svg"
  64368. }
  64369. },
  64370. semiferal: {
  64371. height: math.unit(2.3, "feet"),
  64372. name: "Semiferal",
  64373. image: {
  64374. source: "./media/characters/salem/semiferal.svg",
  64375. extra: 914/839,
  64376. bottom: 32/946
  64377. }
  64378. },
  64379. },
  64380. [
  64381. {
  64382. name: "Micro",
  64383. height: math.unit(4, "inches")
  64384. },
  64385. {
  64386. name: "Normal",
  64387. height: math.unit(5 + 2/12, "feet"),
  64388. default: true
  64389. },
  64390. {
  64391. name: "Macro",
  64392. height: math.unit(108, "feet")
  64393. },
  64394. {
  64395. name: "Macro+",
  64396. height: math.unit(1500, "feet")
  64397. },
  64398. ]
  64399. ))
  64400. characterMakers.push(() => makeCharacter(
  64401. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64402. {
  64403. front: {
  64404. height: math.unit(7 + 6/12, "feet"),
  64405. weight: math.unit(600, "kg"),
  64406. preyCapacity: math.unit(10, "people"),
  64407. name: "Front",
  64408. image: {
  64409. source: "./media/characters/kii/front.svg",
  64410. extra: 3296/3087,
  64411. bottom: 130/3426
  64412. }
  64413. },
  64414. },
  64415. [
  64416. {
  64417. name: "Normal",
  64418. height: math.unit(7 + 6/12, "feet"),
  64419. default: true
  64420. },
  64421. ]
  64422. ))
  64423. characterMakers.push(() => makeCharacter(
  64424. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64425. {
  64426. front: {
  64427. height: math.unit(2, "meters"),
  64428. weight: math.unit(200, "lb"),
  64429. name: "Front",
  64430. image: {
  64431. source: "./media/characters/taffy/front.svg",
  64432. extra: 1666/1618,
  64433. bottom: 157/1823
  64434. }
  64435. },
  64436. back: {
  64437. height: math.unit(2, "meters"),
  64438. weight: math.unit(200, "lb"),
  64439. name: "Back",
  64440. image: {
  64441. source: "./media/characters/taffy/back.svg",
  64442. extra: 1635/1583,
  64443. bottom: 153/1788
  64444. }
  64445. },
  64446. },
  64447. [
  64448. {
  64449. name: "Normal",
  64450. height: math.unit(2, "meters"),
  64451. default: true
  64452. },
  64453. ]
  64454. ))
  64455. characterMakers.push(() => makeCharacter(
  64456. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64457. {
  64458. front: {
  64459. height: math.unit(1.55, "meters"),
  64460. weight: math.unit(60, "kg"),
  64461. name: "Front",
  64462. image: {
  64463. source: "./media/characters/barley/front.svg",
  64464. extra: 1520/1340,
  64465. bottom: 47/1567
  64466. }
  64467. },
  64468. back: {
  64469. height: math.unit(1.55, "meters"),
  64470. weight: math.unit(60, "kg"),
  64471. name: "Back",
  64472. image: {
  64473. source: "./media/characters/barley/back.svg",
  64474. extra: 1543/1341,
  64475. bottom: 12/1555
  64476. }
  64477. },
  64478. feet: {
  64479. height: math.unit(2.18, "feet"),
  64480. name: "Feet",
  64481. image: {
  64482. source: "./media/characters/barley/feet.svg"
  64483. }
  64484. },
  64485. },
  64486. [
  64487. {
  64488. name: "Normal",
  64489. height: math.unit(1.55, "meters"),
  64490. default: true
  64491. },
  64492. ]
  64493. ))
  64494. characterMakers.push(() => makeCharacter(
  64495. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64496. {
  64497. dressed: {
  64498. height: math.unit(6, "feet"),
  64499. name: "Dressed",
  64500. image: {
  64501. source: "./media/characters/lydia-lopez/dressed.svg",
  64502. extra: 1319/1277,
  64503. bottom: 90/1409
  64504. }
  64505. },
  64506. nude: {
  64507. height: math.unit(6, "feet"),
  64508. name: "Nude",
  64509. image: {
  64510. source: "./media/characters/lydia-lopez/nude.svg",
  64511. extra: 1319/1277,
  64512. bottom: 90/1409
  64513. }
  64514. },
  64515. },
  64516. [
  64517. {
  64518. name: "Normal",
  64519. height: math.unit(6, "feet"),
  64520. default: true
  64521. },
  64522. {
  64523. name: "Maximum",
  64524. height: math.unit(2101, "feet")
  64525. },
  64526. ]
  64527. ))
  64528. characterMakers.push(() => makeCharacter(
  64529. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64530. {
  64531. front: {
  64532. height: math.unit(5 + 4/12, "feet"),
  64533. weight: math.unit(250, "lb"),
  64534. volume: math.unit(20, "gallons"),
  64535. name: "Front",
  64536. image: {
  64537. source: "./media/characters/kira-slime/front.svg",
  64538. extra: 442/403,
  64539. bottom: 18/460
  64540. }
  64541. },
  64542. frontNsfw: {
  64543. height: math.unit(5 + 4/12, "feet"),
  64544. weight: math.unit(250, "lb"),
  64545. volume: math.unit(20, "gallons"),
  64546. name: "Front (NSFW)",
  64547. image: {
  64548. source: "./media/characters/kira-slime/front-nsfw.svg",
  64549. extra: 442/403,
  64550. bottom: 18/460
  64551. }
  64552. },
  64553. },
  64554. [
  64555. {
  64556. name: "Droplet",
  64557. height: math.unit(0.0464452, "feet")
  64558. },
  64559. {
  64560. name: "Pint",
  64561. height: math.unit(0.9824, "feet")
  64562. },
  64563. {
  64564. name: "Bucket",
  64565. height: math.unit(2.83, "feet")
  64566. },
  64567. {
  64568. name: "Normal",
  64569. height: math.unit(5 + 4/12, "feet"),
  64570. default: true
  64571. },
  64572. {
  64573. name: "Tub",
  64574. height: math.unit(8.46614, "feet")
  64575. },
  64576. {
  64577. name: "Pool",
  64578. height: math.unit(31.1895, "feet")
  64579. },
  64580. {
  64581. name: "Pond",
  64582. height: math.unit(170.349, "feet")
  64583. },
  64584. {
  64585. name: "Lake",
  64586. height: math.unit(289334, "feet")
  64587. },
  64588. {
  64589. name: "Ocean",
  64590. height: math.unit(1.11940e+7, "feet")
  64591. },
  64592. ]
  64593. ))
  64594. characterMakers.push(() => makeCharacter(
  64595. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64596. {
  64597. front: {
  64598. height: math.unit(5 + 6/12, "feet"),
  64599. weight: math.unit(120, "lb"),
  64600. name: "Front",
  64601. image: {
  64602. source: "./media/characters/holiday/front.svg",
  64603. extra: 456/403,
  64604. bottom: 4/460
  64605. }
  64606. },
  64607. back: {
  64608. height: math.unit(5 + 6/12, "feet"),
  64609. weight: math.unit(120, "lb"),
  64610. name: "Back",
  64611. image: {
  64612. source: "./media/characters/holiday/back.svg",
  64613. extra: 450/404,
  64614. bottom: 12/462
  64615. }
  64616. },
  64617. head: {
  64618. height: math.unit(2.3, "feet"),
  64619. name: "Head",
  64620. image: {
  64621. source: "./media/characters/holiday/head.svg"
  64622. }
  64623. },
  64624. scifi_front: {
  64625. height: math.unit(145, "km"),
  64626. name: "Front",
  64627. image: {
  64628. source: "./media/characters/holiday/scifi-front.svg"
  64629. },
  64630. form: "scifi",
  64631. },
  64632. },
  64633. [
  64634. {
  64635. name: "Normal",
  64636. height: math.unit(5 + 6/12, "feet"),
  64637. default: true
  64638. },
  64639. {
  64640. name: "Macro",
  64641. height: math.unit(6574.25, "feet")
  64642. },
  64643. ]
  64644. ))
  64645. characterMakers.push(() => makeCharacter(
  64646. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64647. {
  64648. front: {
  64649. height: math.unit(6 + 2/12, "feet"),
  64650. weight: math.unit(200, "lb"),
  64651. name: "Front",
  64652. image: {
  64653. source: "./media/characters/camina/front.svg",
  64654. extra: 1048/985,
  64655. bottom: 30/1078
  64656. }
  64657. },
  64658. },
  64659. [
  64660. {
  64661. name: "Normal",
  64662. height: math.unit(6 + 2/12, "feet"),
  64663. default: true
  64664. },
  64665. ]
  64666. ))
  64667. characterMakers.push(() => makeCharacter(
  64668. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64669. {
  64670. front: {
  64671. height: math.unit(30, "cm"),
  64672. weight: math.unit(420, "grams"),
  64673. name: "Front",
  64674. image: {
  64675. source: "./media/characters/smuck/front.svg",
  64676. extra: 379/345,
  64677. bottom: 36/415
  64678. }
  64679. },
  64680. },
  64681. [
  64682. {
  64683. name: "Smuck-Sized",
  64684. height: math.unit(30, "cm"),
  64685. default: true
  64686. },
  64687. ]
  64688. ))
  64689. characterMakers.push(() => makeCharacter(
  64690. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64691. {
  64692. frontSfw: {
  64693. height: math.unit(10, "feet"),
  64694. weight: math.unit(1000, "kg"),
  64695. preyCapacity: math.unit(2, "people"),
  64696. name: "Front (SFW)",
  64697. image: {
  64698. source: "./media/characters/bylur/front-sfw.svg",
  64699. extra: 419/343,
  64700. bottom: 3/422
  64701. },
  64702. default: true
  64703. },
  64704. frontSheath: {
  64705. height: math.unit(10, "feet"),
  64706. weight: math.unit(1000, "kg"),
  64707. preyCapacity: math.unit(2, "people"),
  64708. name: "Front (Sheath)",
  64709. image: {
  64710. source: "./media/characters/bylur/front-sheath.svg",
  64711. extra: 419/343,
  64712. bottom: 3/422
  64713. }
  64714. },
  64715. frontErect: {
  64716. height: math.unit(10, "feet"),
  64717. weight: math.unit(1000, "kg"),
  64718. preyCapacity: math.unit(2, "people"),
  64719. name: "Front (Erect)",
  64720. image: {
  64721. source: "./media/characters/bylur/front-erect.svg",
  64722. extra: 419/343,
  64723. bottom: 3/422
  64724. }
  64725. },
  64726. back: {
  64727. height: math.unit(10, "feet"),
  64728. weight: math.unit(1000, "kg"),
  64729. preyCapacity: math.unit(2, "people"),
  64730. name: "Back",
  64731. image: {
  64732. source: "./media/characters/bylur/back.svg",
  64733. extra: 392/315,
  64734. bottom: 3/395
  64735. }
  64736. },
  64737. maw: {
  64738. height: math.unit(3.65, "feet"),
  64739. name: "Maw",
  64740. image: {
  64741. source: "./media/characters/bylur/maw.svg"
  64742. }
  64743. },
  64744. },
  64745. [
  64746. {
  64747. name: "Slightly Human Sized",
  64748. height: math.unit(10, "feet")
  64749. },
  64750. {
  64751. name: "Normal",
  64752. height: math.unit(35, "feet"),
  64753. default: true
  64754. },
  64755. {
  64756. name: "Macro",
  64757. height: math.unit(130, "feet")
  64758. },
  64759. ]
  64760. ))
  64761. characterMakers.push(() => makeCharacter(
  64762. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64763. {
  64764. frontNsfw: {
  64765. height: math.unit(6, "feet"),
  64766. weight: math.unit(250, "lb"),
  64767. preyCapacity: math.unit(0.05, "people"),
  64768. name: "Front (NSFW)",
  64769. image: {
  64770. source: "./media/characters/oarven/front-nsfw.svg",
  64771. extra: 1795/1783,
  64772. bottom: 142/1937
  64773. }
  64774. },
  64775. frontSfw: {
  64776. height: math.unit(6, "feet"),
  64777. weight: math.unit(250, "lb"),
  64778. preyCapacity: math.unit(0.05, "people"),
  64779. name: "Front (SFW)",
  64780. image: {
  64781. source: "./media/characters/oarven/front-sfw.svg",
  64782. extra: 1795/1783,
  64783. bottom: 142/1937
  64784. }
  64785. },
  64786. },
  64787. [
  64788. {
  64789. name: "Megamacro",
  64790. height: math.unit(5, "miles"),
  64791. default: true
  64792. },
  64793. {
  64794. name: "Maximum Height",
  64795. height: math.unit(5, "AUs")
  64796. },
  64797. ]
  64798. ))
  64799. characterMakers.push(() => makeCharacter(
  64800. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64801. {
  64802. side: {
  64803. height: math.unit(1065, "meters"),
  64804. weight: math.unit(1e12, "kg"),
  64805. volume: math.unit(3265000000, "m^3"),
  64806. name: "Side",
  64807. image: {
  64808. source: "./media/characters/solidarity/side.svg"
  64809. }
  64810. },
  64811. front: {
  64812. height: math.unit(1065, "meters"),
  64813. weight: math.unit(3265000000000, "kg"),
  64814. volume: math.unit(3265000000, "m^3"),
  64815. name: "Front",
  64816. image: {
  64817. source: "./media/characters/solidarity/front.svg"
  64818. }
  64819. },
  64820. top: {
  64821. height: math.unit(5823, "meters"),
  64822. weight: math.unit(3265000000000, "kg"),
  64823. volume: math.unit(3265000000, "m^3"),
  64824. name: "Top",
  64825. image: {
  64826. source: "./media/characters/solidarity/top.svg"
  64827. }
  64828. },
  64829. },
  64830. [
  64831. {
  64832. name: "Normal",
  64833. height: math.unit(1065, "meters"),
  64834. default: true
  64835. },
  64836. ]
  64837. ))
  64838. characterMakers.push(() => makeCharacter(
  64839. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64840. {
  64841. side: {
  64842. height: math.unit(18 + 4/12, "feet"),
  64843. weight: math.unit(13000, "kg"),
  64844. name: "Side",
  64845. image: {
  64846. source: "./media/characters/ani'szi/side.svg",
  64847. extra: 468/459,
  64848. bottom: 60/528
  64849. }
  64850. },
  64851. head: {
  64852. height: math.unit(4.8, "feet"),
  64853. name: "Head",
  64854. image: {
  64855. source: "./media/characters/ani'szi/head.svg"
  64856. }
  64857. },
  64858. jaws: {
  64859. height: math.unit(2.25, "feet"),
  64860. name: "Jaws",
  64861. image: {
  64862. source: "./media/characters/ani'szi/jaws.svg"
  64863. }
  64864. },
  64865. bust: {
  64866. height: math.unit(8.9, "feet"),
  64867. name: "Bust",
  64868. image: {
  64869. source: "./media/characters/ani'szi/bust.svg"
  64870. }
  64871. },
  64872. back: {
  64873. height: math.unit(13.53, "feet"),
  64874. name: "Back",
  64875. image: {
  64876. source: "./media/characters/ani'szi/back.svg"
  64877. }
  64878. },
  64879. eye: {
  64880. height: math.unit(0.44, "feet"),
  64881. name: "Eye",
  64882. image: {
  64883. source: "./media/characters/ani'szi/eye.svg"
  64884. }
  64885. },
  64886. },
  64887. [
  64888. {
  64889. name: "Normal",
  64890. height: math.unit(18 + 4/12, "feet"),
  64891. default: true
  64892. },
  64893. ]
  64894. ))
  64895. characterMakers.push(() => makeCharacter(
  64896. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64897. {
  64898. front: {
  64899. height: math.unit(7 + 6/12, "feet"),
  64900. weight: math.unit(300, "lb"),
  64901. name: "Front",
  64902. image: {
  64903. source: "./media/characters/rain/front.svg",
  64904. extra: 2955/2698,
  64905. bottom: 235/3190
  64906. }
  64907. },
  64908. dressed: {
  64909. height: math.unit(7 + 6/12, "feet"),
  64910. weight: math.unit(300, "lb"),
  64911. name: "Dressed",
  64912. image: {
  64913. source: "./media/characters/rain/dressed.svg",
  64914. extra: 2783/2572,
  64915. bottom: 430/3213
  64916. }
  64917. },
  64918. },
  64919. [
  64920. {
  64921. name: "Normal",
  64922. height: math.unit(7 + 6/12, "feet"),
  64923. default: true
  64924. },
  64925. {
  64926. name: "Macro",
  64927. height: math.unit(200, "feet")
  64928. },
  64929. {
  64930. name: "Macro+",
  64931. height: math.unit(500, "feet")
  64932. },
  64933. {
  64934. name: "Megamacro",
  64935. height: math.unit(5, "miles")
  64936. },
  64937. ]
  64938. ))
  64939. characterMakers.push(() => makeCharacter(
  64940. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64941. {
  64942. taur_side: {
  64943. height: math.unit(3, "meters"),
  64944. name: "Side",
  64945. image: {
  64946. source: "./media/characters/anise/taur-side.svg",
  64947. extra: 1833/926,
  64948. bottom: 134/1967
  64949. },
  64950. form: "taur",
  64951. default: true
  64952. },
  64953. feral_side: {
  64954. height: math.unit(3, "meters"),
  64955. name: "Side",
  64956. image: {
  64957. source: "./media/characters/anise/feral-side.svg",
  64958. extra: 681/349,
  64959. bottom: 26/707
  64960. },
  64961. form: "feral"
  64962. },
  64963. },
  64964. [
  64965. {
  64966. name: "Normal",
  64967. height: math.unit(3, "meters"),
  64968. default: true,
  64969. allForms: true
  64970. },
  64971. ],
  64972. {
  64973. "taur": {
  64974. name: "Taur",
  64975. default: true
  64976. },
  64977. "feral": {
  64978. name: "Feral",
  64979. },
  64980. }
  64981. ))
  64982. characterMakers.push(() => makeCharacter(
  64983. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64984. {
  64985. front: {
  64986. height: math.unit(1.9, "meters"),
  64987. weight: math.unit(75, "kg"),
  64988. name: "Front",
  64989. image: {
  64990. source: "./media/characters/sarina/front.svg",
  64991. extra: 1275/1200,
  64992. bottom: 49/1324
  64993. }
  64994. },
  64995. back: {
  64996. height: math.unit(1.9, "meters"),
  64997. weight: math.unit(75, "kg"),
  64998. name: "Back",
  64999. image: {
  65000. source: "./media/characters/sarina/back.svg",
  65001. extra: 1279/1209,
  65002. bottom: 14/1293
  65003. }
  65004. },
  65005. dressed: {
  65006. height: math.unit(1.9, "meters"),
  65007. weight: math.unit(75, "kg"),
  65008. name: "Dressed",
  65009. image: {
  65010. source: "./media/characters/sarina/dressed.svg",
  65011. extra: 1256/1187,
  65012. bottom: 56/1312
  65013. }
  65014. },
  65015. paw: {
  65016. height: math.unit(0.57, "feet"),
  65017. name: "Paw",
  65018. image: {
  65019. source: "./media/characters/sarina/paw.svg"
  65020. }
  65021. },
  65022. toering: {
  65023. height: math.unit(0.27, "feet"),
  65024. name: "Toering",
  65025. image: {
  65026. source: "./media/characters/sarina/toering.svg"
  65027. }
  65028. },
  65029. },
  65030. [
  65031. {
  65032. name: "Incognito",
  65033. height: math.unit(1.9, "meters")
  65034. },
  65035. {
  65036. name: "Home Size",
  65037. height: math.unit(160, "meters"),
  65038. default: true
  65039. },
  65040. {
  65041. name: "Mega",
  65042. height: math.unit(50, "km")
  65043. },
  65044. {
  65045. name: "Small Giga",
  65046. height: math.unit(250, "km")
  65047. },
  65048. {
  65049. name: "Giga (Preferred Size)",
  65050. height: math.unit(3000, "km")
  65051. },
  65052. {
  65053. name: "Terra",
  65054. height: math.unit(40000, "km")
  65055. },
  65056. {
  65057. name: "Terra+",
  65058. height: math.unit(400000, "km")
  65059. },
  65060. {
  65061. name: "Solar",
  65062. height: math.unit(35e6, "km")
  65063. },
  65064. {
  65065. name: "Galactic",
  65066. height: math.unit(648106, "parsecs")
  65067. },
  65068. {
  65069. name: "Universal",
  65070. height: math.unit(7, "universes")
  65071. },
  65072. {
  65073. name: "Universal+",
  65074. height: math.unit(30, "universes")
  65075. },
  65076. ]
  65077. ))
  65078. characterMakers.push(() => makeCharacter(
  65079. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  65080. {
  65081. front: {
  65082. height: math.unit(5 + 6/12, "feet"),
  65083. name: "Front",
  65084. image: {
  65085. source: "./media/characters/sifray/front.svg",
  65086. extra: 722/691,
  65087. bottom: 64/786
  65088. }
  65089. },
  65090. },
  65091. [
  65092. {
  65093. name: "Normal",
  65094. height: math.unit(5 + 6/12, "feet"),
  65095. default: true
  65096. },
  65097. ]
  65098. ))
  65099. characterMakers.push(() => makeCharacter(
  65100. { name: "Spots", species: ["dog"], tags: ["feral"] },
  65101. {
  65102. side: {
  65103. height: math.unit(2.64, "feet"),
  65104. weight: math.unit(7, "tons"),
  65105. preyCapacity: math.unit(3, "people"),
  65106. name: "Side",
  65107. image: {
  65108. source: "./media/characters/spots/side.svg",
  65109. extra: 1859/977,
  65110. bottom: 19/1878
  65111. },
  65112. extraAttributes: {
  65113. "preyPerMinute": {
  65114. name: "Prey Per Minute",
  65115. power: 3,
  65116. type: "volume",
  65117. base: math.unit(6, "people"),
  65118. defaultUnit: "people"
  65119. },
  65120. "preyPerDay": {
  65121. name: "Prey Per Day",
  65122. power: 3,
  65123. type: "volume",
  65124. base: math.unit(6 * 60 * 24, "people"),
  65125. defaultUnit: "people"
  65126. },
  65127. }
  65128. },
  65129. },
  65130. [
  65131. {
  65132. name: "Normal",
  65133. height: math.unit(2.64, "feet"),
  65134. default: true
  65135. },
  65136. ]
  65137. ))
  65138. characterMakers.push(() => makeCharacter(
  65139. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65140. {
  65141. front: {
  65142. height: math.unit(29 + 11/12, "feet"),
  65143. weight: math.unit(40, "tons"),
  65144. name: "Front",
  65145. image: {
  65146. source: "./media/characters/mona/front.svg",
  65147. extra: 1257/1116,
  65148. bottom: 34/1291
  65149. }
  65150. },
  65151. },
  65152. [
  65153. {
  65154. name: "Normal",
  65155. height: math.unit(29 + 11/12, "feet"),
  65156. default: true
  65157. },
  65158. ]
  65159. ))
  65160. characterMakers.push(() => makeCharacter(
  65161. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65162. {
  65163. front: {
  65164. height: math.unit(15, "feet"),
  65165. weight: math.unit(3000, "kg"),
  65166. preyCapacity: math.unit(5, "people"),
  65167. name: "Front",
  65168. image: {
  65169. source: "./media/characters/frostfire/front.svg",
  65170. extra: 675/558,
  65171. bottom: 73/748
  65172. }
  65173. },
  65174. side: {
  65175. height: math.unit(15, "feet"),
  65176. weight: math.unit(3000, "kg"),
  65177. preyCapacity: math.unit(5, "people"),
  65178. name: "Side",
  65179. image: {
  65180. source: "./media/characters/frostfire/side.svg",
  65181. extra: 687/585,
  65182. bottom: 50/737
  65183. }
  65184. },
  65185. back: {
  65186. height: math.unit(15, "feet"),
  65187. weight: math.unit(3000, "kg"),
  65188. preyCapacity: math.unit(5, "people"),
  65189. name: "Back",
  65190. image: {
  65191. source: "./media/characters/frostfire/back.svg",
  65192. extra: 707/607,
  65193. bottom: 16/723
  65194. }
  65195. },
  65196. head: {
  65197. height: math.unit(9.35, "feet"),
  65198. name: "Head",
  65199. image: {
  65200. source: "./media/characters/frostfire/head.svg"
  65201. }
  65202. },
  65203. maw: {
  65204. height: math.unit(3.32, "feet"),
  65205. name: "Maw",
  65206. image: {
  65207. source: "./media/characters/frostfire/maw.svg"
  65208. }
  65209. },
  65210. hand: {
  65211. height: math.unit(3.7, "feet"),
  65212. name: "Hand",
  65213. image: {
  65214. source: "./media/characters/frostfire/hand.svg"
  65215. }
  65216. },
  65217. paw: {
  65218. height: math.unit(5.8, "feet"),
  65219. name: "Paw",
  65220. image: {
  65221. source: "./media/characters/frostfire/paw.svg"
  65222. }
  65223. },
  65224. },
  65225. [
  65226. {
  65227. name: "Normal",
  65228. height: math.unit(15, "feet"),
  65229. default: true
  65230. },
  65231. ]
  65232. ))
  65233. characterMakers.push(() => makeCharacter(
  65234. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65235. {
  65236. front: {
  65237. height: math.unit(5 + 2/12, "feet"),
  65238. weight: math.unit(122, "lb"),
  65239. name: "Front",
  65240. image: {
  65241. source: "./media/characters/valeroo/front.svg",
  65242. extra: 1789/1534,
  65243. bottom: 66/1855
  65244. }
  65245. },
  65246. back: {
  65247. height: math.unit(5 + 2/12, "feet"),
  65248. weight: math.unit(122, "lb"),
  65249. name: "Back",
  65250. image: {
  65251. source: "./media/characters/valeroo/back.svg",
  65252. extra: 1848/1588,
  65253. bottom: 68/1916
  65254. }
  65255. },
  65256. head: {
  65257. height: math.unit(1.87, "feet"),
  65258. name: "Head",
  65259. image: {
  65260. source: "./media/characters/valeroo/head.svg"
  65261. }
  65262. },
  65263. hand: {
  65264. height: math.unit(0.82, "feet"),
  65265. name: "Hand",
  65266. image: {
  65267. source: "./media/characters/valeroo/hand.svg"
  65268. }
  65269. },
  65270. foot: {
  65271. height: math.unit(2.42, "feet"),
  65272. name: "Foot",
  65273. image: {
  65274. source: "./media/characters/valeroo/foot.svg"
  65275. }
  65276. },
  65277. },
  65278. [
  65279. {
  65280. name: "Normal",
  65281. height: math.unit(5 + 2/12, "feet"),
  65282. default: true
  65283. },
  65284. ]
  65285. ))
  65286. characterMakers.push(() => makeCharacter(
  65287. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65288. {
  65289. front: {
  65290. height: math.unit(11 + 3/12, "feet"),
  65291. name: "Front",
  65292. image: {
  65293. source: "./media/characters/corrin/front.svg",
  65294. extra: 665/597,
  65295. bottom: 74/739
  65296. }
  65297. },
  65298. },
  65299. [
  65300. {
  65301. name: "Standard",
  65302. height: math.unit(11 + 3/12, "feet"),
  65303. default: true
  65304. },
  65305. {
  65306. name: "The Boss",
  65307. height: math.unit(110, "feet")
  65308. },
  65309. {
  65310. name: "Shipbreaker",
  65311. height: math.unit(38, "km")
  65312. },
  65313. ]
  65314. ))
  65315. characterMakers.push(() => makeCharacter(
  65316. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65317. {
  65318. front: {
  65319. height: math.unit(10, "feet"),
  65320. weight: math.unit(1750, "lb"),
  65321. name: "Front",
  65322. image: {
  65323. source: "./media/characters/kiba-ulrich/front.svg",
  65324. extra: 1037/973,
  65325. bottom: 36/1073
  65326. }
  65327. },
  65328. },
  65329. [
  65330. {
  65331. name: "Normal",
  65332. height: math.unit(10, "feet"),
  65333. default: true
  65334. },
  65335. {
  65336. name: "Minimacro",
  65337. height: math.unit(20, "feet")
  65338. },
  65339. {
  65340. name: "Macro",
  65341. height: math.unit(200, "feet")
  65342. },
  65343. {
  65344. name: "Megamacro",
  65345. height: math.unit(22500, "feet")
  65346. },
  65347. {
  65348. name: "Gigamacro",
  65349. height: math.unit(2700, "miles")
  65350. },
  65351. {
  65352. name: "Teramacro",
  65353. height: math.unit(10000, "miles")
  65354. },
  65355. ]
  65356. ))
  65357. characterMakers.push(() => makeCharacter(
  65358. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65359. {
  65360. gryphon_front: {
  65361. height: math.unit(220, "cm"),
  65362. weight: math.unit(160, "kg"),
  65363. name: "Front",
  65364. image: {
  65365. source: "./media/characters/ceanoth/gryphon-front.svg",
  65366. extra: 616/552,
  65367. bottom: 33/649
  65368. },
  65369. form: "gryphon",
  65370. default: true
  65371. },
  65372. },
  65373. [
  65374. {
  65375. name: "Normal",
  65376. height: math.unit(220, "cm"),
  65377. form: "gryphon",
  65378. default: true
  65379. },
  65380. ],
  65381. {
  65382. "gryphon": {
  65383. name: "Grpyhon",
  65384. default: true
  65385. },
  65386. }
  65387. ))
  65388. characterMakers.push(() => makeCharacter(
  65389. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65390. {
  65391. dressed: {
  65392. height: math.unit(2.2 * 0.79, "meters"),
  65393. weight: math.unit(0.5, "tonnes"),
  65394. name: "Dressed",
  65395. image: {
  65396. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65397. extra: 665/315,
  65398. bottom: 106/771
  65399. },
  65400. extraAttributes: {
  65401. "bodyLength": {
  65402. name: "Body Length",
  65403. power: 1,
  65404. type: "length",
  65405. base: math.unit(2.5, "meters")
  65406. },
  65407. "tailLength": {
  65408. name: "Tail Length",
  65409. power: 1,
  65410. type: "length",
  65411. base: math.unit(4.5, "meters")
  65412. },
  65413. "wingspan": {
  65414. name: "Wingspan",
  65415. power: 1,
  65416. type: "length",
  65417. base: math.unit(6, "meters")
  65418. },
  65419. "taurStomachCapacity": {
  65420. name: "Taur Stomach Capacity",
  65421. power: 3,
  65422. type: "volume",
  65423. base: math.unit(4, "people"),
  65424. defaultUnit: "people"
  65425. },
  65426. "anthroStomachCapacity": {
  65427. name: "Anthro Stomach Capacity",
  65428. power: 3,
  65429. type: "volume",
  65430. base: math.unit(1, "people"),
  65431. defaultUnit: "people"
  65432. },
  65433. }
  65434. },
  65435. nude: {
  65436. height: math.unit(2.2 * 0.79, "meters"),
  65437. weight: math.unit(0.5, "tonnes"),
  65438. name: "Nude",
  65439. image: {
  65440. source: "./media/characters/vanadiya-athelya/nude.svg",
  65441. extra: 665/315,
  65442. bottom: 106/771
  65443. },
  65444. extraAttributes: {
  65445. "bodyLength": {
  65446. name: "Body Length",
  65447. power: 1,
  65448. type: "length",
  65449. base: math.unit(2.5, "meters")
  65450. },
  65451. "tailLength": {
  65452. name: "Tail Length",
  65453. power: 1,
  65454. type: "length",
  65455. base: math.unit(4.5, "meters")
  65456. },
  65457. "wingspan": {
  65458. name: "Wingspan",
  65459. power: 1,
  65460. type: "length",
  65461. base: math.unit(6, "meters")
  65462. },
  65463. "taurStomachCapacity": {
  65464. name: "Taur Stomach Capacity",
  65465. power: 3,
  65466. type: "volume",
  65467. base: math.unit(4, "people"),
  65468. defaultUnit: "people"
  65469. },
  65470. "anthroStomachCapacity": {
  65471. name: "Anthro Stomach Capacity",
  65472. power: 3,
  65473. type: "volume",
  65474. base: math.unit(1, "people"),
  65475. defaultUnit: "people"
  65476. },
  65477. }
  65478. },
  65479. },
  65480. [
  65481. {
  65482. name: "Handheld",
  65483. height: math.unit(0.79 * 0.06, "meters")
  65484. },
  65485. {
  65486. name: "Mini",
  65487. height: math.unit(0.79 * 0.7, "meters")
  65488. },
  65489. {
  65490. name: "Short",
  65491. height: math.unit(0.79 * 1.4, "meters")
  65492. },
  65493. {
  65494. name: "Imposing",
  65495. height: math.unit(0.79 * 2.2, "meters"),
  65496. default: true
  65497. },
  65498. {
  65499. name: "Big",
  65500. height: math.unit(0.79 * 3.8, "meters")
  65501. },
  65502. {
  65503. name: "Giant",
  65504. height: math.unit(0.79 * 6.7, "meters")
  65505. },
  65506. {
  65507. name: "Airliner",
  65508. height: math.unit(0.79 * 64, "meters")
  65509. },
  65510. {
  65511. name: "Skyscraper",
  65512. height: math.unit(0.79 * 220, "meters")
  65513. },
  65514. {
  65515. name: "Mountain",
  65516. height: math.unit(0.79 * 3.6, "km")
  65517. },
  65518. {
  65519. name: "Spacescraper",
  65520. height: math.unit(0.79 * 70, "km")
  65521. },
  65522. {
  65523. name: "Continental",
  65524. height: math.unit(0.79 * 1290, "km")
  65525. },
  65526. {
  65527. name: "Moon",
  65528. height: math.unit(0.79 * 32200, "km")
  65529. },
  65530. {
  65531. name: "Planetary",
  65532. height: math.unit(0.79 * 145000, "km")
  65533. },
  65534. {
  65535. name: "Stellar",
  65536. height: math.unit(0.79 * 19e6, "km")
  65537. },
  65538. {
  65539. name: "Solar",
  65540. height: math.unit(0.79 * 40, "AU")
  65541. },
  65542. {
  65543. name: "Intersteller",
  65544. height: math.unit(0.79 * 3, "lightyears")
  65545. },
  65546. {
  65547. name: "Star Cluster",
  65548. height: math.unit(0.79 * 80, "lightyears")
  65549. },
  65550. {
  65551. name: "Ecumenical",
  65552. height: math.unit(0.79 * 2e3, "lightyears")
  65553. },
  65554. {
  65555. name: "Galactic",
  65556. height: math.unit(0.79 * 175000, "lightyears")
  65557. },
  65558. {
  65559. name: "Galaxy Cluster",
  65560. height: math.unit(0.79 * 25e6, "lightyears")
  65561. },
  65562. ]
  65563. ))
  65564. characterMakers.push(() => makeCharacter(
  65565. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65566. {
  65567. front: {
  65568. height: math.unit(6 + 2/12, "feet"),
  65569. weight: math.unit(160, "lb"),
  65570. name: "Front",
  65571. image: {
  65572. source: "./media/characters/yana-amelin/front.svg",
  65573. extra: 1413/1295,
  65574. bottom: 42/1455
  65575. }
  65576. },
  65577. back: {
  65578. height: math.unit(6 + 2/12, "feet"),
  65579. weight: math.unit(160, "lb"),
  65580. name: "Back",
  65581. image: {
  65582. source: "./media/characters/yana-amelin/back.svg",
  65583. extra: 1424/1310,
  65584. bottom: 24/1448
  65585. }
  65586. },
  65587. paws: {
  65588. height: math.unit(1.48, "feet"),
  65589. name: "Paws",
  65590. image: {
  65591. source: "./media/characters/yana-amelin/paws.svg",
  65592. extra: 304/304,
  65593. bottom: 49/353
  65594. }
  65595. },
  65596. },
  65597. [
  65598. {
  65599. name: "Micro",
  65600. height: math.unit(4, "inches")
  65601. },
  65602. {
  65603. name: "Normal",
  65604. height: math.unit(6 + 2/12, "feet"),
  65605. default: true
  65606. },
  65607. {
  65608. name: "Minimacro",
  65609. height: math.unit(20, "feet")
  65610. },
  65611. {
  65612. name: "Macro",
  65613. height: math.unit(70, "feet")
  65614. },
  65615. ]
  65616. ))
  65617. characterMakers.push(() => makeCharacter(
  65618. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65619. {
  65620. frontNsfw: {
  65621. height: math.unit(2.48, "meters"),
  65622. weight: math.unit(112, "kg"),
  65623. name: "Front (NSFW)",
  65624. image: {
  65625. source: "./media/characters/titania/front-nsfw.svg",
  65626. extra: 1302/1232,
  65627. bottom: 90/1392
  65628. }
  65629. },
  65630. backNsfw: {
  65631. height: math.unit(2.48, "meters"),
  65632. weight: math.unit(112, "kg"),
  65633. name: "Back (NSFW)",
  65634. image: {
  65635. source: "./media/characters/titania/back-nsfw.svg",
  65636. extra: 1355/1288,
  65637. bottom: 18/1373
  65638. }
  65639. },
  65640. frontSfw: {
  65641. height: math.unit(2.48, "meters"),
  65642. weight: math.unit(112, "kg"),
  65643. name: "Front (SFW)",
  65644. image: {
  65645. source: "./media/characters/titania/front-sfw.svg",
  65646. extra: 1302/1232,
  65647. bottom: 90/1392
  65648. }
  65649. },
  65650. backSfw: {
  65651. height: math.unit(2.48, "meters"),
  65652. weight: math.unit(112, "kg"),
  65653. name: "Back (SFW)",
  65654. image: {
  65655. source: "./media/characters/titania/back-sfw.svg",
  65656. extra: 1355/1288,
  65657. bottom: 18/1373
  65658. }
  65659. },
  65660. head: {
  65661. height: math.unit(2.06, "feet"),
  65662. name: "Head",
  65663. image: {
  65664. source: "./media/characters/titania/head.svg"
  65665. }
  65666. },
  65667. maw: {
  65668. height: math.unit(0.8, "feet"),
  65669. name: "Maw",
  65670. image: {
  65671. source: "./media/characters/titania/maw.svg"
  65672. }
  65673. },
  65674. foot: {
  65675. height: math.unit(1.65, "feet"),
  65676. name: "Foot",
  65677. image: {
  65678. source: "./media/characters/titania/foot.svg"
  65679. }
  65680. },
  65681. nethers: {
  65682. height: math.unit(1.7, "feet"),
  65683. name: "Nethers",
  65684. image: {
  65685. source: "./media/characters/titania/nethers.svg"
  65686. }
  65687. },
  65688. },
  65689. [
  65690. {
  65691. name: "Normal",
  65692. height: math.unit(2.48, "meters"),
  65693. default: true
  65694. },
  65695. {
  65696. name: "Mini Macro",
  65697. height: math.unit(248, "meters")
  65698. },
  65699. {
  65700. name: "Macro",
  65701. height: math.unit(620, "meters")
  65702. },
  65703. {
  65704. name: "Mega Macro",
  65705. height: math.unit(1860, "meters")
  65706. },
  65707. ]
  65708. ))
  65709. characterMakers.push(() => makeCharacter(
  65710. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65711. {
  65712. front: {
  65713. height: math.unit(5 + 9/12, "feet"),
  65714. weight: math.unit(1500, "lb"),
  65715. name: "Front",
  65716. image: {
  65717. source: "./media/characters/tony-gray/front.svg",
  65718. extra: 700/575,
  65719. bottom: 71/771
  65720. }
  65721. },
  65722. },
  65723. [
  65724. {
  65725. name: "Normal",
  65726. height: math.unit(5 + 9/12, "feet"),
  65727. default: true
  65728. },
  65729. ]
  65730. ))
  65731. characterMakers.push(() => makeCharacter(
  65732. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65733. {
  65734. side: {
  65735. height: math.unit(8 + 2/12, "feet"),
  65736. name: "Side",
  65737. image: {
  65738. source: "./media/characters/kelby/side.svg",
  65739. extra: 804/578,
  65740. bottom: 70/874
  65741. },
  65742. form: "regular",
  65743. default: true
  65744. },
  65745. lounging: {
  65746. height: math.unit(12.41, "feet"),
  65747. name: "Lounging",
  65748. image: {
  65749. source: "./media/characters/kelby/lounging.svg"
  65750. },
  65751. form: "regular"
  65752. },
  65753. maw: {
  65754. height: math.unit(5, "feet"),
  65755. name: "Maw",
  65756. image: {
  65757. source: "./media/characters/kelby/maw.svg"
  65758. },
  65759. form: "regular"
  65760. },
  65761. dick: {
  65762. height: math.unit(2.4, "feet"),
  65763. name: "Dick",
  65764. image: {
  65765. source: "./media/characters/kelby/dick.svg"
  65766. },
  65767. form: "regular"
  65768. },
  65769. slit: {
  65770. height: math.unit(1.2, "feet"),
  65771. name: "Slit",
  65772. image: {
  65773. source: "./media/characters/kelby/slit.svg"
  65774. },
  65775. form: "regular"
  65776. },
  65777. chibi: {
  65778. height: math.unit(5, "feet"),
  65779. name: "Chibi",
  65780. image: {
  65781. source: "./media/characters/kelby/chibi.svg",
  65782. extra: 245/200,
  65783. bottom: 43/288
  65784. },
  65785. form: "chibi",
  65786. default: true
  65787. },
  65788. },
  65789. [
  65790. {
  65791. name: "Normal",
  65792. height: math.unit(8 + 2/12, "feet"),
  65793. default: true,
  65794. form: "regular"
  65795. },
  65796. {
  65797. name: "Normal",
  65798. height: math.unit(5, "feet"),
  65799. default: true,
  65800. form: "chibi"
  65801. },
  65802. ],
  65803. {
  65804. "regular": {
  65805. name: "Regular",
  65806. default: true
  65807. },
  65808. "chibi": {
  65809. name: "Chibi",
  65810. },
  65811. }
  65812. ))
  65813. characterMakers.push(() => makeCharacter(
  65814. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65815. {
  65816. front: {
  65817. height: math.unit(7 + 10/12, "feet"),
  65818. weight: math.unit(300, "lb"),
  65819. name: "Front",
  65820. image: {
  65821. source: "./media/characters/elisa-mitchell/front.svg",
  65822. extra: 2562/2355,
  65823. bottom: 62/2624
  65824. }
  65825. },
  65826. maw: {
  65827. height: math.unit(2.37, "feet"),
  65828. name: "Maw",
  65829. image: {
  65830. source: "./media/characters/elisa-mitchell/maw.svg"
  65831. }
  65832. },
  65833. },
  65834. [
  65835. {
  65836. name: "Normal",
  65837. height: math.unit(7 + 10/12, "feet"),
  65838. default: true
  65839. },
  65840. {
  65841. name: "Macro",
  65842. height: math.unit(1490, "feet"),
  65843. default: true
  65844. },
  65845. ]
  65846. ))
  65847. characterMakers.push(() => makeCharacter(
  65848. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65849. {
  65850. front: {
  65851. height: math.unit(122, "cm"),
  65852. weight: math.unit(40, "lb"),
  65853. name: "Front",
  65854. image: {
  65855. source: "./media/characters/camia-vertigo-zott/front.svg",
  65856. extra: 2112/1902,
  65857. bottom: 21/2133
  65858. }
  65859. },
  65860. },
  65861. [
  65862. {
  65863. name: "Base Height",
  65864. height: math.unit(122, "cm")
  65865. },
  65866. {
  65867. name: "Macro Height",
  65868. height: math.unit(345, "meters"),
  65869. default: true
  65870. },
  65871. ]
  65872. ))
  65873. characterMakers.push(() => makeCharacter(
  65874. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65875. {
  65876. front: {
  65877. height: math.unit(6 + 3/12, "feet"),
  65878. weight: math.unit(180, "lb"),
  65879. name: "Front",
  65880. image: {
  65881. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65882. extra: 2580/2457,
  65883. bottom: 131/2711
  65884. }
  65885. },
  65886. },
  65887. [
  65888. {
  65889. name: "Normal",
  65890. height: math.unit(6 + 3/12, "feet"),
  65891. default: true
  65892. },
  65893. ]
  65894. ))
  65895. characterMakers.push(() => makeCharacter(
  65896. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65897. {
  65898. front: {
  65899. height: math.unit(165, "cm"),
  65900. weight: math.unit(130, "lb"),
  65901. name: "Front",
  65902. image: {
  65903. source: "./media/characters/sleeka/front.svg",
  65904. extra: 1252/1200,
  65905. bottom: 46/1298
  65906. }
  65907. },
  65908. },
  65909. [
  65910. {
  65911. name: "Normal",
  65912. height: math.unit(165, "cm")
  65913. },
  65914. {
  65915. name: "Galactic",
  65916. height: math.unit(5.8e22, "meters"),
  65917. default: true
  65918. },
  65919. {
  65920. name: "Universal",
  65921. height: math.unit(1.02e29, "meters")
  65922. },
  65923. ]
  65924. ))
  65925. characterMakers.push(() => makeCharacter(
  65926. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65927. {
  65928. front: {
  65929. height: math.unit(5 + 11/12, "feet"),
  65930. weight: math.unit(145, "lb"),
  65931. name: "Front",
  65932. image: {
  65933. source: "./media/characters/emily-whitetail/front.svg",
  65934. extra: 2510/2280,
  65935. bottom: 128/2638
  65936. }
  65937. },
  65938. },
  65939. [
  65940. {
  65941. name: "Normal",
  65942. height: math.unit(5 + 11/12, "feet")
  65943. },
  65944. {
  65945. name: "Galactic",
  65946. height: math.unit(6.3e22, "meters"),
  65947. default: true
  65948. },
  65949. {
  65950. name: "Universal",
  65951. height: math.unit(1.12e29, "meters")
  65952. },
  65953. ]
  65954. ))
  65955. characterMakers.push(() => makeCharacter(
  65956. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65957. {
  65958. front: {
  65959. height: math.unit(5 + 4/12, "feet"),
  65960. weight: math.unit(110, "lb"),
  65961. name: "Front",
  65962. image: {
  65963. source: "./media/characters/buck-whitetail/front.svg",
  65964. extra: 2430/2186,
  65965. bottom: 125/2555
  65966. }
  65967. },
  65968. },
  65969. [
  65970. {
  65971. name: "Normal",
  65972. height: math.unit(5 + 4/12, "feet")
  65973. },
  65974. {
  65975. name: "Galactic",
  65976. height: math.unit(5.4e22, "meters"),
  65977. default: true
  65978. },
  65979. {
  65980. name: "Universal",
  65981. height: math.unit(9.6e28, "meters")
  65982. },
  65983. ]
  65984. ))
  65985. characterMakers.push(() => makeCharacter(
  65986. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65987. {
  65988. front: {
  65989. height: math.unit(5 + 3/12, "feet"),
  65990. name: "Front",
  65991. image: {
  65992. source: "./media/characters/zoey-frisk/front.svg",
  65993. extra: 2825/2646,
  65994. bottom: 57/2882
  65995. }
  65996. },
  65997. },
  65998. [
  65999. {
  66000. name: "Normal",
  66001. height: math.unit(5 + 3/12, "feet"),
  66002. default: true
  66003. },
  66004. {
  66005. name: "Macro",
  66006. height: math.unit(800, "feet")
  66007. },
  66008. ]
  66009. ))
  66010. characterMakers.push(() => makeCharacter(
  66011. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  66012. {
  66013. front: {
  66014. height: math.unit(210, "cm"),
  66015. weight: math.unit(102, "kg"),
  66016. name: "Front",
  66017. image: {
  66018. source: "./media/characters/dhaeleena-m'iar/front.svg",
  66019. extra: 831/790,
  66020. bottom: 19/850
  66021. }
  66022. },
  66023. },
  66024. [
  66025. {
  66026. name: "Micro",
  66027. height: math.unit(1, "mm")
  66028. },
  66029. {
  66030. name: "Small",
  66031. height: math.unit(1, "cm")
  66032. },
  66033. {
  66034. name: "Short",
  66035. height: math.unit(1, "foot")
  66036. },
  66037. {
  66038. name: "Normal",
  66039. height: math.unit(210, "cm"),
  66040. default: true
  66041. },
  66042. {
  66043. name: "Big",
  66044. height: math.unit(15, "feet")
  66045. },
  66046. {
  66047. name: "Macro",
  66048. height: math.unit(50, "feet")
  66049. },
  66050. ]
  66051. ))
  66052. characterMakers.push(() => makeCharacter(
  66053. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  66054. {
  66055. front: {
  66056. height: math.unit(80, "feet"),
  66057. weight: math.unit(410000, "lb"),
  66058. name: "Front",
  66059. image: {
  66060. source: "./media/characters/trouble/front.svg",
  66061. extra: 780/723,
  66062. bottom: 11/791
  66063. },
  66064. extraAttributes: {
  66065. "pawArea": {
  66066. name: "Paw Area",
  66067. power: 2,
  66068. type: "area",
  66069. base: math.unit(49, "feet^2")
  66070. },
  66071. }
  66072. },
  66073. },
  66074. [
  66075. {
  66076. name: "Normal",
  66077. height: math.unit(80, "feet"),
  66078. default: true
  66079. },
  66080. ]
  66081. ))
  66082. characterMakers.push(() => makeCharacter(
  66083. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  66084. {
  66085. front: {
  66086. height: math.unit(5 + 7/12, "feet"),
  66087. weight: math.unit(140, "lb"),
  66088. name: "Front",
  66089. image: {
  66090. source: "./media/characters/bastion-aralus/front.svg",
  66091. extra: 1122/1045,
  66092. bottom: 24/1146
  66093. }
  66094. },
  66095. back: {
  66096. height: math.unit(5 + 7/12, "feet"),
  66097. weight: math.unit(140, "lb"),
  66098. name: "Back",
  66099. image: {
  66100. source: "./media/characters/bastion-aralus/back.svg",
  66101. extra: 1158/1078,
  66102. bottom: 39/1197
  66103. }
  66104. },
  66105. dick: {
  66106. height: math.unit(1.16, "feet"),
  66107. name: "Dick",
  66108. image: {
  66109. source: "./media/characters/bastion-aralus/dick.svg"
  66110. }
  66111. },
  66112. },
  66113. [
  66114. {
  66115. name: "Micro",
  66116. height: math.unit(1, "mm")
  66117. },
  66118. {
  66119. name: "Normal",
  66120. height: math.unit(5 + 7/12, "feet"),
  66121. default: true
  66122. },
  66123. {
  66124. name: "Macro",
  66125. height: math.unit(57, "feet")
  66126. },
  66127. ]
  66128. ))
  66129. characterMakers.push(() => makeCharacter(
  66130. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66131. {
  66132. sona_front: {
  66133. height: math.unit(6, "feet"),
  66134. weight: math.unit(350, "lb"),
  66135. name: "Front",
  66136. image: {
  66137. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66138. extra: 1099/1005,
  66139. bottom: 22/1121
  66140. },
  66141. form: "sona",
  66142. default: true
  66143. },
  66144. sona_side: {
  66145. height: math.unit(6, "feet"),
  66146. weight: math.unit(350, "lb"),
  66147. name: "Side",
  66148. image: {
  66149. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66150. extra: 1075/1017,
  66151. bottom: 20/1095
  66152. },
  66153. form: "sona",
  66154. },
  66155. character_front: {
  66156. height: math.unit(6, "feet"),
  66157. weight: math.unit(300, "lb"),
  66158. name: "Front",
  66159. image: {
  66160. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66161. extra: 1099/1005,
  66162. bottom: 22/1121
  66163. },
  66164. form: "character",
  66165. default: true
  66166. },
  66167. character_side: {
  66168. height: math.unit(6, "feet"),
  66169. weight: math.unit(300, "lb"),
  66170. name: "Side",
  66171. image: {
  66172. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66173. extra: 1075/1017,
  66174. bottom: 20/1095
  66175. },
  66176. form: "character",
  66177. },
  66178. },
  66179. [
  66180. {
  66181. name: "Normal",
  66182. height: math.unit(500, "feet"),
  66183. default: true,
  66184. form: "sona"
  66185. },
  66186. {
  66187. name: "Normal",
  66188. height: math.unit(50, "feet"),
  66189. default: true,
  66190. form: "character"
  66191. },
  66192. ],
  66193. {
  66194. "sona": {
  66195. name: "Sona",
  66196. default: true
  66197. },
  66198. "character": {
  66199. name: "Character",
  66200. },
  66201. }
  66202. ))
  66203. characterMakers.push(() => makeCharacter(
  66204. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66205. {
  66206. front: {
  66207. height: math.unit(5 + 4/12, "feet"),
  66208. weight: math.unit(58, "kg"),
  66209. name: "Front",
  66210. image: {
  66211. source: "./media/characters/hood/front.svg",
  66212. extra: 1474/1309,
  66213. bottom: 0/1474
  66214. }
  66215. },
  66216. },
  66217. [
  66218. {
  66219. name: "Normal",
  66220. height: math.unit(5 + 4/12, "feet"),
  66221. default: true
  66222. },
  66223. ]
  66224. ))
  66225. characterMakers.push(() => makeCharacter(
  66226. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66227. {
  66228. front: {
  66229. height: math.unit(8 + 2/12, "feet"),
  66230. name: "Front",
  66231. image: {
  66232. source: "./media/characters/rena/front.svg",
  66233. extra: 1768/1632,
  66234. bottom: 57/1825
  66235. }
  66236. },
  66237. },
  66238. [
  66239. {
  66240. name: "Normal",
  66241. height: math.unit(8 + 2/12, "feet"),
  66242. default: true
  66243. },
  66244. ]
  66245. ))
  66246. characterMakers.push(() => makeCharacter(
  66247. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66248. {
  66249. front: {
  66250. height: math.unit(5 + 3/12, "feet"),
  66251. name: "Front",
  66252. image: {
  66253. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66254. extra: 1209/1159,
  66255. bottom: 33/1242
  66256. }
  66257. },
  66258. maw: {
  66259. height: math.unit(1.75, "feet"),
  66260. name: "Maw",
  66261. image: {
  66262. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66263. }
  66264. },
  66265. },
  66266. [
  66267. {
  66268. name: "Micro",
  66269. height: math.unit(3, "inches")
  66270. },
  66271. {
  66272. name: "Regular",
  66273. height: math.unit(5 + 3/12, "feet"),
  66274. default: true
  66275. },
  66276. {
  66277. name: "Imagined",
  66278. height: math.unit(90, "meters")
  66279. },
  66280. ]
  66281. ))
  66282. characterMakers.push(() => makeCharacter(
  66283. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66284. {
  66285. front: {
  66286. height: math.unit(11.75, "feet"),
  66287. weight: math.unit(4346, "lb"),
  66288. preyCapacity: math.unit(20, "people"),
  66289. name: "Front",
  66290. image: {
  66291. source: "./media/characters/suma-roo/front.svg",
  66292. extra: 1370/1365,
  66293. bottom: 164/1534
  66294. }
  66295. },
  66296. },
  66297. [
  66298. {
  66299. name: "Normal",
  66300. height: math.unit(11.75, "feet"),
  66301. default: true
  66302. },
  66303. ]
  66304. ))
  66305. characterMakers.push(() => makeCharacter(
  66306. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66307. {
  66308. front: {
  66309. height: math.unit(2.35, "meters"),
  66310. weight: math.unit(240, "kg"),
  66311. name: "Front",
  66312. image: {
  66313. source: "./media/characters/hymmanios/front.svg",
  66314. extra: 2032/1994,
  66315. bottom: 194/2226
  66316. }
  66317. },
  66318. },
  66319. [
  66320. {
  66321. name: "Normal",
  66322. height: math.unit(2.35, "meters"),
  66323. default: true
  66324. },
  66325. {
  66326. name: "Macro",
  66327. height: math.unit(75, "meters")
  66328. },
  66329. {
  66330. name: "Mega",
  66331. height: math.unit(1250, "meters")
  66332. },
  66333. {
  66334. name: "Giga",
  66335. height: math.unit(235000, "meters")
  66336. },
  66337. ]
  66338. ))
  66339. characterMakers.push(() => makeCharacter(
  66340. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66341. {
  66342. front: {
  66343. height: math.unit(134, "feet"),
  66344. weight: math.unit(932.635, "tons"),
  66345. name: "Front",
  66346. image: {
  66347. source: "./media/characters/azalea/front.svg",
  66348. extra: 703/687,
  66349. bottom: 75/778
  66350. }
  66351. },
  66352. },
  66353. [
  66354. {
  66355. name: "Normal",
  66356. height: math.unit(134, "feet"),
  66357. default: true
  66358. },
  66359. ]
  66360. ))
  66361. characterMakers.push(() => makeCharacter(
  66362. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66363. {
  66364. front: {
  66365. height: math.unit(6.4, "feet"),
  66366. weight: math.unit(167.5, "lb"),
  66367. name: "Front",
  66368. image: {
  66369. source: "./media/characters/lizzy/front.svg",
  66370. extra: 1916/1791,
  66371. bottom: 103/2019
  66372. }
  66373. },
  66374. back: {
  66375. height: math.unit(6.4, "feet"),
  66376. weight: math.unit(167.5, "lb"),
  66377. name: "Back",
  66378. image: {
  66379. source: "./media/characters/lizzy/back.svg",
  66380. extra: 1995/1856,
  66381. bottom: 11/2006
  66382. }
  66383. },
  66384. },
  66385. [
  66386. {
  66387. name: "Normal",
  66388. height: math.unit(6.4, "feet"),
  66389. default: true
  66390. },
  66391. ]
  66392. ))
  66393. characterMakers.push(() => makeCharacter(
  66394. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66395. {
  66396. front: {
  66397. height: math.unit(66, "inches"),
  66398. name: "Front",
  66399. image: {
  66400. source: "./media/characters/sasha/front.svg",
  66401. extra: 620/571,
  66402. bottom: 33/653
  66403. }
  66404. },
  66405. back: {
  66406. height: math.unit(66, "inches"),
  66407. name: "Back",
  66408. image: {
  66409. source: "./media/characters/sasha/back.svg",
  66410. extra: 615/564,
  66411. bottom: 38/653
  66412. }
  66413. },
  66414. },
  66415. [
  66416. {
  66417. name: "IRL",
  66418. height: math.unit(2, "inches")
  66419. },
  66420. {
  66421. name: "Normal",
  66422. height: math.unit(66, "inches"),
  66423. default: true
  66424. },
  66425. {
  66426. name: "Macro",
  66427. height: math.unit(400, "feet")
  66428. },
  66429. {
  66430. name: "Mega Macro",
  66431. height: math.unit(500000, "feet")
  66432. },
  66433. {
  66434. name: "Giga Macro",
  66435. height: math.unit(50000, "miles")
  66436. },
  66437. ]
  66438. ))
  66439. characterMakers.push(() => makeCharacter(
  66440. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66441. {
  66442. front: {
  66443. height: math.unit(52, "inches"),
  66444. name: "Front",
  66445. image: {
  66446. source: "./media/characters/autumn-avali/front.svg",
  66447. extra: 1031/908,
  66448. bottom: 38/1069
  66449. }
  66450. },
  66451. back: {
  66452. height: math.unit(52, "inches"),
  66453. name: "Back",
  66454. image: {
  66455. source: "./media/characters/autumn-avali/back.svg",
  66456. extra: 1047/923,
  66457. bottom: 11/1058
  66458. }
  66459. },
  66460. maw: {
  66461. height: math.unit(0.59, "feet"),
  66462. name: "Maw",
  66463. image: {
  66464. source: "./media/characters/autumn-avali/maw.svg"
  66465. }
  66466. },
  66467. },
  66468. [
  66469. {
  66470. name: "Normal",
  66471. height: math.unit(52, "inches"),
  66472. default: true
  66473. },
  66474. {
  66475. name: "Big'vali",
  66476. height: math.unit(3.5, "meters")
  66477. },
  66478. {
  66479. name: "Macro",
  66480. height: math.unit(35, "meters")
  66481. },
  66482. {
  66483. name: "Macro+",
  66484. height: math.unit(165, "meters")
  66485. },
  66486. {
  66487. name: "Megamacro",
  66488. height: math.unit(8250, "meters")
  66489. },
  66490. {
  66491. name: "Megamacro+",
  66492. height: math.unit(88000, "meters")
  66493. },
  66494. {
  66495. name: "Gigamacro",
  66496. height: math.unit(1.32, "megameters")
  66497. },
  66498. {
  66499. name: "Planet Cracker",
  66500. height: math.unit(77, "megameters")
  66501. },
  66502. ]
  66503. ))
  66504. characterMakers.push(() => makeCharacter(
  66505. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66506. {
  66507. front: {
  66508. height: math.unit(200, "feet"),
  66509. name: "Front",
  66510. image: {
  66511. source: "./media/characters/sophie/front.svg",
  66512. extra: 710/680,
  66513. bottom: 3/713
  66514. },
  66515. extraAttributes: {
  66516. "milkProduction": {
  66517. name: "Milk Production",
  66518. power: 3,
  66519. type: "volume",
  66520. base: math.unit(27000, "liters")
  66521. },
  66522. }
  66523. },
  66524. },
  66525. [
  66526. {
  66527. name: "Normal",
  66528. height: math.unit(200, "feet"),
  66529. default: true
  66530. },
  66531. ]
  66532. ))
  66533. characterMakers.push(() => makeCharacter(
  66534. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66535. {
  66536. front: {
  66537. height: math.unit(23, "feet"),
  66538. name: "Front",
  66539. image: {
  66540. source: "./media/characters/adelaide-spireborn/front.svg",
  66541. extra: 671/625,
  66542. bottom: 18/689
  66543. }
  66544. },
  66545. maw: {
  66546. height: math.unit(7.8, "feet"),
  66547. name: "Maw",
  66548. image: {
  66549. source: "./media/characters/adelaide-spireborn/maw.svg"
  66550. }
  66551. },
  66552. sword: {
  66553. height: math.unit(13.4, "feet"),
  66554. name: "Sword",
  66555. image: {
  66556. source: "./media/characters/adelaide-spireborn/sword.svg"
  66557. }
  66558. },
  66559. },
  66560. [
  66561. {
  66562. name: "Magically Induced",
  66563. height: math.unit(8.5, "feet")
  66564. },
  66565. {
  66566. name: "Normal",
  66567. height: math.unit(23, "feet"),
  66568. default: true
  66569. },
  66570. ]
  66571. ))
  66572. characterMakers.push(() => makeCharacter(
  66573. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66574. {
  66575. side: {
  66576. height: math.unit(8, "feet"),
  66577. name: "Side",
  66578. image: {
  66579. source: "./media/characters/artemus/side.svg",
  66580. extra: 800/397,
  66581. bottom: 83/883
  66582. }
  66583. },
  66584. front: {
  66585. height: math.unit(8, "feet"),
  66586. name: "Front",
  66587. image: {
  66588. source: "./media/characters/artemus/front.svg",
  66589. extra: 763/348,
  66590. bottom: 89/852
  66591. }
  66592. },
  66593. maw: {
  66594. height: math.unit(5.63, "feet"),
  66595. name: "Maw",
  66596. image: {
  66597. source: "./media/characters/artemus/maw.svg"
  66598. }
  66599. },
  66600. forepaw: {
  66601. height: math.unit(3.13, "feet"),
  66602. name: "Forepaw",
  66603. image: {
  66604. source: "./media/characters/artemus/forepaw.svg"
  66605. }
  66606. },
  66607. hindpaw: {
  66608. height: math.unit(4.85, "feet"),
  66609. name: "Hindpaw",
  66610. image: {
  66611. source: "./media/characters/artemus/hindpaw.svg"
  66612. }
  66613. },
  66614. },
  66615. [
  66616. {
  66617. name: "Normal",
  66618. height: math.unit(8, "feet"),
  66619. default: true
  66620. },
  66621. ]
  66622. ))
  66623. characterMakers.push(() => makeCharacter(
  66624. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66625. {
  66626. front: {
  66627. height: math.unit(4, "feet"),
  66628. name: "Front",
  66629. image: {
  66630. source: "./media/characters/flynn/front.svg",
  66631. extra: 427/404,
  66632. bottom: 14/441
  66633. },
  66634. extraAttributes: {
  66635. "tailLength": {
  66636. name: "Tail Length",
  66637. power: 1,
  66638. type: "length",
  66639. base: math.unit(2.7, "feet")
  66640. },
  66641. }
  66642. },
  66643. frontNsfw: {
  66644. height: math.unit(4, "feet"),
  66645. name: "Front NSFW",
  66646. image: {
  66647. source: "./media/characters/flynn/front-nsfw.svg",
  66648. extra: 427/404,
  66649. bottom: 14/441
  66650. },
  66651. extraAttributes: {
  66652. "tailLength": {
  66653. name: "Tail Length",
  66654. power: 1,
  66655. type: "length",
  66656. base: math.unit(2.7, "feet")
  66657. },
  66658. "dickLength": {
  66659. name: "Dick Length",
  66660. power: 1,
  66661. type: "length",
  66662. base: math.unit(0.7, "feet")
  66663. },
  66664. }
  66665. },
  66666. back: {
  66667. height: math.unit(4, "feet"),
  66668. name: "Back",
  66669. image: {
  66670. source: "./media/characters/flynn/back.svg",
  66671. extra: 420/400,
  66672. bottom: 12/432
  66673. },
  66674. extraAttributes: {
  66675. "tailLength": {
  66676. name: "Tail Length",
  66677. power: 1,
  66678. type: "length",
  66679. base: math.unit(2.7, "feet")
  66680. },
  66681. }
  66682. },
  66683. },
  66684. [
  66685. {
  66686. name: "Normal",
  66687. height: math.unit(4, "feet"),
  66688. default: true
  66689. },
  66690. ]
  66691. ))
  66692. characterMakers.push(() => makeCharacter(
  66693. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66694. {
  66695. frontSfw: {
  66696. height: math.unit(1.9, "meters"),
  66697. name: "Front (SFW)",
  66698. image: {
  66699. source: "./media/characters/orun/front-sfw.svg",
  66700. extra: 1684/1625,
  66701. bottom: 64/1748
  66702. }
  66703. },
  66704. frontNsfw: {
  66705. height: math.unit(1.9, "meters"),
  66706. name: "Front (NSFW)",
  66707. image: {
  66708. source: "./media/characters/orun/front-nsfw.svg",
  66709. extra: 1684/1625,
  66710. bottom: 64/1748
  66711. }
  66712. },
  66713. frontErect: {
  66714. height: math.unit(1.9, "meters"),
  66715. name: "Front (Erect)",
  66716. image: {
  66717. source: "./media/characters/orun/front-erect.svg",
  66718. extra: 1684/1625,
  66719. bottom: 64/1748
  66720. }
  66721. },
  66722. },
  66723. [
  66724. {
  66725. name: "Normal",
  66726. height: math.unit(1.9, "meters"),
  66727. default: true
  66728. },
  66729. {
  66730. name: "Giant",
  66731. height: math.unit(45, "meters")
  66732. },
  66733. {
  66734. name: "Bigger Giant",
  66735. height: math.unit(155, "meters")
  66736. },
  66737. {
  66738. name: "Macro",
  66739. height: math.unit(550, "meters")
  66740. },
  66741. {
  66742. name: "Bigger Macro",
  66743. height: math.unit(1050, "meters")
  66744. },
  66745. {
  66746. name: "Titan",
  66747. height: math.unit(5, "km")
  66748. },
  66749. {
  66750. name: "Bigger Titan",
  66751. height: math.unit(15, "km")
  66752. },
  66753. ]
  66754. ))
  66755. characterMakers.push(() => makeCharacter(
  66756. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66757. {
  66758. clothed: {
  66759. height: math.unit(5 + 6/12, "feet"),
  66760. name: "Clothed",
  66761. image: {
  66762. source: "./media/characters/catherine-busch/clothed.svg",
  66763. extra: 1330/1273,
  66764. bottom: 45/1375
  66765. }
  66766. },
  66767. nude: {
  66768. height: math.unit(5 + 6/12, "feet"),
  66769. name: "Nude",
  66770. image: {
  66771. source: "./media/characters/catherine-busch/nude.svg",
  66772. extra: 1330/1273,
  66773. bottom: 45/1375
  66774. }
  66775. },
  66776. },
  66777. [
  66778. {
  66779. name: "Normal",
  66780. height: math.unit(5 + 6/12, "feet"),
  66781. default: true
  66782. },
  66783. {
  66784. name: "Maximum",
  66785. height: math.unit(1644, "feet")
  66786. },
  66787. ]
  66788. ))
  66789. characterMakers.push(() => makeCharacter(
  66790. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66791. {
  66792. front: {
  66793. height: math.unit(5 + 4/12, "feet"),
  66794. weight: math.unit(160, "lb"),
  66795. name: "Front",
  66796. image: {
  66797. source: "./media/characters/carter/front.svg",
  66798. extra: 1007/940,
  66799. bottom: 37/1044
  66800. }
  66801. },
  66802. back: {
  66803. height: math.unit(5 + 4/12, "feet"),
  66804. weight: math.unit(160, "lb"),
  66805. name: "Back",
  66806. image: {
  66807. source: "./media/characters/carter/back.svg",
  66808. extra: 1010/941,
  66809. bottom: 25/1035
  66810. }
  66811. },
  66812. frontErect: {
  66813. height: math.unit(5 + 4/12, "feet"),
  66814. weight: math.unit(160, "lb"),
  66815. name: "Front (Erect)",
  66816. image: {
  66817. source: "./media/characters/carter/front-erect.svg",
  66818. extra: 1015/948,
  66819. bottom: 33/1048
  66820. }
  66821. },
  66822. },
  66823. [
  66824. {
  66825. name: "Normal",
  66826. height: math.unit(5 + 4/12, "feet"),
  66827. default: true
  66828. },
  66829. ]
  66830. ))
  66831. characterMakers.push(() => makeCharacter(
  66832. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66833. {
  66834. front: {
  66835. height: math.unit(90, "feet"),
  66836. name: "Front",
  66837. image: {
  66838. source: "./media/characters/yula/front.svg",
  66839. extra: 686/641,
  66840. bottom: 5/691
  66841. }
  66842. },
  66843. },
  66844. [
  66845. {
  66846. name: "Normal",
  66847. height: math.unit(90, "feet"),
  66848. default: true
  66849. },
  66850. ]
  66851. ))
  66852. characterMakers.push(() => makeCharacter(
  66853. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66854. {
  66855. front: {
  66856. height: math.unit(2.16, "meters"),
  66857. weight: math.unit(275, "kg"),
  66858. name: "Front",
  66859. image: {
  66860. source: "./media/characters/thomas-bakes/front.svg",
  66861. extra: 333/283,
  66862. bottom: 46/379
  66863. },
  66864. extraAttributes: {
  66865. "pawLength": {
  66866. name: "Paw Length",
  66867. power: 1,
  66868. type: "length",
  66869. base: math.unit(35, "cm")
  66870. },
  66871. "pawWidth": {
  66872. name: "Paw Width",
  66873. power: 1,
  66874. type: "length",
  66875. base: math.unit(30, "cm")
  66876. },
  66877. "handLength": {
  66878. name: "Hand Length",
  66879. power: 1,
  66880. type: "length",
  66881. base: math.unit(30, "cm")
  66882. },
  66883. "handWidth": {
  66884. name: "Hand Width",
  66885. power: 1,
  66886. type: "length",
  66887. base: math.unit(25, "cm")
  66888. },
  66889. "preyCapacity": {
  66890. name: "Prey Capacity",
  66891. power: 3,
  66892. type: "volume",
  66893. base: math.unit(40*20*20, "cm^3")
  66894. },
  66895. "swallowSize": {
  66896. name: "Swallow Size",
  66897. power: 1,
  66898. type: "length",
  66899. base: math.unit(13, "cm")
  66900. },
  66901. "energyIntake": {
  66902. name: "Food Intake",
  66903. power: 3,
  66904. type: "energy",
  66905. base: math.unit(3250, "kcal")
  66906. },
  66907. "wingspan": {
  66908. name: "Wingspan",
  66909. power: 1,
  66910. type: "length",
  66911. base: math.unit(3.7, "meters")
  66912. },
  66913. "wingWidth": {
  66914. name: "Wing Width",
  66915. power: 1,
  66916. type: "length",
  66917. base: math.unit(1.7, "meters")
  66918. },
  66919. }
  66920. },
  66921. },
  66922. [
  66923. {
  66924. name: "Normal",
  66925. height: math.unit(2.16, "meters"),
  66926. default: true
  66927. },
  66928. ]
  66929. ))
  66930. characterMakers.push(() => makeCharacter(
  66931. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66932. {
  66933. front: {
  66934. height: math.unit(8 + 6/12, "feet"),
  66935. weight: math.unit(600, "lb"),
  66936. name: "Front",
  66937. image: {
  66938. source: "./media/characters/rekka/front.svg",
  66939. extra: 1814/1672,
  66940. bottom: 92/1906
  66941. }
  66942. },
  66943. back: {
  66944. height: math.unit(8 + 6/12, "feet"),
  66945. weight: math.unit(600, "lb"),
  66946. name: "Back",
  66947. image: {
  66948. source: "./media/characters/rekka/back.svg",
  66949. extra: 1795/1682,
  66950. bottom: 86/1881
  66951. }
  66952. },
  66953. },
  66954. [
  66955. {
  66956. name: "Normal",
  66957. height: math.unit(8 + 6/12, "feet"),
  66958. default: true
  66959. },
  66960. {
  66961. name: "Category 1",
  66962. height: math.unit(30, "feet")
  66963. },
  66964. {
  66965. name: "Category 2",
  66966. height: math.unit(150, "feet")
  66967. },
  66968. {
  66969. name: "Category 3",
  66970. height: math.unit(300, "feet")
  66971. },
  66972. {
  66973. name: "Category 4",
  66974. height: math.unit(550, "feet")
  66975. },
  66976. ]
  66977. ))
  66978. characterMakers.push(() => makeCharacter(
  66979. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66980. {
  66981. front: {
  66982. height: math.unit(5 + 8/12, "feet"),
  66983. weight: math.unit(180, "lb"),
  66984. name: "Front",
  66985. image: {
  66986. source: "./media/characters/zeke/front.svg",
  66987. extra: 452/417,
  66988. bottom: 21/473
  66989. }
  66990. },
  66991. back: {
  66992. height: math.unit(5 + 8/12, "feet"),
  66993. weight: math.unit(180, "lb"),
  66994. name: "Back",
  66995. image: {
  66996. source: "./media/characters/zeke/back.svg",
  66997. extra: 473/444,
  66998. bottom: 8/481
  66999. }
  67000. },
  67001. frontNsfw: {
  67002. height: math.unit(5 + 8/12, "feet"),
  67003. weight: math.unit(180, "lb"),
  67004. name: "Front (NSFW)",
  67005. image: {
  67006. source: "./media/characters/zeke/front-nsfw.svg",
  67007. extra: 452/417,
  67008. bottom: 21/473
  67009. }
  67010. },
  67011. backNsfw: {
  67012. height: math.unit(5 + 8/12, "feet"),
  67013. weight: math.unit(180, "lb"),
  67014. name: "Back (NSFW)",
  67015. image: {
  67016. source: "./media/characters/zeke/back-nsfw.svg",
  67017. extra: 473/444,
  67018. bottom: 8/481
  67019. }
  67020. },
  67021. frontErect: {
  67022. height: math.unit(5 + 8/12, "feet"),
  67023. weight: math.unit(180, "lb"),
  67024. name: "Front (Erect)",
  67025. image: {
  67026. source: "./media/characters/zeke/front-erect.svg",
  67027. extra: 452/417,
  67028. bottom: 21/473
  67029. }
  67030. },
  67031. },
  67032. [
  67033. {
  67034. name: "Normal",
  67035. height: math.unit(5 + 8/12, "feet"),
  67036. default: true
  67037. },
  67038. {
  67039. name: "Kaiju",
  67040. height: math.unit((5 + 8/12) * 54.6087, "feet")
  67041. },
  67042. {
  67043. name: "Pez Humans",
  67044. height: math.unit((5 + 8/12) * 121.92, "feet")
  67045. },
  67046. {
  67047. name: "Pez Buses",
  67048. height: math.unit((5 + 8/12) * 796.67, "feet")
  67049. },
  67050. {
  67051. name: "Pez Planes",
  67052. height: math.unit((5 + 8/12) * 5086.6, "feet")
  67053. },
  67054. {
  67055. name: "Pez Khalifa",
  67056. height: math.unit((5 + 8/12) * 55320, "feet")
  67057. },
  67058. ]
  67059. ))
  67060. characterMakers.push(() => makeCharacter(
  67061. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  67062. {
  67063. frontSfw: {
  67064. height: math.unit(2.2, "meters"),
  67065. name: "Front (SFW)",
  67066. image: {
  67067. source: "./media/characters/adalwen/front-sfw.svg",
  67068. extra: 1654/1574,
  67069. bottom: 107/1761
  67070. }
  67071. },
  67072. frontNsfw: {
  67073. height: math.unit(2.2, "meters"),
  67074. name: "Front (NSFW)",
  67075. image: {
  67076. source: "./media/characters/adalwen/front-nsfw.svg",
  67077. extra: 1654/1574,
  67078. bottom: 107/1761
  67079. }
  67080. },
  67081. frontErect: {
  67082. height: math.unit(2.2, "meters"),
  67083. name: "Front (Erect)",
  67084. image: {
  67085. source: "./media/characters/adalwen/front-erect.svg",
  67086. extra: 1654/1574,
  67087. bottom: 107/1761
  67088. }
  67089. },
  67090. },
  67091. [
  67092. {
  67093. name: "Normal",
  67094. height: math.unit(2.2, "meters"),
  67095. default: true
  67096. },
  67097. {
  67098. name: "Giant",
  67099. height: math.unit(55, "meters")
  67100. },
  67101. {
  67102. name: "Bigger Giant",
  67103. height: math.unit(200, "meters")
  67104. },
  67105. {
  67106. name: "Macro",
  67107. height: math.unit(650, "meters")
  67108. },
  67109. {
  67110. name: "Bigger Macro",
  67111. height: math.unit(1300, "meters")
  67112. },
  67113. {
  67114. name: "Titan",
  67115. height: math.unit(5500, "meters")
  67116. },
  67117. {
  67118. name: "Titan 2",
  67119. height: math.unit(17, "km")
  67120. },
  67121. {
  67122. name: "Titan 3",
  67123. height: math.unit(125, "km")
  67124. },
  67125. {
  67126. name: "Titan 4",
  67127. height: math.unit(1500, "km")
  67128. },
  67129. {
  67130. name: "Titan 5",
  67131. height: math.unit(55000, "km")
  67132. },
  67133. ]
  67134. ))
  67135. characterMakers.push(() => makeCharacter(
  67136. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67137. {
  67138. front: {
  67139. height: math.unit(1.91, "meters"),
  67140. weight: math.unit(76, "kg"),
  67141. name: "Front",
  67142. image: {
  67143. source: "./media/characters/alexio/front.svg",
  67144. extra: 1440/1376,
  67145. bottom: 141/1581
  67146. }
  67147. },
  67148. back: {
  67149. height: math.unit(1.91, "meters"),
  67150. weight: math.unit(76, "kg"),
  67151. name: "Back",
  67152. image: {
  67153. source: "./media/characters/alexio/back.svg",
  67154. extra: 1448/1388,
  67155. bottom: 57/1505
  67156. }
  67157. },
  67158. head: {
  67159. height: math.unit(1.17, "feet"),
  67160. name: "Head",
  67161. image: {
  67162. source: "./media/characters/alexio/head.svg"
  67163. }
  67164. },
  67165. maw: {
  67166. height: math.unit(0.6, "feet"),
  67167. name: "Maw",
  67168. image: {
  67169. source: "./media/characters/alexio/maw.svg"
  67170. }
  67171. },
  67172. feet: {
  67173. height: math.unit(1.34, "feet"),
  67174. name: "Feet",
  67175. image: {
  67176. source: "./media/characters/alexio/feet.svg"
  67177. }
  67178. },
  67179. genitals: {
  67180. height: math.unit(1.03, "feet"),
  67181. name: "Genitals",
  67182. image: {
  67183. source: "./media/characters/alexio/genitals.svg"
  67184. }
  67185. },
  67186. },
  67187. [
  67188. {
  67189. name: "Normal",
  67190. height: math.unit(1.91, "meters"),
  67191. default: true
  67192. },
  67193. {
  67194. name: "Minimacro",
  67195. height: math.unit(191, "meters")
  67196. },
  67197. {
  67198. name: "Macro",
  67199. height: math.unit(477.5, "meters")
  67200. },
  67201. {
  67202. name: "Mega Macro",
  67203. height: math.unit(1432.5, "meters")
  67204. },
  67205. ]
  67206. ))
  67207. characterMakers.push(() => makeCharacter(
  67208. { name: "Quake Lee", species: ["red-fox"], tags: ["anthro"] },
  67209. {
  67210. front: {
  67211. height: math.unit(5 + 2/12, "feet"),
  67212. weight: math.unit(110, "lb"),
  67213. name: "Front",
  67214. image: {
  67215. source: "./media/characters/quake-lee/front.svg",
  67216. extra: 1376/1295,
  67217. bottom: 69/1445
  67218. }
  67219. },
  67220. paw: {
  67221. height: math.unit(0.786, "feet"),
  67222. name: "Paw",
  67223. image: {
  67224. source: "./media/characters/quake-lee/paw.svg"
  67225. }
  67226. },
  67227. },
  67228. [
  67229. {
  67230. name: "Avey",
  67231. height: math.unit(5 + 2/12, "feet"),
  67232. default: true
  67233. },
  67234. {
  67235. name: "Macro",
  67236. height: math.unit(146, "feet")
  67237. },
  67238. {
  67239. name: "Mega",
  67240. height: math.unit(7, "miles")
  67241. },
  67242. {
  67243. name: "Ultra",
  67244. height: math.unit(1.6, "gigameters")
  67245. },
  67246. ]
  67247. ))
  67248. characterMakers.push(() => makeCharacter(
  67249. { name: "Wolf", species: ["wolf"], tags: ["feral"] },
  67250. {
  67251. side: {
  67252. height: math.unit(40, "inches"),
  67253. weight: math.unit(200, "lb"),
  67254. preyCapacity: math.unit(2, "people"),
  67255. name: "Side",
  67256. image: {
  67257. source: "./media/characters/wolf/side.svg",
  67258. extra: 432/345,
  67259. bottom: 15/447
  67260. }
  67261. },
  67262. front: {
  67263. height: math.unit(40, "inches"),
  67264. weight: math.unit(200, "lb"),
  67265. preyCapacity: math.unit(2, "people"),
  67266. name: "Front",
  67267. image: {
  67268. source: "./media/characters/wolf/front.svg",
  67269. extra: 803/467,
  67270. bottom: 97/900
  67271. }
  67272. },
  67273. },
  67274. [
  67275. {
  67276. name: "Small",
  67277. height: math.unit(40, "inches"),
  67278. default: true
  67279. },
  67280. {
  67281. name: "Medium",
  67282. height: math.unit(60, "inches")
  67283. },
  67284. {
  67285. name: "Large",
  67286. height: math.unit(110, "inches")
  67287. },
  67288. ]
  67289. ))
  67290. characterMakers.push(() => makeCharacter(
  67291. { name: "Cherry Spark", species: ["cheetah", "deity"], tags: ["feral"] },
  67292. {
  67293. sphinx_side: {
  67294. height: math.unit(64.7, "feet"),
  67295. weight: math.unit(150265, "lb"),
  67296. name: "Side",
  67297. image: {
  67298. source: "./media/characters/cherry-spark/sphinx-side.svg",
  67299. extra: 410/299,
  67300. bottom: 7/417
  67301. },
  67302. form: "sphinx",
  67303. default: true
  67304. },
  67305. sphinx_cooch: {
  67306. height: math.unit(57, "feet"),
  67307. name: "Cooch",
  67308. image: {
  67309. source: "./media/characters/cherry-spark/sphinx-cooch.svg"
  67310. },
  67311. form: "sphinx",
  67312. },
  67313. },
  67314. [
  67315. {
  67316. name: "Macro",
  67317. height: math.unit(64.7, "feet"),
  67318. default: true,
  67319. form: "sphinx"
  67320. },
  67321. ],
  67322. {
  67323. "sphinx": {
  67324. name: "Sphinx",
  67325. default: true
  67326. },
  67327. }
  67328. ))
  67329. characterMakers.push(() => makeCharacter(
  67330. { name: "Jaanada Palzathan", species: ["dragon"], tags: ["anthro"] },
  67331. {
  67332. front: {
  67333. height: math.unit(100, "meters"),
  67334. weight: math.unit(12700, "tonnes"),
  67335. name: "Front",
  67336. image: {
  67337. source: "./media/characters/jaanada-palzathan/front.svg",
  67338. extra: 691/652,
  67339. bottom: 13/704
  67340. }
  67341. },
  67342. },
  67343. [
  67344. {
  67345. name: "Giant 1",
  67346. height: math.unit(2.62, "meters")
  67347. },
  67348. {
  67349. name: "Giant 2",
  67350. height: math.unit(4.14, "meters")
  67351. },
  67352. {
  67353. name: "Macro 1",
  67354. height: math.unit(38.4, "meters")
  67355. },
  67356. {
  67357. name: "Macro 2",
  67358. height: math.unit(100, "meters"),
  67359. default: true
  67360. },
  67361. {
  67362. name: "Macro 3",
  67363. height: math.unit(1800, "meters")
  67364. },
  67365. ]
  67366. ))
  67367. characterMakers.push(() => makeCharacter(
  67368. { name: "William Tudor", species: ["kitsune"], tags: ["anthro"] },
  67369. {
  67370. front: {
  67371. height: math.unit(6 + 6/12, "feet"),
  67372. weight: math.unit(205, "lb"),
  67373. name: "Front",
  67374. image: {
  67375. source: "./media/characters/william-tudor/front.svg",
  67376. extra: 1865/1701,
  67377. bottom: 91/1956
  67378. },
  67379. extraAttributes: {
  67380. "tailLength": {
  67381. name: "Tail Length",
  67382. power: 1,
  67383. type: "length",
  67384. base: math.unit(3, "feet")
  67385. },
  67386. }
  67387. },
  67388. back: {
  67389. height: math.unit(6 + 6/12, "feet"),
  67390. weight: math.unit(205, "lb"),
  67391. name: "Back",
  67392. image: {
  67393. source: "./media/characters/william-tudor/back.svg",
  67394. extra: 1911/1731,
  67395. bottom: 19/1930
  67396. },
  67397. extraAttributes: {
  67398. "tailLength": {
  67399. name: "Tail Length",
  67400. power: 1,
  67401. type: "length",
  67402. base: math.unit(3, "feet")
  67403. },
  67404. }
  67405. },
  67406. head: {
  67407. height: math.unit(1.9, "feet"),
  67408. name: "Head",
  67409. image: {
  67410. source: "./media/characters/william-tudor/head.svg"
  67411. }
  67412. },
  67413. },
  67414. [
  67415. {
  67416. name: "Tiny",
  67417. height: math.unit(1, "inches")
  67418. },
  67419. {
  67420. name: "Micro",
  67421. height: math.unit(6, "inches")
  67422. },
  67423. {
  67424. name: "Normal",
  67425. height: math.unit(6 + 6/12, "feet"),
  67426. default: true
  67427. },
  67428. {
  67429. name: "Giant",
  67430. height: math.unit(15, "feet")
  67431. },
  67432. {
  67433. name: "Massive",
  67434. height: math.unit(100, "feet")
  67435. },
  67436. {
  67437. name: "Titanic",
  67438. height: math.unit(1, "mile")
  67439. },
  67440. ]
  67441. ))
  67442. characterMakers.push(() => makeCharacter(
  67443. { name: "Bisset", species: ["dragon"], tags: ["feral"] },
  67444. {
  67445. side: {
  67446. height: math.unit(7, "feet"),
  67447. name: "Side",
  67448. image: {
  67449. source: "./media/characters/bisset/side.svg",
  67450. extra: 1047/527,
  67451. bottom: 65/1112
  67452. }
  67453. },
  67454. },
  67455. [
  67456. {
  67457. name: "Normal",
  67458. height: math.unit(7, "feet"),
  67459. default: true
  67460. },
  67461. ]
  67462. ))
  67463. characterMakers.push(() => makeCharacter(
  67464. { name: "Jericho", species: ["obstagoon"], tags: ["taur"] },
  67465. {
  67466. side: {
  67467. height: math.unit(5, "meters"),
  67468. name: "Side",
  67469. image: {
  67470. source: "./media/characters/jericho/side.svg",
  67471. extra: 626/569,
  67472. bottom: 80/706
  67473. }
  67474. }
  67475. },
  67476. [
  67477. {
  67478. name: "Normal",
  67479. height: math.unit(5, "meters"),
  67480. default: true
  67481. },
  67482. ]
  67483. ))
  67484. characterMakers.push(() => makeCharacter(
  67485. { name: "Finnan", species: ["house-mouse"], tags: ["anthro"] },
  67486. {
  67487. front: {
  67488. height: math.unit(8, "cm"),
  67489. weight: math.unit(19, "grams"),
  67490. name: "Front",
  67491. image: {
  67492. source: "./media/characters/finnan/front.svg",
  67493. extra: 1427/1250,
  67494. bottom: 504/1931
  67495. }
  67496. },
  67497. lying: {
  67498. height: math.unit(3.32, "cm"),
  67499. weight: math.unit(19, "grams"),
  67500. name: "Lying",
  67501. image: {
  67502. source: "./media/characters/finnan/lying.svg",
  67503. extra: 983/709,
  67504. bottom: 800/1783
  67505. }
  67506. },
  67507. head: {
  67508. height: math.unit(3.1, "cm"),
  67509. name: "Head",
  67510. image: {
  67511. source: "./media/characters/finnan/head.svg"
  67512. }
  67513. },
  67514. },
  67515. [
  67516. {
  67517. name: "Normal",
  67518. height: math.unit(8, "cm"),
  67519. default: true
  67520. },
  67521. ]
  67522. ))
  67523. characterMakers.push(() => makeCharacter(
  67524. { name: "Fenja", species: ["deity", "fox", "horse"], tags: ["anthro"] },
  67525. {
  67526. fox_front: {
  67527. height: math.unit(2, "meters"),
  67528. weight: math.unit(180, "lb"),
  67529. name: "Front",
  67530. image: {
  67531. source: "./media/characters/fenja/fox-front.svg",
  67532. extra: 801/735,
  67533. bottom: 14/815
  67534. },
  67535. form: "fox",
  67536. default: true
  67537. },
  67538. fox_frontNsfw: {
  67539. height: math.unit(2, "meters"),
  67540. weight: math.unit(180, "lb"),
  67541. name: "Front (NSFW)",
  67542. image: {
  67543. source: "./media/characters/fenja/fox-front-nsfw.svg",
  67544. extra: 801/735,
  67545. bottom: 14/815
  67546. },
  67547. form: "fox",
  67548. },
  67549. fox_back: {
  67550. height: math.unit(2, "meters"),
  67551. weight: math.unit(180, "lb"),
  67552. name: "Back",
  67553. image: {
  67554. source: "./media/characters/fenja/fox-back.svg",
  67555. extra: 800/722,
  67556. bottom: 22/822
  67557. },
  67558. form: "fox",
  67559. },
  67560. horse_front: {
  67561. height: math.unit(2, "meters"),
  67562. weight: math.unit(210, "lb"),
  67563. name: "Front",
  67564. image: {
  67565. source: "./media/characters/fenja/horse-front.svg",
  67566. extra: 793/736,
  67567. bottom: 24/817
  67568. },
  67569. form: "horse",
  67570. default: true
  67571. },
  67572. horse_frontNsfw: {
  67573. height: math.unit(2, "meters"),
  67574. weight: math.unit(210, "lb"),
  67575. name: "Front (NSFW)",
  67576. image: {
  67577. source: "./media/characters/fenja/horse-front-nsfw.svg",
  67578. extra: 793/736,
  67579. bottom: 24/817
  67580. },
  67581. form: "horse",
  67582. },
  67583. horse_back: {
  67584. height: math.unit(2, "meters"),
  67585. weight: math.unit(210, "lb"),
  67586. name: "Back",
  67587. image: {
  67588. source: "./media/characters/fenja/horse-back.svg",
  67589. extra: 795/739,
  67590. bottom: 16/811
  67591. },
  67592. form: "horse",
  67593. },
  67594. },
  67595. [
  67596. {
  67597. name: "Interaction Size",
  67598. height: math.unit(350, "meters"),
  67599. allForms: true
  67600. },
  67601. {
  67602. name: "Casual Macro",
  67603. height: math.unit(4, "km"),
  67604. allForms: true
  67605. },
  67606. {
  67607. name: "Small",
  67608. height: math.unit(25, "km"),
  67609. allForms: true
  67610. },
  67611. {
  67612. name: "Preferred",
  67613. height: math.unit(300, "km"),
  67614. allForms: true,
  67615. default: true
  67616. },
  67617. {
  67618. name: "Preferred (Large)",
  67619. height: math.unit(4000, "km"),
  67620. allForms: true
  67621. },
  67622. {
  67623. name: "Terra",
  67624. height: math.unit(25000, "km"),
  67625. allForms: true
  67626. },
  67627. {
  67628. name: "Preferred terra",
  67629. height: math.unit(300000, "km"),
  67630. allForms: true
  67631. },
  67632. {
  67633. name: "Original Size",
  67634. height: math.unit(1.5e6, "km"),
  67635. allForms: true
  67636. },
  67637. {
  67638. name: "Showoff Size",
  67639. height: math.unit(100, "galaxies"),
  67640. allForms: true
  67641. },
  67642. ],
  67643. {
  67644. "fox": {
  67645. name: "Fox",
  67646. default: true
  67647. },
  67648. "horse": {
  67649. name: "Horse",
  67650. },
  67651. }
  67652. ))
  67653. characterMakers.push(() => makeCharacter(
  67654. { name: "Petcha", species: ["servine", "plush"], tags: ["feral"] },
  67655. {
  67656. front: {
  67657. height: math.unit(2, "feet"),
  67658. weight: math.unit(7.5, "kg"),
  67659. name: "Front",
  67660. image: {
  67661. source: "./media/characters/petcha/front.svg",
  67662. extra: 283/224,
  67663. bottom: 148/425
  67664. }
  67665. },
  67666. },
  67667. [
  67668. {
  67669. name: "Normal",
  67670. height: math.unit(2, "feet"),
  67671. default: true
  67672. },
  67673. ]
  67674. ))
  67675. characterMakers.push(() => makeCharacter(
  67676. { name: "Clementine", species: ["dragonite"], tags: ["anthro"] },
  67677. {
  67678. front: {
  67679. height: math.unit(14 + 2/12, "feet"),
  67680. weight: math.unit(1851.67, "kg"),
  67681. name: "Front",
  67682. image: {
  67683. source: "./media/characters/clementine/front.svg",
  67684. extra: 547/498,
  67685. bottom: 49/596
  67686. }
  67687. },
  67688. },
  67689. [
  67690. {
  67691. name: "Normal",
  67692. height: math.unit(14 + 2/12, "feet"),
  67693. default: true
  67694. },
  67695. ]
  67696. ))
  67697. characterMakers.push(() => makeCharacter(
  67698. { name: "Xar", species: ["virginia-opossum"], tags: ["anthro"] },
  67699. {
  67700. front: {
  67701. height: math.unit(185, "cm"),
  67702. weight: math.unit(200, "lb"),
  67703. name: "Front",
  67704. image: {
  67705. source: "./media/characters/xar/front.svg",
  67706. extra: 609/574,
  67707. bottom: 22/631
  67708. }
  67709. },
  67710. back: {
  67711. height: math.unit(185, "cm"),
  67712. weight: math.unit(200, "lb"),
  67713. name: "Back",
  67714. image: {
  67715. source: "./media/characters/xar/back.svg",
  67716. extra: 755/716,
  67717. bottom: 17/772
  67718. }
  67719. },
  67720. },
  67721. [
  67722. {
  67723. name: "Smol",
  67724. height: math.unit(15.24, "cm")
  67725. },
  67726. {
  67727. name: "Normal",
  67728. height: math.unit(185, "cm"),
  67729. default: true
  67730. },
  67731. ]
  67732. ))
  67733. //characters
  67734. function makeCharacters() {
  67735. const results = [];
  67736. characterMakers.forEach(character => {
  67737. results.push(character());
  67738. });
  67739. return results;
  67740. }