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

68619 строки
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. "dutch-angel-dragon": {
  2471. name: "Dutch Angel Dragon",
  2472. parents: ["dragon", "avian"]
  2473. },
  2474. }
  2475. //species
  2476. function getSpeciesInfo(speciesList) {
  2477. let result = new Set();
  2478. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2479. result.add(entry)
  2480. });
  2481. return Array.from(result);
  2482. };
  2483. function getSpeciesInfoHelper(species) {
  2484. if (!speciesData[species]) {
  2485. console.warn(species + " doesn't exist");
  2486. return [];
  2487. }
  2488. if (speciesData[species].parents) {
  2489. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2490. } else {
  2491. return [species];
  2492. }
  2493. }
  2494. characterMakers.push(() => makeCharacter(
  2495. {
  2496. name: "Fen",
  2497. species: ["crux"],
  2498. description: {
  2499. title: "Bio",
  2500. text: "Very furry. Sheds on everything."
  2501. },
  2502. tags: [
  2503. "anthro",
  2504. "goo"
  2505. ]
  2506. },
  2507. {
  2508. front: {
  2509. height: math.unit(12, "feet"),
  2510. weight: math.unit(2400, "lb"),
  2511. preyCapacity: math.unit(1, "people"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/fen/front.svg",
  2515. extra: 1804/1562,
  2516. bottom: 205/2009
  2517. },
  2518. extraAttributes: {
  2519. pawSize: {
  2520. name: "Paw Size",
  2521. power: 2,
  2522. type: "area",
  2523. base: math.unit(0.35, "m^2")
  2524. }
  2525. }
  2526. },
  2527. diving: {
  2528. height: math.unit(4.9, "meters"),
  2529. weight: math.unit(2400, "lb"),
  2530. name: "Diving",
  2531. image: {
  2532. source: "./media/characters/fen/diving.svg"
  2533. }
  2534. },
  2535. sleeby: {
  2536. height: math.unit(3.45, "meters"),
  2537. weight: math.unit(2400, "lb"),
  2538. name: "Sleeby",
  2539. image: {
  2540. source: "./media/characters/fen/sleeby.svg"
  2541. }
  2542. },
  2543. goo: {
  2544. height: math.unit(12, "feet"),
  2545. weight: math.unit(3600, "lb"),
  2546. volume: math.unit(1000, "liters"),
  2547. preyCapacity: math.unit(6, "people"),
  2548. name: "Goo",
  2549. image: {
  2550. source: "./media/characters/fen/goo.svg",
  2551. extra: 1307/1071,
  2552. bottom: 134/1441
  2553. }
  2554. },
  2555. horror: {
  2556. height: math.unit(13.6, "feet"),
  2557. weight: math.unit(2400, "lb"),
  2558. preyCapacity: math.unit(1, "people"),
  2559. name: "Horror",
  2560. image: {
  2561. source: "./media/characters/fen/horror.svg",
  2562. extra: 893/797,
  2563. bottom: 0/893
  2564. }
  2565. },
  2566. gooNsfw: {
  2567. height: math.unit(12, "feet"),
  2568. weight: math.unit(3750, "lb"),
  2569. volume: math.unit(1000, "liters"),
  2570. preyCapacity: math.unit(6, "people"),
  2571. name: "Goo (NSFW)",
  2572. image: {
  2573. source: "./media/characters/fen/goo-nsfw.svg",
  2574. extra: 1875/1734,
  2575. bottom: 122/1997
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(5.03, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/fen/maw.svg"
  2583. }
  2584. },
  2585. gooCeiling: {
  2586. height: math.unit(6.6, "feet"),
  2587. weight: math.unit(3000, "lb"),
  2588. volume: math.unit(1000, "liters"),
  2589. preyCapacity: math.unit(6, "people"),
  2590. name: "Maw (Goo)",
  2591. image: {
  2592. source: "./media/characters/fen/goo-maw.svg"
  2593. }
  2594. },
  2595. paw: {
  2596. height: math.unit(3.77, "feet"),
  2597. name: "Paw",
  2598. image: {
  2599. source: "./media/characters/fen/paw.svg"
  2600. },
  2601. extraAttributes: {
  2602. "toeSize": {
  2603. name: "Toe Size",
  2604. power: 2,
  2605. type: "area",
  2606. base: math.unit(0.02875, "m^2")
  2607. },
  2608. "pawSize": {
  2609. name: "Paw Size",
  2610. power: 2,
  2611. type: "area",
  2612. base: math.unit(0.378, "m^2")
  2613. },
  2614. }
  2615. },
  2616. tail: {
  2617. height: math.unit(12.1, "feet"),
  2618. name: "Tail",
  2619. image: {
  2620. source: "./media/characters/fen/tail.svg"
  2621. }
  2622. },
  2623. tailFull: {
  2624. height: math.unit(12.1, "feet"),
  2625. name: "Full Tail",
  2626. image: {
  2627. source: "./media/characters/fen/tail-full.svg"
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(12, "feet"),
  2632. weight: math.unit(2400, "lb"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/fen/back.svg",
  2636. },
  2637. info: {
  2638. description: {
  2639. mode: "append",
  2640. text: "\n\nHe is not currently looking at you."
  2641. }
  2642. }
  2643. },
  2644. full: {
  2645. height: math.unit(1.85, "meter"),
  2646. weight: math.unit(3200, "lb"),
  2647. preyCapacity: math.unit(3, "people"),
  2648. name: "Full",
  2649. image: {
  2650. source: "./media/characters/fen/full.svg",
  2651. extra: 1133/859,
  2652. bottom: 145/1278
  2653. },
  2654. info: {
  2655. description: {
  2656. mode: "append",
  2657. text: "\n\nMunch."
  2658. }
  2659. }
  2660. },
  2661. gooLounging: {
  2662. height: math.unit(4.53, "feet"),
  2663. weight: math.unit(3000, "lb"),
  2664. preyCapacity: math.unit(6, "people"),
  2665. name: "Goo (Lounging)",
  2666. image: {
  2667. source: "./media/characters/fen/goo-lounging.svg",
  2668. bottom: 116 / 613
  2669. }
  2670. },
  2671. lounging: {
  2672. height: math.unit(10.52, "feet"),
  2673. weight: math.unit(2400, "lb"),
  2674. name: "Lounging",
  2675. image: {
  2676. source: "./media/characters/fen/lounging.svg"
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Small",
  2683. height: math.unit(2.2428, "meter")
  2684. },
  2685. {
  2686. name: "Normal",
  2687. height: math.unit(12, "feet"),
  2688. default: true,
  2689. },
  2690. {
  2691. name: "Big",
  2692. height: math.unit(20, "feet")
  2693. },
  2694. {
  2695. name: "Minimacro",
  2696. height: math.unit(40, "feet"),
  2697. info: {
  2698. description: {
  2699. mode: "append",
  2700. text: "\n\nTOO DAMN BIG"
  2701. }
  2702. }
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(100, "feet"),
  2707. info: {
  2708. description: {
  2709. mode: "append",
  2710. text: "\n\nTOO DAMN BIG"
  2711. }
  2712. }
  2713. },
  2714. {
  2715. name: "Megamacro",
  2716. height: math.unit(2, "miles")
  2717. },
  2718. {
  2719. name: "Gigamacro",
  2720. height: math.unit(10, "earths")
  2721. },
  2722. ]
  2723. ))
  2724. characterMakers.push(() => makeCharacter(
  2725. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2726. {
  2727. front: {
  2728. height: math.unit(183, "cm"),
  2729. weight: math.unit(80, "kg"),
  2730. name: "Front",
  2731. image: {
  2732. source: "./media/characters/sofia-fluttertail/front.svg",
  2733. bottom: 0.01,
  2734. extra: 2154 / 2081
  2735. }
  2736. },
  2737. frontAlt: {
  2738. height: math.unit(183, "cm"),
  2739. weight: math.unit(80, "kg"),
  2740. name: "Front (alt)",
  2741. image: {
  2742. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2743. }
  2744. },
  2745. back: {
  2746. height: math.unit(183, "cm"),
  2747. weight: math.unit(80, "kg"),
  2748. name: "Back",
  2749. image: {
  2750. source: "./media/characters/sofia-fluttertail/back.svg"
  2751. }
  2752. },
  2753. kneeling: {
  2754. height: math.unit(125, "cm"),
  2755. weight: math.unit(80, "kg"),
  2756. name: "Kneeling",
  2757. image: {
  2758. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2759. extra: 1033 / 977,
  2760. bottom: 23.7 / 1057
  2761. }
  2762. },
  2763. maw: {
  2764. height: math.unit(183 / 5, "cm"),
  2765. name: "Maw",
  2766. image: {
  2767. source: "./media/characters/sofia-fluttertail/maw.svg"
  2768. }
  2769. },
  2770. mawcloseup: {
  2771. height: math.unit(183 / 5 * 0.41, "cm"),
  2772. name: "Maw (Closeup)",
  2773. image: {
  2774. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2775. }
  2776. },
  2777. paws: {
  2778. height: math.unit(1.17, "feet"),
  2779. name: "Paws",
  2780. image: {
  2781. source: "./media/characters/sofia-fluttertail/paws.svg",
  2782. extra: 851 / 851,
  2783. bottom: 17 / 868
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(1.83, "meter")
  2791. },
  2792. {
  2793. name: "Size Thief",
  2794. height: math.unit(18, "feet")
  2795. },
  2796. {
  2797. name: "50 Foot Collie",
  2798. height: math.unit(50, "feet")
  2799. },
  2800. {
  2801. name: "Macro",
  2802. height: math.unit(96, "feet"),
  2803. default: true
  2804. },
  2805. {
  2806. name: "Megamerger",
  2807. height: math.unit(650, "feet")
  2808. },
  2809. ]
  2810. ))
  2811. characterMakers.push(() => makeCharacter(
  2812. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2813. {
  2814. front: {
  2815. height: math.unit(7, "feet"),
  2816. weight: math.unit(100, "kg"),
  2817. name: "Front",
  2818. image: {
  2819. source: "./media/characters/march/front.svg",
  2820. extra: 1992/1851,
  2821. bottom: 39/2031
  2822. }
  2823. },
  2824. foot: {
  2825. height: math.unit(0.9, "feet"),
  2826. name: "Foot",
  2827. image: {
  2828. source: "./media/characters/march/foot.svg"
  2829. }
  2830. },
  2831. },
  2832. [
  2833. {
  2834. name: "Normal",
  2835. height: math.unit(7.9, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(220, "meters")
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(2.98, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Gigamacro",
  2848. height: math.unit(15963, "km")
  2849. },
  2850. {
  2851. name: "Teramacro",
  2852. height: math.unit(2980000000, "km")
  2853. },
  2854. {
  2855. name: "Examacro",
  2856. height: math.unit(250, "parsecs")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(6, "feet"),
  2865. weight: math.unit(60, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/noir/front.svg",
  2869. extra: 1793/1668,
  2870. bottom: 74/1867
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(6.6, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(500, "feet")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(2.5, "km"),
  2886. default: true
  2887. },
  2888. {
  2889. name: "Gigamacro",
  2890. height: math.unit(22500, "km")
  2891. },
  2892. {
  2893. name: "Teramacro",
  2894. height: math.unit(2500000000, "km")
  2895. },
  2896. {
  2897. name: "Examacro",
  2898. height: math.unit(200, "parsecs")
  2899. },
  2900. ]
  2901. ))
  2902. characterMakers.push(() => makeCharacter(
  2903. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2904. {
  2905. front: {
  2906. height: math.unit(7, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Front",
  2909. image: {
  2910. source: "./media/characters/okuri/front.svg",
  2911. extra: 739/665,
  2912. bottom: 39/778
  2913. }
  2914. },
  2915. back: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Back",
  2919. image: {
  2920. source: "./media/characters/okuri/back.svg",
  2921. extra: 734/653,
  2922. bottom: 13/747
  2923. }
  2924. },
  2925. sitting: {
  2926. height: math.unit(2.95, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Sitting",
  2929. image: {
  2930. source: "./media/characters/okuri/sitting.svg",
  2931. extra: 370/318,
  2932. bottom: 99/469
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Smallest",
  2939. height: math.unit(5 + 2/12, "feet")
  2940. },
  2941. {
  2942. name: "Smaller",
  2943. height: math.unit(300, "feet")
  2944. },
  2945. {
  2946. name: "Small",
  2947. height: math.unit(1000, "feet")
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(1, "mile")
  2952. },
  2953. {
  2954. name: "Mega Macro (Small)",
  2955. height: math.unit(20, "km")
  2956. },
  2957. {
  2958. name: "Mega Macro (Large)",
  2959. height: math.unit(600, "km")
  2960. },
  2961. {
  2962. name: "Giga Macro",
  2963. height: math.unit(10000, "km")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(577560, "km"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Large",
  2972. height: math.unit(4, "galaxies")
  2973. },
  2974. {
  2975. name: "Largest",
  2976. height: math.unit(15, "multiverses")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7, "feet"),
  2985. weight: math.unit(100, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/manny/front.svg",
  2989. extra: 1,
  2990. bottom: 0.06
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(7, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/manny/back.svg",
  2999. extra: 1,
  3000. bottom: 0.014
  3001. }
  3002. },
  3003. },
  3004. [
  3005. {
  3006. name: "Normal",
  3007. height: math.unit(7, "feet"),
  3008. },
  3009. {
  3010. name: "Macro",
  3011. height: math.unit(78, "feet"),
  3012. default: true
  3013. },
  3014. {
  3015. name: "Macro+",
  3016. height: math.unit(300, "meters")
  3017. },
  3018. {
  3019. name: "Macro++",
  3020. height: math.unit(2400, "meters")
  3021. },
  3022. {
  3023. name: "Megamacro",
  3024. height: math.unit(5167, "meters")
  3025. },
  3026. {
  3027. name: "Gigamacro",
  3028. height: math.unit(41769, "miles")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3034. {
  3035. front: {
  3036. height: math.unit(7, "feet"),
  3037. weight: math.unit(100, "kg"),
  3038. name: "Front",
  3039. image: {
  3040. source: "./media/characters/adake/front-1.svg"
  3041. }
  3042. },
  3043. frontAlt: {
  3044. height: math.unit(7, "feet"),
  3045. weight: math.unit(100, "kg"),
  3046. name: "Front (Alt)",
  3047. image: {
  3048. source: "./media/characters/adake/front-2.svg",
  3049. extra: 1,
  3050. bottom: 0.01
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(7, "feet"),
  3055. weight: math.unit(100, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/adake/back.svg",
  3059. }
  3060. },
  3061. kneel: {
  3062. height: math.unit(5.385, "feet"),
  3063. weight: math.unit(100, "kg"),
  3064. name: "Kneeling",
  3065. image: {
  3066. source: "./media/characters/adake/kneel.svg",
  3067. bottom: 0.052
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(7, "feet"),
  3075. },
  3076. {
  3077. name: "Macro",
  3078. height: math.unit(78, "feet"),
  3079. default: true
  3080. },
  3081. {
  3082. name: "Macro+",
  3083. height: math.unit(300, "meters")
  3084. },
  3085. {
  3086. name: "Macro++",
  3087. height: math.unit(2400, "meters")
  3088. },
  3089. {
  3090. name: "Megamacro",
  3091. height: math.unit(5167, "meters")
  3092. },
  3093. {
  3094. name: "Gigamacro",
  3095. height: math.unit(41769, "miles")
  3096. },
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3101. {
  3102. front: {
  3103. height: math.unit(1.65, "meters"),
  3104. weight: math.unit(50, "kg"),
  3105. name: "Front",
  3106. image: {
  3107. source: "./media/characters/elijah/front.svg",
  3108. extra: 858 / 830,
  3109. bottom: 95.5 / 953.8559
  3110. }
  3111. },
  3112. back: {
  3113. height: math.unit(1.65, "meters"),
  3114. weight: math.unit(50, "kg"),
  3115. name: "Back",
  3116. image: {
  3117. source: "./media/characters/elijah/back.svg",
  3118. extra: 895 / 850,
  3119. bottom: 5.3 / 897.956
  3120. }
  3121. },
  3122. frontNsfw: {
  3123. height: math.unit(1.65, "meters"),
  3124. weight: math.unit(50, "kg"),
  3125. name: "Front (NSFW)",
  3126. image: {
  3127. source: "./media/characters/elijah/front-nsfw.svg",
  3128. extra: 858 / 830,
  3129. bottom: 95.5 / 953.8559
  3130. }
  3131. },
  3132. backNsfw: {
  3133. height: math.unit(1.65, "meters"),
  3134. weight: math.unit(50, "kg"),
  3135. name: "Back (NSFW)",
  3136. image: {
  3137. source: "./media/characters/elijah/back-nsfw.svg",
  3138. extra: 895 / 850,
  3139. bottom: 5.3 / 897.956
  3140. }
  3141. },
  3142. dick: {
  3143. height: math.unit(1, "feet"),
  3144. name: "Dick",
  3145. image: {
  3146. source: "./media/characters/elijah/dick.svg"
  3147. }
  3148. },
  3149. beakOpen: {
  3150. height: math.unit(1.25, "feet"),
  3151. name: "Beak (Open)",
  3152. image: {
  3153. source: "./media/characters/elijah/beak-open.svg"
  3154. }
  3155. },
  3156. beakShut: {
  3157. height: math.unit(1.25, "feet"),
  3158. name: "Beak (Shut)",
  3159. image: {
  3160. source: "./media/characters/elijah/beak-shut.svg"
  3161. }
  3162. },
  3163. footFlexing: {
  3164. height: math.unit(1.61, "feet"),
  3165. name: "Foot (Flexing)",
  3166. image: {
  3167. source: "./media/characters/elijah/foot-flexing.svg"
  3168. }
  3169. },
  3170. footStepping: {
  3171. height: math.unit(1.44, "feet"),
  3172. name: "Foot (Stepping)",
  3173. image: {
  3174. source: "./media/characters/elijah/foot-stepping.svg"
  3175. }
  3176. },
  3177. plantigradeLeg: {
  3178. height: math.unit(2.34, "feet"),
  3179. name: "Plantigrade Leg",
  3180. image: {
  3181. source: "./media/characters/elijah/plantigrade-leg.svg"
  3182. }
  3183. },
  3184. plantigradeFootLeft: {
  3185. height: math.unit(0.9, "feet"),
  3186. name: "Plantigrade Foot (Left)",
  3187. image: {
  3188. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3189. }
  3190. },
  3191. plantigradeFootRight: {
  3192. height: math.unit(0.9, "feet"),
  3193. name: "Plantigrade Foot (Right)",
  3194. image: {
  3195. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3196. }
  3197. },
  3198. },
  3199. [
  3200. {
  3201. name: "Normal",
  3202. height: math.unit(1.65, "meters")
  3203. },
  3204. {
  3205. name: "Macro",
  3206. height: math.unit(55, "meters"),
  3207. default: true
  3208. },
  3209. {
  3210. name: "Macro+",
  3211. height: math.unit(105, "meters")
  3212. },
  3213. ]
  3214. ))
  3215. characterMakers.push(() => makeCharacter(
  3216. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3217. {
  3218. front: {
  3219. height: math.unit(7 + 2/12, "feet"),
  3220. weight: math.unit(320, "kg"),
  3221. preyCapacity: math.unit(0.276549935, "people"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/rai/front.svg",
  3225. extra: 1802/1696,
  3226. bottom: 68/1870
  3227. },
  3228. form: "anthro",
  3229. default: true
  3230. },
  3231. frontDressed: {
  3232. height: math.unit(7 + 2/12, "feet"),
  3233. weight: math.unit(320, "kg"),
  3234. preyCapacity: math.unit(0.276549935, "people"),
  3235. name: "Front (Dressed)",
  3236. image: {
  3237. source: "./media/characters/rai/front-dressed.svg",
  3238. extra: 1802/1696,
  3239. bottom: 68/1870
  3240. },
  3241. form: "anthro"
  3242. },
  3243. side: {
  3244. height: math.unit(7 + 2/12, "feet"),
  3245. weight: math.unit(320, "kg"),
  3246. preyCapacity: math.unit(0.276549935, "people"),
  3247. name: "Side",
  3248. image: {
  3249. source: "./media/characters/rai/side.svg",
  3250. extra: 1789/1710,
  3251. bottom: 115/1904
  3252. },
  3253. form: "anthro"
  3254. },
  3255. back: {
  3256. height: math.unit(7 + 2/12, "feet"),
  3257. weight: math.unit(320, "kg"),
  3258. preyCapacity: math.unit(0.276549935, "people"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/rai/back.svg",
  3262. extra: 1770/1707,
  3263. bottom: 28/1798
  3264. },
  3265. form: "anthro"
  3266. },
  3267. feral: {
  3268. height: math.unit(9.5, "feet"),
  3269. weight: math.unit(640, "kg"),
  3270. preyCapacity: math.unit(4, "people"),
  3271. name: "Feral",
  3272. image: {
  3273. source: "./media/characters/rai/feral.svg",
  3274. extra: 945/553,
  3275. bottom: 176/1121
  3276. },
  3277. form: "feral",
  3278. default: true
  3279. },
  3280. dragon: {
  3281. height: math.unit(23, "feet"),
  3282. weight: math.unit(50000, "lb"),
  3283. name: "Dragon",
  3284. image: {
  3285. source: "./media/characters/rai/dragon.svg",
  3286. extra: 2498 / 2030,
  3287. bottom: 85.2 / 2584
  3288. },
  3289. form: "dragon",
  3290. default: true
  3291. },
  3292. maw: {
  3293. height: math.unit(1.69, "feet"),
  3294. name: "Maw",
  3295. image: {
  3296. source: "./media/characters/rai/maw.svg"
  3297. },
  3298. form: "anthro"
  3299. },
  3300. },
  3301. [
  3302. {
  3303. name: "Normal",
  3304. height: math.unit(7 + 2/12, "feet"),
  3305. form: "anthro"
  3306. },
  3307. {
  3308. name: "Big",
  3309. height: math.unit(11, "feet"),
  3310. form: "anthro"
  3311. },
  3312. {
  3313. name: "Minimacro",
  3314. height: math.unit(77, "feet"),
  3315. form: "anthro"
  3316. },
  3317. {
  3318. name: "Macro",
  3319. height: math.unit(302, "feet"),
  3320. default: true,
  3321. form: "anthro"
  3322. },
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(9.5, "feet"),
  3326. form: "feral",
  3327. default: true
  3328. },
  3329. {
  3330. name: "Normal",
  3331. height: math.unit(23, "feet"),
  3332. form: "dragon",
  3333. default: true
  3334. }
  3335. ],
  3336. {
  3337. "anthro": {
  3338. name: "Anthro",
  3339. default: true
  3340. },
  3341. "feral": {
  3342. name: "Feral",
  3343. },
  3344. "dragon": {
  3345. name: "Dragon",
  3346. },
  3347. }
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3351. {
  3352. frontDressed: {
  3353. height: math.unit(216, "feet"),
  3354. weight: math.unit(7000000, "lb"),
  3355. preyCapacity: math.unit(1321, "people"),
  3356. name: "Front (Dressed)",
  3357. image: {
  3358. source: "./media/characters/jazzy/front-dressed.svg",
  3359. extra: 2738 / 2651,
  3360. bottom: 41.8 / 2786
  3361. }
  3362. },
  3363. backDressed: {
  3364. height: math.unit(216, "feet"),
  3365. weight: math.unit(7000000, "lb"),
  3366. preyCapacity: math.unit(1321, "people"),
  3367. name: "Back (Dressed)",
  3368. image: {
  3369. source: "./media/characters/jazzy/back-dressed.svg",
  3370. extra: 2775 / 2673,
  3371. bottom: 36.8 / 2817
  3372. }
  3373. },
  3374. front: {
  3375. height: math.unit(216, "feet"),
  3376. weight: math.unit(7000000, "lb"),
  3377. preyCapacity: math.unit(1321, "people"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/jazzy/front.svg",
  3381. extra: 2738 / 2651,
  3382. bottom: 41.8 / 2786
  3383. }
  3384. },
  3385. back: {
  3386. height: math.unit(216, "feet"),
  3387. weight: math.unit(7000000, "lb"),
  3388. preyCapacity: math.unit(1321, "people"),
  3389. name: "Back",
  3390. image: {
  3391. source: "./media/characters/jazzy/back.svg",
  3392. extra: 2775 / 2673,
  3393. bottom: 36.8 / 2817
  3394. }
  3395. },
  3396. maw: {
  3397. height: math.unit(20, "feet"),
  3398. name: "Maw",
  3399. image: {
  3400. source: "./media/characters/jazzy/maw.svg"
  3401. }
  3402. },
  3403. paws: {
  3404. height: math.unit(27.5, "feet"),
  3405. name: "Paws",
  3406. image: {
  3407. source: "./media/characters/jazzy/paws.svg"
  3408. }
  3409. },
  3410. eye: {
  3411. height: math.unit(4.4, "feet"),
  3412. name: "Eye",
  3413. image: {
  3414. source: "./media/characters/jazzy/eye.svg"
  3415. }
  3416. },
  3417. droneOffense: {
  3418. height: math.unit(9.5, "inches"),
  3419. name: "Drone (Offense)",
  3420. image: {
  3421. source: "./media/characters/jazzy/drone-offense.svg"
  3422. }
  3423. },
  3424. droneRecon: {
  3425. height: math.unit(9.5, "inches"),
  3426. name: "Drone (Recon)",
  3427. image: {
  3428. source: "./media/characters/jazzy/drone-recon.svg"
  3429. }
  3430. },
  3431. droneDefense: {
  3432. height: math.unit(9.5, "inches"),
  3433. name: "Drone (Defense)",
  3434. image: {
  3435. source: "./media/characters/jazzy/drone-defense.svg"
  3436. }
  3437. },
  3438. },
  3439. [
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(216, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(9 + 6/12, "feet"),
  3452. weight: math.unit(700, "lb"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/flamm/front.svg",
  3456. extra: 1736/1596,
  3457. bottom: 93/1829
  3458. }
  3459. },
  3460. buff: {
  3461. height: math.unit(9 + 6/12, "feet"),
  3462. weight: math.unit(950, "lb"),
  3463. name: "Buff",
  3464. image: {
  3465. source: "./media/characters/flamm/buff.svg",
  3466. extra: 3018/2874,
  3467. bottom: 221/3239
  3468. }
  3469. },
  3470. lyingFront: {
  3471. height: math.unit(9 + 6/12, "feet"),
  3472. weight: math.unit(700, "lb"),
  3473. name: "Lying (Front)",
  3474. image: {
  3475. source: "./media/characters/flamm/lying-front.svg"
  3476. },
  3477. extraAttributes: {
  3478. "ballVolume": {
  3479. name: "Ball Volume",
  3480. power: 3,
  3481. type: "volume",
  3482. base: math.unit(5, "liters")
  3483. },
  3484. }
  3485. },
  3486. lyingBack: {
  3487. height: math.unit(9 + 6/12, "feet"),
  3488. weight: math.unit(700, "lb"),
  3489. name: "Lying (Back)",
  3490. image: {
  3491. source: "./media/characters/flamm/lying-back.svg"
  3492. },
  3493. extraAttributes: {
  3494. "ballVolume": {
  3495. name: "Ball Volume",
  3496. power: 3,
  3497. type: "volume",
  3498. base: math.unit(5, "liters")
  3499. },
  3500. }
  3501. },
  3502. },
  3503. [
  3504. {
  3505. name: "Normal",
  3506. height: math.unit(9.5, "feet")
  3507. },
  3508. {
  3509. name: "Macro",
  3510. height: math.unit(200, "feet"),
  3511. default: true
  3512. },
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(5 + 3/12, "feet"),
  3520. weight: math.unit(60, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/zephiro/front.svg",
  3524. extra: 1873/1761,
  3525. bottom: 147/2020
  3526. }
  3527. },
  3528. side: {
  3529. height: math.unit(5 + 3/12, "feet"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Side",
  3532. image: {
  3533. source: "./media/characters/zephiro/side.svg",
  3534. extra: 1929/1827,
  3535. bottom: 65/1994
  3536. }
  3537. },
  3538. back: {
  3539. height: math.unit(5 + 3/12, "feet"),
  3540. weight: math.unit(60, "kg"),
  3541. name: "Back",
  3542. image: {
  3543. source: "./media/characters/zephiro/back.svg",
  3544. extra: 1926/1816,
  3545. bottom: 41/1967
  3546. }
  3547. },
  3548. hand: {
  3549. height: math.unit(0.68, "feet"),
  3550. name: "Hand",
  3551. image: {
  3552. source: "./media/characters/zephiro/hand.svg"
  3553. }
  3554. },
  3555. paw: {
  3556. height: math.unit(1, "feet"),
  3557. name: "Paw",
  3558. image: {
  3559. source: "./media/characters/zephiro/paw.svg"
  3560. }
  3561. },
  3562. beans: {
  3563. height: math.unit(0.93, "feet"),
  3564. name: "Beans",
  3565. image: {
  3566. source: "./media/characters/zephiro/beans.svg"
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Micro",
  3573. height: math.unit(3, "inches")
  3574. },
  3575. {
  3576. name: "Normal",
  3577. height: math.unit(5 + 3 / 12, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Macro",
  3582. height: math.unit(118, "feet")
  3583. },
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(5, "feet"),
  3591. weight: math.unit(90, "kg"),
  3592. preyCapacity: math.unit(14, "people"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/fory/front.svg",
  3596. extra: 2862 / 2674,
  3597. bottom: 180 / 3043.8
  3598. },
  3599. form: "weaselbun",
  3600. default: true,
  3601. extraAttributes: {
  3602. "pawSize": {
  3603. name: "Paw Size",
  3604. power: 2,
  3605. type: "area",
  3606. base: math.unit(0.1596, "m^2")
  3607. },
  3608. "pawLength": {
  3609. name: "Paw Length",
  3610. power: 1,
  3611. type: "length",
  3612. base: math.unit(0.7, "m")
  3613. }
  3614. }
  3615. },
  3616. back: {
  3617. height: math.unit(5, "feet"),
  3618. weight: math.unit(90, "kg"),
  3619. preyCapacity: math.unit(14, "people"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/fory/back.svg",
  3623. extra: 1790/1672,
  3624. bottom: 84/1874
  3625. },
  3626. form: "weaselbun",
  3627. extraAttributes: {
  3628. "pawSize": {
  3629. name: "Paw Size",
  3630. power: 2,
  3631. type: "area",
  3632. base: math.unit(0.1596, "m^2")
  3633. },
  3634. "pawLength": {
  3635. name: "Paw Length",
  3636. power: 1,
  3637. type: "length",
  3638. base: math.unit(0.7, "m")
  3639. }
  3640. }
  3641. },
  3642. paw: {
  3643. height: math.unit(2.14, "feet"),
  3644. name: "Paw",
  3645. image: {
  3646. source: "./media/characters/fory/paw.svg"
  3647. },
  3648. form: "weaselbun",
  3649. extraAttributes: {
  3650. "pawSize": {
  3651. name: "Paw Size",
  3652. power: 2,
  3653. type: "area",
  3654. base: math.unit(0.1596, "m^2")
  3655. },
  3656. "pawLength": {
  3657. name: "Paw Length",
  3658. power: 1,
  3659. type: "length",
  3660. base: math.unit(0.48, "m")
  3661. }
  3662. }
  3663. },
  3664. bunBack: {
  3665. height: math.unit(3, "feet"),
  3666. weight: math.unit(20, "kg"),
  3667. preyCapacity: math.unit(3, "people"),
  3668. name: "Back",
  3669. image: {
  3670. source: "./media/characters/fory/bun-back.svg",
  3671. extra: 1749/1564,
  3672. bottom: 246/1995
  3673. },
  3674. form: "bun",
  3675. default: true,
  3676. extraAttributes: {
  3677. "pawSize": {
  3678. name: "Paw Size",
  3679. power: 2,
  3680. type: "area",
  3681. base: math.unit(0.072, "m^2")
  3682. },
  3683. "pawLength": {
  3684. name: "Paw Length",
  3685. power: 1,
  3686. type: "length",
  3687. base: math.unit(0.45, "m")
  3688. }
  3689. }
  3690. },
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(5, "feet"),
  3696. form: "weaselbun"
  3697. },
  3698. {
  3699. name: "Macro",
  3700. height: math.unit(50, "feet"),
  3701. default: true,
  3702. form: "weaselbun"
  3703. },
  3704. {
  3705. name: "Megamacro",
  3706. height: math.unit(10, "miles"),
  3707. form: "weaselbun"
  3708. },
  3709. {
  3710. name: "Gigamacro",
  3711. height: math.unit(5, "earths"),
  3712. form: "weaselbun"
  3713. },
  3714. {
  3715. name: "Normal",
  3716. height: math.unit(3, "feet"),
  3717. default: true,
  3718. form: "bun"
  3719. },
  3720. {
  3721. name: "Fun-Size",
  3722. height: math.unit(12, "feet"),
  3723. form: "bun"
  3724. },
  3725. {
  3726. name: "Macro",
  3727. height: math.unit(100, "feet"),
  3728. form: "bun"
  3729. },
  3730. {
  3731. name: "Planetary",
  3732. height: math.unit(3, "earths"),
  3733. form: "bun"
  3734. },
  3735. ],
  3736. {
  3737. "weaselbun": {
  3738. name: "Weaselbun",
  3739. default: true
  3740. },
  3741. "bun": {
  3742. name: "Bun",
  3743. },
  3744. }
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(7, "feet"),
  3751. weight: math.unit(90, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/kurrikage/front.svg",
  3755. extra: 1845/1733,
  3756. bottom: 119/1964
  3757. }
  3758. },
  3759. back: {
  3760. height: math.unit(7, "feet"),
  3761. weight: math.unit(90, "kg"),
  3762. name: "Back",
  3763. image: {
  3764. source: "./media/characters/kurrikage/back.svg",
  3765. extra: 1790/1677,
  3766. bottom: 61/1851
  3767. }
  3768. },
  3769. dressed: {
  3770. height: math.unit(7, "feet"),
  3771. weight: math.unit(90, "kg"),
  3772. name: "Dressed",
  3773. image: {
  3774. source: "./media/characters/kurrikage/dressed.svg",
  3775. extra: 1845/1733,
  3776. bottom: 119/1964
  3777. }
  3778. },
  3779. foot: {
  3780. height: math.unit(1.5, "feet"),
  3781. name: "Foot",
  3782. image: {
  3783. source: "./media/characters/kurrikage/foot.svg"
  3784. }
  3785. },
  3786. staff: {
  3787. height: math.unit(6.7, "feet"),
  3788. name: "Staff",
  3789. image: {
  3790. source: "./media/characters/kurrikage/staff.svg"
  3791. }
  3792. },
  3793. peek: {
  3794. height: math.unit(1.05, "feet"),
  3795. name: "Peeking",
  3796. image: {
  3797. source: "./media/characters/kurrikage/peek.svg",
  3798. bottom: 0.08
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(20, "feet")
  3811. },
  3812. {
  3813. name: "Macro",
  3814. height: math.unit(500, "feet")
  3815. },
  3816. {
  3817. name: "Megamacro",
  3818. height: math.unit(20, "miles")
  3819. },
  3820. ]
  3821. ))
  3822. characterMakers.push(() => makeCharacter(
  3823. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3824. {
  3825. front: {
  3826. height: math.unit(6, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front",
  3829. image: {
  3830. source: "./media/characters/shingo/front.svg",
  3831. extra: 1900/1825,
  3832. bottom: 82/1982
  3833. }
  3834. },
  3835. side: {
  3836. height: math.unit(6, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Side",
  3839. image: {
  3840. source: "./media/characters/shingo/side.svg",
  3841. extra: 1930/1865,
  3842. bottom: 16/1946
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(6, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/shingo/back.svg",
  3851. extra: 1922/1852,
  3852. bottom: 16/1938
  3853. }
  3854. },
  3855. frontDressed: {
  3856. height: math.unit(6, "feet"),
  3857. weight: math.unit(150, "lb"),
  3858. name: "Front (Dressed)",
  3859. image: {
  3860. source: "./media/characters/shingo/front-dressed.svg",
  3861. extra: 1900/1825,
  3862. bottom: 82/1982
  3863. }
  3864. },
  3865. paw: {
  3866. height: math.unit(1.29, "feet"),
  3867. name: "Paw",
  3868. image: {
  3869. source: "./media/characters/shingo/paw.svg"
  3870. }
  3871. },
  3872. hand: {
  3873. height: math.unit(1.07, "feet"),
  3874. name: "Hand",
  3875. image: {
  3876. source: "./media/characters/shingo/hand.svg"
  3877. }
  3878. },
  3879. frontAlt: {
  3880. height: math.unit(6, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Front (Alt)",
  3883. image: {
  3884. source: "./media/characters/shingo/front-alt.svg",
  3885. extra: 3511 / 3338,
  3886. bottom: 0.005
  3887. }
  3888. },
  3889. frontAlt2: {
  3890. height: math.unit(6, "feet"),
  3891. weight: math.unit(75, "kg"),
  3892. name: "Front (Alt 2)",
  3893. image: {
  3894. source: "./media/characters/shingo/front-alt-2.svg",
  3895. extra: 706/681,
  3896. bottom: 11/717
  3897. }
  3898. },
  3899. pawAlt: {
  3900. height: math.unit(1, "feet"),
  3901. name: "Paw (Alt)",
  3902. image: {
  3903. source: "./media/characters/shingo/paw-alt.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Micro",
  3910. height: math.unit(4, "inches")
  3911. },
  3912. {
  3913. name: "Normal",
  3914. height: math.unit(6, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Macro",
  3919. height: math.unit(108, "feet")
  3920. },
  3921. {
  3922. name: "Macro+",
  3923. height: math.unit(1500, "feet")
  3924. },
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3929. {
  3930. side: {
  3931. height: math.unit(6, "feet"),
  3932. weight: math.unit(75, "kg"),
  3933. name: "Side",
  3934. image: {
  3935. source: "./media/characters/aigey/side.svg"
  3936. }
  3937. },
  3938. },
  3939. [
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(200, "feet"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Megamacro",
  3947. height: math.unit(100, "miles")
  3948. },
  3949. ]
  3950. )
  3951. )
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(13, "feet"),
  3957. weight: math.unit(1036.80, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/natasha/front.svg",
  3961. extra: 1301/1210,
  3962. bottom: 39/1340
  3963. }
  3964. },
  3965. back: {
  3966. height: math.unit(13, "feet"),
  3967. weight: math.unit(1036.80, "kg"),
  3968. name: "Back",
  3969. image: {
  3970. source: "./media/characters/natasha/back.svg",
  3971. extra: 1342/1252,
  3972. bottom: 20/1362
  3973. }
  3974. },
  3975. head: {
  3976. height: math.unit(3.48, "feet"),
  3977. name: "Head",
  3978. image: {
  3979. source: "./media/characters/natasha/head.svg"
  3980. }
  3981. },
  3982. jaws: {
  3983. height: math.unit(3.52, "feet"),
  3984. name: "Jaws",
  3985. image: {
  3986. source: "./media/characters/natasha/jaws.svg"
  3987. }
  3988. },
  3989. paws: {
  3990. height: math.unit(2.7, "feet"),
  3991. name: "Paws",
  3992. image: {
  3993. source: "./media/characters/natasha/paws.svg"
  3994. }
  3995. },
  3996. collar: {
  3997. height: math.unit(0.89, "feet"),
  3998. name: "Collar",
  3999. image: {
  4000. source: "./media/characters/natasha/collar.svg"
  4001. }
  4002. },
  4003. gauge: {
  4004. height: math.unit(0.36, "feet"),
  4005. name: "Gauge",
  4006. image: {
  4007. source: "./media/characters/natasha/gauge.svg"
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Shortstack",
  4014. height: math.unit(3, "feet")
  4015. },
  4016. {
  4017. name: "Normal",
  4018. height: math.unit(13, "feet"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Macro",
  4023. height: math.unit(100, "feet")
  4024. },
  4025. {
  4026. name: "Macro+",
  4027. height: math.unit(260, "feet")
  4028. },
  4029. {
  4030. name: "Macro++",
  4031. height: math.unit(1, "mile")
  4032. },
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(6, "feet"),
  4040. weight: math.unit(75, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/malik/front.svg",
  4044. extra: 1750/1561,
  4045. bottom: 80/1830
  4046. },
  4047. extraAttributes: {
  4048. "toeSize": {
  4049. name: "Toe Size",
  4050. power: 2,
  4051. type: "area",
  4052. base: math.unit(0.0159, "m^2")
  4053. },
  4054. "pawSize": {
  4055. name: "Paw Size",
  4056. power: 2,
  4057. type: "area",
  4058. base: math.unit(0.09834, "m^2")
  4059. },
  4060. }
  4061. },
  4062. side: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Side",
  4066. image: {
  4067. source: "./media/characters/malik/side.svg",
  4068. extra: 1802/1685,
  4069. bottom: 42/1844
  4070. },
  4071. extraAttributes: {
  4072. "toeSize": {
  4073. name: "Toe Size",
  4074. power: 2,
  4075. type: "area",
  4076. base: math.unit(0.0159, "m^2")
  4077. },
  4078. "pawSize": {
  4079. name: "Paw Size",
  4080. power: 2,
  4081. type: "area",
  4082. base: math.unit(0.09834, "m^2")
  4083. },
  4084. }
  4085. },
  4086. back: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Back",
  4090. image: {
  4091. source: "./media/characters/malik/back.svg",
  4092. extra: 1803/1607,
  4093. bottom: 33/1836
  4094. },
  4095. extraAttributes: {
  4096. "toeSize": {
  4097. name: "Toe Size",
  4098. power: 2,
  4099. type: "area",
  4100. base: math.unit(0.0159, "m^2")
  4101. },
  4102. "pawSize": {
  4103. name: "Paw Size",
  4104. power: 2,
  4105. type: "area",
  4106. base: math.unit(0.09834, "m^2")
  4107. },
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Macro",
  4114. height: math.unit(156, "feet"),
  4115. default: true
  4116. },
  4117. {
  4118. name: "Macro+",
  4119. height: math.unit(1188, "feet")
  4120. },
  4121. ]
  4122. ))
  4123. characterMakers.push(() => makeCharacter(
  4124. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4125. {
  4126. front: {
  4127. height: math.unit(6, "feet"),
  4128. weight: math.unit(75, "kg"),
  4129. name: "Front",
  4130. image: {
  4131. source: "./media/characters/sefer/front.svg",
  4132. extra: 848 / 659,
  4133. bottom: 28.3 / 876.442
  4134. }
  4135. },
  4136. back: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(75, "kg"),
  4139. name: "Back",
  4140. image: {
  4141. source: "./media/characters/sefer/back.svg",
  4142. extra: 864 / 695,
  4143. bottom: 10 / 871
  4144. }
  4145. },
  4146. frontDressed: {
  4147. height: math.unit(6, "feet"),
  4148. weight: math.unit(75, "kg"),
  4149. name: "Dressed",
  4150. image: {
  4151. source: "./media/characters/sefer/dressed.svg",
  4152. extra: 839 / 653,
  4153. bottom: 37.6 / 878
  4154. }
  4155. },
  4156. },
  4157. [
  4158. {
  4159. name: "Normal",
  4160. height: math.unit(6, "feet"),
  4161. default: true
  4162. },
  4163. {
  4164. name: "Big",
  4165. height: math.unit(8, "meters")
  4166. },
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4171. {
  4172. body: {
  4173. height: math.unit(2.2428, "meter"),
  4174. weight: math.unit(124.738, "kg"),
  4175. name: "Body",
  4176. image: {
  4177. extra: 1225 / 1050,
  4178. source: "./media/characters/north/front.svg"
  4179. }
  4180. }
  4181. },
  4182. [
  4183. {
  4184. name: "Micro",
  4185. height: math.unit(4, "inches")
  4186. },
  4187. {
  4188. name: "Macro",
  4189. height: math.unit(63, "meters")
  4190. },
  4191. {
  4192. name: "Megamacro",
  4193. height: math.unit(101, "miles"),
  4194. default: true
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4200. {
  4201. angled: {
  4202. height: math.unit(4, "meter"),
  4203. weight: math.unit(150, "kg"),
  4204. name: "Angled",
  4205. image: {
  4206. source: "./media/characters/talan/angled-sfw.svg",
  4207. bottom: 29 / 3734
  4208. }
  4209. },
  4210. angledNsfw: {
  4211. height: math.unit(4, "meter"),
  4212. weight: math.unit(150, "kg"),
  4213. name: "Angled (NSFW)",
  4214. image: {
  4215. source: "./media/characters/talan/angled-nsfw.svg",
  4216. bottom: 29 / 3734
  4217. }
  4218. },
  4219. frontNsfw: {
  4220. height: math.unit(4, "meter"),
  4221. weight: math.unit(150, "kg"),
  4222. name: "Front (NSFW)",
  4223. image: {
  4224. source: "./media/characters/talan/front-nsfw.svg",
  4225. bottom: 29 / 3734
  4226. }
  4227. },
  4228. sideNsfw: {
  4229. height: math.unit(4, "meter"),
  4230. weight: math.unit(150, "kg"),
  4231. name: "Side (NSFW)",
  4232. image: {
  4233. source: "./media/characters/talan/side-nsfw.svg",
  4234. bottom: 29 / 3734
  4235. }
  4236. },
  4237. back: {
  4238. height: math.unit(4, "meter"),
  4239. weight: math.unit(150, "kg"),
  4240. name: "Back",
  4241. image: {
  4242. source: "./media/characters/talan/back.svg"
  4243. }
  4244. },
  4245. dickBottom: {
  4246. height: math.unit(0.621, "meter"),
  4247. name: "Dick (Bottom)",
  4248. image: {
  4249. source: "./media/characters/talan/dick-bottom.svg"
  4250. }
  4251. },
  4252. dickTop: {
  4253. height: math.unit(0.621, "meter"),
  4254. name: "Dick (Top)",
  4255. image: {
  4256. source: "./media/characters/talan/dick-top.svg"
  4257. }
  4258. },
  4259. dickSide: {
  4260. height: math.unit(0.305, "meter"),
  4261. name: "Dick (Side)",
  4262. image: {
  4263. source: "./media/characters/talan/dick-side.svg"
  4264. }
  4265. },
  4266. dickFront: {
  4267. height: math.unit(0.305, "meter"),
  4268. name: "Dick (Front)",
  4269. image: {
  4270. source: "./media/characters/talan/dick-front.svg"
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Normal",
  4277. height: math.unit(4, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(100, "meters")
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(2, "miles"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(5000, "miles")
  4291. },
  4292. {
  4293. name: "Teramacro",
  4294. height: math.unit(100, "parsecs")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(90, "kg"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/gael'rathus/front.svg"
  4307. }
  4308. },
  4309. frontAlt: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(90, "kg"),
  4312. name: "Front (alt)",
  4313. image: {
  4314. source: "./media/characters/gael'rathus/front-alt.svg"
  4315. }
  4316. },
  4317. frontAlt2: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(90, "kg"),
  4320. name: "Front (alt 2)",
  4321. image: {
  4322. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4323. }
  4324. }
  4325. },
  4326. [
  4327. {
  4328. name: "Normal",
  4329. height: math.unit(9, "feet"),
  4330. default: true
  4331. },
  4332. {
  4333. name: "Large",
  4334. height: math.unit(25, "feet")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(0.25, "miles")
  4339. },
  4340. {
  4341. name: "Megamacro",
  4342. height: math.unit(10, "miles")
  4343. }
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4348. {
  4349. side: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(140, "kg"),
  4352. name: "Side",
  4353. image: {
  4354. source: "./media/characters/sosha/side.svg",
  4355. extra: 1170/1006,
  4356. bottom: 94/1264
  4357. }
  4358. },
  4359. maw: {
  4360. height: math.unit(2.87, "feet"),
  4361. name: "Maw",
  4362. image: {
  4363. source: "./media/characters/sosha/maw.svg",
  4364. extra: 966/865,
  4365. bottom: 0/966
  4366. }
  4367. },
  4368. cooch: {
  4369. height: math.unit(5.6, "feet"),
  4370. name: "Cooch",
  4371. image: {
  4372. source: "./media/characters/sosha/cooch.svg"
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(12, "feet"),
  4380. default: true
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4386. {
  4387. side: {
  4388. height: math.unit(5 + 5 / 12, "feet"),
  4389. weight: math.unit(170, "kg"),
  4390. name: "Side",
  4391. image: {
  4392. source: "./media/characters/runnola/side.svg",
  4393. extra: 741 / 448,
  4394. bottom: 0.05
  4395. }
  4396. },
  4397. },
  4398. [
  4399. {
  4400. name: "Small",
  4401. height: math.unit(3, "feet")
  4402. },
  4403. {
  4404. name: "Normal",
  4405. height: math.unit(5 + 5 / 12, "feet"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Big",
  4410. height: math.unit(10, "feet")
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(2, "meter"),
  4419. weight: math.unit(50, "kg"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/kurribird/front.svg",
  4423. bottom: 0.015
  4424. }
  4425. },
  4426. frontAlt: {
  4427. height: math.unit(1.5, "meter"),
  4428. weight: math.unit(50, "kg"),
  4429. name: "Front (Alt)",
  4430. image: {
  4431. source: "./media/characters/kurribird/front-alt.svg",
  4432. extra: 1.45
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Normal",
  4439. height: math.unit(7, "feet")
  4440. },
  4441. {
  4442. name: "Big",
  4443. height: math.unit(12, "feet"),
  4444. default: true
  4445. },
  4446. {
  4447. name: "Macro",
  4448. height: math.unit(1500, "feet")
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(2, "miles")
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4458. {
  4459. front: {
  4460. height: math.unit(2, "meter"),
  4461. weight: math.unit(80, "kg"),
  4462. name: "Front",
  4463. image: {
  4464. source: "./media/characters/elbial/front.svg",
  4465. extra: 1643 / 1556,
  4466. bottom: 60.2 / 1696
  4467. }
  4468. },
  4469. side: {
  4470. height: math.unit(2, "meter"),
  4471. weight: math.unit(80, "kg"),
  4472. name: "Side",
  4473. image: {
  4474. source: "./media/characters/elbial/side.svg",
  4475. extra: 1601/1528,
  4476. bottom: 97/1698
  4477. }
  4478. },
  4479. back: {
  4480. height: math.unit(2, "meter"),
  4481. weight: math.unit(80, "kg"),
  4482. name: "Back",
  4483. image: {
  4484. source: "./media/characters/elbial/back.svg",
  4485. extra: 1653/1569,
  4486. bottom: 20/1673
  4487. }
  4488. },
  4489. frontDressed: {
  4490. height: math.unit(2, "meter"),
  4491. weight: math.unit(80, "kg"),
  4492. name: "Front (Dressed)",
  4493. image: {
  4494. source: "./media/characters/elbial/front-dressed.svg",
  4495. extra: 1638/1569,
  4496. bottom: 70/1708
  4497. }
  4498. },
  4499. genitals: {
  4500. height: math.unit(2 / 3.367, "meter"),
  4501. name: "Genitals",
  4502. image: {
  4503. source: "./media/characters/elbial/genitals.svg"
  4504. }
  4505. },
  4506. },
  4507. [
  4508. {
  4509. name: "Large",
  4510. height: math.unit(100, "feet")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(500, "feet"),
  4515. default: true
  4516. },
  4517. {
  4518. name: "Megamacro",
  4519. height: math.unit(10, "miles")
  4520. },
  4521. {
  4522. name: "Gigamacro",
  4523. height: math.unit(25000, "miles")
  4524. },
  4525. {
  4526. name: "Full-Size",
  4527. height: math.unit(8000000, "gigaparsecs")
  4528. }
  4529. ]
  4530. ))
  4531. characterMakers.push(() => makeCharacter(
  4532. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4533. {
  4534. front: {
  4535. height: math.unit(2, "meter"),
  4536. weight: math.unit(60, "kg"),
  4537. name: "Front",
  4538. image: {
  4539. source: "./media/characters/noah/front.svg",
  4540. extra: 1383/1313,
  4541. bottom: 104/1487
  4542. }
  4543. },
  4544. hand: {
  4545. height: math.unit(0.6, "feet"),
  4546. name: "Hand",
  4547. image: {
  4548. source: "./media/characters/noah/hand.svg"
  4549. }
  4550. },
  4551. talons: {
  4552. height: math.unit(1.385, "feet"),
  4553. name: "Talons",
  4554. image: {
  4555. source: "./media/characters/noah/talons.svg"
  4556. }
  4557. },
  4558. beak: {
  4559. height: math.unit(0.43, "feet"),
  4560. name: "Beak",
  4561. image: {
  4562. source: "./media/characters/noah/beak.svg"
  4563. }
  4564. },
  4565. collar: {
  4566. height: math.unit(0.88, "feet"),
  4567. name: "Collar",
  4568. image: {
  4569. source: "./media/characters/noah/collar.svg"
  4570. }
  4571. },
  4572. eyeNarrow: {
  4573. height: math.unit(0.18, "feet"),
  4574. name: "Eye (Narrow)",
  4575. image: {
  4576. source: "./media/characters/noah/eye-narrow.svg"
  4577. }
  4578. },
  4579. eyeNormal: {
  4580. height: math.unit(0.18, "feet"),
  4581. name: "Eye (Normal)",
  4582. image: {
  4583. source: "./media/characters/noah/eye-normal.svg"
  4584. }
  4585. },
  4586. eyeWide: {
  4587. height: math.unit(0.18, "feet"),
  4588. name: "Eye (Wide)",
  4589. image: {
  4590. source: "./media/characters/noah/eye-wide.svg"
  4591. }
  4592. },
  4593. ear: {
  4594. height: math.unit(0.64, "feet"),
  4595. name: "Ear",
  4596. image: {
  4597. source: "./media/characters/noah/ear.svg"
  4598. }
  4599. },
  4600. },
  4601. [
  4602. {
  4603. name: "Large",
  4604. height: math.unit(50, "feet")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(750, "feet"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(50, "miles")
  4614. },
  4615. {
  4616. name: "Gigamacro",
  4617. height: math.unit(100000, "miles")
  4618. },
  4619. {
  4620. name: "Full-Size",
  4621. height: math.unit(3000000000, "miles")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(80, "kg"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/natalya/front.svg"
  4634. }
  4635. },
  4636. back: {
  4637. height: math.unit(2, "meter"),
  4638. weight: math.unit(80, "kg"),
  4639. name: "Back",
  4640. image: {
  4641. source: "./media/characters/natalya/back.svg"
  4642. }
  4643. }
  4644. },
  4645. [
  4646. {
  4647. name: "Normal",
  4648. height: math.unit(150, "feet"),
  4649. default: true
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(5, "miles")
  4654. },
  4655. {
  4656. name: "Full-Size",
  4657. height: math.unit(600, "kiloparsecs")
  4658. }
  4659. ]
  4660. ))
  4661. characterMakers.push(() => makeCharacter(
  4662. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4663. {
  4664. front: {
  4665. height: math.unit(2, "meter"),
  4666. weight: math.unit(50, "kg"),
  4667. name: "Front",
  4668. image: {
  4669. source: "./media/characters/erestrebah/front.svg",
  4670. extra: 1262/1162,
  4671. bottom: 96/1358
  4672. }
  4673. },
  4674. back: {
  4675. height: math.unit(2, "meter"),
  4676. weight: math.unit(50, "kg"),
  4677. name: "Back",
  4678. image: {
  4679. source: "./media/characters/erestrebah/back.svg",
  4680. extra: 1257/1139,
  4681. bottom: 13/1270
  4682. }
  4683. },
  4684. wing: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(50, "kg"),
  4687. name: "Wing",
  4688. image: {
  4689. source: "./media/characters/erestrebah/wing.svg",
  4690. extra: 1262/1162,
  4691. bottom: 96/1358
  4692. }
  4693. },
  4694. mouth: {
  4695. height: math.unit(0.39, "feet"),
  4696. name: "Mouth",
  4697. image: {
  4698. source: "./media/characters/erestrebah/mouth.svg"
  4699. }
  4700. }
  4701. },
  4702. [
  4703. {
  4704. name: "Normal",
  4705. height: math.unit(10, "feet")
  4706. },
  4707. {
  4708. name: "Large",
  4709. height: math.unit(50, "feet"),
  4710. default: true
  4711. },
  4712. {
  4713. name: "Macro",
  4714. height: math.unit(300, "feet")
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(750, "feet")
  4719. },
  4720. {
  4721. name: "Megamacro",
  4722. height: math.unit(3, "miles")
  4723. }
  4724. ]
  4725. ))
  4726. characterMakers.push(() => makeCharacter(
  4727. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4728. {
  4729. front: {
  4730. height: math.unit(2, "meter"),
  4731. weight: math.unit(80, "kg"),
  4732. name: "Front",
  4733. image: {
  4734. source: "./media/characters/jennifer/front.svg",
  4735. bottom: 0.11,
  4736. extra: 1.16
  4737. }
  4738. },
  4739. frontAlt: {
  4740. height: math.unit(2, "meter"),
  4741. weight: math.unit(80, "kg"),
  4742. name: "Front (Alt)",
  4743. image: {
  4744. source: "./media/characters/jennifer/front-alt.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Canon Height",
  4751. height: math.unit(120, "feet"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Macro+",
  4756. height: math.unit(300, "feet")
  4757. },
  4758. {
  4759. name: "Megamacro",
  4760. height: math.unit(20000, "feet")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(50, "kg"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/kalista/front.svg",
  4773. extra: 1314/1145,
  4774. bottom: 101/1415
  4775. }
  4776. },
  4777. back: {
  4778. height: math.unit(2, "meter"),
  4779. weight: math.unit(50, "kg"),
  4780. name: "Back",
  4781. image: {
  4782. source: "./media/characters/kalista/back.svg",
  4783. extra: 1366 / 1156,
  4784. bottom: 33.9 / 1362.78
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Uncomfortably Small",
  4791. height: math.unit(10, "feet")
  4792. },
  4793. {
  4794. name: "Small",
  4795. height: math.unit(30, "feet")
  4796. },
  4797. {
  4798. name: "Macro",
  4799. height: math.unit(100, "feet"),
  4800. default: true
  4801. },
  4802. {
  4803. name: "Macro+",
  4804. height: math.unit(2000, "feet")
  4805. },
  4806. {
  4807. name: "True Form",
  4808. height: math.unit(8924, "miles")
  4809. }
  4810. ]
  4811. ))
  4812. characterMakers.push(() => makeCharacter(
  4813. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4814. {
  4815. front: {
  4816. height: math.unit(2, "meter"),
  4817. weight: math.unit(120, "kg"),
  4818. name: "Front",
  4819. image: {
  4820. source: "./media/characters/ggv/front.svg"
  4821. }
  4822. },
  4823. side: {
  4824. height: math.unit(2, "meter"),
  4825. weight: math.unit(120, "kg"),
  4826. name: "Side",
  4827. image: {
  4828. source: "./media/characters/ggv/side.svg"
  4829. }
  4830. }
  4831. },
  4832. [
  4833. {
  4834. name: "Extremely Puny",
  4835. height: math.unit(9 + 5 / 12, "feet")
  4836. },
  4837. {
  4838. name: "Horribly Small",
  4839. height: math.unit(47.7, "miles"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Reasonably Sized",
  4844. height: math.unit(25000, "parsecs")
  4845. },
  4846. {
  4847. name: "Slightly Uncompressed",
  4848. height: math.unit(7.77e31, "parsecs")
  4849. },
  4850. {
  4851. name: "Omniversal",
  4852. height: math.unit(1e300, "meters")
  4853. },
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(2, "meter"),
  4861. weight: math.unit(75, "lb"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/napalm/front.svg"
  4865. }
  4866. },
  4867. back: {
  4868. height: math.unit(2, "meter"),
  4869. weight: math.unit(75, "lb"),
  4870. name: "Back",
  4871. image: {
  4872. source: "./media/characters/napalm/back.svg"
  4873. }
  4874. }
  4875. },
  4876. [
  4877. {
  4878. name: "Standard",
  4879. height: math.unit(55, "feet"),
  4880. default: true
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(7 + 5 / 6, "feet"),
  4889. weight: math.unit(325, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/asana/front.svg",
  4893. extra: 1133 / 1060,
  4894. bottom: 15.2 / 1148.6
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(7 + 5 / 6, "feet"),
  4899. weight: math.unit(325, "lb"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/asana/back.svg",
  4903. extra: 1114 / 1043,
  4904. bottom: 5 / 1120
  4905. }
  4906. },
  4907. dressedDark: {
  4908. height: math.unit(7 + 5 / 6, "feet"),
  4909. weight: math.unit(325, "lb"),
  4910. name: "Dressed (Dark)",
  4911. image: {
  4912. source: "./media/characters/asana/dressed-dark.svg",
  4913. extra: 1133 / 1060,
  4914. bottom: 15.2 / 1148.6
  4915. }
  4916. },
  4917. dressedLight: {
  4918. height: math.unit(7 + 5 / 6, "feet"),
  4919. weight: math.unit(325, "lb"),
  4920. name: "Dressed (Light)",
  4921. image: {
  4922. source: "./media/characters/asana/dressed-light.svg",
  4923. extra: 1133 / 1060,
  4924. bottom: 15.2 / 1148.6
  4925. }
  4926. },
  4927. },
  4928. [
  4929. {
  4930. name: "Standard",
  4931. height: math.unit(7 + 5 / 6, "feet"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Large",
  4936. height: math.unit(10, "meters")
  4937. },
  4938. {
  4939. name: "Macro",
  4940. height: math.unit(2500, "meters")
  4941. },
  4942. {
  4943. name: "Megamacro",
  4944. height: math.unit(5e6, "meters")
  4945. },
  4946. {
  4947. name: "Examacro",
  4948. height: math.unit(5e12, "lightyears")
  4949. },
  4950. {
  4951. name: "Max Size",
  4952. height: math.unit(1e31, "lightyears")
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4958. {
  4959. front: {
  4960. height: math.unit(2, "meter"),
  4961. weight: math.unit(60, "kg"),
  4962. name: "Front",
  4963. image: {
  4964. source: "./media/characters/ebony/front.svg",
  4965. bottom: 0.03,
  4966. extra: 1045 / 810 + 0.03
  4967. }
  4968. },
  4969. side: {
  4970. height: math.unit(2, "meter"),
  4971. weight: math.unit(60, "kg"),
  4972. name: "Side",
  4973. image: {
  4974. source: "./media/characters/ebony/side.svg",
  4975. bottom: 0.03,
  4976. extra: 1045 / 810 + 0.03
  4977. }
  4978. },
  4979. back: {
  4980. height: math.unit(2, "meter"),
  4981. weight: math.unit(60, "kg"),
  4982. name: "Back",
  4983. image: {
  4984. source: "./media/characters/ebony/back.svg",
  4985. bottom: 0.01,
  4986. extra: 1045 / 810 + 0.01
  4987. }
  4988. },
  4989. },
  4990. [
  4991. // TODO check why I did this lol
  4992. {
  4993. name: "Standard",
  4994. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4995. default: true
  4996. },
  4997. {
  4998. name: "Macro",
  4999. height: math.unit(200, "feet")
  5000. },
  5001. {
  5002. name: "Gigamacro",
  5003. height: math.unit(13000, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(175, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/mountain/front.svg",
  5016. extra: 972 / 955,
  5017. bottom: 64 / 1036.6
  5018. }
  5019. },
  5020. back: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(175, "lb"),
  5023. name: "Back",
  5024. image: {
  5025. source: "./media/characters/mountain/back.svg",
  5026. extra: 970 / 950,
  5027. bottom: 28.25 / 999
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Large",
  5034. height: math.unit(20, "meters")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(300, "meters")
  5039. },
  5040. {
  5041. name: "Gigamacro",
  5042. height: math.unit(10000, "km"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Examacro",
  5047. height: math.unit(10e9, "lightyears")
  5048. }
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(8, "feet"),
  5056. weight: math.unit(500, "lb"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/rick/front.svg"
  5060. }
  5061. }
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(8, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(5, "km")
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(8, "feet"),
  5080. weight: math.unit(120, "lb"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/ona/front.svg"
  5084. }
  5085. },
  5086. frontAlt: {
  5087. height: math.unit(8, "feet"),
  5088. weight: math.unit(120, "lb"),
  5089. name: "Front (Alt)",
  5090. image: {
  5091. source: "./media/characters/ona/front-alt.svg"
  5092. }
  5093. },
  5094. back: {
  5095. height: math.unit(8, "feet"),
  5096. weight: math.unit(120, "lb"),
  5097. name: "Back",
  5098. image: {
  5099. source: "./media/characters/ona/back.svg"
  5100. }
  5101. },
  5102. foot: {
  5103. height: math.unit(1.1, "feet"),
  5104. name: "Foot",
  5105. image: {
  5106. source: "./media/characters/ona/foot.svg"
  5107. }
  5108. }
  5109. },
  5110. [
  5111. {
  5112. name: "Megamacro",
  5113. height: math.unit(70, "km"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Gigamacro",
  5118. height: math.unit(681818, "miles")
  5119. },
  5120. {
  5121. name: "Examacro",
  5122. height: math.unit(3800000, "lightyears")
  5123. },
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5128. {
  5129. front: {
  5130. height: math.unit(12, "feet"),
  5131. weight: math.unit(3000, "lb"),
  5132. name: "Front",
  5133. image: {
  5134. source: "./media/characters/mech/front.svg",
  5135. extra: 2900 / 2770,
  5136. bottom: 110 / 3010
  5137. }
  5138. },
  5139. back: {
  5140. height: math.unit(12, "feet"),
  5141. weight: math.unit(3000, "lb"),
  5142. name: "Back",
  5143. image: {
  5144. source: "./media/characters/mech/back.svg",
  5145. extra: 3011 / 2890,
  5146. bottom: 94 / 3105
  5147. }
  5148. },
  5149. maw: {
  5150. height: math.unit(3.07, "feet"),
  5151. name: "Maw",
  5152. image: {
  5153. source: "./media/characters/mech/maw.svg"
  5154. }
  5155. },
  5156. head: {
  5157. height: math.unit(3.07, "feet"),
  5158. name: "Head",
  5159. image: {
  5160. source: "./media/characters/mech/head.svg"
  5161. }
  5162. },
  5163. dick: {
  5164. height: math.unit(1.43, "feet"),
  5165. name: "Dick",
  5166. image: {
  5167. source: "./media/characters/mech/dick.svg"
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(12, "feet")
  5175. },
  5176. {
  5177. name: "Macro",
  5178. height: math.unit(300, "feet"),
  5179. default: true
  5180. },
  5181. {
  5182. name: "Macro+",
  5183. height: math.unit(1500, "feet")
  5184. },
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(1.3, "meter"),
  5192. weight: math.unit(30, "kg"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/gregory/front.svg",
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(1.3, "meter"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(20, "meter")
  5208. }
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(2.8, "meter"),
  5216. weight: math.unit(200, "kg"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/elory/front.svg",
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(2.8, "meter"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro",
  5231. height: math.unit(38, "meter")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(470, "feet"),
  5240. weight: math.unit(924, "tons"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/angelpatamon/front.svg",
  5244. }
  5245. }
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(470, "feet"),
  5251. default: true
  5252. },
  5253. {
  5254. name: "Deity Size I",
  5255. height: math.unit(28651.2, "km")
  5256. },
  5257. {
  5258. name: "Deity Size II",
  5259. height: math.unit(171907.2, "km")
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5265. {
  5266. side: {
  5267. height: math.unit(7.2, "meter"),
  5268. weight: math.unit(8.2, "tons"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/cryae/side.svg",
  5272. extra: 3500 / 1500
  5273. }
  5274. }
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(7.2, "meter"),
  5280. default: true
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(175, "lb"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/xera/front.svg",
  5293. extra: 2377 / 1972,
  5294. bottom: 75.5 / 2452
  5295. }
  5296. },
  5297. side: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(175, "lb"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/xera/side.svg",
  5303. extra: 2345 / 2019,
  5304. bottom: 39.7 / 2384
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(175, "lb"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/xera/back.svg",
  5313. extra: 2095 / 1984,
  5314. bottom: 67 / 2166
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Small",
  5321. height: math.unit(10, "feet")
  5322. },
  5323. {
  5324. name: "Macro",
  5325. height: math.unit(500, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro+",
  5330. height: math.unit(10, "km")
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(25000, "km")
  5335. },
  5336. {
  5337. name: "Teramacro",
  5338. height: math.unit(3e6, "km")
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(175, "lb"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/nebula/front.svg",
  5351. extra: 2566 / 2362,
  5352. bottom: 81 / 2644
  5353. }
  5354. }
  5355. },
  5356. [
  5357. {
  5358. name: "Small",
  5359. height: math.unit(4.5, "meters")
  5360. },
  5361. {
  5362. name: "Macro",
  5363. height: math.unit(1500, "meters"),
  5364. default: true
  5365. },
  5366. {
  5367. name: "Megamacro",
  5368. height: math.unit(150, "km")
  5369. },
  5370. {
  5371. name: "Gigamacro",
  5372. height: math.unit(27000, "km")
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(225, "lb"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/abysgar/front.svg",
  5385. extra: 1739/1614,
  5386. bottom: 71/1810
  5387. }
  5388. },
  5389. frontNsfw: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(225, "lb"),
  5392. name: "Front (NSFW)",
  5393. image: {
  5394. source: "./media/characters/abysgar/front-nsfw.svg",
  5395. extra: 1739/1614,
  5396. bottom: 71/1810
  5397. }
  5398. },
  5399. back: {
  5400. height: math.unit(4.6, "feet"),
  5401. weight: math.unit(225, "lb"),
  5402. name: "Back",
  5403. image: {
  5404. source: "./media/characters/abysgar/back.svg",
  5405. extra: 1384/1327,
  5406. bottom: 0/1384
  5407. }
  5408. },
  5409. head: {
  5410. height: math.unit(1.25, "feet"),
  5411. name: "Head",
  5412. image: {
  5413. source: "./media/characters/abysgar/head.svg",
  5414. extra: 669/569,
  5415. bottom: 0/669
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Small",
  5422. height: math.unit(4.5, "meters")
  5423. },
  5424. {
  5425. name: "Macro",
  5426. height: math.unit(1250, "meters"),
  5427. default: true
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(125, "km")
  5432. },
  5433. {
  5434. name: "Gigamacro",
  5435. height: math.unit(26000, "km")
  5436. }
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(180, "lb"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/yakuz/front.svg"
  5448. }
  5449. }
  5450. },
  5451. [
  5452. {
  5453. name: "Small",
  5454. height: math.unit(5, "meters")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(1500, "meters"),
  5459. default: true
  5460. },
  5461. {
  5462. name: "Megamacro",
  5463. height: math.unit(200, "km")
  5464. },
  5465. {
  5466. name: "Gigamacro",
  5467. height: math.unit(100000, "km")
  5468. }
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(6, "feet"),
  5476. weight: math.unit(175, "lb"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/mirova/front.svg",
  5480. extra: 3334 / 3071,
  5481. bottom: 42 / 3375.6
  5482. }
  5483. }
  5484. },
  5485. [
  5486. {
  5487. name: "Small",
  5488. height: math.unit(5, "meters")
  5489. },
  5490. {
  5491. name: "Macro",
  5492. height: math.unit(900, "meters"),
  5493. default: true
  5494. },
  5495. {
  5496. name: "Megamacro",
  5497. height: math.unit(135, "km")
  5498. },
  5499. {
  5500. name: "Gigamacro",
  5501. height: math.unit(20000, "km")
  5502. }
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5507. {
  5508. side: {
  5509. height: math.unit(28.35, "feet"),
  5510. weight: math.unit(99.75, "tons"),
  5511. name: "Side",
  5512. image: {
  5513. source: "./media/characters/asana-mech/side.svg",
  5514. extra: 923 / 699,
  5515. bottom: 50 / 975
  5516. }
  5517. },
  5518. chaingun: {
  5519. height: math.unit(7, "feet"),
  5520. weight: math.unit(2400, "lb"),
  5521. name: "Chaingun",
  5522. image: {
  5523. source: "./media/characters/asana-mech/chaingun.svg"
  5524. }
  5525. },
  5526. laser: {
  5527. height: math.unit(7.12, "feet"),
  5528. weight: math.unit(2000, "lb"),
  5529. name: "Laser",
  5530. image: {
  5531. source: "./media/characters/asana-mech/laser.svg"
  5532. }
  5533. },
  5534. },
  5535. [
  5536. {
  5537. name: "Normal",
  5538. height: math.unit(28.35, "feet"),
  5539. default: true
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(2500, "feet")
  5544. },
  5545. {
  5546. name: "Megamacro",
  5547. height: math.unit(25, "miles")
  5548. },
  5549. {
  5550. name: "Examacro",
  5551. height: math.unit(6e8, "lightyears")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(5, "meters"),
  5560. weight: math.unit(1000, "kg"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/asche/front.svg",
  5564. extra: 1258 / 1190,
  5565. bottom: 47 / 1305
  5566. }
  5567. },
  5568. frontUnderwear: {
  5569. height: math.unit(5, "meters"),
  5570. weight: math.unit(1000, "kg"),
  5571. name: "Front (Underwear)",
  5572. image: {
  5573. source: "./media/characters/asche/front-underwear.svg",
  5574. extra: 1258 / 1190,
  5575. bottom: 47 / 1305
  5576. }
  5577. },
  5578. frontDressed: {
  5579. height: math.unit(5, "meters"),
  5580. weight: math.unit(1000, "kg"),
  5581. name: "Front (Dressed)",
  5582. image: {
  5583. source: "./media/characters/asche/front-dressed.svg",
  5584. extra: 1258 / 1190,
  5585. bottom: 47 / 1305
  5586. }
  5587. },
  5588. frontArmor: {
  5589. height: math.unit(5, "meters"),
  5590. weight: math.unit(1000, "kg"),
  5591. name: "Front (Armored)",
  5592. image: {
  5593. source: "./media/characters/asche/front-armored.svg",
  5594. extra: 1374 / 1308,
  5595. bottom: 23 / 1397
  5596. }
  5597. },
  5598. mp724: {
  5599. height: math.unit(0.96, "meters"),
  5600. weight: math.unit(38, "kg"),
  5601. name: "H&K MP724",
  5602. image: {
  5603. source: "./media/characters/asche/h&k-mp724.svg"
  5604. }
  5605. },
  5606. side: {
  5607. height: math.unit(5, "meters"),
  5608. weight: math.unit(1000, "kg"),
  5609. name: "Side",
  5610. image: {
  5611. source: "./media/characters/asche/side.svg",
  5612. extra: 1717 / 1609,
  5613. bottom: 0.005
  5614. }
  5615. },
  5616. back: {
  5617. height: math.unit(5, "meters"),
  5618. weight: math.unit(1000, "kg"),
  5619. name: "Back",
  5620. image: {
  5621. source: "./media/characters/asche/back.svg",
  5622. extra: 1570 / 1501
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "DEFCON 5",
  5629. height: math.unit(5, "meters")
  5630. },
  5631. {
  5632. name: "DEFCON 4",
  5633. height: math.unit(500, "meters"),
  5634. default: true
  5635. },
  5636. {
  5637. name: "DEFCON 3",
  5638. height: math.unit(5, "km")
  5639. },
  5640. {
  5641. name: "DEFCON 2",
  5642. height: math.unit(500, "km")
  5643. },
  5644. {
  5645. name: "DEFCON 1",
  5646. height: math.unit(500000, "km")
  5647. },
  5648. {
  5649. name: "DEFCON 0",
  5650. height: math.unit(3, "gigaparsecs")
  5651. },
  5652. ]
  5653. ))
  5654. characterMakers.push(() => makeCharacter(
  5655. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5656. {
  5657. front: {
  5658. height: math.unit(7, "feet"),
  5659. weight: math.unit(92.7, "kg"),
  5660. name: "Front",
  5661. image: {
  5662. source: "./media/characters/gale/front.svg",
  5663. extra: 977/919,
  5664. bottom: 105/1082
  5665. }
  5666. },
  5667. side: {
  5668. height: math.unit(6.7, "feet"),
  5669. weight: math.unit(92.7, "kg"),
  5670. name: "Side",
  5671. image: {
  5672. source: "./media/characters/gale/side.svg",
  5673. extra: 978/922,
  5674. bottom: 140/1118
  5675. }
  5676. },
  5677. back: {
  5678. height: math.unit(7, "feet"),
  5679. weight: math.unit(92.7, "kg"),
  5680. name: "Back",
  5681. image: {
  5682. source: "./media/characters/gale/back.svg",
  5683. extra: 966/920,
  5684. bottom: 61/1027
  5685. }
  5686. },
  5687. maw: {
  5688. height: math.unit(2.23, "feet"),
  5689. name: "Maw",
  5690. image: {
  5691. source: "./media/characters/gale/maw.svg"
  5692. }
  5693. },
  5694. foot: {
  5695. height: math.unit(2.1, "feet"),
  5696. name: "Foot",
  5697. image: {
  5698. source: "./media/characters/gale/foot.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(7, "feet")
  5706. },
  5707. {
  5708. name: "Macro",
  5709. height: math.unit(150, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro+",
  5714. height: math.unit(300, "feet")
  5715. },
  5716. ]
  5717. ))
  5718. characterMakers.push(() => makeCharacter(
  5719. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5720. {
  5721. front: {
  5722. height: math.unit(5 + 10/12, "feet"),
  5723. weight: math.unit(67, "kg"),
  5724. name: "Front",
  5725. image: {
  5726. source: "./media/characters/draylen/front.svg",
  5727. extra: 832/777,
  5728. bottom: 85/917
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(5 + 10/12, "feet")
  5736. },
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(150, "feet"),
  5740. default: true
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(7 + 9 / 12, "feet"),
  5749. weight: math.unit(379, "lbs"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/chez/front.svg"
  5753. }
  5754. },
  5755. side: {
  5756. height: math.unit(7 + 9 / 12, "feet"),
  5757. weight: math.unit(379, "lbs"),
  5758. name: "Side",
  5759. image: {
  5760. source: "./media/characters/chez/side.svg"
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(7 + 9 / 12, "feet"),
  5768. default: true
  5769. },
  5770. {
  5771. name: "God King",
  5772. height: math.unit(9750000, "meters")
  5773. }
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5778. {
  5779. front: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(275, "lbs"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/kaylum/front.svg",
  5785. bottom: 0.01,
  5786. extra: 1166 / 1031
  5787. }
  5788. },
  5789. frontWingless: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(275, "lbs"),
  5792. name: "Front (Wingless)",
  5793. image: {
  5794. source: "./media/characters/kaylum/front-wingless.svg",
  5795. bottom: 0.01,
  5796. extra: 1117 / 1031
  5797. }
  5798. }
  5799. },
  5800. [
  5801. {
  5802. name: "Normal",
  5803. height: math.unit(3.05, "meters")
  5804. },
  5805. {
  5806. name: "Master",
  5807. height: math.unit(5.5, "meters")
  5808. },
  5809. {
  5810. name: "Rampage",
  5811. height: math.unit(19, "meters")
  5812. },
  5813. {
  5814. name: "Macro Lite",
  5815. height: math.unit(37, "meters")
  5816. },
  5817. {
  5818. name: "Hyper Predator",
  5819. height: math.unit(61, "meters")
  5820. },
  5821. {
  5822. name: "Macro",
  5823. height: math.unit(138, "meters"),
  5824. default: true
  5825. }
  5826. ]
  5827. ))
  5828. characterMakers.push(() => makeCharacter(
  5829. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5830. {
  5831. front: {
  5832. height: math.unit(5 + 5 / 12, "feet"),
  5833. weight: math.unit(120, "lbs"),
  5834. name: "Front",
  5835. image: {
  5836. source: "./media/characters/geta/front.svg",
  5837. extra: 1003/933,
  5838. bottom: 21/1024
  5839. }
  5840. },
  5841. paw: {
  5842. height: math.unit(0.35, "feet"),
  5843. name: "Paw",
  5844. image: {
  5845. source: "./media/characters/geta/paw.svg"
  5846. }
  5847. },
  5848. },
  5849. [
  5850. {
  5851. name: "Micro",
  5852. height: math.unit(3, "inches"),
  5853. default: true
  5854. },
  5855. {
  5856. name: "Normal",
  5857. height: math.unit(5 + 5 / 12, "feet")
  5858. }
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(300, "lbs"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/tyrnn/front.svg"
  5870. }
  5871. }
  5872. },
  5873. [
  5874. {
  5875. name: "Main Height",
  5876. height: math.unit(355, "feet"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Fave. Height",
  5881. height: math.unit(2400, "feet")
  5882. }
  5883. ]
  5884. ))
  5885. characterMakers.push(() => makeCharacter(
  5886. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5887. {
  5888. front: {
  5889. height: math.unit(6, "feet"),
  5890. weight: math.unit(300, "lbs"),
  5891. name: "Front",
  5892. image: {
  5893. source: "./media/characters/appledectomy/front.svg"
  5894. }
  5895. }
  5896. },
  5897. [
  5898. {
  5899. name: "Macro",
  5900. height: math.unit(2500, "feet")
  5901. },
  5902. {
  5903. name: "Megamacro",
  5904. height: math.unit(50, "miles"),
  5905. default: true
  5906. },
  5907. {
  5908. name: "Gigamacro",
  5909. height: math.unit(5000, "miles")
  5910. },
  5911. {
  5912. name: "Teramacro",
  5913. height: math.unit(250000, "miles")
  5914. },
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5919. {
  5920. front: {
  5921. height: math.unit(6, "feet"),
  5922. weight: math.unit(200, "lbs"),
  5923. name: "Front",
  5924. image: {
  5925. source: "./media/characters/vulpes/front.svg",
  5926. extra: 573 / 543,
  5927. bottom: 0.033
  5928. }
  5929. },
  5930. side: {
  5931. height: math.unit(6, "feet"),
  5932. weight: math.unit(200, "lbs"),
  5933. name: "Side",
  5934. image: {
  5935. source: "./media/characters/vulpes/side.svg",
  5936. extra: 577 / 549,
  5937. bottom: 11 / 588
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(200, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/vulpes/back.svg",
  5946. extra: 573 / 549,
  5947. bottom: 20 / 593
  5948. }
  5949. },
  5950. feet: {
  5951. height: math.unit(1.276, "feet"),
  5952. name: "Feet",
  5953. image: {
  5954. source: "./media/characters/vulpes/feet.svg"
  5955. }
  5956. },
  5957. maw: {
  5958. height: math.unit(1.18, "feet"),
  5959. name: "Maw",
  5960. image: {
  5961. source: "./media/characters/vulpes/maw.svg"
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Micro",
  5968. height: math.unit(2, "inches")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(6.3, "feet")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(850, "feet")
  5977. },
  5978. {
  5979. name: "Megamacro",
  5980. height: math.unit(7500, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Gigamacro",
  5985. height: math.unit(570000, "miles")
  5986. }
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5991. {
  5992. front: {
  5993. height: math.unit(6, "feet"),
  5994. weight: math.unit(210, "lbs"),
  5995. name: "Front",
  5996. image: {
  5997. source: "./media/characters/rain-fallen/front.svg"
  5998. }
  5999. },
  6000. side: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(210, "lbs"),
  6003. name: "Side",
  6004. image: {
  6005. source: "./media/characters/rain-fallen/side.svg"
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(210, "lbs"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/rain-fallen/back.svg"
  6014. }
  6015. },
  6016. feral: {
  6017. height: math.unit(9, "feet"),
  6018. weight: math.unit(700, "lbs"),
  6019. name: "Feral",
  6020. image: {
  6021. source: "./media/characters/rain-fallen/feral.svg"
  6022. }
  6023. },
  6024. },
  6025. [
  6026. {
  6027. name: "Meddling with Mortals",
  6028. height: math.unit(8 + 8/12, "feet")
  6029. },
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(5, "meter")
  6033. },
  6034. {
  6035. name: "Macro",
  6036. height: math.unit(150, "meter"),
  6037. default: true
  6038. },
  6039. {
  6040. name: "Megamacro",
  6041. height: math.unit(278e6, "meter")
  6042. },
  6043. {
  6044. name: "Gigamacro",
  6045. height: math.unit(2e9, "meter")
  6046. },
  6047. {
  6048. name: "Teramacro",
  6049. height: math.unit(8e12, "meter")
  6050. },
  6051. {
  6052. name: "Devourer",
  6053. height: math.unit(14, "zettameters")
  6054. },
  6055. {
  6056. name: "Scarlet King",
  6057. height: math.unit(18, "yottameters")
  6058. },
  6059. {
  6060. name: "Void",
  6061. height: math.unit(1e88, "yottameters")
  6062. }
  6063. ]
  6064. ))
  6065. characterMakers.push(() => makeCharacter(
  6066. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6067. {
  6068. standing: {
  6069. height: math.unit(6, "feet"),
  6070. weight: math.unit(180, "lbs"),
  6071. name: "Standing",
  6072. image: {
  6073. source: "./media/characters/zaakira/standing.svg",
  6074. extra: 1599/1504,
  6075. bottom: 39/1638
  6076. }
  6077. },
  6078. laying: {
  6079. height: math.unit(3.3, "feet"),
  6080. weight: math.unit(180, "lbs"),
  6081. name: "Laying",
  6082. image: {
  6083. source: "./media/characters/zaakira/laying.svg"
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(12, "feet")
  6091. },
  6092. {
  6093. name: "Macro",
  6094. height: math.unit(279, "feet"),
  6095. default: true
  6096. }
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6101. {
  6102. femSfw: {
  6103. height: math.unit(8, "feet"),
  6104. weight: math.unit(350, "lb"),
  6105. name: "Fem",
  6106. image: {
  6107. source: "./media/characters/sigvald/fem-sfw.svg",
  6108. extra: 182 / 164,
  6109. bottom: 8.7 / 190.5
  6110. }
  6111. },
  6112. femNsfw: {
  6113. height: math.unit(8, "feet"),
  6114. weight: math.unit(350, "lb"),
  6115. name: "Fem (NSFW)",
  6116. image: {
  6117. source: "./media/characters/sigvald/fem-nsfw.svg",
  6118. extra: 182 / 164,
  6119. bottom: 8.7 / 190.5
  6120. }
  6121. },
  6122. maleNsfw: {
  6123. height: math.unit(8, "feet"),
  6124. weight: math.unit(350, "lb"),
  6125. name: "Male (NSFW)",
  6126. image: {
  6127. source: "./media/characters/sigvald/male-nsfw.svg",
  6128. extra: 182 / 164,
  6129. bottom: 8.7 / 190.5
  6130. }
  6131. },
  6132. hermNsfw: {
  6133. height: math.unit(8, "feet"),
  6134. weight: math.unit(350, "lb"),
  6135. name: "Herm (NSFW)",
  6136. image: {
  6137. source: "./media/characters/sigvald/herm-nsfw.svg",
  6138. extra: 182 / 164,
  6139. bottom: 8.7 / 190.5
  6140. }
  6141. },
  6142. dick: {
  6143. height: math.unit(2.36, "feet"),
  6144. name: "Dick",
  6145. image: {
  6146. source: "./media/characters/sigvald/dick.svg"
  6147. }
  6148. },
  6149. eye: {
  6150. height: math.unit(0.31, "feet"),
  6151. name: "Eye",
  6152. image: {
  6153. source: "./media/characters/sigvald/eye.svg"
  6154. }
  6155. },
  6156. mouth: {
  6157. height: math.unit(0.92, "feet"),
  6158. name: "Mouth",
  6159. image: {
  6160. source: "./media/characters/sigvald/mouth.svg"
  6161. }
  6162. },
  6163. paws: {
  6164. height: math.unit(2.2, "feet"),
  6165. name: "Paws",
  6166. image: {
  6167. source: "./media/characters/sigvald/paws.svg"
  6168. }
  6169. }
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(8, "feet")
  6175. },
  6176. {
  6177. name: "Large",
  6178. height: math.unit(12, "feet")
  6179. },
  6180. {
  6181. name: "Larger",
  6182. height: math.unit(20, "feet")
  6183. },
  6184. {
  6185. name: "Macro",
  6186. height: math.unit(150, "feet")
  6187. },
  6188. {
  6189. name: "Macro+",
  6190. height: math.unit(200, "feet"),
  6191. default: true
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6197. {
  6198. anthro_front: {
  6199. height: math.unit(5 + 11/12, "feet"),
  6200. weight: math.unit(250, "lb"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/scott/anthro-front.svg",
  6204. extra: 851/781,
  6205. bottom: 54/905
  6206. },
  6207. form: "anthro",
  6208. default: true
  6209. },
  6210. anthro_side: {
  6211. height: math.unit(5.1, "feet"),
  6212. weight: math.unit(250, "lb"),
  6213. name: "Side",
  6214. image: {
  6215. source: "./media/characters/scott/anthro-side.svg"
  6216. },
  6217. form: "anthro",
  6218. },
  6219. anthro_dick: {
  6220. height: math.unit(1.33, "feet"),
  6221. name: "Dick",
  6222. image: {
  6223. source: "./media/characters/scott/anthro-dick.svg"
  6224. },
  6225. form: "anthro",
  6226. },
  6227. side: {
  6228. height: math.unit(12, "feet"),
  6229. weight: math.unit(2000, "kg"),
  6230. name: "Side",
  6231. image: {
  6232. source: "./media/characters/scott/side.svg",
  6233. extra: 754 / 724,
  6234. bottom: 0.069
  6235. },
  6236. form: "taur",
  6237. default: true
  6238. },
  6239. upright: {
  6240. height: math.unit(12, "feet"),
  6241. weight: math.unit(2000, "kg"),
  6242. name: "Upright",
  6243. image: {
  6244. source: "./media/characters/scott/upright.svg",
  6245. extra: 3881 / 3722,
  6246. bottom: 0.05
  6247. },
  6248. form: "taur",
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(5 + 11/12, "feet"),
  6255. default: true,
  6256. form: "anthro"
  6257. },
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(12, "feet"),
  6261. default: true,
  6262. form: "taur"
  6263. },
  6264. ],
  6265. {
  6266. "anthro": {
  6267. name: "Anthro",
  6268. default: true
  6269. },
  6270. "taur": {
  6271. name: "Taur",
  6272. },
  6273. }
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6277. {
  6278. side: {
  6279. height: math.unit(8, "meters"),
  6280. weight: math.unit(84755, "lbs"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/tobias/side.svg",
  6284. extra: 1474 / 1096,
  6285. bottom: 38.9 / 1513.1235
  6286. }
  6287. },
  6288. maw: {
  6289. height: math.unit(2.3, "meters"),
  6290. name: "Maw",
  6291. image: {
  6292. source: "./media/characters/tobias/maw.svg"
  6293. }
  6294. },
  6295. burp: {
  6296. height: math.unit(2.85, "meters"),
  6297. name: "Burp",
  6298. image: {
  6299. source: "./media/characters/tobias/burp.svg"
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(8, "meters"),
  6307. default: true
  6308. },
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6313. {
  6314. front: {
  6315. height: math.unit(5.5, "feet"),
  6316. weight: math.unit(400, "lbs"),
  6317. name: "Front",
  6318. image: {
  6319. source: "./media/characters/kieran/front.svg",
  6320. extra: 2694 / 2364,
  6321. bottom: 217 / 2908
  6322. }
  6323. },
  6324. side: {
  6325. height: math.unit(5.5, "feet"),
  6326. weight: math.unit(400, "lbs"),
  6327. name: "Side",
  6328. image: {
  6329. source: "./media/characters/kieran/side.svg",
  6330. extra: 875 / 777,
  6331. bottom: 84.6 / 959
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(5.5, "feet"),
  6339. default: true
  6340. },
  6341. ]
  6342. ))
  6343. characterMakers.push(() => makeCharacter(
  6344. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6345. {
  6346. side: {
  6347. height: math.unit(2, "meters"),
  6348. weight: math.unit(70, "kg"),
  6349. name: "Side",
  6350. image: {
  6351. source: "./media/characters/sanya/side.svg",
  6352. bottom: 0.02,
  6353. extra: 1.02
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Small",
  6360. height: math.unit(2, "meters")
  6361. },
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(3, "meters")
  6365. },
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(16, "meters"),
  6369. default: true
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(2, "meters"),
  6378. weight: math.unit(120, "kg"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/miranda/front.svg",
  6382. extra: 195 / 185,
  6383. bottom: 10.9 / 206.5
  6384. }
  6385. },
  6386. back: {
  6387. height: math.unit(2, "meters"),
  6388. weight: math.unit(120, "kg"),
  6389. name: "Back",
  6390. image: {
  6391. source: "./media/characters/miranda/back.svg",
  6392. extra: 201 / 193,
  6393. bottom: 2.3 / 203.7
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Normal",
  6400. height: math.unit(10, "feet"),
  6401. default: true
  6402. }
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "James", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. side: {
  6409. height: math.unit(2, "meters"),
  6410. weight: math.unit(100, "kg"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/james/front.svg",
  6414. extra: 10 / 8.5
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(8.5, "feet"),
  6422. default: true
  6423. }
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6428. {
  6429. side: {
  6430. height: math.unit(9.5, "feet"),
  6431. weight: math.unit(2500, "lbs"),
  6432. name: "Side",
  6433. image: {
  6434. source: "./media/characters/heather/side.svg"
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(9.5, "feet"),
  6442. default: true
  6443. }
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6448. {
  6449. side: {
  6450. height: math.unit(6.5, "feet"),
  6451. weight: math.unit(400, "lbs"),
  6452. name: "Side",
  6453. image: {
  6454. source: "./media/characters/lukas/side.svg",
  6455. extra: 7.25 / 6.5
  6456. }
  6457. },
  6458. },
  6459. [
  6460. {
  6461. name: "Normal",
  6462. height: math.unit(6.5, "feet"),
  6463. default: true
  6464. }
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6469. {
  6470. side: {
  6471. height: math.unit(5, "feet"),
  6472. weight: math.unit(3000, "lbs"),
  6473. name: "Side",
  6474. image: {
  6475. source: "./media/characters/louise/side.svg"
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(5, "feet"),
  6483. default: true
  6484. }
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6489. {
  6490. side: {
  6491. height: math.unit(6, "feet"),
  6492. weight: math.unit(150, "lbs"),
  6493. name: "Side",
  6494. image: {
  6495. source: "./media/characters/ramona/side.svg",
  6496. extra: 871/854,
  6497. bottom: 41/912
  6498. }
  6499. },
  6500. },
  6501. [
  6502. {
  6503. name: "Normal",
  6504. height: math.unit(6 + 4/12, "feet")
  6505. },
  6506. {
  6507. name: "Minimacro",
  6508. height: math.unit(5.3, "meters"),
  6509. default: true
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(20, "stories")
  6514. },
  6515. {
  6516. name: "Macro+",
  6517. height: math.unit(50, "stories")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6523. {
  6524. standing: {
  6525. height: math.unit(5.75, "feet"),
  6526. weight: math.unit(160, "lbs"),
  6527. name: "Standing",
  6528. image: {
  6529. source: "./media/characters/deerpuff/standing.svg",
  6530. extra: 682 / 624
  6531. }
  6532. },
  6533. sitting: {
  6534. height: math.unit(5.75 / 1.79, "feet"),
  6535. weight: math.unit(160, "lbs"),
  6536. name: "Sitting",
  6537. image: {
  6538. source: "./media/characters/deerpuff/sitting.svg",
  6539. bottom: 44 / 400,
  6540. extra: 1
  6541. }
  6542. },
  6543. taurLaying: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(400, "lbs"),
  6546. name: "Taur (Laying)",
  6547. image: {
  6548. source: "./media/characters/deerpuff/taur-laying.svg"
  6549. }
  6550. },
  6551. },
  6552. [
  6553. {
  6554. name: "Puffball",
  6555. height: math.unit(6, "inches")
  6556. },
  6557. {
  6558. name: "Normalpuff",
  6559. height: math.unit(5.75, "feet")
  6560. },
  6561. {
  6562. name: "Macropuff",
  6563. height: math.unit(1500, "feet"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Megapuff",
  6568. height: math.unit(500, "miles")
  6569. },
  6570. {
  6571. name: "Gigapuff",
  6572. height: math.unit(250000, "miles")
  6573. },
  6574. {
  6575. name: "Omegapuff",
  6576. height: math.unit(1000, "lightyears")
  6577. },
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6582. {
  6583. stomping: {
  6584. height: math.unit(6, "feet"),
  6585. weight: math.unit(170, "lbs"),
  6586. name: "Stomping",
  6587. image: {
  6588. source: "./media/characters/vivian/stomping.svg"
  6589. }
  6590. },
  6591. sitting: {
  6592. height: math.unit(6 / 1.75, "feet"),
  6593. weight: math.unit(170, "lbs"),
  6594. name: "Sitting",
  6595. image: {
  6596. source: "./media/characters/vivian/sitting.svg",
  6597. bottom: 1 / 6.4,
  6598. extra: 1,
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Macro",
  6610. height: math.unit(10, "stories")
  6611. },
  6612. {
  6613. name: "Macro+",
  6614. height: math.unit(30, "stories")
  6615. },
  6616. {
  6617. name: "Megamacro",
  6618. height: math.unit(10, "miles")
  6619. },
  6620. {
  6621. name: "Megamacro+",
  6622. height: math.unit(2750000, "meters")
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(160, "lbs"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/prince/front.svg",
  6635. extra: 1938/1682,
  6636. bottom: 45/1983
  6637. }
  6638. },
  6639. back: {
  6640. height: math.unit(6, "feet"),
  6641. weight: math.unit(160, "lbs"),
  6642. name: "Back",
  6643. image: {
  6644. source: "./media/characters/prince/back.svg",
  6645. extra: 1955/1726,
  6646. bottom: 6/1961
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(7.75, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Not cute",
  6658. height: math.unit(17, "feet")
  6659. },
  6660. {
  6661. name: "I said NOT",
  6662. height: math.unit(91, "feet")
  6663. },
  6664. {
  6665. name: "Please stop",
  6666. height: math.unit(560, "feet")
  6667. },
  6668. {
  6669. name: "What have you done",
  6670. height: math.unit(2200, "feet")
  6671. },
  6672. {
  6673. name: "Deer God",
  6674. height: math.unit(3.6, "miles")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6680. {
  6681. standing: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(300, "lbs"),
  6684. name: "Standing",
  6685. image: {
  6686. source: "./media/characters/psymon/standing.svg",
  6687. extra: 1888 / 1810,
  6688. bottom: 0.05
  6689. }
  6690. },
  6691. slithering: {
  6692. height: math.unit(6, "feet"),
  6693. weight: math.unit(300, "lbs"),
  6694. name: "Slithering",
  6695. image: {
  6696. source: "./media/characters/psymon/slithering.svg",
  6697. extra: 1330 / 1224
  6698. }
  6699. },
  6700. slitheringAlt: {
  6701. height: math.unit(6, "feet"),
  6702. weight: math.unit(300, "lbs"),
  6703. name: "Slithering (Alt)",
  6704. image: {
  6705. source: "./media/characters/psymon/slithering-alt.svg",
  6706. extra: 1330 / 1224
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Normal",
  6713. height: math.unit(11.25, "feet"),
  6714. default: true
  6715. },
  6716. {
  6717. name: "Large",
  6718. height: math.unit(27, "feet")
  6719. },
  6720. {
  6721. name: "Giant",
  6722. height: math.unit(87, "feet")
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(365, "feet")
  6727. },
  6728. {
  6729. name: "Megamacro",
  6730. height: math.unit(3, "miles")
  6731. },
  6732. {
  6733. name: "World Serpent",
  6734. height: math.unit(8000, "miles")
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(180, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/daimos/front.svg",
  6747. extra: 4160 / 3897,
  6748. bottom: 0.021
  6749. }
  6750. }
  6751. },
  6752. [
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(8, "feet"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Big Dog",
  6760. height: math.unit(22, "feet")
  6761. },
  6762. {
  6763. name: "Macro",
  6764. height: math.unit(127, "feet")
  6765. },
  6766. {
  6767. name: "Megamacro",
  6768. height: math.unit(3600, "feet")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6774. {
  6775. side: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(180, "lbs"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/blake/side.svg",
  6781. extra: 1212 / 1120,
  6782. bottom: 0.05
  6783. }
  6784. },
  6785. crouched: {
  6786. height: math.unit(6 * 0.57, "feet"),
  6787. weight: math.unit(180, "lbs"),
  6788. name: "Crouched",
  6789. image: {
  6790. source: "./media/characters/blake/crouched.svg",
  6791. extra: 840 / 587,
  6792. bottom: 0.04
  6793. }
  6794. },
  6795. bent: {
  6796. height: math.unit(6 * 0.75, "feet"),
  6797. weight: math.unit(180, "lbs"),
  6798. name: "Bent",
  6799. image: {
  6800. source: "./media/characters/blake/bent.svg",
  6801. extra: 592 / 544,
  6802. bottom: 0.035
  6803. }
  6804. },
  6805. },
  6806. [
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(8 + 1 / 6, "feet"),
  6810. default: true
  6811. },
  6812. {
  6813. name: "Big Backside",
  6814. height: math.unit(37, "feet")
  6815. },
  6816. {
  6817. name: "Subway Shredder",
  6818. height: math.unit(72, "feet")
  6819. },
  6820. {
  6821. name: "City Carver",
  6822. height: math.unit(1675, "feet")
  6823. },
  6824. {
  6825. name: "Tectonic Tweaker",
  6826. height: math.unit(2300, "miles")
  6827. },
  6828. ]
  6829. ))
  6830. characterMakers.push(() => makeCharacter(
  6831. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6832. {
  6833. front: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(180, "lbs"),
  6836. name: "Front",
  6837. image: {
  6838. source: "./media/characters/guisetto/front.svg",
  6839. extra: 856 / 817,
  6840. bottom: 0.06
  6841. }
  6842. },
  6843. airborne: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(180, "lbs"),
  6846. name: "Airborne",
  6847. image: {
  6848. source: "./media/characters/guisetto/airborne.svg",
  6849. extra: 584 / 525
  6850. }
  6851. },
  6852. },
  6853. [
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(10 + 11 / 12, "feet"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "Large",
  6861. height: math.unit(35, "feet")
  6862. },
  6863. {
  6864. name: "Macro",
  6865. height: math.unit(475, "feet")
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(180, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/luxor/front.svg",
  6878. extra: 2940 / 2152
  6879. }
  6880. },
  6881. back: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(180, "lbs"),
  6884. name: "Back",
  6885. image: {
  6886. source: "./media/characters/luxor/back.svg",
  6887. extra: 1083 / 960
  6888. }
  6889. },
  6890. },
  6891. [
  6892. {
  6893. name: "Normal",
  6894. height: math.unit(5 + 5 / 6, "feet"),
  6895. default: true
  6896. },
  6897. {
  6898. name: "Lamp",
  6899. height: math.unit(50, "feet")
  6900. },
  6901. {
  6902. name: "Lämp",
  6903. height: math.unit(300, "feet")
  6904. },
  6905. {
  6906. name: "The sun is a lamp",
  6907. height: math.unit(250000, "miles")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(50, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/huoyan/front.svg"
  6920. }
  6921. },
  6922. side: {
  6923. height: math.unit(6, "feet"),
  6924. weight: math.unit(180, "lbs"),
  6925. name: "Side",
  6926. image: {
  6927. source: "./media/characters/huoyan/side.svg"
  6928. }
  6929. },
  6930. },
  6931. [
  6932. {
  6933. name: "Chef",
  6934. height: math.unit(9, "feet")
  6935. },
  6936. {
  6937. name: "Normal",
  6938. height: math.unit(65, "feet"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Macro",
  6943. height: math.unit(780, "feet")
  6944. },
  6945. {
  6946. name: "Flaming Mountain",
  6947. height: math.unit(4.8, "miles")
  6948. },
  6949. {
  6950. name: "Celestial",
  6951. height: math.unit(765000, "miles")
  6952. },
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(5 + 3 / 4, "feet"),
  6960. weight: math.unit(120, "lbs"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/tails/front.svg"
  6964. }
  6965. }
  6966. },
  6967. [
  6968. {
  6969. name: "Normal",
  6970. height: math.unit(5 + 3 / 4, "feet"),
  6971. default: true
  6972. }
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6977. {
  6978. front: {
  6979. height: math.unit(4, "feet"),
  6980. weight: math.unit(50, "lbs"),
  6981. name: "Front",
  6982. image: {
  6983. source: "./media/characters/rainy/front.svg"
  6984. }
  6985. }
  6986. },
  6987. [
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(800, "feet"),
  6991. default: true
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(150, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/rainier/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Micro",
  7010. height: math.unit(2, "mm"),
  7011. default: true
  7012. }
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(8 + 4/12, "feet"),
  7020. weight: math.unit(450, "kilograms"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/andy-renard/front.svg",
  7024. extra: 862/809,
  7025. bottom: 85/947
  7026. },
  7027. extraAttributes: {
  7028. "pawSize": {
  7029. name: "Paw Size",
  7030. power: 2,
  7031. type: "area",
  7032. base: math.unit(0.45*0.3, "meters^2")
  7033. },
  7034. "handSize": {
  7035. name: "Hand Size",
  7036. power: 2,
  7037. type: "area",
  7038. base: math.unit(0.4 * 0.3, "meters^2")
  7039. },
  7040. "cockSize": {
  7041. name: "Cock Length",
  7042. power: 1,
  7043. type: "length",
  7044. base: math.unit(0.75, "meters")
  7045. },
  7046. "ballDiameter": {
  7047. name: "Ball Diameter",
  7048. power: 1,
  7049. type: "length",
  7050. base: math.unit(0.3, "meters")
  7051. },
  7052. "ballVolume": {
  7053. name: "Ball Volume",
  7054. power: 3,
  7055. type: "volume",
  7056. base: math.unit(0.01413716694, "meters^3")
  7057. },
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(8 + 4/12, "feet"),
  7062. weight: math.unit(450, "kilograms"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/andy-renard/back.svg",
  7066. extra: 1112/1033,
  7067. bottom: 64/1176
  7068. },
  7069. extraAttributes: {
  7070. "pawSize": {
  7071. name: "Paw Size",
  7072. power: 2,
  7073. type: "area",
  7074. base: math.unit(0.45*0.3, "meters^2")
  7075. },
  7076. "handSize": {
  7077. name: "Hand Size",
  7078. power: 2,
  7079. type: "area",
  7080. base: math.unit(0.4 * 0.3, "meters^2")
  7081. },
  7082. "cockSize": {
  7083. name: "Cock Length",
  7084. power: 1,
  7085. type: "length",
  7086. base: math.unit(0.75, "meters")
  7087. },
  7088. "ballDiameter": {
  7089. name: "Ball Diameter",
  7090. power: 1,
  7091. type: "length",
  7092. base: math.unit(0.3, "meters")
  7093. },
  7094. "ballVolume": {
  7095. name: "Ball Volume",
  7096. power: 3,
  7097. type: "volume",
  7098. base: math.unit(0.01413716694, "meters^3")
  7099. },
  7100. }
  7101. },
  7102. },
  7103. [
  7104. {
  7105. name: "Tall",
  7106. height: math.unit(6 + 8/12, "feet")
  7107. },
  7108. {
  7109. name: "Very Tall",
  7110. height: math.unit(8 + 4/12, "feet")
  7111. },
  7112. {
  7113. name: "Mini Macro",
  7114. height: math.unit(15, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Giant",
  7119. height: math.unit(50, "feet")
  7120. },
  7121. {
  7122. name: "Nice",
  7123. height: math.unit(69, "feet")
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(100, "feet")
  7128. },
  7129. {
  7130. name: "Enormous",
  7131. height: math.unit(500, "feet")
  7132. },
  7133. {
  7134. name: "Gargantuan",
  7135. height: math.unit(1000, "feet")
  7136. },
  7137. {
  7138. name: "Mega",
  7139. height: math.unit(1, "mile")
  7140. },
  7141. {
  7142. name: "Giga",
  7143. height: math.unit(50, "miles")
  7144. },
  7145. {
  7146. name: "Tera",
  7147. height: math.unit(1000, "miles")
  7148. },
  7149. {
  7150. name: "Cosmic",
  7151. height: math.unit(1.5, "galaxies")
  7152. },
  7153. {
  7154. name: "God",
  7155. height: math.unit(1.5, "universes")
  7156. },
  7157. {
  7158. name: "Chief Execute God",
  7159. height: math.unit(1.5, "multiverses")
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(210, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/cimmaron/front-sfw.svg",
  7172. extra: 701 / 676,
  7173. bottom: 0.046
  7174. }
  7175. },
  7176. back: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(210, "lbs"),
  7179. name: "Back",
  7180. image: {
  7181. source: "./media/characters/cimmaron/back-sfw.svg",
  7182. extra: 701 / 676,
  7183. bottom: 0.046
  7184. }
  7185. },
  7186. frontNsfw: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(210, "lbs"),
  7189. name: "Front (NSFW)",
  7190. image: {
  7191. source: "./media/characters/cimmaron/front-nsfw.svg",
  7192. extra: 701 / 676,
  7193. bottom: 0.046
  7194. }
  7195. },
  7196. backNsfw: {
  7197. height: math.unit(6, "feet"),
  7198. weight: math.unit(210, "lbs"),
  7199. name: "Back (NSFW)",
  7200. image: {
  7201. source: "./media/characters/cimmaron/back-nsfw.svg",
  7202. extra: 701 / 676,
  7203. bottom: 0.046
  7204. }
  7205. },
  7206. dick: {
  7207. height: math.unit(1.714, "feet"),
  7208. name: "Dick",
  7209. image: {
  7210. source: "./media/characters/cimmaron/dick.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(6, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro Mayor",
  7222. height: math.unit(350, "meters")
  7223. },
  7224. ]
  7225. ))
  7226. characterMakers.push(() => makeCharacter(
  7227. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7228. {
  7229. front: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(200, "lbs"),
  7232. name: "Front",
  7233. image: {
  7234. source: "./media/characters/akari/front.svg",
  7235. extra: 962 / 901,
  7236. bottom: 0.04
  7237. }
  7238. }
  7239. },
  7240. [
  7241. {
  7242. name: "Micro",
  7243. height: math.unit(5, "inches"),
  7244. default: true
  7245. },
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(7, "feet")
  7249. },
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7254. {
  7255. front: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(140, "lbs"),
  7258. name: "Front",
  7259. image: {
  7260. source: "./media/characters/cynosura/front.svg",
  7261. extra: 437/410,
  7262. bottom: 9/446
  7263. }
  7264. },
  7265. back: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(140, "lbs"),
  7268. name: "Back",
  7269. image: {
  7270. source: "./media/characters/cynosura/back.svg",
  7271. extra: 1304/1160,
  7272. bottom: 71/1375
  7273. }
  7274. },
  7275. },
  7276. [
  7277. {
  7278. name: "Micro",
  7279. height: math.unit(4, "inches")
  7280. },
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(5.75, "feet"),
  7284. default: true
  7285. },
  7286. {
  7287. name: "Tall",
  7288. height: math.unit(10, "feet")
  7289. },
  7290. {
  7291. name: "Big",
  7292. height: math.unit(20, "feet")
  7293. },
  7294. {
  7295. name: "Macro",
  7296. height: math.unit(50, "feet")
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(13 + 2/12, "feet"),
  7305. weight: math.unit(800, "kg"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/gin/front.svg",
  7309. extra: 1312/1191,
  7310. bottom: 45/1357
  7311. }
  7312. },
  7313. mouth: {
  7314. height: math.unit(2.39 * 1.8, "feet"),
  7315. name: "Mouth",
  7316. image: {
  7317. source: "./media/characters/gin/mouth.svg"
  7318. }
  7319. },
  7320. hand: {
  7321. height: math.unit(1.57 * 2.19, "feet"),
  7322. name: "Hand",
  7323. image: {
  7324. source: "./media/characters/gin/hand.svg"
  7325. }
  7326. },
  7327. foot: {
  7328. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7329. name: "Foot",
  7330. image: {
  7331. source: "./media/characters/gin/foot.svg"
  7332. }
  7333. },
  7334. sole: {
  7335. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7336. name: "Sole",
  7337. image: {
  7338. source: "./media/characters/gin/sole.svg"
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Very Small",
  7345. height: math.unit(13 + 2 / 12, "feet")
  7346. },
  7347. {
  7348. name: "Micro",
  7349. height: math.unit(600, "miles")
  7350. },
  7351. {
  7352. name: "Regular",
  7353. height: math.unit(20, "earths"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(2.2, "solarradii")
  7359. },
  7360. {
  7361. name: "Teramacro",
  7362. height: math.unit(1.2, "galaxies")
  7363. },
  7364. {
  7365. name: "Omegamacro",
  7366. height: math.unit(200, "universes")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(6 + 1 / 6, "feet"),
  7375. weight: math.unit(178, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/guy/front.svg"
  7379. }
  7380. }
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(6 + 1 / 6, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Large",
  7390. height: math.unit(25 + 7 / 12, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(60 + 9 / 12, "feet")
  7395. },
  7396. {
  7397. name: "Macro+",
  7398. height: math.unit(246, "feet")
  7399. },
  7400. {
  7401. name: "Macro++",
  7402. height: math.unit(878, "feet")
  7403. }
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(9, "feet"),
  7411. weight: math.unit(800, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/tiberius/front.svg",
  7415. extra: 2295 / 2071
  7416. }
  7417. },
  7418. back: {
  7419. height: math.unit(9, "feet"),
  7420. weight: math.unit(800, "lbs"),
  7421. name: "Back",
  7422. image: {
  7423. source: "./media/characters/tiberius/back.svg",
  7424. extra: 2373 / 2160
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(9, "feet"),
  7432. default: true
  7433. }
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7438. {
  7439. front: {
  7440. height: math.unit(6, "feet"),
  7441. weight: math.unit(600, "lbs"),
  7442. name: "Front",
  7443. image: {
  7444. source: "./media/characters/surgo/front.svg",
  7445. extra: 3591 / 2227
  7446. }
  7447. },
  7448. back: {
  7449. height: math.unit(6, "feet"),
  7450. weight: math.unit(600, "lbs"),
  7451. name: "Back",
  7452. image: {
  7453. source: "./media/characters/surgo/back.svg",
  7454. extra: 3557 / 2228
  7455. }
  7456. },
  7457. laying: {
  7458. height: math.unit(6 * 0.85, "feet"),
  7459. weight: math.unit(600, "lbs"),
  7460. name: "Laying",
  7461. image: {
  7462. source: "./media/characters/surgo/laying.svg"
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(6, "feet"),
  7470. default: true
  7471. }
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7476. {
  7477. side: {
  7478. height: math.unit(6, "feet"),
  7479. weight: math.unit(150, "lbs"),
  7480. name: "Side",
  7481. image: {
  7482. source: "./media/characters/cibus/side.svg",
  7483. extra: 800 / 400
  7484. }
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "Normal",
  7490. height: math.unit(6, "feet"),
  7491. default: true
  7492. }
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(240, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/nibbles/front.svg"
  7504. }
  7505. },
  7506. side: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(240, "lbs"),
  7509. name: "Side",
  7510. image: {
  7511. source: "./media/characters/nibbles/side.svg"
  7512. }
  7513. },
  7514. },
  7515. [
  7516. {
  7517. name: "Normal",
  7518. height: math.unit(9, "feet"),
  7519. default: true
  7520. }
  7521. ]
  7522. ))
  7523. characterMakers.push(() => makeCharacter(
  7524. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7525. {
  7526. side: {
  7527. height: math.unit(5 + 1 / 6, "feet"),
  7528. weight: math.unit(130, "lbs"),
  7529. name: "Side",
  7530. image: {
  7531. source: "./media/characters/rikky/side.svg",
  7532. extra: 851 / 801
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(5 + 1 / 6, "feet")
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(152, "feet"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Megamacro",
  7548. height: math.unit(7, "miles")
  7549. }
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7554. {
  7555. side: {
  7556. height: math.unit(370, "cm"),
  7557. weight: math.unit(350, "lbs"),
  7558. name: "Side",
  7559. image: {
  7560. source: "./media/characters/malfressa/side.svg"
  7561. }
  7562. },
  7563. walking: {
  7564. height: math.unit(370, "cm"),
  7565. weight: math.unit(350, "lbs"),
  7566. name: "Walking",
  7567. image: {
  7568. source: "./media/characters/malfressa/walking.svg"
  7569. }
  7570. },
  7571. feral: {
  7572. height: math.unit(2500, "cm"),
  7573. weight: math.unit(100000, "lbs"),
  7574. name: "Feral",
  7575. image: {
  7576. source: "./media/characters/malfressa/feral.svg",
  7577. extra: 2108 / 837,
  7578. bottom: 0.02
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(370, "cm")
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(300, "meters"),
  7590. default: true
  7591. }
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(60, "kg"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/jaro/front.svg",
  7603. extra: 845/817,
  7604. bottom: 45/890
  7605. }
  7606. },
  7607. back: {
  7608. height: math.unit(6, "feet"),
  7609. weight: math.unit(60, "kg"),
  7610. name: "Back",
  7611. image: {
  7612. source: "./media/characters/jaro/back.svg",
  7613. extra: 847/817,
  7614. bottom: 34/881
  7615. }
  7616. },
  7617. },
  7618. [
  7619. {
  7620. name: "Micro",
  7621. height: math.unit(7, "inches")
  7622. },
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(5.5, "feet"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Minimacro",
  7630. height: math.unit(20, "feet")
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(200, "meters")
  7635. }
  7636. ]
  7637. ))
  7638. characterMakers.push(() => makeCharacter(
  7639. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7640. {
  7641. front: {
  7642. height: math.unit(6, "feet"),
  7643. weight: math.unit(195, "lb"),
  7644. name: "Front",
  7645. image: {
  7646. source: "./media/characters/rogue/front.svg"
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Macro",
  7653. height: math.unit(90, "feet"),
  7654. default: true
  7655. },
  7656. ]
  7657. ))
  7658. characterMakers.push(() => makeCharacter(
  7659. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7660. {
  7661. standing: {
  7662. height: math.unit(5 + 8 / 12, "feet"),
  7663. weight: math.unit(140, "lb"),
  7664. name: "Standing",
  7665. image: {
  7666. source: "./media/characters/piper/standing.svg",
  7667. extra: 1440/1284,
  7668. bottom: 66/1506
  7669. }
  7670. },
  7671. running: {
  7672. height: math.unit(5 + 8 / 12, "feet"),
  7673. weight: math.unit(140, "lb"),
  7674. name: "Running",
  7675. image: {
  7676. source: "./media/characters/piper/running.svg",
  7677. extra: 3948/3655,
  7678. bottom: 0/3948
  7679. }
  7680. },
  7681. sole: {
  7682. height: math.unit(0.81, "feet"),
  7683. weight: math.unit(2, "kg"),
  7684. name: "Sole",
  7685. image: {
  7686. source: "./media/characters/piper/sole.svg"
  7687. }
  7688. },
  7689. nipple: {
  7690. height: math.unit(0.25, "feet"),
  7691. weight: math.unit(1.5, "lb"),
  7692. name: "Nipple",
  7693. image: {
  7694. source: "./media/characters/piper/nipple.svg"
  7695. }
  7696. },
  7697. head: {
  7698. height: math.unit(1.1, "feet"),
  7699. name: "Head",
  7700. image: {
  7701. source: "./media/characters/piper/head.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Micro",
  7708. height: math.unit(2, "inches")
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(5 + 8 / 12, "feet")
  7713. },
  7714. {
  7715. name: "Macro",
  7716. height: math.unit(250, "feet"),
  7717. default: true
  7718. },
  7719. {
  7720. name: "Megamacro",
  7721. height: math.unit(7, "miles")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7727. {
  7728. front: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(220, "lb"),
  7731. name: "Front",
  7732. image: {
  7733. source: "./media/characters/gemini/front.svg"
  7734. }
  7735. },
  7736. back: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(220, "lb"),
  7739. name: "Back",
  7740. image: {
  7741. source: "./media/characters/gemini/back.svg"
  7742. }
  7743. },
  7744. kneeling: {
  7745. height: math.unit(6 / 1.5, "feet"),
  7746. weight: math.unit(220, "lb"),
  7747. name: "Kneeling",
  7748. image: {
  7749. source: "./media/characters/gemini/kneeling.svg",
  7750. bottom: 0.02
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Macro",
  7757. height: math.unit(300, "meters"),
  7758. default: true
  7759. },
  7760. {
  7761. name: "Megamacro",
  7762. height: math.unit(6900, "meters")
  7763. },
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7768. {
  7769. anthro: {
  7770. height: math.unit(2.35, "meters"),
  7771. weight: math.unit(73, "kg"),
  7772. name: "Anthro",
  7773. image: {
  7774. source: "./media/characters/alicia/anthro.svg",
  7775. extra: 2571 / 2385,
  7776. bottom: 75 / 2648
  7777. }
  7778. },
  7779. paw: {
  7780. height: math.unit(1.32, "feet"),
  7781. name: "Paw",
  7782. image: {
  7783. source: "./media/characters/alicia/paw.svg"
  7784. }
  7785. },
  7786. feral: {
  7787. height: math.unit(1.69, "meters"),
  7788. weight: math.unit(73, "kg"),
  7789. name: "Feral",
  7790. image: {
  7791. source: "./media/characters/alicia/feral.svg",
  7792. extra: 2123 / 1715,
  7793. bottom: 222 / 2349
  7794. }
  7795. },
  7796. },
  7797. [
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(2.35, "meters")
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(60, "meters"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(10000, "kilometers")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(7, "feet"),
  7818. weight: math.unit(250, "lbs"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/archy/front.svg"
  7822. }
  7823. }
  7824. },
  7825. [
  7826. {
  7827. name: "Micro",
  7828. height: math.unit(1, "inch")
  7829. },
  7830. {
  7831. name: "Shorty",
  7832. height: math.unit(5, "feet")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(7, "feet")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(600, "meters"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(1, "mile")
  7846. },
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(1.65, "meters"),
  7854. weight: math.unit(74, "kg"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/berri/front.svg",
  7858. extra: 857 / 837,
  7859. bottom: 18 / 877
  7860. }
  7861. },
  7862. bum: {
  7863. height: math.unit(1.46, "feet"),
  7864. name: "Bum",
  7865. image: {
  7866. source: "./media/characters/berri/bum.svg"
  7867. }
  7868. },
  7869. mouth: {
  7870. height: math.unit(0.44, "feet"),
  7871. name: "Mouth",
  7872. image: {
  7873. source: "./media/characters/berri/mouth.svg"
  7874. }
  7875. },
  7876. paw: {
  7877. height: math.unit(0.826, "feet"),
  7878. name: "Paw",
  7879. image: {
  7880. source: "./media/characters/berri/paw.svg"
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(1.65, "meters")
  7888. },
  7889. {
  7890. name: "Macro",
  7891. height: math.unit(60, "m"),
  7892. default: true
  7893. },
  7894. {
  7895. name: "Megamacro",
  7896. height: math.unit(9.213, "km")
  7897. },
  7898. {
  7899. name: "Planet Eater",
  7900. height: math.unit(489, "megameters")
  7901. },
  7902. {
  7903. name: "Teramacro",
  7904. height: math.unit(2471635000000, "meters")
  7905. },
  7906. {
  7907. name: "Examacro",
  7908. height: math.unit(8.0624e+26, "meters")
  7909. }
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(1.72, "meters"),
  7917. weight: math.unit(68, "kg"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/lexi/front.svg"
  7921. }
  7922. }
  7923. },
  7924. [
  7925. {
  7926. name: "Very Smol",
  7927. height: math.unit(10, "mm")
  7928. },
  7929. {
  7930. name: "Micro",
  7931. height: math.unit(6.8, "cm"),
  7932. default: true
  7933. },
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.72, "m")
  7937. }
  7938. ]
  7939. ))
  7940. characterMakers.push(() => makeCharacter(
  7941. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7942. {
  7943. front: {
  7944. height: math.unit(1.69, "meters"),
  7945. weight: math.unit(68, "kg"),
  7946. name: "Front",
  7947. image: {
  7948. source: "./media/characters/martin/front.svg",
  7949. extra: 596 / 581
  7950. }
  7951. }
  7952. },
  7953. [
  7954. {
  7955. name: "Micro",
  7956. height: math.unit(6.85, "cm"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(1.69, "m")
  7962. }
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(1.69, "meters"),
  7970. weight: math.unit(68, "kg"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/juno/front.svg"
  7974. }
  7975. }
  7976. },
  7977. [
  7978. {
  7979. name: "Micro",
  7980. height: math.unit(7, "cm")
  7981. },
  7982. {
  7983. name: "Normal",
  7984. height: math.unit(1.89, "m")
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(353, "meters"),
  7989. default: true
  7990. }
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7995. {
  7996. front: {
  7997. height: math.unit(1.93, "meters"),
  7998. weight: math.unit(83, "kg"),
  7999. name: "Front",
  8000. image: {
  8001. source: "./media/characters/samantha/front.svg"
  8002. }
  8003. },
  8004. frontClothed: {
  8005. height: math.unit(1.93, "meters"),
  8006. weight: math.unit(83, "kg"),
  8007. name: "Front (Clothed)",
  8008. image: {
  8009. source: "./media/characters/samantha/front-clothed.svg"
  8010. }
  8011. },
  8012. back: {
  8013. height: math.unit(1.93, "meters"),
  8014. weight: math.unit(83, "kg"),
  8015. name: "Back",
  8016. image: {
  8017. source: "./media/characters/samantha/back.svg"
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(1.93, "m")
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(74, "meters"),
  8029. default: true
  8030. },
  8031. {
  8032. name: "Macro+",
  8033. height: math.unit(223, "meters"),
  8034. },
  8035. {
  8036. name: "Megamacro",
  8037. height: math.unit(8381, "meters"),
  8038. },
  8039. {
  8040. name: "Megamacro+",
  8041. height: math.unit(12000, "kilometers")
  8042. },
  8043. ]
  8044. ))
  8045. characterMakers.push(() => makeCharacter(
  8046. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8047. {
  8048. front: {
  8049. height: math.unit(1.92, "meters"),
  8050. weight: math.unit(80, "kg"),
  8051. name: "Front",
  8052. image: {
  8053. source: "./media/characters/dr-clay/front.svg"
  8054. }
  8055. },
  8056. frontClothed: {
  8057. height: math.unit(1.92, "meters"),
  8058. weight: math.unit(80, "kg"),
  8059. name: "Front (Clothed)",
  8060. image: {
  8061. source: "./media/characters/dr-clay/front-clothed.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(1.92, "m")
  8069. },
  8070. {
  8071. name: "Macro",
  8072. height: math.unit(214, "meters"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Macro+",
  8077. height: math.unit(12.237, "meters"),
  8078. },
  8079. {
  8080. name: "Megamacro",
  8081. height: math.unit(557, "megameters"),
  8082. },
  8083. {
  8084. name: "Unimaginable",
  8085. height: math.unit(120e9, "lightyears")
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(2, "meters"),
  8094. weight: math.unit(80, "kg"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8098. }
  8099. }
  8100. },
  8101. [
  8102. {
  8103. name: "Teramacro",
  8104. height: math.unit(500000, "lightyears"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8111. {
  8112. crux: {
  8113. height: math.unit(2, "meters"),
  8114. weight: math.unit(150, "kg"),
  8115. name: "Crux",
  8116. image: {
  8117. source: "./media/characters/vemus/crux.svg",
  8118. extra: 1074/936,
  8119. bottom: 23/1097
  8120. }
  8121. },
  8122. skunkTanuki: {
  8123. height: math.unit(2, "meters"),
  8124. weight: math.unit(150, "kg"),
  8125. name: "Skunk-Tanuki",
  8126. image: {
  8127. source: "./media/characters/vemus/skunk-tanuki.svg",
  8128. extra: 926/893,
  8129. bottom: 20/946
  8130. }
  8131. },
  8132. },
  8133. [
  8134. {
  8135. name: "Normal",
  8136. height: math.unit(4, "meters"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Big",
  8141. height: math.unit(8, "meters")
  8142. },
  8143. {
  8144. name: "Macro",
  8145. height: math.unit(100, "meters")
  8146. },
  8147. {
  8148. name: "Macro+",
  8149. height: math.unit(1500, "meters")
  8150. },
  8151. {
  8152. name: "Stellar",
  8153. height: math.unit(14e8, "meters")
  8154. },
  8155. ]
  8156. ))
  8157. characterMakers.push(() => makeCharacter(
  8158. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8159. {
  8160. front: {
  8161. height: math.unit(2, "meters"),
  8162. weight: math.unit(70, "kg"),
  8163. name: "Front",
  8164. image: {
  8165. source: "./media/characters/beherit/front.svg",
  8166. extra: 1234/1109,
  8167. bottom: 55/1289
  8168. }
  8169. }
  8170. },
  8171. [
  8172. {
  8173. name: "Normal",
  8174. height: math.unit(6, "feet")
  8175. },
  8176. {
  8177. name: "Lorg",
  8178. height: math.unit(25, "feet"),
  8179. default: true
  8180. },
  8181. {
  8182. name: "Lorger",
  8183. height: math.unit(75, "feet")
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(200, "meters")
  8188. },
  8189. ]
  8190. ))
  8191. characterMakers.push(() => makeCharacter(
  8192. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8193. {
  8194. front: {
  8195. height: math.unit(2, "meters"),
  8196. weight: math.unit(150, "kg"),
  8197. name: "Front",
  8198. image: {
  8199. source: "./media/characters/everett/front.svg",
  8200. extra: 1017/866,
  8201. bottom: 86/1103
  8202. }
  8203. },
  8204. paw: {
  8205. height: math.unit(2 / 3.6, "meters"),
  8206. name: "Paw",
  8207. image: {
  8208. source: "./media/characters/everett/paw.svg"
  8209. }
  8210. },
  8211. },
  8212. [
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(15, "feet"),
  8216. default: true
  8217. },
  8218. {
  8219. name: "Lorg",
  8220. height: math.unit(70, "feet"),
  8221. default: true
  8222. },
  8223. {
  8224. name: "Lorger",
  8225. height: math.unit(250, "feet")
  8226. },
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(500, "meters")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8235. {
  8236. front: {
  8237. height: math.unit(2, "meters"),
  8238. weight: math.unit(86, "kg"),
  8239. name: "Front",
  8240. image: {
  8241. source: "./media/characters/rose/front.svg",
  8242. extra: 1785/1636,
  8243. bottom: 30/1815
  8244. },
  8245. form: "liom",
  8246. default: true
  8247. },
  8248. frontSporty: {
  8249. height: math.unit(2, "meters"),
  8250. weight: math.unit(86, "kg"),
  8251. name: "Front (Sporty)",
  8252. image: {
  8253. source: "./media/characters/rose/front-sporty.svg",
  8254. extra: 350/335,
  8255. bottom: 10/360
  8256. },
  8257. form: "liom"
  8258. },
  8259. frontAlt: {
  8260. height: math.unit(1.6, "meters"),
  8261. weight: math.unit(86, "kg"),
  8262. name: "Front (Alt)",
  8263. image: {
  8264. source: "./media/characters/rose/front-alt.svg",
  8265. extra: 299/283,
  8266. bottom: 3/302
  8267. },
  8268. form: "liom"
  8269. },
  8270. plush: {
  8271. height: math.unit(2, "meters"),
  8272. weight: math.unit(86/3, "kg"),
  8273. name: "Plush",
  8274. image: {
  8275. source: "./media/characters/rose/plush.svg",
  8276. extra: 361/337,
  8277. bottom: 11/372
  8278. },
  8279. form: "plush",
  8280. default: true
  8281. },
  8282. faeStanding: {
  8283. height: math.unit(10, "cm"),
  8284. weight: math.unit(10, "grams"),
  8285. name: "Standing",
  8286. image: {
  8287. source: "./media/characters/rose/fae-standing.svg",
  8288. extra: 1189/1060,
  8289. bottom: 27/1216
  8290. },
  8291. form: "fae",
  8292. default: true
  8293. },
  8294. faeSitting: {
  8295. height: math.unit(5, "cm"),
  8296. weight: math.unit(10, "grams"),
  8297. name: "Sitting",
  8298. image: {
  8299. source: "./media/characters/rose/fae-sitting.svg",
  8300. extra: 737/577,
  8301. bottom: 356/1093
  8302. },
  8303. form: "fae"
  8304. },
  8305. faePaw: {
  8306. height: math.unit(1.35, "cm"),
  8307. name: "Paw",
  8308. image: {
  8309. source: "./media/characters/rose/fae-paw.svg"
  8310. },
  8311. form: "fae"
  8312. },
  8313. fronttrueFae: {
  8314. height: math.unit(10, "cm"),
  8315. weight: math.unit(10, "grams"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/rose/true-fae-front.svg",
  8319. extra: 839/789,
  8320. bottom: 12/851
  8321. },
  8322. form: "true-fae",
  8323. default: true
  8324. },
  8325. },
  8326. [
  8327. {
  8328. name: "True Micro",
  8329. height: math.unit(9, "cm"),
  8330. form: "liom"
  8331. },
  8332. {
  8333. name: "Micro",
  8334. height: math.unit(16, "cm"),
  8335. form: "liom"
  8336. },
  8337. {
  8338. name: "Normal",
  8339. height: math.unit(1.85, "meters"),
  8340. default: true,
  8341. form: "liom"
  8342. },
  8343. {
  8344. name: "Mini-Macro",
  8345. height: math.unit(5, "meters"),
  8346. form: "liom"
  8347. },
  8348. {
  8349. name: "Macro",
  8350. height: math.unit(15, "meters"),
  8351. form: "liom"
  8352. },
  8353. {
  8354. name: "True Macro",
  8355. height: math.unit(40, "meters"),
  8356. form: "liom"
  8357. },
  8358. {
  8359. name: "City Scale",
  8360. height: math.unit(1, "km"),
  8361. form: "liom"
  8362. },
  8363. {
  8364. name: "Plushie",
  8365. height: math.unit(9, "cm"),
  8366. form: "plush",
  8367. default: true
  8368. },
  8369. {
  8370. name: "Fae",
  8371. height: math.unit(10, "cm"),
  8372. form: "fae",
  8373. default: true
  8374. },
  8375. {
  8376. name: "Fae",
  8377. height: math.unit(10, "cm"),
  8378. form: "true-fae",
  8379. default: true
  8380. },
  8381. ],
  8382. {
  8383. "liom": {
  8384. name: "Liom"
  8385. },
  8386. "plush": {
  8387. name: "Plush"
  8388. },
  8389. "fae": {
  8390. name: "Fae Fox",
  8391. default: true
  8392. },
  8393. "true-fae": {
  8394. name: "True Fae",
  8395. },
  8396. }
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(2, "meters"),
  8403. weight: math.unit(350, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/regal/front.svg"
  8407. }
  8408. },
  8409. back: {
  8410. height: math.unit(2, "meters"),
  8411. weight: math.unit(350, "lbs"),
  8412. name: "Back",
  8413. image: {
  8414. source: "./media/characters/regal/back.svg"
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(350, "feet"),
  8422. default: true
  8423. }
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8428. {
  8429. standing: {
  8430. height: math.unit(4 + 11/12, "feet"),
  8431. weight: math.unit(100, "lb"),
  8432. name: "Standing",
  8433. image: {
  8434. source: "./media/characters/opal/standing.svg",
  8435. extra: 1588/1513,
  8436. bottom: 23/1611
  8437. }
  8438. },
  8439. sitting: {
  8440. height: math.unit(2.3, "feet"),
  8441. weight: math.unit(100, "lb"),
  8442. name: "Sitting",
  8443. image: {
  8444. source: "./media/characters/opal/sitting.svg",
  8445. extra: 1031/892,
  8446. bottom: 142/1173
  8447. }
  8448. },
  8449. hand: {
  8450. height: math.unit(0.59, "feet"),
  8451. name: "Hand",
  8452. image: {
  8453. source: "./media/characters/opal/hand.svg"
  8454. }
  8455. },
  8456. foot: {
  8457. height: math.unit(0.61, "feet"),
  8458. name: "Foot",
  8459. image: {
  8460. source: "./media/characters/opal/foot.svg"
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Small",
  8467. height: math.unit(4 + 11 / 12, "feet")
  8468. },
  8469. {
  8470. name: "Normal",
  8471. height: math.unit(20, "feet"),
  8472. default: true
  8473. },
  8474. {
  8475. name: "Macro",
  8476. height: math.unit(120, "feet")
  8477. },
  8478. {
  8479. name: "Megamacro",
  8480. height: math.unit(80, "miles")
  8481. },
  8482. {
  8483. name: "True Size",
  8484. height: math.unit(100000, "lightyears")
  8485. },
  8486. ]
  8487. ))
  8488. characterMakers.push(() => makeCharacter(
  8489. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8490. {
  8491. front: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(200, "lbs"),
  8494. name: "Front",
  8495. image: {
  8496. source: "./media/characters/vector-wuff/front.svg"
  8497. }
  8498. }
  8499. },
  8500. [
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(2.8, "meters")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(450, "meters"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Megamacro",
  8512. height: math.unit(15, "kilometers")
  8513. }
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(6, "feet"),
  8521. weight: math.unit(256, "lbs"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/dannik/front.svg"
  8525. }
  8526. }
  8527. },
  8528. [
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(69.57, "meters"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(120, "lbs"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/azura-saharah/front.svg"
  8545. }
  8546. },
  8547. back: {
  8548. height: math.unit(6, "feet"),
  8549. weight: math.unit(120, "lbs"),
  8550. name: "Back",
  8551. image: {
  8552. source: "./media/characters/azura-saharah/back.svg"
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(100, "feet"),
  8560. default: true
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8566. {
  8567. side: {
  8568. height: math.unit(5 + 4 / 12, "feet"),
  8569. weight: math.unit(163, "lbs"),
  8570. name: "Side",
  8571. image: {
  8572. source: "./media/characters/kennedy/side.svg"
  8573. }
  8574. }
  8575. },
  8576. [
  8577. {
  8578. name: "Standard Doggo",
  8579. height: math.unit(5 + 4 / 12, "feet")
  8580. },
  8581. {
  8582. name: "Big Doggo",
  8583. height: math.unit(25 + 3 / 12, "feet"),
  8584. default: true
  8585. },
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(5 + 5/12, "feet"),
  8593. weight: math.unit(100, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/odios-de-lunar/front.svg",
  8597. extra: 1468/1323,
  8598. bottom: 22/1490
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro",
  8605. height: math.unit(3, "inches")
  8606. },
  8607. {
  8608. name: "Normal",
  8609. height: math.unit(5.5, "feet"),
  8610. default: true
  8611. },
  8612. {
  8613. name: "Macro",
  8614. height: math.unit(100, "feet")
  8615. },
  8616. ]
  8617. ))
  8618. characterMakers.push(() => makeCharacter(
  8619. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8620. {
  8621. back: {
  8622. height: math.unit(6, "feet"),
  8623. weight: math.unit(220, "lbs"),
  8624. name: "Back",
  8625. image: {
  8626. source: "./media/characters/mandake/back.svg"
  8627. }
  8628. }
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(7, "feet"),
  8634. default: true
  8635. },
  8636. {
  8637. name: "Macro",
  8638. height: math.unit(78, "feet")
  8639. },
  8640. {
  8641. name: "Macro+",
  8642. height: math.unit(300, "meters")
  8643. },
  8644. {
  8645. name: "Macro++",
  8646. height: math.unit(2400, "feet")
  8647. },
  8648. {
  8649. name: "Megamacro",
  8650. height: math.unit(5167, "meters")
  8651. },
  8652. {
  8653. name: "Gigamacro",
  8654. height: math.unit(41769, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(120, "lbs"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/yozey/front.svg"
  8667. }
  8668. },
  8669. frontAlt: {
  8670. height: math.unit(6, "feet"),
  8671. weight: math.unit(120, "lbs"),
  8672. name: "Front (Alt)",
  8673. image: {
  8674. source: "./media/characters/yozey/front-alt.svg"
  8675. }
  8676. },
  8677. side: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(120, "lbs"),
  8680. name: "Side",
  8681. image: {
  8682. source: "./media/characters/yozey/side.svg"
  8683. }
  8684. },
  8685. },
  8686. [
  8687. {
  8688. name: "Micro",
  8689. height: math.unit(3, "inches"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(6, "feet")
  8695. }
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(103, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/valeska-voss/front.svg"
  8707. }
  8708. }
  8709. },
  8710. [
  8711. {
  8712. name: "Mini-Sized Sub",
  8713. height: math.unit(3.1, "inches")
  8714. },
  8715. {
  8716. name: "Mid-Sized Sub",
  8717. height: math.unit(6.2, "inches")
  8718. },
  8719. {
  8720. name: "Full-Sized Sub",
  8721. height: math.unit(9.3, "inches")
  8722. },
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(5 + 2 / 12, "foot"),
  8726. default: true
  8727. },
  8728. ]
  8729. ))
  8730. characterMakers.push(() => makeCharacter(
  8731. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8732. {
  8733. front: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(160, "lbs"),
  8736. name: "Front",
  8737. image: {
  8738. source: "./media/characters/gene-zeta/front.svg",
  8739. extra: 3006 / 2826,
  8740. bottom: 182 / 3188
  8741. }
  8742. }
  8743. },
  8744. [
  8745. {
  8746. name: "Micro",
  8747. height: math.unit(6, "inches")
  8748. },
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 11 / 12, "foot"),
  8752. default: true
  8753. },
  8754. {
  8755. name: "Macro",
  8756. height: math.unit(140, "feet")
  8757. },
  8758. {
  8759. name: "Supercharged",
  8760. height: math.unit(2500, "feet")
  8761. },
  8762. ]
  8763. ))
  8764. characterMakers.push(() => makeCharacter(
  8765. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8766. {
  8767. front: {
  8768. height: math.unit(6, "feet"),
  8769. weight: math.unit(350, "lbs"),
  8770. name: "Front",
  8771. image: {
  8772. source: "./media/characters/razinox/front.svg",
  8773. extra: 1686 / 1548,
  8774. bottom: 28.2 / 1868
  8775. }
  8776. },
  8777. back: {
  8778. height: math.unit(6, "feet"),
  8779. weight: math.unit(350, "lbs"),
  8780. name: "Back",
  8781. image: {
  8782. source: "./media/characters/razinox/back.svg",
  8783. extra: 1660 / 1590,
  8784. bottom: 15 / 1665
  8785. }
  8786. },
  8787. },
  8788. [
  8789. {
  8790. name: "Normal",
  8791. height: math.unit(10 + 8 / 12, "foot")
  8792. },
  8793. {
  8794. name: "Minimacro",
  8795. height: math.unit(15, "foot")
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(60, "foot"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Megamacro",
  8804. height: math.unit(5, "miles")
  8805. },
  8806. {
  8807. name: "Gigamacro",
  8808. height: math.unit(6000, "miles")
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8814. {
  8815. front: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(150, "lbs"),
  8818. name: "Front",
  8819. image: {
  8820. source: "./media/characters/cobalt/front.svg"
  8821. }
  8822. }
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(8 + 1 / 12, "foot")
  8828. },
  8829. {
  8830. name: "Macro",
  8831. height: math.unit(111, "foot"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Supracosmic",
  8836. height: math.unit(1e42, "feet")
  8837. },
  8838. ]
  8839. ))
  8840. characterMakers.push(() => makeCharacter(
  8841. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8842. {
  8843. front: {
  8844. height: math.unit(5, "inches"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/amanda/front.svg",
  8848. extra: 926/791,
  8849. bottom: 38/964
  8850. }
  8851. },
  8852. back: {
  8853. height: math.unit(5, "inches"),
  8854. name: "Back",
  8855. image: {
  8856. source: "./media/characters/amanda/back.svg",
  8857. extra: 909/805,
  8858. bottom: 43/952
  8859. }
  8860. },
  8861. },
  8862. [
  8863. {
  8864. name: "Micro",
  8865. height: math.unit(5, "inches"),
  8866. default: true
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8872. {
  8873. front: {
  8874. height: math.unit(2.75, "meters"),
  8875. weight: math.unit(1200, "lb"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/teal/front.svg",
  8879. extra: 2463 / 2320,
  8880. bottom: 166 / 2629
  8881. }
  8882. },
  8883. back: {
  8884. height: math.unit(2.75, "meters"),
  8885. weight: math.unit(1200, "lb"),
  8886. name: "Back",
  8887. image: {
  8888. source: "./media/characters/teal/back.svg",
  8889. extra: 2580 / 2489,
  8890. bottom: 151 / 2731
  8891. }
  8892. },
  8893. sitting: {
  8894. height: math.unit(1.9, "meters"),
  8895. weight: math.unit(1200, "lb"),
  8896. name: "Sitting",
  8897. image: {
  8898. source: "./media/characters/teal/sitting.svg",
  8899. extra: 623 / 590,
  8900. bottom: 121 / 744
  8901. }
  8902. },
  8903. standing: {
  8904. height: math.unit(2.75, "meters"),
  8905. weight: math.unit(1200, "lb"),
  8906. name: "Standing",
  8907. image: {
  8908. source: "./media/characters/teal/standing.svg",
  8909. extra: 923 / 893,
  8910. bottom: 60 / 983
  8911. }
  8912. },
  8913. stretching: {
  8914. height: math.unit(3.65, "meters"),
  8915. weight: math.unit(1200, "lb"),
  8916. name: "Stretching",
  8917. image: {
  8918. source: "./media/characters/teal/stretching.svg",
  8919. extra: 1276 / 1244,
  8920. bottom: 0 / 1276
  8921. }
  8922. },
  8923. legged: {
  8924. height: math.unit(1.3, "meters"),
  8925. weight: math.unit(100, "lb"),
  8926. name: "Legged",
  8927. image: {
  8928. source: "./media/characters/teal/legged.svg",
  8929. extra: 462 / 437,
  8930. bottom: 24 / 486
  8931. }
  8932. },
  8933. naga: {
  8934. height: math.unit(5.4, "meters"),
  8935. weight: math.unit(4000, "lb"),
  8936. name: "Naga",
  8937. image: {
  8938. source: "./media/characters/teal/naga.svg",
  8939. extra: 1902 / 1858,
  8940. bottom: 0 / 1902
  8941. }
  8942. },
  8943. hand: {
  8944. height: math.unit(0.52, "meters"),
  8945. name: "Hand",
  8946. image: {
  8947. source: "./media/characters/teal/hand.svg"
  8948. }
  8949. },
  8950. maw: {
  8951. height: math.unit(0.43, "meters"),
  8952. name: "Maw",
  8953. image: {
  8954. source: "./media/characters/teal/maw.svg"
  8955. }
  8956. },
  8957. slit: {
  8958. height: math.unit(0.25, "meters"),
  8959. name: "Slit",
  8960. image: {
  8961. source: "./media/characters/teal/slit.svg"
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(2.75, "meters"),
  8969. default: true
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(300, "feet")
  8974. },
  8975. {
  8976. name: "Macro+",
  8977. height: math.unit(2000, "feet")
  8978. },
  8979. ]
  8980. ))
  8981. characterMakers.push(() => makeCharacter(
  8982. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8983. {
  8984. frontCat: {
  8985. height: math.unit(6, "feet"),
  8986. weight: math.unit(180, "lbs"),
  8987. name: "Front (Cat)",
  8988. image: {
  8989. source: "./media/characters/ravin-amulet/front-cat.svg"
  8990. }
  8991. },
  8992. frontCatAlt: {
  8993. height: math.unit(6, "feet"),
  8994. weight: math.unit(180, "lbs"),
  8995. name: "Front (Alt, Cat)",
  8996. image: {
  8997. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8998. }
  8999. },
  9000. frontWerewolf: {
  9001. height: math.unit(6 * 1.2, "feet"),
  9002. weight: math.unit(225, "lbs"),
  9003. name: "Front (Werewolf)",
  9004. image: {
  9005. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  9006. }
  9007. },
  9008. backWerewolf: {
  9009. height: math.unit(6 * 1.2, "feet"),
  9010. weight: math.unit(225, "lbs"),
  9011. name: "Back (Werewolf)",
  9012. image: {
  9013. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Nano",
  9020. height: math.unit(1, "micrometer")
  9021. },
  9022. {
  9023. name: "Micro",
  9024. height: math.unit(1, "inch")
  9025. },
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(6, "feet"),
  9029. default: true
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(60, "feet")
  9034. }
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(165, "lbs"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/fluoresce/front.svg"
  9046. }
  9047. }
  9048. },
  9049. [
  9050. {
  9051. name: "Micro",
  9052. height: math.unit(6, "cm")
  9053. },
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 7 / 12, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(56, "feet")
  9062. },
  9063. {
  9064. name: "Megamacro",
  9065. height: math.unit(1.9, "miles")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(9 + 6 / 12, "feet"),
  9074. weight: math.unit(523, "lbs"),
  9075. name: "Side",
  9076. image: {
  9077. source: "./media/characters/aurora/side.svg",
  9078. extra: 474/393,
  9079. bottom: 5/479
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(9 + 6 / 12, "feet")
  9087. },
  9088. {
  9089. name: "Macro",
  9090. height: math.unit(96, "feet"),
  9091. default: true
  9092. },
  9093. {
  9094. name: "Macro+",
  9095. height: math.unit(243, "feet")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(194, "cm"),
  9104. weight: math.unit(90, "kg"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/ranek/front.svg",
  9108. extra: 1862/1791,
  9109. bottom: 80/1942
  9110. }
  9111. },
  9112. back: {
  9113. height: math.unit(194, "cm"),
  9114. weight: math.unit(90, "kg"),
  9115. name: "Back",
  9116. image: {
  9117. source: "./media/characters/ranek/back.svg",
  9118. extra: 1853/1787,
  9119. bottom: 74/1927
  9120. }
  9121. },
  9122. feral: {
  9123. height: math.unit(30, "cm"),
  9124. weight: math.unit(1.6, "lbs"),
  9125. name: "Feral",
  9126. image: {
  9127. source: "./media/characters/ranek/feral.svg",
  9128. extra: 990/631,
  9129. bottom: 29/1019
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(194, "cm"),
  9137. default: true
  9138. },
  9139. {
  9140. name: "Macro",
  9141. height: math.unit(100, "meters")
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(5 + 6 / 12, "feet"),
  9150. weight: math.unit(153, "lbs"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/andrew-cooper/front.svg"
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Nano",
  9160. height: math.unit(1, "mm")
  9161. },
  9162. {
  9163. name: "Micro",
  9164. height: math.unit(2, "inches")
  9165. },
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(5 + 6 / 12, "feet"),
  9169. default: true
  9170. }
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(180, "lbs"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/akane-sato/front.svg",
  9182. extra: 1219 / 1140
  9183. }
  9184. },
  9185. back: {
  9186. height: math.unit(6, "feet"),
  9187. weight: math.unit(180, "lbs"),
  9188. name: "Back",
  9189. image: {
  9190. source: "./media/characters/akane-sato/back.svg",
  9191. extra: 1219 / 1170
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(2.5, "meters")
  9199. },
  9200. {
  9201. name: "Macro",
  9202. height: math.unit(250, "meters"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Megamacro",
  9207. height: math.unit(25, "km")
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(65, "kg"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/rook/front.svg",
  9220. extra: 960 / 950
  9221. }
  9222. }
  9223. },
  9224. [
  9225. {
  9226. name: "Normal",
  9227. height: math.unit(8.8, "feet")
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(88, "feet"),
  9232. default: true
  9233. },
  9234. {
  9235. name: "Megamacro",
  9236. height: math.unit(8, "miles")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(12 + 2 / 12, "feet"),
  9245. weight: math.unit(808, "lbs"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/prodigy/front.svg"
  9249. }
  9250. }
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(12 + 2 / 12, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(143, "feet")
  9261. },
  9262. {
  9263. name: "Macro+",
  9264. height: math.unit(400, "feet")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(225, "lbs"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/daniel/front.svg"
  9277. }
  9278. },
  9279. leaning: {
  9280. height: math.unit(6, "feet"),
  9281. weight: math.unit(225, "lbs"),
  9282. name: "Leaning",
  9283. image: {
  9284. source: "./media/characters/daniel/leaning.svg"
  9285. }
  9286. },
  9287. },
  9288. [
  9289. {
  9290. name: "Macro",
  9291. height: math.unit(1000, "feet"),
  9292. default: true
  9293. },
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(88, "lbs"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/chiros/front.svg",
  9305. extra: 306 / 226
  9306. }
  9307. },
  9308. side: {
  9309. height: math.unit(6, "feet"),
  9310. weight: math.unit(88, "lbs"),
  9311. name: "Side",
  9312. image: {
  9313. source: "./media/characters/chiros/side.svg",
  9314. extra: 306 / 226
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Normal",
  9321. height: math.unit(6, "cm"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(100, "lbs"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/selka/front.svg",
  9335. extra: 947 / 887
  9336. }
  9337. }
  9338. },
  9339. [
  9340. {
  9341. name: "Normal",
  9342. height: math.unit(5, "cm"),
  9343. default: true
  9344. },
  9345. ]
  9346. ))
  9347. characterMakers.push(() => makeCharacter(
  9348. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9349. {
  9350. front: {
  9351. height: math.unit(8 + 3 / 12, "feet"),
  9352. weight: math.unit(424, "lbs"),
  9353. name: "Front",
  9354. image: {
  9355. source: "./media/characters/verin/front.svg",
  9356. extra: 1845 / 1550
  9357. }
  9358. },
  9359. frontArmored: {
  9360. height: math.unit(8 + 3 / 12, "feet"),
  9361. weight: math.unit(424, "lbs"),
  9362. name: "Front (Armored)",
  9363. image: {
  9364. source: "./media/characters/verin/front-armor.svg",
  9365. extra: 1845 / 1550,
  9366. bottom: 0.01
  9367. }
  9368. },
  9369. back: {
  9370. height: math.unit(8 + 3 / 12, "feet"),
  9371. weight: math.unit(424, "lbs"),
  9372. name: "Back",
  9373. image: {
  9374. source: "./media/characters/verin/back.svg",
  9375. bottom: 0.1,
  9376. extra: 1
  9377. }
  9378. },
  9379. foot: {
  9380. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9381. name: "Foot",
  9382. image: {
  9383. source: "./media/characters/verin/foot.svg"
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Normal",
  9390. height: math.unit(8 + 3 / 12, "feet")
  9391. },
  9392. {
  9393. name: "Minimacro",
  9394. height: math.unit(21, "feet"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Macro",
  9399. height: math.unit(626, "feet")
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9405. {
  9406. front: {
  9407. height: math.unit(2.718, "meters"),
  9408. weight: math.unit(150, "lbs"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/sovrim-terraquian/front.svg",
  9412. extra: 1752/1689,
  9413. bottom: 36/1788
  9414. }
  9415. },
  9416. back: {
  9417. height: math.unit(2.718, "meters"),
  9418. weight: math.unit(150, "lbs"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/sovrim-terraquian/back.svg",
  9422. extra: 1698/1657,
  9423. bottom: 58/1756
  9424. }
  9425. },
  9426. tongue: {
  9427. height: math.unit(2.865, "feet"),
  9428. name: "Tongue",
  9429. image: {
  9430. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9431. }
  9432. },
  9433. hand: {
  9434. height: math.unit(1.61, "feet"),
  9435. name: "Hand",
  9436. image: {
  9437. source: "./media/characters/sovrim-terraquian/hand.svg"
  9438. }
  9439. },
  9440. foot: {
  9441. height: math.unit(1.05, "feet"),
  9442. name: "Foot",
  9443. image: {
  9444. source: "./media/characters/sovrim-terraquian/foot.svg"
  9445. }
  9446. },
  9447. footAlt: {
  9448. height: math.unit(0.88, "feet"),
  9449. name: "Foot (Alt)",
  9450. image: {
  9451. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Micro",
  9458. height: math.unit(2, "inches")
  9459. },
  9460. {
  9461. name: "Small",
  9462. height: math.unit(1, "meter")
  9463. },
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(Math.E, "meters"),
  9467. default: true
  9468. },
  9469. {
  9470. name: "Macro",
  9471. height: math.unit(20, "meters")
  9472. },
  9473. {
  9474. name: "Macro+",
  9475. height: math.unit(400, "meters")
  9476. },
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9481. {
  9482. front: {
  9483. height: math.unit(7, "feet"),
  9484. weight: math.unit(489, "lbs"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/reece-silvermane/front.svg",
  9488. bottom: 0.02,
  9489. extra: 1
  9490. }
  9491. },
  9492. },
  9493. [
  9494. {
  9495. name: "Macro",
  9496. height: math.unit(1.5, "miles"),
  9497. default: true
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9503. {
  9504. front: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(78, "kg"),
  9507. name: "Front",
  9508. image: {
  9509. source: "./media/characters/kane/front.svg",
  9510. extra: 978 / 899
  9511. }
  9512. },
  9513. back: {
  9514. height: math.unit(6, "feet"),
  9515. weight: math.unit(78, "kg"),
  9516. name: "Back",
  9517. image: {
  9518. source: "./media/characters/kane/back.svg",
  9519. extra: 1966/1800,
  9520. bottom: 0/1966
  9521. }
  9522. },
  9523. head: {
  9524. height: math.unit(1.4, "feet"),
  9525. name: "Head",
  9526. image: {
  9527. source: "./media/characters/kane/head.svg"
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(2.1, "m"),
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(1, "km"),
  9539. default: true
  9540. },
  9541. ]
  9542. ))
  9543. characterMakers.push(() => makeCharacter(
  9544. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9545. {
  9546. frontSfw: {
  9547. name: "Front (SFW)",
  9548. height: math.unit(6 + 3/12, "feet"),
  9549. weight: math.unit(200, "kg"),
  9550. image: {
  9551. source: "./media/characters/tegon/front-sfw.svg",
  9552. extra: 1105/1087,
  9553. bottom: 86/1191
  9554. }
  9555. },
  9556. backSfw: {
  9557. name: "Back (SFW)",
  9558. height: math.unit(6 + 3/12, "feet"),
  9559. weight: math.unit(200, "kg"),
  9560. image: {
  9561. source: "./media/characters/tegon/back-sfw.svg",
  9562. extra: 1107/1087,
  9563. bottom: 21/1128
  9564. }
  9565. },
  9566. frontNsfw: {
  9567. name: "Front (NSFW)",
  9568. height: math.unit(6 + 3/12, "feet"),
  9569. weight: math.unit(200, "kg"),
  9570. image: {
  9571. source: "./media/characters/tegon/front-nsfw.svg",
  9572. extra: 1105/1087,
  9573. bottom: 86/1191
  9574. }
  9575. },
  9576. maw: {
  9577. height: math.unit(1.23, "feet"),
  9578. name: "Maw",
  9579. image: {
  9580. source: "./media/characters/tegon/maw.svg"
  9581. }
  9582. },
  9583. dick: {
  9584. height: math.unit(1.18, "feet"),
  9585. name: "Dick",
  9586. image: {
  9587. source: "./media/characters/tegon/dick.svg"
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(1, "inch")
  9595. },
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(6 + 3 / 12, "feet"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Macro",
  9603. height: math.unit(300, "feet")
  9604. },
  9605. {
  9606. name: "Megamacro",
  9607. height: math.unit(69, "miles")
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9613. {
  9614. side: {
  9615. height: math.unit(6, "feet"),
  9616. weight: math.unit(2304, "lbs"),
  9617. name: "Side",
  9618. image: {
  9619. source: "./media/characters/arcturax/side.svg",
  9620. extra: 790 / 376,
  9621. bottom: 0.01
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Micro",
  9628. height: math.unit(2, "inch")
  9629. },
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(6, "feet")
  9633. },
  9634. {
  9635. name: "Macro",
  9636. height: math.unit(39, "feet"),
  9637. default: true
  9638. },
  9639. {
  9640. name: "Megamacro",
  9641. height: math.unit(7, "miles")
  9642. },
  9643. ]
  9644. ))
  9645. characterMakers.push(() => makeCharacter(
  9646. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9647. {
  9648. front: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(50, "lbs"),
  9651. name: "Front",
  9652. image: {
  9653. source: "./media/characters/sentri/front.svg",
  9654. extra: 1750 / 1570,
  9655. bottom: 0.025
  9656. }
  9657. },
  9658. frontAlt: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(50, "lbs"),
  9661. name: "Front (Alt)",
  9662. image: {
  9663. source: "./media/characters/sentri/front-alt.svg",
  9664. extra: 1750 / 1570,
  9665. bottom: 0.025
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Normal",
  9672. height: math.unit(15, "feet"),
  9673. default: true
  9674. },
  9675. {
  9676. name: "Macro",
  9677. height: math.unit(2500, "feet")
  9678. }
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(5 + 8 / 12, "feet"),
  9686. weight: math.unit(130, "lbs"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/corvin/front.svg",
  9690. extra: 1803 / 1629
  9691. }
  9692. },
  9693. frontShirt: {
  9694. height: math.unit(5 + 8 / 12, "feet"),
  9695. weight: math.unit(130, "lbs"),
  9696. name: "Front (Shirt)",
  9697. image: {
  9698. source: "./media/characters/corvin/front-shirt.svg",
  9699. extra: 1803 / 1629
  9700. }
  9701. },
  9702. frontPoncho: {
  9703. height: math.unit(5 + 8 / 12, "feet"),
  9704. weight: math.unit(130, "lbs"),
  9705. name: "Front (Poncho)",
  9706. image: {
  9707. source: "./media/characters/corvin/front-poncho.svg",
  9708. extra: 1803 / 1629
  9709. }
  9710. },
  9711. side: {
  9712. height: math.unit(5 + 8 / 12, "feet"),
  9713. weight: math.unit(130, "lbs"),
  9714. name: "Side",
  9715. image: {
  9716. source: "./media/characters/corvin/side.svg",
  9717. extra: 1012 / 945
  9718. }
  9719. },
  9720. back: {
  9721. height: math.unit(5 + 8 / 12, "feet"),
  9722. weight: math.unit(130, "lbs"),
  9723. name: "Back",
  9724. image: {
  9725. source: "./media/characters/corvin/back.svg",
  9726. extra: 1803 / 1629
  9727. }
  9728. },
  9729. },
  9730. [
  9731. {
  9732. name: "Micro",
  9733. height: math.unit(3, "inches")
  9734. },
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5 + 8 / 12, "feet")
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(300, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(500, "miles")
  9747. }
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(135, "lbs"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/q/front.svg",
  9759. extra: 854 / 752,
  9760. bottom: 0.005
  9761. }
  9762. },
  9763. back: {
  9764. height: math.unit(6, "feet"),
  9765. weight: math.unit(130, "lbs"),
  9766. name: "Back",
  9767. image: {
  9768. source: "./media/characters/q/back.svg",
  9769. extra: 854 / 752
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Macro",
  9776. height: math.unit(90, "feet"),
  9777. default: true
  9778. },
  9779. {
  9780. name: "Extra Macro",
  9781. height: math.unit(300, "feet"),
  9782. },
  9783. {
  9784. name: "BIG WALF",
  9785. height: math.unit(750, "feet"),
  9786. },
  9787. ]
  9788. ))
  9789. characterMakers.push(() => makeCharacter(
  9790. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9791. {
  9792. front: {
  9793. height: math.unit(3, "feet"),
  9794. weight: math.unit(28, "lbs"),
  9795. name: "Front",
  9796. image: {
  9797. source: "./media/characters/citrine/front.svg"
  9798. }
  9799. }
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(3, "feet"),
  9805. default: true
  9806. }
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9811. {
  9812. front: {
  9813. height: math.unit(14, "feet"),
  9814. weight: math.unit(1450, "kg"),
  9815. preyCapacity: math.unit(15, "people"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/aura-starwind/front.svg",
  9819. extra: 1440/1327,
  9820. bottom: 11/1451
  9821. }
  9822. },
  9823. side: {
  9824. height: math.unit(14, "feet"),
  9825. weight: math.unit(1450, "kg"),
  9826. preyCapacity: math.unit(15, "people"),
  9827. name: "Side",
  9828. image: {
  9829. source: "./media/characters/aura-starwind/side.svg",
  9830. extra: 1654 / 1497
  9831. }
  9832. },
  9833. taur: {
  9834. height: math.unit(18, "feet"),
  9835. weight: math.unit(5500, "kg"),
  9836. preyCapacity: math.unit(50, "people"),
  9837. name: "Taur",
  9838. image: {
  9839. source: "./media/characters/aura-starwind/taur.svg",
  9840. extra: 1760 / 1650
  9841. }
  9842. },
  9843. feral: {
  9844. height: math.unit(46, "feet"),
  9845. weight: math.unit(25000, "kg"),
  9846. preyCapacity: math.unit(120, "people"),
  9847. name: "Feral",
  9848. image: {
  9849. source: "./media/characters/aura-starwind/feral.svg"
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Normal",
  9856. height: math.unit(14, "feet"),
  9857. default: true
  9858. },
  9859. {
  9860. name: "Macro",
  9861. height: math.unit(50, "meters")
  9862. },
  9863. {
  9864. name: "Megamacro",
  9865. height: math.unit(5000, "meters")
  9866. },
  9867. {
  9868. name: "Gigamacro",
  9869. height: math.unit(100000, "kilometers")
  9870. },
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9875. {
  9876. front: {
  9877. height: math.unit(2 + 7 / 12, "feet"),
  9878. weight: math.unit(32, "lbs"),
  9879. name: "Front",
  9880. image: {
  9881. source: "./media/characters/rivet/front.svg",
  9882. extra: 1716 / 1658,
  9883. bottom: 0.03
  9884. }
  9885. },
  9886. foot: {
  9887. height: math.unit(0.551, "feet"),
  9888. name: "Rivet's Foot",
  9889. image: {
  9890. source: "./media/characters/rivet/foot.svg"
  9891. },
  9892. rename: true
  9893. }
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(1.5, "inches"),
  9899. },
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(2 + 7 / 12, "feet"),
  9903. default: true
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(85, "feet")
  9908. },
  9909. {
  9910. name: "Megamacro",
  9911. height: math.unit(2.2, "km")
  9912. }
  9913. ]
  9914. ))
  9915. characterMakers.push(() => makeCharacter(
  9916. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9917. {
  9918. front: {
  9919. height: math.unit(5 + 9 / 12, "feet"),
  9920. weight: math.unit(150, "lbs"),
  9921. name: "Front",
  9922. image: {
  9923. source: "./media/characters/coffee/front.svg",
  9924. extra: 946/880,
  9925. bottom: 66/1012
  9926. }
  9927. },
  9928. foot: {
  9929. height: math.unit(1.29, "feet"),
  9930. name: "Foot",
  9931. image: {
  9932. source: "./media/characters/coffee/foot.svg"
  9933. }
  9934. },
  9935. },
  9936. [
  9937. {
  9938. name: "Micro",
  9939. height: math.unit(2, "inches"),
  9940. },
  9941. {
  9942. name: "Normal",
  9943. height: math.unit(5 + 9 / 12, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Macro",
  9948. height: math.unit(800, "feet")
  9949. },
  9950. {
  9951. name: "Megamacro",
  9952. height: math.unit(25, "miles")
  9953. }
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9958. {
  9959. front: {
  9960. height: math.unit(6, "feet"),
  9961. weight: math.unit(200, "lbs"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/chari-gal/front.svg",
  9965. extra: 735/649,
  9966. bottom: 55/790
  9967. },
  9968. form: "normal",
  9969. default: true
  9970. },
  9971. back: {
  9972. height: math.unit(6, "feet"),
  9973. weight: math.unit(200, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/chari-gal/back.svg",
  9977. extra: 762/666,
  9978. bottom: 31/793
  9979. },
  9980. form: "normal"
  9981. },
  9982. mouth: {
  9983. height: math.unit(1.35, "feet"),
  9984. name: "Mouth",
  9985. image: {
  9986. source: "./media/characters/chari-gal/mouth.svg"
  9987. },
  9988. form: "normal"
  9989. },
  9990. gigantamax: {
  9991. height: math.unit(6 * 16, "feet"),
  9992. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9993. name: "Gigantamax",
  9994. image: {
  9995. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9996. extra: 1507/1149,
  9997. bottom: 254/1761
  9998. },
  9999. form: "gigantamax",
  10000. default: true
  10001. },
  10002. },
  10003. [
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(5 + 7 / 12, "feet"),
  10007. form: "normal",
  10008. },
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(200, "feet"),
  10012. default: true,
  10013. form: "normal"
  10014. },
  10015. {
  10016. name: "Normal",
  10017. height: math.unit(16 * (5 + 7 / 12), "feet"),
  10018. form: "gigantamax",
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(16 * 200, "feet"),
  10023. default: true,
  10024. form: "gigantamax"
  10025. },
  10026. ],
  10027. {
  10028. "normal": {
  10029. name: "Normal",
  10030. default: true
  10031. },
  10032. "gigantamax": {
  10033. name: "Gigantamax",
  10034. },
  10035. }
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(150, "lbs"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/nova/front.svg",
  10046. extra: 5000 / 4722,
  10047. bottom: 0.02
  10048. }
  10049. }
  10050. },
  10051. [
  10052. {
  10053. name: "Micro-",
  10054. height: math.unit(0.8, "inches")
  10055. },
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(2, "inches"),
  10059. default: true
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10065. {
  10066. koboldFront: {
  10067. height: math.unit(3 + 1 / 12, "feet"),
  10068. weight: math.unit(21.7, "lbs"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/argent/kobold-front.svg",
  10072. extra: 1471 / 1331,
  10073. bottom: 100.8 / 1575.5
  10074. },
  10075. form: "kobold",
  10076. default: true
  10077. },
  10078. dragonFront: {
  10079. height: math.unit(75, "inches"),
  10080. name: "Front",
  10081. image: {
  10082. source: "./media/characters/argent/dragon-front.svg",
  10083. extra: 1389/1248,
  10084. bottom: 54/1443
  10085. },
  10086. form: "dragon",
  10087. },
  10088. dragonBack: {
  10089. height: math.unit(75, "inches"),
  10090. name: "Back",
  10091. image: {
  10092. source: "./media/characters/argent/dragon-back.svg",
  10093. extra: 1399/1271,
  10094. bottom: 23/1422
  10095. },
  10096. form: "dragon",
  10097. },
  10098. dragonDressed: {
  10099. height: math.unit(75, "inches"),
  10100. name: "Dressed",
  10101. image: {
  10102. source: "./media/characters/argent/dragon-dressed.svg",
  10103. extra: 1350/1215,
  10104. bottom: 26/1376
  10105. },
  10106. form: "dragon"
  10107. },
  10108. dragonHead: {
  10109. height: math.unit(23.5, "inches"),
  10110. name: "Head",
  10111. image: {
  10112. source: "./media/characters/argent/dragon-head.svg"
  10113. },
  10114. form: "dragon",
  10115. },
  10116. },
  10117. [
  10118. {
  10119. name: "Micro",
  10120. height: math.unit(2, "inches"),
  10121. form: "kobold",
  10122. },
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(3 + 1 / 12, "feet"),
  10126. form: "kobold",
  10127. default: true
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(120, "feet"),
  10132. form: "kobold",
  10133. },
  10134. {
  10135. name: "Speck",
  10136. height: math.unit(1, "mm"),
  10137. form: "dragon",
  10138. },
  10139. {
  10140. name: "Tiny",
  10141. height: math.unit(1, "cm"),
  10142. form: "dragon",
  10143. },
  10144. {
  10145. name: "Micro",
  10146. height: math.unit(5, "cm"),
  10147. form: "dragon",
  10148. },
  10149. {
  10150. name: "Normal",
  10151. height: math.unit(75, "inches"),
  10152. form: "dragon",
  10153. default: true
  10154. },
  10155. {
  10156. name: "Extra Tall",
  10157. height: math.unit(9, "feet"),
  10158. form: "dragon",
  10159. },
  10160. {
  10161. name: "Inconvenient",
  10162. height: math.unit(5, "meters"),
  10163. form: "dragon",
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(70, "meters"),
  10168. form: "dragon",
  10169. },
  10170. {
  10171. name: "Macro+",
  10172. height: math.unit(250, "meters"),
  10173. form: "dragon",
  10174. },
  10175. {
  10176. name: "Megamacro",
  10177. height: math.unit(20, "km"),
  10178. form: "dragon",
  10179. },
  10180. {
  10181. name: "Mountainous",
  10182. height: math.unit(100, "km"),
  10183. form: "dragon",
  10184. },
  10185. {
  10186. name: "Continental",
  10187. height: math.unit(2, "megameters"),
  10188. form: "dragon",
  10189. },
  10190. {
  10191. name: "Too Big",
  10192. height: math.unit(900, "megameters"),
  10193. form: "dragon",
  10194. },
  10195. ],
  10196. {
  10197. "kobold": {
  10198. name: "Kobold",
  10199. default: true
  10200. },
  10201. "dragon": {
  10202. name: "Dragon",
  10203. },
  10204. }
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10208. {
  10209. lamp: {
  10210. height: math.unit(7 * 1559 / 989, "feet"),
  10211. name: "Magic Lamp",
  10212. image: {
  10213. source: "./media/characters/mira-al-cul/lamp.svg",
  10214. extra: 1617 / 1559
  10215. }
  10216. },
  10217. front: {
  10218. height: math.unit(7, "feet"),
  10219. name: "Front",
  10220. image: {
  10221. source: "./media/characters/mira-al-cul/front.svg",
  10222. extra: 1044 / 990
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Heavily Restricted",
  10229. height: math.unit(7 * 1559 / 989, "feet")
  10230. },
  10231. {
  10232. name: "Freshly Freed",
  10233. height: math.unit(50 * 1559 / 989, "feet")
  10234. },
  10235. {
  10236. name: "World Encompassing",
  10237. height: math.unit(10000 * 1559 / 989, "miles")
  10238. },
  10239. {
  10240. name: "Galactic",
  10241. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10242. },
  10243. {
  10244. name: "Palmed Universe",
  10245. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10246. default: true
  10247. },
  10248. {
  10249. name: "Multiversal Matriarch",
  10250. height: math.unit(8.87e10, "yottameters")
  10251. },
  10252. {
  10253. name: "Void Mother",
  10254. height: math.unit(3.14e110, "yottaparsecs")
  10255. },
  10256. {
  10257. name: "Toying with Transcendence",
  10258. height: math.unit(1e307, "meters")
  10259. },
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10264. {
  10265. front: {
  10266. height: math.unit(17 + 1 / 12, "feet"),
  10267. weight: math.unit(476.2 * 5, "lbs"),
  10268. name: "Front",
  10269. image: {
  10270. source: "./media/characters/kuro-shi-uchū/front.svg",
  10271. extra: 2329 / 1835,
  10272. bottom: 0.02
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(2, "inches")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(12, "meters")
  10284. },
  10285. {
  10286. name: "Planetary",
  10287. height: math.unit(0.00929, "AU"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Universal",
  10292. height: math.unit(20, "gigaparsecs")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(5 + 2 / 12, "feet"),
  10301. weight: math.unit(120, "lbs"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/katherine/front.svg",
  10305. extra: 2075 / 1969
  10306. }
  10307. },
  10308. dress: {
  10309. height: math.unit(5 + 2 / 12, "feet"),
  10310. weight: math.unit(120, "lbs"),
  10311. name: "Dress",
  10312. image: {
  10313. source: "./media/characters/katherine/dress.svg",
  10314. extra: 2258 / 2064
  10315. }
  10316. },
  10317. },
  10318. [
  10319. {
  10320. name: "Micro",
  10321. height: math.unit(1, "inches"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(5 + 2 / 12, "feet")
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(100, "meters")
  10331. },
  10332. {
  10333. name: "Megamacro",
  10334. height: math.unit(80, "miles")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(7 + 8 / 12, "feet"),
  10343. weight: math.unit(250, "lbs"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/yevis/front.svg",
  10347. extra: 1938 / 1755
  10348. }
  10349. }
  10350. },
  10351. [
  10352. {
  10353. name: "Mortal",
  10354. height: math.unit(7 + 8 / 12, "feet")
  10355. },
  10356. {
  10357. name: "Battle",
  10358. height: math.unit(25 + 11 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Wrath",
  10362. height: math.unit(1654 + 11 / 12, "feet")
  10363. },
  10364. {
  10365. name: "Planet Destroyer",
  10366. height: math.unit(12000, "miles")
  10367. },
  10368. {
  10369. name: "Galaxy Conqueror",
  10370. height: math.unit(1.45, "zettameters"),
  10371. default: true
  10372. },
  10373. {
  10374. name: "Universal War",
  10375. height: math.unit(184, "gigaparsecs")
  10376. },
  10377. {
  10378. name: "Eternity War",
  10379. height: math.unit(1.98e55, "yottaparsecs")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(5 + 8 / 12, "feet"),
  10388. weight: math.unit(63, "kg"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/xavier/front.svg",
  10392. extra: 944 / 883
  10393. }
  10394. },
  10395. frontStretch: {
  10396. height: math.unit(5 + 8 / 12, "feet"),
  10397. weight: math.unit(63, "kg"),
  10398. name: "Stretching",
  10399. image: {
  10400. source: "./media/characters/xavier/front-stretch.svg",
  10401. extra: 962 / 820
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(5 + 8 / 12, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(100, "meters"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "McLargeHuge",
  10417. height: math.unit(10, "miles")
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(5 + 5 / 12, "feet"),
  10426. weight: math.unit(150, "lb"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/joshii/front.svg",
  10430. extra: 765 / 653,
  10431. bottom: 51 / 816
  10432. }
  10433. },
  10434. foot: {
  10435. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10436. name: "Foot",
  10437. image: {
  10438. source: "./media/characters/joshii/foot.svg"
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Micro",
  10445. height: math.unit(2, "inches")
  10446. },
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(5 + 5 / 12, "feet")
  10450. },
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(785, "feet"),
  10454. default: true
  10455. },
  10456. {
  10457. name: "Megamacro",
  10458. height: math.unit(24.5, "miles")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(150, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/goddess-elizabeth/front.svg",
  10471. extra: 1800 / 1525,
  10472. bottom: 0.005
  10473. }
  10474. },
  10475. foot: {
  10476. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10477. name: "Foot",
  10478. image: {
  10479. source: "./media/characters/goddess-elizabeth/foot.svg"
  10480. }
  10481. },
  10482. mouth: {
  10483. height: math.unit(6, "feet"),
  10484. name: "Mouth",
  10485. image: {
  10486. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Micro",
  10493. height: math.unit(12, "feet")
  10494. },
  10495. {
  10496. name: "Normal",
  10497. height: math.unit(80, "miles"),
  10498. default: true
  10499. },
  10500. {
  10501. name: "Macro",
  10502. height: math.unit(15000, "parsecs")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10508. {
  10509. front: {
  10510. height: math.unit(5 + 9 / 12, "feet"),
  10511. weight: math.unit(144, "lb"),
  10512. name: "Front",
  10513. image: {
  10514. source: "./media/characters/kara/front.svg"
  10515. }
  10516. },
  10517. feet: {
  10518. height: math.unit(6 / 6.765, "feet"),
  10519. name: "Kara's Feet",
  10520. rename: true,
  10521. image: {
  10522. source: "./media/characters/kara/feet.svg"
  10523. }
  10524. },
  10525. },
  10526. [
  10527. {
  10528. name: "Normal",
  10529. height: math.unit(5 + 9 / 12, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(174, "feet"),
  10534. default: true
  10535. },
  10536. ]
  10537. ))
  10538. characterMakers.push(() => makeCharacter(
  10539. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10540. {
  10541. front: {
  10542. height: math.unit(18, "feet"),
  10543. weight: math.unit(4050, "lb"),
  10544. name: "Front",
  10545. image: {
  10546. source: "./media/characters/tyrone/front.svg",
  10547. extra: 2405 / 2270,
  10548. bottom: 182 / 2587
  10549. }
  10550. },
  10551. },
  10552. [
  10553. {
  10554. name: "Normal",
  10555. height: math.unit(18, "feet"),
  10556. default: true
  10557. },
  10558. {
  10559. name: "Macro",
  10560. height: math.unit(300, "feet")
  10561. },
  10562. {
  10563. name: "Megamacro",
  10564. height: math.unit(15, "km")
  10565. },
  10566. {
  10567. name: "Gigamacro",
  10568. height: math.unit(500, "km")
  10569. },
  10570. {
  10571. name: "Teramacro",
  10572. height: math.unit(0.5, "gigameters")
  10573. },
  10574. {
  10575. name: "Omnimacro",
  10576. height: math.unit(1e252, "yottauniverse")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(7 + 8 / 12, "feet"),
  10585. weight: math.unit(120, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/danny/front.svg",
  10589. extra: 1490 / 1350
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(7 + 8 / 12, "feet"),
  10594. weight: math.unit(120, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/danny/back.svg",
  10598. extra: 1490 / 1350
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(7 + 8 / 12, "feet"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(3.5, "inches"),
  10615. weight: math.unit(19, "grams"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/mallow/front.svg",
  10619. extra: 471 / 431
  10620. }
  10621. },
  10622. back: {
  10623. height: math.unit(3.5, "inches"),
  10624. weight: math.unit(19, "grams"),
  10625. name: "Back",
  10626. image: {
  10627. source: "./media/characters/mallow/back.svg",
  10628. extra: 471 / 431
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(3.5, "inches"),
  10636. default: true
  10637. },
  10638. ]
  10639. ))
  10640. characterMakers.push(() => makeCharacter(
  10641. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10642. {
  10643. front: {
  10644. height: math.unit(9, "feet"),
  10645. weight: math.unit(230, "kg"),
  10646. name: "Front",
  10647. image: {
  10648. source: "./media/characters/starry-aqua/front.svg"
  10649. }
  10650. },
  10651. back: {
  10652. height: math.unit(9, "feet"),
  10653. weight: math.unit(230, "kg"),
  10654. name: "Back",
  10655. image: {
  10656. source: "./media/characters/starry-aqua/back.svg"
  10657. }
  10658. },
  10659. hand: {
  10660. height: math.unit(9 * 0.1168, "feet"),
  10661. name: "Hand",
  10662. image: {
  10663. source: "./media/characters/starry-aqua/hand.svg"
  10664. }
  10665. },
  10666. foot: {
  10667. height: math.unit(9 * 0.18, "feet"),
  10668. name: "Foot",
  10669. image: {
  10670. source: "./media/characters/starry-aqua/foot.svg"
  10671. }
  10672. }
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(3, "inches")
  10678. },
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(9, "feet")
  10682. },
  10683. {
  10684. name: "Macro",
  10685. height: math.unit(300, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(3200, "feet")
  10691. }
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(15, "feet"),
  10699. weight: math.unit(5026, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/luka-towers/front.svg",
  10703. extra: 1269/1133,
  10704. bottom: 51/1320
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(15, "feet"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Minimacro",
  10716. height: math.unit(25, "feet")
  10717. },
  10718. {
  10719. name: "Macro",
  10720. height: math.unit(320, "feet")
  10721. },
  10722. {
  10723. name: "Megamacro",
  10724. height: math.unit(35000, "feet")
  10725. },
  10726. {
  10727. name: "Gigamacro",
  10728. height: math.unit(4000, "miles")
  10729. },
  10730. {
  10731. name: "Teramacro",
  10732. height: math.unit(15000, "miles")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10738. {
  10739. front: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(150, "lb"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/natalie-nightring/front.svg",
  10745. extra: 1,
  10746. bottom: 0.06
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Uh Oh",
  10753. height: math.unit(0.1, "mm")
  10754. },
  10755. {
  10756. name: "Small",
  10757. height: math.unit(3, "inches")
  10758. },
  10759. {
  10760. name: "Human Scale",
  10761. height: math.unit(6, "feet")
  10762. },
  10763. {
  10764. name: "Librarian",
  10765. height: math.unit(50, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Immense",
  10770. height: math.unit(200, "miles")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(6, "feet"),
  10779. weight: math.unit(180, "lbs"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/danni-rosie/front.svg",
  10783. extra: 1260 / 1128,
  10784. bottom: 0.022
  10785. }
  10786. },
  10787. },
  10788. [
  10789. {
  10790. name: "Micro",
  10791. height: math.unit(2, "inches"),
  10792. default: true
  10793. },
  10794. ]
  10795. ))
  10796. characterMakers.push(() => makeCharacter(
  10797. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10798. {
  10799. front: {
  10800. height: math.unit(5 + 9 / 12, "feet"),
  10801. weight: math.unit(220, "lb"),
  10802. name: "Front",
  10803. image: {
  10804. source: "./media/characters/samantha-kruse/front.svg",
  10805. extra: (985 / 935),
  10806. bottom: 0.03
  10807. }
  10808. },
  10809. frontUndressed: {
  10810. height: math.unit(5 + 9 / 12, "feet"),
  10811. weight: math.unit(220, "lb"),
  10812. name: "Front (Undressed)",
  10813. image: {
  10814. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10815. extra: (973 / 923),
  10816. bottom: 0.025
  10817. }
  10818. },
  10819. fat: {
  10820. height: math.unit(5 + 9 / 12, "feet"),
  10821. weight: math.unit(900, "lb"),
  10822. name: "Front (Fat)",
  10823. image: {
  10824. source: "./media/characters/samantha-kruse/fat.svg",
  10825. extra: 2688 / 2561
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(5 + 9 / 12, "feet"),
  10833. default: true
  10834. }
  10835. ]
  10836. ))
  10837. characterMakers.push(() => makeCharacter(
  10838. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10839. {
  10840. back: {
  10841. height: math.unit(5 + 4 / 12, "feet"),
  10842. weight: math.unit(4963, "lb"),
  10843. name: "Back",
  10844. image: {
  10845. source: "./media/characters/amelia-rosie/back.svg",
  10846. extra: 1113 / 963,
  10847. bottom: 0.01
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Level 0",
  10854. height: math.unit(5 + 4 / 12, "feet")
  10855. },
  10856. {
  10857. name: "Level 1",
  10858. height: math.unit(164597, "feet"),
  10859. default: true
  10860. },
  10861. {
  10862. name: "Level 2",
  10863. height: math.unit(956243, "miles")
  10864. },
  10865. {
  10866. name: "Level 3",
  10867. height: math.unit(29421709423, "miles")
  10868. },
  10869. {
  10870. name: "Level 4",
  10871. height: math.unit(154, "lightyears")
  10872. },
  10873. {
  10874. name: "Level 5",
  10875. height: math.unit(4738272, "lightyears")
  10876. },
  10877. {
  10878. name: "Level 6",
  10879. height: math.unit(145787152896, "lightyears")
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(5 + 11 / 12, "feet"),
  10888. weight: math.unit(65, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/rook-kitara/front.svg",
  10892. extra: 1347 / 1274,
  10893. bottom: 0.005
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Totally Unfair",
  10900. height: math.unit(1.8, "mm")
  10901. },
  10902. {
  10903. name: "Lap Rookie",
  10904. height: math.unit(1.4, "feet")
  10905. },
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(5 + 11 / 12, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "How Did This Happen",
  10913. height: math.unit(80, "miles")
  10914. }
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(7, "feet"),
  10922. weight: math.unit(300, "lb"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/pisces/front.svg",
  10926. extra: 2255 / 2115,
  10927. bottom: 0.03
  10928. }
  10929. },
  10930. back: {
  10931. height: math.unit(7, "feet"),
  10932. weight: math.unit(300, "lb"),
  10933. name: "Back",
  10934. image: {
  10935. source: "./media/characters/pisces/back.svg",
  10936. extra: 2146 / 2055,
  10937. bottom: 0.04
  10938. }
  10939. },
  10940. },
  10941. [
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(7, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Swimming Pool",
  10949. height: math.unit(12.2, "meters")
  10950. },
  10951. {
  10952. name: "Olympic Swimming Pool",
  10953. height: math.unit(56.3, "meters")
  10954. },
  10955. {
  10956. name: "Lake Superior",
  10957. height: math.unit(93900, "meters")
  10958. },
  10959. {
  10960. name: "Mediterranean Sea",
  10961. height: math.unit(644457, "meters")
  10962. },
  10963. {
  10964. name: "World's Oceans",
  10965. height: math.unit(4567491, "meters")
  10966. },
  10967. ]
  10968. ))
  10969. characterMakers.push(() => makeCharacter(
  10970. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10971. {
  10972. front: {
  10973. height: math.unit(2.3, "meters"),
  10974. weight: math.unit(120, "kg"),
  10975. name: "Front",
  10976. image: {
  10977. source: "./media/characters/zelas/front.svg"
  10978. }
  10979. },
  10980. side: {
  10981. height: math.unit(2.3, "meters"),
  10982. weight: math.unit(120, "kg"),
  10983. name: "Side",
  10984. image: {
  10985. source: "./media/characters/zelas/side.svg"
  10986. }
  10987. },
  10988. back: {
  10989. height: math.unit(2.3, "meters"),
  10990. weight: math.unit(120, "kg"),
  10991. name: "Back",
  10992. image: {
  10993. source: "./media/characters/zelas/back.svg"
  10994. }
  10995. },
  10996. foot: {
  10997. height: math.unit(1.116, "feet"),
  10998. name: "Foot",
  10999. image: {
  11000. source: "./media/characters/zelas/foot.svg"
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Normal",
  11007. height: math.unit(2.3, "meters")
  11008. },
  11009. {
  11010. name: "Macro",
  11011. height: math.unit(30, "meters"),
  11012. default: true
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(1, "inch"),
  11021. weight: math.unit(0.21, "grams"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/talbot/front.svg",
  11025. extra: 594 / 544
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Micro",
  11032. height: math.unit(1, "inch"),
  11033. default: true
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  11039. {
  11040. front: {
  11041. height: math.unit(3 + 3 / 12, "feet"),
  11042. weight: math.unit(51.8, "lb"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/fliss/front.svg",
  11046. extra: 840 / 640
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Teeny Tiny",
  11053. height: math.unit(1, "mm")
  11054. },
  11055. {
  11056. name: "Small",
  11057. height: math.unit(1, "inch"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Standard Sylveon",
  11062. height: math.unit(3 + 3 / 12, "feet")
  11063. },
  11064. {
  11065. name: "Large Nuisance",
  11066. height: math.unit(33, "feet")
  11067. },
  11068. {
  11069. name: "City Filler",
  11070. height: math.unit(3000, "feet")
  11071. },
  11072. {
  11073. name: "New Horizon",
  11074. height: math.unit(6000, "miles")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(5, "cm"),
  11083. weight: math.unit(1.94, "g"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/fleta/front.svg",
  11087. extra: 835 / 803
  11088. }
  11089. },
  11090. back: {
  11091. height: math.unit(5, "cm"),
  11092. weight: math.unit(1.94, "g"),
  11093. name: "Back",
  11094. image: {
  11095. source: "./media/characters/fleta/back.svg",
  11096. extra: 835 / 803
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Micro",
  11103. height: math.unit(5, "cm"),
  11104. default: true
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11110. {
  11111. front: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(225, "lb"),
  11114. name: "Front",
  11115. image: {
  11116. source: "./media/characters/dominic/front.svg",
  11117. extra: 1770 / 1620,
  11118. bottom: 0.025
  11119. }
  11120. },
  11121. back: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(225, "lb"),
  11124. name: "Back",
  11125. image: {
  11126. source: "./media/characters/dominic/back.svg",
  11127. extra: 1745 / 1620,
  11128. bottom: 0.065
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Nano",
  11135. height: math.unit(0.1, "mm")
  11136. },
  11137. {
  11138. name: "Micro-",
  11139. height: math.unit(1, "mm")
  11140. },
  11141. {
  11142. name: "Micro",
  11143. height: math.unit(4, "inches")
  11144. },
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(6 + 4 / 12, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(115, "feet")
  11153. },
  11154. {
  11155. name: "Macro+",
  11156. height: math.unit(955, "feet")
  11157. },
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(8990, "feet")
  11161. },
  11162. {
  11163. name: "Gigmacro",
  11164. height: math.unit(9310, "miles")
  11165. },
  11166. {
  11167. name: "Teramacro",
  11168. height: math.unit(1567005010, "miles")
  11169. },
  11170. {
  11171. name: "Examacro",
  11172. height: math.unit(1425, "parsecs")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(400, "feet"),
  11181. weight: math.unit(44444444, "lb"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/major-colonel/front.svg"
  11185. }
  11186. },
  11187. back: {
  11188. height: math.unit(400, "feet"),
  11189. weight: math.unit(44444444, "lb"),
  11190. name: "Back",
  11191. image: {
  11192. source: "./media/characters/major-colonel/back.svg"
  11193. }
  11194. },
  11195. },
  11196. [
  11197. {
  11198. name: "Macro",
  11199. height: math.unit(400, "feet"),
  11200. default: true
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11206. {
  11207. catFront: {
  11208. height: math.unit(6, "feet"),
  11209. weight: math.unit(120, "lb"),
  11210. name: "Front (Cat Side)",
  11211. image: {
  11212. source: "./media/characters/axel-lycan/cat-front.svg",
  11213. extra: 430 / 402,
  11214. bottom: 43 / 472.35
  11215. }
  11216. },
  11217. catBack: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(120, "lb"),
  11220. name: "Back (Cat Side)",
  11221. image: {
  11222. source: "./media/characters/axel-lycan/cat-back.svg",
  11223. extra: 447 / 419,
  11224. bottom: 23.3 / 469
  11225. }
  11226. },
  11227. wolfFront: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(120, "lb"),
  11230. name: "Front (Wolf Side)",
  11231. image: {
  11232. source: "./media/characters/axel-lycan/wolf-front.svg",
  11233. extra: 485 / 456,
  11234. bottom: 19 / 504
  11235. }
  11236. },
  11237. wolfBack: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(120, "lb"),
  11240. name: "Back (Wolf Side)",
  11241. image: {
  11242. source: "./media/characters/axel-lycan/wolf-back.svg",
  11243. extra: 475 / 438,
  11244. bottom: 39.2 / 514
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(1, "km"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(5 + 9 / 12, "feet"),
  11261. weight: math.unit(175, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/vanrel-hyena/front.svg",
  11265. extra: 1086 / 1010,
  11266. bottom: 0.04
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(5 + 9 / 12, "feet"),
  11274. default: true
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(6, "feet"),
  11283. weight: math.unit(103, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/abbott-absol/front.svg",
  11287. extra: 765/694,
  11288. bottom: 47/812
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Megamicro",
  11295. height: math.unit(0.1, "mm")
  11296. },
  11297. {
  11298. name: "Micro",
  11299. height: math.unit(1, "inch")
  11300. },
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(6, "feet"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(264, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/hector/front.svg",
  11317. extra: 2280 / 2130,
  11318. bottom: 0.07
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(12.25, "foot"),
  11326. default: true
  11327. },
  11328. {
  11329. name: "Macro",
  11330. height: math.unit(160, "feet")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(150, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/sal/front.svg",
  11343. extra: 1846 / 1699,
  11344. bottom: 0.04
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Megamacro",
  11351. height: math.unit(10, "miles"),
  11352. default: true
  11353. },
  11354. ]
  11355. ))
  11356. characterMakers.push(() => makeCharacter(
  11357. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11358. {
  11359. front: {
  11360. height: math.unit(3, "meters"),
  11361. weight: math.unit(450, "kg"),
  11362. name: "front",
  11363. image: {
  11364. source: "./media/characters/ranger/front.svg",
  11365. extra: 2401 / 2243,
  11366. bottom: 0.05
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(3, "meters"),
  11374. default: true
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(14, "feet"),
  11383. weight: math.unit(800, "kg"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/theresa/front.svg",
  11387. extra: 3575 / 3346,
  11388. bottom: 0.03
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(14, "feet"),
  11396. default: true
  11397. },
  11398. ]
  11399. ))
  11400. characterMakers.push(() => makeCharacter(
  11401. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11402. {
  11403. front: {
  11404. height: math.unit(6, "feet"),
  11405. weight: math.unit(3, "kg"),
  11406. name: "Front",
  11407. image: {
  11408. source: "./media/characters/ine/front.svg",
  11409. extra: 678 / 539,
  11410. bottom: 0.023
  11411. }
  11412. },
  11413. },
  11414. [
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(2.265, "feet"),
  11418. default: true
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11424. {
  11425. front: {
  11426. height: math.unit(5, "feet"),
  11427. weight: math.unit(30, "kg"),
  11428. name: "Front",
  11429. image: {
  11430. source: "./media/characters/vial/front.svg",
  11431. extra: 1365 / 1277,
  11432. bottom: 0.04
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(5, "feet"),
  11440. default: true
  11441. },
  11442. ]
  11443. ))
  11444. characterMakers.push(() => makeCharacter(
  11445. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11446. {
  11447. side: {
  11448. height: math.unit(3.4, "meters"),
  11449. weight: math.unit(1000, "lb"),
  11450. name: "Side",
  11451. image: {
  11452. source: "./media/characters/rovoska/side.svg",
  11453. extra: 4403 / 1515
  11454. }
  11455. },
  11456. },
  11457. [
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(3.4, "meters"),
  11461. default: true
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(8, "feet"),
  11470. weight: math.unit(315, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/gunner-rotthbauer/front.svg"
  11474. }
  11475. },
  11476. back: {
  11477. height: math.unit(8, "feet"),
  11478. weight: math.unit(315, "lb"),
  11479. name: "Back",
  11480. image: {
  11481. source: "./media/characters/gunner-rotthbauer/back.svg"
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Micro",
  11488. height: math.unit(3.5, "inches")
  11489. },
  11490. {
  11491. name: "Normal",
  11492. height: math.unit(8, "feet"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Macro",
  11497. height: math.unit(250, "feet")
  11498. },
  11499. {
  11500. name: "Megamacro",
  11501. height: math.unit(1, "AU")
  11502. },
  11503. ]
  11504. ))
  11505. characterMakers.push(() => makeCharacter(
  11506. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11507. {
  11508. front: {
  11509. height: math.unit(5 + 5 / 12, "feet"),
  11510. weight: math.unit(140, "lb"),
  11511. name: "Front",
  11512. image: {
  11513. source: "./media/characters/allatia/front.svg",
  11514. extra: 1227 / 1180,
  11515. bottom: 0.027
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Normal",
  11522. height: math.unit(5 + 5 / 12, "feet")
  11523. },
  11524. {
  11525. name: "Macro",
  11526. height: math.unit(250, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Megamacro",
  11531. height: math.unit(8, "miles")
  11532. }
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(6, "feet"),
  11540. weight: math.unit(120, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/tene/front.svg",
  11544. extra: 814/750,
  11545. bottom: 36/850
  11546. }
  11547. },
  11548. stomping: {
  11549. height: math.unit(2.025, "meters"),
  11550. weight: math.unit(120, "lb"),
  11551. name: "Stomping",
  11552. image: {
  11553. source: "./media/characters/tene/stomping.svg",
  11554. extra: 885/821,
  11555. bottom: 15/900
  11556. }
  11557. },
  11558. sitting: {
  11559. height: math.unit(1, "meter"),
  11560. weight: math.unit(120, "lb"),
  11561. name: "Sitting",
  11562. image: {
  11563. source: "./media/characters/tene/sitting.svg",
  11564. extra: 396/366,
  11565. bottom: 79/475
  11566. }
  11567. },
  11568. smiling: {
  11569. height: math.unit(1.2, "feet"),
  11570. name: "Smiling",
  11571. image: {
  11572. source: "./media/characters/tene/smiling.svg",
  11573. extra: 1364/1071,
  11574. bottom: 0/1364
  11575. }
  11576. },
  11577. smug: {
  11578. height: math.unit(1.3, "feet"),
  11579. name: "Smug",
  11580. image: {
  11581. source: "./media/characters/tene/smug.svg",
  11582. extra: 1323/1082,
  11583. bottom: 0/1323
  11584. }
  11585. },
  11586. feral: {
  11587. height: math.unit(3.9, "feet"),
  11588. weight: math.unit(250, "lb"),
  11589. name: "Feral",
  11590. image: {
  11591. source: "./media/characters/tene/feral.svg",
  11592. extra: 717 / 458,
  11593. bottom: 0.179
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Normal",
  11600. height: math.unit(6, "feet")
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(300, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(5, "miles")
  11610. },
  11611. ]
  11612. ))
  11613. characterMakers.push(() => makeCharacter(
  11614. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11615. {
  11616. side: {
  11617. height: math.unit(6, "feet"),
  11618. name: "Side",
  11619. image: {
  11620. source: "./media/characters/evander/side.svg",
  11621. extra: 877 / 477
  11622. }
  11623. },
  11624. },
  11625. [
  11626. {
  11627. name: "Normal",
  11628. height: math.unit(0.83, "meters"),
  11629. default: true
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11635. {
  11636. front: {
  11637. height: math.unit(12, "feet"),
  11638. weight: math.unit(1000, "lb"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11642. extra: 1762 / 1611
  11643. }
  11644. },
  11645. back: {
  11646. height: math.unit(12, "feet"),
  11647. weight: math.unit(1000, "lb"),
  11648. name: "Back",
  11649. image: {
  11650. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11651. extra: 1762 / 1611
  11652. }
  11653. },
  11654. },
  11655. [
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(12, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Kaiju",
  11663. height: math.unit(150, "feet")
  11664. },
  11665. ]
  11666. ))
  11667. characterMakers.push(() => makeCharacter(
  11668. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11669. {
  11670. front: {
  11671. height: math.unit(5 + 11/12, "feet"),
  11672. weight: math.unit(180, "lb"),
  11673. name: "Front",
  11674. image: {
  11675. source: "./media/characters/zero-alurus/front.svg",
  11676. extra: 1032/957,
  11677. bottom: 10/1042
  11678. }
  11679. },
  11680. back: {
  11681. height: math.unit(5 + 11/12, "feet"),
  11682. weight: math.unit(180, "lb"),
  11683. name: "Back",
  11684. image: {
  11685. source: "./media/characters/zero-alurus/back.svg",
  11686. extra: 1027/950,
  11687. bottom: 12/1039
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Normal",
  11694. height: math.unit(5 + 11 / 12, "feet")
  11695. },
  11696. {
  11697. name: "Mini-Macro",
  11698. height: math.unit(25, "feet")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(90, "feet"),
  11703. default: true
  11704. },
  11705. {
  11706. name: "Macro+",
  11707. height: math.unit(500, "feet")
  11708. },
  11709. {
  11710. name: "Megamacro",
  11711. height: math.unit(1200, "feet")
  11712. },
  11713. ]
  11714. ))
  11715. characterMakers.push(() => makeCharacter(
  11716. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11717. {
  11718. front: {
  11719. height: math.unit(6, "feet"),
  11720. weight: math.unit(200, "lb"),
  11721. name: "Front",
  11722. image: {
  11723. source: "./media/characters/mega-shi/front.svg",
  11724. extra: 1279 / 1250,
  11725. bottom: 0.02
  11726. }
  11727. },
  11728. back: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(200, "lb"),
  11731. name: "Back",
  11732. image: {
  11733. source: "./media/characters/mega-shi/back.svg",
  11734. extra: 1279 / 1250,
  11735. bottom: 0.02
  11736. }
  11737. },
  11738. },
  11739. [
  11740. {
  11741. name: "Micro",
  11742. height: math.unit(16 + 6 / 12, "feet")
  11743. },
  11744. {
  11745. name: "Third Dimension",
  11746. height: math.unit(40, "meters")
  11747. },
  11748. {
  11749. name: "Normal",
  11750. height: math.unit(660, "feet"),
  11751. default: true
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(10, "miles")
  11756. },
  11757. {
  11758. name: "Planetary Launch",
  11759. height: math.unit(500, "miles")
  11760. },
  11761. {
  11762. name: "Interstellar",
  11763. height: math.unit(1e9, "miles")
  11764. },
  11765. {
  11766. name: "Leaving the Universe",
  11767. height: math.unit(1, "gigaparsec")
  11768. },
  11769. {
  11770. name: "Travelling Universes",
  11771. height: math.unit(30e15, "parsecs")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(5 + 4/12, "feet"),
  11780. weight: math.unit(120, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/odyssey/front.svg",
  11784. extra: 1747/1571,
  11785. bottom: 47/1794
  11786. }
  11787. },
  11788. side: {
  11789. height: math.unit(5.1, "feet"),
  11790. weight: math.unit(120, "lb"),
  11791. name: "Side",
  11792. image: {
  11793. source: "./media/characters/odyssey/side.svg",
  11794. extra: 1847/1619,
  11795. bottom: 47/1894
  11796. }
  11797. },
  11798. lounging: {
  11799. height: math.unit(1.464, "feet"),
  11800. weight: math.unit(120, "lb"),
  11801. name: "Lounging",
  11802. image: {
  11803. source: "./media/characters/odyssey/lounging.svg",
  11804. extra: 1235/837,
  11805. bottom: 551/1786
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(5 + 4 / 12, "feet")
  11813. },
  11814. {
  11815. name: "Macro",
  11816. height: math.unit(1, "km")
  11817. },
  11818. {
  11819. name: "Megamacro",
  11820. height: math.unit(3000, "km")
  11821. },
  11822. {
  11823. name: "Gigamacro",
  11824. height: math.unit(1, "AU"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Omniversal",
  11829. height: math.unit(100e14, "lightyears")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11835. {
  11836. front: {
  11837. height: math.unit(5 + 10/12, "feet"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/mekuto/front.svg",
  11841. extra: 875/835,
  11842. bottom: 46/921
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Minimicro",
  11849. height: math.unit(0.2, "inches")
  11850. },
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(1.5, "inches")
  11854. },
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(5 + 10 / 12, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Minimacro",
  11862. height: math.unit(17 + 9 / 12, "feet")
  11863. },
  11864. {
  11865. name: "Macro",
  11866. height: math.unit(177.5, "feet")
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(152, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6.5, "inches"),
  11879. weight: math.unit(13, "oz"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/dafydd-tomos/front.svg",
  11883. extra: 2990 / 2603,
  11884. bottom: 0.03
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(6.5, "inches"),
  11892. default: true
  11893. },
  11894. ]
  11895. ))
  11896. characterMakers.push(() => makeCharacter(
  11897. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11898. {
  11899. front: {
  11900. height: math.unit(6, "feet"),
  11901. weight: math.unit(150, "lb"),
  11902. name: "Front",
  11903. image: {
  11904. source: "./media/characters/splinter/front.svg",
  11905. extra: 2990 / 2882,
  11906. bottom: 0.04
  11907. }
  11908. },
  11909. back: {
  11910. height: math.unit(6, "feet"),
  11911. weight: math.unit(150, "lb"),
  11912. name: "Back",
  11913. image: {
  11914. source: "./media/characters/splinter/back.svg",
  11915. extra: 2990 / 2882,
  11916. bottom: 0.04
  11917. }
  11918. },
  11919. },
  11920. [
  11921. {
  11922. name: "Normal",
  11923. height: math.unit(6, "feet")
  11924. },
  11925. {
  11926. name: "Macro",
  11927. height: math.unit(230, "meters"),
  11928. default: true
  11929. },
  11930. ]
  11931. ))
  11932. characterMakers.push(() => makeCharacter(
  11933. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11934. {
  11935. front: {
  11936. height: math.unit(4 + 10 / 12, "feet"),
  11937. weight: math.unit(480, "lb"),
  11938. name: "Front",
  11939. image: {
  11940. source: "./media/characters/snow-gabumon/front.svg",
  11941. extra: 1140 / 963,
  11942. bottom: 0.058
  11943. }
  11944. },
  11945. back: {
  11946. height: math.unit(4 + 10 / 12, "feet"),
  11947. weight: math.unit(480, "lb"),
  11948. name: "Back",
  11949. image: {
  11950. source: "./media/characters/snow-gabumon/back.svg",
  11951. extra: 1115 / 962,
  11952. bottom: 0.041
  11953. }
  11954. },
  11955. frontUndresed: {
  11956. height: math.unit(4 + 10 / 12, "feet"),
  11957. weight: math.unit(480, "lb"),
  11958. name: "Front (Undressed)",
  11959. image: {
  11960. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11961. extra: 1061 / 960,
  11962. bottom: 0.045
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Micro",
  11969. height: math.unit(1, "inch")
  11970. },
  11971. {
  11972. name: "Normal",
  11973. height: math.unit(4 + 10 / 12, "feet"),
  11974. default: true
  11975. },
  11976. {
  11977. name: "Macro",
  11978. height: math.unit(200, "feet")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(120, "miles")
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(9800, "miles")
  11987. },
  11988. ]
  11989. ))
  11990. characterMakers.push(() => makeCharacter(
  11991. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11992. {
  11993. front: {
  11994. height: math.unit(1.7, "meters"),
  11995. weight: math.unit(140, "lb"),
  11996. name: "Front",
  11997. image: {
  11998. source: "./media/characters/moody/front.svg",
  11999. extra: 3226 / 3007,
  12000. bottom: 0.087
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Micro",
  12007. height: math.unit(1, "mm")
  12008. },
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(1.7, "meters"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Macro",
  12016. height: math.unit(80, "meters")
  12017. },
  12018. {
  12019. name: "Macro+",
  12020. height: math.unit(500, "meters")
  12021. },
  12022. ]
  12023. ))
  12024. characterMakers.push(() => makeCharacter(
  12025. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  12026. {
  12027. front: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(150, "lb"),
  12030. name: "Front",
  12031. image: {
  12032. source: "./media/characters/zyas/front.svg",
  12033. extra: 1180 / 1120,
  12034. bottom: 0.045
  12035. }
  12036. },
  12037. },
  12038. [
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(10, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(500, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(5, "miles")
  12051. },
  12052. {
  12053. name: "Teramacro",
  12054. height: math.unit(150000, "miles")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(150, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/cuon/front.svg",
  12067. extra: 1390 / 1320,
  12068. bottom: 0.008
  12069. }
  12070. },
  12071. },
  12072. [
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(3, "inches")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(18 + 9 / 12, "feet"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(360, "feet")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(360, "miles")
  12089. },
  12090. ]
  12091. ))
  12092. characterMakers.push(() => makeCharacter(
  12093. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12094. {
  12095. front: {
  12096. height: math.unit(2.4, "meters"),
  12097. weight: math.unit(70, "kg"),
  12098. name: "Front",
  12099. image: {
  12100. source: "./media/characters/nyanuxk/front.svg",
  12101. extra: 1172 / 1084,
  12102. bottom: 0.065
  12103. }
  12104. },
  12105. side: {
  12106. height: math.unit(2.4, "meters"),
  12107. weight: math.unit(70, "kg"),
  12108. name: "Side",
  12109. image: {
  12110. source: "./media/characters/nyanuxk/side.svg",
  12111. extra: 1190 / 1132,
  12112. bottom: 0.007
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(2.4, "meters"),
  12117. weight: math.unit(70, "kg"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/nyanuxk/back.svg",
  12121. extra: 1200 / 1141,
  12122. bottom: 0.015
  12123. }
  12124. },
  12125. foot: {
  12126. height: math.unit(0.52, "meters"),
  12127. name: "Foot",
  12128. image: {
  12129. source: "./media/characters/nyanuxk/foot.svg"
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Micro",
  12136. height: math.unit(2, "cm")
  12137. },
  12138. {
  12139. name: "Normal",
  12140. height: math.unit(2.4, "meters"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Smaller Macro",
  12145. height: math.unit(120, "meters")
  12146. },
  12147. {
  12148. name: "Bigger Macro",
  12149. height: math.unit(1.2, "km")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(15, "kilometers")
  12154. },
  12155. {
  12156. name: "Gigamacro",
  12157. height: math.unit(2000, "km")
  12158. },
  12159. {
  12160. name: "Teramacro",
  12161. height: math.unit(500000, "km")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12167. {
  12168. side: {
  12169. height: math.unit(6, "feet"),
  12170. name: "Side",
  12171. image: {
  12172. source: "./media/characters/ailbhe/side.svg",
  12173. extra: 757 / 464,
  12174. bottom: 0.041
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(1.07, "meters"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(6, "feet"),
  12191. weight: math.unit(120, "kg"),
  12192. name: "Front",
  12193. image: {
  12194. source: "./media/characters/zevulfius/front.svg",
  12195. extra: 965 / 903
  12196. }
  12197. },
  12198. side: {
  12199. height: math.unit(6, "feet"),
  12200. weight: math.unit(120, "kg"),
  12201. name: "Side",
  12202. image: {
  12203. source: "./media/characters/zevulfius/side.svg",
  12204. extra: 939 / 900
  12205. }
  12206. },
  12207. back: {
  12208. height: math.unit(6, "feet"),
  12209. weight: math.unit(120, "kg"),
  12210. name: "Back",
  12211. image: {
  12212. source: "./media/characters/zevulfius/back.svg",
  12213. extra: 918 / 854,
  12214. bottom: 0.005
  12215. }
  12216. },
  12217. foot: {
  12218. height: math.unit(6 / 3.72, "feet"),
  12219. name: "Foot",
  12220. image: {
  12221. source: "./media/characters/zevulfius/foot.svg"
  12222. }
  12223. },
  12224. },
  12225. [
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(750, "meters")
  12229. },
  12230. {
  12231. name: "Megamacro",
  12232. height: math.unit(20, "km"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Gigamacro",
  12237. height: math.unit(2000, "km")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(250000, "km")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(100, "feet"),
  12250. weight: math.unit(350, "kg"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/rikes/front.svg",
  12254. extra: 1565 / 1483,
  12255. bottom: 0.017
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(100, "feet"),
  12263. default: true
  12264. },
  12265. ]
  12266. ))
  12267. characterMakers.push(() => makeCharacter(
  12268. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12269. {
  12270. front: {
  12271. height: math.unit(8, "feet"),
  12272. weight: math.unit(356, "lb"),
  12273. name: "Front",
  12274. image: {
  12275. source: "./media/characters/adam-silver-mane/front.svg",
  12276. extra: 1036/937,
  12277. bottom: 63/1099
  12278. }
  12279. },
  12280. side: {
  12281. height: math.unit(8, "feet"),
  12282. weight: math.unit(356, "lb"),
  12283. name: "Side",
  12284. image: {
  12285. source: "./media/characters/adam-silver-mane/side.svg",
  12286. extra: 997/901,
  12287. bottom: 59/1056
  12288. }
  12289. },
  12290. frontNsfw: {
  12291. height: math.unit(8, "feet"),
  12292. weight: math.unit(356, "lb"),
  12293. name: "Front (NSFW)",
  12294. image: {
  12295. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12296. extra: 1036/937,
  12297. bottom: 63/1099
  12298. }
  12299. },
  12300. sideNsfw: {
  12301. height: math.unit(8, "feet"),
  12302. weight: math.unit(356, "lb"),
  12303. name: "Side (NSFW)",
  12304. image: {
  12305. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12306. extra: 997/901,
  12307. bottom: 59/1056
  12308. }
  12309. },
  12310. dick: {
  12311. height: math.unit(2.1, "feet"),
  12312. name: "Dick",
  12313. image: {
  12314. source: "./media/characters/adam-silver-mane/dick.svg"
  12315. }
  12316. },
  12317. taur: {
  12318. height: math.unit(16, "feet"),
  12319. weight: math.unit(1500, "kg"),
  12320. name: "Taur",
  12321. image: {
  12322. source: "./media/characters/adam-silver-mane/taur.svg",
  12323. extra: 1713 / 1571,
  12324. bottom: 0.01
  12325. }
  12326. },
  12327. },
  12328. [
  12329. {
  12330. name: "Normal",
  12331. height: math.unit(8, "feet")
  12332. },
  12333. {
  12334. name: "Minimacro",
  12335. height: math.unit(80, "feet")
  12336. },
  12337. {
  12338. name: "MDA",
  12339. height: math.unit(80, "meters")
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(800, "feet"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Megamacro",
  12348. height: math.unit(8000, "feet")
  12349. },
  12350. {
  12351. name: "Gigamacro",
  12352. height: math.unit(800, "miles")
  12353. },
  12354. {
  12355. name: "Teramacro",
  12356. height: math.unit(80000, "miles")
  12357. },
  12358. {
  12359. name: "Celestial",
  12360. height: math.unit(8e6, "miles")
  12361. },
  12362. {
  12363. name: "Star Dragon",
  12364. height: math.unit(800000, "parsecs")
  12365. },
  12366. {
  12367. name: "Godly",
  12368. height: math.unit(800, "teraparsecs")
  12369. },
  12370. ]
  12371. ))
  12372. characterMakers.push(() => makeCharacter(
  12373. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12374. {
  12375. front: {
  12376. height: math.unit(6, "feet"),
  12377. weight: math.unit(150, "lb"),
  12378. name: "Front",
  12379. image: {
  12380. source: "./media/characters/ky'owin/front.svg",
  12381. extra: 3862/3053,
  12382. bottom: 74/3936
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(6 + 8 / 12, "feet")
  12390. },
  12391. {
  12392. name: "Large",
  12393. height: math.unit(68, "feet")
  12394. },
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(132, "feet")
  12398. },
  12399. {
  12400. name: "Macro+",
  12401. height: math.unit(340, "feet")
  12402. },
  12403. {
  12404. name: "Macro++",
  12405. height: math.unit(680, "feet"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(1, "mile")
  12411. },
  12412. {
  12413. name: "Megamacro+",
  12414. height: math.unit(10, "miles")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(4, "feet"),
  12423. weight: math.unit(50, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/mal/front.svg",
  12427. extra: 785 / 724,
  12428. bottom: 0.07
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Micro",
  12435. height: math.unit(4, "inches")
  12436. },
  12437. {
  12438. name: "Normal",
  12439. height: math.unit(4, "feet"),
  12440. default: true
  12441. },
  12442. {
  12443. name: "Macro",
  12444. height: math.unit(200, "feet")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(6, "feet"),
  12453. weight: math.unit(150, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/jordan-deware/front.svg",
  12457. extra: 1191 / 1012
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Nano",
  12464. height: math.unit(0.01, "mm")
  12465. },
  12466. {
  12467. name: "Minimicro",
  12468. height: math.unit(1, "mm")
  12469. },
  12470. {
  12471. name: "Micro",
  12472. height: math.unit(0.5, "inches")
  12473. },
  12474. {
  12475. name: "Normal",
  12476. height: math.unit(4, "feet"),
  12477. default: true
  12478. },
  12479. {
  12480. name: "Minimacro",
  12481. height: math.unit(40, "meters")
  12482. },
  12483. {
  12484. name: "Small Macro",
  12485. height: math.unit(400, "meters")
  12486. },
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(4, "miles")
  12490. },
  12491. {
  12492. name: "Megamacro",
  12493. height: math.unit(40, "miles")
  12494. },
  12495. {
  12496. name: "Megamacro+",
  12497. height: math.unit(400, "miles")
  12498. },
  12499. {
  12500. name: "Gigamacro",
  12501. height: math.unit(400000, "miles")
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(15, "feet"),
  12510. weight: math.unit(3000, "kg"),
  12511. preyCapacity: math.unit(450, "people"),
  12512. name: "Front",
  12513. image: {
  12514. source: "./media/characters/kimiko/front.svg",
  12515. extra: 875/832,
  12516. bottom: 36/911
  12517. },
  12518. extraAttributes: {
  12519. "pawSize": {
  12520. name: "Paw Size",
  12521. power: 1,
  12522. type: "length",
  12523. base: math.unit(0.9, "meters")
  12524. },
  12525. }
  12526. },
  12527. side: {
  12528. height: math.unit(15, "feet"),
  12529. weight: math.unit(3000, "kg"),
  12530. preyCapacity: math.unit(400, "people"),
  12531. name: "Side",
  12532. image: {
  12533. source: "./media/characters/kimiko/side.svg",
  12534. extra: 448/270,
  12535. bottom: 7/455
  12536. },
  12537. extraAttributes: {
  12538. "pawSize": {
  12539. name: "Paw Size",
  12540. power: 1,
  12541. type: "length",
  12542. base: math.unit(0.9, "meters")
  12543. },
  12544. }
  12545. },
  12546. maw: {
  12547. height: math.unit(0.81, "feet"),
  12548. name: "Maw",
  12549. image: {
  12550. source: "./media/characters/kimiko/maw.svg"
  12551. }
  12552. },
  12553. },
  12554. [
  12555. {
  12556. name: "Normal",
  12557. height: math.unit(15, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Macro",
  12562. height: math.unit(220, "feet")
  12563. },
  12564. {
  12565. name: "Macro+",
  12566. height: math.unit(1450, "feet")
  12567. },
  12568. {
  12569. name: "Megamacro",
  12570. height: math.unit(11500, "feet")
  12571. },
  12572. {
  12573. name: "Gigamacro",
  12574. height: math.unit(9500, "miles")
  12575. },
  12576. {
  12577. name: "Teramacro",
  12578. height: math.unit(2208005005, "miles")
  12579. },
  12580. {
  12581. name: "Examacro",
  12582. height: math.unit(2750, "parsecs")
  12583. },
  12584. {
  12585. name: "Zettamacro",
  12586. height: math.unit(101500, "parsecs")
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(70, "kg"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/andrew-sleepy/front.svg"
  12599. }
  12600. },
  12601. side: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(70, "kg"),
  12604. name: "Side",
  12605. image: {
  12606. source: "./media/characters/andrew-sleepy/side.svg"
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(1, "mm"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/judio/front.svg",
  12627. extra: 1258 / 1110
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(5 + 6 / 12, "feet")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(1000, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(10, "miles")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12649. {
  12650. frontDressed: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(68, "kg"),
  12653. name: "Front (Dressed)",
  12654. image: {
  12655. source: "./media/characters/nomaxice/front-dressed.svg",
  12656. extra: 1137/824,
  12657. bottom: 74/1211
  12658. }
  12659. },
  12660. frontShorts: {
  12661. height: math.unit(6, "feet"),
  12662. weight: math.unit(68, "kg"),
  12663. name: "Front (Shorts)",
  12664. image: {
  12665. source: "./media/characters/nomaxice/front-shorts.svg",
  12666. extra: 1137/824,
  12667. bottom: 74/1211
  12668. }
  12669. },
  12670. back: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(68, "kg"),
  12673. name: "Back",
  12674. image: {
  12675. source: "./media/characters/nomaxice/back.svg",
  12676. extra: 822/786,
  12677. bottom: 39/861
  12678. }
  12679. },
  12680. hand: {
  12681. height: math.unit(0.565, "feet"),
  12682. name: "Hand",
  12683. image: {
  12684. source: "./media/characters/nomaxice/hand.svg"
  12685. }
  12686. },
  12687. foot: {
  12688. height: math.unit(1, "feet"),
  12689. name: "Foot",
  12690. image: {
  12691. source: "./media/characters/nomaxice/foot.svg"
  12692. }
  12693. },
  12694. },
  12695. [
  12696. {
  12697. name: "Micro",
  12698. height: math.unit(8, "cm")
  12699. },
  12700. {
  12701. name: "Norm",
  12702. height: math.unit(1.82, "m")
  12703. },
  12704. {
  12705. name: "Norm+",
  12706. height: math.unit(8.8, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Big",
  12711. height: math.unit(8, "meters")
  12712. },
  12713. {
  12714. name: "Macro",
  12715. height: math.unit(18, "meters")
  12716. },
  12717. {
  12718. name: "Macro+",
  12719. height: math.unit(88, "meters")
  12720. },
  12721. ]
  12722. ))
  12723. characterMakers.push(() => makeCharacter(
  12724. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12725. {
  12726. front: {
  12727. height: math.unit(12, "feet"),
  12728. weight: math.unit(1.5, "tons"),
  12729. name: "Front",
  12730. image: {
  12731. source: "./media/characters/dydros/front.svg",
  12732. extra: 863 / 800,
  12733. bottom: 0.015
  12734. }
  12735. },
  12736. back: {
  12737. height: math.unit(12, "feet"),
  12738. weight: math.unit(1.5, "tons"),
  12739. name: "Back",
  12740. image: {
  12741. source: "./media/characters/dydros/back.svg",
  12742. extra: 900 / 843,
  12743. bottom: 0.005
  12744. }
  12745. },
  12746. },
  12747. [
  12748. {
  12749. name: "Normal",
  12750. height: math.unit(12, "feet"),
  12751. default: true
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(100, "kg"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/riggi/front.svg",
  12764. extra: 5787 / 5303
  12765. }
  12766. },
  12767. hyper: {
  12768. height: math.unit(6 * 5 / 3, "feet"),
  12769. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12770. name: "Hyper",
  12771. image: {
  12772. source: "./media/characters/riggi/hyper.svg",
  12773. extra: 3595 / 3485
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Small Macro",
  12780. height: math.unit(50, "feet")
  12781. },
  12782. {
  12783. name: "Default",
  12784. height: math.unit(200, "feet"),
  12785. default: true
  12786. },
  12787. {
  12788. name: "Loom",
  12789. height: math.unit(10000, "feet")
  12790. },
  12791. {
  12792. name: "Cruising Altitude",
  12793. height: math.unit(30000, "feet")
  12794. },
  12795. {
  12796. name: "Megamacro",
  12797. height: math.unit(100, "miles")
  12798. },
  12799. {
  12800. name: "Continent Sized",
  12801. height: math.unit(2800, "miles")
  12802. },
  12803. {
  12804. name: "Earth Sized",
  12805. height: math.unit(8000, "miles")
  12806. },
  12807. ]
  12808. ))
  12809. characterMakers.push(() => makeCharacter(
  12810. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12811. {
  12812. front: {
  12813. height: math.unit(6, "feet"),
  12814. weight: math.unit(250, "lb"),
  12815. name: "Front",
  12816. image: {
  12817. source: "./media/characters/alexi/front.svg",
  12818. extra: 3483 / 3291,
  12819. bottom: 0.04
  12820. }
  12821. },
  12822. back: {
  12823. height: math.unit(6, "feet"),
  12824. weight: math.unit(250, "lb"),
  12825. name: "Back",
  12826. image: {
  12827. source: "./media/characters/alexi/back.svg",
  12828. extra: 3533 / 3356,
  12829. bottom: 0.021
  12830. }
  12831. },
  12832. frontTransforming: {
  12833. height: math.unit(8.58, "feet"),
  12834. weight: math.unit(1300, "lb"),
  12835. name: "Transforming",
  12836. image: {
  12837. source: "./media/characters/alexi/front-transforming.svg",
  12838. extra: 437 / 409,
  12839. bottom: 19 / 458.66
  12840. }
  12841. },
  12842. frontTransformed: {
  12843. height: math.unit(12.5, "feet"),
  12844. weight: math.unit(4000, "lb"),
  12845. name: "Transformed",
  12846. image: {
  12847. source: "./media/characters/alexi/front-transformed.svg",
  12848. extra: 639 / 614,
  12849. bottom: 30.55 / 671
  12850. }
  12851. },
  12852. },
  12853. [
  12854. {
  12855. name: "Normal",
  12856. height: math.unit(14, "feet"),
  12857. default: true
  12858. },
  12859. {
  12860. name: "Minimacro",
  12861. height: math.unit(30, "meters")
  12862. },
  12863. {
  12864. name: "Macro",
  12865. height: math.unit(500, "meters")
  12866. },
  12867. {
  12868. name: "Megamacro",
  12869. height: math.unit(9000, "km")
  12870. },
  12871. {
  12872. name: "Teramacro",
  12873. height: math.unit(384000, "km")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(150, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/kayroo/front.svg",
  12886. extra: 1153 / 1038,
  12887. bottom: 0.06
  12888. }
  12889. },
  12890. foot: {
  12891. height: math.unit(6, "feet"),
  12892. weight: math.unit(150, "lb"),
  12893. name: "Foot",
  12894. image: {
  12895. source: "./media/characters/kayroo/foot.svg"
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(8, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Minimacro",
  12907. height: math.unit(250, "feet")
  12908. },
  12909. {
  12910. name: "Macro",
  12911. height: math.unit(2800, "feet")
  12912. },
  12913. {
  12914. name: "Megamacro",
  12915. height: math.unit(5200, "feet")
  12916. },
  12917. {
  12918. name: "Gigamacro",
  12919. height: math.unit(27000, "feet")
  12920. },
  12921. {
  12922. name: "Omega",
  12923. height: math.unit(45000, "feet")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(18, "feet"),
  12932. weight: math.unit(5800, "lb"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/rhys/front.svg",
  12936. extra: 3386 / 3090,
  12937. bottom: 0.07
  12938. }
  12939. },
  12940. },
  12941. [
  12942. {
  12943. name: "Normal",
  12944. height: math.unit(18, "feet"),
  12945. default: true
  12946. },
  12947. {
  12948. name: "Working Size",
  12949. height: math.unit(200, "feet")
  12950. },
  12951. {
  12952. name: "Demolition Size",
  12953. height: math.unit(2000, "feet")
  12954. },
  12955. {
  12956. name: "Maximum Licensed Size",
  12957. height: math.unit(5, "miles")
  12958. },
  12959. {
  12960. name: "Maximum Observed Size",
  12961. height: math.unit(10, "yottameters")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(250, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/toto/front.svg",
  12974. extra: 527 / 479,
  12975. bottom: 0.05
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Micro",
  12982. height: math.unit(3, "feet")
  12983. },
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(10, "feet")
  12987. },
  12988. {
  12989. name: "Macro",
  12990. height: math.unit(150, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Megamacro",
  12995. height: math.unit(1200, "feet")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "King", species: ["lion"], tags: ["anthro"] },
  13001. {
  13002. back: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Back",
  13006. image: {
  13007. source: "./media/characters/king/back.svg"
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Micro",
  13014. height: math.unit(2, "inches")
  13015. },
  13016. {
  13017. name: "Normal",
  13018. height: math.unit(8, "feet")
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(200, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Megamacro",
  13027. height: math.unit(50, "miles")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(11, "feet"),
  13036. weight: math.unit(1400, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/cordite/front.svg",
  13040. extra: 1919/1827,
  13041. bottom: 40/1959
  13042. }
  13043. },
  13044. side: {
  13045. height: math.unit(11, "feet"),
  13046. weight: math.unit(1400, "lb"),
  13047. name: "Side",
  13048. image: {
  13049. source: "./media/characters/cordite/side.svg",
  13050. extra: 1908/1793,
  13051. bottom: 38/1946
  13052. }
  13053. },
  13054. back: {
  13055. height: math.unit(11, "feet"),
  13056. weight: math.unit(1400, "lb"),
  13057. name: "Back",
  13058. image: {
  13059. source: "./media/characters/cordite/back.svg",
  13060. extra: 1938/1837,
  13061. bottom: 10/1948
  13062. }
  13063. },
  13064. feral: {
  13065. height: math.unit(2, "feet"),
  13066. weight: math.unit(90, "lb"),
  13067. name: "Feral",
  13068. image: {
  13069. source: "./media/characters/cordite/feral.svg",
  13070. extra: 1260 / 755,
  13071. bottom: 0.05
  13072. }
  13073. },
  13074. },
  13075. [
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(11, "feet"),
  13079. default: true
  13080. },
  13081. ]
  13082. ))
  13083. characterMakers.push(() => makeCharacter(
  13084. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13085. {
  13086. front: {
  13087. height: math.unit(6, "feet"),
  13088. weight: math.unit(150, "lb"),
  13089. name: "Front",
  13090. image: {
  13091. source: "./media/characters/pianostrong/front.svg",
  13092. extra: 6577 / 6254,
  13093. bottom: 0.02
  13094. }
  13095. },
  13096. side: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Side",
  13100. image: {
  13101. source: "./media/characters/pianostrong/side.svg",
  13102. extra: 6106 / 5730
  13103. }
  13104. },
  13105. back: {
  13106. height: math.unit(6, "feet"),
  13107. weight: math.unit(150, "lb"),
  13108. name: "Back",
  13109. image: {
  13110. source: "./media/characters/pianostrong/back.svg",
  13111. extra: 6085 / 5733,
  13112. bottom: 0.01
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Macro",
  13119. height: math.unit(100, "feet")
  13120. },
  13121. {
  13122. name: "Macro+",
  13123. height: math.unit(300, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Macro++",
  13128. height: math.unit(1000, "feet")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(150, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/kona/front.svg",
  13141. extra: 2960 / 2629,
  13142. bottom: 0.005
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Normal",
  13149. height: math.unit(11 + 8 / 12, "feet")
  13150. },
  13151. {
  13152. name: "Macro",
  13153. height: math.unit(850, "feet"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Macro+",
  13158. height: math.unit(1.5, "km"),
  13159. default: true
  13160. },
  13161. {
  13162. name: "Megamacro",
  13163. height: math.unit(80, "miles")
  13164. },
  13165. {
  13166. name: "Gigamacro",
  13167. height: math.unit(3500, "miles")
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13173. {
  13174. side: {
  13175. height: math.unit(1.9, "meters"),
  13176. weight: math.unit(326, "kg"),
  13177. name: "Side",
  13178. image: {
  13179. source: "./media/characters/levi/side.svg",
  13180. extra: 1704 / 1334,
  13181. bottom: 0.02
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Normal",
  13188. height: math.unit(1.9, "meters"),
  13189. default: true
  13190. },
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(20, "meters")
  13194. },
  13195. {
  13196. name: "Macro+",
  13197. height: math.unit(200, "meters")
  13198. },
  13199. {
  13200. name: "Megamacro",
  13201. height: math.unit(2, "km")
  13202. },
  13203. {
  13204. name: "Megamacro+",
  13205. height: math.unit(20, "km")
  13206. },
  13207. {
  13208. name: "Gigamacro",
  13209. height: math.unit(2500, "km")
  13210. },
  13211. {
  13212. name: "Gigamacro+",
  13213. height: math.unit(120000, "km")
  13214. },
  13215. {
  13216. name: "Teramacro",
  13217. height: math.unit(7.77e6, "km")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6 + 4/12, "feet"),
  13226. weight: math.unit(190, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/bmc/front.svg",
  13230. extra: 1626/1472,
  13231. bottom: 79/1705
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(6 + 4/12, "feet"),
  13236. weight: math.unit(190, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/bmc/back.svg",
  13240. extra: 1640/1479,
  13241. bottom: 45/1685
  13242. }
  13243. },
  13244. frontArmor: {
  13245. height: math.unit(6 + 4/12, "feet"),
  13246. weight: math.unit(190, "lb"),
  13247. name: "Front (Armor)",
  13248. image: {
  13249. source: "./media/characters/bmc/front-armor.svg",
  13250. extra: 1538/1468,
  13251. bottom: 79/1617
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Human-sized",
  13258. height: math.unit(6 + 4 / 12, "feet")
  13259. },
  13260. {
  13261. name: "Interactive Size",
  13262. height: math.unit(25, "feet")
  13263. },
  13264. {
  13265. name: "Small",
  13266. height: math.unit(250, "feet")
  13267. },
  13268. {
  13269. name: "Normal",
  13270. height: math.unit(1250, "feet"),
  13271. default: true
  13272. },
  13273. {
  13274. name: "Good Day",
  13275. height: math.unit(88, "miles")
  13276. },
  13277. {
  13278. name: "Largest Measured Size",
  13279. height: math.unit(105.960, "galaxies")
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(20, "feet"),
  13288. weight: math.unit(2016, "kg"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/sven-the-kaiju/front.svg",
  13292. extra: 1277/1250,
  13293. bottom: 35/1312
  13294. }
  13295. },
  13296. mouth: {
  13297. height: math.unit(1.85, "feet"),
  13298. name: "Mouth",
  13299. image: {
  13300. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13301. }
  13302. },
  13303. },
  13304. [
  13305. {
  13306. name: "Fairy",
  13307. height: math.unit(6, "inches")
  13308. },
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(20, "feet"),
  13312. default: true
  13313. },
  13314. {
  13315. name: "Rampage",
  13316. height: math.unit(200, "feet")
  13317. },
  13318. {
  13319. name: "Archfey Forest Guardian",
  13320. height: math.unit(1, "mile")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(4, "meters"),
  13329. weight: math.unit(2, "tons"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/marik/front.svg",
  13333. extra: 1057 / 1003,
  13334. bottom: 0.08
  13335. }
  13336. },
  13337. },
  13338. [
  13339. {
  13340. name: "Normal",
  13341. height: math.unit(4, "meters"),
  13342. default: true
  13343. },
  13344. {
  13345. name: "Macro",
  13346. height: math.unit(20, "meters")
  13347. },
  13348. {
  13349. name: "Megamacro",
  13350. height: math.unit(50, "km")
  13351. },
  13352. {
  13353. name: "Gigamacro",
  13354. height: math.unit(100, "km")
  13355. },
  13356. {
  13357. name: "Alpha Macro",
  13358. height: math.unit(7.88e7, "yottameters")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(110, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/mel/front.svg",
  13371. extra: 736 / 617,
  13372. bottom: 0.017
  13373. }
  13374. },
  13375. },
  13376. [
  13377. {
  13378. name: "Pico",
  13379. height: math.unit(3, "pm")
  13380. },
  13381. {
  13382. name: "Nano",
  13383. height: math.unit(3, "nm")
  13384. },
  13385. {
  13386. name: "Micro",
  13387. height: math.unit(0.3, "mm"),
  13388. default: true
  13389. },
  13390. {
  13391. name: "Micro+",
  13392. height: math.unit(3, "mm")
  13393. },
  13394. {
  13395. name: "Normal",
  13396. height: math.unit(5 + 10.5 / 12, "feet")
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13402. {
  13403. kaiju: {
  13404. height: math.unit(1.75, "meters"),
  13405. weight: math.unit(55, "kg"),
  13406. name: "Kaiju",
  13407. image: {
  13408. source: "./media/characters/lykonous/kaiju.svg",
  13409. extra: 1055 / 946,
  13410. bottom: 0.135
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Normal",
  13417. height: math.unit(2.5, "meters"),
  13418. default: true
  13419. },
  13420. {
  13421. name: "Kaiju Dragon",
  13422. height: math.unit(60, "meters")
  13423. },
  13424. {
  13425. name: "Mega Kaiju",
  13426. height: math.unit(120, "km")
  13427. },
  13428. {
  13429. name: "Giga Kaiju",
  13430. height: math.unit(200, "megameters")
  13431. },
  13432. {
  13433. name: "Terra Kaiju",
  13434. height: math.unit(400, "gigameters")
  13435. },
  13436. {
  13437. name: "Kaiju Dragon God",
  13438. height: math.unit(13000, "exaparsecs")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/blü/front.svg",
  13451. extra: 1883 / 1564,
  13452. bottom: 0.031
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Normal",
  13459. height: math.unit(13, "feet"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Big Boi",
  13464. height: math.unit(150, "meters")
  13465. },
  13466. {
  13467. name: "Mini Stomper",
  13468. height: math.unit(300, "meters")
  13469. },
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(1000, "meters")
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(11000, "meters")
  13477. },
  13478. {
  13479. name: "Gigamacro",
  13480. height: math.unit(11000, "km")
  13481. },
  13482. {
  13483. name: "Teramacro",
  13484. height: math.unit(420000, "km")
  13485. },
  13486. {
  13487. name: "Examacro",
  13488. height: math.unit(120, "parsecs")
  13489. },
  13490. {
  13491. name: "God Tho",
  13492. height: math.unit(98000000000, "parsecs")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13498. {
  13499. taurFront: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(200, "lb"),
  13502. name: "Taur (Front)",
  13503. image: {
  13504. source: "./media/characters/scales/taur-front.svg",
  13505. extra: 1,
  13506. bottom: 0.05
  13507. }
  13508. },
  13509. taurBack: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(200, "lb"),
  13512. name: "Taur (Back)",
  13513. image: {
  13514. source: "./media/characters/scales/taur-back.svg",
  13515. extra: 1,
  13516. bottom: 0.08
  13517. }
  13518. },
  13519. anthro: {
  13520. height: math.unit(6 * 7 / 12, "feet"),
  13521. weight: math.unit(100, "lb"),
  13522. name: "Anthro",
  13523. image: {
  13524. source: "./media/characters/scales/anthro.svg",
  13525. extra: 1,
  13526. bottom: 0.06
  13527. }
  13528. },
  13529. },
  13530. [
  13531. {
  13532. name: "Normal",
  13533. height: math.unit(12, "feet"),
  13534. default: true
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(150, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/koragos/front.svg",
  13547. extra: 841 / 794,
  13548. bottom: 0.035
  13549. }
  13550. },
  13551. back: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Back",
  13555. image: {
  13556. source: "./media/characters/koragos/back.svg",
  13557. extra: 841 / 810,
  13558. bottom: 0.022
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Normal",
  13565. height: math.unit(6 + 11 / 12, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(490, "feet")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(10, "miles")
  13575. },
  13576. {
  13577. name: "Gigamacro",
  13578. height: math.unit(50, "miles")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(250, "lb"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/xylrem/front.svg",
  13591. extra: 3323 / 3050,
  13592. bottom: 0.065
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Micro",
  13599. height: math.unit(4, "feet")
  13600. },
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(16, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(2720, "feet")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(25000, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(8, "feet"),
  13621. weight: math.unit(250, "kg"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/ikideru/front.svg",
  13625. extra: 930 / 870,
  13626. bottom: 0.087
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(8, "feet"),
  13631. weight: math.unit(250, "kg"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/ikideru/back.svg",
  13635. extra: 919 / 852,
  13636. bottom: 0.055
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Rare",
  13643. height: math.unit(8, "feet"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Playful Loom",
  13648. height: math.unit(80, "feet")
  13649. },
  13650. {
  13651. name: "City Leaner",
  13652. height: math.unit(230, "feet")
  13653. },
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(2500, "feet")
  13657. },
  13658. {
  13659. name: "Gigamacro",
  13660. height: math.unit(26400, "feet")
  13661. },
  13662. {
  13663. name: "Tectonic Shifter",
  13664. height: math.unit(1.7, "megameters")
  13665. },
  13666. {
  13667. name: "Planet Carer",
  13668. height: math.unit(21, "megameters")
  13669. },
  13670. {
  13671. name: "God",
  13672. height: math.unit(11157.22, "parsecs")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(6, "feet"),
  13681. weight: math.unit(120, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/neo/front.svg"
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Micro",
  13691. height: math.unit(2, "inches"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Human Size",
  13696. height: math.unit(5 + 8 / 12, "feet")
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(13 + 10 / 12, "feet"),
  13705. weight: math.unit(5320, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/chauncey-chantz/front.svg",
  13709. extra: 1587 / 1435,
  13710. bottom: 0.02
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(13 + 10 / 12, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(45, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(250, "miles")
  13727. },
  13728. {
  13729. name: "Planetary",
  13730. height: math.unit(10000, "miles")
  13731. },
  13732. {
  13733. name: "Galactic",
  13734. height: math.unit(40000, "parsecs")
  13735. },
  13736. {
  13737. name: "Universal",
  13738. height: math.unit(1, "yottameter")
  13739. },
  13740. ]
  13741. ))
  13742. characterMakers.push(() => makeCharacter(
  13743. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13744. {
  13745. front: {
  13746. height: math.unit(6, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Front",
  13749. image: {
  13750. source: "./media/characters/epifox/front.svg",
  13751. extra: 1,
  13752. bottom: 0.075
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Micro",
  13759. height: math.unit(6, "inches")
  13760. },
  13761. {
  13762. name: "Normal",
  13763. height: math.unit(12, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Macro",
  13768. height: math.unit(3810, "feet")
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(500, "miles")
  13773. },
  13774. ]
  13775. ))
  13776. characterMakers.push(() => makeCharacter(
  13777. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13778. {
  13779. front: {
  13780. height: math.unit(1.8796, "m"),
  13781. weight: math.unit(230, "lb"),
  13782. name: "Front",
  13783. image: {
  13784. source: "./media/characters/colin-t/front.svg",
  13785. extra: 1272 / 1193,
  13786. bottom: 0.07
  13787. }
  13788. },
  13789. },
  13790. [
  13791. {
  13792. name: "Micro",
  13793. height: math.unit(0.571, "meters")
  13794. },
  13795. {
  13796. name: "Normal",
  13797. height: math.unit(1.8796, "meters"),
  13798. default: true
  13799. },
  13800. {
  13801. name: "Tall",
  13802. height: math.unit(4, "meters")
  13803. },
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(67.241, "meters")
  13807. },
  13808. {
  13809. name: "Megamacro",
  13810. height: math.unit(371.856, "meters")
  13811. },
  13812. {
  13813. name: "Planetary",
  13814. height: math.unit(12631.5689, "km")
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13820. {
  13821. front: {
  13822. height: math.unit(1.85, "meters"),
  13823. weight: math.unit(80, "kg"),
  13824. name: "Front",
  13825. image: {
  13826. source: "./media/characters/matvei/front.svg",
  13827. extra: 456/447,
  13828. bottom: 8/464
  13829. }
  13830. },
  13831. back: {
  13832. height: math.unit(1.85, "meters"),
  13833. weight: math.unit(80, "kg"),
  13834. name: "Back",
  13835. image: {
  13836. source: "./media/characters/matvei/back.svg",
  13837. extra: 434/427,
  13838. bottom: 11/445
  13839. }
  13840. },
  13841. },
  13842. [
  13843. {
  13844. name: "Normal",
  13845. height: math.unit(1.85, "meters"),
  13846. default: true
  13847. },
  13848. ]
  13849. ))
  13850. characterMakers.push(() => makeCharacter(
  13851. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13852. {
  13853. front: {
  13854. height: math.unit(5 + 9 / 12, "feet"),
  13855. weight: math.unit(70, "lb"),
  13856. name: "Front",
  13857. image: {
  13858. source: "./media/characters/quincy/front.svg",
  13859. extra: 3041 / 2751
  13860. }
  13861. },
  13862. back: {
  13863. height: math.unit(5 + 9 / 12, "feet"),
  13864. weight: math.unit(70, "lb"),
  13865. name: "Back",
  13866. image: {
  13867. source: "./media/characters/quincy/back.svg",
  13868. extra: 3041 / 2751
  13869. }
  13870. },
  13871. flying: {
  13872. height: math.unit(5 + 4 / 12, "feet"),
  13873. weight: math.unit(70, "lb"),
  13874. name: "Flying",
  13875. image: {
  13876. source: "./media/characters/quincy/flying.svg",
  13877. extra: 1044 / 930
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Micro",
  13884. height: math.unit(3, "cm")
  13885. },
  13886. {
  13887. name: "Normal",
  13888. height: math.unit(5 + 9 / 12, "feet")
  13889. },
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(200, "meters"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Megamacro",
  13897. height: math.unit(1000, "meters")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(3 + 11/12, "feet"),
  13906. weight: math.unit(50, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/vanrel/front.svg",
  13910. extra: 1104/949,
  13911. bottom: 52/1156
  13912. }
  13913. },
  13914. back: {
  13915. height: math.unit(3 + 11/12, "feet"),
  13916. weight: math.unit(50, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/vanrel/back.svg",
  13920. extra: 1119/976,
  13921. bottom: 37/1156
  13922. }
  13923. },
  13924. tome: {
  13925. height: math.unit(1.35, "feet"),
  13926. weight: math.unit(10, "lb"),
  13927. name: "Vanrel's Tome",
  13928. rename: true,
  13929. image: {
  13930. source: "./media/characters/vanrel/tome.svg"
  13931. }
  13932. },
  13933. beans: {
  13934. height: math.unit(0.89, "feet"),
  13935. name: "Beans",
  13936. image: {
  13937. source: "./media/characters/vanrel/beans.svg"
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Normal",
  13944. height: math.unit(3 + 11/12, "feet"),
  13945. default: true
  13946. },
  13947. ]
  13948. ))
  13949. characterMakers.push(() => makeCharacter(
  13950. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13951. {
  13952. front: {
  13953. height: math.unit(7 + 5 / 12, "feet"),
  13954. name: "Front",
  13955. image: {
  13956. source: "./media/characters/kuiper-vanrel/front.svg",
  13957. extra: 1219/1169,
  13958. bottom: 69/1288
  13959. }
  13960. },
  13961. back: {
  13962. height: math.unit(7 + 5 / 12, "feet"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/kuiper-vanrel/back.svg",
  13966. extra: 1236/1193,
  13967. bottom: 27/1263
  13968. }
  13969. },
  13970. foot: {
  13971. height: math.unit(0.55, "meters"),
  13972. name: "Foot",
  13973. image: {
  13974. source: "./media/characters/kuiper-vanrel/foot.svg",
  13975. }
  13976. },
  13977. battle: {
  13978. height: math.unit(6.824, "feet"),
  13979. name: "Battle",
  13980. image: {
  13981. source: "./media/characters/kuiper-vanrel/battle.svg",
  13982. extra: 1466 / 1327,
  13983. bottom: 29 / 1492.5
  13984. }
  13985. },
  13986. meerkui: {
  13987. height: math.unit(18, "inches"),
  13988. name: "Meerkui",
  13989. image: {
  13990. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13991. extra: 1354/1289,
  13992. bottom: 69/1423
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(7 + 5 / 12, "feet"),
  14000. default: true
  14001. },
  14002. ]
  14003. ))
  14004. characterMakers.push(() => makeCharacter(
  14005. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  14006. {
  14007. front: {
  14008. height: math.unit(8 + 5 / 12, "feet"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/keset-vanrel/front.svg",
  14012. extra: 1231/1148,
  14013. bottom: 82/1313
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(8 + 5 / 12, "feet"),
  14018. name: "Back",
  14019. image: {
  14020. source: "./media/characters/keset-vanrel/back.svg",
  14021. extra: 1240/1174,
  14022. bottom: 33/1273
  14023. }
  14024. },
  14025. hand: {
  14026. height: math.unit(0.6, "meters"),
  14027. name: "Hand",
  14028. image: {
  14029. source: "./media/characters/keset-vanrel/hand.svg"
  14030. }
  14031. },
  14032. foot: {
  14033. height: math.unit(0.94978, "meters"),
  14034. name: "Foot",
  14035. image: {
  14036. source: "./media/characters/keset-vanrel/foot.svg"
  14037. }
  14038. },
  14039. battle: {
  14040. height: math.unit(7.408, "feet"),
  14041. name: "Battle",
  14042. image: {
  14043. source: "./media/characters/keset-vanrel/battle.svg",
  14044. extra: 1890 / 1386,
  14045. bottom: 73.28 / 1970
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(8 + 5 / 12, "feet"),
  14053. default: true
  14054. },
  14055. ]
  14056. ))
  14057. characterMakers.push(() => makeCharacter(
  14058. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14059. {
  14060. front: {
  14061. height: math.unit(6, "feet"),
  14062. weight: math.unit(150, "lb"),
  14063. name: "Front",
  14064. image: {
  14065. source: "./media/characters/neos/front.svg",
  14066. extra: 1696 / 992,
  14067. bottom: 0.14
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(54, "cm"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(100, "m")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(10, "km")
  14084. },
  14085. {
  14086. name: "Megamacro+",
  14087. height: math.unit(100, "km")
  14088. },
  14089. {
  14090. name: "Gigamacro",
  14091. height: math.unit(100, "Mm")
  14092. },
  14093. {
  14094. name: "Teramacro",
  14095. height: math.unit(100, "Gm")
  14096. },
  14097. {
  14098. name: "Examacro",
  14099. height: math.unit(100, "Em")
  14100. },
  14101. {
  14102. name: "Godly",
  14103. height: math.unit(10000, "Ym")
  14104. },
  14105. {
  14106. name: "Beyond Godly",
  14107. height: math.unit(25, "multiverses")
  14108. },
  14109. ]
  14110. ))
  14111. characterMakers.push(() => makeCharacter(
  14112. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14113. {
  14114. fluide_tame: {
  14115. height: math.unit(5, "feet"),
  14116. name: "Tame",
  14117. image: {
  14118. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14119. extra: 1655/1574,
  14120. bottom: 231/1886
  14121. },
  14122. form: "fluide",
  14123. default: true
  14124. },
  14125. fluide_nude: {
  14126. height: math.unit(5, "feet"),
  14127. name: "Nude",
  14128. image: {
  14129. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14130. extra: 1655/1574,
  14131. bottom: 231/1886
  14132. },
  14133. form: "fluide",
  14134. },
  14135. male_tame: {
  14136. height: math.unit(5, "feet"),
  14137. name: "Tame",
  14138. image: {
  14139. source: "./media/characters/sammy-mouse/male-tame.svg",
  14140. extra: 1655/1574,
  14141. bottom: 231/1886
  14142. },
  14143. form: "male",
  14144. default: true
  14145. },
  14146. male_nude: {
  14147. height: math.unit(5, "feet"),
  14148. name: "Nude",
  14149. image: {
  14150. source: "./media/characters/sammy-mouse/male-nude.svg",
  14151. extra: 1655/1574,
  14152. bottom: 231/1886
  14153. },
  14154. form: "male",
  14155. },
  14156. female_nude: {
  14157. height: math.unit(5, "feet"),
  14158. name: "Nude",
  14159. image: {
  14160. source: "./media/characters/sammy-mouse/female-nude.svg",
  14161. extra: 1655/1574,
  14162. bottom: 231/1886
  14163. },
  14164. form: "female",
  14165. default: true
  14166. },
  14167. mouth: {
  14168. height: math.unit(0.32, "feet"),
  14169. name: "Mouth",
  14170. image: {
  14171. source: "./media/characters/sammy-mouse/mouth.svg"
  14172. },
  14173. allForms: true
  14174. },
  14175. paw: {
  14176. height: math.unit(0.42, "feet"),
  14177. name: "Paw",
  14178. image: {
  14179. source: "./media/characters/sammy-mouse/paw.svg"
  14180. },
  14181. allForms: true
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Micro",
  14187. height: math.unit(5, "inches"),
  14188. allForms: true
  14189. },
  14190. {
  14191. name: "Normal",
  14192. height: math.unit(5, "feet"),
  14193. default: true,
  14194. allForms: true
  14195. },
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(60, "feet"),
  14199. allForms: true
  14200. },
  14201. ],
  14202. {
  14203. "fluide": {
  14204. name: "Fluide",
  14205. default: true
  14206. },
  14207. "male": {
  14208. name: "Male",
  14209. },
  14210. "female": {
  14211. name: "Female",
  14212. },
  14213. }
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(4, "feet"),
  14220. weight: math.unit(50, "lb"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/kole/front.svg",
  14224. extra: 1423 / 1303,
  14225. bottom: 0.025
  14226. }
  14227. },
  14228. back: {
  14229. height: math.unit(4, "feet"),
  14230. weight: math.unit(50, "lb"),
  14231. name: "Back",
  14232. image: {
  14233. source: "./media/characters/kole/back.svg",
  14234. extra: 1426 / 1280,
  14235. bottom: 0.02
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(4, "feet"),
  14243. default: true
  14244. },
  14245. ]
  14246. ))
  14247. characterMakers.push(() => makeCharacter(
  14248. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14249. {
  14250. front: {
  14251. height: math.unit(2.5, "feet"),
  14252. weight: math.unit(32, "lb"),
  14253. name: "Front",
  14254. image: {
  14255. source: "./media/characters/rufran/front.svg",
  14256. extra: 1313/885,
  14257. bottom: 94/1407
  14258. }
  14259. },
  14260. side: {
  14261. height: math.unit(2.5, "feet"),
  14262. weight: math.unit(32, "lb"),
  14263. name: "Side",
  14264. image: {
  14265. source: "./media/characters/rufran/side.svg",
  14266. extra: 1109/852,
  14267. bottom: 118/1227
  14268. }
  14269. },
  14270. back: {
  14271. height: math.unit(2.5, "feet"),
  14272. weight: math.unit(32, "lb"),
  14273. name: "Back",
  14274. image: {
  14275. source: "./media/characters/rufran/back.svg",
  14276. extra: 1280/878,
  14277. bottom: 131/1411
  14278. }
  14279. },
  14280. mouth: {
  14281. height: math.unit(1.13, "feet"),
  14282. name: "Mouth",
  14283. image: {
  14284. source: "./media/characters/rufran/mouth.svg"
  14285. }
  14286. },
  14287. foot: {
  14288. height: math.unit(1.33, "feet"),
  14289. name: "Foot",
  14290. image: {
  14291. source: "./media/characters/rufran/foot.svg"
  14292. }
  14293. },
  14294. koboldFront: {
  14295. height: math.unit(2 + 6 / 12, "feet"),
  14296. weight: math.unit(20, "lb"),
  14297. name: "Front (Kobold)",
  14298. image: {
  14299. source: "./media/characters/rufran/kobold-front.svg",
  14300. extra: 2041 / 1839,
  14301. bottom: 0.055
  14302. }
  14303. },
  14304. koboldBack: {
  14305. height: math.unit(2 + 6 / 12, "feet"),
  14306. weight: math.unit(20, "lb"),
  14307. name: "Back (Kobold)",
  14308. image: {
  14309. source: "./media/characters/rufran/kobold-back.svg",
  14310. extra: 2054 / 1839,
  14311. bottom: 0.01
  14312. }
  14313. },
  14314. koboldHand: {
  14315. height: math.unit(0.2166, "meters"),
  14316. name: "Hand (Kobold)",
  14317. image: {
  14318. source: "./media/characters/rufran/kobold-hand.svg"
  14319. }
  14320. },
  14321. koboldFoot: {
  14322. height: math.unit(0.185, "meters"),
  14323. name: "Foot (Kobold)",
  14324. image: {
  14325. source: "./media/characters/rufran/kobold-foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Micro",
  14332. height: math.unit(1, "inch")
  14333. },
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(2 + 6 / 12, "feet"),
  14337. default: true
  14338. },
  14339. {
  14340. name: "Big",
  14341. height: math.unit(60, "feet")
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(325, "feet")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(0.3, "meters"),
  14354. weight: math.unit(3.5, "kg"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/chip/front.svg",
  14358. extra: 748 / 674
  14359. }
  14360. },
  14361. },
  14362. [
  14363. {
  14364. name: "Micro",
  14365. height: math.unit(1, "inch"),
  14366. default: true
  14367. },
  14368. ]
  14369. ))
  14370. characterMakers.push(() => makeCharacter(
  14371. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14372. {
  14373. side: {
  14374. height: math.unit(2.3, "meters"),
  14375. weight: math.unit(3500, "lb"),
  14376. name: "Side",
  14377. image: {
  14378. source: "./media/characters/torvid/side.svg",
  14379. extra: 1972 / 722,
  14380. bottom: 0.035
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(2.3, "meters"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14394. {
  14395. front: {
  14396. height: math.unit(2, "meters"),
  14397. weight: math.unit(150.5, "kg"),
  14398. name: "Front",
  14399. image: {
  14400. source: "./media/characters/susan/front.svg",
  14401. extra: 693 / 635,
  14402. bottom: 0.05
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Megamacro",
  14409. height: math.unit(505, "miles"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14416. {
  14417. front: {
  14418. height: math.unit(6, "feet"),
  14419. weight: math.unit(150, "lb"),
  14420. name: "Front",
  14421. image: {
  14422. source: "./media/characters/raindrops/front.svg",
  14423. extra: 2655 / 2461,
  14424. bottom: 49 / 2705
  14425. }
  14426. },
  14427. back: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Back",
  14431. image: {
  14432. source: "./media/characters/raindrops/back.svg",
  14433. extra: 2574 / 2400,
  14434. bottom: 65 / 2634
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Micro",
  14441. height: math.unit(6, "inches")
  14442. },
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(6 + 2 / 12, "feet")
  14446. },
  14447. {
  14448. name: "Macro",
  14449. height: math.unit(131, "feet"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Megamacro",
  14454. height: math.unit(15, "miles")
  14455. },
  14456. {
  14457. name: "Gigamacro",
  14458. height: math.unit(4000, "miles")
  14459. },
  14460. {
  14461. name: "Teramacro",
  14462. height: math.unit(315000, "miles")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14468. {
  14469. normal_front: {
  14470. height: math.unit(9 + 2/12, "feet"),
  14471. weight: math.unit(325, "kg"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/tezwa/normal-front.svg",
  14475. extra: 770/714,
  14476. bottom: 32/802
  14477. },
  14478. form: "normal",
  14479. },
  14480. normal_paw: {
  14481. height: math.unit(2.2, "feet"),
  14482. name: "Paw",
  14483. image: {
  14484. source: "./media/characters/tezwa/paw.svg"
  14485. },
  14486. form: "normal",
  14487. },
  14488. muscled_front: {
  14489. height: math.unit(916 + 8/12, "feet"),
  14490. weight: math.unit(500000, "tons"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/tezwa/muscled-front.svg",
  14494. extra: 1840/1697,
  14495. bottom: 29/1869
  14496. },
  14497. form: "muscled",
  14498. },
  14499. muscled_paw: {
  14500. height: math.unit(200, "feet"),
  14501. name: "Paw",
  14502. image: {
  14503. source: "./media/characters/tezwa/paw.svg"
  14504. },
  14505. form: "muscled",
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(9 + 2 / 12, "feet"),
  14512. default: true,
  14513. form: "normal"
  14514. },
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(916 + 8/12, "feet"),
  14518. default: true,
  14519. form: "muscled"
  14520. },
  14521. ],
  14522. {
  14523. "normal": {
  14524. name: "Normal",
  14525. default: true
  14526. },
  14527. "muscled": {
  14528. name: "Muscled",
  14529. },
  14530. }
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14534. {
  14535. front: {
  14536. height: math.unit(58, "feet"),
  14537. weight: math.unit(89000, "lb"),
  14538. name: "Front",
  14539. image: {
  14540. source: "./media/characters/typhus/front.svg",
  14541. extra: 816 / 800,
  14542. bottom: 0.065
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Macro",
  14549. height: math.unit(58, "feet"),
  14550. default: true
  14551. },
  14552. ]
  14553. ))
  14554. characterMakers.push(() => makeCharacter(
  14555. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14556. {
  14557. front: {
  14558. height: math.unit(12, "feet"),
  14559. weight: math.unit(6, "tonnes"),
  14560. name: "Front",
  14561. image: {
  14562. source: "./media/characters/lyra-von-wulf/front.svg",
  14563. extra: 1,
  14564. bottom: 0.10
  14565. }
  14566. },
  14567. frontMecha: {
  14568. height: math.unit(12, "feet"),
  14569. weight: math.unit(12, "tonnes"),
  14570. name: "Front (Mecha)",
  14571. image: {
  14572. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14573. extra: 1,
  14574. bottom: 0.042
  14575. }
  14576. },
  14577. maw: {
  14578. height: math.unit(2.2, "feet"),
  14579. name: "Maw",
  14580. image: {
  14581. source: "./media/characters/lyra-von-wulf/maw.svg"
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(12, "feet"),
  14589. default: true
  14590. },
  14591. {
  14592. name: "Classic",
  14593. height: math.unit(50, "feet")
  14594. },
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(500, "feet")
  14598. },
  14599. {
  14600. name: "Megamacro",
  14601. height: math.unit(1, "mile")
  14602. },
  14603. {
  14604. name: "Gigamacro",
  14605. height: math.unit(400, "miles")
  14606. },
  14607. {
  14608. name: "Teramacro",
  14609. height: math.unit(22000, "miles")
  14610. },
  14611. {
  14612. name: "Solarmacro",
  14613. height: math.unit(8600000, "miles")
  14614. },
  14615. {
  14616. name: "Galactic",
  14617. height: math.unit(1057000, "lightyears")
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(6 + 10 / 12, "feet"),
  14626. weight: math.unit(150, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/dixon/front.svg",
  14630. extra: 3361 / 3209,
  14631. bottom: 0.01
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(6 + 10 / 12, "feet"),
  14639. default: true
  14640. },
  14641. {
  14642. name: "Big",
  14643. height: math.unit(12, "meters")
  14644. },
  14645. {
  14646. name: "Macro",
  14647. height: math.unit(500, "meters")
  14648. },
  14649. {
  14650. name: "Megamacro",
  14651. height: math.unit(2, "km")
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14657. {
  14658. kingCheetah_front: {
  14659. height: math.unit(1.85, "meters"),
  14660. weight: math.unit(68, "kg"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/kauko/king-cheetah-front.svg",
  14664. extra: 1007/972,
  14665. bottom: 35/1042
  14666. },
  14667. form: "king-cheetah",
  14668. default: true
  14669. },
  14670. kingCheetah_back: {
  14671. height: math.unit(1.85, "meters"),
  14672. weight: math.unit(68, "kg"),
  14673. name: "Back",
  14674. image: {
  14675. source: "./media/characters/kauko/king-cheetah-back.svg",
  14676. extra: 1015/980,
  14677. bottom: 11/1026
  14678. },
  14679. form: "king-cheetah",
  14680. },
  14681. kingCheetah_hand: {
  14682. height: math.unit(0.23, "meters"),
  14683. name: "Hand",
  14684. image: {
  14685. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14686. },
  14687. form: "king-cheetah",
  14688. },
  14689. kingCheetah_paw: {
  14690. height: math.unit(0.38, "meters"),
  14691. name: "Paw",
  14692. image: {
  14693. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14694. },
  14695. form: "king-cheetah",
  14696. },
  14697. kingCheetah_nape: {
  14698. height: math.unit(0.23, "meters"),
  14699. name: "Nape",
  14700. image: {
  14701. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14702. },
  14703. form: "king-cheetah",
  14704. },
  14705. wolf_front: {
  14706. height: math.unit(1.88, "meters"),
  14707. weight: math.unit(74, "kg"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/kauko/wolf-front.svg",
  14711. extra: 952/908,
  14712. bottom: 64/1016
  14713. },
  14714. form: "wolf",
  14715. default: true
  14716. },
  14717. wolf_dressed: {
  14718. height: math.unit(1.88, "meters"),
  14719. weight: math.unit(74, "kg"),
  14720. name: "Dressed",
  14721. image: {
  14722. source: "./media/characters/kauko/wolf-dressed.svg",
  14723. extra: 963/916,
  14724. bottom: 101/1064
  14725. },
  14726. form: "wolf",
  14727. },
  14728. wolf_hand: {
  14729. height: math.unit(0.3, "meters"),
  14730. name: "Hand",
  14731. image: {
  14732. source: "./media/characters/kauko/wolf-hand.svg"
  14733. },
  14734. form: "wolf",
  14735. },
  14736. wolf_paw: {
  14737. height: math.unit(0.407, "meters"),
  14738. name: "Paw",
  14739. image: {
  14740. source: "./media/characters/kauko/wolf-paw.svg"
  14741. },
  14742. form: "wolf",
  14743. },
  14744. wolf_nape: {
  14745. height: math.unit(0.25, "meters"),
  14746. name: "Nape",
  14747. image: {
  14748. source: "./media/characters/kauko/wolf-nape.svg"
  14749. },
  14750. form: "wolf",
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Normal",
  14756. height: math.unit(1.85, "m"),
  14757. default: true,
  14758. form: "king-cheetah"
  14759. },
  14760. {
  14761. name: "Normal",
  14762. height: math.unit(1.88, "m"),
  14763. default: true,
  14764. form: "wolf"
  14765. },
  14766. ],
  14767. {
  14768. "king-cheetah": {
  14769. name: "King Cheetah",
  14770. default: true
  14771. },
  14772. "wolf": {
  14773. name: "Wolf",
  14774. },
  14775. }
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14779. {
  14780. frontSfw: {
  14781. height: math.unit(5, "meters"),
  14782. weight: math.unit(4250, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/varg/front-sfw.svg",
  14786. extra: 1103/1010,
  14787. bottom: 50/1153
  14788. },
  14789. form: "anthro",
  14790. default: true
  14791. },
  14792. backSfw: {
  14793. height: math.unit(5, "meters"),
  14794. weight: math.unit(4250, "lb"),
  14795. name: "Back",
  14796. image: {
  14797. source: "./media/characters/varg/back-sfw.svg",
  14798. extra: 1038/1022,
  14799. bottom: 36/1074
  14800. },
  14801. form: "anthro"
  14802. },
  14803. frontNsfw: {
  14804. height: math.unit(5, "meters"),
  14805. weight: math.unit(4250, "lb"),
  14806. name: "Front (NSFW)",
  14807. image: {
  14808. source: "./media/characters/varg/front-nsfw.svg",
  14809. extra: 1103/1010,
  14810. bottom: 50/1153
  14811. },
  14812. form: "anthro"
  14813. },
  14814. sheath: {
  14815. height: math.unit(3.8, "feet"),
  14816. weight: math.unit(90, "kilograms"),
  14817. name: "Sheath",
  14818. image: {
  14819. source: "./media/characters/varg/sheath.svg"
  14820. },
  14821. form: "anthro"
  14822. },
  14823. dick: {
  14824. height: math.unit(4.6, "feet"),
  14825. weight: math.unit(451, "kilograms"),
  14826. name: "Dick",
  14827. image: {
  14828. source: "./media/characters/varg/dick.svg"
  14829. },
  14830. form: "anthro"
  14831. },
  14832. feralSfw: {
  14833. height: math.unit(5, "meters"),
  14834. weight: math.unit(100000, "lb"),
  14835. name: "Side",
  14836. image: {
  14837. source: "./media/characters/varg/feral-sfw.svg",
  14838. extra: 1065/511,
  14839. bottom: 211/1276
  14840. },
  14841. form: "feral",
  14842. default: true
  14843. },
  14844. feralNsfw: {
  14845. height: math.unit(5, "meters"),
  14846. weight: math.unit(100000, "lb"),
  14847. name: "Side (NSFW)",
  14848. image: {
  14849. source: "./media/characters/varg/feral-nsfw.svg",
  14850. extra: 1065/511,
  14851. bottom: 211/1276
  14852. },
  14853. form: "feral",
  14854. },
  14855. feralSheath: {
  14856. height: math.unit(9.8, "feet"),
  14857. weight: math.unit(2000, "kilograms"),
  14858. name: "Sheath",
  14859. image: {
  14860. source: "./media/characters/varg/sheath.svg"
  14861. },
  14862. form: "feral"
  14863. },
  14864. feralDick: {
  14865. height: math.unit(13.11, "feet"),
  14866. weight: math.unit(10440, "kilograms"),
  14867. name: "Dick",
  14868. image: {
  14869. source: "./media/characters/varg/dick.svg"
  14870. },
  14871. form: "feral"
  14872. },
  14873. },
  14874. [
  14875. {
  14876. name: "Normal",
  14877. height: math.unit(5, "meters"),
  14878. form: "anthro"
  14879. },
  14880. {
  14881. name: "Macro",
  14882. height: math.unit(200, "meters"),
  14883. form: "anthro"
  14884. },
  14885. {
  14886. name: "Megamacro",
  14887. height: math.unit(20, "kilometers"),
  14888. form: "anthro"
  14889. },
  14890. {
  14891. name: "True Size",
  14892. height: math.unit(211, "km"),
  14893. form: "anthro",
  14894. default: true
  14895. },
  14896. {
  14897. name: "Gigamacro",
  14898. height: math.unit(1000, "km"),
  14899. form: "anthro"
  14900. },
  14901. {
  14902. name: "Gigamacro+",
  14903. height: math.unit(8000, "km"),
  14904. form: "anthro"
  14905. },
  14906. {
  14907. name: "Teramacro",
  14908. height: math.unit(1000000, "km"),
  14909. form: "anthro"
  14910. },
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(5, "meters"),
  14914. form: "feral"
  14915. },
  14916. {
  14917. name: "Macro",
  14918. height: math.unit(200, "meters"),
  14919. form: "feral"
  14920. },
  14921. {
  14922. name: "Megamacro",
  14923. height: math.unit(20, "kilometers"),
  14924. form: "feral"
  14925. },
  14926. {
  14927. name: "True Size",
  14928. height: math.unit(211, "km"),
  14929. form: "feral",
  14930. default: true
  14931. },
  14932. {
  14933. name: "Gigamacro",
  14934. height: math.unit(1000, "km"),
  14935. form: "feral"
  14936. },
  14937. {
  14938. name: "Gigamacro+",
  14939. height: math.unit(8000, "km"),
  14940. form: "feral"
  14941. },
  14942. {
  14943. name: "Teramacro",
  14944. height: math.unit(1000000, "km"),
  14945. form: "feral"
  14946. },
  14947. ],
  14948. {
  14949. "anthro": {
  14950. name: "Anthro",
  14951. default: true
  14952. },
  14953. "feral": {
  14954. name: "Feral",
  14955. },
  14956. }
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(7 + 7 / 12, "feet"),
  14963. weight: math.unit(267, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/dayza/front.svg",
  14967. extra: 1262 / 1200,
  14968. bottom: 0.035
  14969. }
  14970. },
  14971. side: {
  14972. height: math.unit(7 + 7 / 12, "feet"),
  14973. weight: math.unit(267, "lb"),
  14974. name: "Side",
  14975. image: {
  14976. source: "./media/characters/dayza/side.svg",
  14977. extra: 1295 / 1245,
  14978. bottom: 0.05
  14979. }
  14980. },
  14981. back: {
  14982. height: math.unit(7 + 7 / 12, "feet"),
  14983. weight: math.unit(267, "lb"),
  14984. name: "Back",
  14985. image: {
  14986. source: "./media/characters/dayza/back.svg",
  14987. extra: 1241 / 1170
  14988. }
  14989. },
  14990. },
  14991. [
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(7 + 7 / 12, "feet"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Macro",
  14999. height: math.unit(155, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(6 + 5 / 12, "feet"),
  15008. weight: math.unit(160, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/xanthos/front.svg",
  15012. extra: 1,
  15013. bottom: 0.04
  15014. }
  15015. },
  15016. back: {
  15017. height: math.unit(6 + 5 / 12, "feet"),
  15018. weight: math.unit(160, "lb"),
  15019. name: "Back",
  15020. image: {
  15021. source: "./media/characters/xanthos/back.svg",
  15022. extra: 1,
  15023. bottom: 0.03
  15024. }
  15025. },
  15026. hand: {
  15027. height: math.unit(0.928, "feet"),
  15028. name: "Hand",
  15029. image: {
  15030. source: "./media/characters/xanthos/hand.svg"
  15031. }
  15032. },
  15033. foot: {
  15034. height: math.unit(1.286, "feet"),
  15035. name: "Foot",
  15036. image: {
  15037. source: "./media/characters/xanthos/foot.svg"
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(6 + 5 / 12, "feet"),
  15045. default: true
  15046. },
  15047. {
  15048. name: "Normal+",
  15049. height: math.unit(6, "meters")
  15050. },
  15051. {
  15052. name: "Macro",
  15053. height: math.unit(40, "feet")
  15054. },
  15055. {
  15056. name: "Macro+",
  15057. height: math.unit(200, "meters")
  15058. },
  15059. {
  15060. name: "Megamacro",
  15061. height: math.unit(20, "km")
  15062. },
  15063. {
  15064. name: "Megamacro+",
  15065. height: math.unit(100, "km")
  15066. },
  15067. {
  15068. name: "Gigamacro",
  15069. height: math.unit(200, "megameters")
  15070. },
  15071. {
  15072. name: "Gigamacro+",
  15073. height: math.unit(1.5, "gigameters")
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(6 + 3 / 12, "feet"),
  15082. weight: math.unit(215, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/grynn/front.svg",
  15086. extra: 4627 / 4209,
  15087. bottom: 0.047
  15088. }
  15089. },
  15090. },
  15091. [
  15092. {
  15093. name: "Micro",
  15094. height: math.unit(6, "inches")
  15095. },
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(6 + 3 / 12, "feet"),
  15099. default: true
  15100. },
  15101. {
  15102. name: "Big",
  15103. height: math.unit(104, "feet")
  15104. },
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(944, "feet")
  15108. },
  15109. {
  15110. name: "Macro+",
  15111. height: math.unit(9480, "feet")
  15112. },
  15113. {
  15114. name: "Megamacro",
  15115. height: math.unit(78752, "feet")
  15116. },
  15117. {
  15118. name: "Megamacro+",
  15119. height: math.unit(630128, "feet")
  15120. },
  15121. {
  15122. name: "Megamacro++",
  15123. height: math.unit(3150695, "feet")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(7 + 5 / 12, "feet"),
  15132. weight: math.unit(450, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/mocha-aura/front.svg",
  15136. extra: 1907 / 1817,
  15137. bottom: 0.04
  15138. }
  15139. },
  15140. back: {
  15141. height: math.unit(7 + 5 / 12, "feet"),
  15142. weight: math.unit(450, "lb"),
  15143. name: "Back",
  15144. image: {
  15145. source: "./media/characters/mocha-aura/back.svg",
  15146. extra: 1900 / 1825,
  15147. bottom: 0.045
  15148. }
  15149. },
  15150. },
  15151. [
  15152. {
  15153. name: "Nano",
  15154. height: math.unit(1, "nm")
  15155. },
  15156. {
  15157. name: "Megamicro",
  15158. height: math.unit(1, "mm")
  15159. },
  15160. {
  15161. name: "Micro",
  15162. height: math.unit(3, "inches")
  15163. },
  15164. {
  15165. name: "Normal",
  15166. height: math.unit(7 + 5 / 12, "feet"),
  15167. default: true
  15168. },
  15169. {
  15170. name: "Macro",
  15171. height: math.unit(30, "feet")
  15172. },
  15173. {
  15174. name: "Megamacro",
  15175. height: math.unit(3500, "feet")
  15176. },
  15177. {
  15178. name: "Teramacro",
  15179. height: math.unit(500000, "miles")
  15180. },
  15181. {
  15182. name: "Petamacro",
  15183. height: math.unit(50000000000000000, "parsecs")
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(150, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/ilisha-devya/front.svg",
  15196. extra: 1053/1049,
  15197. bottom: 270/1323
  15198. }
  15199. },
  15200. back: {
  15201. height: math.unit(6, "feet"),
  15202. weight: math.unit(150, "lb"),
  15203. name: "Back",
  15204. image: {
  15205. source: "./media/characters/ilisha-devya/back.svg",
  15206. extra: 1131/1128,
  15207. bottom: 39/1170
  15208. }
  15209. },
  15210. },
  15211. [
  15212. {
  15213. name: "Macro",
  15214. height: math.unit(500, "feet"),
  15215. default: true
  15216. },
  15217. {
  15218. name: "Megamacro",
  15219. height: math.unit(10, "miles")
  15220. },
  15221. {
  15222. name: "Gigamacro",
  15223. height: math.unit(100000, "miles")
  15224. },
  15225. {
  15226. name: "Examacro",
  15227. height: math.unit(1e9, "lightyears")
  15228. },
  15229. {
  15230. name: "Omniversal",
  15231. height: math.unit(1e33, "lightyears")
  15232. },
  15233. {
  15234. name: "Beyond Infinite",
  15235. height: math.unit(1e100, "lightyears")
  15236. },
  15237. ]
  15238. ))
  15239. characterMakers.push(() => makeCharacter(
  15240. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15241. {
  15242. Side: {
  15243. height: math.unit(6, "feet"),
  15244. weight: math.unit(150, "lb"),
  15245. name: "Side",
  15246. image: {
  15247. source: "./media/characters/mira/side.svg",
  15248. extra: 900 / 799,
  15249. bottom: 0.02
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Human Size",
  15256. height: math.unit(6, "feet")
  15257. },
  15258. {
  15259. name: "Macro",
  15260. height: math.unit(100, "feet"),
  15261. default: true
  15262. },
  15263. {
  15264. name: "Megamacro",
  15265. height: math.unit(10, "miles")
  15266. },
  15267. {
  15268. name: "Gigamacro",
  15269. height: math.unit(25000, "miles")
  15270. },
  15271. {
  15272. name: "Teramacro",
  15273. height: math.unit(300, "AU")
  15274. },
  15275. {
  15276. name: "Full Size",
  15277. height: math.unit(4.5e10, "lightyears")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(6, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/holly/front.svg",
  15290. extra: 639 / 606
  15291. }
  15292. },
  15293. back: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Back",
  15297. image: {
  15298. source: "./media/characters/holly/back.svg",
  15299. extra: 623 / 598
  15300. }
  15301. },
  15302. frontWorking: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(150, "lb"),
  15305. name: "Front (Working)",
  15306. image: {
  15307. source: "./media/characters/holly/front-working.svg",
  15308. extra: 607 / 577,
  15309. bottom: 0.048
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(12 + 3 / 12, "feet"),
  15317. default: true
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/porter/front.svg",
  15330. extra: 1,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. frontRobes: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front (Robes)",
  15338. image: {
  15339. source: "./media/characters/porter/front-robes.svg",
  15340. extra: 1.01,
  15341. bottom: 0.01
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(11 + 9 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15355. {
  15356. legendary: {
  15357. height: math.unit(6, "feet"),
  15358. weight: math.unit(150, "lb"),
  15359. name: "Legendary",
  15360. image: {
  15361. source: "./media/characters/lucy/legendary.svg",
  15362. extra: 1355 / 1100,
  15363. bottom: 0.045
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Legendary",
  15370. height: math.unit(86882 * 2, "miles"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(6, "feet"),
  15380. weight: math.unit(150, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/drusilla/front.svg",
  15384. extra: 678 / 635,
  15385. bottom: 0.03
  15386. }
  15387. },
  15388. back: {
  15389. height: math.unit(6, "feet"),
  15390. weight: math.unit(150, "lb"),
  15391. name: "Back",
  15392. image: {
  15393. source: "./media/characters/drusilla/back.svg",
  15394. extra: 678 / 635,
  15395. bottom: 0.005
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Macro",
  15402. height: math.unit(100, "feet")
  15403. },
  15404. {
  15405. name: "Canon Height",
  15406. height: math.unit(2000, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(6, "feet"),
  15416. weight: math.unit(180, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/renard-thatch/front.svg",
  15420. extra: 2411 / 2275,
  15421. bottom: 0.01
  15422. }
  15423. },
  15424. frontPosing: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(180, "lb"),
  15427. name: "Front (Posing)",
  15428. image: {
  15429. source: "./media/characters/renard-thatch/front-posing.svg",
  15430. extra: 2381 / 2261,
  15431. bottom: 0.01
  15432. }
  15433. },
  15434. back: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(180, "lb"),
  15437. name: "Back",
  15438. image: {
  15439. source: "./media/characters/renard-thatch/back.svg",
  15440. extra: 2428 / 2288
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Micro",
  15447. height: math.unit(3, "inches")
  15448. },
  15449. {
  15450. name: "Default",
  15451. height: math.unit(6, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Macro",
  15456. height: math.unit(75, "feet")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(1450, "feet"),
  15465. weight: math.unit(1.21e6, "tons"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/sekvra/front.svg",
  15469. extra: 1193/1190,
  15470. bottom: 78/1271
  15471. }
  15472. },
  15473. side: {
  15474. height: math.unit(1450, "feet"),
  15475. weight: math.unit(1.21e6, "tons"),
  15476. name: "Side",
  15477. image: {
  15478. source: "./media/characters/sekvra/side.svg",
  15479. extra: 1193/1190,
  15480. bottom: 52/1245
  15481. }
  15482. },
  15483. back: {
  15484. height: math.unit(1450, "feet"),
  15485. weight: math.unit(1.21e6, "tons"),
  15486. name: "Back",
  15487. image: {
  15488. source: "./media/characters/sekvra/back.svg",
  15489. extra: 1219/1216,
  15490. bottom: 21/1240
  15491. }
  15492. },
  15493. frontClothed: {
  15494. height: math.unit(1450, "feet"),
  15495. weight: math.unit(1.21e6, "tons"),
  15496. name: "Front (Clothed)",
  15497. image: {
  15498. source: "./media/characters/sekvra/front-clothed.svg",
  15499. extra: 1192/1189,
  15500. bottom: 79/1271
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Macro",
  15507. height: math.unit(1450, "feet"),
  15508. default: true
  15509. },
  15510. {
  15511. name: "Megamacro",
  15512. height: math.unit(15000, "feet")
  15513. },
  15514. ]
  15515. ))
  15516. characterMakers.push(() => makeCharacter(
  15517. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15518. {
  15519. front: {
  15520. height: math.unit(6, "feet"),
  15521. weight: math.unit(150, "lb"),
  15522. name: "Front",
  15523. image: {
  15524. source: "./media/characters/carmine/front.svg",
  15525. extra: 1557/1538,
  15526. bottom: 68/1625
  15527. }
  15528. },
  15529. frontArmor: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front (Armor)",
  15533. image: {
  15534. source: "./media/characters/carmine/front-armor.svg",
  15535. extra: 1549/1530,
  15536. bottom: 82/1631
  15537. }
  15538. },
  15539. mouth: {
  15540. height: math.unit(0.55, "feet"),
  15541. name: "Mouth",
  15542. image: {
  15543. source: "./media/characters/carmine/mouth.svg"
  15544. }
  15545. },
  15546. hand: {
  15547. height: math.unit(1.05, "feet"),
  15548. name: "Hand",
  15549. image: {
  15550. source: "./media/characters/carmine/hand.svg"
  15551. }
  15552. },
  15553. foot: {
  15554. height: math.unit(0.6, "feet"),
  15555. name: "Foot",
  15556. image: {
  15557. source: "./media/characters/carmine/foot.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Large",
  15564. height: math.unit(1, "mile")
  15565. },
  15566. {
  15567. name: "Huge",
  15568. height: math.unit(40, "miles"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Colossal",
  15573. height: math.unit(2500, "miles")
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/elyssia/front.svg",
  15586. extra: 2201 / 2035,
  15587. bottom: 0.05
  15588. }
  15589. },
  15590. frontClothed: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(150, "lb"),
  15593. name: "Front (Clothed)",
  15594. image: {
  15595. source: "./media/characters/elyssia/front-clothed.svg",
  15596. extra: 2201 / 2035,
  15597. bottom: 0.05
  15598. }
  15599. },
  15600. back: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(150, "lb"),
  15603. name: "Back",
  15604. image: {
  15605. source: "./media/characters/elyssia/back.svg",
  15606. extra: 2201 / 2035,
  15607. bottom: 0.013
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Smaller",
  15614. height: math.unit(150, "feet")
  15615. },
  15616. {
  15617. name: "Standard",
  15618. height: math.unit(1400, "feet"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Distracted",
  15623. height: math.unit(15000, "feet")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(7 + 4/12, "feet"),
  15632. weight: math.unit(690, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/geno-maxwell/front.svg",
  15636. extra: 984/856,
  15637. bottom: 87/1071
  15638. }
  15639. },
  15640. back: {
  15641. height: math.unit(7 + 4/12, "feet"),
  15642. weight: math.unit(690, "lb"),
  15643. name: "Back",
  15644. image: {
  15645. source: "./media/characters/geno-maxwell/back.svg",
  15646. extra: 981/854,
  15647. bottom: 57/1038
  15648. }
  15649. },
  15650. frontCostume: {
  15651. height: math.unit(7 + 4/12, "feet"),
  15652. weight: math.unit(690, "lb"),
  15653. name: "Front (Costume)",
  15654. image: {
  15655. source: "./media/characters/geno-maxwell/front-costume.svg",
  15656. extra: 984/856,
  15657. bottom: 87/1071
  15658. }
  15659. },
  15660. backcostume: {
  15661. height: math.unit(7 + 4/12, "feet"),
  15662. weight: math.unit(690, "lb"),
  15663. name: "Back (Costume)",
  15664. image: {
  15665. source: "./media/characters/geno-maxwell/back-costume.svg",
  15666. extra: 981/854,
  15667. bottom: 57/1038
  15668. }
  15669. },
  15670. },
  15671. [
  15672. {
  15673. name: "Micro",
  15674. height: math.unit(3, "inches")
  15675. },
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(7 + 4 / 12, "feet"),
  15679. default: true
  15680. },
  15681. {
  15682. name: "Macro",
  15683. height: math.unit(220, "feet")
  15684. },
  15685. {
  15686. name: "Megamacro",
  15687. height: math.unit(11, "miles")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(7 + 4/12, "feet"),
  15696. weight: math.unit(750, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/regena-maxwell/front.svg",
  15700. extra: 984/856,
  15701. bottom: 87/1071
  15702. }
  15703. },
  15704. back: {
  15705. height: math.unit(7 + 4/12, "feet"),
  15706. weight: math.unit(750, "lb"),
  15707. name: "Back",
  15708. image: {
  15709. source: "./media/characters/regena-maxwell/back.svg",
  15710. extra: 981/854,
  15711. bottom: 57/1038
  15712. }
  15713. },
  15714. frontCostume: {
  15715. height: math.unit(7 + 4/12, "feet"),
  15716. weight: math.unit(750, "lb"),
  15717. name: "Front (Costume)",
  15718. image: {
  15719. source: "./media/characters/regena-maxwell/front-costume.svg",
  15720. extra: 984/856,
  15721. bottom: 87/1071
  15722. }
  15723. },
  15724. backcostume: {
  15725. height: math.unit(7 + 4/12, "feet"),
  15726. weight: math.unit(750, "lb"),
  15727. name: "Back (Costume)",
  15728. image: {
  15729. source: "./media/characters/regena-maxwell/back-costume.svg",
  15730. extra: 981/854,
  15731. bottom: 57/1038
  15732. }
  15733. },
  15734. },
  15735. [
  15736. {
  15737. name: "Normal",
  15738. height: math.unit(7 + 4 / 12, "feet"),
  15739. default: true
  15740. },
  15741. {
  15742. name: "Macro",
  15743. height: math.unit(220, "feet")
  15744. },
  15745. {
  15746. name: "Megamacro",
  15747. height: math.unit(11, "miles")
  15748. },
  15749. ]
  15750. ))
  15751. characterMakers.push(() => makeCharacter(
  15752. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15753. {
  15754. front: {
  15755. height: math.unit(6, "feet"),
  15756. weight: math.unit(150, "lb"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15760. extra: 860 / 690,
  15761. bottom: 0.03
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Normal",
  15768. height: math.unit(1.7, "meters"),
  15769. default: true
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6, "feet"),
  15778. weight: math.unit(150, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/quilly/front.svg",
  15782. extra: 890 / 776
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Gigamacro",
  15789. height: math.unit(404090, "miles"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(7 + 8 / 12, "feet"),
  15799. weight: math.unit(350, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/tempest/front.svg",
  15803. extra: 1175 / 1086,
  15804. bottom: 0.02
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(7 + 8 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15818. {
  15819. side: {
  15820. height: math.unit(4 + 5 / 12, "feet"),
  15821. weight: math.unit(80, "lb"),
  15822. name: "Side",
  15823. image: {
  15824. source: "./media/characters/rodger/side.svg",
  15825. extra: 1235 / 1118
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Micro",
  15832. height: math.unit(1, "inch")
  15833. },
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(4 + 5 / 12, "feet"),
  15837. default: true
  15838. },
  15839. {
  15840. name: "Macro",
  15841. height: math.unit(120, "feet")
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/danyel/front.svg",
  15854. extra: 1185 / 1123,
  15855. bottom: 0.05
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Shrunken",
  15862. height: math.unit(0.5, "mm")
  15863. },
  15864. {
  15865. name: "Micro",
  15866. height: math.unit(1, "mm"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Upsized",
  15871. height: math.unit(5 + 5 / 12, "feet")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 6 / 12, "feet"),
  15880. weight: math.unit(200, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/vivian-bijoux/front.svg",
  15884. extra: 1217/1209,
  15885. bottom: 76/1293
  15886. }
  15887. },
  15888. back: {
  15889. height: math.unit(5 + 6 / 12, "feet"),
  15890. weight: math.unit(200, "lb"),
  15891. name: "Back",
  15892. image: {
  15893. source: "./media/characters/vivian-bijoux/back.svg",
  15894. extra: 1214/1208,
  15895. bottom: 51/1265
  15896. }
  15897. },
  15898. dressed: {
  15899. height: math.unit(5 + 6 / 12, "feet"),
  15900. weight: math.unit(200, "lb"),
  15901. name: "Dressed",
  15902. image: {
  15903. source: "./media/characters/vivian-bijoux/dressed.svg",
  15904. extra: 1217/1209,
  15905. bottom: 76/1293
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(5 + 6 / 12, "feet"),
  15913. default: true
  15914. },
  15915. {
  15916. name: "Bad Dream",
  15917. height: math.unit(500, "feet")
  15918. },
  15919. {
  15920. name: "Nightmare",
  15921. height: math.unit(500, "miles")
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 1 / 12, "feet"),
  15930. weight: math.unit(260, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/zeta/front.svg",
  15934. extra: 1968 / 1889,
  15935. bottom: 0.06
  15936. }
  15937. },
  15938. back: {
  15939. height: math.unit(6 + 1 / 12, "feet"),
  15940. weight: math.unit(260, "lb"),
  15941. name: "Back",
  15942. image: {
  15943. source: "./media/characters/zeta/back.svg",
  15944. extra: 1944 / 1858,
  15945. bottom: 0.03
  15946. }
  15947. },
  15948. hand: {
  15949. height: math.unit(1.112, "feet"),
  15950. name: "Hand",
  15951. image: {
  15952. source: "./media/characters/zeta/hand.svg"
  15953. }
  15954. },
  15955. foot: {
  15956. height: math.unit(1.48, "feet"),
  15957. name: "Foot",
  15958. image: {
  15959. source: "./media/characters/zeta/foot.svg"
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Micro",
  15966. height: math.unit(6, "inches")
  15967. },
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(6 + 1 / 12, "feet"),
  15971. default: true
  15972. },
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(20, "feet")
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15981. {
  15982. front: {
  15983. height: math.unit(6, "feet"),
  15984. weight: math.unit(150, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/jamie-larsen/front.svg",
  15988. extra: 962 / 933,
  15989. bottom: 0.02
  15990. }
  15991. },
  15992. back: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Back",
  15996. image: {
  15997. source: "./media/characters/jamie-larsen/back.svg",
  15998. extra: 997 / 946
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Macro",
  16005. height: math.unit(28 + 7 / 12, "feet"),
  16006. default: true
  16007. },
  16008. {
  16009. name: "Macro+",
  16010. height: math.unit(180, "feet")
  16011. },
  16012. {
  16013. name: "Megamacro",
  16014. height: math.unit(10, "miles")
  16015. },
  16016. {
  16017. name: "Gigamacro",
  16018. height: math.unit(200000, "miles")
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(6, "feet"),
  16027. weight: math.unit(120, "lb"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/vance/front.svg",
  16031. extra: 1980 / 1890,
  16032. bottom: 0.09
  16033. }
  16034. },
  16035. back: {
  16036. height: math.unit(6, "feet"),
  16037. weight: math.unit(120, "lb"),
  16038. name: "Back",
  16039. image: {
  16040. source: "./media/characters/vance/back.svg",
  16041. extra: 2081 / 1994,
  16042. bottom: 0.014
  16043. }
  16044. },
  16045. hand: {
  16046. height: math.unit(0.88, "feet"),
  16047. name: "Hand",
  16048. image: {
  16049. source: "./media/characters/vance/hand.svg"
  16050. }
  16051. },
  16052. foot: {
  16053. height: math.unit(0.64, "feet"),
  16054. name: "Foot",
  16055. image: {
  16056. source: "./media/characters/vance/foot.svg"
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Small",
  16063. height: math.unit(90, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(100, "meters")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(15, "miles")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(180, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/xochitl/front.svg",
  16085. extra: 2297 / 2261,
  16086. bottom: 0.065
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(6, "feet"),
  16091. weight: math.unit(180, "lb"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/xochitl/back.svg",
  16095. extra: 2386 / 2354,
  16096. bottom: 0.01
  16097. }
  16098. },
  16099. foot: {
  16100. height: math.unit(6 / 5 * 1.15, "feet"),
  16101. weight: math.unit(150, "lb"),
  16102. name: "Foot",
  16103. image: {
  16104. source: "./media/characters/xochitl/foot.svg"
  16105. }
  16106. },
  16107. },
  16108. [
  16109. {
  16110. name: "Macro",
  16111. height: math.unit(80, "feet")
  16112. },
  16113. {
  16114. name: "Macro+",
  16115. height: math.unit(400, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Gigamacro",
  16120. height: math.unit(80000, "miles")
  16121. },
  16122. {
  16123. name: "Gigamacro+",
  16124. height: math.unit(400000, "miles")
  16125. },
  16126. {
  16127. name: "Teramacro",
  16128. height: math.unit(300, "AU")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(6, "feet"),
  16137. weight: math.unit(150, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/vincent/front.svg",
  16141. extra: 1130 / 1080,
  16142. bottom: 0.055
  16143. }
  16144. },
  16145. beak: {
  16146. height: math.unit(6 * 0.1, "feet"),
  16147. name: "Beak",
  16148. image: {
  16149. source: "./media/characters/vincent/beak.svg"
  16150. }
  16151. },
  16152. hand: {
  16153. height: math.unit(6 * 0.85, "feet"),
  16154. weight: math.unit(150, "lb"),
  16155. name: "Hand",
  16156. image: {
  16157. source: "./media/characters/vincent/hand.svg"
  16158. }
  16159. },
  16160. foot: {
  16161. height: math.unit(6 * 0.19, "feet"),
  16162. weight: math.unit(150, "lb"),
  16163. name: "Foot",
  16164. image: {
  16165. source: "./media/characters/vincent/foot.svg"
  16166. }
  16167. },
  16168. },
  16169. [
  16170. {
  16171. name: "Base",
  16172. height: math.unit(6 + 5 / 12, "feet"),
  16173. default: true
  16174. },
  16175. {
  16176. name: "Macro",
  16177. height: math.unit(300, "feet")
  16178. },
  16179. {
  16180. name: "Megamacro",
  16181. height: math.unit(2, "miles")
  16182. },
  16183. {
  16184. name: "Gigamacro",
  16185. height: math.unit(1000, "miles")
  16186. },
  16187. ]
  16188. ))
  16189. characterMakers.push(() => makeCharacter(
  16190. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16191. {
  16192. front: {
  16193. height: math.unit(2, "meters"),
  16194. weight: math.unit(500, "kg"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/coatl/front.svg",
  16198. extra: 3948 / 3500,
  16199. bottom: 0.082
  16200. }
  16201. },
  16202. },
  16203. [
  16204. {
  16205. name: "Normal",
  16206. height: math.unit(4, "meters")
  16207. },
  16208. {
  16209. name: "Macro",
  16210. height: math.unit(100, "meters"),
  16211. default: true
  16212. },
  16213. {
  16214. name: "Macro+",
  16215. height: math.unit(300, "meters")
  16216. },
  16217. {
  16218. name: "Megamacro",
  16219. height: math.unit(3, "gigameters")
  16220. },
  16221. {
  16222. name: "Megamacro+",
  16223. height: math.unit(300, "terameters")
  16224. },
  16225. {
  16226. name: "Megamacro++",
  16227. height: math.unit(3, "lightyears")
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(6, "feet"),
  16236. weight: math.unit(50, "kg"),
  16237. name: "front",
  16238. image: {
  16239. source: "./media/characters/shiroryu/front.svg",
  16240. extra: 1990 / 1935
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Mortal Mingling",
  16247. height: math.unit(3, "meters")
  16248. },
  16249. {
  16250. name: "Kaiju-ish",
  16251. height: math.unit(250, "meters")
  16252. },
  16253. {
  16254. name: "Somewhat Godly",
  16255. height: math.unit(400, "km"),
  16256. default: true
  16257. },
  16258. {
  16259. name: "Planetary",
  16260. height: math.unit(300, "megameters")
  16261. },
  16262. {
  16263. name: "Galaxy-dwarfing",
  16264. height: math.unit(450, "kiloparsecs")
  16265. },
  16266. {
  16267. name: "Universe Eater",
  16268. height: math.unit(150, "gigaparsecs")
  16269. },
  16270. {
  16271. name: "Almost Immeasurable",
  16272. height: math.unit(1.3e266, "yottaparsecs")
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/umeko/front.svg",
  16285. extra: 1,
  16286. bottom: 0.019
  16287. }
  16288. },
  16289. frontArmored: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Front (Armored)",
  16293. image: {
  16294. source: "./media/characters/umeko/front-armored.svg",
  16295. extra: 1,
  16296. bottom: 0.021
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Macro",
  16303. height: math.unit(220, "feet"),
  16304. default: true
  16305. },
  16306. {
  16307. name: "Guardian Dragon",
  16308. height: math.unit(50, "miles")
  16309. },
  16310. {
  16311. name: "Cosmic",
  16312. height: math.unit(800000, "miles")
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(6, "feet"),
  16321. weight: math.unit(150, "lb"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/cassidy/front.svg",
  16325. extra: 810/808,
  16326. bottom: 41/851
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Canon Height",
  16333. height: math.unit(120, "feet"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Macro+",
  16338. height: math.unit(400, "feet")
  16339. },
  16340. {
  16341. name: "Macro++",
  16342. height: math.unit(4000, "feet")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(3, "miles")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(6, "feet"),
  16355. weight: math.unit(150, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/isaac/front.svg",
  16359. extra: 896 / 815,
  16360. bottom: 0.11
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Human Size",
  16367. height: math.unit(8, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Macro",
  16372. height: math.unit(400, "feet")
  16373. },
  16374. {
  16375. name: "Megamacro",
  16376. height: math.unit(50, "miles")
  16377. },
  16378. {
  16379. name: "Canon Height",
  16380. height: math.unit(200, "AU")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6, "feet"),
  16389. weight: math.unit(72, "kg"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/sleekit/front.svg",
  16393. extra: 4693 / 4487,
  16394. bottom: 0.012
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Minimum Height",
  16401. height: math.unit(10, "meters")
  16402. },
  16403. {
  16404. name: "Smaller",
  16405. height: math.unit(25, "meters")
  16406. },
  16407. {
  16408. name: "Larger",
  16409. height: math.unit(38, "meters"),
  16410. default: true
  16411. },
  16412. {
  16413. name: "Maximum height",
  16414. height: math.unit(100, "meters")
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16420. {
  16421. front: {
  16422. height: math.unit(6, "feet"),
  16423. weight: math.unit(150, "lb"),
  16424. name: "Front",
  16425. image: {
  16426. source: "./media/characters/nillia/front.svg",
  16427. extra: 719/665,
  16428. bottom: 6/725
  16429. }
  16430. },
  16431. back: {
  16432. height: math.unit(6, "feet"),
  16433. weight: math.unit(150, "lb"),
  16434. name: "Back",
  16435. image: {
  16436. source: "./media/characters/nillia/back.svg",
  16437. extra: 705/651,
  16438. bottom: 5/710
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Canon Height",
  16445. height: math.unit(489, "feet"),
  16446. default: true
  16447. }
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16452. {
  16453. front: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Front",
  16457. image: {
  16458. source: "./media/characters/mesmyriza/front.svg",
  16459. extra: 1541/1291,
  16460. bottom: 87/1628
  16461. }
  16462. },
  16463. foot: {
  16464. height: math.unit(6 / (250 / 35), "feet"),
  16465. name: "Foot",
  16466. image: {
  16467. source: "./media/characters/mesmyriza/foot.svg"
  16468. }
  16469. },
  16470. },
  16471. [
  16472. {
  16473. name: "Macro",
  16474. height: math.unit(457, "meters"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Megamacro",
  16479. height: math.unit(8, "megameters")
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(250, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/saudade/front.svg",
  16492. extra: 1172 / 1139,
  16493. bottom: 0.035
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Micro",
  16500. height: math.unit(3, "inches")
  16501. },
  16502. {
  16503. name: "Normal",
  16504. height: math.unit(6, "feet"),
  16505. default: true
  16506. },
  16507. {
  16508. name: "Macro",
  16509. height: math.unit(50, "feet")
  16510. },
  16511. {
  16512. name: "Megamacro",
  16513. height: math.unit(2800, "feet")
  16514. },
  16515. ]
  16516. ))
  16517. characterMakers.push(() => makeCharacter(
  16518. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16519. {
  16520. front: {
  16521. height: math.unit(5 + 4 / 12, "feet"),
  16522. weight: math.unit(100, "lb"),
  16523. name: "Front",
  16524. image: {
  16525. source: "./media/characters/keireer/front.svg",
  16526. extra: 716 / 666,
  16527. bottom: 0.05
  16528. }
  16529. },
  16530. },
  16531. [
  16532. {
  16533. name: "Normal",
  16534. height: math.unit(5 + 4 / 12, "feet"),
  16535. default: true
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(5.5, "feet"),
  16544. weight: math.unit(90, "kg"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/mirja/front.svg",
  16548. extra: 1452/1262,
  16549. bottom: 67/1519
  16550. }
  16551. },
  16552. frontDressed: {
  16553. height: math.unit(5.5, "feet"),
  16554. weight: math.unit(90, "lb"),
  16555. name: "Front (Dressed)",
  16556. image: {
  16557. source: "./media/characters/mirja/dressed.svg",
  16558. extra: 1452/1262,
  16559. bottom: 67/1519
  16560. }
  16561. },
  16562. back: {
  16563. height: math.unit(6, "feet"),
  16564. weight: math.unit(90, "lb"),
  16565. name: "Back",
  16566. image: {
  16567. source: "./media/characters/mirja/back.svg",
  16568. extra: 1892/1795,
  16569. bottom: 48/1940
  16570. }
  16571. },
  16572. maw: {
  16573. height: math.unit(1.312, "feet"),
  16574. name: "Maw",
  16575. image: {
  16576. source: "./media/characters/mirja/maw.svg"
  16577. }
  16578. },
  16579. paw: {
  16580. height: math.unit(1.15, "feet"),
  16581. name: "Paw",
  16582. image: {
  16583. source: "./media/characters/mirja/paw.svg"
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "\"Incognito\"",
  16590. height: math.unit(3, "meters")
  16591. },
  16592. {
  16593. name: "Strolling Size",
  16594. height: math.unit(15, "km")
  16595. },
  16596. {
  16597. name: "Larger Strolling Size",
  16598. height: math.unit(400, "km")
  16599. },
  16600. {
  16601. name: "Preferred Size",
  16602. height: math.unit(5000, "km"),
  16603. default: true
  16604. },
  16605. {
  16606. name: "True Size",
  16607. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16608. },
  16609. ]
  16610. ))
  16611. characterMakers.push(() => makeCharacter(
  16612. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16613. {
  16614. front: {
  16615. height: math.unit(15, "feet"),
  16616. weight: math.unit(880, "kg"),
  16617. name: "Front",
  16618. image: {
  16619. source: "./media/characters/nightraver/front.svg",
  16620. extra: 2444 / 2160,
  16621. bottom: 0.027
  16622. }
  16623. },
  16624. back: {
  16625. height: math.unit(15, "feet"),
  16626. weight: math.unit(880, "kg"),
  16627. name: "Back",
  16628. image: {
  16629. source: "./media/characters/nightraver/back.svg",
  16630. extra: 2309 / 2180,
  16631. bottom: 0.005
  16632. }
  16633. },
  16634. sole: {
  16635. height: math.unit(2.878, "feet"),
  16636. name: "Sole",
  16637. image: {
  16638. source: "./media/characters/nightraver/sole.svg"
  16639. }
  16640. },
  16641. foot: {
  16642. height: math.unit(2.285, "feet"),
  16643. name: "Foot",
  16644. image: {
  16645. source: "./media/characters/nightraver/foot.svg"
  16646. }
  16647. },
  16648. maw: {
  16649. height: math.unit(2.67, "feet"),
  16650. name: "Maw",
  16651. image: {
  16652. source: "./media/characters/nightraver/maw.svg"
  16653. }
  16654. },
  16655. },
  16656. [
  16657. {
  16658. name: "Micro",
  16659. height: math.unit(1, "cm")
  16660. },
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(15, "feet"),
  16664. default: true
  16665. },
  16666. {
  16667. name: "Macro",
  16668. height: math.unit(300, "feet")
  16669. },
  16670. {
  16671. name: "Megamacro",
  16672. height: math.unit(300, "miles")
  16673. },
  16674. {
  16675. name: "Gigamacro",
  16676. height: math.unit(10000, "miles")
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16682. {
  16683. side: {
  16684. height: math.unit(2, "inches"),
  16685. weight: math.unit(5, "grams"),
  16686. name: "Side",
  16687. image: {
  16688. source: "./media/characters/arc/side.svg"
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Micro",
  16695. height: math.unit(2, "inches"),
  16696. default: true
  16697. },
  16698. ]
  16699. ))
  16700. characterMakers.push(() => makeCharacter(
  16701. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16702. {
  16703. front: {
  16704. height: math.unit(1.1938, "meters"),
  16705. weight: math.unit(54, "kg"),
  16706. name: "Front",
  16707. image: {
  16708. source: "./media/characters/nebula-shahar/front.svg",
  16709. extra: 1642 / 1436,
  16710. bottom: 0.06
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Megamicro",
  16717. height: math.unit(0.3, "mm")
  16718. },
  16719. {
  16720. name: "Micro",
  16721. height: math.unit(3, "cm")
  16722. },
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(138, "cm"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "Macro",
  16730. height: math.unit(30, "m")
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(5.24, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/shayla/front.svg",
  16743. extra: 1512 / 1414,
  16744. bottom: 0.01
  16745. }
  16746. },
  16747. back: {
  16748. height: math.unit(5.24, "feet"),
  16749. weight: math.unit(150, "lb"),
  16750. name: "Back",
  16751. image: {
  16752. source: "./media/characters/shayla/back.svg",
  16753. extra: 1512 / 1414
  16754. }
  16755. },
  16756. hand: {
  16757. height: math.unit(0.7781496062992126, "feet"),
  16758. name: "Hand",
  16759. image: {
  16760. source: "./media/characters/shayla/hand.svg"
  16761. }
  16762. },
  16763. foot: {
  16764. height: math.unit(1.4206036745406823, "feet"),
  16765. name: "Foot",
  16766. image: {
  16767. source: "./media/characters/shayla/foot.svg"
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Micro",
  16774. height: math.unit(0.32, "feet")
  16775. },
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(5.24, "feet"),
  16779. default: true
  16780. },
  16781. {
  16782. name: "Macro",
  16783. height: math.unit(492.12, "feet")
  16784. },
  16785. {
  16786. name: "Megamacro",
  16787. height: math.unit(186.41, "miles")
  16788. },
  16789. ]
  16790. ))
  16791. characterMakers.push(() => makeCharacter(
  16792. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16793. {
  16794. front: {
  16795. height: math.unit(2.2, "m"),
  16796. weight: math.unit(120, "kg"),
  16797. name: "Front",
  16798. image: {
  16799. source: "./media/characters/pia-jr/front.svg",
  16800. extra: 1000 / 970,
  16801. bottom: 0.035
  16802. }
  16803. },
  16804. hand: {
  16805. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16806. name: "Hand",
  16807. image: {
  16808. source: "./media/characters/pia-jr/hand.svg"
  16809. }
  16810. },
  16811. paw: {
  16812. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16813. name: "Paw",
  16814. image: {
  16815. source: "./media/characters/pia-jr/paw.svg"
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Micro",
  16822. height: math.unit(1.2, "cm")
  16823. },
  16824. {
  16825. name: "Normal",
  16826. height: math.unit(2.2, "m"),
  16827. default: true
  16828. },
  16829. {
  16830. name: "Macro",
  16831. height: math.unit(180, "m")
  16832. },
  16833. {
  16834. name: "Megamacro",
  16835. height: math.unit(420, "km")
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(2, "m"),
  16844. weight: math.unit(115, "kg"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/pia-sr/front.svg",
  16848. extra: 760 / 730,
  16849. bottom: 0.015
  16850. }
  16851. },
  16852. back: {
  16853. height: math.unit(2, "m"),
  16854. weight: math.unit(115, "kg"),
  16855. name: "Back",
  16856. image: {
  16857. source: "./media/characters/pia-sr/back.svg",
  16858. extra: 760 / 730,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. hand: {
  16863. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16864. name: "Hand",
  16865. image: {
  16866. source: "./media/characters/pia-sr/hand.svg"
  16867. }
  16868. },
  16869. foot: {
  16870. height: math.unit(1.83, "feet"),
  16871. name: "Foot",
  16872. image: {
  16873. source: "./media/characters/pia-sr/foot.svg"
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Micro",
  16880. height: math.unit(88, "mm")
  16881. },
  16882. {
  16883. name: "Normal",
  16884. height: math.unit(2, "m"),
  16885. default: true
  16886. },
  16887. {
  16888. name: "Macro",
  16889. height: math.unit(200, "m")
  16890. },
  16891. {
  16892. name: "Megamacro",
  16893. height: math.unit(420, "km")
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(8 + 2 / 12, "feet"),
  16902. weight: math.unit(300, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/kibibyte/front.svg",
  16906. extra: 2221 / 2098,
  16907. bottom: 0.04
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(8 + 2 / 12, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Socialable Macro",
  16919. height: math.unit(50, "feet")
  16920. },
  16921. {
  16922. name: "Macro",
  16923. height: math.unit(300, "feet")
  16924. },
  16925. {
  16926. name: "Megamacro",
  16927. height: math.unit(500, "miles")
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16933. {
  16934. front: {
  16935. height: math.unit(6, "feet"),
  16936. weight: math.unit(150, "lb"),
  16937. name: "Front",
  16938. image: {
  16939. source: "./media/characters/felix/front.svg",
  16940. extra: 762 / 722,
  16941. bottom: 0.02
  16942. }
  16943. },
  16944. frontClothed: {
  16945. height: math.unit(6, "feet"),
  16946. weight: math.unit(150, "lb"),
  16947. name: "Front (Clothed)",
  16948. image: {
  16949. source: "./media/characters/felix/front-clothed.svg",
  16950. extra: 762 / 722,
  16951. bottom: 0.02
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Normal",
  16958. height: math.unit(6 + 8 / 12, "feet"),
  16959. default: true
  16960. },
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(2600, "feet")
  16964. },
  16965. {
  16966. name: "Megamacro",
  16967. height: math.unit(450, "miles")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6 + 1 / 12, "feet"),
  16976. weight: math.unit(250, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/tobo/front.svg",
  16980. extra: 608 / 586,
  16981. bottom: 0.023
  16982. }
  16983. },
  16984. back: {
  16985. height: math.unit(6 + 1 / 12, "feet"),
  16986. weight: math.unit(250, "lb"),
  16987. name: "Back",
  16988. image: {
  16989. source: "./media/characters/tobo/back.svg",
  16990. extra: 608 / 586
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Nano",
  16997. height: math.unit(2, "nm")
  16998. },
  16999. {
  17000. name: "Megamicro",
  17001. height: math.unit(0.1, "mm")
  17002. },
  17003. {
  17004. name: "Micro",
  17005. height: math.unit(1, "inch"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Human-sized",
  17010. height: math.unit(6 + 1 / 12, "feet")
  17011. },
  17012. {
  17013. name: "Macro",
  17014. height: math.unit(250, "feet")
  17015. },
  17016. {
  17017. name: "Megamacro",
  17018. height: math.unit(75, "miles")
  17019. },
  17020. {
  17021. name: "Texas-sized",
  17022. height: math.unit(750, "miles")
  17023. },
  17024. {
  17025. name: "Teramacro",
  17026. height: math.unit(50000, "miles")
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(269, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/danny-kapowsky/front.svg",
  17039. extra: 766 / 736,
  17040. bottom: 0.044
  17041. }
  17042. },
  17043. back: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(269, "lb"),
  17046. name: "Back",
  17047. image: {
  17048. source: "./media/characters/danny-kapowsky/back.svg",
  17049. extra: 797 / 760,
  17050. bottom: 0.025
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Macro",
  17057. height: math.unit(150, "feet"),
  17058. default: true
  17059. },
  17060. {
  17061. name: "Macro+",
  17062. height: math.unit(200, "feet")
  17063. },
  17064. {
  17065. name: "Macro++",
  17066. height: math.unit(300, "feet")
  17067. },
  17068. {
  17069. name: "Macro+++",
  17070. height: math.unit(400, "feet")
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17076. {
  17077. side: {
  17078. height: math.unit(6, "feet"),
  17079. weight: math.unit(170, "lb"),
  17080. name: "Side",
  17081. image: {
  17082. source: "./media/characters/finn/side.svg",
  17083. extra: 1953 / 1807,
  17084. bottom: 0.057
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Megamacro",
  17091. height: math.unit(14445, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(5 + 6 / 12, "feet"),
  17101. weight: math.unit(125, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/roy/front.svg",
  17105. extra: 1,
  17106. bottom: 0.11
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Micro",
  17113. height: math.unit(3, "inches"),
  17114. default: true
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(5 + 6 / 12, "feet")
  17119. },
  17120. {
  17121. name: "Lesser Macro",
  17122. height: math.unit(60, "feet")
  17123. },
  17124. {
  17125. name: "Greater Macro",
  17126. height: math.unit(120, "feet")
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(6, "feet"),
  17135. weight: math.unit(100, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/aevsivs/front.svg",
  17139. extra: 1,
  17140. bottom: 0.03
  17141. }
  17142. },
  17143. back: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(100, "lb"),
  17146. name: "Back",
  17147. image: {
  17148. source: "./media/characters/aevsivs/back.svg"
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Micro",
  17155. height: math.unit(2, "inches"),
  17156. default: true
  17157. },
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(5, "feet")
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(5 + 7 / 12, "feet"),
  17169. weight: math.unit(159, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/hildegard/front.svg",
  17173. extra: 289 / 269,
  17174. bottom: 7.63 / 297.8
  17175. }
  17176. },
  17177. back: {
  17178. height: math.unit(5 + 7 / 12, "feet"),
  17179. weight: math.unit(159, "lb"),
  17180. name: "Back",
  17181. image: {
  17182. source: "./media/characters/hildegard/back.svg",
  17183. extra: 280 / 260,
  17184. bottom: 2.3 / 282
  17185. }
  17186. },
  17187. },
  17188. [
  17189. {
  17190. name: "Normal",
  17191. height: math.unit(5 + 7 / 12, "feet"),
  17192. default: true
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17198. {
  17199. bernard: {
  17200. height: math.unit(2 + 7 / 12, "feet"),
  17201. weight: math.unit(66, "lb"),
  17202. name: "Bernard",
  17203. rename: true,
  17204. image: {
  17205. source: "./media/characters/bernard-wilder/bernard.svg",
  17206. extra: 192 / 128,
  17207. bottom: 0.05
  17208. }
  17209. },
  17210. wilder: {
  17211. height: math.unit(5 + 8 / 12, "feet"),
  17212. weight: math.unit(143, "lb"),
  17213. name: "Wilder",
  17214. rename: true,
  17215. image: {
  17216. source: "./media/characters/bernard-wilder/wilder.svg",
  17217. extra: 361 / 312,
  17218. bottom: 0.02
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(2 + 7 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17232. {
  17233. anthro: {
  17234. height: math.unit(6 + 1 / 12, "feet"),
  17235. weight: math.unit(155, "lb"),
  17236. name: "Anthro",
  17237. image: {
  17238. source: "./media/characters/hearth/anthro.svg",
  17239. extra: 1178/1136,
  17240. bottom: 28/1206
  17241. }
  17242. },
  17243. feral: {
  17244. height: math.unit(3.78, "feet"),
  17245. weight: math.unit(35, "kg"),
  17246. name: "Feral",
  17247. image: {
  17248. source: "./media/characters/hearth/feral.svg",
  17249. extra: 153 / 135,
  17250. bottom: 0.03
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(6 + 1 / 12, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(6, "feet"),
  17267. weight: math.unit(182, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/ingrid/front.svg",
  17271. extra: 294 / 268,
  17272. bottom: 0.027
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(6, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17286. {
  17287. eevee: {
  17288. height: math.unit(2 + 10 / 12, "feet"),
  17289. weight: math.unit(86, "lb"),
  17290. name: "Malgam",
  17291. image: {
  17292. source: "./media/characters/malgam/eevee.svg",
  17293. extra: 952/784,
  17294. bottom: 38/990
  17295. }
  17296. },
  17297. sylveon: {
  17298. height: math.unit(4, "feet"),
  17299. weight: math.unit(101, "lb"),
  17300. name: "Future Malgam",
  17301. rename: true,
  17302. image: {
  17303. source: "./media/characters/malgam/sylveon.svg",
  17304. extra: 371 / 325,
  17305. bottom: 0.015
  17306. }
  17307. },
  17308. gigantamax: {
  17309. height: math.unit(50, "feet"),
  17310. name: "Gigantamax Malgam",
  17311. rename: true,
  17312. image: {
  17313. source: "./media/characters/malgam/gigantamax.svg"
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(2 + 10 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 11 / 12, "feet"),
  17330. weight: math.unit(188, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/fleur/front.svg",
  17334. extra: 309 / 283,
  17335. bottom: 0.007
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(5 + 11 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(5 + 4 / 12, "feet"),
  17352. weight: math.unit(122, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/jude/front.svg",
  17356. extra: 288 / 273,
  17357. bottom: 0.03
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(5 + 4 / 12, "feet"),
  17365. default: true
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(5 + 11 / 12, "feet"),
  17374. weight: math.unit(190, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/seara/front.svg",
  17378. extra: 1,
  17379. bottom: 0.05
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(5 + 11 / 12, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(16 + 5 / 12, "feet"),
  17396. weight: math.unit(524, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/caspian-lugia/front.svg",
  17400. extra: 1,
  17401. bottom: 0.04
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(16 + 5 / 12, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(5 + 7 / 12, "feet"),
  17418. weight: math.unit(170, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/mika/front.svg",
  17422. extra: 1,
  17423. bottom: 0.016
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(5 + 7 / 12, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6 + 2 / 12, "feet"),
  17440. weight: math.unit(268, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/sol/front.svg",
  17444. extra: 247 / 231,
  17445. bottom: 0.05
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(6 + 2 / 12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17459. {
  17460. buizel: {
  17461. height: math.unit(2 + 5 / 12, "feet"),
  17462. weight: math.unit(87, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/umiko/buizel.svg",
  17466. extra: 172 / 157,
  17467. bottom: 0.01
  17468. },
  17469. form: "buizel",
  17470. default: true
  17471. },
  17472. floatzel: {
  17473. height: math.unit(5 + 9 / 12, "feet"),
  17474. weight: math.unit(250, "lb"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/umiko/floatzel.svg",
  17478. extra: 1076/1006,
  17479. bottom: 15/1091
  17480. },
  17481. form: "floatzel",
  17482. default: true
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(2 + 5 / 12, "feet"),
  17489. form: "buizel",
  17490. default: true
  17491. },
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(5 + 9 / 12, "feet"),
  17495. form: "floatzel",
  17496. default: true
  17497. },
  17498. ],
  17499. {
  17500. "buizel": {
  17501. name: "Buizel"
  17502. },
  17503. "floatzel": {
  17504. name: "Floatzel",
  17505. default: true
  17506. }
  17507. }
  17508. ))
  17509. characterMakers.push(() => makeCharacter(
  17510. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17511. {
  17512. front: {
  17513. height: math.unit(6 + 2 / 12, "feet"),
  17514. weight: math.unit(146, "lb"),
  17515. name: "Front",
  17516. image: {
  17517. source: "./media/characters/iliac/front.svg",
  17518. extra: 389 / 365,
  17519. bottom: 0.035
  17520. }
  17521. },
  17522. },
  17523. [
  17524. {
  17525. name: "Normal",
  17526. height: math.unit(6 + 2 / 12, "feet"),
  17527. default: true
  17528. },
  17529. ]
  17530. ))
  17531. characterMakers.push(() => makeCharacter(
  17532. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17533. {
  17534. front: {
  17535. height: math.unit(6, "feet"),
  17536. weight: math.unit(170, "lb"),
  17537. name: "Front",
  17538. image: {
  17539. source: "./media/characters/topaz/front.svg",
  17540. extra: 317 / 303,
  17541. bottom: 0.055
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(6, "feet"),
  17549. default: true
  17550. },
  17551. ]
  17552. ))
  17553. characterMakers.push(() => makeCharacter(
  17554. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17555. {
  17556. front: {
  17557. height: math.unit(5 + 11 / 12, "feet"),
  17558. weight: math.unit(144, "lb"),
  17559. name: "Front",
  17560. image: {
  17561. source: "./media/characters/gabriel/front.svg",
  17562. extra: 285 / 262,
  17563. bottom: 0.004
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(5 + 11 / 12, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17577. {
  17578. side: {
  17579. height: math.unit(6 + 5 / 12, "feet"),
  17580. weight: math.unit(300, "lb"),
  17581. name: "Side",
  17582. image: {
  17583. source: "./media/characters/tempest-suicune/side.svg",
  17584. extra: 195 / 154,
  17585. bottom: 0.04
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(6 + 5 / 12, "feet"),
  17593. default: true
  17594. },
  17595. ]
  17596. ))
  17597. characterMakers.push(() => makeCharacter(
  17598. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17599. {
  17600. front: {
  17601. height: math.unit(7 + 2 / 12, "feet"),
  17602. weight: math.unit(322, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/vulcan/front.svg",
  17606. extra: 154 / 147,
  17607. bottom: 0.04
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(7 + 2 / 12, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17621. {
  17622. front: {
  17623. height: math.unit(5 + 10 / 12, "feet"),
  17624. weight: math.unit(264, "lb"),
  17625. name: "Front",
  17626. image: {
  17627. source: "./media/characters/gault/front.svg",
  17628. extra: 161 / 140,
  17629. bottom: 0.028
  17630. }
  17631. },
  17632. },
  17633. [
  17634. {
  17635. name: "Normal",
  17636. height: math.unit(5 + 10 / 12, "feet"),
  17637. default: true
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17643. {
  17644. front: {
  17645. height: math.unit(6, "feet"),
  17646. weight: math.unit(150, "lb"),
  17647. name: "Front",
  17648. image: {
  17649. source: "./media/characters/shard/front.svg",
  17650. extra: 273 / 238,
  17651. bottom: 0.02
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(3 + 6 / 12, "feet"),
  17659. default: true
  17660. },
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(5 + 11 / 12, "feet"),
  17668. weight: math.unit(146, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/ashe/front.svg",
  17672. extra: 400 / 373,
  17673. bottom: 0.01
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(5 + 11 / 12, "feet"),
  17681. default: true
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(5 + 5 / 12, "feet"),
  17690. weight: math.unit(135, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/beatrix/front.svg",
  17694. extra: 392 / 379,
  17695. bottom: 0.01
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(6, "feet"),
  17703. default: true
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(6 + 2/12, "feet"),
  17712. weight: math.unit(135, "lb"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/ignatius/front.svg",
  17716. extra: 1380/1259,
  17717. bottom: 27/1407
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(6 + 2/12, "feet"),
  17725. default: true
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(6 + 2 / 12, "feet"),
  17734. weight: math.unit(138, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/mei-li/front.svg",
  17738. extra: 237 / 229,
  17739. bottom: 0.03
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(6 + 2 / 12, "feet"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(2 + 4 / 12, "feet"),
  17756. weight: math.unit(62, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/puru/front.svg",
  17760. extra: 206 / 149,
  17761. bottom: 0.06
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(2 + 4 / 12, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17775. {
  17776. anthro: {
  17777. height: math.unit(5 + 8/12, "feet"),
  17778. weight: math.unit(200, "lb"),
  17779. energyNeed: math.unit(2000, "kcal"),
  17780. name: "Anthro",
  17781. image: {
  17782. source: "./media/characters/kee/anthro.svg",
  17783. extra: 3251/3184,
  17784. bottom: 250/3501
  17785. }
  17786. },
  17787. taur: {
  17788. height: math.unit(11, "feet"),
  17789. weight: math.unit(500, "lb"),
  17790. energyNeed: math.unit(5000, "kcal"),
  17791. name: "Taur",
  17792. image: {
  17793. source: "./media/characters/kee/taur.svg",
  17794. extra: 1362/1320,
  17795. bottom: 83/1445
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(5 + 8/12, "feet"),
  17803. default: true
  17804. },
  17805. {
  17806. name: "Macro",
  17807. height: math.unit(35, "feet")
  17808. },
  17809. ]
  17810. ))
  17811. characterMakers.push(() => makeCharacter(
  17812. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17813. {
  17814. anthro: {
  17815. height: math.unit(7, "feet"),
  17816. weight: math.unit(190, "lb"),
  17817. name: "Anthro",
  17818. image: {
  17819. source: "./media/characters/cobalt-dracha/anthro.svg",
  17820. extra: 231 / 225,
  17821. bottom: 0.04
  17822. }
  17823. },
  17824. feral: {
  17825. height: math.unit(9 + 7 / 12, "feet"),
  17826. weight: math.unit(294, "lb"),
  17827. name: "Feral",
  17828. image: {
  17829. source: "./media/characters/cobalt-dracha/feral.svg",
  17830. extra: 692 / 633,
  17831. bottom: 0.05
  17832. }
  17833. },
  17834. },
  17835. [
  17836. {
  17837. name: "Normal",
  17838. height: math.unit(7, "feet"),
  17839. default: true
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17845. {
  17846. fallen: {
  17847. height: math.unit(11 + 8 / 12, "feet"),
  17848. weight: math.unit(485, "lb"),
  17849. name: "Java (Fallen)",
  17850. rename: true,
  17851. image: {
  17852. source: "./media/characters/java/fallen.svg",
  17853. extra: 226 / 208,
  17854. bottom: 0.005
  17855. }
  17856. },
  17857. godkin: {
  17858. height: math.unit(10 + 6 / 12, "feet"),
  17859. weight: math.unit(328, "lb"),
  17860. name: "Java (Godkin)",
  17861. rename: true,
  17862. image: {
  17863. source: "./media/characters/java/godkin.svg",
  17864. extra: 1104/1068,
  17865. bottom: 36/1140
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(11 + 8 / 12, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(5 + 9 / 12, "feet"),
  17882. weight: math.unit(170, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/purna/front.svg",
  17886. extra: 239 / 229,
  17887. bottom: 0.01
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(5 + 9 / 12, "feet"),
  17895. default: true
  17896. },
  17897. ]
  17898. ))
  17899. characterMakers.push(() => makeCharacter(
  17900. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17901. {
  17902. front: {
  17903. height: math.unit(5 + 9 / 12, "feet"),
  17904. weight: math.unit(142, "lb"),
  17905. name: "Front",
  17906. image: {
  17907. source: "./media/characters/kuva/front.svg",
  17908. extra: 281 / 271,
  17909. bottom: 0.006
  17910. }
  17911. },
  17912. },
  17913. [
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(5 + 9 / 12, "feet"),
  17917. default: true
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17923. {
  17924. anthro: {
  17925. height: math.unit(9 + 2 / 12, "feet"),
  17926. weight: math.unit(270, "lb"),
  17927. name: "Anthro",
  17928. image: {
  17929. source: "./media/characters/embra/anthro.svg",
  17930. extra: 200 / 187,
  17931. bottom: 0.02
  17932. }
  17933. },
  17934. feral: {
  17935. height: math.unit(18 + 8 / 12, "feet"),
  17936. weight: math.unit(576, "lb"),
  17937. name: "Feral",
  17938. image: {
  17939. source: "./media/characters/embra/feral.svg",
  17940. extra: 152 / 137,
  17941. bottom: 0.037
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(9 + 2 / 12, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17955. {
  17956. anthro: {
  17957. height: math.unit(10 + 9 / 12, "feet"),
  17958. weight: math.unit(224, "lb"),
  17959. name: "Anthro",
  17960. image: {
  17961. source: "./media/characters/grottos/anthro.svg",
  17962. extra: 350 / 332,
  17963. bottom: 0.045
  17964. }
  17965. },
  17966. feral: {
  17967. height: math.unit(20 + 7 / 12, "feet"),
  17968. weight: math.unit(629, "lb"),
  17969. name: "Feral",
  17970. image: {
  17971. source: "./media/characters/grottos/feral.svg",
  17972. extra: 207 / 190,
  17973. bottom: 0.05
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(10 + 9 / 12, "feet"),
  17981. default: true
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17987. {
  17988. anthro: {
  17989. height: math.unit(9 + 6 / 12, "feet"),
  17990. weight: math.unit(298, "lb"),
  17991. name: "Anthro",
  17992. image: {
  17993. source: "./media/characters/frifna/anthro.svg",
  17994. extra: 282 / 269,
  17995. bottom: 0.015
  17996. }
  17997. },
  17998. feral: {
  17999. height: math.unit(16 + 2 / 12, "feet"),
  18000. weight: math.unit(624, "lb"),
  18001. name: "Feral",
  18002. image: {
  18003. source: "./media/characters/frifna/feral.svg"
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(9 + 6 / 12, "feet"),
  18011. default: true
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(6 + 2 / 12, "feet"),
  18020. weight: math.unit(168, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/elise/front.svg",
  18024. extra: 276 / 271
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(6 + 2 / 12, "feet"),
  18032. default: true
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  18038. {
  18039. front: {
  18040. height: math.unit(5 + 10 / 12, "feet"),
  18041. weight: math.unit(210, "lb"),
  18042. name: "Front",
  18043. image: {
  18044. source: "./media/characters/glade/front.svg",
  18045. extra: 258 / 247,
  18046. bottom: 0.008
  18047. }
  18048. },
  18049. },
  18050. [
  18051. {
  18052. name: "Normal",
  18053. height: math.unit(5 + 10 / 12, "feet"),
  18054. default: true
  18055. },
  18056. ]
  18057. ))
  18058. characterMakers.push(() => makeCharacter(
  18059. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18060. {
  18061. front: {
  18062. height: math.unit(5 + 10 / 12, "feet"),
  18063. weight: math.unit(129, "lb"),
  18064. name: "Front",
  18065. image: {
  18066. source: "./media/characters/rina/front.svg",
  18067. extra: 266 / 255,
  18068. bottom: 0.005
  18069. }
  18070. },
  18071. },
  18072. [
  18073. {
  18074. name: "Normal",
  18075. height: math.unit(5 + 10 / 12, "feet"),
  18076. default: true
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(6 + 1 / 12, "feet"),
  18085. weight: math.unit(192, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/veronica/front.svg",
  18089. extra: 319 / 309,
  18090. bottom: 0.005
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(6 + 1 / 12, "feet"),
  18098. default: true
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(9 + 3 / 12, "feet"),
  18107. weight: math.unit(1100, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/braxton/front.svg",
  18111. extra: 1057 / 984,
  18112. bottom: 0.05
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Normal",
  18119. height: math.unit(9 + 3 / 12, "feet")
  18120. },
  18121. {
  18122. name: "Giant",
  18123. height: math.unit(300, "feet"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(700, "feet")
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(6000, "feet")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6 + 7 / 12, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/blue-feyonics/front.svg",
  18145. extra: 1403 / 1306,
  18146. bottom: 0.047
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Normal",
  18153. height: math.unit(6 + 7 / 12, "feet"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(1.8, "meters"),
  18163. weight: math.unit(60, "kg"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/maxwell/front.svg",
  18167. extra: 2060 / 1873
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Micro",
  18174. height: math.unit(1, "mm")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(1.8, "meter"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(30, "meters")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(10, "km")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6, "feet"),
  18196. weight: math.unit(150, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/jack/front.svg",
  18200. extra: 1754 / 1640,
  18201. bottom: 0.01
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Normal",
  18208. height: math.unit(80000, "feet"),
  18209. default: true
  18210. },
  18211. {
  18212. name: "Max size",
  18213. height: math.unit(10, "lightyears")
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18219. {
  18220. urban: {
  18221. height: math.unit(5, "feet"),
  18222. weight: math.unit(240, "lb"),
  18223. name: "Urban",
  18224. image: {
  18225. source: "./media/characters/cafat/urban.svg",
  18226. extra: 1223/1126,
  18227. bottom: 205/1428
  18228. }
  18229. },
  18230. summer: {
  18231. height: math.unit(5, "feet"),
  18232. weight: math.unit(240, "lb"),
  18233. name: "Summer",
  18234. image: {
  18235. source: "./media/characters/cafat/summer.svg",
  18236. extra: 1223/1126,
  18237. bottom: 205/1428
  18238. }
  18239. },
  18240. winter: {
  18241. height: math.unit(5, "feet"),
  18242. weight: math.unit(240, "lb"),
  18243. name: "Winter",
  18244. image: {
  18245. source: "./media/characters/cafat/winter.svg",
  18246. extra: 1223/1126,
  18247. bottom: 205/1428
  18248. }
  18249. },
  18250. lingerie: {
  18251. height: math.unit(5, "feet"),
  18252. weight: math.unit(240, "lb"),
  18253. name: "Lingerie",
  18254. image: {
  18255. source: "./media/characters/cafat/lingerie.svg",
  18256. extra: 1223/1126,
  18257. bottom: 205/1428
  18258. }
  18259. },
  18260. upright: {
  18261. height: math.unit(6.3, "feet"),
  18262. weight: math.unit(240, "lb"),
  18263. name: "Upright",
  18264. image: {
  18265. source: "./media/characters/cafat/upright.svg",
  18266. bottom: 0.01
  18267. }
  18268. },
  18269. uprightFull: {
  18270. height: math.unit(6.3, "feet"),
  18271. weight: math.unit(240, "lb"),
  18272. name: "Upright (Full)",
  18273. image: {
  18274. source: "./media/characters/cafat/upright-full.svg",
  18275. bottom: 0.01
  18276. }
  18277. },
  18278. },
  18279. [
  18280. {
  18281. name: "Small",
  18282. height: math.unit(4, "feet"),
  18283. default: true
  18284. },
  18285. {
  18286. name: "Large",
  18287. height: math.unit(13, "feet")
  18288. },
  18289. ]
  18290. ))
  18291. characterMakers.push(() => makeCharacter(
  18292. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18293. {
  18294. front: {
  18295. height: math.unit(6, "feet"),
  18296. weight: math.unit(150, "lb"),
  18297. name: "Front",
  18298. image: {
  18299. source: "./media/characters/verin-raharra/front.svg",
  18300. extra: 5019 / 4835,
  18301. bottom: 0.023
  18302. }
  18303. },
  18304. },
  18305. [
  18306. {
  18307. name: "Normal",
  18308. height: math.unit(7 + 5 / 12, "feet"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Upsized",
  18313. height: math.unit(20, "feet")
  18314. },
  18315. ]
  18316. ))
  18317. characterMakers.push(() => makeCharacter(
  18318. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18319. {
  18320. front: {
  18321. height: math.unit(7, "feet"),
  18322. weight: math.unit(230, "lb"),
  18323. name: "Front",
  18324. image: {
  18325. source: "./media/characters/nakata/front.svg",
  18326. extra: 1.005,
  18327. bottom: 0.01
  18328. }
  18329. },
  18330. },
  18331. [
  18332. {
  18333. name: "Normal",
  18334. height: math.unit(7, "feet"),
  18335. default: true
  18336. },
  18337. {
  18338. name: "Big",
  18339. height: math.unit(14, "feet")
  18340. },
  18341. {
  18342. name: "Macro",
  18343. height: math.unit(400, "feet")
  18344. },
  18345. ]
  18346. ))
  18347. characterMakers.push(() => makeCharacter(
  18348. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18349. {
  18350. front: {
  18351. height: math.unit(4.91, "feet"),
  18352. weight: math.unit(100, "lb"),
  18353. name: "Front",
  18354. image: {
  18355. source: "./media/characters/lily/front.svg",
  18356. extra: 1585 / 1415,
  18357. bottom: 0.02
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(4.91, "feet"),
  18365. default: true
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18371. {
  18372. laying: {
  18373. height: math.unit(4 + 4 / 12, "feet"),
  18374. weight: math.unit(600, "lb"),
  18375. name: "Laying",
  18376. image: {
  18377. source: "./media/characters/sheila/laying.svg",
  18378. extra: 1333 / 1265,
  18379. bottom: 0.16
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(4 + 4 / 12, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(6, "feet"),
  18396. weight: math.unit(190, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/sax/front.svg",
  18400. extra: 1187 / 973,
  18401. bottom: 0.042
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Micro",
  18408. height: math.unit(4, "inches"),
  18409. default: true
  18410. },
  18411. ]
  18412. ))
  18413. characterMakers.push(() => makeCharacter(
  18414. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18415. {
  18416. front: {
  18417. height: math.unit(6, "feet"),
  18418. weight: math.unit(150, "lb"),
  18419. name: "Front",
  18420. image: {
  18421. source: "./media/characters/pandora/front.svg",
  18422. extra: 2720 / 2556,
  18423. bottom: 0.015
  18424. }
  18425. },
  18426. back: {
  18427. height: math.unit(6, "feet"),
  18428. weight: math.unit(150, "lb"),
  18429. name: "Back",
  18430. image: {
  18431. source: "./media/characters/pandora/back.svg",
  18432. extra: 2720 / 2556,
  18433. bottom: 0.01
  18434. }
  18435. },
  18436. beans: {
  18437. height: math.unit(6 / 8, "feet"),
  18438. name: "Beans",
  18439. image: {
  18440. source: "./media/characters/pandora/beans.svg"
  18441. }
  18442. },
  18443. collar: {
  18444. height: math.unit(0.31, "feet"),
  18445. name: "Collar",
  18446. image: {
  18447. source: "./media/characters/pandora/collar.svg"
  18448. }
  18449. },
  18450. skirt: {
  18451. height: math.unit(6, "feet"),
  18452. weight: math.unit(150, "lb"),
  18453. name: "Skirt",
  18454. image: {
  18455. source: "./media/characters/pandora/skirt.svg",
  18456. extra: 1622 / 1525,
  18457. bottom: 0.015
  18458. }
  18459. },
  18460. hoodie: {
  18461. height: math.unit(6, "feet"),
  18462. weight: math.unit(150, "lb"),
  18463. name: "Hoodie",
  18464. image: {
  18465. source: "./media/characters/pandora/hoodie.svg",
  18466. extra: 1622 / 1525,
  18467. bottom: 0.015
  18468. }
  18469. },
  18470. casual: {
  18471. height: math.unit(6, "feet"),
  18472. weight: math.unit(150, "lb"),
  18473. name: "Casual",
  18474. image: {
  18475. source: "./media/characters/pandora/casual.svg",
  18476. extra: 1622 / 1525,
  18477. bottom: 0.015
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(6, "feet")
  18485. },
  18486. {
  18487. name: "Big Steppy",
  18488. height: math.unit(1, "km"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Galactic Steppy",
  18493. height: math.unit(2, "gigameters")
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18499. {
  18500. side: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(800, "kg"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/venio-darcony/side.svg",
  18506. extra: 1373 / 1003,
  18507. bottom: 0.037
  18508. }
  18509. },
  18510. front: {
  18511. height: math.unit(19, "feet"),
  18512. weight: math.unit(800, "kg"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/venio-darcony/front.svg"
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(19, "feet"),
  18520. weight: math.unit(800, "kg"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/venio-darcony/back.svg"
  18524. }
  18525. },
  18526. sideNsfw: {
  18527. height: math.unit(10, "feet"),
  18528. weight: math.unit(800, "kg"),
  18529. name: "Side (NSFW)",
  18530. image: {
  18531. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18532. extra: 1373 / 1003,
  18533. bottom: 0.037
  18534. }
  18535. },
  18536. frontNsfw: {
  18537. height: math.unit(19, "feet"),
  18538. weight: math.unit(800, "kg"),
  18539. name: "Front (NSFW)",
  18540. image: {
  18541. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18542. }
  18543. },
  18544. backNsfw: {
  18545. height: math.unit(19, "feet"),
  18546. weight: math.unit(800, "kg"),
  18547. name: "Back (NSFW)",
  18548. image: {
  18549. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18550. }
  18551. },
  18552. sideArmored: {
  18553. height: math.unit(10, "feet"),
  18554. weight: math.unit(800, "kg"),
  18555. name: "Side (Armored)",
  18556. image: {
  18557. source: "./media/characters/venio-darcony/side-armored.svg",
  18558. extra: 1373 / 1003,
  18559. bottom: 0.037
  18560. }
  18561. },
  18562. frontArmored: {
  18563. height: math.unit(19, "feet"),
  18564. weight: math.unit(900, "kg"),
  18565. name: "Front (Armored)",
  18566. image: {
  18567. source: "./media/characters/venio-darcony/front-armored.svg"
  18568. }
  18569. },
  18570. backArmored: {
  18571. height: math.unit(19, "feet"),
  18572. weight: math.unit(900, "kg"),
  18573. name: "Back (Armored)",
  18574. image: {
  18575. source: "./media/characters/venio-darcony/back-armored.svg"
  18576. }
  18577. },
  18578. sword: {
  18579. height: math.unit(10, "feet"),
  18580. weight: math.unit(50, "lb"),
  18581. name: "Sword",
  18582. image: {
  18583. source: "./media/characters/venio-darcony/sword.svg"
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Normal",
  18590. height: math.unit(10, "feet")
  18591. },
  18592. {
  18593. name: "Macro",
  18594. height: math.unit(130, "feet"),
  18595. default: true
  18596. },
  18597. {
  18598. name: "Macro+",
  18599. height: math.unit(240, "feet")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(6, "feet"),
  18608. weight: math.unit(150, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/veski/front.svg",
  18612. extra: 1299 / 1225,
  18613. bottom: 0.04
  18614. }
  18615. },
  18616. back: {
  18617. height: math.unit(6, "feet"),
  18618. weight: math.unit(150, "lb"),
  18619. name: "Back",
  18620. image: {
  18621. source: "./media/characters/veski/back.svg",
  18622. extra: 1299 / 1225,
  18623. bottom: 0.008
  18624. }
  18625. },
  18626. maw: {
  18627. height: math.unit(1.5 * 1.21, "feet"),
  18628. name: "Maw",
  18629. image: {
  18630. source: "./media/characters/veski/maw.svg"
  18631. }
  18632. },
  18633. },
  18634. [
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(2, "km"),
  18638. default: true
  18639. },
  18640. ]
  18641. ))
  18642. characterMakers.push(() => makeCharacter(
  18643. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18644. {
  18645. front: {
  18646. height: math.unit(5 + 7 / 12, "feet"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/isabelle/front.svg",
  18650. extra: 2130 / 1976,
  18651. bottom: 0.05
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Supermicro",
  18658. height: math.unit(10, "micrometers")
  18659. },
  18660. {
  18661. name: "Micro",
  18662. height: math.unit(1, "inch")
  18663. },
  18664. {
  18665. name: "Tiny",
  18666. height: math.unit(5, "inches")
  18667. },
  18668. {
  18669. name: "Standard",
  18670. height: math.unit(5 + 7 / 12, "inches")
  18671. },
  18672. {
  18673. name: "Macro",
  18674. height: math.unit(80, "meters"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Megamacro",
  18679. height: math.unit(250, "meters")
  18680. },
  18681. {
  18682. name: "Gigamacro",
  18683. height: math.unit(5, "km")
  18684. },
  18685. {
  18686. name: "Cosmic",
  18687. height: math.unit(2.5e6, "miles")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6, "feet"),
  18696. weight: math.unit(150, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/hanzo/front.svg",
  18700. extra: 374 / 344,
  18701. bottom: 0.02
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(8, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(7, "feet"),
  18718. weight: math.unit(130, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/anna/front.svg",
  18722. extra: 169 / 145,
  18723. bottom: 0.06
  18724. }
  18725. },
  18726. full: {
  18727. height: math.unit(4.96, "feet"),
  18728. weight: math.unit(220, "lb"),
  18729. name: "Full",
  18730. image: {
  18731. source: "./media/characters/anna/full.svg",
  18732. extra: 138 / 114,
  18733. bottom: 0.15
  18734. }
  18735. },
  18736. tongue: {
  18737. height: math.unit(2.53, "feet"),
  18738. name: "Tongue",
  18739. image: {
  18740. source: "./media/characters/anna/tongue.svg"
  18741. }
  18742. },
  18743. },
  18744. [
  18745. {
  18746. name: "Normal",
  18747. height: math.unit(7, "feet"),
  18748. default: true
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(7 + 1/12, "feet"),
  18757. weight: math.unit(150, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/ian-corvid/front.svg",
  18761. extra: 621/591,
  18762. bottom: 14/635
  18763. }
  18764. },
  18765. back: {
  18766. height: math.unit(7 + 1/12, "feet"),
  18767. weight: math.unit(150, "lb"),
  18768. name: "Back",
  18769. image: {
  18770. source: "./media/characters/ian-corvid/back.svg",
  18771. extra: 621/600,
  18772. bottom: 10/631
  18773. }
  18774. },
  18775. stomping: {
  18776. height: math.unit(7 + 1/12, "feet"),
  18777. weight: math.unit(150, "lb"),
  18778. name: "Stomping",
  18779. image: {
  18780. source: "./media/characters/ian-corvid/stomping.svg",
  18781. extra: 309/291,
  18782. bottom: 7/316
  18783. }
  18784. },
  18785. tongue: {
  18786. height: math.unit(3.9, "feet"),
  18787. name: "Tongue",
  18788. image: {
  18789. source: "./media/characters/ian-corvid/tongue.svg"
  18790. }
  18791. },
  18792. beak: {
  18793. height: math.unit(0.9, "feet"),
  18794. name: "Beak",
  18795. image: {
  18796. source: "./media/characters/ian-corvid/beak.svg"
  18797. }
  18798. },
  18799. sitting: {
  18800. height: math.unit(7 / 1.8, "feet"),
  18801. weight: math.unit(150, "lb"),
  18802. name: "Sitting",
  18803. image: {
  18804. source: "./media/characters/ian-corvid/sitting.svg",
  18805. extra: 1400 / 1269,
  18806. bottom: 0.15
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Tiny Microw",
  18813. height: math.unit(1, "inch")
  18814. },
  18815. {
  18816. name: "Microw",
  18817. height: math.unit(6, "inches")
  18818. },
  18819. {
  18820. name: "Crow",
  18821. height: math.unit(7 + 1 / 12, "feet"),
  18822. default: true
  18823. },
  18824. {
  18825. name: "Macrow",
  18826. height: math.unit(176, "feet")
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(5 + 7 / 12, "feet"),
  18835. weight: math.unit(147, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/natalie-kellon/front.svg",
  18839. extra: 1214 / 1141,
  18840. bottom: 0.02
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Micro",
  18847. height: math.unit(1 / 16, "inch")
  18848. },
  18849. {
  18850. name: "Tiny",
  18851. height: math.unit(4, "inches")
  18852. },
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(5 + 7 / 12, "feet"),
  18856. default: true
  18857. },
  18858. {
  18859. name: "Amazon",
  18860. height: math.unit(12, "feet")
  18861. },
  18862. {
  18863. name: "Giantess",
  18864. height: math.unit(160, "meters")
  18865. },
  18866. {
  18867. name: "Titaness",
  18868. height: math.unit(800, "meters")
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(150, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/alluria/front.svg",
  18881. extra: 806 / 738,
  18882. bottom: 0.01
  18883. }
  18884. },
  18885. side: {
  18886. height: math.unit(6, "feet"),
  18887. weight: math.unit(150, "lb"),
  18888. name: "Side",
  18889. image: {
  18890. source: "./media/characters/alluria/side.svg",
  18891. extra: 800 / 750,
  18892. }
  18893. },
  18894. back: {
  18895. height: math.unit(6, "feet"),
  18896. weight: math.unit(150, "lb"),
  18897. name: "Back",
  18898. image: {
  18899. source: "./media/characters/alluria/back.svg",
  18900. extra: 806 / 738,
  18901. }
  18902. },
  18903. frontMaid: {
  18904. height: math.unit(6, "feet"),
  18905. weight: math.unit(150, "lb"),
  18906. name: "Front (Maid)",
  18907. image: {
  18908. source: "./media/characters/alluria/front-maid.svg",
  18909. extra: 806 / 738,
  18910. bottom: 0.01
  18911. }
  18912. },
  18913. sideMaid: {
  18914. height: math.unit(6, "feet"),
  18915. weight: math.unit(150, "lb"),
  18916. name: "Side (Maid)",
  18917. image: {
  18918. source: "./media/characters/alluria/side-maid.svg",
  18919. extra: 800 / 750,
  18920. bottom: 0.005
  18921. }
  18922. },
  18923. backMaid: {
  18924. height: math.unit(6, "feet"),
  18925. weight: math.unit(150, "lb"),
  18926. name: "Back (Maid)",
  18927. image: {
  18928. source: "./media/characters/alluria/back-maid.svg",
  18929. extra: 806 / 738,
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Micro",
  18936. height: math.unit(6, "inches"),
  18937. default: true
  18938. },
  18939. ]
  18940. ))
  18941. characterMakers.push(() => makeCharacter(
  18942. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18943. {
  18944. front: {
  18945. height: math.unit(6, "feet"),
  18946. weight: math.unit(150, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/kyle/front.svg",
  18950. extra: 1069 / 962,
  18951. bottom: 77.228 / 1727.45
  18952. }
  18953. },
  18954. },
  18955. [
  18956. {
  18957. name: "Macro",
  18958. height: math.unit(150, "feet"),
  18959. default: true
  18960. },
  18961. ]
  18962. ))
  18963. characterMakers.push(() => makeCharacter(
  18964. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18965. {
  18966. front: {
  18967. height: math.unit(6, "feet"),
  18968. weight: math.unit(300, "lb"),
  18969. name: "Front",
  18970. image: {
  18971. source: "./media/characters/duncan/front.svg",
  18972. extra: 1650 / 1482,
  18973. bottom: 0.05
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Macro",
  18980. height: math.unit(100, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(5 + 4 / 12, "feet"),
  18990. weight: math.unit(220, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/memory/front.svg",
  18994. extra: 3641 / 3545,
  18995. bottom: 0.03
  18996. }
  18997. },
  18998. back: {
  18999. height: math.unit(5 + 4 / 12, "feet"),
  19000. weight: math.unit(220, "lb"),
  19001. name: "Back",
  19002. image: {
  19003. source: "./media/characters/memory/back.svg",
  19004. extra: 3641 / 3545,
  19005. bottom: 0.025
  19006. }
  19007. },
  19008. frontSkirt: {
  19009. height: math.unit(5 + 4 / 12, "feet"),
  19010. weight: math.unit(220, "lb"),
  19011. name: "Front (Skirt)",
  19012. image: {
  19013. source: "./media/characters/memory/front-skirt.svg",
  19014. extra: 3641 / 3545,
  19015. bottom: 0.03
  19016. }
  19017. },
  19018. frontDress: {
  19019. height: math.unit(5 + 4 / 12, "feet"),
  19020. weight: math.unit(220, "lb"),
  19021. name: "Front (Dress)",
  19022. image: {
  19023. source: "./media/characters/memory/front-dress.svg",
  19024. extra: 3641 / 3545,
  19025. bottom: 0.03
  19026. }
  19027. },
  19028. },
  19029. [
  19030. {
  19031. name: "Micro",
  19032. height: math.unit(6, "inches"),
  19033. default: true
  19034. },
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(5 + 4 / 12, "feet")
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  19043. {
  19044. front: {
  19045. height: math.unit(4 + 11 / 12, "feet"),
  19046. weight: math.unit(100, "lb"),
  19047. name: "Front",
  19048. image: {
  19049. source: "./media/characters/luno/front.svg",
  19050. extra: 1535 / 1487,
  19051. bottom: 0.03
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Micro",
  19058. height: math.unit(3, "inches")
  19059. },
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(4 + 11 / 12, "feet"),
  19063. default: true
  19064. },
  19065. {
  19066. name: "Macro",
  19067. height: math.unit(300, "feet")
  19068. },
  19069. {
  19070. name: "Megamacro",
  19071. height: math.unit(700, "miles")
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(6 + 2 / 12, "feet"),
  19080. weight: math.unit(170, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/jamesy/front.svg",
  19084. extra: 440 / 382,
  19085. bottom: 0.005
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Micro",
  19092. height: math.unit(3, "inches")
  19093. },
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(6 + 2 / 12, "feet"),
  19097. default: true
  19098. },
  19099. {
  19100. name: "Macro",
  19101. height: math.unit(300, "feet")
  19102. },
  19103. {
  19104. name: "Megamacro",
  19105. height: math.unit(700, "miles")
  19106. },
  19107. ]
  19108. ))
  19109. characterMakers.push(() => makeCharacter(
  19110. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19111. {
  19112. front: {
  19113. height: math.unit(6, "feet"),
  19114. weight: math.unit(160, "lb"),
  19115. name: "Front",
  19116. image: {
  19117. source: "./media/characters/mark/front.svg",
  19118. extra: 3300 / 3100,
  19119. bottom: 136.42 / 3440.47
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Macro",
  19126. height: math.unit(120, "meters")
  19127. },
  19128. {
  19129. name: "Bigger Macro",
  19130. height: math.unit(350, "meters")
  19131. },
  19132. {
  19133. name: "Megamacro",
  19134. height: math.unit(8, "km"),
  19135. default: true
  19136. },
  19137. {
  19138. name: "Continental",
  19139. height: math.unit(4550, "km")
  19140. },
  19141. {
  19142. name: "Planetary",
  19143. height: math.unit(65000, "km")
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(6, "feet"),
  19152. weight: math.unit(400, "lb"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/mac/front.svg",
  19156. extra: 1048 / 987.7,
  19157. bottom: 60 / 1107.6,
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(500, "feet"),
  19165. default: true
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(5 + 2 / 12, "feet"),
  19174. weight: math.unit(190, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/bari/front.svg",
  19178. extra: 3156 / 2880,
  19179. bottom: 0.03
  19180. }
  19181. },
  19182. back: {
  19183. height: math.unit(5 + 2 / 12, "feet"),
  19184. weight: math.unit(190, "lb"),
  19185. name: "Back",
  19186. image: {
  19187. source: "./media/characters/bari/back.svg",
  19188. extra: 3260 / 2834,
  19189. bottom: 0.025
  19190. }
  19191. },
  19192. frontPlush: {
  19193. height: math.unit(5 + 2 / 12, "feet"),
  19194. weight: math.unit(190, "lb"),
  19195. name: "Front (Plush)",
  19196. image: {
  19197. source: "./media/characters/bari/front-plush.svg",
  19198. extra: 1112 / 1061,
  19199. bottom: 0.002
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Micro",
  19206. height: math.unit(3, "inches")
  19207. },
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(5 + 2 / 12, "feet"),
  19211. default: true
  19212. },
  19213. {
  19214. name: "Macro",
  19215. height: math.unit(20, "feet")
  19216. },
  19217. ]
  19218. ))
  19219. characterMakers.push(() => makeCharacter(
  19220. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19221. {
  19222. front: {
  19223. height: math.unit(6 + 1 / 12, "feet"),
  19224. weight: math.unit(275, "lb"),
  19225. name: "Front",
  19226. image: {
  19227. source: "./media/characters/hunter-misha-raven/front.svg"
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Mortal",
  19234. height: math.unit(6 + 1 / 12, "feet")
  19235. },
  19236. {
  19237. name: "Divine",
  19238. height: math.unit(1.12134e34, "parsecs"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(6 + 3 / 12, "feet"),
  19248. weight: math.unit(220, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/max-calore/front.svg",
  19252. extra: 1700 / 1648,
  19253. bottom: 0.01
  19254. }
  19255. },
  19256. back: {
  19257. height: math.unit(6 + 3 / 12, "feet"),
  19258. weight: math.unit(220, "lb"),
  19259. name: "Back",
  19260. image: {
  19261. source: "./media/characters/max-calore/back.svg",
  19262. extra: 1700 / 1648,
  19263. bottom: 0.01
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(6 + 3 / 12, "feet"),
  19271. default: true
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19277. {
  19278. side: {
  19279. height: math.unit(2 + 8 / 12, "feet"),
  19280. weight: math.unit(99, "lb"),
  19281. name: "Side",
  19282. image: {
  19283. source: "./media/characters/aspen/side.svg",
  19284. extra: 152 / 138,
  19285. bottom: 0.032
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(2 + 8 / 12, "feet"),
  19293. default: true
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19299. {
  19300. side: {
  19301. height: math.unit(3 + 2 / 12, "feet"),
  19302. weight: math.unit(224, "lb"),
  19303. name: "Side",
  19304. image: {
  19305. source: "./media/characters/sheila-feral-wolf/side.svg",
  19306. extra: 179 / 166,
  19307. bottom: 0.03
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(3 + 2 / 12, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19321. {
  19322. side: {
  19323. height: math.unit(1 + 9 / 12, "feet"),
  19324. weight: math.unit(38, "lb"),
  19325. name: "Side",
  19326. image: {
  19327. source: "./media/characters/michelle/side.svg",
  19328. extra: 147 / 136.7,
  19329. bottom: 0.03
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(1 + 9 / 12, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(1.54, "feet"),
  19346. weight: math.unit(50, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/nino/front.svg"
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(1.54, "feet"),
  19357. default: true
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(1.49, "feet"),
  19366. weight: math.unit(45, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/viola/front.svg"
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(1.49, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(6 + 5 / 12, "feet"),
  19386. weight: math.unit(580, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/atlas/front.svg",
  19390. extra: 298.5 / 290,
  19391. bottom: 0.015
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(6 + 5 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19405. {
  19406. side: {
  19407. height: math.unit(15.6, "inches"),
  19408. weight: math.unit(10, "lb"),
  19409. name: "Side",
  19410. image: {
  19411. source: "./media/characters/davy/side.svg",
  19412. extra: 200 / 170,
  19413. bottom: 0.01
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(15.6, "inches"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19427. {
  19428. side: {
  19429. height: math.unit(4 + 8 / 12, "feet"),
  19430. weight: math.unit(166, "lb"),
  19431. name: "Side",
  19432. image: {
  19433. source: "./media/characters/fiona/side.svg",
  19434. extra: 232 / 220,
  19435. bottom: 0.03
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(4 + 8 / 12, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19449. {
  19450. front: {
  19451. height: math.unit(26, "inches"),
  19452. weight: math.unit(35, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/lyla/front.svg",
  19456. bottom: 0.1
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(3, "feet"),
  19464. default: true
  19465. },
  19466. ]
  19467. ))
  19468. characterMakers.push(() => makeCharacter(
  19469. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19470. {
  19471. side: {
  19472. height: math.unit(1.8, "feet"),
  19473. weight: math.unit(44, "lb"),
  19474. name: "Side",
  19475. image: {
  19476. source: "./media/characters/perseus/side.svg",
  19477. bottom: 0.21
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(1.8, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19491. {
  19492. side: {
  19493. height: math.unit(4 + 2 / 12, "feet"),
  19494. weight: math.unit(20, "lb"),
  19495. name: "Side",
  19496. image: {
  19497. source: "./media/characters/remus/side.svg"
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(4 + 2 / 12, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(4 + 11 / 12, "feet"),
  19514. weight: math.unit(114, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/raf/front.svg",
  19518. extra: 1504/1339,
  19519. bottom: 26/1530
  19520. }
  19521. },
  19522. side: {
  19523. height: math.unit(4 + 11 / 12, "feet"),
  19524. weight: math.unit(114, "lb"),
  19525. name: "Side",
  19526. image: {
  19527. source: "./media/characters/raf/side.svg",
  19528. extra: 1466/1316,
  19529. bottom: 29/1495
  19530. }
  19531. },
  19532. paw: {
  19533. height: math.unit(1.45, "feet"),
  19534. name: "Paw",
  19535. image: {
  19536. source: "./media/characters/raf/paw.svg"
  19537. },
  19538. extraAttributes: {
  19539. "toeSize": {
  19540. name: "Toe Size",
  19541. power: 2,
  19542. type: "area",
  19543. base: math.unit(0.004, "m^2")
  19544. },
  19545. "padSize": {
  19546. name: "Pad Size",
  19547. power: 2,
  19548. type: "area",
  19549. base: math.unit(0.04, "m^2")
  19550. },
  19551. "footSize": {
  19552. name: "Foot Size",
  19553. power: 2,
  19554. type: "area",
  19555. base: math.unit(0.08, "m^2")
  19556. },
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Micro",
  19563. height: math.unit(2, "inches")
  19564. },
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(4 + 11 / 12, "feet"),
  19568. default: true
  19569. },
  19570. {
  19571. name: "Macro",
  19572. height: math.unit(70, "feet")
  19573. },
  19574. ]
  19575. ))
  19576. characterMakers.push(() => makeCharacter(
  19577. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19578. {
  19579. front: {
  19580. height: math.unit(1.5, "meters"),
  19581. weight: math.unit(68, "kg"),
  19582. name: "Front",
  19583. image: {
  19584. source: "./media/characters/liam-einarr/front.svg",
  19585. extra: 2822 / 2666
  19586. }
  19587. },
  19588. back: {
  19589. height: math.unit(1.5, "meters"),
  19590. weight: math.unit(68, "kg"),
  19591. name: "Back",
  19592. image: {
  19593. source: "./media/characters/liam-einarr/back.svg",
  19594. extra: 2822 / 2666,
  19595. bottom: 0.015
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(1.5, "meters"),
  19603. default: true
  19604. },
  19605. {
  19606. name: "Macro",
  19607. height: math.unit(150, "meters")
  19608. },
  19609. {
  19610. name: "Megamacro",
  19611. height: math.unit(35, "km")
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(6, "feet"),
  19620. weight: math.unit(75, "kg"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/linda/front.svg",
  19624. extra: 930 / 874,
  19625. bottom: 0.004
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(6, "feet"),
  19633. default: true
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(6 + 8 / 12, "feet"),
  19642. weight: math.unit(220, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/caylex/front.svg",
  19646. extra: 821 / 772,
  19647. bottom: 0.07
  19648. }
  19649. },
  19650. back: {
  19651. height: math.unit(6 + 8 / 12, "feet"),
  19652. weight: math.unit(220, "lb"),
  19653. name: "Back",
  19654. image: {
  19655. source: "./media/characters/caylex/back.svg",
  19656. extra: 821 / 772,
  19657. bottom: 0.022
  19658. }
  19659. },
  19660. hand: {
  19661. height: math.unit(1.25, "feet"),
  19662. name: "Hand",
  19663. image: {
  19664. source: "./media/characters/caylex/hand.svg"
  19665. }
  19666. },
  19667. foot: {
  19668. height: math.unit(1.6, "feet"),
  19669. name: "Foot",
  19670. image: {
  19671. source: "./media/characters/caylex/foot.svg"
  19672. }
  19673. },
  19674. armored: {
  19675. height: math.unit(6 + 8 / 12, "feet"),
  19676. weight: math.unit(250, "lb"),
  19677. name: "Armored",
  19678. image: {
  19679. source: "./media/characters/caylex/armored.svg",
  19680. extra: 1420 / 1310,
  19681. bottom: 0.045
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(6 + 8 / 12, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Normal+",
  19693. height: math.unit(12, "feet")
  19694. },
  19695. ]
  19696. ))
  19697. characterMakers.push(() => makeCharacter(
  19698. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19699. {
  19700. front: {
  19701. height: math.unit(7 + 6 / 12, "feet"),
  19702. weight: math.unit(288, "lb"),
  19703. name: "Front",
  19704. image: {
  19705. source: "./media/characters/alana/front.svg",
  19706. extra: 679 / 653,
  19707. bottom: 22.5 / 701
  19708. }
  19709. },
  19710. },
  19711. [
  19712. {
  19713. name: "Normal",
  19714. height: math.unit(7 + 6 / 12, "feet")
  19715. },
  19716. {
  19717. name: "Large",
  19718. height: math.unit(50, "feet")
  19719. },
  19720. {
  19721. name: "Macro",
  19722. height: math.unit(100, "feet"),
  19723. default: true
  19724. },
  19725. {
  19726. name: "Macro+",
  19727. height: math.unit(200, "feet")
  19728. },
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(6 + 1 / 12, "feet"),
  19736. weight: math.unit(210, "lb"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/hasani/front.svg",
  19740. extra: 244 / 232,
  19741. bottom: 0.01
  19742. }
  19743. },
  19744. back: {
  19745. height: math.unit(6 + 1 / 12, "feet"),
  19746. weight: math.unit(210, "lb"),
  19747. name: "Back",
  19748. image: {
  19749. source: "./media/characters/hasani/back.svg",
  19750. extra: 244 / 232,
  19751. bottom: 0.01
  19752. }
  19753. },
  19754. },
  19755. [
  19756. {
  19757. name: "Normal",
  19758. height: math.unit(6 + 1 / 12, "feet")
  19759. },
  19760. {
  19761. name: "Macro",
  19762. height: math.unit(175, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19769. {
  19770. front: {
  19771. height: math.unit(1.82, "meters"),
  19772. weight: math.unit(140, "lb"),
  19773. name: "Front",
  19774. image: {
  19775. source: "./media/characters/nita/front.svg",
  19776. extra: 2473 / 2363,
  19777. bottom: 0.01
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(1.82, "m")
  19785. },
  19786. {
  19787. name: "Macro",
  19788. height: math.unit(300, "m")
  19789. },
  19790. {
  19791. name: "Mistake Canon",
  19792. height: math.unit(0.5, "miles"),
  19793. default: true
  19794. },
  19795. {
  19796. name: "Big Mistake",
  19797. height: math.unit(13, "miles")
  19798. },
  19799. {
  19800. name: "Playing God",
  19801. height: math.unit(2450, "miles")
  19802. },
  19803. ]
  19804. ))
  19805. characterMakers.push(() => makeCharacter(
  19806. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19807. {
  19808. front: {
  19809. height: math.unit(4, "feet"),
  19810. weight: math.unit(120, "lb"),
  19811. name: "Front",
  19812. image: {
  19813. source: "./media/characters/shiriko/front.svg",
  19814. extra: 970/934,
  19815. bottom: 5/975
  19816. }
  19817. },
  19818. },
  19819. [
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(4, "feet"),
  19823. default: true
  19824. },
  19825. ]
  19826. ))
  19827. characterMakers.push(() => makeCharacter(
  19828. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19829. {
  19830. front: {
  19831. height: math.unit(6, "feet"),
  19832. name: "front",
  19833. image: {
  19834. source: "./media/characters/deja/front.svg",
  19835. extra: 926 / 840,
  19836. bottom: 0.07
  19837. }
  19838. },
  19839. },
  19840. [
  19841. {
  19842. name: "Planck Length",
  19843. height: math.unit(1.6e-35, "meters")
  19844. },
  19845. {
  19846. name: "Normal",
  19847. height: math.unit(30.48, "meters"),
  19848. default: true
  19849. },
  19850. {
  19851. name: "Universal",
  19852. height: math.unit(8.8e26, "meters")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19858. {
  19859. side: {
  19860. height: math.unit(8, "feet"),
  19861. weight: math.unit(6300, "lb"),
  19862. name: "Side",
  19863. image: {
  19864. source: "./media/characters/anima/side.svg",
  19865. bottom: 0.035
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(8, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(8, "feet"),
  19882. weight: math.unit(350, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/bianca/front.svg",
  19886. extra: 234 / 225,
  19887. bottom: 0.03
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(8, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(11 + 5/12, "feet"),
  19904. weight: math.unit(1200, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/adinia/front.svg",
  19908. extra: 1767/1641,
  19909. bottom: 44/1811
  19910. },
  19911. extraAttributes: {
  19912. "energyIntake": {
  19913. name: "Energy Intake",
  19914. power: 3,
  19915. type: "energy",
  19916. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19917. },
  19918. }
  19919. },
  19920. back: {
  19921. height: math.unit(11 + 5/12, "feet"),
  19922. weight: math.unit(1200, "lb"),
  19923. name: "Back",
  19924. image: {
  19925. source: "./media/characters/adinia/back.svg",
  19926. extra: 1834/1684,
  19927. bottom: 14/1848
  19928. },
  19929. extraAttributes: {
  19930. "energyIntake": {
  19931. name: "Energy Intake",
  19932. power: 3,
  19933. type: "energy",
  19934. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19935. },
  19936. }
  19937. },
  19938. maw: {
  19939. height: math.unit(3.79, "feet"),
  19940. name: "Maw",
  19941. image: {
  19942. source: "./media/characters/adinia/maw.svg"
  19943. }
  19944. },
  19945. rump: {
  19946. height: math.unit(4.6, "feet"),
  19947. name: "Rump",
  19948. image: {
  19949. source: "./media/characters/adinia/rump.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(11 + 5 / 12, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(3, "meters"),
  19966. weight: math.unit(200, "kg"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/lykasa/front.svg",
  19970. extra: 1076 / 976,
  19971. bottom: 0.06
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(3, "meters")
  19979. },
  19980. {
  19981. name: "Kaiju",
  19982. height: math.unit(120, "meters"),
  19983. default: true
  19984. },
  19985. {
  19986. name: "Mega Kaiju",
  19987. height: math.unit(240, "km")
  19988. },
  19989. {
  19990. name: "Giga Kaiju",
  19991. height: math.unit(400, "megameters")
  19992. },
  19993. {
  19994. name: "Tera Kaiju",
  19995. height: math.unit(800, "gigameters")
  19996. },
  19997. {
  19998. name: "Kaiju Dragon Goddess",
  19999. height: math.unit(26, "zettaparsecs")
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  20005. {
  20006. side: {
  20007. height: math.unit(283 / 124 * 6, "feet"),
  20008. weight: math.unit(35000, "lb"),
  20009. name: "Side",
  20010. image: {
  20011. source: "./media/characters/malfaren/side.svg",
  20012. extra: 1310/529,
  20013. bottom: 24/1334
  20014. }
  20015. },
  20016. front: {
  20017. height: math.unit(22.36, "feet"),
  20018. weight: math.unit(35000, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/malfaren/front.svg",
  20022. extra: 1237/1115,
  20023. bottom: 32/1269
  20024. }
  20025. },
  20026. maw: {
  20027. height: math.unit(6.9, "feet"),
  20028. name: "Maw",
  20029. image: {
  20030. source: "./media/characters/malfaren/maw.svg"
  20031. }
  20032. },
  20033. dick: {
  20034. height: math.unit(6.19, "feet"),
  20035. name: "Dick",
  20036. image: {
  20037. source: "./media/characters/malfaren/dick.svg"
  20038. }
  20039. },
  20040. eye: {
  20041. height: math.unit(0.69, "feet"),
  20042. name: "Eye",
  20043. image: {
  20044. source: "./media/characters/malfaren/eye.svg"
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Big",
  20051. height: math.unit(283 / 162 * 6, "feet"),
  20052. },
  20053. {
  20054. name: "Bigger",
  20055. height: math.unit(283 / 124 * 6, "feet")
  20056. },
  20057. {
  20058. name: "Massive",
  20059. height: math.unit(283 / 92 * 6, "feet"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "👀💦",
  20064. height: math.unit(283 / 73 * 6, "feet"),
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(1.7, "m"),
  20073. weight: math.unit(70, "kg"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/kernel/front.svg",
  20077. extra: 1960/1821,
  20078. bottom: 17/1977
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Nano",
  20085. height: math.unit(17, "micrometers")
  20086. },
  20087. {
  20088. name: "Micro",
  20089. height: math.unit(1.7, "mm")
  20090. },
  20091. {
  20092. name: "Small",
  20093. height: math.unit(1.7, "cm")
  20094. },
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(1.7, "m"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(1.75, "meters"),
  20107. weight: math.unit(65, "kg"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/jayne-folest/front.svg",
  20111. extra: 2115 / 2007,
  20112. bottom: 0.02
  20113. }
  20114. },
  20115. back: {
  20116. height: math.unit(1.75, "meters"),
  20117. weight: math.unit(65, "kg"),
  20118. name: "Back",
  20119. image: {
  20120. source: "./media/characters/jayne-folest/back.svg",
  20121. extra: 2115 / 2007,
  20122. bottom: 0.005
  20123. }
  20124. },
  20125. frontClothed: {
  20126. height: math.unit(1.75, "meters"),
  20127. weight: math.unit(65, "kg"),
  20128. name: "Front (Clothed)",
  20129. image: {
  20130. source: "./media/characters/jayne-folest/front-clothed.svg",
  20131. extra: 2115 / 2007,
  20132. bottom: 0.035
  20133. }
  20134. },
  20135. hand: {
  20136. height: math.unit(1 / 1.260, "feet"),
  20137. name: "Hand",
  20138. image: {
  20139. source: "./media/characters/jayne-folest/hand.svg"
  20140. }
  20141. },
  20142. foot: {
  20143. height: math.unit(1 / 0.918, "feet"),
  20144. name: "Foot",
  20145. image: {
  20146. source: "./media/characters/jayne-folest/foot.svg"
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Micro",
  20153. height: math.unit(4, "cm")
  20154. },
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(1.75, "meters")
  20158. },
  20159. {
  20160. name: "Macro",
  20161. height: math.unit(47.5, "meters"),
  20162. default: true
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20168. {
  20169. front: {
  20170. height: math.unit(180, "cm"),
  20171. weight: math.unit(70, "kg"),
  20172. name: "Front",
  20173. image: {
  20174. source: "./media/characters/algier/front.svg",
  20175. extra: 596 / 572,
  20176. bottom: 0.04
  20177. }
  20178. },
  20179. back: {
  20180. height: math.unit(180, "cm"),
  20181. weight: math.unit(70, "kg"),
  20182. name: "Back",
  20183. image: {
  20184. source: "./media/characters/algier/back.svg",
  20185. extra: 596 / 572,
  20186. bottom: 0.025
  20187. }
  20188. },
  20189. frontdressed: {
  20190. height: math.unit(180, "cm"),
  20191. weight: math.unit(150, "kg"),
  20192. name: "Front (Dressed)",
  20193. image: {
  20194. source: "./media/characters/algier/front-dressed.svg",
  20195. extra: 596 / 572,
  20196. bottom: 0.038
  20197. }
  20198. },
  20199. },
  20200. [
  20201. {
  20202. name: "Micro",
  20203. height: math.unit(5, "cm")
  20204. },
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(180, "cm"),
  20208. default: true
  20209. },
  20210. {
  20211. name: "Macro",
  20212. height: math.unit(64, "m")
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20218. {
  20219. upright: {
  20220. height: math.unit(7, "feet"),
  20221. weight: math.unit(300, "lb"),
  20222. name: "Upright",
  20223. image: {
  20224. source: "./media/characters/pretzel/upright.svg",
  20225. extra: 534 / 522,
  20226. bottom: 0.065
  20227. }
  20228. },
  20229. sprawling: {
  20230. height: math.unit(3.75, "feet"),
  20231. weight: math.unit(300, "lb"),
  20232. name: "Sprawling",
  20233. image: {
  20234. source: "./media/characters/pretzel/sprawling.svg",
  20235. extra: 314 / 281,
  20236. bottom: 0.1
  20237. }
  20238. },
  20239. tongue: {
  20240. height: math.unit(2, "feet"),
  20241. name: "Tongue",
  20242. image: {
  20243. source: "./media/characters/pretzel/tongue.svg"
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(7, "feet"),
  20251. default: true
  20252. },
  20253. {
  20254. name: "Oversized",
  20255. height: math.unit(15, "feet")
  20256. },
  20257. {
  20258. name: "Huge",
  20259. height: math.unit(30, "feet")
  20260. },
  20261. {
  20262. name: "Macro",
  20263. height: math.unit(250, "feet")
  20264. },
  20265. ]
  20266. ))
  20267. characterMakers.push(() => makeCharacter(
  20268. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20269. {
  20270. sideFront: {
  20271. height: math.unit(5 + 2 / 12, "feet"),
  20272. weight: math.unit(120, "lb"),
  20273. name: "Front Side",
  20274. image: {
  20275. source: "./media/characters/roxi/side-front.svg",
  20276. extra: 2924 / 2717,
  20277. bottom: 0.08
  20278. }
  20279. },
  20280. sideBack: {
  20281. height: math.unit(5 + 2 / 12, "feet"),
  20282. weight: math.unit(120, "lb"),
  20283. name: "Back Side",
  20284. image: {
  20285. source: "./media/characters/roxi/side-back.svg",
  20286. extra: 2904 / 2693,
  20287. bottom: 0.06
  20288. }
  20289. },
  20290. front: {
  20291. height: math.unit(5 + 2 / 12, "feet"),
  20292. weight: math.unit(120, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/roxi/front.svg",
  20296. extra: 2028 / 1907,
  20297. bottom: 0.01
  20298. }
  20299. },
  20300. frontAlt: {
  20301. height: math.unit(5 + 2 / 12, "feet"),
  20302. weight: math.unit(120, "lb"),
  20303. name: "Front (Alt)",
  20304. image: {
  20305. source: "./media/characters/roxi/front-alt.svg",
  20306. extra: 1828 / 1798,
  20307. bottom: 0.01
  20308. }
  20309. },
  20310. sitting: {
  20311. height: math.unit(2.8, "feet"),
  20312. weight: math.unit(120, "lb"),
  20313. name: "Sitting",
  20314. image: {
  20315. source: "./media/characters/roxi/sitting.svg",
  20316. extra: 2660 / 2462,
  20317. bottom: 0.1
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(5 + 2 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20331. {
  20332. side: {
  20333. height: math.unit(55, "feet"),
  20334. weight: math.unit(153, "tons"),
  20335. name: "Side",
  20336. image: {
  20337. source: "./media/characters/shadow/side.svg",
  20338. extra: 701 / 628,
  20339. bottom: 0.02
  20340. }
  20341. },
  20342. flying: {
  20343. height: math.unit(145, "feet"),
  20344. weight: math.unit(153, "tons"),
  20345. name: "Flying",
  20346. image: {
  20347. source: "./media/characters/shadow/flying.svg"
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(55, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(6, "feet"),
  20364. weight: math.unit(200, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/marcie/front.svg",
  20368. extra: 960 / 876,
  20369. bottom: 58 / 1017.87
  20370. }
  20371. },
  20372. },
  20373. [
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(1, "mile"),
  20377. default: true
  20378. },
  20379. ]
  20380. ))
  20381. characterMakers.push(() => makeCharacter(
  20382. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20383. {
  20384. front: {
  20385. height: math.unit(7, "feet"),
  20386. weight: math.unit(200, "lb"),
  20387. name: "Front",
  20388. image: {
  20389. source: "./media/characters/kachina/front.svg",
  20390. extra: 3206/2764,
  20391. bottom: 140/3346
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(7, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20405. {
  20406. looking: {
  20407. height: math.unit(2, "meters"),
  20408. weight: math.unit(300, "kg"),
  20409. name: "Looking",
  20410. image: {
  20411. source: "./media/characters/kash/looking.svg",
  20412. extra: 474 / 344,
  20413. bottom: 0.03
  20414. }
  20415. },
  20416. side: {
  20417. height: math.unit(2, "meters"),
  20418. weight: math.unit(300, "kg"),
  20419. name: "Side",
  20420. image: {
  20421. source: "./media/characters/kash/side.svg",
  20422. extra: 302 / 251,
  20423. bottom: 0.03
  20424. }
  20425. },
  20426. front: {
  20427. height: math.unit(2, "meters"),
  20428. weight: math.unit(300, "kg"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/kash/front.svg",
  20432. extra: 495 / 360,
  20433. bottom: 0.015
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(2, "meters"),
  20441. default: true
  20442. },
  20443. {
  20444. name: "Big",
  20445. height: math.unit(3, "meters")
  20446. },
  20447. {
  20448. name: "Large",
  20449. height: math.unit(5, "meters")
  20450. },
  20451. ]
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20455. {
  20456. feeding: {
  20457. height: math.unit(6.7, "feet"),
  20458. weight: math.unit(350, "lb"),
  20459. name: "Feeding",
  20460. image: {
  20461. source: "./media/characters/lalim/feeding.svg",
  20462. }
  20463. },
  20464. },
  20465. [
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(6.7, "feet"),
  20469. default: true
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(9.5, "feet"),
  20478. weight: math.unit(600, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/de'vout/front.svg",
  20482. extra: 1443 / 1328,
  20483. bottom: 0.025
  20484. }
  20485. },
  20486. back: {
  20487. height: math.unit(9.5, "feet"),
  20488. weight: math.unit(600, "lb"),
  20489. name: "Back",
  20490. image: {
  20491. source: "./media/characters/de'vout/back.svg",
  20492. extra: 1443 / 1328
  20493. }
  20494. },
  20495. frontDressed: {
  20496. height: math.unit(9.5, "feet"),
  20497. weight: math.unit(600, "lb"),
  20498. name: "Front (Dressed",
  20499. image: {
  20500. source: "./media/characters/de'vout/front-dressed.svg",
  20501. extra: 1443 / 1328,
  20502. bottom: 0.025
  20503. }
  20504. },
  20505. backDressed: {
  20506. height: math.unit(9.5, "feet"),
  20507. weight: math.unit(600, "lb"),
  20508. name: "Back (Dressed",
  20509. image: {
  20510. source: "./media/characters/de'vout/back-dressed.svg",
  20511. extra: 1443 / 1328
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(9.5, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(8, "feet"),
  20528. weight: math.unit(225, "lb"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/talana/front.svg",
  20532. extra: 1410 / 1300,
  20533. bottom: 0.015
  20534. }
  20535. },
  20536. frontDressed: {
  20537. height: math.unit(8, "feet"),
  20538. weight: math.unit(225, "lb"),
  20539. name: "Front (Dressed",
  20540. image: {
  20541. source: "./media/characters/talana/front-dressed.svg",
  20542. extra: 1410 / 1300,
  20543. bottom: 0.015
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(8, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20557. {
  20558. side: {
  20559. height: math.unit(7.2, "feet"),
  20560. weight: math.unit(150, "lb"),
  20561. name: "Side",
  20562. image: {
  20563. source: "./media/characters/xeauvok/side.svg",
  20564. extra: 1975 / 1523,
  20565. bottom: 0.07
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(7.2, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20579. {
  20580. side: {
  20581. height: math.unit(4, "meters"),
  20582. weight: math.unit(2200, "kg"),
  20583. name: "Side",
  20584. image: {
  20585. source: "./media/characters/zara/side.svg",
  20586. extra: 765/744,
  20587. bottom: 156/921
  20588. }
  20589. },
  20590. },
  20591. [
  20592. {
  20593. name: "Normal",
  20594. height: math.unit(4, "meters"),
  20595. default: true
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20601. {
  20602. side: {
  20603. height: math.unit(6, "feet"),
  20604. weight: math.unit(150, "lb"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/richard-dragon/side.svg",
  20608. extra: 845 / 340,
  20609. bottom: 0.017
  20610. }
  20611. },
  20612. maw: {
  20613. height: math.unit(2.97, "feet"),
  20614. name: "Maw",
  20615. image: {
  20616. source: "./media/characters/richard-dragon/maw.svg"
  20617. }
  20618. },
  20619. },
  20620. [
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20625. {
  20626. front: {
  20627. height: math.unit(4, "feet"),
  20628. weight: math.unit(100, "lb"),
  20629. name: "Front",
  20630. image: {
  20631. source: "./media/characters/richard-smeargle/front.svg",
  20632. extra: 2952 / 2820,
  20633. bottom: 0.028
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(4, "feet"),
  20641. default: true
  20642. },
  20643. {
  20644. name: "Dynamax",
  20645. height: math.unit(20, "meters")
  20646. },
  20647. ]
  20648. ))
  20649. characterMakers.push(() => makeCharacter(
  20650. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20651. {
  20652. front: {
  20653. height: math.unit(6, "feet"),
  20654. weight: math.unit(110, "lb"),
  20655. name: "Front",
  20656. image: {
  20657. source: "./media/characters/klay/front.svg",
  20658. extra: 962 / 883,
  20659. bottom: 0.04
  20660. }
  20661. },
  20662. back: {
  20663. height: math.unit(6, "feet"),
  20664. weight: math.unit(110, "lb"),
  20665. name: "Back",
  20666. image: {
  20667. source: "./media/characters/klay/back.svg",
  20668. extra: 962 / 883
  20669. }
  20670. },
  20671. beans: {
  20672. height: math.unit(1.15, "feet"),
  20673. name: "Beans",
  20674. image: {
  20675. source: "./media/characters/klay/beans.svg"
  20676. }
  20677. },
  20678. },
  20679. [
  20680. {
  20681. name: "Micro",
  20682. height: math.unit(6, "inches")
  20683. },
  20684. {
  20685. name: "Mini",
  20686. height: math.unit(3, "feet")
  20687. },
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(6, "feet"),
  20691. default: true
  20692. },
  20693. {
  20694. name: "Big",
  20695. height: math.unit(25, "feet")
  20696. },
  20697. {
  20698. name: "Macro",
  20699. height: math.unit(100, "feet")
  20700. },
  20701. {
  20702. name: "Megamacro",
  20703. height: math.unit(400, "feet")
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(6, "feet"),
  20712. weight: math.unit(160, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/marcus/front.svg",
  20716. extra: 734 / 676,
  20717. bottom: 0.03
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Little",
  20724. height: math.unit(6, "feet")
  20725. },
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(110, "feet"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(250, "feet")
  20734. },
  20735. {
  20736. name: "Megamacro",
  20737. height: math.unit(1000, "feet")
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(7, "feet"),
  20746. weight: math.unit(275, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/claude-delroute/front.svg",
  20750. extra: 902/827,
  20751. bottom: 26/928
  20752. }
  20753. },
  20754. side: {
  20755. height: math.unit(7, "feet"),
  20756. weight: math.unit(275, "lb"),
  20757. name: "Side",
  20758. image: {
  20759. source: "./media/characters/claude-delroute/side.svg",
  20760. extra: 908/853,
  20761. bottom: 16/924
  20762. }
  20763. },
  20764. back: {
  20765. height: math.unit(7, "feet"),
  20766. weight: math.unit(275, "lb"),
  20767. name: "Back",
  20768. image: {
  20769. source: "./media/characters/claude-delroute/back.svg",
  20770. extra: 911/829,
  20771. bottom: 18/929
  20772. }
  20773. },
  20774. maw: {
  20775. height: math.unit(0.6407, "meters"),
  20776. name: "Maw",
  20777. image: {
  20778. source: "./media/characters/claude-delroute/maw.svg"
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(7, "feet"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Lorge",
  20790. height: math.unit(20, "feet")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20796. {
  20797. front: {
  20798. height: math.unit(8 + 4 / 12, "feet"),
  20799. weight: math.unit(600, "lb"),
  20800. name: "Front",
  20801. image: {
  20802. source: "./media/characters/dragonien/front.svg",
  20803. extra: 100 / 94,
  20804. bottom: 3.3 / 103.3445
  20805. }
  20806. },
  20807. back: {
  20808. height: math.unit(8 + 4 / 12, "feet"),
  20809. weight: math.unit(600, "lb"),
  20810. name: "Back",
  20811. image: {
  20812. source: "./media/characters/dragonien/back.svg",
  20813. extra: 776 / 746,
  20814. bottom: 6.4 / 782.0616
  20815. }
  20816. },
  20817. foot: {
  20818. height: math.unit(1.54, "feet"),
  20819. name: "Foot",
  20820. image: {
  20821. source: "./media/characters/dragonien/foot.svg",
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(8 + 4 / 12, "feet"),
  20829. default: true
  20830. },
  20831. {
  20832. name: "Macro",
  20833. height: math.unit(200, "feet")
  20834. },
  20835. {
  20836. name: "Megamacro",
  20837. height: math.unit(1, "mile")
  20838. },
  20839. {
  20840. name: "Gigamacro",
  20841. height: math.unit(1000, "miles")
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(5 + 2 / 12, "feet"),
  20850. weight: math.unit(110, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/desta/front.svg",
  20854. extra: 767 / 726,
  20855. bottom: 11.7 / 779
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(5 + 2 / 12, "feet"),
  20860. weight: math.unit(110, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/desta/back.svg",
  20864. extra: 777 / 728,
  20865. bottom: 6 / 784
  20866. }
  20867. },
  20868. frontAlt: {
  20869. height: math.unit(5 + 2 / 12, "feet"),
  20870. weight: math.unit(110, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/desta/front-alt.svg",
  20874. extra: 1482 / 1417
  20875. }
  20876. },
  20877. side: {
  20878. height: math.unit(5 + 2 / 12, "feet"),
  20879. weight: math.unit(110, "lb"),
  20880. name: "Side",
  20881. image: {
  20882. source: "./media/characters/desta/side.svg",
  20883. extra: 2579 / 2491,
  20884. bottom: 0.053
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Micro",
  20891. height: math.unit(6, "inches")
  20892. },
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(5 + 2 / 12, "feet"),
  20896. default: true
  20897. },
  20898. {
  20899. name: "Macro",
  20900. height: math.unit(62, "feet")
  20901. },
  20902. {
  20903. name: "Megamacro",
  20904. height: math.unit(1800, "feet")
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(10, "feet"),
  20913. weight: math.unit(700, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/storm-alystar/front.svg",
  20917. extra: 2112 / 1898,
  20918. bottom: 0.034
  20919. }
  20920. },
  20921. },
  20922. [
  20923. {
  20924. name: "Micro",
  20925. height: math.unit(3.5, "inches")
  20926. },
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(10, "feet"),
  20930. default: true
  20931. },
  20932. {
  20933. name: "Macro",
  20934. height: math.unit(400, "feet")
  20935. },
  20936. {
  20937. name: "Deific",
  20938. height: math.unit(60, "miles")
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(2.35, "meters"),
  20947. weight: math.unit(119, "kg"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/ilia/front.svg",
  20951. extra: 1285 / 1255,
  20952. bottom: 0.06
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(2.35, "meters")
  20960. },
  20961. {
  20962. name: "Macro",
  20963. height: math.unit(140, "meters"),
  20964. default: true
  20965. },
  20966. {
  20967. name: "Megamacro",
  20968. height: math.unit(100, "miles")
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(6 + 5 / 12, "feet"),
  20977. weight: math.unit(190, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/kingdead/front.svg",
  20981. extra: 1228 / 1177
  20982. }
  20983. },
  20984. },
  20985. [
  20986. {
  20987. name: "Micro",
  20988. height: math.unit(7, "inches")
  20989. },
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(6 + 5 / 12, "feet")
  20993. },
  20994. {
  20995. name: "Macro",
  20996. height: math.unit(150, "feet"),
  20997. default: true
  20998. },
  20999. {
  21000. name: "Megamacro",
  21001. height: math.unit(200, "miles")
  21002. },
  21003. ]
  21004. ))
  21005. characterMakers.push(() => makeCharacter(
  21006. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  21007. {
  21008. front: {
  21009. height: math.unit(8, "feet"),
  21010. weight: math.unit(600, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/kyrehx/front.svg",
  21014. extra: 1195 / 1095,
  21015. bottom: 0.034
  21016. }
  21017. },
  21018. },
  21019. [
  21020. {
  21021. name: "Micro",
  21022. height: math.unit(2, "inches")
  21023. },
  21024. {
  21025. name: "Normal",
  21026. height: math.unit(8, "feet"),
  21027. default: true
  21028. },
  21029. {
  21030. name: "Macro",
  21031. height: math.unit(255, "feet")
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21040. weight: math.unit(184, "lb"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/xang/front.svg",
  21044. extra: 845 / 755
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  21052. default: true
  21053. },
  21054. {
  21055. name: "Macro",
  21056. height: math.unit(0.935 * 146, "feet")
  21057. },
  21058. {
  21059. name: "Megamacro",
  21060. height: math.unit(0.935 * 3, "miles")
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21066. {
  21067. frontDressed: {
  21068. height: math.unit(5 + 7 / 12, "feet"),
  21069. weight: math.unit(140, "lb"),
  21070. name: "Front (Dressed)",
  21071. image: {
  21072. source: "./media/characters/doc-weardno/front-dressed.svg",
  21073. extra: 263 / 234
  21074. }
  21075. },
  21076. backDressed: {
  21077. height: math.unit(5 + 7 / 12, "feet"),
  21078. weight: math.unit(140, "lb"),
  21079. name: "Back (Dressed)",
  21080. image: {
  21081. source: "./media/characters/doc-weardno/back-dressed.svg",
  21082. extra: 266 / 238
  21083. }
  21084. },
  21085. front: {
  21086. height: math.unit(5 + 7 / 12, "feet"),
  21087. weight: math.unit(140, "lb"),
  21088. name: "Front",
  21089. image: {
  21090. source: "./media/characters/doc-weardno/front.svg",
  21091. extra: 254 / 233
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Micro",
  21098. height: math.unit(3, "inches")
  21099. },
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(5 + 7 / 12, "feet"),
  21103. default: true
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(25, "feet")
  21108. },
  21109. {
  21110. name: "Megamacro",
  21111. height: math.unit(2, "miles")
  21112. },
  21113. ]
  21114. ))
  21115. characterMakers.push(() => makeCharacter(
  21116. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21117. {
  21118. front: {
  21119. height: math.unit(6 + 2 / 12, "feet"),
  21120. weight: math.unit(153, "lb"),
  21121. name: "Front",
  21122. image: {
  21123. source: "./media/characters/seth-whilst/front.svg",
  21124. bottom: 0.07
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Micro",
  21131. height: math.unit(5, "inches")
  21132. },
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(6 + 2 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(3, "inches"),
  21145. weight: math.unit(8, "grams"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/pocket-jabari/front.svg",
  21149. extra: 1024 / 974,
  21150. bottom: 0.039
  21151. }
  21152. },
  21153. },
  21154. [
  21155. {
  21156. name: "Minimicro",
  21157. height: math.unit(8, "mm")
  21158. },
  21159. {
  21160. name: "Micro",
  21161. height: math.unit(3, "inches"),
  21162. default: true
  21163. },
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(3, "feet")
  21167. },
  21168. ]
  21169. ))
  21170. characterMakers.push(() => makeCharacter(
  21171. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21172. {
  21173. frontDressed: {
  21174. height: math.unit(15, "feet"),
  21175. weight: math.unit(3280, "lb"),
  21176. name: "Front (Dressed)",
  21177. image: {
  21178. source: "./media/characters/sapphy/front-dressed.svg",
  21179. extra: 1951/1654,
  21180. bottom: 194/2145
  21181. },
  21182. form: "anthro",
  21183. default: true
  21184. },
  21185. backDressed: {
  21186. height: math.unit(15, "feet"),
  21187. weight: math.unit(3280, "lb"),
  21188. name: "Back (Dressed)",
  21189. image: {
  21190. source: "./media/characters/sapphy/back-dressed.svg",
  21191. extra: 2058/1918,
  21192. bottom: 125/2183
  21193. },
  21194. form: "anthro"
  21195. },
  21196. frontNude: {
  21197. height: math.unit(15, "feet"),
  21198. weight: math.unit(3280, "lb"),
  21199. name: "Front (Nude)",
  21200. image: {
  21201. source: "./media/characters/sapphy/front-nude.svg",
  21202. extra: 1951/1654,
  21203. bottom: 194/2145
  21204. },
  21205. form: "anthro"
  21206. },
  21207. backNude: {
  21208. height: math.unit(15, "feet"),
  21209. weight: math.unit(3280, "lb"),
  21210. name: "Back (Nude)",
  21211. image: {
  21212. source: "./media/characters/sapphy/back-nude.svg",
  21213. extra: 2058/1918,
  21214. bottom: 125/2183
  21215. },
  21216. form: "anthro"
  21217. },
  21218. full: {
  21219. height: math.unit(15, "feet"),
  21220. weight: math.unit(3280, "lb"),
  21221. name: "Full",
  21222. image: {
  21223. source: "./media/characters/sapphy/full.svg",
  21224. extra: 1396/1317,
  21225. bottom: 44/1440
  21226. },
  21227. form: "anthro"
  21228. },
  21229. dick: {
  21230. height: math.unit(3.8, "feet"),
  21231. name: "Dick",
  21232. image: {
  21233. source: "./media/characters/sapphy/dick.svg"
  21234. },
  21235. form: "anthro"
  21236. },
  21237. feral: {
  21238. height: math.unit(35, "feet"),
  21239. weight: math.unit(160, "tons"),
  21240. name: "Feral",
  21241. image: {
  21242. source: "./media/characters/sapphy/feral.svg",
  21243. extra: 1050/573,
  21244. bottom: 60/1110
  21245. },
  21246. form: "feral",
  21247. default: true
  21248. },
  21249. },
  21250. [
  21251. {
  21252. name: "Normal",
  21253. height: math.unit(15, "feet"),
  21254. form: "anthro"
  21255. },
  21256. {
  21257. name: "Casual Macro",
  21258. height: math.unit(120, "feet"),
  21259. form: "anthro"
  21260. },
  21261. {
  21262. name: "Macro",
  21263. height: math.unit(2150, "feet"),
  21264. default: true,
  21265. form: "anthro"
  21266. },
  21267. {
  21268. name: "Megamacro",
  21269. height: math.unit(8, "miles"),
  21270. form: "anthro"
  21271. },
  21272. {
  21273. name: "Galaxy Mom",
  21274. height: math.unit(6, "megalightyears"),
  21275. form: "anthro"
  21276. },
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(35, "feet"),
  21280. form: "feral",
  21281. default: true
  21282. },
  21283. {
  21284. name: "Macro",
  21285. height: math.unit(300, "feet"),
  21286. form: "feral"
  21287. },
  21288. {
  21289. name: "Galaxy Mom",
  21290. height: math.unit(10, "megalightyears"),
  21291. form: "feral"
  21292. },
  21293. ],
  21294. {
  21295. "anthro": {
  21296. name: "Anthro",
  21297. default: true
  21298. },
  21299. "feral": {
  21300. name: "Feral"
  21301. }
  21302. }
  21303. ))
  21304. characterMakers.push(() => makeCharacter(
  21305. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21306. {
  21307. hyenaFront: {
  21308. height: math.unit(6, "feet"),
  21309. weight: math.unit(190, "lb"),
  21310. name: "Front",
  21311. image: {
  21312. source: "./media/characters/kiro/hyena-front.svg",
  21313. extra: 927/839,
  21314. bottom: 91/1018
  21315. },
  21316. form: "hyena",
  21317. default: true
  21318. },
  21319. front: {
  21320. height: math.unit(6, "feet"),
  21321. weight: math.unit(170, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/kiro/front.svg",
  21325. extra: 1064 / 1012,
  21326. bottom: 0.052
  21327. },
  21328. form: "folf",
  21329. default: true
  21330. },
  21331. },
  21332. [
  21333. {
  21334. name: "Micro",
  21335. height: math.unit(6, "inches"),
  21336. form: "folf"
  21337. },
  21338. {
  21339. name: "Normal",
  21340. height: math.unit(6, "feet"),
  21341. form: "folf",
  21342. default: true
  21343. },
  21344. {
  21345. name: "Macro",
  21346. height: math.unit(72, "feet"),
  21347. form: "folf"
  21348. },
  21349. {
  21350. name: "Micro",
  21351. height: math.unit(6, "inches"),
  21352. form: "hyena"
  21353. },
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(6, "feet"),
  21357. form: "hyena",
  21358. default: true
  21359. },
  21360. {
  21361. name: "Macro",
  21362. height: math.unit(72, "feet"),
  21363. form: "hyena"
  21364. },
  21365. ],
  21366. {
  21367. "hyena": {
  21368. name: "Hyena",
  21369. default: true
  21370. },
  21371. "folf": {
  21372. name: "Folf",
  21373. },
  21374. }
  21375. ))
  21376. characterMakers.push(() => makeCharacter(
  21377. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21378. {
  21379. front: {
  21380. height: math.unit(5 + 9 / 12, "feet"),
  21381. weight: math.unit(175, "lb"),
  21382. name: "Front",
  21383. image: {
  21384. source: "./media/characters/irishfox/front.svg",
  21385. extra: 1912 / 1680,
  21386. bottom: 0.02
  21387. }
  21388. },
  21389. },
  21390. [
  21391. {
  21392. name: "Nano",
  21393. height: math.unit(1, "mm")
  21394. },
  21395. {
  21396. name: "Micro",
  21397. height: math.unit(2, "inches")
  21398. },
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(5 + 9 / 12, "feet"),
  21402. default: true
  21403. },
  21404. {
  21405. name: "Macro",
  21406. height: math.unit(45, "feet")
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21412. {
  21413. front: {
  21414. height: math.unit(6 + 1 / 12, "feet"),
  21415. weight: math.unit(75, "lb"),
  21416. name: "Front",
  21417. image: {
  21418. source: "./media/characters/aronai-sieyes/front.svg",
  21419. extra: 1532/1450,
  21420. bottom: 42/1574
  21421. }
  21422. },
  21423. side: {
  21424. height: math.unit(6 + 1 / 12, "feet"),
  21425. weight: math.unit(75, "lb"),
  21426. name: "Side",
  21427. image: {
  21428. source: "./media/characters/aronai-sieyes/side.svg",
  21429. extra: 1422/1365,
  21430. bottom: 148/1570
  21431. }
  21432. },
  21433. back: {
  21434. height: math.unit(6 + 1 / 12, "feet"),
  21435. weight: math.unit(75, "lb"),
  21436. name: "Back",
  21437. image: {
  21438. source: "./media/characters/aronai-sieyes/back.svg",
  21439. extra: 1526/1464,
  21440. bottom: 51/1577
  21441. }
  21442. },
  21443. dressed: {
  21444. height: math.unit(6 + 1 / 12, "feet"),
  21445. weight: math.unit(75, "lb"),
  21446. name: "Dressed",
  21447. image: {
  21448. source: "./media/characters/aronai-sieyes/dressed.svg",
  21449. extra: 1559/1483,
  21450. bottom: 39/1598
  21451. }
  21452. },
  21453. slit: {
  21454. height: math.unit(1.3, "feet"),
  21455. name: "Slit",
  21456. image: {
  21457. source: "./media/characters/aronai-sieyes/slit.svg"
  21458. }
  21459. },
  21460. slitSpread: {
  21461. height: math.unit(0.9, "feet"),
  21462. name: "Slit (Spread)",
  21463. image: {
  21464. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21465. }
  21466. },
  21467. rump: {
  21468. height: math.unit(1.3, "feet"),
  21469. name: "Rump",
  21470. image: {
  21471. source: "./media/characters/aronai-sieyes/rump.svg"
  21472. }
  21473. },
  21474. maw: {
  21475. height: math.unit(1.25, "feet"),
  21476. name: "Maw",
  21477. image: {
  21478. source: "./media/characters/aronai-sieyes/maw.svg"
  21479. }
  21480. },
  21481. feral: {
  21482. height: math.unit(18, "feet"),
  21483. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21484. name: "Feral",
  21485. image: {
  21486. source: "./media/characters/aronai-sieyes/feral.svg",
  21487. extra: 1530 / 1240,
  21488. bottom: 0.035
  21489. }
  21490. },
  21491. },
  21492. [
  21493. {
  21494. name: "Micro",
  21495. height: math.unit(2, "inches")
  21496. },
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(6 + 1 / 12, "feet"),
  21500. default: true
  21501. }
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(12, "feet"),
  21509. weight: math.unit(410, "kg"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/xuna/front.svg",
  21513. extra: 2184 / 1980
  21514. }
  21515. },
  21516. side: {
  21517. height: math.unit(12, "feet"),
  21518. weight: math.unit(410, "kg"),
  21519. name: "Side",
  21520. image: {
  21521. source: "./media/characters/xuna/side.svg",
  21522. extra: 2184 / 1980
  21523. }
  21524. },
  21525. back: {
  21526. height: math.unit(12, "feet"),
  21527. weight: math.unit(410, "kg"),
  21528. name: "Back",
  21529. image: {
  21530. source: "./media/characters/xuna/back.svg",
  21531. extra: 2184 / 1980
  21532. }
  21533. },
  21534. },
  21535. [
  21536. {
  21537. name: "Nano glow",
  21538. height: math.unit(10, "nm")
  21539. },
  21540. {
  21541. name: "Micro floof",
  21542. height: math.unit(0.3, "m")
  21543. },
  21544. {
  21545. name: "Huggable softy boi",
  21546. height: math.unit(3.6576, "m"),
  21547. default: true
  21548. },
  21549. {
  21550. name: "Admirable floof",
  21551. height: math.unit(80, "meters")
  21552. },
  21553. {
  21554. name: "Gentle macro",
  21555. height: math.unit(300, "meters")
  21556. },
  21557. {
  21558. name: "Very careful floof",
  21559. height: math.unit(3200, "meters")
  21560. },
  21561. {
  21562. name: "The mega floof",
  21563. height: math.unit(36000, "meters")
  21564. },
  21565. {
  21566. name: "Giga-fur-Wicker",
  21567. height: math.unit(4800000, "meters")
  21568. },
  21569. {
  21570. name: "Licky world",
  21571. height: math.unit(20000000, "meters")
  21572. },
  21573. {
  21574. name: "Floofy cyan sun",
  21575. height: math.unit(1500000000, "meters")
  21576. },
  21577. {
  21578. name: "Milky Wicker",
  21579. height: math.unit(1000000000000000000000, "meters")
  21580. },
  21581. {
  21582. name: "The observing Wicker",
  21583. height: math.unit(999999999999999999999999999, "meters")
  21584. },
  21585. ]
  21586. ))
  21587. characterMakers.push(() => makeCharacter(
  21588. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21589. {
  21590. front: {
  21591. height: math.unit(5 + 9 / 12, "feet"),
  21592. weight: math.unit(150, "lb"),
  21593. name: "Front",
  21594. image: {
  21595. source: "./media/characters/arokha-sieyes/front.svg",
  21596. extra: 1425 / 1284,
  21597. bottom: 0.05
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Normal",
  21604. height: math.unit(5 + 9 / 12, "feet")
  21605. },
  21606. {
  21607. name: "Macro",
  21608. height: math.unit(30, "meters"),
  21609. default: true
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(6, "feet"),
  21618. weight: math.unit(180, "lb"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/arokh-sieyes/front.svg",
  21622. extra: 1830 / 1769,
  21623. bottom: 0.01
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Normal",
  21630. height: math.unit(6, "feet")
  21631. },
  21632. {
  21633. name: "Macro",
  21634. height: math.unit(30, "meters"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21641. {
  21642. side: {
  21643. height: math.unit(13 + 1 / 12, "feet"),
  21644. weight: math.unit(8.5, "tonnes"),
  21645. preyCapacity: math.unit(36, "people"),
  21646. name: "Side",
  21647. image: {
  21648. source: "./media/characters/goldeneye/side.svg",
  21649. extra: 1139/741,
  21650. bottom: 98/1237
  21651. }
  21652. },
  21653. front: {
  21654. height: math.unit(5.1, "feet"),
  21655. weight: math.unit(8.5, "tonnes"),
  21656. preyCapacity: math.unit(36, "people"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/goldeneye/front.svg",
  21660. extra: 635/365,
  21661. bottom: 598/1233
  21662. }
  21663. },
  21664. maw: {
  21665. height: math.unit(6.6, "feet"),
  21666. name: "Maw",
  21667. image: {
  21668. source: "./media/characters/goldeneye/maw.svg"
  21669. }
  21670. },
  21671. headFront: {
  21672. height: math.unit(8, "feet"),
  21673. name: "Head (Front)",
  21674. image: {
  21675. source: "./media/characters/goldeneye/head-front.svg"
  21676. }
  21677. },
  21678. headSide: {
  21679. height: math.unit(6, "feet"),
  21680. name: "Head (Side)",
  21681. image: {
  21682. source: "./media/characters/goldeneye/head-side.svg"
  21683. }
  21684. },
  21685. headBack: {
  21686. height: math.unit(8, "feet"),
  21687. name: "Head (Back)",
  21688. image: {
  21689. source: "./media/characters/goldeneye/head-back.svg"
  21690. }
  21691. },
  21692. paw: {
  21693. height: math.unit(3.4, "feet"),
  21694. name: "Paw",
  21695. image: {
  21696. source: "./media/characters/goldeneye/paw.svg"
  21697. }
  21698. },
  21699. toering: {
  21700. height: math.unit(0.45, "feet"),
  21701. name: "Toering",
  21702. image: {
  21703. source: "./media/characters/goldeneye/toering.svg"
  21704. }
  21705. },
  21706. eyes: {
  21707. height: math.unit(0.5, "feet"),
  21708. name: "Eyes",
  21709. image: {
  21710. source: "./media/characters/goldeneye/eyes.svg"
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(13 + 1 / 12, "feet"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21724. {
  21725. front: {
  21726. height: math.unit(6 + 1 / 12, "feet"),
  21727. weight: math.unit(210, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/leonardo-lycheborne/front.svg",
  21731. extra: 776/723,
  21732. bottom: 34/810
  21733. }
  21734. },
  21735. side: {
  21736. height: math.unit(6 + 1 / 12, "feet"),
  21737. weight: math.unit(210, "lb"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/leonardo-lycheborne/side.svg",
  21741. extra: 780/728,
  21742. bottom: 12/792
  21743. }
  21744. },
  21745. back: {
  21746. height: math.unit(6 + 1 / 12, "feet"),
  21747. weight: math.unit(210, "lb"),
  21748. name: "Back",
  21749. image: {
  21750. source: "./media/characters/leonardo-lycheborne/back.svg",
  21751. extra: 775/721,
  21752. bottom: 17/792
  21753. }
  21754. },
  21755. hand: {
  21756. height: math.unit(1.08, "feet"),
  21757. name: "Hand",
  21758. image: {
  21759. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21760. }
  21761. },
  21762. foot: {
  21763. height: math.unit(1.32, "feet"),
  21764. name: "Foot",
  21765. image: {
  21766. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21767. }
  21768. },
  21769. maw: {
  21770. height: math.unit(1, "feet"),
  21771. name: "Maw",
  21772. image: {
  21773. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21774. }
  21775. },
  21776. were: {
  21777. height: math.unit(20, "feet"),
  21778. weight: math.unit(7800, "lb"),
  21779. name: "Were",
  21780. image: {
  21781. source: "./media/characters/leonardo-lycheborne/were.svg",
  21782. extra: 1224/1165,
  21783. bottom: 72/1296
  21784. }
  21785. },
  21786. feral: {
  21787. height: math.unit(7.5, "feet"),
  21788. weight: math.unit(600, "lb"),
  21789. name: "Feral",
  21790. image: {
  21791. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21792. extra: 797/702,
  21793. bottom: 139/936
  21794. }
  21795. },
  21796. taur: {
  21797. height: math.unit(11, "feet"),
  21798. weight: math.unit(3300, "lb"),
  21799. name: "Taur",
  21800. image: {
  21801. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21802. extra: 1271/1197,
  21803. bottom: 47/1318
  21804. }
  21805. },
  21806. barghest: {
  21807. height: math.unit(11, "feet"),
  21808. weight: math.unit(1300, "lb"),
  21809. name: "Barghest",
  21810. image: {
  21811. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21812. extra: 1291/1204,
  21813. bottom: 37/1328
  21814. }
  21815. },
  21816. dick: {
  21817. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21818. name: "Dick",
  21819. image: {
  21820. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21821. }
  21822. },
  21823. dickWere: {
  21824. height: math.unit((20) / 3.8, "feet"),
  21825. name: "Dick (Were)",
  21826. image: {
  21827. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(6 + 1 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(10, "feet"),
  21844. weight: math.unit(350, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/jet/front.svg",
  21848. extra: 2050 / 1980,
  21849. bottom: 0.013
  21850. }
  21851. },
  21852. back: {
  21853. height: math.unit(10, "feet"),
  21854. weight: math.unit(350, "lb"),
  21855. name: "Back",
  21856. image: {
  21857. source: "./media/characters/jet/back.svg",
  21858. extra: 2050 / 1980,
  21859. bottom: 0.013
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Micro",
  21866. height: math.unit(6, "inches")
  21867. },
  21868. {
  21869. name: "Normal",
  21870. height: math.unit(10, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Macro",
  21875. height: math.unit(100, "feet")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(15, "feet"),
  21884. weight: math.unit(2800, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/tanarath/front.svg",
  21888. extra: 2392 / 2220,
  21889. bottom: 0.03
  21890. }
  21891. },
  21892. back: {
  21893. height: math.unit(15, "feet"),
  21894. weight: math.unit(2800, "lb"),
  21895. name: "Back",
  21896. image: {
  21897. source: "./media/characters/tanarath/back.svg",
  21898. extra: 2392 / 2220,
  21899. bottom: 0.03
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(15, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(7 + 1 / 12, "feet"),
  21916. weight: math.unit(175, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/patty-cattybatty/front.svg",
  21920. extra: 908 / 874,
  21921. bottom: 0.025
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Micro",
  21928. height: math.unit(1, "inch")
  21929. },
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(7 + 1 / 12, "feet")
  21933. },
  21934. {
  21935. name: "Mini Macro",
  21936. height: math.unit(155, "feet")
  21937. },
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(1077, "feet")
  21941. },
  21942. {
  21943. name: "Mega Macro",
  21944. height: math.unit(47650, "feet"),
  21945. default: true
  21946. },
  21947. {
  21948. name: "Giga Macro",
  21949. height: math.unit(440, "miles")
  21950. },
  21951. {
  21952. name: "Tera Macro",
  21953. height: math.unit(8700, "miles")
  21954. },
  21955. {
  21956. name: "Planetary Macro",
  21957. height: math.unit(32700, "miles")
  21958. },
  21959. {
  21960. name: "Solar Macro",
  21961. height: math.unit(550000, "miles")
  21962. },
  21963. {
  21964. name: "Celestial Macro",
  21965. height: math.unit(2.5, "AU")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(4 + 5 / 12, "feet"),
  21974. weight: math.unit(90, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/cappu/front.svg",
  21978. extra: 1247 / 1152,
  21979. bottom: 0.012
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(4 + 5 / 12, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21993. {
  21994. frontDressed: {
  21995. height: math.unit(70, "cm"),
  21996. weight: math.unit(6, "kg"),
  21997. name: "Front (Dressed)",
  21998. image: {
  21999. source: "./media/characters/sebi/front-dressed.svg",
  22000. extra: 713.5 / 686.5,
  22001. bottom: 0.003
  22002. }
  22003. },
  22004. front: {
  22005. height: math.unit(70, "cm"),
  22006. weight: math.unit(5, "kg"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/sebi/front.svg",
  22010. extra: 713.5 / 686.5,
  22011. bottom: 0.003
  22012. }
  22013. }
  22014. },
  22015. [
  22016. {
  22017. name: "Normal",
  22018. height: math.unit(70, "cm"),
  22019. default: true
  22020. },
  22021. {
  22022. name: "Macro",
  22023. height: math.unit(8, "meters")
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(6, "feet"),
  22032. weight: math.unit(150, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/typhek/front.svg",
  22036. extra: 1948 / 1929,
  22037. bottom: 0.025
  22038. }
  22039. },
  22040. side: {
  22041. height: math.unit(6, "feet"),
  22042. weight: math.unit(150, "lb"),
  22043. name: "Side",
  22044. image: {
  22045. source: "./media/characters/typhek/side.svg",
  22046. extra: 2034 / 2010,
  22047. bottom: 0.003
  22048. }
  22049. },
  22050. back: {
  22051. height: math.unit(6, "feet"),
  22052. weight: math.unit(150, "lb"),
  22053. name: "Back",
  22054. image: {
  22055. source: "./media/characters/typhek/back.svg",
  22056. extra: 2005 / 1978,
  22057. bottom: 0.004
  22058. }
  22059. },
  22060. palm: {
  22061. height: math.unit(1.2, "feet"),
  22062. name: "Palm",
  22063. image: {
  22064. source: "./media/characters/typhek/palm.svg"
  22065. }
  22066. },
  22067. fist: {
  22068. height: math.unit(1.1, "feet"),
  22069. name: "Fist",
  22070. image: {
  22071. source: "./media/characters/typhek/fist.svg"
  22072. }
  22073. },
  22074. foot: {
  22075. height: math.unit(1.57, "feet"),
  22076. name: "Foot",
  22077. image: {
  22078. source: "./media/characters/typhek/foot.svg"
  22079. }
  22080. },
  22081. sole: {
  22082. height: math.unit(2.05, "feet"),
  22083. name: "Sole",
  22084. image: {
  22085. source: "./media/characters/typhek/sole.svg"
  22086. }
  22087. },
  22088. },
  22089. [
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(40, "stories"),
  22093. default: true
  22094. },
  22095. {
  22096. name: "Megamacro",
  22097. height: math.unit(1, "mile")
  22098. },
  22099. {
  22100. name: "Gigamacro",
  22101. height: math.unit(4000, "solarradii")
  22102. },
  22103. {
  22104. name: "Universal",
  22105. height: math.unit(1.1, "universes")
  22106. }
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22111. {
  22112. side: {
  22113. height: math.unit(5 + 7 / 12, "feet"),
  22114. weight: math.unit(150, "lb"),
  22115. name: "Side",
  22116. image: {
  22117. source: "./media/characters/kassy/side.svg",
  22118. extra: 1280 / 1225,
  22119. bottom: 0.002
  22120. }
  22121. },
  22122. front: {
  22123. height: math.unit(5 + 7 / 12, "feet"),
  22124. weight: math.unit(150, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/kassy/front.svg",
  22128. extra: 1280 / 1225,
  22129. bottom: 0.025
  22130. }
  22131. },
  22132. back: {
  22133. height: math.unit(5 + 7 / 12, "feet"),
  22134. weight: math.unit(150, "lb"),
  22135. name: "Back",
  22136. image: {
  22137. source: "./media/characters/kassy/back.svg",
  22138. extra: 1280 / 1225,
  22139. bottom: 0.002
  22140. }
  22141. },
  22142. foot: {
  22143. height: math.unit(1.266, "feet"),
  22144. name: "Foot",
  22145. image: {
  22146. source: "./media/characters/kassy/foot.svg"
  22147. }
  22148. },
  22149. },
  22150. [
  22151. {
  22152. name: "Normal",
  22153. height: math.unit(5 + 7 / 12, "feet")
  22154. },
  22155. {
  22156. name: "Macro",
  22157. height: math.unit(137, "feet"),
  22158. default: true
  22159. },
  22160. {
  22161. name: "Megamacro",
  22162. height: math.unit(1, "mile")
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(6 + 1 / 12, "feet"),
  22171. weight: math.unit(200, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/neil/front.svg",
  22175. extra: 1326 / 1250,
  22176. bottom: 0.023
  22177. }
  22178. },
  22179. },
  22180. [
  22181. {
  22182. name: "Normal",
  22183. height: math.unit(6 + 1 / 12, "feet"),
  22184. default: true
  22185. },
  22186. {
  22187. name: "Macro",
  22188. height: math.unit(200, "feet")
  22189. },
  22190. ]
  22191. ))
  22192. characterMakers.push(() => makeCharacter(
  22193. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22194. {
  22195. front: {
  22196. height: math.unit(5 + 9 / 12, "feet"),
  22197. weight: math.unit(190, "lb"),
  22198. name: "Front",
  22199. image: {
  22200. source: "./media/characters/atticus/front.svg",
  22201. extra: 2934 / 2785,
  22202. bottom: 0.025
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Normal",
  22209. height: math.unit(5 + 9 / 12, "feet"),
  22210. default: true
  22211. },
  22212. {
  22213. name: "Macro",
  22214. height: math.unit(180, "feet")
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22220. {
  22221. side: {
  22222. height: math.unit(9, "feet"),
  22223. weight: math.unit(650, "lb"),
  22224. name: "Side",
  22225. image: {
  22226. source: "./media/characters/milo/side.svg",
  22227. extra: 2644 / 2310,
  22228. bottom: 0.032
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(9, "feet"),
  22236. default: true
  22237. },
  22238. {
  22239. name: "Macro",
  22240. height: math.unit(300, "feet")
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22246. {
  22247. side: {
  22248. height: math.unit(8, "meters"),
  22249. weight: math.unit(90000, "kg"),
  22250. name: "Side",
  22251. image: {
  22252. source: "./media/characters/ijzer/side.svg",
  22253. extra: 2756 / 1600,
  22254. bottom: 0.01
  22255. }
  22256. },
  22257. },
  22258. [
  22259. {
  22260. name: "Small",
  22261. height: math.unit(3, "meters")
  22262. },
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(8, "meters"),
  22266. default: true
  22267. },
  22268. {
  22269. name: "Normal+",
  22270. height: math.unit(10, "meters")
  22271. },
  22272. {
  22273. name: "Bigger",
  22274. height: math.unit(24, "meters")
  22275. },
  22276. {
  22277. name: "Huge",
  22278. height: math.unit(80, "meters")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(6 + 2 / 12, "feet"),
  22287. weight: math.unit(153, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/luca-cervicum/front.svg",
  22291. extra: 370 / 327,
  22292. bottom: 0.015
  22293. }
  22294. },
  22295. back: {
  22296. height: math.unit(6 + 2 / 12, "feet"),
  22297. weight: math.unit(153, "lb"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/luca-cervicum/back.svg",
  22301. extra: 367 / 333,
  22302. bottom: 0.005
  22303. }
  22304. },
  22305. frontGear: {
  22306. height: math.unit(6 + 2 / 12, "feet"),
  22307. weight: math.unit(173, "lb"),
  22308. name: "Front (Gear)",
  22309. image: {
  22310. source: "./media/characters/luca-cervicum/front-gear.svg",
  22311. extra: 377 / 333,
  22312. bottom: 0.006
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(6 + 2 / 12, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(6 + 1 / 12, "feet"),
  22329. weight: math.unit(304, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/oliver/front.svg",
  22333. extra: 157 / 143,
  22334. bottom: 0.08
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(6 + 1 / 12, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(5 + 7 / 12, "feet"),
  22351. weight: math.unit(140, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/shane/front.svg",
  22355. extra: 304 / 289,
  22356. bottom: 0.005
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5 + 7 / 12, "feet"),
  22364. default: true
  22365. },
  22366. ]
  22367. ))
  22368. characterMakers.push(() => makeCharacter(
  22369. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22370. {
  22371. front: {
  22372. height: math.unit(5 + 9 / 12, "feet"),
  22373. weight: math.unit(178, "lb"),
  22374. name: "Front",
  22375. image: {
  22376. source: "./media/characters/shin/front.svg",
  22377. extra: 159 / 151,
  22378. bottom: 0.015
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(5 + 9 / 12, "feet"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22392. {
  22393. front: {
  22394. height: math.unit(5 + 10 / 12, "feet"),
  22395. weight: math.unit(168, "lb"),
  22396. name: "Front",
  22397. image: {
  22398. source: "./media/characters/xerxes/front.svg",
  22399. extra: 282 / 260,
  22400. bottom: 0.045
  22401. }
  22402. },
  22403. },
  22404. [
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(5 + 10 / 12, "feet"),
  22408. default: true
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(6 + 7 / 12, "feet"),
  22417. weight: math.unit(208, "lb"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/chaska/front.svg",
  22421. extra: 332 / 319,
  22422. bottom: 0.015
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Normal",
  22429. height: math.unit(6 + 7 / 12, "feet"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(5 + 8 / 12, "feet"),
  22439. weight: math.unit(208, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/enuk/front.svg",
  22443. extra: 437 / 406,
  22444. bottom: 0.02
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(5 + 8 / 12, "feet"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22458. {
  22459. front: {
  22460. height: math.unit(5 + 10 / 12, "feet"),
  22461. weight: math.unit(252, "lb"),
  22462. name: "Front",
  22463. image: {
  22464. source: "./media/characters/bruun/front.svg",
  22465. extra: 197 / 187,
  22466. bottom: 0.012
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(5 + 10 / 12, "feet"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(6 + 10 / 12, "feet"),
  22483. weight: math.unit(255, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/alexeev/front.svg",
  22487. extra: 213 / 200,
  22488. bottom: 0.05
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(6 + 10 / 12, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(2 + 8 / 12, "feet"),
  22505. weight: math.unit(22, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/evelyn/front.svg",
  22509. extra: 208 / 180
  22510. }
  22511. },
  22512. },
  22513. [
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(2 + 8 / 12, "feet"),
  22517. default: true
  22518. },
  22519. ]
  22520. ))
  22521. characterMakers.push(() => makeCharacter(
  22522. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22523. {
  22524. front: {
  22525. height: math.unit(5 + 9 / 12, "feet"),
  22526. weight: math.unit(139, "lb"),
  22527. name: "Front",
  22528. image: {
  22529. source: "./media/characters/inca/front.svg",
  22530. extra: 294 / 291,
  22531. bottom: 0.03
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Normal",
  22538. height: math.unit(5 + 9 / 12, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(6 + 3 / 12, "feet"),
  22548. weight: math.unit(185, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/mera/front.svg",
  22552. extra: 291 / 277,
  22553. bottom: 0.03
  22554. }
  22555. },
  22556. },
  22557. [
  22558. {
  22559. name: "Normal",
  22560. height: math.unit(6 + 3 / 12, "feet"),
  22561. default: true
  22562. },
  22563. ]
  22564. ))
  22565. characterMakers.push(() => makeCharacter(
  22566. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22567. {
  22568. front: {
  22569. height: math.unit(6 + 7 / 12, "feet"),
  22570. weight: math.unit(160, "lb"),
  22571. name: "Front",
  22572. image: {
  22573. source: "./media/characters/ceres/front.svg",
  22574. extra: 1023 / 950,
  22575. bottom: 0.027
  22576. }
  22577. },
  22578. back: {
  22579. height: math.unit(6 + 7 / 12, "feet"),
  22580. weight: math.unit(160, "lb"),
  22581. name: "Back",
  22582. image: {
  22583. source: "./media/characters/ceres/back.svg",
  22584. extra: 1023 / 950
  22585. }
  22586. },
  22587. },
  22588. [
  22589. {
  22590. name: "Normal",
  22591. height: math.unit(6 + 7 / 12, "feet"),
  22592. default: true
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(5 + 10 / 12, "feet"),
  22601. weight: math.unit(150, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/kris/front.svg",
  22605. extra: 885 / 803,
  22606. bottom: 0.03
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Normal",
  22613. height: math.unit(5 + 10 / 12, "feet"),
  22614. default: true
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22620. {
  22621. dragon_front: {
  22622. height: math.unit(5, "feet"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/taluthus/dragon-front.svg",
  22626. extra: 1203/1098,
  22627. bottom: 46/1249
  22628. },
  22629. form: "dragon",
  22630. default: true
  22631. },
  22632. dragon_maw: {
  22633. height: math.unit(2.35, "feet"),
  22634. name: "Maw",
  22635. image: {
  22636. source: "./media/characters/taluthus/dragon-maw.svg"
  22637. },
  22638. form: "dragon",
  22639. },
  22640. kitsune_front: {
  22641. height: math.unit(7, "feet"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/taluthus/kitsune-front.svg",
  22645. extra: 900/841,
  22646. bottom: 65/965
  22647. },
  22648. form: "kitsune",
  22649. default: true
  22650. },
  22651. },
  22652. [
  22653. {
  22654. name: "Normal",
  22655. height: math.unit(5, "feet"),
  22656. form: "dragon",
  22657. default: true,
  22658. },
  22659. {
  22660. name: "Normal",
  22661. height: math.unit(7, "feet"),
  22662. form: "kitsune",
  22663. default: true
  22664. },
  22665. {
  22666. name: "Macro",
  22667. height: math.unit(300, "feet"),
  22668. allForms: true
  22669. },
  22670. ],
  22671. {
  22672. "dragon": {
  22673. name: "Dragon",
  22674. default: true
  22675. },
  22676. "kitsune": {
  22677. name: "Kitsune",
  22678. },
  22679. }
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(5 + 9 / 12, "feet"),
  22686. weight: math.unit(145, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/dawn/front.svg",
  22690. extra: 2094 / 2016,
  22691. bottom: 0.025
  22692. }
  22693. },
  22694. back: {
  22695. height: math.unit(5 + 9 / 12, "feet"),
  22696. weight: math.unit(160, "lb"),
  22697. name: "Back",
  22698. image: {
  22699. source: "./media/characters/dawn/back.svg",
  22700. extra: 2112 / 2080,
  22701. bottom: 0.005
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(6 + 7 / 12, "feet"),
  22709. default: true
  22710. },
  22711. ]
  22712. ))
  22713. characterMakers.push(() => makeCharacter(
  22714. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22715. {
  22716. anthro: {
  22717. height: math.unit(8 + 3 / 12, "feet"),
  22718. weight: math.unit(450, "lb"),
  22719. name: "Anthro",
  22720. image: {
  22721. source: "./media/characters/arador/anthro.svg",
  22722. extra: 1835 / 1718,
  22723. bottom: 0.025
  22724. }
  22725. },
  22726. feral: {
  22727. height: math.unit(4, "feet"),
  22728. weight: math.unit(200, "lb"),
  22729. name: "Feral",
  22730. image: {
  22731. source: "./media/characters/arador/feral.svg",
  22732. extra: 1683 / 1514,
  22733. bottom: 0.07
  22734. }
  22735. },
  22736. },
  22737. [
  22738. {
  22739. name: "Normal",
  22740. height: math.unit(8 + 3 / 12, "feet")
  22741. },
  22742. {
  22743. name: "Macro",
  22744. height: math.unit(82.5, "feet"),
  22745. default: true
  22746. },
  22747. ]
  22748. ))
  22749. characterMakers.push(() => makeCharacter(
  22750. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22751. {
  22752. front: {
  22753. height: math.unit(5 + 10 / 12, "feet"),
  22754. weight: math.unit(125, "lb"),
  22755. name: "Front",
  22756. image: {
  22757. source: "./media/characters/dharsi/front.svg",
  22758. extra: 716 / 630,
  22759. bottom: 0.035
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Nano",
  22766. height: math.unit(100, "nm")
  22767. },
  22768. {
  22769. name: "Micro",
  22770. height: math.unit(2, "inches")
  22771. },
  22772. {
  22773. name: "Normal",
  22774. height: math.unit(5 + 10 / 12, "feet"),
  22775. default: true
  22776. },
  22777. {
  22778. name: "Macro",
  22779. height: math.unit(1000, "feet")
  22780. },
  22781. {
  22782. name: "Megamacro",
  22783. height: math.unit(10, "miles")
  22784. },
  22785. {
  22786. name: "Gigamacro",
  22787. height: math.unit(3000, "miles")
  22788. },
  22789. {
  22790. name: "Teramacro",
  22791. height: math.unit(500000, "miles")
  22792. },
  22793. {
  22794. name: "Teramacro+",
  22795. height: math.unit(30, "galaxies")
  22796. },
  22797. ]
  22798. ))
  22799. characterMakers.push(() => makeCharacter(
  22800. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22801. {
  22802. front: {
  22803. height: math.unit(6, "feet"),
  22804. weight: math.unit(150, "lb"),
  22805. name: "Front",
  22806. image: {
  22807. source: "./media/characters/deathy/front.svg",
  22808. extra: 1552 / 1463,
  22809. bottom: 0.025
  22810. }
  22811. },
  22812. side: {
  22813. height: math.unit(6, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Side",
  22816. image: {
  22817. source: "./media/characters/deathy/side.svg",
  22818. extra: 1604 / 1455,
  22819. bottom: 0.025
  22820. }
  22821. },
  22822. back: {
  22823. height: math.unit(6, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Back",
  22826. image: {
  22827. source: "./media/characters/deathy/back.svg",
  22828. extra: 1580 / 1463,
  22829. bottom: 0.005
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Micro",
  22836. height: math.unit(5, "millimeters")
  22837. },
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(6 + 5 / 12, "feet"),
  22841. default: true
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22847. {
  22848. front: {
  22849. height: math.unit(16, "feet"),
  22850. weight: math.unit(4000, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/juniper/front.svg",
  22854. bottom: 0.04
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Normal",
  22861. height: math.unit(16, "feet"),
  22862. default: true
  22863. },
  22864. ]
  22865. ))
  22866. characterMakers.push(() => makeCharacter(
  22867. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22868. {
  22869. front: {
  22870. height: math.unit(6, "feet"),
  22871. weight: math.unit(150, "lb"),
  22872. name: "Front",
  22873. image: {
  22874. source: "./media/characters/hipster/front.svg",
  22875. extra: 1312 / 1209,
  22876. bottom: 0.025
  22877. }
  22878. },
  22879. back: {
  22880. height: math.unit(6, "feet"),
  22881. weight: math.unit(150, "lb"),
  22882. name: "Back",
  22883. image: {
  22884. source: "./media/characters/hipster/back.svg",
  22885. extra: 1281 / 1196,
  22886. bottom: 0.01
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Micro",
  22893. height: math.unit(1, "mm")
  22894. },
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(4, "inches"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(500, "feet")
  22903. },
  22904. {
  22905. name: "Megamacro",
  22906. height: math.unit(1000, "miles")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(6, "feet"),
  22915. weight: math.unit(150, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/tendirmuldr/front.svg",
  22919. extra: 1878 / 1772,
  22920. bottom: 0.015
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Megamacro",
  22927. height: math.unit(1500, "miles"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22934. {
  22935. front: {
  22936. height: math.unit(14, "feet"),
  22937. weight: math.unit(12000, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/mort/front.svg",
  22941. extra: 365 / 318,
  22942. bottom: 0.01
  22943. }
  22944. },
  22945. side: {
  22946. height: math.unit(14, "feet"),
  22947. weight: math.unit(12000, "lb"),
  22948. name: "Side",
  22949. image: {
  22950. source: "./media/characters/mort/side.svg",
  22951. extra: 365 / 318,
  22952. bottom: 0.052
  22953. },
  22954. default: true
  22955. },
  22956. back: {
  22957. height: math.unit(14, "feet"),
  22958. weight: math.unit(12000, "lb"),
  22959. name: "Back",
  22960. image: {
  22961. source: "./media/characters/mort/back.svg",
  22962. extra: 371 / 332,
  22963. bottom: 0.18
  22964. }
  22965. },
  22966. },
  22967. [
  22968. {
  22969. name: "Normal",
  22970. height: math.unit(14, "feet"),
  22971. default: true
  22972. },
  22973. ]
  22974. ))
  22975. characterMakers.push(() => makeCharacter(
  22976. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22977. {
  22978. front: {
  22979. height: math.unit(8, "feet"),
  22980. weight: math.unit(1, "ton"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/lycoa/front.svg",
  22984. extra: 1836/1728,
  22985. bottom: 81/1917
  22986. }
  22987. },
  22988. back: {
  22989. height: math.unit(8, "feet"),
  22990. weight: math.unit(1, "ton"),
  22991. name: "Back",
  22992. image: {
  22993. source: "./media/characters/lycoa/back.svg",
  22994. extra: 1785/1720,
  22995. bottom: 91/1876
  22996. }
  22997. },
  22998. head: {
  22999. height: math.unit(1.6243, "feet"),
  23000. name: "Head",
  23001. image: {
  23002. source: "./media/characters/lycoa/head.svg",
  23003. extra: 1011/782,
  23004. bottom: 0/1011
  23005. }
  23006. },
  23007. tailmaw: {
  23008. height: math.unit(1.9, "feet"),
  23009. name: "Tailmaw",
  23010. image: {
  23011. source: "./media/characters/lycoa/tailmaw.svg"
  23012. }
  23013. },
  23014. tentacles: {
  23015. height: math.unit(2.1, "feet"),
  23016. name: "Tentacles",
  23017. image: {
  23018. source: "./media/characters/lycoa/tentacles.svg"
  23019. }
  23020. },
  23021. dick: {
  23022. height: math.unit(1.73, "feet"),
  23023. name: "Dick",
  23024. image: {
  23025. source: "./media/characters/lycoa/dick.svg"
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(8, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Macro",
  23037. height: math.unit(30, "feet")
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  23043. {
  23044. front: {
  23045. height: math.unit(4 + 2 / 12, "feet"),
  23046. weight: math.unit(70, "lb"),
  23047. name: "Front",
  23048. image: {
  23049. source: "./media/characters/naldara/front.svg",
  23050. extra: 1664/1387,
  23051. bottom: 81/1745
  23052. },
  23053. form: "anthro",
  23054. default: true
  23055. },
  23056. naga: {
  23057. height: math.unit(20, "feet"),
  23058. weight: math.unit(15000, "kg"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/naldara/naga.svg",
  23062. extra: 1590/1396,
  23063. bottom: 285/1875
  23064. },
  23065. form: "naga",
  23066. default: true
  23067. },
  23068. },
  23069. [
  23070. {
  23071. name: "Normal",
  23072. height: math.unit(4 + 2 / 12, "feet"),
  23073. form: "anthro",
  23074. default: true
  23075. },
  23076. {
  23077. name: "Normal",
  23078. height: math.unit(20, "feet"),
  23079. form: "naga",
  23080. default: true
  23081. },
  23082. ],
  23083. {
  23084. "anthro": {
  23085. name: "Anthro",
  23086. default: true
  23087. },
  23088. "naga": {
  23089. name: "Naga"
  23090. }
  23091. }
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23095. {
  23096. front: {
  23097. height: math.unit(13 + 7 / 12, "feet"),
  23098. weight: math.unit(1500, "lb"),
  23099. name: "Front",
  23100. image: {
  23101. source: "./media/characters/briar/front.svg",
  23102. extra: 1223/1157,
  23103. bottom: 123/1346
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(13 + 7 / 12, "feet"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23117. {
  23118. side: {
  23119. height: math.unit(16, "feet"),
  23120. weight: math.unit(500, "lb"),
  23121. name: "Side",
  23122. image: {
  23123. source: "./media/characters/vanguard/side.svg",
  23124. extra: 1022/914,
  23125. bottom: 30/1052
  23126. }
  23127. },
  23128. sideAlt: {
  23129. height: math.unit(10, "feet"),
  23130. weight: math.unit(500, "lb"),
  23131. name: "Side (Alt)",
  23132. image: {
  23133. source: "./media/characters/vanguard/side-alt.svg",
  23134. extra: 502 / 425,
  23135. bottom: 0.087
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(17.71, "feet"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(7.5, "feet"),
  23152. weight: math.unit(2, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/artemis/work-safe-front.svg",
  23156. extra: 1192 / 1075,
  23157. bottom: 0.07
  23158. },
  23159. form: "work-safe",
  23160. default: true
  23161. },
  23162. frontNsfw: {
  23163. height: math.unit(7.5, "feet"),
  23164. weight: math.unit(2, "lb"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/artemis/calibrating-front.svg",
  23168. extra: 1192 / 1075,
  23169. bottom: 0.07
  23170. },
  23171. form: "calibrating",
  23172. default: true
  23173. },
  23174. frontNsfwer: {
  23175. height: math.unit(7.5, "feet"),
  23176. weight: math.unit(2, "lb"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/artemis/oversize-load-front.svg",
  23180. extra: 1192 / 1075,
  23181. bottom: 0.07
  23182. },
  23183. form: "oversize-load",
  23184. default: true
  23185. },
  23186. side: {
  23187. height: math.unit(7.5, "feet"),
  23188. weight: math.unit(2, "lb"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/artemis/work-safe-side.svg",
  23192. extra: 1192 / 1075,
  23193. bottom: 0.07
  23194. },
  23195. form: "work-safe"
  23196. },
  23197. sideNsfw: {
  23198. height: math.unit(7.5, "feet"),
  23199. weight: math.unit(2, "lb"),
  23200. name: "Side",
  23201. image: {
  23202. source: "./media/characters/artemis/calibrating-side.svg",
  23203. extra: 1192 / 1075,
  23204. bottom: 0.07
  23205. },
  23206. form: "calibrating"
  23207. },
  23208. sideNsfwer: {
  23209. height: math.unit(7.5, "feet"),
  23210. weight: math.unit(2, "lb"),
  23211. name: "Side",
  23212. image: {
  23213. source: "./media/characters/artemis/oversize-load-side.svg",
  23214. extra: 1192 / 1075,
  23215. bottom: 0.07
  23216. },
  23217. form: "oversize-load"
  23218. },
  23219. maw: {
  23220. height: math.unit(1.1, "feet"),
  23221. name: "Maw",
  23222. image: {
  23223. source: "./media/characters/artemis/maw.svg"
  23224. },
  23225. form: "work-safe"
  23226. },
  23227. stomach: {
  23228. height: math.unit(0.95, "feet"),
  23229. name: "Stomach",
  23230. image: {
  23231. source: "./media/characters/artemis/stomach.svg"
  23232. },
  23233. form: "work-safe"
  23234. },
  23235. dickCanine: {
  23236. height: math.unit(1, "feet"),
  23237. name: "Dick (Canine)",
  23238. image: {
  23239. source: "./media/characters/artemis/dick-canine.svg"
  23240. },
  23241. form: "calibrating"
  23242. },
  23243. dickEquine: {
  23244. height: math.unit(0.85, "feet"),
  23245. name: "Dick (Equine)",
  23246. image: {
  23247. source: "./media/characters/artemis/dick-equine.svg"
  23248. },
  23249. form: "calibrating"
  23250. },
  23251. dickExotic: {
  23252. height: math.unit(0.85, "feet"),
  23253. name: "Dick (Exotic)",
  23254. image: {
  23255. source: "./media/characters/artemis/dick-exotic.svg"
  23256. },
  23257. form: "calibrating"
  23258. },
  23259. dickCanineBigger: {
  23260. height: math.unit(1 * 1.33, "feet"),
  23261. name: "Dick (Canine)",
  23262. image: {
  23263. source: "./media/characters/artemis/dick-canine.svg"
  23264. },
  23265. form: "oversize-load"
  23266. },
  23267. dickEquineBigger: {
  23268. height: math.unit(0.85 * 1.33, "feet"),
  23269. name: "Dick (Equine)",
  23270. image: {
  23271. source: "./media/characters/artemis/dick-equine.svg"
  23272. },
  23273. form: "oversize-load"
  23274. },
  23275. dickExoticBigger: {
  23276. height: math.unit(0.85 * 1.33, "feet"),
  23277. name: "Dick (Exotic)",
  23278. image: {
  23279. source: "./media/characters/artemis/dick-exotic.svg"
  23280. },
  23281. form: "oversize-load"
  23282. },
  23283. },
  23284. [
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(7.5, "feet"),
  23288. form: "work-safe",
  23289. default: true
  23290. },
  23291. {
  23292. name: "Normal",
  23293. height: math.unit(7.5, "feet"),
  23294. form: "calibrating",
  23295. default: true
  23296. },
  23297. {
  23298. name: "Normal",
  23299. height: math.unit(7.5, "feet"),
  23300. form: "oversize-load",
  23301. default: true
  23302. },
  23303. {
  23304. name: "Enlarged",
  23305. height: math.unit(12, "feet"),
  23306. form: "work-safe",
  23307. },
  23308. {
  23309. name: "Enlarged",
  23310. height: math.unit(12, "feet"),
  23311. form: "calibrating",
  23312. },
  23313. {
  23314. name: "Enlarged",
  23315. height: math.unit(12, "feet"),
  23316. form: "oversize-load",
  23317. },
  23318. ],
  23319. {
  23320. "work-safe": {
  23321. name: "Work-Safe",
  23322. default: true
  23323. },
  23324. "calibrating": {
  23325. name: "Calibrating"
  23326. },
  23327. "oversize-load": {
  23328. name: "Oversize Load"
  23329. }
  23330. }
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(5 + 3 / 12, "feet"),
  23337. weight: math.unit(160, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/kira/front.svg",
  23341. extra: 906 / 786,
  23342. bottom: 0.01
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(5 + 3 / 12, "feet"),
  23347. weight: math.unit(160, "lb"),
  23348. name: "Back",
  23349. image: {
  23350. source: "./media/characters/kira/back.svg",
  23351. extra: 882 / 757,
  23352. bottom: 0.005
  23353. }
  23354. },
  23355. frontDressed: {
  23356. height: math.unit(5 + 3 / 12, "feet"),
  23357. weight: math.unit(160, "lb"),
  23358. name: "Front (Dressed)",
  23359. image: {
  23360. source: "./media/characters/kira/front-dressed.svg",
  23361. extra: 906 / 786,
  23362. bottom: 0.01
  23363. }
  23364. },
  23365. beans: {
  23366. height: math.unit(0.92, "feet"),
  23367. name: "Beans",
  23368. image: {
  23369. source: "./media/characters/kira/beans.svg"
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(5 + 3 / 12, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(5 + 4 / 12, "feet"),
  23386. weight: math.unit(145, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/scramble/front.svg",
  23390. extra: 763 / 727,
  23391. bottom: 0.05
  23392. }
  23393. },
  23394. back: {
  23395. height: math.unit(5 + 4 / 12, "feet"),
  23396. weight: math.unit(145, "lb"),
  23397. name: "Back",
  23398. image: {
  23399. source: "./media/characters/scramble/back.svg",
  23400. extra: 826 / 737,
  23401. bottom: 0.002
  23402. }
  23403. },
  23404. },
  23405. [
  23406. {
  23407. name: "Normal",
  23408. height: math.unit(5 + 4 / 12, "feet"),
  23409. default: true
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23415. {
  23416. side: {
  23417. height: math.unit(6 + 2 / 12, "feet"),
  23418. weight: math.unit(190, "lb"),
  23419. name: "Side",
  23420. image: {
  23421. source: "./media/characters/biscuit/side.svg",
  23422. extra: 858 / 791,
  23423. bottom: 0.044
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(6 + 2 / 12, "feet"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(5 + 2 / 12, "feet"),
  23440. weight: math.unit(120, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/poffin/front.svg",
  23444. extra: 786 / 680,
  23445. bottom: 0.005
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(5 + 2 / 12, "feet"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(6 + 3 / 12, "feet"),
  23462. weight: math.unit(519, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/dhari/front.svg",
  23466. extra: 1048 / 946,
  23467. bottom: 0.015
  23468. }
  23469. },
  23470. back: {
  23471. height: math.unit(6 + 3 / 12, "feet"),
  23472. weight: math.unit(519, "lb"),
  23473. name: "Back",
  23474. image: {
  23475. source: "./media/characters/dhari/back.svg",
  23476. extra: 1048 / 931,
  23477. bottom: 0.005
  23478. }
  23479. },
  23480. frontDressed: {
  23481. height: math.unit(6 + 3 / 12, "feet"),
  23482. weight: math.unit(519, "lb"),
  23483. name: "Front (Dressed)",
  23484. image: {
  23485. source: "./media/characters/dhari/front-dressed.svg",
  23486. extra: 1713 / 1546,
  23487. bottom: 0.02
  23488. }
  23489. },
  23490. backDressed: {
  23491. height: math.unit(6 + 3 / 12, "feet"),
  23492. weight: math.unit(519, "lb"),
  23493. name: "Back (Dressed)",
  23494. image: {
  23495. source: "./media/characters/dhari/back-dressed.svg",
  23496. extra: 1699 / 1537,
  23497. bottom: 0.01
  23498. }
  23499. },
  23500. maw: {
  23501. height: math.unit(0.95, "feet"),
  23502. name: "Maw",
  23503. image: {
  23504. source: "./media/characters/dhari/maw.svg"
  23505. }
  23506. },
  23507. wereFront: {
  23508. height: math.unit(12 + 8 / 12, "feet"),
  23509. weight: math.unit(4000, "lb"),
  23510. name: "Front (Were)",
  23511. image: {
  23512. source: "./media/characters/dhari/were-front.svg",
  23513. extra: 1065 / 969,
  23514. bottom: 0.015
  23515. }
  23516. },
  23517. wereBack: {
  23518. height: math.unit(12 + 8 / 12, "feet"),
  23519. weight: math.unit(4000, "lb"),
  23520. name: "Back (Were)",
  23521. image: {
  23522. source: "./media/characters/dhari/were-back.svg",
  23523. extra: 1065 / 969,
  23524. bottom: 0.012
  23525. }
  23526. },
  23527. wereMaw: {
  23528. height: math.unit(0.625, "meters"),
  23529. name: "Maw (Were)",
  23530. image: {
  23531. source: "./media/characters/dhari/were-maw.svg"
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(6 + 3 / 12, "feet"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23545. {
  23546. anthro: {
  23547. height: math.unit(5 + 7 / 12, "feet"),
  23548. weight: math.unit(175, "lb"),
  23549. name: "Anthro",
  23550. image: {
  23551. source: "./media/characters/rena-dyne/anthro.svg",
  23552. extra: 1849 / 1785,
  23553. bottom: 0.005
  23554. }
  23555. },
  23556. taur: {
  23557. height: math.unit(15 + 6 / 12, "feet"),
  23558. weight: math.unit(8000, "lb"),
  23559. name: "Taur",
  23560. image: {
  23561. source: "./media/characters/rena-dyne/taur.svg",
  23562. extra: 2315 / 2234,
  23563. bottom: 0.033
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(5 + 7 / 12, "feet"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(8, "feet"),
  23580. weight: math.unit(600, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/weremeep/front.svg",
  23584. extra: 970/849,
  23585. bottom: 7/977
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Normal",
  23592. height: math.unit(8, "feet"),
  23593. default: true
  23594. },
  23595. {
  23596. name: "Lorg",
  23597. height: math.unit(12, "feet")
  23598. },
  23599. {
  23600. name: "Oh Lawd She Comin'",
  23601. height: math.unit(20, "feet")
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23607. {
  23608. front: {
  23609. height: math.unit(4, "feet"),
  23610. weight: math.unit(90, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/reza/front.svg",
  23614. extra: 1183 / 1111,
  23615. bottom: 0.017
  23616. }
  23617. },
  23618. back: {
  23619. height: math.unit(4, "feet"),
  23620. weight: math.unit(90, "lb"),
  23621. name: "Back",
  23622. image: {
  23623. source: "./media/characters/reza/back.svg",
  23624. extra: 1183 / 1111,
  23625. bottom: 0.01
  23626. }
  23627. },
  23628. drake: {
  23629. height: math.unit(30, "feet"),
  23630. weight: math.unit(246960, "lb"),
  23631. name: "Drake",
  23632. image: {
  23633. source: "./media/characters/reza/drake.svg",
  23634. extra: 2350 / 2024,
  23635. bottom: 60.7 / 2403
  23636. }
  23637. },
  23638. },
  23639. [
  23640. {
  23641. name: "Normal",
  23642. height: math.unit(4, "feet"),
  23643. default: true
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23649. {
  23650. side: {
  23651. height: math.unit(15, "feet"),
  23652. weight: math.unit(14, "tons"),
  23653. name: "Side",
  23654. image: {
  23655. source: "./media/characters/athea/side.svg",
  23656. extra: 960 / 540,
  23657. bottom: 0.003
  23658. }
  23659. },
  23660. sitting: {
  23661. height: math.unit(6 * 2.85, "feet"),
  23662. weight: math.unit(14, "tons"),
  23663. name: "Sitting",
  23664. image: {
  23665. source: "./media/characters/athea/sitting.svg",
  23666. extra: 621 / 581,
  23667. bottom: 0.075
  23668. }
  23669. },
  23670. maw: {
  23671. height: math.unit(7.59498031496063, "feet"),
  23672. name: "Maw",
  23673. image: {
  23674. source: "./media/characters/athea/maw.svg"
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Lap Cat",
  23681. height: math.unit(2.5, "feet")
  23682. },
  23683. {
  23684. name: "Minimacro",
  23685. height: math.unit(15, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(120, "feet")
  23691. },
  23692. {
  23693. name: "Macro+",
  23694. height: math.unit(640, "feet")
  23695. },
  23696. {
  23697. name: "Colossus",
  23698. height: math.unit(2.2, "miles")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23704. {
  23705. front: {
  23706. height: math.unit(8 + 8 / 12, "feet"),
  23707. weight: math.unit(130, "kg"),
  23708. name: "Front",
  23709. image: {
  23710. source: "./media/characters/seroko/front.svg",
  23711. extra: 1385 / 1280,
  23712. bottom: 0.025
  23713. }
  23714. },
  23715. back: {
  23716. height: math.unit(8 + 8 / 12, "feet"),
  23717. weight: math.unit(130, "kg"),
  23718. name: "Back",
  23719. image: {
  23720. source: "./media/characters/seroko/back.svg",
  23721. extra: 1369 / 1238,
  23722. bottom: 0.018
  23723. }
  23724. },
  23725. frontDressed: {
  23726. height: math.unit(8 + 8 / 12, "feet"),
  23727. weight: math.unit(130, "kg"),
  23728. name: "Front (Dressed)",
  23729. image: {
  23730. source: "./media/characters/seroko/front-dressed.svg",
  23731. extra: 1366 / 1275,
  23732. bottom: 0.03
  23733. }
  23734. },
  23735. },
  23736. [
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(8 + 8 / 12, "feet"),
  23740. default: true
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(5.5, "feet"),
  23749. weight: math.unit(160, "lb"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/quatzi/front.svg",
  23753. extra: 2346 / 2242,
  23754. bottom: 0.015
  23755. }
  23756. },
  23757. },
  23758. [
  23759. {
  23760. name: "Normal",
  23761. height: math.unit(5.5, "feet"),
  23762. default: true
  23763. },
  23764. {
  23765. name: "Big",
  23766. height: math.unit(7.7, "feet")
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(5 + 11 / 12, "feet"),
  23775. weight: math.unit(180, "lb"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/sen/front.svg",
  23779. extra: 1321 / 1254,
  23780. bottom: 0.015
  23781. }
  23782. },
  23783. side: {
  23784. height: math.unit(5 + 11 / 12, "feet"),
  23785. weight: math.unit(180, "lb"),
  23786. name: "Side",
  23787. image: {
  23788. source: "./media/characters/sen/side.svg",
  23789. extra: 1321 / 1254,
  23790. bottom: 0.007
  23791. }
  23792. },
  23793. back: {
  23794. height: math.unit(5 + 11 / 12, "feet"),
  23795. weight: math.unit(180, "lb"),
  23796. name: "Back",
  23797. image: {
  23798. source: "./media/characters/sen/back.svg",
  23799. extra: 1321 / 1254
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(5 + 11 / 12, "feet"),
  23807. default: true
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(166.6, "cm"),
  23816. weight: math.unit(66.6, "kg"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/fruity/front.svg",
  23820. extra: 1510 / 1386,
  23821. bottom: 0.04
  23822. }
  23823. },
  23824. back: {
  23825. height: math.unit(166.6, "cm"),
  23826. weight: math.unit(66.6, "lb"),
  23827. name: "Back",
  23828. image: {
  23829. source: "./media/characters/fruity/back.svg",
  23830. extra: 1563 / 1435,
  23831. bottom: 0.005
  23832. }
  23833. },
  23834. },
  23835. [
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(166.6, "cm"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Demonic",
  23843. height: math.unit(166.6, "feet")
  23844. },
  23845. ]
  23846. ))
  23847. characterMakers.push(() => makeCharacter(
  23848. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23849. {
  23850. side: {
  23851. height: math.unit(10, "feet"),
  23852. weight: math.unit(500, "lb"),
  23853. name: "Side",
  23854. image: {
  23855. source: "./media/characters/zost/side.svg",
  23856. extra: 2870/2533,
  23857. bottom: 252/3122
  23858. }
  23859. },
  23860. mawFront: {
  23861. height: math.unit(1.08, "meters"),
  23862. name: "Maw (Front)",
  23863. image: {
  23864. source: "./media/characters/zost/maw-front.svg"
  23865. }
  23866. },
  23867. mawSide: {
  23868. height: math.unit(2.66, "feet"),
  23869. name: "Maw (Side)",
  23870. image: {
  23871. source: "./media/characters/zost/maw-side.svg"
  23872. }
  23873. },
  23874. wingspan: {
  23875. height: math.unit(7.4, "feet"),
  23876. name: "Wingspan",
  23877. image: {
  23878. source: "./media/characters/zost/wingspan.svg"
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(10, "feet"),
  23886. default: true
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(5 + 4 / 12, "feet"),
  23895. weight: math.unit(120, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/luci/front.svg",
  23899. extra: 1985 / 1884,
  23900. bottom: 0.04
  23901. }
  23902. },
  23903. back: {
  23904. height: math.unit(5 + 4 / 12, "feet"),
  23905. weight: math.unit(120, "lb"),
  23906. name: "Back",
  23907. image: {
  23908. source: "./media/characters/luci/back.svg",
  23909. extra: 1892 / 1791,
  23910. bottom: 0.002
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(5 + 4 / 12, "feet"),
  23918. default: true
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(1500, "feet"),
  23927. weight: math.unit(3.8e6, "tons"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/2th/front.svg",
  23931. extra: 3489 / 3350,
  23932. bottom: 0.1
  23933. }
  23934. },
  23935. foot: {
  23936. height: math.unit(461, "feet"),
  23937. name: "Foot",
  23938. image: {
  23939. source: "./media/characters/2th/foot.svg"
  23940. }
  23941. },
  23942. },
  23943. [
  23944. {
  23945. name: "\"Micro\"",
  23946. height: math.unit(15 + 7 / 12, "feet")
  23947. },
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(1500, "feet"),
  23951. default: true
  23952. },
  23953. {
  23954. name: "Macro",
  23955. height: math.unit(5000, "feet")
  23956. },
  23957. {
  23958. name: "Megamacro",
  23959. height: math.unit(15, "miles")
  23960. },
  23961. {
  23962. name: "Gigamacro",
  23963. height: math.unit(4000, "miles")
  23964. },
  23965. {
  23966. name: "Galactic",
  23967. height: math.unit(50, "AU")
  23968. },
  23969. ]
  23970. ))
  23971. characterMakers.push(() => makeCharacter(
  23972. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23973. {
  23974. front: {
  23975. height: math.unit(5 + 6 / 12, "feet"),
  23976. weight: math.unit(220, "lb"),
  23977. name: "Front",
  23978. image: {
  23979. source: "./media/characters/amethyst/front.svg",
  23980. extra: 2078 / 2040,
  23981. bottom: 0.045
  23982. }
  23983. },
  23984. back: {
  23985. height: math.unit(5 + 6 / 12, "feet"),
  23986. weight: math.unit(220, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/amethyst/back.svg",
  23990. extra: 2021 / 1989,
  23991. bottom: 0.02
  23992. }
  23993. },
  23994. },
  23995. [
  23996. {
  23997. name: "Normal",
  23998. height: math.unit(5 + 6 / 12, "feet"),
  23999. default: true
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(4 + 11 / 12, "feet"),
  24008. weight: math.unit(120, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/yumi-akiyama/front.svg",
  24012. extra: 2638/2432,
  24013. bottom: 70/2708
  24014. }
  24015. },
  24016. back: {
  24017. height: math.unit(4 + 11 / 12, "feet"),
  24018. weight: math.unit(120, "lb"),
  24019. name: "Back",
  24020. image: {
  24021. source: "./media/characters/yumi-akiyama/back.svg",
  24022. extra: 2502/2397,
  24023. bottom: 80/2582
  24024. }
  24025. },
  24026. casual: {
  24027. height: math.unit(4 + 11 / 12, "feet"),
  24028. weight: math.unit(120, "lb"),
  24029. name: "Casual",
  24030. image: {
  24031. source: "./media/characters/yumi-akiyama/casual.svg",
  24032. extra: 958/887,
  24033. bottom: 41/999
  24034. }
  24035. },
  24036. jammies: {
  24037. height: math.unit(4 + 11 / 12, "feet"),
  24038. weight: math.unit(120, "lb"),
  24039. name: "Jammies",
  24040. image: {
  24041. source: "./media/characters/yumi-akiyama/jammies.svg",
  24042. extra: 958/894,
  24043. bottom: 37/995
  24044. }
  24045. },
  24046. warmWeather: {
  24047. height: math.unit(4 + 11 / 12, "feet"),
  24048. weight: math.unit(120, "lb"),
  24049. name: "Warm Weather",
  24050. image: {
  24051. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  24052. extra: 929/865,
  24053. bottom: 76/1005
  24054. }
  24055. },
  24056. mouth: {
  24057. height: math.unit(0.35, "feet"),
  24058. name: "Mouth",
  24059. image: {
  24060. source: "./media/characters/yumi-akiyama/mouth.svg"
  24061. }
  24062. },
  24063. paws: {
  24064. height: math.unit(1.05, "feet"),
  24065. name: "Paws",
  24066. image: {
  24067. source: "./media/characters/yumi-akiyama/paws.svg"
  24068. }
  24069. },
  24070. cockRing: {
  24071. height: math.unit(0.225, "feet"),
  24072. name: "Cock Ring",
  24073. image: {
  24074. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Galactic",
  24081. height: math.unit(50, "galaxies"),
  24082. default: true
  24083. },
  24084. {
  24085. name: "Universal",
  24086. height: math.unit(100, "universes")
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(8, "feet"),
  24095. weight: math.unit(500, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/rifter-yrmori/front.svg",
  24099. extra: 1180 / 1125,
  24100. bottom: 0.02
  24101. }
  24102. },
  24103. back: {
  24104. height: math.unit(8, "feet"),
  24105. weight: math.unit(500, "lb"),
  24106. name: "Back",
  24107. image: {
  24108. source: "./media/characters/rifter-yrmori/back.svg",
  24109. extra: 1190 / 1145,
  24110. bottom: 0.001
  24111. }
  24112. },
  24113. wings: {
  24114. height: math.unit(7.75, "feet"),
  24115. weight: math.unit(500, "lb"),
  24116. name: "Wings",
  24117. image: {
  24118. source: "./media/characters/rifter-yrmori/wings.svg",
  24119. extra: 1357 / 1285
  24120. }
  24121. },
  24122. maw: {
  24123. height: math.unit(0.8, "feet"),
  24124. name: "Maw",
  24125. image: {
  24126. source: "./media/characters/rifter-yrmori/maw.svg"
  24127. }
  24128. },
  24129. mawfront: {
  24130. height: math.unit(1.45, "feet"),
  24131. name: "Maw (Front)",
  24132. image: {
  24133. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Normal",
  24140. height: math.unit(8, "feet"),
  24141. default: true
  24142. },
  24143. {
  24144. name: "Macro",
  24145. height: math.unit(42, "meters")
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24151. {
  24152. were: {
  24153. height: math.unit(25 + 6 / 12, "feet"),
  24154. weight: math.unit(10000, "lb"),
  24155. name: "Were",
  24156. image: {
  24157. source: "./media/characters/tahajin/were.svg",
  24158. extra: 801 / 770,
  24159. bottom: 0.042
  24160. }
  24161. },
  24162. aquatic: {
  24163. height: math.unit(6 + 4 / 12, "feet"),
  24164. weight: math.unit(160, "lb"),
  24165. name: "Aquatic",
  24166. image: {
  24167. source: "./media/characters/tahajin/aquatic.svg",
  24168. extra: 572 / 542,
  24169. bottom: 0.04
  24170. }
  24171. },
  24172. chow: {
  24173. height: math.unit(8 + 11 / 12, "feet"),
  24174. weight: math.unit(450, "lb"),
  24175. name: "Chow",
  24176. image: {
  24177. source: "./media/characters/tahajin/chow.svg",
  24178. extra: 660 / 640,
  24179. bottom: 0.015
  24180. }
  24181. },
  24182. demiNaga: {
  24183. height: math.unit(6 + 8 / 12, "feet"),
  24184. weight: math.unit(300, "lb"),
  24185. name: "Demi Naga",
  24186. image: {
  24187. source: "./media/characters/tahajin/demi-naga.svg",
  24188. extra: 643 / 615,
  24189. bottom: 0.1
  24190. }
  24191. },
  24192. data: {
  24193. height: math.unit(5, "inches"),
  24194. weight: math.unit(0.1, "lb"),
  24195. name: "Data",
  24196. image: {
  24197. source: "./media/characters/tahajin/data.svg"
  24198. }
  24199. },
  24200. fluu: {
  24201. height: math.unit(5 + 7 / 12, "feet"),
  24202. weight: math.unit(140, "lb"),
  24203. name: "Fluu",
  24204. image: {
  24205. source: "./media/characters/tahajin/fluu.svg",
  24206. extra: 628 / 592,
  24207. bottom: 0.02
  24208. }
  24209. },
  24210. starWarrior: {
  24211. height: math.unit(4 + 5 / 12, "feet"),
  24212. weight: math.unit(50, "lb"),
  24213. name: "Star Warrior",
  24214. image: {
  24215. source: "./media/characters/tahajin/star-warrior.svg"
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(25 + 6 / 12, "feet"),
  24223. default: true
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24229. {
  24230. front: {
  24231. height: math.unit(8, "feet"),
  24232. weight: math.unit(350, "lb"),
  24233. name: "Front",
  24234. image: {
  24235. source: "./media/characters/gabira/front.svg",
  24236. extra: 1261/1154,
  24237. bottom: 51/1312
  24238. }
  24239. },
  24240. back: {
  24241. height: math.unit(8, "feet"),
  24242. weight: math.unit(350, "lb"),
  24243. name: "Back",
  24244. image: {
  24245. source: "./media/characters/gabira/back.svg",
  24246. extra: 1265/1163,
  24247. bottom: 46/1311
  24248. }
  24249. },
  24250. head: {
  24251. height: math.unit(2.85, "feet"),
  24252. name: "Head",
  24253. image: {
  24254. source: "./media/characters/gabira/head.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(8, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(5 + 3 / 12, "feet"),
  24271. weight: math.unit(137, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/sasha-katraine/front.svg",
  24275. extra: 1745/1694,
  24276. bottom: 37/1782
  24277. }
  24278. },
  24279. back: {
  24280. height: math.unit(5 + 3 / 12, "feet"),
  24281. weight: math.unit(137, "lb"),
  24282. name: "Back",
  24283. image: {
  24284. source: "./media/characters/sasha-katraine/back.svg",
  24285. extra: 1776/1699,
  24286. bottom: 26/1802
  24287. }
  24288. },
  24289. },
  24290. [
  24291. {
  24292. name: "Micro",
  24293. height: math.unit(5, "inches")
  24294. },
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(5 + 3 / 12, "feet"),
  24298. default: true
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24304. {
  24305. side: {
  24306. height: math.unit(4, "inches"),
  24307. weight: math.unit(200, "grams"),
  24308. name: "Side",
  24309. image: {
  24310. source: "./media/characters/der/side.svg",
  24311. extra: 719 / 400,
  24312. bottom: 30.6 / 749.9187
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Micro",
  24319. height: math.unit(4, "inches"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24326. {
  24327. side: {
  24328. height: math.unit(30, "meters"),
  24329. weight: math.unit(700, "tonnes"),
  24330. name: "Side",
  24331. image: {
  24332. source: "./media/characters/fixerdragon/side.svg",
  24333. extra: (1293.0514 - 116.03) / 1106.86,
  24334. bottom: 116.03 / 1293.0514
  24335. }
  24336. },
  24337. },
  24338. [
  24339. {
  24340. name: "Planck",
  24341. height: math.unit(1.6e-35, "meters")
  24342. },
  24343. {
  24344. name: "Micro",
  24345. height: math.unit(0.4, "meters")
  24346. },
  24347. {
  24348. name: "Normal",
  24349. height: math.unit(30, "meters"),
  24350. default: true
  24351. },
  24352. {
  24353. name: "Megamacro",
  24354. height: math.unit(1.2, "megameters")
  24355. },
  24356. {
  24357. name: "Teramacro",
  24358. height: math.unit(130, "terameters")
  24359. },
  24360. {
  24361. name: "Yottamacro",
  24362. height: math.unit(6200, "yottameters")
  24363. },
  24364. ]
  24365. ));
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(8, "feet"),
  24371. weight: math.unit(250, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/kite/front.svg",
  24375. extra: 456/414,
  24376. bottom: 24/480
  24377. }
  24378. },
  24379. },
  24380. [
  24381. {
  24382. name: "Normal",
  24383. height: math.unit(8, "feet"),
  24384. default: true
  24385. },
  24386. {
  24387. name: "Macro",
  24388. height: math.unit(360, "feet")
  24389. },
  24390. {
  24391. name: "Megamacro",
  24392. height: math.unit(1500, "feet")
  24393. },
  24394. ]
  24395. ))
  24396. characterMakers.push(() => makeCharacter(
  24397. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24398. {
  24399. anthro_front: {
  24400. height: math.unit(5 + 11/12, "feet"),
  24401. weight: math.unit(170, "lb"),
  24402. name: "Front",
  24403. image: {
  24404. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24405. extra: 1735/1585,
  24406. bottom: 96/1831
  24407. },
  24408. form: "anthro",
  24409. default: true
  24410. },
  24411. anthro_back: {
  24412. height: math.unit(5 + 11/12, "feet"),
  24413. weight: math.unit(170, "lb"),
  24414. name: "Back",
  24415. image: {
  24416. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24417. extra: 1749/1607,
  24418. bottom: 28/1777
  24419. },
  24420. form: "anthro"
  24421. },
  24422. anthro_male: {
  24423. height: math.unit(5 + 11/12, "feet"),
  24424. weight: math.unit(170, "lb"),
  24425. name: "Male",
  24426. image: {
  24427. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24428. extra: 1855/1713,
  24429. bottom: 63/1918
  24430. },
  24431. form: "anthro"
  24432. },
  24433. taur_front: {
  24434. height: math.unit(5 + 7/12, "feet"),
  24435. weight: math.unit(170, "lb"),
  24436. name: "Front",
  24437. image: {
  24438. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24439. extra: 1151/1059,
  24440. bottom: 356/1507
  24441. },
  24442. form: "taur",
  24443. default: true
  24444. },
  24445. anthro_frontDressed: {
  24446. height: math.unit(5 + 11/12, "feet"),
  24447. weight: math.unit(170, "lb"),
  24448. name: "Front (Dressed)",
  24449. image: {
  24450. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24451. extra: 1735/1585,
  24452. bottom: 96/1831
  24453. },
  24454. form: "anthro"
  24455. },
  24456. anthro_backDressed: {
  24457. height: math.unit(5 + 11/12, "feet"),
  24458. weight: math.unit(170, "lb"),
  24459. name: "Back (Dressed)",
  24460. image: {
  24461. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24462. extra: 1749/1607,
  24463. bottom: 28/1777
  24464. },
  24465. form: "anthro"
  24466. },
  24467. anthro_maleDressed: {
  24468. height: math.unit(5 + 11/12, "feet"),
  24469. weight: math.unit(170, "lb"),
  24470. name: "Male (Dressed)",
  24471. image: {
  24472. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24473. extra: 1855/1713,
  24474. bottom: 63/1918
  24475. },
  24476. form: "anthro"
  24477. },
  24478. taur_frontDressed: {
  24479. height: math.unit(5 + 7/12, "feet"),
  24480. weight: math.unit(170, "lb"),
  24481. name: "Front (Dressed)",
  24482. image: {
  24483. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24484. extra: 1151/1059,
  24485. bottom: 356/1507
  24486. },
  24487. form: "taur"
  24488. },
  24489. maw: {
  24490. height: math.unit(1.46, "feet"),
  24491. name: "Maw",
  24492. image: {
  24493. source: "./media/characters/poojawa-vynar/maw.svg"
  24494. },
  24495. allForms: true
  24496. },
  24497. head: {
  24498. height: math.unit(2.34, "feet"),
  24499. name: "Head",
  24500. image: {
  24501. source: "./media/characters/poojawa-vynar/head.svg"
  24502. },
  24503. allForms: true
  24504. },
  24505. leftPaw: {
  24506. height: math.unit(1.72, "feet"),
  24507. name: "Left Paw",
  24508. image: {
  24509. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24510. },
  24511. allForms: true
  24512. },
  24513. rightPaw: {
  24514. height: math.unit(1.61, "feet"),
  24515. name: "Right Paw",
  24516. image: {
  24517. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24518. },
  24519. allForms: true
  24520. },
  24521. toering: {
  24522. height: math.unit(2.9, "inches"),
  24523. name: "Toering",
  24524. image: {
  24525. source: "./media/characters/poojawa-vynar/toering.svg"
  24526. },
  24527. allForms: true
  24528. },
  24529. shaft: {
  24530. height: math.unit(0.625, "feet"),
  24531. name: "Shaft",
  24532. image: {
  24533. source: "./media/characters/poojawa-vynar/shaft.svg"
  24534. },
  24535. allForms: true
  24536. },
  24537. spade: {
  24538. height: math.unit(0.42, "feet"),
  24539. name: "Spade",
  24540. image: {
  24541. source: "./media/characters/poojawa-vynar/spade.svg"
  24542. },
  24543. allForms: true
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Shortstack",
  24549. height: math.unit(4, "feet"),
  24550. form: "anthro"
  24551. },
  24552. {
  24553. name: "Normal",
  24554. height: math.unit(5 + 11 / 12, "feet"),
  24555. form: "anthro",
  24556. default: true
  24557. },
  24558. {
  24559. name: "Tauric",
  24560. height: math.unit(4, "meters"),
  24561. form: "taur",
  24562. default: true
  24563. },
  24564. ],
  24565. {
  24566. "anthro": {
  24567. name: "Anthro",
  24568. default: true
  24569. },
  24570. "taur": {
  24571. name: "Taur",
  24572. },
  24573. }
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(293, "meters"),
  24580. weight: math.unit(70400, "tons"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/violette/front.svg",
  24584. extra: 1227 / 1180,
  24585. bottom: 0.005
  24586. }
  24587. },
  24588. back: {
  24589. height: math.unit(293, "meters"),
  24590. weight: math.unit(70400, "tons"),
  24591. name: "Back",
  24592. image: {
  24593. source: "./media/characters/violette/back.svg",
  24594. extra: 1227 / 1180,
  24595. bottom: 0.005
  24596. }
  24597. },
  24598. },
  24599. [
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(293, "meters"),
  24603. default: true
  24604. },
  24605. ]
  24606. ))
  24607. characterMakers.push(() => makeCharacter(
  24608. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24609. {
  24610. front: {
  24611. height: math.unit(1050, "feet"),
  24612. weight: math.unit(200000, "tons"),
  24613. name: "Front",
  24614. image: {
  24615. source: "./media/characters/alessandra/front.svg",
  24616. extra: 960 / 912,
  24617. bottom: 0.06
  24618. }
  24619. },
  24620. },
  24621. [
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(1050, "feet")
  24625. },
  24626. {
  24627. name: "Macro+",
  24628. height: math.unit(900, "meters"),
  24629. default: true
  24630. },
  24631. ]
  24632. ))
  24633. characterMakers.push(() => makeCharacter(
  24634. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24635. {
  24636. front: {
  24637. height: math.unit(5, "feet"),
  24638. weight: math.unit(187, "lb"),
  24639. name: "Front",
  24640. image: {
  24641. source: "./media/characters/person/front.svg",
  24642. extra: 3087 / 2945,
  24643. bottom: 91 / 3181
  24644. }
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Micro",
  24650. height: math.unit(3, "inches")
  24651. },
  24652. {
  24653. name: "Normal",
  24654. height: math.unit(5, "feet"),
  24655. default: true
  24656. },
  24657. {
  24658. name: "Macro",
  24659. height: math.unit(90, "feet")
  24660. },
  24661. {
  24662. name: "Max Size",
  24663. height: math.unit(280, "feet")
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(12, "feet"),
  24672. weight: math.unit(3200, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/ty/front.svg",
  24676. extra: 753/703,
  24677. bottom: 61/814
  24678. }
  24679. },
  24680. back: {
  24681. height: math.unit(12, "feet"),
  24682. weight: math.unit(3200, "lb"),
  24683. name: "Back",
  24684. image: {
  24685. source: "./media/characters/ty/back.svg",
  24686. extra: 757/707,
  24687. bottom: 16/773
  24688. }
  24689. },
  24690. head: {
  24691. height: math.unit(3.7, "feet"),
  24692. name: "Head",
  24693. image: {
  24694. source: "./media/characters/ty/head.svg"
  24695. }
  24696. },
  24697. hand: {
  24698. height: math.unit(2.38, "feet"),
  24699. name: "Hand",
  24700. image: {
  24701. source: "./media/characters/ty/hand.svg"
  24702. }
  24703. },
  24704. tail: {
  24705. height: math.unit(8.01096641535, "feet"),
  24706. name: "Tail",
  24707. image: {
  24708. source: "./media/characters/ty/tail.svg"
  24709. }
  24710. },
  24711. },
  24712. [
  24713. {
  24714. name: "Normal",
  24715. height: math.unit(12, "feet"),
  24716. default: true
  24717. },
  24718. ]
  24719. ))
  24720. characterMakers.push(() => makeCharacter(
  24721. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24722. {
  24723. front: {
  24724. height: math.unit(5 + 4 / 12, "feet"),
  24725. weight: math.unit(115, "lb"),
  24726. name: "Front",
  24727. image: {
  24728. source: "./media/characters/rocky/front.svg",
  24729. extra: 1012 / 975,
  24730. bottom: 54 / 1066
  24731. }
  24732. },
  24733. },
  24734. [
  24735. {
  24736. name: "Normal",
  24737. height: math.unit(5 + 4 / 12, "feet"),
  24738. default: true
  24739. },
  24740. ]
  24741. ))
  24742. characterMakers.push(() => makeCharacter(
  24743. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24744. {
  24745. upright: {
  24746. height: math.unit(6, "meters"),
  24747. weight: math.unit(4000, "kg"),
  24748. name: "Upright",
  24749. image: {
  24750. source: "./media/characters/ruin/upright.svg",
  24751. extra: 668 / 661,
  24752. bottom: 42 / 799.8396
  24753. }
  24754. },
  24755. },
  24756. [
  24757. {
  24758. name: "Normal",
  24759. height: math.unit(6, "meters"),
  24760. default: true
  24761. },
  24762. ]
  24763. ))
  24764. characterMakers.push(() => makeCharacter(
  24765. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24766. {
  24767. front: {
  24768. height: math.unit(5, "feet"),
  24769. weight: math.unit(106, "lb"),
  24770. name: "Front",
  24771. image: {
  24772. source: "./media/characters/robin/front.svg",
  24773. extra: 862 / 799,
  24774. bottom: 42.4 / 914.8856
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24788. {
  24789. side: {
  24790. height: math.unit(3, "feet"),
  24791. weight: math.unit(225, "lb"),
  24792. name: "Side",
  24793. image: {
  24794. source: "./media/characters/saian/side.svg",
  24795. extra: 566 / 356,
  24796. bottom: 79.7 / 643
  24797. }
  24798. },
  24799. maw: {
  24800. height: math.unit(2.85, "feet"),
  24801. name: "Maw",
  24802. image: {
  24803. source: "./media/characters/saian/maw.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(3, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24817. {
  24818. side: {
  24819. height: math.unit(8, "feet"),
  24820. weight: math.unit(300, "lb"),
  24821. name: "Side",
  24822. image: {
  24823. source: "./media/characters/equus-silvermane/side.svg",
  24824. extra: 2176 / 2050,
  24825. bottom: 65.7 / 2245
  24826. }
  24827. },
  24828. front: {
  24829. height: math.unit(8, "feet"),
  24830. weight: math.unit(300, "lb"),
  24831. name: "Front",
  24832. image: {
  24833. source: "./media/characters/equus-silvermane/front.svg",
  24834. extra: 4633 / 4400,
  24835. bottom: 71.3 / 4706.915
  24836. }
  24837. },
  24838. sideStepping: {
  24839. height: math.unit(8, "feet"),
  24840. weight: math.unit(300, "lb"),
  24841. name: "Side (Stepping)",
  24842. image: {
  24843. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24844. extra: 1968 / 1860,
  24845. bottom: 16.4 / 1989
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Normal",
  24852. height: math.unit(8, "feet")
  24853. },
  24854. {
  24855. name: "Minimacro",
  24856. height: math.unit(75, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Macro",
  24861. height: math.unit(150, "feet")
  24862. },
  24863. {
  24864. name: "Macro+",
  24865. height: math.unit(1000, "feet")
  24866. },
  24867. {
  24868. name: "Megamacro",
  24869. height: math.unit(1, "mile")
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24875. {
  24876. side: {
  24877. height: math.unit(20, "feet"),
  24878. weight: math.unit(30000, "kg"),
  24879. name: "Side",
  24880. image: {
  24881. source: "./media/characters/windar/side.svg",
  24882. extra: 1491 / 1248,
  24883. bottom: 82.56 / 1568
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(20, "feet"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24897. {
  24898. side: {
  24899. height: math.unit(15.66, "feet"),
  24900. weight: math.unit(150, "lb"),
  24901. name: "Side",
  24902. image: {
  24903. source: "./media/characters/melody/side.svg",
  24904. extra: 1097 / 944,
  24905. bottom: 11.8 / 1109
  24906. }
  24907. },
  24908. sideOutfit: {
  24909. height: math.unit(15.66, "feet"),
  24910. weight: math.unit(150, "lb"),
  24911. name: "Side (Outfit)",
  24912. image: {
  24913. source: "./media/characters/melody/side-outfit.svg",
  24914. extra: 1097 / 944,
  24915. bottom: 11.8 / 1109
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Normal",
  24922. height: math.unit(15.66, "feet"),
  24923. default: true
  24924. },
  24925. ]
  24926. ))
  24927. characterMakers.push(() => makeCharacter(
  24928. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24929. {
  24930. armoredFront: {
  24931. height: math.unit(8, "feet"),
  24932. weight: math.unit(325, "lb"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/windera/armored-front.svg",
  24936. extra: 1830/1598,
  24937. bottom: 151/1981
  24938. },
  24939. form: "armored",
  24940. default: true
  24941. },
  24942. macroFront: {
  24943. height: math.unit(70, "feet"),
  24944. weight: math.unit(315453, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/windera/macro-front.svg",
  24948. extra: 963/883,
  24949. bottom: 23/986
  24950. },
  24951. form: "macro",
  24952. default: true
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(8, "feet"),
  24959. default: true,
  24960. form: "armored"
  24961. },
  24962. {
  24963. name: "Normal",
  24964. height: math.unit(70, "feet"),
  24965. default: true,
  24966. form: "macro"
  24967. },
  24968. ],
  24969. {
  24970. "armored": {
  24971. name: "Armored",
  24972. default: true
  24973. },
  24974. "macro": {
  24975. name: "Macro",
  24976. },
  24977. }
  24978. ))
  24979. characterMakers.push(() => makeCharacter(
  24980. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24981. {
  24982. front: {
  24983. height: math.unit(28.75, "feet"),
  24984. weight: math.unit(2000, "kg"),
  24985. name: "Front",
  24986. image: {
  24987. source: "./media/characters/sonear/front.svg",
  24988. extra: 1041.1 / 964.9,
  24989. bottom: 53.7 / 1096.6
  24990. }
  24991. },
  24992. },
  24993. [
  24994. {
  24995. name: "Normal",
  24996. height: math.unit(28.75, "feet"),
  24997. default: true
  24998. },
  24999. ]
  25000. ))
  25001. characterMakers.push(() => makeCharacter(
  25002. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  25003. {
  25004. side: {
  25005. height: math.unit(25.5, "feet"),
  25006. weight: math.unit(23000, "kg"),
  25007. name: "Side",
  25008. image: {
  25009. source: "./media/characters/kanara/side.svg"
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Normal",
  25016. height: math.unit(25.5, "feet"),
  25017. default: true
  25018. },
  25019. ]
  25020. ))
  25021. characterMakers.push(() => makeCharacter(
  25022. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  25023. {
  25024. side: {
  25025. height: math.unit(10, "feet"),
  25026. weight: math.unit(1000, "kg"),
  25027. name: "Side",
  25028. image: {
  25029. source: "./media/characters/ereus/side.svg",
  25030. extra: 1157 / 959,
  25031. bottom: 153 / 1312.5
  25032. }
  25033. },
  25034. },
  25035. [
  25036. {
  25037. name: "Normal",
  25038. height: math.unit(10, "feet"),
  25039. default: true
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  25045. {
  25046. side: {
  25047. height: math.unit(4.5, "feet"),
  25048. weight: math.unit(500, "lb"),
  25049. name: "Side",
  25050. image: {
  25051. source: "./media/characters/e-ter/side.svg",
  25052. extra: 1550 / 1248,
  25053. bottom: 146 / 1694
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(4.5, "feet"),
  25061. default: true
  25062. },
  25063. ]
  25064. ))
  25065. characterMakers.push(() => makeCharacter(
  25066. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25067. {
  25068. side: {
  25069. height: math.unit(9.7, "feet"),
  25070. weight: math.unit(4000, "kg"),
  25071. name: "Side",
  25072. image: {
  25073. source: "./media/characters/yamie/side.svg"
  25074. }
  25075. },
  25076. },
  25077. [
  25078. {
  25079. name: "Normal",
  25080. height: math.unit(9.7, "feet"),
  25081. default: true
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25087. {
  25088. front: {
  25089. height: math.unit(50, "feet"),
  25090. weight: math.unit(50000, "kg"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/anders/front.svg",
  25094. extra: 570 / 539,
  25095. bottom: 14.7 / 586.7
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Large",
  25102. height: math.unit(50, "feet")
  25103. },
  25104. {
  25105. name: "Macro",
  25106. height: math.unit(2000, "feet"),
  25107. default: true
  25108. },
  25109. {
  25110. name: "Megamacro",
  25111. height: math.unit(12, "miles")
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25117. {
  25118. front: {
  25119. height: math.unit(7 + 2 / 12, "feet"),
  25120. weight: math.unit(300, "lb"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/reban/front.svg",
  25124. extra: 1287/1212,
  25125. bottom: 148/1435
  25126. }
  25127. },
  25128. head: {
  25129. height: math.unit(1.95, "feet"),
  25130. name: "Head",
  25131. image: {
  25132. source: "./media/characters/reban/head.svg"
  25133. }
  25134. },
  25135. maw: {
  25136. height: math.unit(0.95, "feet"),
  25137. name: "Maw",
  25138. image: {
  25139. source: "./media/characters/reban/maw.svg"
  25140. }
  25141. },
  25142. foot: {
  25143. height: math.unit(1.65, "feet"),
  25144. name: "Foot",
  25145. image: {
  25146. source: "./media/characters/reban/foot.svg"
  25147. }
  25148. },
  25149. dick: {
  25150. height: math.unit(7 / 5, "feet"),
  25151. name: "Dick",
  25152. image: {
  25153. source: "./media/characters/reban/dick.svg"
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Natural Height",
  25160. height: math.unit(7 + 2 / 12, "feet")
  25161. },
  25162. {
  25163. name: "Macro",
  25164. height: math.unit(500, "feet"),
  25165. default: true
  25166. },
  25167. {
  25168. name: "Canon Height",
  25169. height: math.unit(50, "AU")
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25175. {
  25176. front: {
  25177. height: math.unit(6, "feet"),
  25178. weight: math.unit(150, "lb"),
  25179. name: "Front",
  25180. image: {
  25181. source: "./media/characters/terrance-keayes/front.svg",
  25182. extra: 1.005,
  25183. bottom: 151 / 1615
  25184. }
  25185. },
  25186. side: {
  25187. height: math.unit(6, "feet"),
  25188. weight: math.unit(150, "lb"),
  25189. name: "Side",
  25190. image: {
  25191. source: "./media/characters/terrance-keayes/side.svg",
  25192. extra: 1.005,
  25193. bottom: 129.4 / 1544
  25194. }
  25195. },
  25196. back: {
  25197. height: math.unit(6, "feet"),
  25198. weight: math.unit(150, "lb"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/terrance-keayes/back.svg",
  25202. extra: 1.005,
  25203. bottom: 58.4 / 1557.3
  25204. }
  25205. },
  25206. dick: {
  25207. height: math.unit(6 * 0.208, "feet"),
  25208. name: "Dick",
  25209. image: {
  25210. source: "./media/characters/terrance-keayes/dick.svg"
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Canon Height",
  25217. height: math.unit(35, "miles"),
  25218. default: true
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(6, "feet"),
  25227. weight: math.unit(150, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/ofelia/front.svg",
  25231. extra: 1130/1117,
  25232. bottom: 91/1221
  25233. }
  25234. },
  25235. back: {
  25236. height: math.unit(6, "feet"),
  25237. weight: math.unit(150, "lb"),
  25238. name: "Back",
  25239. image: {
  25240. source: "./media/characters/ofelia/back.svg",
  25241. extra: 1172/1159,
  25242. bottom: 28/1200
  25243. }
  25244. },
  25245. maw: {
  25246. height: math.unit(1, "feet"),
  25247. name: "Maw",
  25248. image: {
  25249. source: "./media/characters/ofelia/maw.svg"
  25250. }
  25251. },
  25252. foot: {
  25253. height: math.unit(1.949, "feet"),
  25254. name: "Foot",
  25255. image: {
  25256. source: "./media/characters/ofelia/foot.svg"
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Canon Height",
  25263. height: math.unit(2000, "miles"),
  25264. default: true
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(6, "feet"),
  25273. weight: math.unit(150, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/samuel/front.svg",
  25277. extra: 265 / 258,
  25278. bottom: 2 / 266.1566
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(100, "feet"),
  25286. default: true
  25287. },
  25288. {
  25289. name: "Full Size",
  25290. height: math.unit(1000, "miles")
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(6, "feet"),
  25299. weight: math.unit(300, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/beishir-kiel/front.svg",
  25303. extra: 569 / 547,
  25304. bottom: 41.9 / 609
  25305. }
  25306. },
  25307. maw: {
  25308. height: math.unit(6 * 0.202, "feet"),
  25309. name: "Maw",
  25310. image: {
  25311. source: "./media/characters/beishir-kiel/maw.svg"
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(300, "feet"),
  25319. default: true
  25320. },
  25321. ]
  25322. ))
  25323. characterMakers.push(() => makeCharacter(
  25324. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25325. {
  25326. front: {
  25327. height: math.unit(5 + 7/12, "feet"),
  25328. weight: math.unit(120, "lb"),
  25329. name: "Front",
  25330. image: {
  25331. source: "./media/characters/logan-grey/front.svg",
  25332. extra: 1836/1738,
  25333. bottom: 108/1944
  25334. }
  25335. },
  25336. back: {
  25337. height: math.unit(5 + 7/12, "feet"),
  25338. weight: math.unit(120, "lb"),
  25339. name: "Back",
  25340. image: {
  25341. source: "./media/characters/logan-grey/back.svg",
  25342. extra: 1880/1794,
  25343. bottom: 24/1904
  25344. }
  25345. },
  25346. frontSfw: {
  25347. height: math.unit(5 + 7/12, "feet"),
  25348. weight: math.unit(120, "lb"),
  25349. name: "Front (SFW)",
  25350. image: {
  25351. source: "./media/characters/logan-grey/front-sfw.svg",
  25352. extra: 1836/1738,
  25353. bottom: 108/1944
  25354. }
  25355. },
  25356. backSfw: {
  25357. height: math.unit(5 + 7/12, "feet"),
  25358. weight: math.unit(120, "lb"),
  25359. name: "Back (SFW)",
  25360. image: {
  25361. source: "./media/characters/logan-grey/back-sfw.svg",
  25362. extra: 1880/1794,
  25363. bottom: 24/1904
  25364. }
  25365. },
  25366. hands: {
  25367. height: math.unit(0.84, "feet"),
  25368. name: "Hands",
  25369. image: {
  25370. source: "./media/characters/logan-grey/hands.svg"
  25371. }
  25372. },
  25373. paws: {
  25374. height: math.unit(0.72, "feet"),
  25375. name: "Paws",
  25376. image: {
  25377. source: "./media/characters/logan-grey/paws.svg"
  25378. }
  25379. },
  25380. cock: {
  25381. height: math.unit(1.45, "feet"),
  25382. name: "Cock",
  25383. image: {
  25384. source: "./media/characters/logan-grey/cock.svg"
  25385. }
  25386. },
  25387. cockAlt: {
  25388. height: math.unit(1.437, "feet"),
  25389. name: "Cock (alt)",
  25390. image: {
  25391. source: "./media/characters/logan-grey/cock-alt.svg"
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(5 + 8 / 12, "feet")
  25399. },
  25400. {
  25401. name: "The 500 Foot Femboy",
  25402. height: math.unit(500, "feet"),
  25403. default: true
  25404. },
  25405. {
  25406. name: "Megmacro",
  25407. height: math.unit(20, "miles")
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(8 + 2 / 12, "feet"),
  25416. weight: math.unit(275, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/draganta/front.svg",
  25420. extra: 1177 / 1135,
  25421. bottom: 33.46 / 1212.1
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(8 + 6 / 12, "feet"),
  25429. default: true
  25430. },
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(150, "feet")
  25434. },
  25435. {
  25436. name: "Megamacro",
  25437. height: math.unit(1000, "miles")
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(1.72, "m"),
  25446. weight: math.unit(80, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/voski/front.svg",
  25450. extra: 2076.22 / 2022.4,
  25451. bottom: 102.7 / 2177.3866
  25452. }
  25453. },
  25454. frontFlaccid: {
  25455. height: math.unit(1.72, "m"),
  25456. weight: math.unit(80, "lb"),
  25457. name: "Front (Flaccid)",
  25458. image: {
  25459. source: "./media/characters/voski/front-flaccid.svg",
  25460. extra: 2076.22 / 2022.4,
  25461. bottom: 102.7 / 2177.3866
  25462. }
  25463. },
  25464. frontErect: {
  25465. height: math.unit(1.72, "m"),
  25466. weight: math.unit(80, "lb"),
  25467. name: "Front (Erect)",
  25468. image: {
  25469. source: "./media/characters/voski/front-erect.svg",
  25470. extra: 2076.22 / 2022.4,
  25471. bottom: 102.7 / 2177.3866
  25472. }
  25473. },
  25474. back: {
  25475. height: math.unit(1.72, "m"),
  25476. weight: math.unit(80, "lb"),
  25477. name: "Back",
  25478. image: {
  25479. source: "./media/characters/voski/back.svg",
  25480. extra: 2104 / 2051,
  25481. bottom: 10.45 / 2113.63
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(1.72, "m")
  25489. },
  25490. {
  25491. name: "Macro",
  25492. height: math.unit(55, "m"),
  25493. default: true
  25494. },
  25495. {
  25496. name: "Macro+",
  25497. height: math.unit(300, "m")
  25498. },
  25499. {
  25500. name: "Macro++",
  25501. height: math.unit(700, "m")
  25502. },
  25503. {
  25504. name: "Macro+++",
  25505. height: math.unit(4500, "m")
  25506. },
  25507. {
  25508. name: "Macro++++",
  25509. height: math.unit(45, "km")
  25510. },
  25511. {
  25512. name: "Macro+++++",
  25513. height: math.unit(1220, "km")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(2.3, "m"),
  25522. weight: math.unit(304, "kg"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/icowom-lee/front.svg",
  25526. extra: 985 / 955,
  25527. bottom: 25.4 / 1012
  25528. }
  25529. },
  25530. fronttentacles: {
  25531. height: math.unit(2.3, "m"),
  25532. weight: math.unit(304, "kg"),
  25533. name: "Front (Tentacles)",
  25534. image: {
  25535. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25536. extra: 985 / 955,
  25537. bottom: 25.4 / 1012
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(2.3, "m"),
  25542. weight: math.unit(304, "kg"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/icowom-lee/back.svg",
  25546. extra: 975 / 954,
  25547. bottom: 9.5 / 985
  25548. }
  25549. },
  25550. backtentacles: {
  25551. height: math.unit(2.3, "m"),
  25552. weight: math.unit(304, "kg"),
  25553. name: "Back (Tentacles)",
  25554. image: {
  25555. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25556. extra: 975 / 954,
  25557. bottom: 9.5 / 985
  25558. }
  25559. },
  25560. frontDressed: {
  25561. height: math.unit(2.3, "m"),
  25562. weight: math.unit(304, "kg"),
  25563. name: "Front (Dressed)",
  25564. image: {
  25565. source: "./media/characters/icowom-lee/front-dressed.svg",
  25566. extra: 3076 / 2933,
  25567. bottom: 51.4 / 3125.1889
  25568. }
  25569. },
  25570. rump: {
  25571. height: math.unit(0.776, "meters"),
  25572. name: "Rump",
  25573. image: {
  25574. source: "./media/characters/icowom-lee/rump.svg"
  25575. }
  25576. },
  25577. genitals: {
  25578. height: math.unit(0.78, "meters"),
  25579. name: "Genitals",
  25580. image: {
  25581. source: "./media/characters/icowom-lee/genitals.svg"
  25582. }
  25583. },
  25584. },
  25585. [
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(2.3, "meters"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(94, "meters"),
  25594. default: true
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(22, "meters"),
  25603. weight: math.unit(21000, "kg"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/shock-diamond/front.svg",
  25607. extra: 2204 / 2053,
  25608. bottom: 65 / 2239.47
  25609. }
  25610. },
  25611. frontNude: {
  25612. height: math.unit(22, "meters"),
  25613. weight: math.unit(21000, "kg"),
  25614. name: "Front (Nude)",
  25615. image: {
  25616. source: "./media/characters/shock-diamond/front-nude.svg",
  25617. extra: 2514 / 2285,
  25618. bottom: 13 / 2527.56
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(3, "meters")
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(22, "meters"),
  25630. default: true
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(5 + 4/12, "feet"),
  25639. weight: math.unit(125, "lb"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/rory/front.svg",
  25643. extra: 1790/1681,
  25644. bottom: 66/1856
  25645. },
  25646. form: "normal",
  25647. default: true
  25648. },
  25649. back: {
  25650. height: math.unit(5 + 4/12, "feet"),
  25651. weight: math.unit(125, "lb"),
  25652. name: "Back",
  25653. image: {
  25654. source: "./media/characters/rory/back.svg",
  25655. extra: 1805/1690,
  25656. bottom: 56/1861
  25657. },
  25658. form: "normal"
  25659. },
  25660. frontDressed: {
  25661. height: math.unit(5 + 4/12, "feet"),
  25662. weight: math.unit(125, "lb"),
  25663. name: "Front (Dressed)",
  25664. image: {
  25665. source: "./media/characters/rory/front-dressed.svg",
  25666. extra: 1790/1681,
  25667. bottom: 66/1856
  25668. },
  25669. form: "normal"
  25670. },
  25671. backDressed: {
  25672. height: math.unit(5 + 4/12, "feet"),
  25673. weight: math.unit(125, "lb"),
  25674. name: "Back (Dressed)",
  25675. image: {
  25676. source: "./media/characters/rory/back-dressed.svg",
  25677. extra: 1805/1690,
  25678. bottom: 56/1861
  25679. },
  25680. form: "normal"
  25681. },
  25682. frontNsfw: {
  25683. height: math.unit(5 + 4/12, "feet"),
  25684. weight: math.unit(125, "lb"),
  25685. name: "Front (NSFW)",
  25686. image: {
  25687. source: "./media/characters/rory/front-nsfw.svg",
  25688. extra: 1790/1681,
  25689. bottom: 66/1856
  25690. },
  25691. form: "normal"
  25692. },
  25693. backNsfw: {
  25694. height: math.unit(5 + 4/12, "feet"),
  25695. weight: math.unit(125, "lb"),
  25696. name: "Back (NSFW)",
  25697. image: {
  25698. source: "./media/characters/rory/back-nsfw.svg",
  25699. extra: 1805/1690,
  25700. bottom: 56/1861
  25701. },
  25702. form: "normal"
  25703. },
  25704. dick: {
  25705. height: math.unit(0.8, "feet"),
  25706. name: "Dick",
  25707. image: {
  25708. source: "./media/characters/rory/dick.svg"
  25709. },
  25710. form: "normal"
  25711. },
  25712. thicc_front: {
  25713. height: math.unit(5 + 4/12, "feet"),
  25714. weight: math.unit(195, "lb"),
  25715. name: "Front",
  25716. image: {
  25717. source: "./media/characters/rory/thicc-front.svg",
  25718. extra: 1220/1100,
  25719. bottom: 103/1323
  25720. },
  25721. form: "thicc",
  25722. default: true
  25723. },
  25724. thicc_back: {
  25725. height: math.unit(5 + 4/12, "feet"),
  25726. weight: math.unit(195, "lb"),
  25727. name: "Back",
  25728. image: {
  25729. source: "./media/characters/rory/thicc-back.svg",
  25730. extra: 1166/1086,
  25731. bottom: 35/1201
  25732. },
  25733. form: "thicc"
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Micro",
  25739. height: math.unit(3, "inches"),
  25740. allForms: true
  25741. },
  25742. {
  25743. name: "Normal",
  25744. height: math.unit(5 + 4/12, "feet"),
  25745. allForms: true,
  25746. default: true
  25747. },
  25748. {
  25749. name: "Macro",
  25750. height: math.unit(90, "feet"),
  25751. allForms: true
  25752. },
  25753. {
  25754. name: "Supercharged",
  25755. height: math.unit(270, "feet"),
  25756. allForms: true
  25757. },
  25758. ],
  25759. {
  25760. "normal": {
  25761. name: "Normal",
  25762. default: true
  25763. },
  25764. "thicc": {
  25765. name: "Thicc",
  25766. },
  25767. }
  25768. ))
  25769. characterMakers.push(() => makeCharacter(
  25770. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25771. {
  25772. front: {
  25773. height: math.unit(5 + 9 / 12, "feet"),
  25774. weight: math.unit(190, "lb"),
  25775. name: "Front",
  25776. image: {
  25777. source: "./media/characters/sprisk/front.svg",
  25778. extra: 1225 / 1180,
  25779. bottom: 42.7 / 1266.4
  25780. }
  25781. },
  25782. frontNsfw: {
  25783. height: math.unit(5 + 9 / 12, "feet"),
  25784. weight: math.unit(190, "lb"),
  25785. name: "Front (NSFW)",
  25786. image: {
  25787. source: "./media/characters/sprisk/front-nsfw.svg",
  25788. extra: 1225 / 1180,
  25789. bottom: 42.7 / 1266.4
  25790. }
  25791. },
  25792. back: {
  25793. height: math.unit(5 + 9 / 12, "feet"),
  25794. weight: math.unit(190, "lb"),
  25795. name: "Back",
  25796. image: {
  25797. source: "./media/characters/sprisk/back.svg",
  25798. extra: 1247 / 1200,
  25799. bottom: 5.6 / 1253.04
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Tiny",
  25806. height: math.unit(2, "inches")
  25807. },
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(5 + 9 / 12, "feet"),
  25811. default: true
  25812. },
  25813. {
  25814. name: "Mini Macro",
  25815. height: math.unit(18, "feet")
  25816. },
  25817. {
  25818. name: "Macro",
  25819. height: math.unit(100, "feet")
  25820. },
  25821. {
  25822. name: "MACRO",
  25823. height: math.unit(50, "miles")
  25824. },
  25825. {
  25826. name: "M A C R O",
  25827. height: math.unit(300, "miles")
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25833. {
  25834. side: {
  25835. height: math.unit(15.6, "meters"),
  25836. weight: math.unit(700000, "kg"),
  25837. name: "Side",
  25838. image: {
  25839. source: "./media/characters/bunsen/side.svg",
  25840. extra: 1644 / 358
  25841. }
  25842. },
  25843. foot: {
  25844. height: math.unit(1.611 * 1644 / 358, "meter"),
  25845. name: "Foot",
  25846. image: {
  25847. source: "./media/characters/bunsen/foot.svg"
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Small",
  25854. height: math.unit(10, "feet")
  25855. },
  25856. {
  25857. name: "Normal",
  25858. height: math.unit(15.6, "meters"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(4 + 11 / 12, "feet"),
  25868. weight: math.unit(140, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/sesh/front.svg",
  25872. extra: 3420 / 3231,
  25873. bottom: 72 / 3949.5
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(4 + 11 / 12, "feet")
  25881. },
  25882. {
  25883. name: "Grown",
  25884. height: math.unit(15, "feet"),
  25885. default: true
  25886. },
  25887. {
  25888. name: "Macro",
  25889. height: math.unit(1500, "feet")
  25890. },
  25891. {
  25892. name: "Megamacro",
  25893. height: math.unit(30, "miles")
  25894. },
  25895. {
  25896. name: "Continental",
  25897. height: math.unit(3000, "miles")
  25898. },
  25899. {
  25900. name: "Gravity Mass",
  25901. height: math.unit(300000, "miles")
  25902. },
  25903. {
  25904. name: "Planet Buster",
  25905. height: math.unit(30000000, "miles")
  25906. },
  25907. {
  25908. name: "Big",
  25909. height: math.unit(3000000000, "miles")
  25910. },
  25911. ]
  25912. ))
  25913. characterMakers.push(() => makeCharacter(
  25914. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25915. {
  25916. front: {
  25917. height: math.unit(9, "feet"),
  25918. weight: math.unit(350, "lb"),
  25919. name: "Front",
  25920. image: {
  25921. source: "./media/characters/pepper/front.svg",
  25922. extra: 1448 / 1312,
  25923. bottom: 9.4 / 1457.88
  25924. }
  25925. },
  25926. back: {
  25927. height: math.unit(9, "feet"),
  25928. weight: math.unit(350, "lb"),
  25929. name: "Back",
  25930. image: {
  25931. source: "./media/characters/pepper/back.svg",
  25932. extra: 1423 / 1300,
  25933. bottom: 4.6 / 1429
  25934. }
  25935. },
  25936. maw: {
  25937. height: math.unit(0.932, "feet"),
  25938. name: "Maw",
  25939. image: {
  25940. source: "./media/characters/pepper/maw.svg"
  25941. }
  25942. },
  25943. },
  25944. [
  25945. {
  25946. name: "Normal",
  25947. height: math.unit(9, "feet"),
  25948. default: true
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25954. {
  25955. front: {
  25956. height: math.unit(6, "feet"),
  25957. weight: math.unit(150, "lb"),
  25958. name: "Front",
  25959. image: {
  25960. source: "./media/characters/maelstrom/front.svg",
  25961. extra: 2100 / 1883,
  25962. bottom: 94 / 2196.7
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Less Kaiju",
  25969. height: math.unit(200, "feet")
  25970. },
  25971. {
  25972. name: "Kaiju",
  25973. height: math.unit(400, "feet"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Kaiju-er",
  25978. height: math.unit(600, "feet")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25984. {
  25985. front: {
  25986. height: math.unit(6 + 5 / 12, "feet"),
  25987. weight: math.unit(180, "lb"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/lexir/front.svg",
  25991. extra: 180 / 172,
  25992. bottom: 12 / 192
  25993. }
  25994. },
  25995. back: {
  25996. height: math.unit(6 + 5 / 12, "feet"),
  25997. weight: math.unit(180, "lb"),
  25998. name: "Back",
  25999. image: {
  26000. source: "./media/characters/lexir/back.svg",
  26001. extra: 1273/1201,
  26002. bottom: 39/1312
  26003. }
  26004. },
  26005. },
  26006. [
  26007. {
  26008. name: "Very Smal",
  26009. height: math.unit(1, "nm")
  26010. },
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(6 + 5 / 12, "feet"),
  26014. default: true
  26015. },
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(1, "mile")
  26019. },
  26020. {
  26021. name: "Megamacro",
  26022. height: math.unit(50, "miles")
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(1.5, "meters"),
  26031. weight: math.unit(100, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/maksio/front.svg",
  26035. extra: 1549 / 1531,
  26036. bottom: 123.7 / 1674.5429
  26037. }
  26038. },
  26039. back: {
  26040. height: math.unit(1.5, "meters"),
  26041. weight: math.unit(100, "lb"),
  26042. name: "Back",
  26043. image: {
  26044. source: "./media/characters/maksio/back.svg",
  26045. extra: 1541 / 1509,
  26046. bottom: 97 / 1639
  26047. }
  26048. },
  26049. hand: {
  26050. height: math.unit(0.621, "feet"),
  26051. name: "Hand",
  26052. image: {
  26053. source: "./media/characters/maksio/hand.svg"
  26054. }
  26055. },
  26056. foot: {
  26057. height: math.unit(1.611, "feet"),
  26058. name: "Foot",
  26059. image: {
  26060. source: "./media/characters/maksio/foot.svg"
  26061. }
  26062. },
  26063. },
  26064. [
  26065. {
  26066. name: "Shrunken",
  26067. height: math.unit(10, "cm")
  26068. },
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(150, "cm"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(100, "feet"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/erza-bear/front.svg",
  26084. extra: 2449 / 2390,
  26085. bottom: 46 / 2494
  26086. }
  26087. },
  26088. back: {
  26089. height: math.unit(100, "feet"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/erza-bear/back.svg",
  26093. extra: 2489 / 2430,
  26094. bottom: 85.4 / 2480
  26095. }
  26096. },
  26097. tail: {
  26098. height: math.unit(42, "feet"),
  26099. name: "Tail",
  26100. image: {
  26101. source: "./media/characters/erza-bear/tail.svg"
  26102. }
  26103. },
  26104. tongue: {
  26105. height: math.unit(8, "feet"),
  26106. name: "Tongue",
  26107. image: {
  26108. source: "./media/characters/erza-bear/tongue.svg"
  26109. }
  26110. },
  26111. dick: {
  26112. height: math.unit(10.5, "feet"),
  26113. name: "Dick",
  26114. image: {
  26115. source: "./media/characters/erza-bear/dick.svg"
  26116. }
  26117. },
  26118. dickVertical: {
  26119. height: math.unit(16.9, "feet"),
  26120. name: "Dick (Vertical)",
  26121. image: {
  26122. source: "./media/characters/erza-bear/dick-vertical.svg"
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Macro",
  26129. height: math.unit(100, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(172, "cm"),
  26139. weight: math.unit(73, "kg"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/violet-flor/front.svg",
  26143. extra: 1474/1379,
  26144. bottom: 113/1587
  26145. }
  26146. },
  26147. back: {
  26148. height: math.unit(180, "cm"),
  26149. weight: math.unit(73, "kg"),
  26150. name: "Back",
  26151. image: {
  26152. source: "./media/characters/violet-flor/back.svg",
  26153. extra: 1660/1567,
  26154. bottom: 49/1709
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Normal",
  26161. height: math.unit(172, "cm"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(6, "feet"),
  26171. weight: math.unit(220, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/lynn-rhea/front.svg",
  26175. extra: 310 / 273
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(6, "feet"),
  26180. weight: math.unit(220, "lb"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/lynn-rhea/back.svg",
  26184. extra: 310 / 273
  26185. }
  26186. },
  26187. dicks: {
  26188. height: math.unit(0.9, "feet"),
  26189. name: "Dicks",
  26190. image: {
  26191. source: "./media/characters/lynn-rhea/dicks.svg"
  26192. }
  26193. },
  26194. slit: {
  26195. height: math.unit(0.4, "feet"),
  26196. name: "Slit",
  26197. image: {
  26198. source: "./media/characters/lynn-rhea/slit.svg"
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Micro",
  26205. height: math.unit(1, "inch")
  26206. },
  26207. {
  26208. name: "Macro",
  26209. height: math.unit(60, "feet"),
  26210. default: true
  26211. },
  26212. {
  26213. name: "Megamacro",
  26214. height: math.unit(2, "miles")
  26215. },
  26216. {
  26217. name: "Gigamacro",
  26218. height: math.unit(3, "earths")
  26219. },
  26220. {
  26221. name: "Galactic",
  26222. height: math.unit(0.8, "galaxies")
  26223. },
  26224. ]
  26225. ))
  26226. characterMakers.push(() => makeCharacter(
  26227. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26228. {
  26229. front: {
  26230. height: math.unit(1600, "feet"),
  26231. weight: math.unit(85758785169, "kg"),
  26232. name: "Front",
  26233. image: {
  26234. source: "./media/characters/valathos/front.svg",
  26235. extra: 1451 / 1339
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Macro",
  26242. height: math.unit(1600, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(7 + 5 / 12, "feet"),
  26252. weight: math.unit(300, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/azula/front.svg",
  26256. extra: 3208 / 2880,
  26257. bottom: 80.2 / 3277
  26258. }
  26259. },
  26260. back: {
  26261. height: math.unit(7 + 5 / 12, "feet"),
  26262. weight: math.unit(300, "lb"),
  26263. name: "Back",
  26264. image: {
  26265. source: "./media/characters/azula/back.svg",
  26266. extra: 3169 / 2822,
  26267. bottom: 150.6 / 3321
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Normal",
  26274. height: math.unit(7 + 5 / 12, "feet"),
  26275. default: true
  26276. },
  26277. {
  26278. name: "Big",
  26279. height: math.unit(20, "feet")
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(5 + 1 / 12, "feet"),
  26288. weight: math.unit(110, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/rupert/front.svg",
  26292. extra: 1549 / 1495,
  26293. bottom: 54.2 / 1604.4
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(5 + 1 / 12, "feet"),
  26301. default: true
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26307. {
  26308. front: {
  26309. height: math.unit(8 + 4 / 12, "feet"),
  26310. weight: math.unit(350, "lb"),
  26311. name: "Front",
  26312. image: {
  26313. source: "./media/characters/sheera-castellar/front.svg",
  26314. extra: 1957 / 1894,
  26315. bottom: 26.97 / 1975.017
  26316. }
  26317. },
  26318. side: {
  26319. height: math.unit(8 + 4 / 12, "feet"),
  26320. weight: math.unit(350, "lb"),
  26321. name: "Side",
  26322. image: {
  26323. source: "./media/characters/sheera-castellar/side.svg",
  26324. extra: 1957 / 1894
  26325. }
  26326. },
  26327. back: {
  26328. height: math.unit(8 + 4 / 12, "feet"),
  26329. weight: math.unit(350, "lb"),
  26330. name: "Back",
  26331. image: {
  26332. source: "./media/characters/sheera-castellar/back.svg",
  26333. extra: 1957 / 1894
  26334. }
  26335. },
  26336. angled: {
  26337. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26338. weight: math.unit(350, "lb"),
  26339. name: "Angled",
  26340. image: {
  26341. source: "./media/characters/sheera-castellar/angled.svg",
  26342. extra: 1807 / 1707,
  26343. bottom: 68 / 1875
  26344. }
  26345. },
  26346. genitals: {
  26347. height: math.unit(2.2, "feet"),
  26348. name: "Genitals",
  26349. image: {
  26350. source: "./media/characters/sheera-castellar/genitals.svg"
  26351. }
  26352. },
  26353. taur: {
  26354. height: math.unit(10 + 6/12, "feet"),
  26355. name: "Taur",
  26356. image: {
  26357. source: "./media/characters/sheera-castellar/taur.svg",
  26358. extra: 2017/1909,
  26359. bottom: 185/2202
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(8 + 4 / 12, "feet")
  26367. },
  26368. {
  26369. name: "Macro",
  26370. height: math.unit(150, "feet"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Macro+",
  26375. height: math.unit(800, "feet")
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(6, "feet"),
  26384. weight: math.unit(150, "lb"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/jaipur/front.svg",
  26388. extra: 3860 / 3731,
  26389. bottom: 287 / 4140
  26390. }
  26391. },
  26392. back: {
  26393. height: math.unit(6, "feet"),
  26394. weight: math.unit(150, "lb"),
  26395. name: "Back",
  26396. image: {
  26397. source: "./media/characters/jaipur/back.svg",
  26398. extra: 1637/1561,
  26399. bottom: 154/1791
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(1.85, "meters"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Macro",
  26411. height: math.unit(150, "meters")
  26412. },
  26413. {
  26414. name: "Macro+",
  26415. height: math.unit(0.5, "miles")
  26416. },
  26417. {
  26418. name: "Macro++",
  26419. height: math.unit(2.5, "miles")
  26420. },
  26421. {
  26422. name: "Macro+++",
  26423. height: math.unit(12, "miles")
  26424. },
  26425. {
  26426. name: "Macro++++",
  26427. height: math.unit(120, "miles")
  26428. },
  26429. {
  26430. name: "Macro+++++",
  26431. height: math.unit(1200, "miles")
  26432. },
  26433. ]
  26434. ))
  26435. characterMakers.push(() => makeCharacter(
  26436. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26437. {
  26438. front: {
  26439. height: math.unit(6, "feet"),
  26440. weight: math.unit(150, "lb"),
  26441. name: "Front",
  26442. image: {
  26443. source: "./media/characters/sheila-wolf/front.svg",
  26444. extra: 1931 / 1808,
  26445. bottom: 29.5 / 1960
  26446. }
  26447. },
  26448. dick: {
  26449. height: math.unit(1.464, "feet"),
  26450. name: "Dick",
  26451. image: {
  26452. source: "./media/characters/sheila-wolf/dick.svg"
  26453. }
  26454. },
  26455. muzzle: {
  26456. height: math.unit(0.513, "feet"),
  26457. name: "Muzzle",
  26458. image: {
  26459. source: "./media/characters/sheila-wolf/muzzle.svg"
  26460. }
  26461. },
  26462. },
  26463. [
  26464. {
  26465. name: "Macro",
  26466. height: math.unit(70, "feet"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(32, "meters"),
  26476. weight: math.unit(300000, "kg"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/almor/front.svg",
  26480. extra: 1408 / 1322,
  26481. bottom: 94.6 / 1506.5
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Macro",
  26488. height: math.unit(32, "meters"),
  26489. default: true
  26490. },
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26495. {
  26496. front: {
  26497. height: math.unit(7, "feet"),
  26498. weight: math.unit(200, "lb"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/silver/front.svg",
  26502. extra: 472.1 / 450.5,
  26503. bottom: 26.5 / 499.424
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Normal",
  26510. height: math.unit(7, "feet"),
  26511. default: true
  26512. },
  26513. {
  26514. name: "Macro",
  26515. height: math.unit(800, "feet")
  26516. },
  26517. {
  26518. name: "Megamacro",
  26519. height: math.unit(250, "miles")
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(6, "feet"),
  26528. weight: math.unit(150, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/pliskin/front.svg",
  26532. extra: 1469 / 1359,
  26533. bottom: 70 / 1540
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Micro",
  26540. height: math.unit(3, "inches")
  26541. },
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(5 + 11 / 12, "feet"),
  26545. default: true
  26546. },
  26547. {
  26548. name: "Macro",
  26549. height: math.unit(120, "feet")
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(6, "feet"),
  26558. weight: math.unit(150, "lb"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/sammy/front.svg",
  26562. extra: 1193 / 1089,
  26563. bottom: 30.5 / 1226
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Macro",
  26570. height: math.unit(1700, "feet"),
  26571. default: true
  26572. },
  26573. {
  26574. name: "Examacro",
  26575. height: math.unit(2.5e9, "lightyears")
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(21, "meters"),
  26584. weight: math.unit(12, "tonnes"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/kuru/front.svg",
  26588. extra: 4301 / 3785,
  26589. bottom: 371.3 / 4691
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Macro",
  26596. height: math.unit(21, "meters"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(23, "meters"),
  26606. weight: math.unit(12.2, "tonnes"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/rakka/front.svg",
  26610. extra: 4670 / 4169,
  26611. bottom: 301 / 4968.7
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Macro",
  26618. height: math.unit(23, "meters"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(6, "feet"),
  26628. weight: math.unit(150, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/rhys-feline/front.svg",
  26632. extra: 2488 / 2308,
  26633. bottom: 35.67 / 2519.19
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Really Small",
  26640. height: math.unit(1, "nm")
  26641. },
  26642. {
  26643. name: "Micro",
  26644. height: math.unit(4, "inches")
  26645. },
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(4 + 10 / 12, "feet"),
  26649. default: true
  26650. },
  26651. {
  26652. name: "Macro",
  26653. height: math.unit(100, "feet")
  26654. },
  26655. {
  26656. name: "Megamacto",
  26657. height: math.unit(50, "miles")
  26658. },
  26659. ]
  26660. ))
  26661. characterMakers.push(() => makeCharacter(
  26662. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26663. {
  26664. side: {
  26665. height: math.unit(30, "feet"),
  26666. weight: math.unit(35000, "kg"),
  26667. name: "Side",
  26668. image: {
  26669. source: "./media/characters/alydar/side.svg",
  26670. extra: 234 / 222,
  26671. bottom: 6.5 / 241
  26672. }
  26673. },
  26674. front: {
  26675. height: math.unit(30, "feet"),
  26676. weight: math.unit(35000, "kg"),
  26677. name: "Front",
  26678. image: {
  26679. source: "./media/characters/alydar/front.svg",
  26680. extra: 223.37 / 210.2,
  26681. bottom: 22.3 / 246.76
  26682. }
  26683. },
  26684. top: {
  26685. height: math.unit(64.54, "feet"),
  26686. weight: math.unit(35000, "kg"),
  26687. name: "Top",
  26688. image: {
  26689. source: "./media/characters/alydar/top.svg"
  26690. }
  26691. },
  26692. anthro: {
  26693. height: math.unit(30, "feet"),
  26694. weight: math.unit(9000, "kg"),
  26695. name: "Anthro",
  26696. image: {
  26697. source: "./media/characters/alydar/anthro.svg",
  26698. extra: 432 / 421,
  26699. bottom: 7.18 / 440
  26700. }
  26701. },
  26702. maw: {
  26703. height: math.unit(11.693, "feet"),
  26704. name: "Maw",
  26705. image: {
  26706. source: "./media/characters/alydar/maw.svg"
  26707. }
  26708. },
  26709. head: {
  26710. height: math.unit(11.693, "feet"),
  26711. name: "Head",
  26712. image: {
  26713. source: "./media/characters/alydar/head.svg"
  26714. }
  26715. },
  26716. headAlt: {
  26717. height: math.unit(12.861, "feet"),
  26718. name: "Head (Alt)",
  26719. image: {
  26720. source: "./media/characters/alydar/head-alt.svg"
  26721. }
  26722. },
  26723. wing: {
  26724. height: math.unit(20.712, "feet"),
  26725. name: "Wing",
  26726. image: {
  26727. source: "./media/characters/alydar/wing.svg"
  26728. }
  26729. },
  26730. wingFeather: {
  26731. height: math.unit(9.662, "feet"),
  26732. name: "Wing Feather",
  26733. image: {
  26734. source: "./media/characters/alydar/wing-feather.svg"
  26735. }
  26736. },
  26737. countourFeather: {
  26738. height: math.unit(4.154, "feet"),
  26739. name: "Contour Feather",
  26740. image: {
  26741. source: "./media/characters/alydar/contour-feather.svg"
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Diplomatic",
  26748. height: math.unit(13, "feet"),
  26749. default: true
  26750. },
  26751. {
  26752. name: "Small",
  26753. height: math.unit(30, "feet")
  26754. },
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(95, "feet"),
  26758. default: true
  26759. },
  26760. {
  26761. name: "Large",
  26762. height: math.unit(285, "feet")
  26763. },
  26764. {
  26765. name: "Incomprehensible",
  26766. height: math.unit(450, "megameters")
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26772. {
  26773. side: {
  26774. height: math.unit(11, "feet"),
  26775. weight: math.unit(1750, "kg"),
  26776. name: "Side",
  26777. image: {
  26778. source: "./media/characters/selicia/side.svg",
  26779. extra: 440 / 396,
  26780. bottom: 24.8 / 465.979
  26781. }
  26782. },
  26783. maw: {
  26784. height: math.unit(4.665, "feet"),
  26785. name: "Maw",
  26786. image: {
  26787. source: "./media/characters/selicia/maw.svg"
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Normal",
  26794. height: math.unit(11, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26801. {
  26802. side: {
  26803. height: math.unit(2 + 6 / 12, "feet"),
  26804. weight: math.unit(30, "lb"),
  26805. name: "Side",
  26806. image: {
  26807. source: "./media/characters/layla/side.svg",
  26808. extra: 244 / 188,
  26809. bottom: 18.2 / 262.1
  26810. }
  26811. },
  26812. back: {
  26813. height: math.unit(2 + 6 / 12, "feet"),
  26814. weight: math.unit(30, "lb"),
  26815. name: "Back",
  26816. image: {
  26817. source: "./media/characters/layla/back.svg",
  26818. extra: 308 / 241.5,
  26819. bottom: 8.9 / 316.8
  26820. }
  26821. },
  26822. cumming: {
  26823. height: math.unit(2 + 6 / 12, "feet"),
  26824. weight: math.unit(30, "lb"),
  26825. name: "Cumming",
  26826. image: {
  26827. source: "./media/characters/layla/cumming.svg",
  26828. extra: 342 / 279,
  26829. bottom: 595 / 938
  26830. }
  26831. },
  26832. dickFlaccid: {
  26833. height: math.unit(2.595, "feet"),
  26834. name: "Flaccid Genitals",
  26835. image: {
  26836. source: "./media/characters/layla/dick-flaccid.svg"
  26837. }
  26838. },
  26839. dickErect: {
  26840. height: math.unit(2.359, "feet"),
  26841. name: "Erect Genitals",
  26842. image: {
  26843. source: "./media/characters/layla/dick-erect.svg"
  26844. }
  26845. },
  26846. dragon: {
  26847. height: math.unit(40, "feet"),
  26848. name: "Dragon",
  26849. image: {
  26850. source: "./media/characters/layla/dragon.svg",
  26851. extra: 610/535,
  26852. bottom: 367/977
  26853. }
  26854. },
  26855. taur: {
  26856. height: math.unit(30, "feet"),
  26857. name: "Taur",
  26858. image: {
  26859. source: "./media/characters/layla/taur.svg",
  26860. extra: 1268/1199,
  26861. bottom: 112/1380
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Micro",
  26868. height: math.unit(1, "inch")
  26869. },
  26870. {
  26871. name: "Small",
  26872. height: math.unit(1, "foot")
  26873. },
  26874. {
  26875. name: "Normal",
  26876. height: math.unit(2 + 6 / 12, "feet"),
  26877. default: true
  26878. },
  26879. {
  26880. name: "Macro",
  26881. height: math.unit(200, "feet")
  26882. },
  26883. {
  26884. name: "Megamacro",
  26885. height: math.unit(1000, "miles")
  26886. },
  26887. {
  26888. name: "Planetary",
  26889. height: math.unit(8000, "miles")
  26890. },
  26891. {
  26892. name: "True Layla",
  26893. height: math.unit(200000 * 7, "multiverses")
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26899. {
  26900. back: {
  26901. height: math.unit(10.5, "feet"),
  26902. weight: math.unit(800, "lb"),
  26903. name: "Back",
  26904. image: {
  26905. source: "./media/characters/knox/back.svg",
  26906. extra: 1486 / 1089,
  26907. bottom: 107 / 1601.4
  26908. }
  26909. },
  26910. side: {
  26911. height: math.unit(10.5, "feet"),
  26912. weight: math.unit(800, "lb"),
  26913. name: "Side",
  26914. image: {
  26915. source: "./media/characters/knox/side.svg",
  26916. extra: 244 / 218,
  26917. bottom: 14 / 260
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Compact",
  26924. height: math.unit(10.5, "feet"),
  26925. default: true
  26926. },
  26927. {
  26928. name: "Dynamax",
  26929. height: math.unit(210, "feet")
  26930. },
  26931. {
  26932. name: "Full Macro",
  26933. height: math.unit(850, "feet")
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(28, "feet"),
  26942. weight: math.unit(10500, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/kayda/front.svg",
  26946. extra: 1536 / 1428,
  26947. bottom: 68.7 / 1603
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(28, "feet"),
  26952. weight: math.unit(10500, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/kayda/back.svg",
  26956. extra: 1557 / 1464,
  26957. bottom: 39.5 / 1597.49
  26958. }
  26959. },
  26960. dick: {
  26961. height: math.unit(3.858, "feet"),
  26962. name: "Dick",
  26963. image: {
  26964. source: "./media/characters/kayda/dick.svg"
  26965. }
  26966. },
  26967. },
  26968. [
  26969. {
  26970. name: "Macro",
  26971. height: math.unit(28, "feet"),
  26972. default: true
  26973. },
  26974. ]
  26975. ))
  26976. characterMakers.push(() => makeCharacter(
  26977. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26978. {
  26979. front: {
  26980. height: math.unit(10 + 11 / 12, "feet"),
  26981. weight: math.unit(1400, "lb"),
  26982. name: "Front",
  26983. image: {
  26984. source: "./media/characters/brian/front.svg",
  26985. extra: 737 / 692,
  26986. bottom: 55.4 / 785
  26987. }
  26988. },
  26989. },
  26990. [
  26991. {
  26992. name: "Normal",
  26993. height: math.unit(10 + 11 / 12, "feet"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(5 + 8 / 12, "feet"),
  27003. weight: math.unit(140, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/khemri/front.svg",
  27007. extra: 4780 / 4059,
  27008. bottom: 80.1 / 4859.25
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Micro",
  27015. height: math.unit(6, "inches")
  27016. },
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(5 + 8 / 12, "feet"),
  27020. default: true
  27021. },
  27022. ]
  27023. ))
  27024. characterMakers.push(() => makeCharacter(
  27025. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  27026. {
  27027. front: {
  27028. height: math.unit(13, "feet"),
  27029. weight: math.unit(1700, "lb"),
  27030. name: "Front",
  27031. image: {
  27032. source: "./media/characters/felix-braveheart/front.svg",
  27033. extra: 1222 / 1157,
  27034. bottom: 53.2 / 1280
  27035. }
  27036. },
  27037. back: {
  27038. height: math.unit(13, "feet"),
  27039. weight: math.unit(1700, "lb"),
  27040. name: "Back",
  27041. image: {
  27042. source: "./media/characters/felix-braveheart/back.svg",
  27043. extra: 1277 / 1203,
  27044. bottom: 50.2 / 1327
  27045. }
  27046. },
  27047. feral: {
  27048. height: math.unit(6, "feet"),
  27049. weight: math.unit(400, "lb"),
  27050. name: "Feral",
  27051. image: {
  27052. source: "./media/characters/felix-braveheart/feral.svg",
  27053. extra: 682 / 625,
  27054. bottom: 6.9 / 688
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(13, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27068. {
  27069. side: {
  27070. height: math.unit(5 + 11 / 12, "feet"),
  27071. weight: math.unit(1400, "lb"),
  27072. name: "Side",
  27073. image: {
  27074. source: "./media/characters/shadow-blade/side.svg",
  27075. extra: 1726 / 1267,
  27076. bottom: 58.4 / 1785
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(5 + 11 / 12, "feet"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27090. {
  27091. front: {
  27092. height: math.unit(1 + 6 / 12, "feet"),
  27093. weight: math.unit(25, "lb"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/karla-halldor/front.svg",
  27097. extra: 1459 / 1383,
  27098. bottom: 12 / 1472
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(1 + 6 / 12, "feet"),
  27106. default: true
  27107. },
  27108. ]
  27109. ))
  27110. characterMakers.push(() => makeCharacter(
  27111. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27112. {
  27113. front: {
  27114. height: math.unit(6 + 2 / 12, "feet"),
  27115. weight: math.unit(160, "lb"),
  27116. name: "Front",
  27117. image: {
  27118. source: "./media/characters/ariam/front.svg",
  27119. extra: 1073/976,
  27120. bottom: 52/1125
  27121. }
  27122. },
  27123. back: {
  27124. height: math.unit(6 + 2/12, "feet"),
  27125. weight: math.unit(160, "lb"),
  27126. name: "Back",
  27127. image: {
  27128. source: "./media/characters/ariam/back.svg",
  27129. extra: 1103/1023,
  27130. bottom: 9/1112
  27131. }
  27132. },
  27133. dressed: {
  27134. height: math.unit(6 + 2/12, "feet"),
  27135. weight: math.unit(160, "lb"),
  27136. name: "Dressed",
  27137. image: {
  27138. source: "./media/characters/ariam/dressed.svg",
  27139. extra: 1099/1009,
  27140. bottom: 25/1124
  27141. }
  27142. },
  27143. squatting: {
  27144. height: math.unit(4.1, "feet"),
  27145. weight: math.unit(160, "lb"),
  27146. name: "Squatting",
  27147. image: {
  27148. source: "./media/characters/ariam/squatting.svg",
  27149. extra: 2617 / 2112,
  27150. bottom: 61.2 / 2681,
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(6 + 2 / 12, "feet"),
  27158. default: true
  27159. },
  27160. {
  27161. name: "Normal+",
  27162. height: math.unit(4, "meters")
  27163. },
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(50, "meters")
  27167. },
  27168. {
  27169. name: "Macro+",
  27170. height: math.unit(100, "meters")
  27171. },
  27172. {
  27173. name: "Megamacro",
  27174. height: math.unit(20, "km")
  27175. },
  27176. {
  27177. name: "Caretaker",
  27178. height: math.unit(444, "megameters")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(1.67, "meters"),
  27187. weight: math.unit(140, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27191. extra: 438 / 410,
  27192. bottom: 0.75 / 439
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Shrunken",
  27199. height: math.unit(7.6, "cm")
  27200. },
  27201. {
  27202. name: "Human Scale",
  27203. height: math.unit(1.67, "meters")
  27204. },
  27205. {
  27206. name: "Wolxi Scale",
  27207. height: math.unit(36.7, "meters"),
  27208. default: true
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(1.73, "meters"),
  27217. weight: math.unit(240, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/izue-two-mothers/front.svg",
  27221. extra: 469 / 437,
  27222. bottom: 1.24 / 470.6
  27223. }
  27224. },
  27225. },
  27226. [
  27227. {
  27228. name: "Shrunken",
  27229. height: math.unit(7.86, "cm")
  27230. },
  27231. {
  27232. name: "Human Scale",
  27233. height: math.unit(1.73, "meters")
  27234. },
  27235. {
  27236. name: "Wolxi Scale",
  27237. height: math.unit(38, "meters"),
  27238. default: true
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(1.55, "meters"),
  27247. weight: math.unit(120, "lb"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/teeku-love-shack/front.svg",
  27251. extra: 387 / 362,
  27252. bottom: 1.51 / 388
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Shrunken",
  27259. height: math.unit(7, "cm")
  27260. },
  27261. {
  27262. name: "Human Scale",
  27263. height: math.unit(1.55, "meters")
  27264. },
  27265. {
  27266. name: "Wolxi Scale",
  27267. height: math.unit(34.1, "meters"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(1.83, "meters"),
  27277. weight: math.unit(135, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/dejma-the-red/front.svg",
  27281. extra: 480 / 458,
  27282. bottom: 1.8 / 482
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Shrunken",
  27289. height: math.unit(8.3, "cm")
  27290. },
  27291. {
  27292. name: "Human Scale",
  27293. height: math.unit(1.83, "meters")
  27294. },
  27295. {
  27296. name: "Wolxi Scale",
  27297. height: math.unit(40, "meters"),
  27298. default: true
  27299. },
  27300. ]
  27301. ))
  27302. characterMakers.push(() => makeCharacter(
  27303. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27304. {
  27305. front: {
  27306. height: math.unit(1.78, "meters"),
  27307. weight: math.unit(65, "kg"),
  27308. name: "Front",
  27309. image: {
  27310. source: "./media/characters/aki/front.svg",
  27311. extra: 452 / 415
  27312. }
  27313. },
  27314. frontNsfw: {
  27315. height: math.unit(1.78, "meters"),
  27316. weight: math.unit(65, "kg"),
  27317. name: "Front (NSFW)",
  27318. image: {
  27319. source: "./media/characters/aki/front-nsfw.svg",
  27320. extra: 452 / 415
  27321. }
  27322. },
  27323. back: {
  27324. height: math.unit(1.78, "meters"),
  27325. weight: math.unit(65, "kg"),
  27326. name: "Back",
  27327. image: {
  27328. source: "./media/characters/aki/back.svg",
  27329. extra: 452 / 415
  27330. }
  27331. },
  27332. rump: {
  27333. height: math.unit(2.05, "feet"),
  27334. name: "Rump",
  27335. image: {
  27336. source: "./media/characters/aki/rump.svg"
  27337. }
  27338. },
  27339. dick: {
  27340. height: math.unit(0.95, "feet"),
  27341. name: "Dick",
  27342. image: {
  27343. source: "./media/characters/aki/dick.svg"
  27344. }
  27345. },
  27346. },
  27347. [
  27348. {
  27349. name: "Micro",
  27350. height: math.unit(15, "cm")
  27351. },
  27352. {
  27353. name: "Normal",
  27354. height: math.unit(178, "cm"),
  27355. default: true
  27356. },
  27357. {
  27358. name: "Macro",
  27359. height: math.unit(214, "m")
  27360. },
  27361. {
  27362. name: "Macro+",
  27363. height: math.unit(534, "m")
  27364. },
  27365. ]
  27366. ))
  27367. characterMakers.push(() => makeCharacter(
  27368. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27369. {
  27370. front: {
  27371. height: math.unit(5 + 5 / 12, "feet"),
  27372. weight: math.unit(120, "lb"),
  27373. name: "Front",
  27374. image: {
  27375. source: "./media/characters/ari/front.svg",
  27376. extra: 1550/1471,
  27377. bottom: 39/1589
  27378. }
  27379. },
  27380. },
  27381. [
  27382. {
  27383. name: "Normal",
  27384. height: math.unit(5 + 5 / 12, "feet")
  27385. },
  27386. {
  27387. name: "Macro",
  27388. height: math.unit(100, "feet"),
  27389. default: true
  27390. },
  27391. {
  27392. name: "Megamacro",
  27393. height: math.unit(100, "miles")
  27394. },
  27395. {
  27396. name: "Gigamacro",
  27397. height: math.unit(80000, "miles")
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27403. {
  27404. side: {
  27405. height: math.unit(9, "feet"),
  27406. weight: math.unit(400, "kg"),
  27407. name: "Side",
  27408. image: {
  27409. source: "./media/characters/bolt/side.svg",
  27410. extra: 1126 / 896,
  27411. bottom: 60 / 1187.3,
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Micro",
  27418. height: math.unit(5, "inches")
  27419. },
  27420. {
  27421. name: "Normal",
  27422. height: math.unit(9, "feet"),
  27423. default: true
  27424. },
  27425. {
  27426. name: "Macro",
  27427. height: math.unit(700, "feet")
  27428. },
  27429. {
  27430. name: "Max Size",
  27431. height: math.unit(1.52e22, "yottameters")
  27432. },
  27433. ]
  27434. ))
  27435. characterMakers.push(() => makeCharacter(
  27436. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27437. {
  27438. front: {
  27439. height: math.unit(4.3, "meters"),
  27440. weight: math.unit(3, "tons"),
  27441. name: "Front",
  27442. image: {
  27443. source: "./media/characters/draekon-sylviar/front.svg",
  27444. extra: 2072/1512,
  27445. bottom: 74/2146
  27446. }
  27447. },
  27448. back: {
  27449. height: math.unit(4.3, "meters"),
  27450. weight: math.unit(3, "tons"),
  27451. name: "Back",
  27452. image: {
  27453. source: "./media/characters/draekon-sylviar/back.svg",
  27454. extra: 1639/1483,
  27455. bottom: 41/1680
  27456. }
  27457. },
  27458. feral: {
  27459. height: math.unit(1.15, "meters"),
  27460. weight: math.unit(3, "tons"),
  27461. name: "Feral",
  27462. image: {
  27463. source: "./media/characters/draekon-sylviar/feral.svg",
  27464. extra: 1033/395,
  27465. bottom: 130/1163
  27466. }
  27467. },
  27468. maw: {
  27469. height: math.unit(1.3, "meters"),
  27470. name: "Maw",
  27471. image: {
  27472. source: "./media/characters/draekon-sylviar/maw.svg"
  27473. }
  27474. },
  27475. mawSeparated: {
  27476. height: math.unit(1.53, "meters"),
  27477. name: "Separated Maw",
  27478. image: {
  27479. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27480. }
  27481. },
  27482. tail: {
  27483. height: math.unit(1.15, "meters"),
  27484. name: "Tail",
  27485. image: {
  27486. source: "./media/characters/draekon-sylviar/tail.svg"
  27487. }
  27488. },
  27489. tailDick: {
  27490. height: math.unit(1.15, "meters"),
  27491. name: "Tail (Dick)",
  27492. image: {
  27493. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27494. }
  27495. },
  27496. tailDickSeparated: {
  27497. height: math.unit(1.19, "meters"),
  27498. name: "Tail (Separated Dick)",
  27499. image: {
  27500. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27501. }
  27502. },
  27503. slit: {
  27504. height: math.unit(1, "meters"),
  27505. name: "Slit",
  27506. image: {
  27507. source: "./media/characters/draekon-sylviar/slit.svg"
  27508. }
  27509. },
  27510. dick: {
  27511. height: math.unit(1.15, "meters"),
  27512. name: "Dick",
  27513. image: {
  27514. source: "./media/characters/draekon-sylviar/dick.svg"
  27515. }
  27516. },
  27517. dickSeparated: {
  27518. height: math.unit(1.1, "meters"),
  27519. name: "Separated Dick",
  27520. image: {
  27521. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27522. }
  27523. },
  27524. sheath: {
  27525. height: math.unit(1.15, "meters"),
  27526. name: "Sheath",
  27527. image: {
  27528. source: "./media/characters/draekon-sylviar/sheath.svg"
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Small",
  27535. height: math.unit(4.53 / 2, "meters"),
  27536. default: true
  27537. },
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(4.53, "meters"),
  27541. default: true
  27542. },
  27543. {
  27544. name: "Large",
  27545. height: math.unit(4.53 * 2, "meters"),
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(6 + 2 / 12, "feet"),
  27554. weight: math.unit(180, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/brawler/front.svg",
  27558. extra: 3301 / 3027,
  27559. bottom: 138 / 3439
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Normal",
  27566. height: math.unit(6 + 2 / 12, "feet"),
  27567. default: true
  27568. },
  27569. ]
  27570. ))
  27571. characterMakers.push(() => makeCharacter(
  27572. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27573. {
  27574. front: {
  27575. height: math.unit(11, "feet"),
  27576. weight: math.unit(1000, "lb"),
  27577. name: "Front",
  27578. image: {
  27579. source: "./media/characters/alex/front.svg",
  27580. bottom: 44.5 / 620
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Micro",
  27587. height: math.unit(5, "inches")
  27588. },
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(11, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(9.5e9, "feet")
  27597. },
  27598. {
  27599. name: "Max Size",
  27600. height: math.unit(1.4e283, "yottameters")
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27606. {
  27607. female: {
  27608. height: math.unit(29.9, "m"),
  27609. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27610. name: "Female",
  27611. image: {
  27612. source: "./media/characters/zenari/female.svg",
  27613. extra: 3281.6 / 3217,
  27614. bottom: 72.2 / 3353
  27615. }
  27616. },
  27617. male: {
  27618. height: math.unit(27.7, "m"),
  27619. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27620. name: "Male",
  27621. image: {
  27622. source: "./media/characters/zenari/male.svg",
  27623. extra: 3008 / 2991,
  27624. bottom: 54.6 / 3069
  27625. }
  27626. },
  27627. },
  27628. [
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(29.7, "meters"),
  27632. default: true
  27633. },
  27634. ]
  27635. ))
  27636. characterMakers.push(() => makeCharacter(
  27637. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27638. {
  27639. female: {
  27640. height: math.unit(23.8, "m"),
  27641. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27642. name: "Female",
  27643. image: {
  27644. source: "./media/characters/mactarian/female.svg",
  27645. extra: 2662 / 2569,
  27646. bottom: 73 / 2736
  27647. }
  27648. },
  27649. male: {
  27650. height: math.unit(23.8, "m"),
  27651. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27652. name: "Male",
  27653. image: {
  27654. source: "./media/characters/mactarian/male.svg",
  27655. extra: 2673 / 2600,
  27656. bottom: 76 / 2750
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Macro",
  27663. height: math.unit(23.8, "meters"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27670. {
  27671. female: {
  27672. height: math.unit(19.3, "m"),
  27673. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27674. name: "Female",
  27675. image: {
  27676. source: "./media/characters/umok/female.svg",
  27677. extra: 2186 / 2078,
  27678. bottom: 87 / 2277
  27679. }
  27680. },
  27681. male: {
  27682. height: math.unit(19.5, "m"),
  27683. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27684. name: "Male",
  27685. image: {
  27686. source: "./media/characters/umok/male.svg",
  27687. extra: 2233 / 2140,
  27688. bottom: 24.4 / 2258
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Macro",
  27695. height: math.unit(19.3, "meters"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27702. {
  27703. female: {
  27704. height: math.unit(26.15, "m"),
  27705. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27706. name: "Female",
  27707. image: {
  27708. source: "./media/characters/joraxian/female.svg",
  27709. extra: 2912 / 2824,
  27710. bottom: 36 / 2956
  27711. }
  27712. },
  27713. male: {
  27714. height: math.unit(25.4, "m"),
  27715. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27716. name: "Male",
  27717. image: {
  27718. source: "./media/characters/joraxian/male.svg",
  27719. extra: 2877 / 2721,
  27720. bottom: 82 / 2967
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Macro",
  27727. height: math.unit(26.15, "meters"),
  27728. default: true
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27734. {
  27735. female: {
  27736. height: math.unit(21.6, "m"),
  27737. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27738. name: "Female",
  27739. image: {
  27740. source: "./media/characters/sthara/female.svg",
  27741. extra: 2516 / 2347,
  27742. bottom: 21.5 / 2537
  27743. }
  27744. },
  27745. male: {
  27746. height: math.unit(24, "m"),
  27747. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27748. name: "Male",
  27749. image: {
  27750. source: "./media/characters/sthara/male.svg",
  27751. extra: 2732 / 2607,
  27752. bottom: 23 / 2732
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Macro",
  27759. height: math.unit(21.6, "meters"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(6 + 4 / 12, "feet"),
  27769. weight: math.unit(175, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/luka-bryzant/front.svg",
  27773. extra: 311 / 289,
  27774. bottom: 4 / 315
  27775. }
  27776. },
  27777. back: {
  27778. height: math.unit(6 + 4 / 12, "feet"),
  27779. weight: math.unit(175, "lb"),
  27780. name: "Back",
  27781. image: {
  27782. source: "./media/characters/luka-bryzant/back.svg",
  27783. extra: 311 / 289,
  27784. bottom: 3.8 / 313.7
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Micro",
  27791. height: math.unit(10, "inches")
  27792. },
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(6 + 4 / 12, "feet"),
  27796. default: true
  27797. },
  27798. {
  27799. name: "Large",
  27800. height: math.unit(12, "feet")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(5 + 7 / 12, "feet"),
  27809. weight: math.unit(185, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/aman-aquila/front.svg",
  27813. extra: 1013 / 976,
  27814. bottom: 45.6 / 1057
  27815. }
  27816. },
  27817. side: {
  27818. height: math.unit(5 + 7 / 12, "feet"),
  27819. weight: math.unit(185, "lb"),
  27820. name: "Side",
  27821. image: {
  27822. source: "./media/characters/aman-aquila/side.svg",
  27823. extra: 1054 / 1011,
  27824. bottom: 15 / 1070
  27825. }
  27826. },
  27827. back: {
  27828. height: math.unit(5 + 7 / 12, "feet"),
  27829. weight: math.unit(185, "lb"),
  27830. name: "Back",
  27831. image: {
  27832. source: "./media/characters/aman-aquila/back.svg",
  27833. extra: 1026 / 970,
  27834. bottom: 12 / 1039
  27835. }
  27836. },
  27837. head: {
  27838. height: math.unit(1.211, "feet"),
  27839. name: "Head",
  27840. image: {
  27841. source: "./media/characters/aman-aquila/head.svg",
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Minimicro",
  27848. height: math.unit(0.057, "inches")
  27849. },
  27850. {
  27851. name: "Micro",
  27852. height: math.unit(7, "inches")
  27853. },
  27854. {
  27855. name: "Mini",
  27856. height: math.unit(3 + 7 / 12, "feet")
  27857. },
  27858. {
  27859. name: "Normal",
  27860. height: math.unit(5 + 7 / 12, "feet"),
  27861. default: true
  27862. },
  27863. {
  27864. name: "Macro",
  27865. height: math.unit(157 + 7 / 12, "feet")
  27866. },
  27867. {
  27868. name: "Megamacro",
  27869. height: math.unit(1557 + 7 / 12, "feet")
  27870. },
  27871. {
  27872. name: "Gigamacro",
  27873. height: math.unit(15557 + 7 / 12, "feet")
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27879. {
  27880. front: {
  27881. height: math.unit(3 + 2 / 12, "inches"),
  27882. weight: math.unit(0.3, "ounces"),
  27883. name: "Front",
  27884. image: {
  27885. source: "./media/characters/hiphae/front.svg",
  27886. extra: 1931 / 1683,
  27887. bottom: 24 / 1955
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Normal",
  27894. height: math.unit(3 + 1 / 2, "inches"),
  27895. default: true
  27896. },
  27897. ]
  27898. ))
  27899. characterMakers.push(() => makeCharacter(
  27900. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27901. {
  27902. front: {
  27903. height: math.unit(5 + 10 / 12, "feet"),
  27904. weight: math.unit(165, "lb"),
  27905. name: "Front",
  27906. image: {
  27907. source: "./media/characters/nicky/front.svg",
  27908. extra: 3144 / 2886,
  27909. bottom: 45.6 / 3192
  27910. }
  27911. },
  27912. back: {
  27913. height: math.unit(5 + 10 / 12, "feet"),
  27914. weight: math.unit(165, "lb"),
  27915. name: "Back",
  27916. image: {
  27917. source: "./media/characters/nicky/back.svg",
  27918. extra: 3055 / 2804,
  27919. bottom: 28.4 / 3087
  27920. }
  27921. },
  27922. frontclothed: {
  27923. height: math.unit(5 + 10 / 12, "feet"),
  27924. weight: math.unit(165, "lb"),
  27925. name: "Front (Clothed)",
  27926. image: {
  27927. source: "./media/characters/nicky/front-clothed.svg",
  27928. extra: 3184.9 / 2926.9,
  27929. bottom: 86.5 / 3239.9
  27930. }
  27931. },
  27932. foot: {
  27933. height: math.unit(1.16, "feet"),
  27934. name: "Foot",
  27935. image: {
  27936. source: "./media/characters/nicky/foot.svg"
  27937. }
  27938. },
  27939. feet: {
  27940. height: math.unit(1.34, "feet"),
  27941. name: "Feet",
  27942. image: {
  27943. source: "./media/characters/nicky/feet.svg"
  27944. }
  27945. },
  27946. maw: {
  27947. height: math.unit(0.9, "feet"),
  27948. name: "Maw",
  27949. image: {
  27950. source: "./media/characters/nicky/maw.svg"
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(5 + 10 / 12, "feet"),
  27958. default: true
  27959. },
  27960. {
  27961. name: "Macro",
  27962. height: math.unit(60, "feet")
  27963. },
  27964. {
  27965. name: "Megamacro",
  27966. height: math.unit(1, "mile")
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27972. {
  27973. side: {
  27974. height: math.unit(10, "feet"),
  27975. weight: math.unit(600, "lb"),
  27976. name: "Side",
  27977. image: {
  27978. source: "./media/characters/blair/side.svg",
  27979. bottom: 16.6 / 475,
  27980. extra: 458 / 431
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Micro",
  27987. height: math.unit(8, "inches")
  27988. },
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(10, "feet"),
  27992. default: true
  27993. },
  27994. {
  27995. name: "Macro",
  27996. height: math.unit(180, "feet")
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(5 + 4 / 12, "feet"),
  28005. weight: math.unit(125, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/fisher/front.svg",
  28009. extra: 444 / 390,
  28010. bottom: 2 / 444.8
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Micro",
  28017. height: math.unit(4, "inches")
  28018. },
  28019. {
  28020. name: "Normal",
  28021. height: math.unit(5 + 4 / 12, "feet"),
  28022. default: true
  28023. },
  28024. {
  28025. name: "Macro",
  28026. height: math.unit(100, "feet")
  28027. },
  28028. ]
  28029. ))
  28030. characterMakers.push(() => makeCharacter(
  28031. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  28032. {
  28033. front: {
  28034. height: math.unit(6.71, "feet"),
  28035. weight: math.unit(200, "lb"),
  28036. preyCapacity: math.unit(1000000, "people"),
  28037. name: "Front",
  28038. image: {
  28039. source: "./media/characters/gliss/front.svg",
  28040. extra: 2347 / 2231,
  28041. bottom: 113 / 2462
  28042. }
  28043. },
  28044. hammerspaceSize: {
  28045. height: math.unit(6.71 * 717, "feet"),
  28046. weight: math.unit(200, "lb"),
  28047. preyCapacity: math.unit(1000000, "people"),
  28048. name: "Hammerspace Size",
  28049. image: {
  28050. source: "./media/characters/gliss/front.svg",
  28051. extra: 2347 / 2231,
  28052. bottom: 113 / 2462
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(6.71, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28066. {
  28067. side: {
  28068. height: math.unit(1.44, "m"),
  28069. weight: math.unit(80, "kg"),
  28070. name: "Side",
  28071. image: {
  28072. source: "./media/characters/dune-anderson/side.svg",
  28073. bottom: 49 / 1426
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Wolf-sized",
  28080. height: math.unit(1.44, "meters")
  28081. },
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(5.05, "meters"),
  28085. default: true
  28086. },
  28087. {
  28088. name: "Big",
  28089. height: math.unit(14.4, "meters")
  28090. },
  28091. {
  28092. name: "Huge",
  28093. height: math.unit(144, "meters")
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28099. {
  28100. front: {
  28101. height: math.unit(6, "feet"),
  28102. weight: math.unit(220, "lb"),
  28103. name: "Front",
  28104. image: {
  28105. source: "./media/characters/hind/front.svg",
  28106. extra: 1912/1787,
  28107. bottom: 52/1964
  28108. }
  28109. },
  28110. back: {
  28111. height: math.unit(6, "feet"),
  28112. weight: math.unit(220, "lb"),
  28113. name: "Back",
  28114. image: {
  28115. source: "./media/characters/hind/back.svg",
  28116. extra: 1901/1794,
  28117. bottom: 26/1927
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(6, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(2.1, "meters"),
  28134. weight: math.unit(150, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/tharquench-sizestealer/front.svg",
  28138. extra: 1605/1470,
  28139. bottom: 36/1641
  28140. }
  28141. },
  28142. frontAlt: {
  28143. height: math.unit(2.1, "meters"),
  28144. weight: math.unit(150, "lb"),
  28145. name: "Front (Alt)",
  28146. image: {
  28147. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28148. extra: 2318 / 2063,
  28149. bottom: 93.4 / 2410
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Nano",
  28156. height: math.unit(1, "mm")
  28157. },
  28158. {
  28159. name: "Micro",
  28160. height: math.unit(1, "cm")
  28161. },
  28162. {
  28163. name: "Normal",
  28164. height: math.unit(2.1, "meters"),
  28165. default: true
  28166. },
  28167. ]
  28168. ))
  28169. characterMakers.push(() => makeCharacter(
  28170. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28171. {
  28172. front: {
  28173. height: math.unit(7 + 5 / 12, "feet"),
  28174. weight: math.unit(357, "lb"),
  28175. name: "Front",
  28176. image: {
  28177. source: "./media/characters/solex-draconov/front.svg",
  28178. extra: 1993 / 1865,
  28179. bottom: 117 / 2111
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Natural Height",
  28186. height: math.unit(7 + 5 / 12, "feet"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Macro",
  28191. height: math.unit(350, "feet")
  28192. },
  28193. {
  28194. name: "Macro+",
  28195. height: math.unit(1000, "feet")
  28196. },
  28197. {
  28198. name: "Megamacro",
  28199. height: math.unit(20, "km")
  28200. },
  28201. {
  28202. name: "Megamacro+",
  28203. height: math.unit(1000, "km")
  28204. },
  28205. {
  28206. name: "Gigamacro",
  28207. height: math.unit(2.5, "Gm")
  28208. },
  28209. {
  28210. name: "Teramacro",
  28211. height: math.unit(15, "Tm")
  28212. },
  28213. {
  28214. name: "Galactic",
  28215. height: math.unit(30, "Zm")
  28216. },
  28217. {
  28218. name: "Universal",
  28219. height: math.unit(21000, "Ym")
  28220. },
  28221. {
  28222. name: "Omniversal",
  28223. height: math.unit(9.861e50, "Ym")
  28224. },
  28225. {
  28226. name: "Existential",
  28227. height: math.unit(1e300, "meters")
  28228. },
  28229. ]
  28230. ))
  28231. characterMakers.push(() => makeCharacter(
  28232. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28233. {
  28234. side: {
  28235. height: math.unit(25, "feet"),
  28236. weight: math.unit(90000, "lb"),
  28237. name: "Side",
  28238. image: {
  28239. source: "./media/characters/mandarax/side.svg",
  28240. extra: 614 / 332,
  28241. bottom: 55 / 630
  28242. }
  28243. },
  28244. lounging: {
  28245. height: math.unit(15.4, "feet"),
  28246. weight: math.unit(90000, "lb"),
  28247. name: "Lounging",
  28248. image: {
  28249. source: "./media/characters/mandarax/lounging.svg",
  28250. extra: 817/609,
  28251. bottom: 685/1502
  28252. }
  28253. },
  28254. head: {
  28255. height: math.unit(11.4, "feet"),
  28256. name: "Head",
  28257. image: {
  28258. source: "./media/characters/mandarax/head.svg"
  28259. }
  28260. },
  28261. belly: {
  28262. height: math.unit(33, "feet"),
  28263. name: "Belly",
  28264. preyCapacity: math.unit(500, "people"),
  28265. image: {
  28266. source: "./media/characters/mandarax/belly.svg"
  28267. }
  28268. },
  28269. dick: {
  28270. height: math.unit(8.46, "feet"),
  28271. name: "Dick",
  28272. image: {
  28273. source: "./media/characters/mandarax/dick.svg"
  28274. }
  28275. },
  28276. top: {
  28277. height: math.unit(28, "meters"),
  28278. name: "Top",
  28279. image: {
  28280. source: "./media/characters/mandarax/top.svg"
  28281. }
  28282. },
  28283. },
  28284. [
  28285. {
  28286. name: "Normal",
  28287. height: math.unit(25, "feet"),
  28288. default: true
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(5, "feet"),
  28297. weight: math.unit(90, "lb"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/pixil/front.svg",
  28301. extra: 2000 / 1618,
  28302. bottom: 12.3 / 2011
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(5, "feet"),
  28310. default: true
  28311. },
  28312. {
  28313. name: "Megamacro",
  28314. height: math.unit(10, "miles"),
  28315. },
  28316. ]
  28317. ))
  28318. characterMakers.push(() => makeCharacter(
  28319. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28320. {
  28321. front: {
  28322. height: math.unit(7 + 2 / 12, "feet"),
  28323. weight: math.unit(200, "lb"),
  28324. name: "Front",
  28325. image: {
  28326. source: "./media/characters/angel/front.svg",
  28327. extra: 1946/1840,
  28328. bottom: 30/1976
  28329. }
  28330. },
  28331. },
  28332. [
  28333. {
  28334. name: "Normal",
  28335. height: math.unit(7 + 2 / 12, "feet"),
  28336. default: true
  28337. },
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(1000, "feet")
  28341. },
  28342. {
  28343. name: "Megamacro",
  28344. height: math.unit(2, "miles")
  28345. },
  28346. {
  28347. name: "Gigamacro",
  28348. height: math.unit(20, "earths")
  28349. },
  28350. ]
  28351. ))
  28352. characterMakers.push(() => makeCharacter(
  28353. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28354. {
  28355. front: {
  28356. height: math.unit(5, "feet"),
  28357. weight: math.unit(180, "lb"),
  28358. name: "Front",
  28359. image: {
  28360. source: "./media/characters/mekana/front.svg",
  28361. extra: 1671 / 1605,
  28362. bottom: 3.5 / 1691
  28363. }
  28364. },
  28365. side: {
  28366. height: math.unit(5, "feet"),
  28367. weight: math.unit(180, "lb"),
  28368. name: "Side",
  28369. image: {
  28370. source: "./media/characters/mekana/side.svg",
  28371. extra: 1671 / 1605,
  28372. bottom: 3.5 / 1691
  28373. }
  28374. },
  28375. back: {
  28376. height: math.unit(5, "feet"),
  28377. weight: math.unit(180, "lb"),
  28378. name: "Back",
  28379. image: {
  28380. source: "./media/characters/mekana/back.svg",
  28381. extra: 1671 / 1605,
  28382. bottom: 3.5 / 1691
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Normal",
  28389. height: math.unit(5, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(4 + 6 / 12, "feet"),
  28399. weight: math.unit(80, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/pixie/front.svg",
  28403. extra: 1924 / 1825,
  28404. bottom: 22.4 / 1946
  28405. }
  28406. },
  28407. },
  28408. [
  28409. {
  28410. name: "Normal",
  28411. height: math.unit(4 + 6 / 12, "feet"),
  28412. default: true
  28413. },
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(40, "feet")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(2.1, "meters"),
  28425. weight: math.unit(200, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/the-lascivious/front.svg",
  28429. extra: 1 / 0.893,
  28430. bottom: 3.5 / 573.7
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Human Scale",
  28437. height: math.unit(2.1, "meters")
  28438. },
  28439. {
  28440. name: "Wolxi Scale",
  28441. height: math.unit(46.2, "m"),
  28442. default: true
  28443. },
  28444. {
  28445. name: "Boinker of Buildings",
  28446. height: math.unit(10, "km")
  28447. },
  28448. {
  28449. name: "Shagger of Skyscrapers",
  28450. height: math.unit(40, "km")
  28451. },
  28452. {
  28453. name: "Banger of Boroughs",
  28454. height: math.unit(4000, "km")
  28455. },
  28456. {
  28457. name: "Screwer of States",
  28458. height: math.unit(100000, "km")
  28459. },
  28460. {
  28461. name: "Pounder of Planets",
  28462. height: math.unit(2000000, "km")
  28463. },
  28464. ]
  28465. ))
  28466. characterMakers.push(() => makeCharacter(
  28467. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28468. {
  28469. front: {
  28470. height: math.unit(6, "feet"),
  28471. weight: math.unit(150, "lb"),
  28472. name: "Front",
  28473. image: {
  28474. source: "./media/characters/aj/front.svg",
  28475. extra: 2039 / 1562,
  28476. bottom: 40 / 2079
  28477. }
  28478. },
  28479. },
  28480. [
  28481. {
  28482. name: "Normal",
  28483. height: math.unit(11 + 6 / 12, "feet"),
  28484. default: true
  28485. },
  28486. {
  28487. name: "Megamacro",
  28488. height: math.unit(60, "megameters")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28494. {
  28495. side: {
  28496. height: math.unit(31 + 8 / 12, "feet"),
  28497. weight: math.unit(75000, "kg"),
  28498. name: "Side",
  28499. image: {
  28500. source: "./media/characters/koros/side.svg",
  28501. extra: 1442 / 1297,
  28502. bottom: 122.7 / 1562
  28503. }
  28504. },
  28505. dicksKingsCrown: {
  28506. height: math.unit(6, "feet"),
  28507. name: "Dicks (King's Crown)",
  28508. image: {
  28509. source: "./media/characters/koros/dicks-kings-crown.svg"
  28510. }
  28511. },
  28512. dicksTailSet: {
  28513. height: math.unit(3, "feet"),
  28514. name: "Dicks (Tail Set)",
  28515. image: {
  28516. source: "./media/characters/koros/dicks-tail-set.svg"
  28517. }
  28518. },
  28519. dickCumming: {
  28520. height: math.unit(7.98, "feet"),
  28521. name: "Dick (Cumming)",
  28522. image: {
  28523. source: "./media/characters/koros/dick-cumming.svg"
  28524. }
  28525. },
  28526. dicksBack: {
  28527. height: math.unit(5.9, "feet"),
  28528. name: "Dicks (Back)",
  28529. image: {
  28530. source: "./media/characters/koros/dicks-back.svg"
  28531. }
  28532. },
  28533. dicksFront: {
  28534. height: math.unit(3.72, "feet"),
  28535. name: "Dicks (Front)",
  28536. image: {
  28537. source: "./media/characters/koros/dicks-front.svg"
  28538. }
  28539. },
  28540. dicksPeeking: {
  28541. height: math.unit(3.0, "feet"),
  28542. name: "Dicks (Peeking)",
  28543. image: {
  28544. source: "./media/characters/koros/dicks-peeking.svg"
  28545. }
  28546. },
  28547. eye: {
  28548. height: math.unit(1.7, "feet"),
  28549. name: "Eye",
  28550. image: {
  28551. source: "./media/characters/koros/eye.svg"
  28552. }
  28553. },
  28554. headFront: {
  28555. height: math.unit(11.69, "feet"),
  28556. name: "Head (Front)",
  28557. image: {
  28558. source: "./media/characters/koros/head-front.svg"
  28559. }
  28560. },
  28561. headSide: {
  28562. height: math.unit(14, "feet"),
  28563. name: "Head (Side)",
  28564. image: {
  28565. source: "./media/characters/koros/head-side.svg"
  28566. }
  28567. },
  28568. leg: {
  28569. height: math.unit(17, "feet"),
  28570. name: "Leg",
  28571. image: {
  28572. source: "./media/characters/koros/leg.svg"
  28573. }
  28574. },
  28575. mawSide: {
  28576. height: math.unit(12.8, "feet"),
  28577. name: "Maw (Side)",
  28578. image: {
  28579. source: "./media/characters/koros/maw-side.svg"
  28580. }
  28581. },
  28582. mawSpitting: {
  28583. height: math.unit(17, "feet"),
  28584. name: "Maw (Spitting)",
  28585. image: {
  28586. source: "./media/characters/koros/maw-spitting.svg"
  28587. }
  28588. },
  28589. slit: {
  28590. height: math.unit(2.8, "feet"),
  28591. name: "Slit",
  28592. image: {
  28593. source: "./media/characters/koros/slit.svg"
  28594. }
  28595. },
  28596. stomach: {
  28597. height: math.unit(6.8, "feet"),
  28598. preyCapacity: math.unit(20, "people"),
  28599. name: "Stomach",
  28600. image: {
  28601. source: "./media/characters/koros/stomach.svg"
  28602. }
  28603. },
  28604. wingspanBottom: {
  28605. height: math.unit(114, "feet"),
  28606. name: "Wingspan (Bottom)",
  28607. image: {
  28608. source: "./media/characters/koros/wingspan-bottom.svg"
  28609. }
  28610. },
  28611. wingspanTop: {
  28612. height: math.unit(104, "feet"),
  28613. name: "Wingspan (Top)",
  28614. image: {
  28615. source: "./media/characters/koros/wingspan-top.svg"
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(31 + 8 / 12, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(18 + 5 / 12, "feet"),
  28632. weight: math.unit(3750, "kg"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/vexx/front.svg",
  28636. extra: 426 / 396,
  28637. bottom: 31.5 / 458
  28638. }
  28639. },
  28640. maw: {
  28641. height: math.unit(6, "feet"),
  28642. name: "Maw",
  28643. image: {
  28644. source: "./media/characters/vexx/maw.svg"
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Normal",
  28651. height: math.unit(18 + 5 / 12, "feet"),
  28652. default: true
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(17 + 6 / 12, "feet"),
  28661. weight: math.unit(150, "lb"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/baadra/front.svg",
  28665. extra: 1694/1553,
  28666. bottom: 179/1873
  28667. }
  28668. },
  28669. frontAlt: {
  28670. height: math.unit(17 + 6 / 12, "feet"),
  28671. weight: math.unit(150, "lb"),
  28672. name: "Front (Alt)",
  28673. image: {
  28674. source: "./media/characters/baadra/front-alt.svg",
  28675. extra: 3137 / 2890,
  28676. bottom: 168.4 / 3305
  28677. }
  28678. },
  28679. back: {
  28680. height: math.unit(17 + 6 / 12, "feet"),
  28681. weight: math.unit(150, "lb"),
  28682. name: "Back",
  28683. image: {
  28684. source: "./media/characters/baadra/back.svg",
  28685. extra: 3142 / 2890,
  28686. bottom: 220 / 3371
  28687. }
  28688. },
  28689. head: {
  28690. height: math.unit(5.45, "feet"),
  28691. name: "Head",
  28692. image: {
  28693. source: "./media/characters/baadra/head.svg"
  28694. }
  28695. },
  28696. headAngry: {
  28697. height: math.unit(4.95, "feet"),
  28698. name: "Head (Angry)",
  28699. image: {
  28700. source: "./media/characters/baadra/head-angry.svg"
  28701. }
  28702. },
  28703. headOpen: {
  28704. height: math.unit(6, "feet"),
  28705. name: "Head (Open)",
  28706. image: {
  28707. source: "./media/characters/baadra/head-open.svg"
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(17 + 6 / 12, "feet"),
  28715. default: true
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(7 + 3 / 12, "feet"),
  28724. weight: math.unit(180, "lb"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/juri/front.svg",
  28728. extra: 1401 / 1237,
  28729. bottom: 18.5 / 1418
  28730. }
  28731. },
  28732. side: {
  28733. height: math.unit(7 + 3 / 12, "feet"),
  28734. weight: math.unit(180, "lb"),
  28735. name: "Side",
  28736. image: {
  28737. source: "./media/characters/juri/side.svg",
  28738. extra: 1424 / 1242,
  28739. bottom: 18.5 / 1447
  28740. }
  28741. },
  28742. sitting: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(180, "lb"),
  28745. name: "Sitting",
  28746. image: {
  28747. source: "./media/characters/juri/sitting.svg",
  28748. extra: 1270 / 1143,
  28749. bottom: 100 / 1343
  28750. }
  28751. },
  28752. back: {
  28753. height: math.unit(7 + 3 / 12, "feet"),
  28754. weight: math.unit(180, "lb"),
  28755. name: "Back",
  28756. image: {
  28757. source: "./media/characters/juri/back.svg",
  28758. extra: 1377 / 1240,
  28759. bottom: 23.7 / 1405
  28760. }
  28761. },
  28762. maw: {
  28763. height: math.unit(2.8, "feet"),
  28764. name: "Maw",
  28765. image: {
  28766. source: "./media/characters/juri/maw.svg"
  28767. }
  28768. },
  28769. stomach: {
  28770. height: math.unit(0.89, "feet"),
  28771. preyCapacity: math.unit(4, "liters"),
  28772. name: "Stomach",
  28773. image: {
  28774. source: "./media/characters/juri/stomach.svg"
  28775. }
  28776. },
  28777. },
  28778. [
  28779. {
  28780. name: "Normal",
  28781. height: math.unit(7 + 3 / 12, "feet"),
  28782. default: true
  28783. },
  28784. ]
  28785. ))
  28786. characterMakers.push(() => makeCharacter(
  28787. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28788. {
  28789. fox: {
  28790. height: math.unit(5 + 6 / 12, "feet"),
  28791. weight: math.unit(140, "lb"),
  28792. name: "Fox",
  28793. image: {
  28794. source: "./media/characters/maxene-sita/fox.svg",
  28795. extra: 146 / 138,
  28796. bottom: 2.1 / 148.19
  28797. }
  28798. },
  28799. foxLaying: {
  28800. height: math.unit(1.70, "feet"),
  28801. weight: math.unit(140, "lb"),
  28802. name: "Fox (Laying)",
  28803. image: {
  28804. source: "./media/characters/maxene-sita/fox-laying.svg",
  28805. extra: 910 / 572,
  28806. bottom: 71 / 981
  28807. }
  28808. },
  28809. kitsune: {
  28810. height: math.unit(10, "feet"),
  28811. weight: math.unit(800, "lb"),
  28812. name: "Kitsune",
  28813. image: {
  28814. source: "./media/characters/maxene-sita/kitsune.svg",
  28815. extra: 185 / 176,
  28816. bottom: 4.7 / 189.9
  28817. }
  28818. },
  28819. hellhound: {
  28820. height: math.unit(10, "feet"),
  28821. weight: math.unit(700, "lb"),
  28822. name: "Hellhound",
  28823. image: {
  28824. source: "./media/characters/maxene-sita/hellhound.svg",
  28825. extra: 1600 / 1545,
  28826. bottom: 81 / 1681
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Normal",
  28833. height: math.unit(5 + 6 / 12, "feet"),
  28834. default: true
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28840. {
  28841. front: {
  28842. height: math.unit(3 + 4 / 12, "feet"),
  28843. weight: math.unit(70, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/maia/front.svg",
  28847. extra: 227 / 219.5,
  28848. bottom: 40 / 267
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(3 + 4 / 12, "feet"),
  28853. weight: math.unit(70, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/maia/back.svg",
  28857. extra: 237 / 225
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Normal",
  28864. height: math.unit(3 + 4 / 12, "feet"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(5 + 10 / 12, "feet"),
  28874. weight: math.unit(197, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/jabaro/front.svg",
  28878. extra: 225 / 216,
  28879. bottom: 5.06 / 230
  28880. }
  28881. },
  28882. back: {
  28883. height: math.unit(5 + 10 / 12, "feet"),
  28884. weight: math.unit(197, "lb"),
  28885. name: "Back",
  28886. image: {
  28887. source: "./media/characters/jabaro/back.svg",
  28888. extra: 225 / 219,
  28889. bottom: 1.9 / 227
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(5 + 10 / 12, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(5 + 8 / 12, "feet"),
  28906. weight: math.unit(139, "lb"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/risa/front.svg",
  28910. extra: 270 / 260,
  28911. bottom: 11.2 / 282
  28912. }
  28913. },
  28914. back: {
  28915. height: math.unit(5 + 8 / 12, "feet"),
  28916. weight: math.unit(139, "lb"),
  28917. name: "Back",
  28918. image: {
  28919. source: "./media/characters/risa/back.svg",
  28920. extra: 264 / 255,
  28921. bottom: 4 / 268
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(5 + 8 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(2 + 11 / 12, "feet"),
  28938. weight: math.unit(30, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/weatley/front.svg",
  28942. bottom: 10.7 / 414,
  28943. extra: 403.5 / 362
  28944. }
  28945. },
  28946. back: {
  28947. height: math.unit(2 + 11 / 12, "feet"),
  28948. weight: math.unit(30, "lb"),
  28949. name: "Back",
  28950. image: {
  28951. source: "./media/characters/weatley/back.svg",
  28952. bottom: 10.7 / 414,
  28953. extra: 403.5 / 362
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(2 + 11 / 12, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(5 + 2 / 12, "feet"),
  28970. weight: math.unit(50, "kg"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/mercury-crescent/front.svg",
  28974. extra: 1088 / 1033,
  28975. bottom: 18.9 / 1109
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(5 + 2 / 12, "feet"),
  28983. default: true
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(2, "feet"),
  28992. weight: math.unit(15, "kg"),
  28993. name: "Front",
  28994. image: {
  28995. source: "./media/characters/diamond-jones/front.svg",
  28996. extra: 727/723,
  28997. bottom: 46/773
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Normal",
  29004. height: math.unit(2, "feet"),
  29005. default: true
  29006. },
  29007. ]
  29008. ))
  29009. characterMakers.push(() => makeCharacter(
  29010. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  29011. {
  29012. front: {
  29013. height: math.unit(3, "feet"),
  29014. weight: math.unit(30, "kg"),
  29015. name: "Front",
  29016. image: {
  29017. source: "./media/characters/sweet-bit/front.svg",
  29018. extra: 675 / 567,
  29019. bottom: 27.7 / 703
  29020. }
  29021. },
  29022. },
  29023. [
  29024. {
  29025. name: "Normal",
  29026. height: math.unit(3, "feet"),
  29027. default: true
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  29033. {
  29034. side: {
  29035. height: math.unit(9.178, "feet"),
  29036. weight: math.unit(500, "lb"),
  29037. name: "Side",
  29038. image: {
  29039. source: "./media/characters/umbrazen/side.svg",
  29040. extra: 1730 / 1473,
  29041. bottom: 34.6 / 1765
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Normal",
  29048. height: math.unit(9.178, "feet"),
  29049. default: true
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  29055. {
  29056. front: {
  29057. height: math.unit(10, "feet"),
  29058. weight: math.unit(750, "lb"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/arlist/front.svg",
  29062. extra: 961 / 778,
  29063. bottom: 6.2 / 986
  29064. }
  29065. },
  29066. },
  29067. [
  29068. {
  29069. name: "Normal",
  29070. height: math.unit(10, "feet"),
  29071. default: true
  29072. },
  29073. ]
  29074. ))
  29075. characterMakers.push(() => makeCharacter(
  29076. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29077. {
  29078. front: {
  29079. height: math.unit(5 + 1 / 12, "feet"),
  29080. weight: math.unit(110, "lb"),
  29081. name: "Front",
  29082. image: {
  29083. source: "./media/characters/aradel/front.svg",
  29084. extra: 324 / 303,
  29085. bottom: 3.6 / 329.4
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(5 + 1 / 12, "feet"),
  29093. default: true
  29094. },
  29095. ]
  29096. ))
  29097. characterMakers.push(() => makeCharacter(
  29098. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29099. {
  29100. dressed: {
  29101. height: math.unit(3 + 8 / 12, "feet"),
  29102. weight: math.unit(50, "lb"),
  29103. name: "Dressed",
  29104. image: {
  29105. source: "./media/characters/serryn/dressed.svg",
  29106. extra: 1792 / 1656,
  29107. bottom: 43.5 / 1840
  29108. }
  29109. },
  29110. nude: {
  29111. height: math.unit(3 + 8 / 12, "feet"),
  29112. weight: math.unit(50, "lb"),
  29113. name: "Nude",
  29114. image: {
  29115. source: "./media/characters/serryn/nude.svg",
  29116. extra: 1792 / 1656,
  29117. bottom: 43.5 / 1840
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(3 + 8 / 12, "feet"),
  29125. default: true
  29126. },
  29127. ]
  29128. ))
  29129. characterMakers.push(() => makeCharacter(
  29130. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29131. {
  29132. front: {
  29133. height: math.unit(7 + 10 / 12, "feet"),
  29134. weight: math.unit(255, "lb"),
  29135. name: "Front",
  29136. image: {
  29137. source: "./media/characters/xavier-thyme/front.svg",
  29138. extra: 3733 / 3642,
  29139. bottom: 131 / 3869
  29140. }
  29141. },
  29142. frontRaven: {
  29143. height: math.unit(7 + 10 / 12, "feet"),
  29144. weight: math.unit(255, "lb"),
  29145. name: "Front (Raven)",
  29146. image: {
  29147. source: "./media/characters/xavier-thyme/front-raven.svg",
  29148. extra: 4385 / 3642,
  29149. bottom: 131 / 4517
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Normal",
  29156. height: math.unit(7 + 10 / 12, "feet"),
  29157. default: true
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(1.6, "m"),
  29166. weight: math.unit(50, "kg"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/kiki/front.svg",
  29170. extra: 4682 / 3610,
  29171. bottom: 115 / 4777
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Normal",
  29178. height: math.unit(1.6, "meters"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(50, "m"),
  29188. weight: math.unit(500, "tonnes"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/ryoko/front.svg",
  29192. extra: 4632 / 3926,
  29193. bottom: 193 / 4823
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(50, "meters"),
  29201. default: true
  29202. },
  29203. ]
  29204. ))
  29205. characterMakers.push(() => makeCharacter(
  29206. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29207. {
  29208. front: {
  29209. height: math.unit(30, "m"),
  29210. weight: math.unit(22, "tonnes"),
  29211. name: "Front",
  29212. image: {
  29213. source: "./media/characters/elio/front.svg",
  29214. extra: 4582 / 3720,
  29215. bottom: 236 / 4828
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Normal",
  29222. height: math.unit(30, "meters"),
  29223. default: true
  29224. },
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29229. {
  29230. front: {
  29231. height: math.unit(6 + 3 / 12, "feet"),
  29232. weight: math.unit(120, "lb"),
  29233. name: "Front",
  29234. image: {
  29235. source: "./media/characters/azura/front.svg",
  29236. extra: 1149 / 1135,
  29237. bottom: 45 / 1194
  29238. }
  29239. },
  29240. frontClothed: {
  29241. height: math.unit(6 + 3 / 12, "feet"),
  29242. weight: math.unit(120, "lb"),
  29243. name: "Front (Clothed)",
  29244. image: {
  29245. source: "./media/characters/azura/front-clothed.svg",
  29246. extra: 1149 / 1135,
  29247. bottom: 45 / 1194
  29248. }
  29249. },
  29250. },
  29251. [
  29252. {
  29253. name: "Normal",
  29254. height: math.unit(6 + 3 / 12, "feet"),
  29255. default: true
  29256. },
  29257. {
  29258. name: "Macro",
  29259. height: math.unit(20 + 6 / 12, "feet")
  29260. },
  29261. {
  29262. name: "Megamacro",
  29263. height: math.unit(12, "miles")
  29264. },
  29265. {
  29266. name: "Gigamacro",
  29267. height: math.unit(10000, "miles")
  29268. },
  29269. {
  29270. name: "Teramacro",
  29271. height: math.unit(900000, "miles")
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29277. {
  29278. front: {
  29279. height: math.unit(12, "feet"),
  29280. weight: math.unit(1, "ton"),
  29281. capacity: math.unit(660000, "gallons"),
  29282. name: "Front",
  29283. image: {
  29284. source: "./media/characters/zeus/front.svg",
  29285. extra: 5005 / 4717,
  29286. bottom: 363 / 5388
  29287. }
  29288. },
  29289. },
  29290. [
  29291. {
  29292. name: "Normal",
  29293. height: math.unit(12, "feet")
  29294. },
  29295. {
  29296. name: "Preferred Size",
  29297. height: math.unit(0.5, "miles"),
  29298. default: true
  29299. },
  29300. {
  29301. name: "Giga Horse",
  29302. height: math.unit(300, "miles")
  29303. },
  29304. {
  29305. name: "Riding Planets",
  29306. height: math.unit(30, "megameters")
  29307. },
  29308. {
  29309. name: "Cosmic Giant",
  29310. height: math.unit(3, "zettameters")
  29311. },
  29312. {
  29313. name: "Breeding God",
  29314. height: math.unit(9.92e22, "yottameters")
  29315. },
  29316. ]
  29317. ))
  29318. characterMakers.push(() => makeCharacter(
  29319. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29320. {
  29321. side: {
  29322. height: math.unit(9, "feet"),
  29323. weight: math.unit(1500, "kg"),
  29324. name: "Side",
  29325. image: {
  29326. source: "./media/characters/fang/side.svg",
  29327. extra: 924 / 866,
  29328. bottom: 47.5 / 972.3
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(9, "feet"),
  29336. default: true
  29337. },
  29338. {
  29339. name: "Macro",
  29340. height: math.unit(75 + 6 / 12, "feet")
  29341. },
  29342. {
  29343. name: "Teramacro",
  29344. height: math.unit(50000, "miles")
  29345. },
  29346. ]
  29347. ))
  29348. characterMakers.push(() => makeCharacter(
  29349. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29350. {
  29351. front: {
  29352. height: math.unit(10, "feet"),
  29353. weight: math.unit(2, "tons"),
  29354. name: "Front",
  29355. image: {
  29356. source: "./media/characters/rekhit/front.svg",
  29357. extra: 2796 / 2590,
  29358. bottom: 225 / 3022
  29359. }
  29360. },
  29361. },
  29362. [
  29363. {
  29364. name: "Normal",
  29365. height: math.unit(10, "feet"),
  29366. default: true
  29367. },
  29368. {
  29369. name: "Macro",
  29370. height: math.unit(500, "feet")
  29371. },
  29372. ]
  29373. ))
  29374. characterMakers.push(() => makeCharacter(
  29375. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29376. {
  29377. front: {
  29378. height: math.unit(7 + 6.451 / 12, "feet"),
  29379. weight: math.unit(310, "lb"),
  29380. name: "Front",
  29381. image: {
  29382. source: "./media/characters/dahlia-verrick/front.svg",
  29383. extra: 1488 / 1365,
  29384. bottom: 6.2 / 1495
  29385. }
  29386. },
  29387. back: {
  29388. height: math.unit(7 + 6.451 / 12, "feet"),
  29389. weight: math.unit(310, "lb"),
  29390. name: "Back",
  29391. image: {
  29392. source: "./media/characters/dahlia-verrick/back.svg",
  29393. extra: 1472 / 1351,
  29394. bottom: 5.28 / 1477
  29395. }
  29396. },
  29397. frontBusiness: {
  29398. height: math.unit(7 + 6.451 / 12, "feet"),
  29399. weight: math.unit(200, "lb"),
  29400. name: "Front (Business)",
  29401. image: {
  29402. source: "./media/characters/dahlia-verrick/front-business.svg",
  29403. extra: 1478 / 1381,
  29404. bottom: 5.5 / 1484
  29405. }
  29406. },
  29407. frontCasual: {
  29408. height: math.unit(7 + 6.451 / 12, "feet"),
  29409. weight: math.unit(200, "lb"),
  29410. name: "Front (Casual)",
  29411. image: {
  29412. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29413. extra: 1478 / 1381,
  29414. bottom: 5.5 / 1484
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Travel-Sized",
  29421. height: math.unit(7.45, "inches")
  29422. },
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(7 + 6.451 / 12, "feet"),
  29426. default: true
  29427. },
  29428. {
  29429. name: "Hitting the Town",
  29430. height: math.unit(37 + 8 / 12, "feet")
  29431. },
  29432. {
  29433. name: "Stomp in the Suburbs",
  29434. height: math.unit(964 + 9.728 / 12, "feet")
  29435. },
  29436. {
  29437. name: "Sit on the City",
  29438. height: math.unit(61747 + 10.592 / 12, "feet")
  29439. },
  29440. {
  29441. name: "Glomp the Globe",
  29442. height: math.unit(252919327 + 4.832 / 12, "feet")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(6 + 4 / 12, "feet"),
  29451. weight: math.unit(320, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/balina-mahigan/front.svg",
  29455. extra: 447 / 428,
  29456. bottom: 18 / 466
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(6 + 4 / 12, "feet"),
  29461. weight: math.unit(320, "lb"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/balina-mahigan/back.svg",
  29465. extra: 445 / 428,
  29466. bottom: 4.07 / 448
  29467. }
  29468. },
  29469. arm: {
  29470. height: math.unit(1.88, "feet"),
  29471. name: "Arm",
  29472. image: {
  29473. source: "./media/characters/balina-mahigan/arm.svg"
  29474. }
  29475. },
  29476. backPort: {
  29477. height: math.unit(0.685, "feet"),
  29478. name: "Back Port",
  29479. image: {
  29480. source: "./media/characters/balina-mahigan/back-port.svg"
  29481. }
  29482. },
  29483. hoofpaw: {
  29484. height: math.unit(1.41, "feet"),
  29485. name: "Hoofpaw",
  29486. image: {
  29487. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29488. }
  29489. },
  29490. leftHandBack: {
  29491. height: math.unit(0.938, "feet"),
  29492. name: "Left Hand (Back)",
  29493. image: {
  29494. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29495. }
  29496. },
  29497. leftHandFront: {
  29498. height: math.unit(0.938, "feet"),
  29499. name: "Left Hand (Front)",
  29500. image: {
  29501. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29502. }
  29503. },
  29504. rightHandBack: {
  29505. height: math.unit(0.95, "feet"),
  29506. name: "Right Hand (Back)",
  29507. image: {
  29508. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29509. }
  29510. },
  29511. rightHandFront: {
  29512. height: math.unit(0.95, "feet"),
  29513. name: "Right Hand (Front)",
  29514. image: {
  29515. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29516. }
  29517. },
  29518. },
  29519. [
  29520. {
  29521. name: "Normal",
  29522. height: math.unit(6 + 4 / 12, "feet"),
  29523. default: true
  29524. },
  29525. ]
  29526. ))
  29527. characterMakers.push(() => makeCharacter(
  29528. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29529. {
  29530. front: {
  29531. height: math.unit(6, "feet"),
  29532. weight: math.unit(320, "lb"),
  29533. name: "Front",
  29534. image: {
  29535. source: "./media/characters/balina-mejeri/front.svg",
  29536. extra: 517 / 488,
  29537. bottom: 44.2 / 561
  29538. }
  29539. },
  29540. },
  29541. [
  29542. {
  29543. name: "Normal",
  29544. height: math.unit(6 + 4 / 12, "feet")
  29545. },
  29546. {
  29547. name: "Business",
  29548. height: math.unit(155, "feet"),
  29549. default: true
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29555. {
  29556. kneeling: {
  29557. height: math.unit(6 + 4 / 12, "feet"),
  29558. weight: math.unit(300 * 20, "lb"),
  29559. name: "Kneeling",
  29560. image: {
  29561. source: "./media/characters/balbarian/kneeling.svg",
  29562. extra: 922 / 862,
  29563. bottom: 42.4 / 965
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(6 + 4 / 12, "feet")
  29571. },
  29572. {
  29573. name: "Treasured",
  29574. height: math.unit(18 + 9 / 12, "feet"),
  29575. default: true
  29576. },
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(900, "feet")
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(6 + 4 / 12, "feet"),
  29588. weight: math.unit(325, "lb"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/balina-amarini/front.svg",
  29592. extra: 415 / 403,
  29593. bottom: 19 / 433.4
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(6 + 4 / 12, "feet"),
  29598. weight: math.unit(325, "lb"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/balina-amarini/back.svg",
  29602. extra: 415 / 403,
  29603. bottom: 13.5 / 432
  29604. }
  29605. },
  29606. overdrive: {
  29607. height: math.unit(6 + 4 / 12, "feet"),
  29608. weight: math.unit(400, "lb"),
  29609. name: "Overdrive",
  29610. image: {
  29611. source: "./media/characters/balina-amarini/overdrive.svg",
  29612. extra: 269 / 259,
  29613. bottom: 12 / 282
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Boom",
  29620. height: math.unit(9 + 10 / 12, "feet"),
  29621. default: true
  29622. },
  29623. {
  29624. name: "Macro",
  29625. height: math.unit(280, "feet")
  29626. },
  29627. ]
  29628. ))
  29629. characterMakers.push(() => makeCharacter(
  29630. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29631. {
  29632. goddess: {
  29633. height: math.unit(600, "feet"),
  29634. weight: math.unit(2000000, "tons"),
  29635. name: "Goddess",
  29636. image: {
  29637. source: "./media/characters/lady-kubwa/goddess.svg",
  29638. extra: 1240.5 / 1223,
  29639. bottom: 22 / 1263
  29640. }
  29641. },
  29642. goddesser: {
  29643. height: math.unit(900, "feet"),
  29644. weight: math.unit(20000000, "lb"),
  29645. name: "Goddess-er",
  29646. image: {
  29647. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29648. extra: 899 / 888,
  29649. bottom: 12.6 / 912
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Macro",
  29656. height: math.unit(600, "feet"),
  29657. default: true
  29658. },
  29659. {
  29660. name: "Megamacro",
  29661. height: math.unit(250, "miles")
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29667. {
  29668. front: {
  29669. height: math.unit(7 + 7 / 12, "feet"),
  29670. weight: math.unit(250, "lb"),
  29671. name: "Front",
  29672. image: {
  29673. source: "./media/characters/tala-grovehorn/front.svg",
  29674. extra: 2636 / 2525,
  29675. bottom: 147 / 2781
  29676. }
  29677. },
  29678. back: {
  29679. height: math.unit(7 + 7 / 12, "feet"),
  29680. weight: math.unit(250, "lb"),
  29681. name: "Back",
  29682. image: {
  29683. source: "./media/characters/tala-grovehorn/back.svg",
  29684. extra: 2635 / 2539,
  29685. bottom: 100 / 2732.8
  29686. }
  29687. },
  29688. mouth: {
  29689. height: math.unit(1.15, "feet"),
  29690. name: "Mouth",
  29691. image: {
  29692. source: "./media/characters/tala-grovehorn/mouth.svg"
  29693. }
  29694. },
  29695. dick: {
  29696. height: math.unit(2.36, "feet"),
  29697. name: "Dick",
  29698. image: {
  29699. source: "./media/characters/tala-grovehorn/dick.svg"
  29700. }
  29701. },
  29702. slit: {
  29703. height: math.unit(0.61, "feet"),
  29704. name: "Slit",
  29705. image: {
  29706. source: "./media/characters/tala-grovehorn/slit.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. ]
  29712. ))
  29713. characterMakers.push(() => makeCharacter(
  29714. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29715. {
  29716. front: {
  29717. height: math.unit(7 + 7 / 12, "feet"),
  29718. weight: math.unit(225, "lb"),
  29719. name: "Front",
  29720. image: {
  29721. source: "./media/characters/epona/front.svg",
  29722. extra: 2445 / 2290,
  29723. bottom: 251 / 2696
  29724. }
  29725. },
  29726. back: {
  29727. height: math.unit(7 + 7 / 12, "feet"),
  29728. weight: math.unit(225, "lb"),
  29729. name: "Back",
  29730. image: {
  29731. source: "./media/characters/epona/back.svg",
  29732. extra: 2546 / 2408,
  29733. bottom: 44 / 2589
  29734. }
  29735. },
  29736. genitals: {
  29737. height: math.unit(1.5, "feet"),
  29738. name: "Genitals",
  29739. image: {
  29740. source: "./media/characters/epona/genitals.svg"
  29741. }
  29742. },
  29743. },
  29744. [
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(7 + 7 / 12, "feet"),
  29748. default: true
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(7, "feet"),
  29757. weight: math.unit(518, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/avia-bloodbourn/front.svg",
  29761. extra: 1466 / 1350,
  29762. bottom: 65 / 1527
  29763. }
  29764. },
  29765. },
  29766. [
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29771. {
  29772. front: {
  29773. height: math.unit(9.35, "feet"),
  29774. weight: math.unit(600, "lb"),
  29775. name: "Front",
  29776. image: {
  29777. source: "./media/characters/amera/front.svg",
  29778. extra: 891 / 818,
  29779. bottom: 30 / 922.7
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(9.35, "feet"),
  29784. weight: math.unit(600, "lb"),
  29785. name: "Back",
  29786. image: {
  29787. source: "./media/characters/amera/back.svg",
  29788. extra: 876 / 824,
  29789. bottom: 6.8 / 884
  29790. }
  29791. },
  29792. dick: {
  29793. height: math.unit(2.14, "feet"),
  29794. name: "Dick",
  29795. image: {
  29796. source: "./media/characters/amera/dick.svg"
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Normal",
  29803. height: math.unit(9.35, "feet"),
  29804. default: true
  29805. },
  29806. ]
  29807. ))
  29808. characterMakers.push(() => makeCharacter(
  29809. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29810. {
  29811. kneeling: {
  29812. height: math.unit(3 + 4 / 12, "feet"),
  29813. weight: math.unit(90, "lb"),
  29814. name: "Kneeling",
  29815. image: {
  29816. source: "./media/characters/rosewen/kneeling.svg",
  29817. extra: 1835 / 1571,
  29818. bottom: 27.7 / 1862
  29819. }
  29820. },
  29821. },
  29822. [
  29823. {
  29824. name: "Normal",
  29825. height: math.unit(3 + 4 / 12, "feet"),
  29826. default: true
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(5 + 10 / 12, "feet"),
  29835. weight: math.unit(200, "lb"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/sabah/front.svg",
  29839. extra: 849 / 763,
  29840. bottom: 33.9 / 881
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(5 + 10 / 12, "feet"),
  29848. default: true
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29854. {
  29855. front: {
  29856. height: math.unit(3 + 5 / 12, "feet"),
  29857. weight: math.unit(40, "kg"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/purple-flame/front.svg",
  29861. extra: 1577 / 1412,
  29862. bottom: 97 / 1694
  29863. }
  29864. },
  29865. frontDressed: {
  29866. height: math.unit(3 + 5 / 12, "feet"),
  29867. weight: math.unit(40, "kg"),
  29868. name: "Front (Dressed)",
  29869. image: {
  29870. source: "./media/characters/purple-flame/front-dressed.svg",
  29871. extra: 1577 / 1412,
  29872. bottom: 97 / 1694
  29873. }
  29874. },
  29875. headphones: {
  29876. height: math.unit(0.85, "feet"),
  29877. name: "Headphones",
  29878. image: {
  29879. source: "./media/characters/purple-flame/headphones.svg"
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Really Small",
  29886. height: math.unit(5, "cm")
  29887. },
  29888. {
  29889. name: "Micro",
  29890. height: math.unit(1 + 5 / 12, "feet")
  29891. },
  29892. {
  29893. name: "Normal",
  29894. height: math.unit(3 + 5 / 12, "feet"),
  29895. default: true
  29896. },
  29897. {
  29898. name: "Minimacro",
  29899. height: math.unit(125, "feet")
  29900. },
  29901. {
  29902. name: "Macro",
  29903. height: math.unit(0.5, "miles")
  29904. },
  29905. {
  29906. name: "Megamacro",
  29907. height: math.unit(50, "miles")
  29908. },
  29909. {
  29910. name: "Gigantic",
  29911. height: math.unit(750, "miles")
  29912. },
  29913. {
  29914. name: "Planetary",
  29915. height: math.unit(15000, "miles")
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(14, "feet"),
  29924. weight: math.unit(959, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/arsenal/front.svg",
  29928. extra: 2357 / 2157,
  29929. bottom: 93 / 2458
  29930. }
  29931. },
  29932. },
  29933. [
  29934. {
  29935. name: "Normal",
  29936. height: math.unit(14, "feet"),
  29937. default: true
  29938. },
  29939. ]
  29940. ))
  29941. characterMakers.push(() => makeCharacter(
  29942. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29943. {
  29944. front: {
  29945. height: math.unit(6, "feet"),
  29946. weight: math.unit(150, "lb"),
  29947. name: "Front",
  29948. image: {
  29949. source: "./media/characters/adira/front.svg",
  29950. extra: 2121/2013,
  29951. bottom: 206/2327
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Micro",
  29958. height: math.unit(4, "inches"),
  29959. default: true
  29960. },
  29961. {
  29962. name: "Macro",
  29963. height: math.unit(50, "feet")
  29964. },
  29965. ]
  29966. ))
  29967. characterMakers.push(() => makeCharacter(
  29968. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29969. {
  29970. front: {
  29971. height: math.unit(16, "feet"),
  29972. weight: math.unit(1000, "lb"),
  29973. name: "Front",
  29974. image: {
  29975. source: "./media/characters/grim/front.svg",
  29976. extra: 622 / 614,
  29977. bottom: 18.1 / 642
  29978. }
  29979. },
  29980. back: {
  29981. height: math.unit(16, "feet"),
  29982. weight: math.unit(1000, "lb"),
  29983. name: "Back",
  29984. image: {
  29985. source: "./media/characters/grim/back.svg",
  29986. extra: 610.6 / 602,
  29987. bottom: 40.8 / 652
  29988. }
  29989. },
  29990. hunched: {
  29991. height: math.unit(9.75, "feet"),
  29992. weight: math.unit(1000, "lb"),
  29993. name: "Hunched",
  29994. image: {
  29995. source: "./media/characters/grim/hunched.svg",
  29996. extra: 304 / 297,
  29997. bottom: 35.4 / 394
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Normal",
  30004. height: math.unit(16, "feet"),
  30005. default: true
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(2.3, "meters"),
  30014. weight: math.unit(300, "lb"),
  30015. name: "Front",
  30016. image: {
  30017. source: "./media/characters/sinja/front-sfw.svg",
  30018. extra: 1393 / 1294,
  30019. bottom: 70 / 1463
  30020. }
  30021. },
  30022. frontNsfw: {
  30023. height: math.unit(2.3, "meters"),
  30024. weight: math.unit(300, "lb"),
  30025. name: "Front (NSFW)",
  30026. image: {
  30027. source: "./media/characters/sinja/front-nsfw.svg",
  30028. extra: 1393 / 1294,
  30029. bottom: 70 / 1463
  30030. }
  30031. },
  30032. back: {
  30033. height: math.unit(2.3, "meters"),
  30034. weight: math.unit(300, "lb"),
  30035. name: "Back",
  30036. image: {
  30037. source: "./media/characters/sinja/back.svg",
  30038. extra: 1393 / 1294,
  30039. bottom: 70 / 1463
  30040. }
  30041. },
  30042. head: {
  30043. height: math.unit(1.771, "feet"),
  30044. name: "Head",
  30045. image: {
  30046. source: "./media/characters/sinja/head.svg"
  30047. }
  30048. },
  30049. slit: {
  30050. height: math.unit(0.8, "feet"),
  30051. name: "Slit",
  30052. image: {
  30053. source: "./media/characters/sinja/slit.svg"
  30054. }
  30055. },
  30056. },
  30057. [
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(2.3, "meters")
  30061. },
  30062. {
  30063. name: "Macro",
  30064. height: math.unit(91, "meters"),
  30065. default: true
  30066. },
  30067. {
  30068. name: "Megamacro",
  30069. height: math.unit(91440, "meters")
  30070. },
  30071. {
  30072. name: "Gigamacro",
  30073. height: math.unit(60960000, "meters")
  30074. },
  30075. {
  30076. name: "Teramacro",
  30077. height: math.unit(9144000000, "meters")
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(1.7, "meters"),
  30086. weight: math.unit(130, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/kyu/front.svg",
  30090. extra: 415 / 395,
  30091. bottom: 5 / 420
  30092. }
  30093. },
  30094. head: {
  30095. height: math.unit(1.75, "feet"),
  30096. name: "Head",
  30097. image: {
  30098. source: "./media/characters/kyu/head.svg"
  30099. }
  30100. },
  30101. foot: {
  30102. height: math.unit(0.81, "feet"),
  30103. name: "Foot",
  30104. image: {
  30105. source: "./media/characters/kyu/foot.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Normal",
  30112. height: math.unit(1.7, "meters")
  30113. },
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(131, "feet"),
  30117. default: true
  30118. },
  30119. {
  30120. name: "Megamacro",
  30121. height: math.unit(91440, "meters")
  30122. },
  30123. {
  30124. name: "Gigamacro",
  30125. height: math.unit(60960000, "meters")
  30126. },
  30127. {
  30128. name: "Teramacro",
  30129. height: math.unit(9144000000, "meters")
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(7 + 1 / 12, "feet"),
  30138. weight: math.unit(250, "lb"),
  30139. name: "Front",
  30140. image: {
  30141. source: "./media/characters/joey/front.svg",
  30142. extra: 1791 / 1537,
  30143. bottom: 28 / 1816
  30144. }
  30145. },
  30146. },
  30147. [
  30148. {
  30149. name: "Micro",
  30150. height: math.unit(3, "inches")
  30151. },
  30152. {
  30153. name: "Normal",
  30154. height: math.unit(7 + 1 / 12, "feet"),
  30155. default: true
  30156. },
  30157. ]
  30158. ))
  30159. characterMakers.push(() => makeCharacter(
  30160. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30161. {
  30162. front: {
  30163. height: math.unit(165, "cm"),
  30164. weight: math.unit(140, "lb"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/sam-evans/front.svg",
  30168. extra: 3417 / 3230,
  30169. bottom: 41.3 / 3417
  30170. }
  30171. },
  30172. frontSixTails: {
  30173. height: math.unit(165, "cm"),
  30174. weight: math.unit(140, "lb"),
  30175. name: "Front-six-tails",
  30176. image: {
  30177. source: "./media/characters/sam-evans/front-six-tails.svg",
  30178. extra: 3417 / 3230,
  30179. bottom: 41.3 / 3417
  30180. }
  30181. },
  30182. back: {
  30183. height: math.unit(165, "cm"),
  30184. weight: math.unit(140, "lb"),
  30185. name: "Back",
  30186. image: {
  30187. source: "./media/characters/sam-evans/back.svg",
  30188. extra: 3227 / 3032,
  30189. bottom: 6.8 / 3234
  30190. }
  30191. },
  30192. face: {
  30193. height: math.unit(0.68, "feet"),
  30194. name: "Face",
  30195. image: {
  30196. source: "./media/characters/sam-evans/face.svg"
  30197. }
  30198. },
  30199. },
  30200. [
  30201. {
  30202. name: "Normal",
  30203. height: math.unit(165, "cm"),
  30204. default: true
  30205. },
  30206. {
  30207. name: "Macro",
  30208. height: math.unit(100, "meters")
  30209. },
  30210. {
  30211. name: "Macro+",
  30212. height: math.unit(800, "meters")
  30213. },
  30214. {
  30215. name: "Macro++",
  30216. height: math.unit(3, "km")
  30217. },
  30218. {
  30219. name: "Macro+++",
  30220. height: math.unit(30, "km")
  30221. },
  30222. ]
  30223. ))
  30224. characterMakers.push(() => makeCharacter(
  30225. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30226. {
  30227. front: {
  30228. height: math.unit(10, "feet"),
  30229. weight: math.unit(750, "lb"),
  30230. name: "Front",
  30231. image: {
  30232. source: "./media/characters/juliet-a/front.svg",
  30233. extra: 1766 / 1720,
  30234. bottom: 43 / 1809
  30235. }
  30236. },
  30237. back: {
  30238. height: math.unit(10, "feet"),
  30239. weight: math.unit(750, "lb"),
  30240. name: "Back",
  30241. image: {
  30242. source: "./media/characters/juliet-a/back.svg",
  30243. extra: 1781 / 1734,
  30244. bottom: 35 / 1810,
  30245. }
  30246. },
  30247. },
  30248. [
  30249. {
  30250. name: "Normal",
  30251. height: math.unit(10, "feet"),
  30252. default: true
  30253. },
  30254. {
  30255. name: "Dragon Form",
  30256. height: math.unit(250, "feet")
  30257. },
  30258. {
  30259. name: "Macro",
  30260. height: math.unit(1000, "feet")
  30261. },
  30262. {
  30263. name: "Megamacro",
  30264. height: math.unit(10000, "feet")
  30265. }
  30266. ]
  30267. ))
  30268. characterMakers.push(() => makeCharacter(
  30269. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30270. {
  30271. regular: {
  30272. height: math.unit(7 + 3 / 12, "feet"),
  30273. weight: math.unit(260, "lb"),
  30274. name: "Regular",
  30275. image: {
  30276. source: "./media/characters/wild/regular.svg",
  30277. extra: 97.45 / 92,
  30278. bottom: 6.8 / 104.3
  30279. }
  30280. },
  30281. biggums: {
  30282. height: math.unit(8 + 6 / 12, "feet"),
  30283. weight: math.unit(425, "lb"),
  30284. name: "Biggums",
  30285. image: {
  30286. source: "./media/characters/wild/biggums.svg",
  30287. extra: 97.45 / 92,
  30288. bottom: 7.5 / 132.34
  30289. }
  30290. },
  30291. mawRegular: {
  30292. height: math.unit(1.24, "feet"),
  30293. name: "Maw (Regular)",
  30294. image: {
  30295. source: "./media/characters/wild/maw.svg"
  30296. }
  30297. },
  30298. mawBiggums: {
  30299. height: math.unit(1.47, "feet"),
  30300. name: "Maw (Biggums)",
  30301. image: {
  30302. source: "./media/characters/wild/maw.svg"
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(7 + 3 / 12, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30316. {
  30317. front: {
  30318. height: math.unit(2.5, "meters"),
  30319. weight: math.unit(200, "kg"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/vidar/front.svg",
  30323. extra: 2994 / 2795,
  30324. bottom: 56 / 3061
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(2.5, "meters"),
  30329. weight: math.unit(200, "kg"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/vidar/back.svg",
  30333. extra: 3131 / 2928,
  30334. bottom: 13.5 / 3141.5
  30335. }
  30336. },
  30337. feral: {
  30338. height: math.unit(2.5, "meters"),
  30339. weight: math.unit(2000, "kg"),
  30340. name: "Feral",
  30341. image: {
  30342. source: "./media/characters/vidar/feral.svg",
  30343. extra: 2790 / 1765,
  30344. bottom: 6 / 2796
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(2.5, "meters"),
  30352. default: true
  30353. },
  30354. {
  30355. name: "Macro",
  30356. height: math.unit(100, "meters")
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30362. {
  30363. front: {
  30364. height: math.unit(5 + 9 / 12, "feet"),
  30365. weight: math.unit(120, "lb"),
  30366. name: "Front",
  30367. image: {
  30368. source: "./media/characters/ash/front.svg",
  30369. extra: 2189 / 1961,
  30370. bottom: 5.2 / 2194
  30371. }
  30372. },
  30373. },
  30374. [
  30375. {
  30376. name: "Normal",
  30377. height: math.unit(5 + 9 / 12, "feet"),
  30378. default: true
  30379. },
  30380. ]
  30381. ))
  30382. characterMakers.push(() => makeCharacter(
  30383. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30384. {
  30385. front: {
  30386. height: math.unit(9, "feet"),
  30387. weight: math.unit(10000, "lb"),
  30388. name: "Front",
  30389. image: {
  30390. source: "./media/characters/gygabite/front.svg",
  30391. bottom: 31.7 / 537.8,
  30392. extra: 505 / 370
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(9, "feet"),
  30400. default: true
  30401. },
  30402. ]
  30403. ))
  30404. characterMakers.push(() => makeCharacter(
  30405. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30406. {
  30407. front: {
  30408. height: math.unit(12, "feet"),
  30409. weight: math.unit(4000, "lb"),
  30410. name: "Front",
  30411. image: {
  30412. source: "./media/characters/p0tat0/front.svg",
  30413. extra: 1065 / 921,
  30414. bottom: 55.7 / 1121.25
  30415. }
  30416. },
  30417. },
  30418. [
  30419. {
  30420. name: "Normal",
  30421. height: math.unit(12, "feet"),
  30422. default: true
  30423. },
  30424. ]
  30425. ))
  30426. characterMakers.push(() => makeCharacter(
  30427. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30428. {
  30429. side: {
  30430. height: math.unit(6.5, "feet"),
  30431. weight: math.unit(800, "lb"),
  30432. name: "Side",
  30433. image: {
  30434. source: "./media/characters/dusk/side.svg",
  30435. extra: 615 / 373,
  30436. bottom: 53 / 664
  30437. }
  30438. },
  30439. sitting: {
  30440. height: math.unit(7, "feet"),
  30441. weight: math.unit(800, "lb"),
  30442. name: "Sitting",
  30443. image: {
  30444. source: "./media/characters/dusk/sitting.svg",
  30445. extra: 753 / 425,
  30446. bottom: 33 / 774
  30447. }
  30448. },
  30449. head: {
  30450. height: math.unit(6.1, "feet"),
  30451. name: "Head",
  30452. image: {
  30453. source: "./media/characters/dusk/head.svg"
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Normal",
  30460. height: math.unit(7, "feet"),
  30461. default: true
  30462. },
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(15, "feet"),
  30470. weight: math.unit(7000, "lb"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/jay-direwolf/front.svg",
  30474. extra: 1810 / 1732,
  30475. bottom: 66 / 1892
  30476. }
  30477. },
  30478. },
  30479. [
  30480. {
  30481. name: "Normal",
  30482. height: math.unit(15, "feet"),
  30483. default: true
  30484. },
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30489. {
  30490. front: {
  30491. height: math.unit(4 + 9 / 12, "feet"),
  30492. weight: math.unit(130, "lb"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/anchovie/front.svg",
  30496. extra: 382 / 350,
  30497. bottom: 25 / 409
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(4 + 9 / 12, "feet"),
  30502. weight: math.unit(130, "lb"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/anchovie/back.svg",
  30506. extra: 385 / 352,
  30507. bottom: 16.6 / 402
  30508. }
  30509. },
  30510. frontDressed: {
  30511. height: math.unit(4 + 9 / 12, "feet"),
  30512. weight: math.unit(130, "lb"),
  30513. name: "Front (Dressed)",
  30514. image: {
  30515. source: "./media/characters/anchovie/front-dressed.svg",
  30516. extra: 382 / 350,
  30517. bottom: 25 / 409
  30518. }
  30519. },
  30520. backDressed: {
  30521. height: math.unit(4 + 9 / 12, "feet"),
  30522. weight: math.unit(130, "lb"),
  30523. name: "Back (Dressed)",
  30524. image: {
  30525. source: "./media/characters/anchovie/back-dressed.svg",
  30526. extra: 385 / 352,
  30527. bottom: 16.6 / 402
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Micro",
  30534. height: math.unit(6.4, "inches")
  30535. },
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(4 + 9 / 12, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(2, "meters"),
  30548. weight: math.unit(180, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/acidrenamon/front.svg",
  30552. extra: 987 / 890,
  30553. bottom: 22.8 / 1009
  30554. }
  30555. },
  30556. back: {
  30557. height: math.unit(2, "meters"),
  30558. weight: math.unit(180, "lb"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/acidrenamon/back.svg",
  30562. extra: 983 / 891,
  30563. bottom: 8.4 / 992
  30564. }
  30565. },
  30566. head: {
  30567. height: math.unit(1.92, "feet"),
  30568. name: "Head",
  30569. image: {
  30570. source: "./media/characters/acidrenamon/head.svg"
  30571. }
  30572. },
  30573. rump: {
  30574. height: math.unit(1.72, "feet"),
  30575. name: "Rump",
  30576. image: {
  30577. source: "./media/characters/acidrenamon/rump.svg"
  30578. }
  30579. },
  30580. tail: {
  30581. height: math.unit(4.2, "feet"),
  30582. name: "Tail",
  30583. image: {
  30584. source: "./media/characters/acidrenamon/tail.svg"
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Normal",
  30591. height: math.unit(2, "meters"),
  30592. default: true
  30593. },
  30594. {
  30595. name: "Minimacro",
  30596. height: math.unit(7, "meters")
  30597. },
  30598. {
  30599. name: "Macro",
  30600. height: math.unit(200, "meters")
  30601. },
  30602. {
  30603. name: "Gigamacro",
  30604. height: math.unit(0.2, "earths")
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(152, "feet"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/kenzie-lee/front.svg",
  30616. extra: 1869/1774,
  30617. bottom: 128/1997
  30618. }
  30619. },
  30620. side: {
  30621. height: math.unit(86, "feet"),
  30622. name: "Side",
  30623. image: {
  30624. source: "./media/characters/kenzie-lee/side.svg",
  30625. extra: 930/815,
  30626. bottom: 177/1107
  30627. }
  30628. },
  30629. paw: {
  30630. height: math.unit(15, "feet"),
  30631. name: "Paw",
  30632. image: {
  30633. source: "./media/characters/kenzie-lee/paw.svg"
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Kenzie Flea",
  30640. height: math.unit(2, "mm"),
  30641. default: true
  30642. },
  30643. {
  30644. name: "Micro",
  30645. height: math.unit(2, "inches")
  30646. },
  30647. {
  30648. name: "Normal",
  30649. height: math.unit(152, "feet")
  30650. },
  30651. {
  30652. name: "Megamacro",
  30653. height: math.unit(7, "miles")
  30654. },
  30655. {
  30656. name: "Gigamacro",
  30657. height: math.unit(8000, "miles")
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(6, "feet"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/withers/front.svg",
  30669. extra: 1935/1760,
  30670. bottom: 72/2007
  30671. }
  30672. },
  30673. back: {
  30674. height: math.unit(6, "feet"),
  30675. name: "Back",
  30676. image: {
  30677. source: "./media/characters/withers/back.svg",
  30678. extra: 1944/1792,
  30679. bottom: 12/1956
  30680. }
  30681. },
  30682. dressed: {
  30683. height: math.unit(6, "feet"),
  30684. name: "Dressed",
  30685. image: {
  30686. source: "./media/characters/withers/dressed.svg",
  30687. extra: 1937/1765,
  30688. bottom: 73/2010
  30689. }
  30690. },
  30691. phase1: {
  30692. height: math.unit(1.1, "feet"),
  30693. name: "Phase 1",
  30694. image: {
  30695. source: "./media/characters/withers/phase-1.svg",
  30696. extra: 1885/1232,
  30697. bottom: 0/1885
  30698. }
  30699. },
  30700. phase2: {
  30701. height: math.unit(1.05, "feet"),
  30702. name: "Phase 2",
  30703. image: {
  30704. source: "./media/characters/withers/phase-2.svg",
  30705. extra: 1792/1090,
  30706. bottom: 0/1792
  30707. }
  30708. },
  30709. partyWipe: {
  30710. height: math.unit(1.1, "feet"),
  30711. name: "Party Wipe",
  30712. image: {
  30713. source: "./media/characters/withers/party-wipe.svg",
  30714. extra: 1864/1207,
  30715. bottom: 0/1864
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Macro",
  30722. height: math.unit(167, "feet"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Megamacro",
  30727. height: math.unit(15, "miles")
  30728. }
  30729. ]
  30730. ))
  30731. characterMakers.push(() => makeCharacter(
  30732. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30733. {
  30734. front: {
  30735. height: math.unit(6 + 7 / 12, "feet"),
  30736. weight: math.unit(250, "lb"),
  30737. name: "Front",
  30738. image: {
  30739. source: "./media/characters/nemoskii/front.svg",
  30740. extra: 2270 / 1734,
  30741. bottom: 86 / 2354
  30742. }
  30743. },
  30744. back: {
  30745. height: math.unit(6 + 7 / 12, "feet"),
  30746. weight: math.unit(250, "lb"),
  30747. name: "Back",
  30748. image: {
  30749. source: "./media/characters/nemoskii/back.svg",
  30750. extra: 1845 / 1788,
  30751. bottom: 10.5 / 1852
  30752. }
  30753. },
  30754. head: {
  30755. height: math.unit(1.31, "feet"),
  30756. name: "Head",
  30757. image: {
  30758. source: "./media/characters/nemoskii/head.svg"
  30759. }
  30760. },
  30761. },
  30762. [
  30763. {
  30764. name: "Micro",
  30765. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30766. },
  30767. {
  30768. name: "Normal",
  30769. height: math.unit(6 + 7 / 12, "feet"),
  30770. default: true
  30771. },
  30772. {
  30773. name: "Macro",
  30774. height: math.unit((6 + 7 / 12) * 150, "feet")
  30775. },
  30776. {
  30777. name: "Macro+",
  30778. height: math.unit((6 + 7 / 12) * 500, "feet")
  30779. },
  30780. {
  30781. name: "Megamacro",
  30782. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(1, "mile"),
  30791. weight: math.unit(265261.9, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/shui/front.svg",
  30795. extra: 1633 / 1564,
  30796. bottom: 91.5 / 1726
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Macro",
  30803. height: math.unit(1, "mile"),
  30804. default: true
  30805. },
  30806. ]
  30807. ))
  30808. characterMakers.push(() => makeCharacter(
  30809. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30810. {
  30811. front: {
  30812. height: math.unit(12 + 6 / 12, "feet"),
  30813. weight: math.unit(1342, "lb"),
  30814. name: "Front",
  30815. image: {
  30816. source: "./media/characters/arokh-takakura/front.svg",
  30817. extra: 1089 / 1043,
  30818. bottom: 77.4 / 1176.7
  30819. }
  30820. },
  30821. back: {
  30822. height: math.unit(12 + 6 / 12, "feet"),
  30823. weight: math.unit(1342, "lb"),
  30824. name: "Back",
  30825. image: {
  30826. source: "./media/characters/arokh-takakura/back.svg",
  30827. extra: 1046 / 1019,
  30828. bottom: 102 / 1150
  30829. }
  30830. },
  30831. },
  30832. [
  30833. {
  30834. name: "Big",
  30835. height: math.unit(12 + 6 / 12, "feet"),
  30836. default: true
  30837. },
  30838. ]
  30839. ))
  30840. characterMakers.push(() => makeCharacter(
  30841. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30842. {
  30843. front: {
  30844. height: math.unit(5 + 6 / 12, "feet"),
  30845. weight: math.unit(150, "lb"),
  30846. name: "Front",
  30847. image: {
  30848. source: "./media/characters/theo/front.svg",
  30849. extra: 1184 / 1131,
  30850. bottom: 7.4 / 1191
  30851. }
  30852. },
  30853. },
  30854. [
  30855. {
  30856. name: "Micro",
  30857. height: math.unit(5, "inches")
  30858. },
  30859. {
  30860. name: "Normal",
  30861. height: math.unit(5 + 6 / 12, "feet"),
  30862. default: true
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30868. {
  30869. front: {
  30870. height: math.unit(5 + 9 / 12, "feet"),
  30871. weight: math.unit(130, "lb"),
  30872. name: "Front",
  30873. image: {
  30874. source: "./media/characters/cecelia-swift/front.svg",
  30875. extra: 502 / 484,
  30876. bottom: 23 / 523
  30877. }
  30878. },
  30879. back: {
  30880. height: math.unit(5 + 9 / 12, "feet"),
  30881. weight: math.unit(130, "lb"),
  30882. name: "Back",
  30883. image: {
  30884. source: "./media/characters/cecelia-swift/back.svg",
  30885. extra: 499 / 485,
  30886. bottom: 12 / 511
  30887. }
  30888. },
  30889. head: {
  30890. height: math.unit(0.90, "feet"),
  30891. name: "Head",
  30892. image: {
  30893. source: "./media/characters/cecelia-swift/head.svg"
  30894. }
  30895. },
  30896. rump: {
  30897. height: math.unit(1.75, "feet"),
  30898. name: "Rump",
  30899. image: {
  30900. source: "./media/characters/cecelia-swift/rump.svg"
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(5 + 9 / 12, "feet"),
  30908. default: true
  30909. },
  30910. {
  30911. name: "Big",
  30912. height: math.unit(50, "feet")
  30913. },
  30914. {
  30915. name: "Macro",
  30916. height: math.unit(100, "feet")
  30917. },
  30918. {
  30919. name: "Macro+",
  30920. height: math.unit(500, "feet")
  30921. },
  30922. {
  30923. name: "Macro++",
  30924. height: math.unit(1000, "feet")
  30925. },
  30926. ]
  30927. ))
  30928. characterMakers.push(() => makeCharacter(
  30929. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30930. {
  30931. front: {
  30932. height: math.unit(6, "feet"),
  30933. weight: math.unit(150, "lb"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/kaunan/front.svg",
  30937. extra: 2890 / 2523,
  30938. bottom: 49 / 2939
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Macro",
  30945. height: math.unit(150, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30952. {
  30953. dressed: {
  30954. height: math.unit(175, "cm"),
  30955. weight: math.unit(60, "kg"),
  30956. name: "Dressed",
  30957. image: {
  30958. source: "./media/characters/fei/dressed.svg",
  30959. extra: 1402/1278,
  30960. bottom: 27/1429
  30961. }
  30962. },
  30963. nude: {
  30964. height: math.unit(175, "cm"),
  30965. weight: math.unit(60, "kg"),
  30966. name: "Nude",
  30967. image: {
  30968. source: "./media/characters/fei/nude.svg",
  30969. extra: 1402/1278,
  30970. bottom: 27/1429
  30971. }
  30972. },
  30973. heels: {
  30974. height: math.unit(0.466, "feet"),
  30975. name: "Heels",
  30976. image: {
  30977. source: "./media/characters/fei/heels.svg",
  30978. extra: 156/152,
  30979. bottom: 28/184
  30980. }
  30981. },
  30982. },
  30983. [
  30984. {
  30985. name: "Mortal",
  30986. height: math.unit(175, "cm")
  30987. },
  30988. {
  30989. name: "Normal",
  30990. height: math.unit(3500, "m")
  30991. },
  30992. {
  30993. name: "Stroll",
  30994. height: math.unit(18.4, "km"),
  30995. default: true
  30996. },
  30997. {
  30998. name: "Showoff",
  30999. height: math.unit(175, "km")
  31000. },
  31001. ]
  31002. ))
  31003. characterMakers.push(() => makeCharacter(
  31004. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  31005. {
  31006. front: {
  31007. height: math.unit(7, "feet"),
  31008. weight: math.unit(1000, "kg"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/edrax/front.svg",
  31012. extra: 2838 / 2550,
  31013. bottom: 130 / 2968
  31014. }
  31015. },
  31016. },
  31017. [
  31018. {
  31019. name: "Small",
  31020. height: math.unit(7, "feet")
  31021. },
  31022. {
  31023. name: "Normal",
  31024. height: math.unit(1500, "meters")
  31025. },
  31026. {
  31027. name: "Mega",
  31028. height: math.unit(12000000, "km"),
  31029. default: true
  31030. },
  31031. {
  31032. name: "Megamacro",
  31033. height: math.unit(10600000, "lightyears")
  31034. },
  31035. {
  31036. name: "Hypermacro",
  31037. height: math.unit(256, "yottameters")
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(10, "feet"),
  31046. weight: math.unit(750, "lb"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/clove/front.svg",
  31050. extra: 1918/1751,
  31051. bottom: 52/1970
  31052. }
  31053. },
  31054. back: {
  31055. height: math.unit(10, "feet"),
  31056. weight: math.unit(750, "lb"),
  31057. name: "Back",
  31058. image: {
  31059. source: "./media/characters/clove/back.svg",
  31060. extra: 1912/1747,
  31061. bottom: 50/1962
  31062. }
  31063. },
  31064. },
  31065. [
  31066. {
  31067. name: "Normal",
  31068. height: math.unit(10, "feet"),
  31069. default: true
  31070. },
  31071. ]
  31072. ))
  31073. characterMakers.push(() => makeCharacter(
  31074. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31075. {
  31076. front: {
  31077. height: math.unit(4, "feet"),
  31078. weight: math.unit(50, "lb"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/alex-rabbit/front.svg",
  31082. extra: 507 / 458,
  31083. bottom: 18.5 / 527
  31084. }
  31085. },
  31086. back: {
  31087. height: math.unit(4, "feet"),
  31088. weight: math.unit(50, "lb"),
  31089. name: "Back",
  31090. image: {
  31091. source: "./media/characters/alex-rabbit/back.svg",
  31092. extra: 502 / 460,
  31093. bottom: 18.9 / 521
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(4, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31107. {
  31108. front: {
  31109. height: math.unit(1 + 3 / 12, "feet"),
  31110. weight: math.unit(80, "lb"),
  31111. name: "Front",
  31112. image: {
  31113. source: "./media/characters/zander-rose/front.svg",
  31114. extra: 916 / 797,
  31115. bottom: 17 / 933
  31116. }
  31117. },
  31118. back: {
  31119. height: math.unit(1 + 3 / 12, "feet"),
  31120. weight: math.unit(80, "lb"),
  31121. name: "Back",
  31122. image: {
  31123. source: "./media/characters/zander-rose/back.svg",
  31124. extra: 903 / 779,
  31125. bottom: 31 / 934
  31126. }
  31127. },
  31128. },
  31129. [
  31130. {
  31131. name: "Normal",
  31132. height: math.unit(1 + 3 / 12, "feet"),
  31133. default: true
  31134. },
  31135. ]
  31136. ))
  31137. characterMakers.push(() => makeCharacter(
  31138. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31139. {
  31140. anthro: {
  31141. height: math.unit(6, "feet"),
  31142. weight: math.unit(150, "lb"),
  31143. name: "Anthro",
  31144. image: {
  31145. source: "./media/characters/razz/anthro.svg",
  31146. extra: 1437 / 1343,
  31147. bottom: 48 / 1485
  31148. }
  31149. },
  31150. feral: {
  31151. height: math.unit(6, "feet"),
  31152. weight: math.unit(150, "lb"),
  31153. name: "Feral",
  31154. image: {
  31155. source: "./media/characters/razz/feral.svg",
  31156. extra: 2569 / 1385,
  31157. bottom: 95 / 2664
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Normal",
  31164. height: math.unit(6, "feet"),
  31165. default: true
  31166. },
  31167. ]
  31168. ))
  31169. characterMakers.push(() => makeCharacter(
  31170. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31171. {
  31172. front: {
  31173. height: math.unit(9 + 4 / 12, "feet"),
  31174. weight: math.unit(500, "lb"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/morrigan/front.svg",
  31178. extra: 2707 / 2579,
  31179. bottom: 156 / 2863
  31180. }
  31181. },
  31182. },
  31183. [
  31184. {
  31185. name: "Normal",
  31186. height: math.unit(9 + 4 / 12, "feet"),
  31187. default: true
  31188. },
  31189. ]
  31190. ))
  31191. characterMakers.push(() => makeCharacter(
  31192. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31193. {
  31194. front: {
  31195. height: math.unit(5, "stories"),
  31196. weight: math.unit(4000, "lb"),
  31197. name: "Front",
  31198. image: {
  31199. source: "./media/characters/jenene/front.svg",
  31200. extra: 1780 / 1710,
  31201. bottom: 57 / 1837
  31202. }
  31203. },
  31204. },
  31205. [
  31206. {
  31207. name: "Normal",
  31208. height: math.unit(5, "stories"),
  31209. default: true
  31210. },
  31211. ]
  31212. ))
  31213. characterMakers.push(() => makeCharacter(
  31214. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31215. {
  31216. taurSfw: {
  31217. height: math.unit(10, "meters"),
  31218. weight: math.unit(17500, "kg"),
  31219. name: "Taur",
  31220. image: {
  31221. source: "./media/characters/faey/taur-sfw.svg",
  31222. extra: 1200 / 968,
  31223. bottom: 41 / 1241
  31224. }
  31225. },
  31226. chestmaw: {
  31227. height: math.unit(2.01, "meters"),
  31228. name: "Chestmaw",
  31229. image: {
  31230. source: "./media/characters/faey/chestmaw.svg"
  31231. }
  31232. },
  31233. foot: {
  31234. height: math.unit(2.43, "meters"),
  31235. name: "Foot",
  31236. image: {
  31237. source: "./media/characters/faey/foot.svg"
  31238. }
  31239. },
  31240. jaws: {
  31241. height: math.unit(1.66, "meters"),
  31242. name: "Jaws",
  31243. image: {
  31244. source: "./media/characters/faey/jaws.svg"
  31245. }
  31246. },
  31247. tongues: {
  31248. height: math.unit(2.01, "meters"),
  31249. name: "Tongues",
  31250. image: {
  31251. source: "./media/characters/faey/tongues.svg"
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Small",
  31258. height: math.unit(10, "meters"),
  31259. default: true
  31260. },
  31261. {
  31262. name: "Big",
  31263. height: math.unit(500000, "km")
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(7, "feet"),
  31272. weight: math.unit(275, "lb"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/roku/front.svg",
  31276. extra: 903 / 878,
  31277. bottom: 37 / 940
  31278. }
  31279. },
  31280. },
  31281. [
  31282. {
  31283. name: "Normal",
  31284. height: math.unit(7, "feet"),
  31285. default: true
  31286. },
  31287. {
  31288. name: "Macro",
  31289. height: math.unit(500, "feet")
  31290. },
  31291. {
  31292. name: "Megamacro",
  31293. height: math.unit(200, "miles")
  31294. },
  31295. ]
  31296. ))
  31297. characterMakers.push(() => makeCharacter(
  31298. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31299. {
  31300. front: {
  31301. height: math.unit(6 + 2 / 12, "feet"),
  31302. weight: math.unit(150, "lb"),
  31303. name: "Front",
  31304. image: {
  31305. source: "./media/characters/lira/front.svg",
  31306. extra: 1727 / 1605,
  31307. bottom: 26 / 1753
  31308. }
  31309. },
  31310. back: {
  31311. height: math.unit(6 + 2 / 12, "feet"),
  31312. weight: math.unit(150, "lb"),
  31313. name: "Back",
  31314. image: {
  31315. source: "./media/characters/lira/back.svg",
  31316. extra: 1713/1621,
  31317. bottom: 20/1733
  31318. }
  31319. },
  31320. hand: {
  31321. height: math.unit(0.75, "feet"),
  31322. name: "Hand",
  31323. image: {
  31324. source: "./media/characters/lira/hand.svg"
  31325. }
  31326. },
  31327. maw: {
  31328. height: math.unit(0.65, "feet"),
  31329. name: "Maw",
  31330. image: {
  31331. source: "./media/characters/lira/maw.svg"
  31332. }
  31333. },
  31334. pawDigi: {
  31335. height: math.unit(1.6, "feet"),
  31336. name: "Paw Digi",
  31337. image: {
  31338. source: "./media/characters/lira/paw-digi.svg"
  31339. }
  31340. },
  31341. pawPlanti: {
  31342. height: math.unit(1.4, "feet"),
  31343. name: "Paw Planti",
  31344. image: {
  31345. source: "./media/characters/lira/paw-planti.svg"
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(6 + 2 / 12, "feet"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Macro",
  31357. height: math.unit(100, "feet")
  31358. },
  31359. {
  31360. name: "Macro²",
  31361. height: math.unit(1600, "feet")
  31362. },
  31363. {
  31364. name: "Planetary",
  31365. height: math.unit(20, "earths")
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(6, "feet"),
  31374. weight: math.unit(150, "lb"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/hadjet/front.svg",
  31378. extra: 1480 / 1346,
  31379. bottom: 26 / 1506
  31380. }
  31381. },
  31382. frontNsfw: {
  31383. height: math.unit(6, "feet"),
  31384. weight: math.unit(150, "lb"),
  31385. name: "Front (NSFW)",
  31386. image: {
  31387. source: "./media/characters/hadjet/front-nsfw.svg",
  31388. extra: 1440 / 1358,
  31389. bottom: 52 / 1492
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(10, "stories"),
  31397. default: true
  31398. },
  31399. {
  31400. name: "Megamacro",
  31401. height: math.unit(1.5, "miles")
  31402. },
  31403. {
  31404. name: "Megamacro+",
  31405. height: math.unit(5, "miles")
  31406. },
  31407. ]
  31408. ))
  31409. characterMakers.push(() => makeCharacter(
  31410. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31411. {
  31412. side: {
  31413. height: math.unit(106, "feet"),
  31414. weight: math.unit(500, "tonnes"),
  31415. name: "Side",
  31416. image: {
  31417. source: "./media/characters/kodran/side.svg",
  31418. extra: 553 / 480,
  31419. bottom: 33 / 586
  31420. }
  31421. },
  31422. front: {
  31423. height: math.unit(132, "feet"),
  31424. weight: math.unit(500, "tonnes"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/kodran/front.svg",
  31428. extra: 667 / 643,
  31429. bottom: 42 / 709
  31430. }
  31431. },
  31432. flying: {
  31433. height: math.unit(350, "feet"),
  31434. weight: math.unit(500, "tonnes"),
  31435. name: "Flying",
  31436. image: {
  31437. source: "./media/characters/kodran/flying.svg"
  31438. }
  31439. },
  31440. foot: {
  31441. height: math.unit(33, "feet"),
  31442. name: "Foot",
  31443. image: {
  31444. source: "./media/characters/kodran/foot.svg"
  31445. }
  31446. },
  31447. footFront: {
  31448. height: math.unit(19, "feet"),
  31449. name: "Foot (Front)",
  31450. image: {
  31451. source: "./media/characters/kodran/foot-front.svg",
  31452. extra: 261 / 261,
  31453. bottom: 91 / 352
  31454. }
  31455. },
  31456. headFront: {
  31457. height: math.unit(53, "feet"),
  31458. name: "Head (Front)",
  31459. image: {
  31460. source: "./media/characters/kodran/head-front.svg"
  31461. }
  31462. },
  31463. headSide: {
  31464. height: math.unit(65, "feet"),
  31465. name: "Head (Side)",
  31466. image: {
  31467. source: "./media/characters/kodran/head-side.svg"
  31468. }
  31469. },
  31470. throat: {
  31471. height: math.unit(79, "feet"),
  31472. name: "Throat",
  31473. image: {
  31474. source: "./media/characters/kodran/throat.svg"
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Large",
  31481. height: math.unit(106, "feet"),
  31482. default: true
  31483. },
  31484. ]
  31485. ))
  31486. characterMakers.push(() => makeCharacter(
  31487. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31488. {
  31489. side: {
  31490. height: math.unit(11, "feet"),
  31491. weight: math.unit(150, "lb"),
  31492. name: "Side",
  31493. image: {
  31494. source: "./media/characters/pyxaron/side.svg",
  31495. extra: 305 / 195,
  31496. bottom: 17 / 322
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(11, "feet"),
  31504. default: true
  31505. },
  31506. ]
  31507. ))
  31508. characterMakers.push(() => makeCharacter(
  31509. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31510. {
  31511. front: {
  31512. height: math.unit(6, "feet"),
  31513. weight: math.unit(150, "lb"),
  31514. name: "Front",
  31515. image: {
  31516. source: "./media/characters/meep/front.svg",
  31517. extra: 88 / 80,
  31518. bottom: 6 / 94
  31519. }
  31520. },
  31521. },
  31522. [
  31523. {
  31524. name: "Fun Sized",
  31525. height: math.unit(2, "inches"),
  31526. default: true
  31527. },
  31528. {
  31529. name: "Friend Sized",
  31530. height: math.unit(8, "inches")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(15, "feet"),
  31539. weight: math.unit(2500, "lb"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/holly-rabbit/front.svg",
  31543. extra: 1433 / 1233,
  31544. bottom: 125 / 1558
  31545. }
  31546. },
  31547. dick: {
  31548. height: math.unit(4.6, "feet"),
  31549. name: "Dick",
  31550. image: {
  31551. source: "./media/characters/holly-rabbit/dick.svg"
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(15, "feet"),
  31559. default: true
  31560. },
  31561. {
  31562. name: "Macro",
  31563. height: math.unit(250, "feet")
  31564. },
  31565. {
  31566. name: "Macro+",
  31567. height: math.unit(2500, "feet")
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31573. {
  31574. front: {
  31575. height: math.unit(3.02, "meters"),
  31576. weight: math.unit(500, "kg"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/drena/front.svg",
  31580. extra: 282 / 243,
  31581. bottom: 8 / 290
  31582. }
  31583. },
  31584. side: {
  31585. height: math.unit(3.02, "meters"),
  31586. weight: math.unit(500, "kg"),
  31587. name: "Side",
  31588. image: {
  31589. source: "./media/characters/drena/side.svg",
  31590. extra: 280 / 245,
  31591. bottom: 10 / 290
  31592. }
  31593. },
  31594. back: {
  31595. height: math.unit(3.02, "meters"),
  31596. weight: math.unit(500, "kg"),
  31597. name: "Back",
  31598. image: {
  31599. source: "./media/characters/drena/back.svg",
  31600. extra: 278 / 243,
  31601. bottom: 2 / 280
  31602. }
  31603. },
  31604. foot: {
  31605. height: math.unit(0.75, "meters"),
  31606. name: "Foot",
  31607. image: {
  31608. source: "./media/characters/drena/foot.svg"
  31609. }
  31610. },
  31611. maw: {
  31612. height: math.unit(0.82, "meters"),
  31613. name: "Maw",
  31614. image: {
  31615. source: "./media/characters/drena/maw.svg"
  31616. }
  31617. },
  31618. eating: {
  31619. height: math.unit(0.75, "meters"),
  31620. name: "Eating",
  31621. image: {
  31622. source: "./media/characters/drena/eating.svg"
  31623. }
  31624. },
  31625. rump: {
  31626. height: math.unit(0.93, "meters"),
  31627. name: "Rump",
  31628. image: {
  31629. source: "./media/characters/drena/rump.svg"
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Normal",
  31636. height: math.unit(3.02, "meters"),
  31637. default: true
  31638. },
  31639. ]
  31640. ))
  31641. characterMakers.push(() => makeCharacter(
  31642. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31643. {
  31644. front: {
  31645. height: math.unit(6 + 4 / 12, "feet"),
  31646. weight: math.unit(250, "lb"),
  31647. name: "Front",
  31648. image: {
  31649. source: "./media/characters/remmyzilla/front.svg",
  31650. extra: 4033 / 3588,
  31651. bottom: 123 / 4156
  31652. }
  31653. },
  31654. back: {
  31655. height: math.unit(6 + 4 / 12, "feet"),
  31656. weight: math.unit(250, "lb"),
  31657. name: "Back",
  31658. image: {
  31659. source: "./media/characters/remmyzilla/back.svg",
  31660. extra: 1696/1602,
  31661. bottom: 63/1759
  31662. }
  31663. },
  31664. paw: {
  31665. height: math.unit(1.73, "feet"),
  31666. name: "Paw",
  31667. image: {
  31668. source: "./media/characters/remmyzilla/paw.svg"
  31669. },
  31670. extraAttributes: {
  31671. "toeSize": {
  31672. name: "Toe Size",
  31673. power: 2,
  31674. type: "area",
  31675. base: math.unit(0.0035, "m^2")
  31676. },
  31677. "padSize": {
  31678. name: "Pad Size",
  31679. power: 2,
  31680. type: "area",
  31681. base: math.unit(0.015, "m^2")
  31682. },
  31683. "pawsize": {
  31684. name: "Paw Size",
  31685. power: 2,
  31686. type: "area",
  31687. base: math.unit(0.072, "m^2")
  31688. },
  31689. }
  31690. },
  31691. maw: {
  31692. height: math.unit(1.73, "feet"),
  31693. name: "Maw",
  31694. image: {
  31695. source: "./media/characters/remmyzilla/maw.svg"
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Normal",
  31702. height: math.unit(6 + 4 / 12, "feet")
  31703. },
  31704. {
  31705. name: "Minimacro",
  31706. height: math.unit(12 + 8 / 12, "feet")
  31707. },
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(640, "feet"),
  31711. default: true
  31712. },
  31713. {
  31714. name: "Megamacro",
  31715. height: math.unit(6400, "feet")
  31716. },
  31717. {
  31718. name: "Gigamacro",
  31719. height: math.unit(64000, "miles")
  31720. },
  31721. ]
  31722. ))
  31723. characterMakers.push(() => makeCharacter(
  31724. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31725. {
  31726. front: {
  31727. height: math.unit(2.5, "meters"),
  31728. weight: math.unit(300, "lb"),
  31729. name: "Front",
  31730. image: {
  31731. source: "./media/characters/lawrence/front.svg",
  31732. extra: 357 / 335,
  31733. bottom: 30 / 387
  31734. }
  31735. },
  31736. back: {
  31737. height: math.unit(2.5, "meters"),
  31738. weight: math.unit(300, "lb"),
  31739. name: "Back",
  31740. image: {
  31741. source: "./media/characters/lawrence/back.svg",
  31742. extra: 357 / 338,
  31743. bottom: 16 / 373
  31744. }
  31745. },
  31746. head: {
  31747. height: math.unit(0.9, "meter"),
  31748. name: "Head",
  31749. image: {
  31750. source: "./media/characters/lawrence/head.svg"
  31751. }
  31752. },
  31753. maw: {
  31754. height: math.unit(0.7, "meter"),
  31755. name: "Maw",
  31756. image: {
  31757. source: "./media/characters/lawrence/maw.svg"
  31758. }
  31759. },
  31760. footBottom: {
  31761. height: math.unit(0.5, "meter"),
  31762. name: "Foot (Bottom)",
  31763. image: {
  31764. source: "./media/characters/lawrence/foot-bottom.svg"
  31765. }
  31766. },
  31767. footTop: {
  31768. height: math.unit(0.5, "meter"),
  31769. name: "Foot (Top)",
  31770. image: {
  31771. source: "./media/characters/lawrence/foot-top.svg"
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Normal",
  31778. height: math.unit(2.5, "meters"),
  31779. default: true
  31780. },
  31781. {
  31782. name: "Macro",
  31783. height: math.unit(95, "meters")
  31784. },
  31785. {
  31786. name: "Megamacro",
  31787. height: math.unit(150, "km")
  31788. },
  31789. ]
  31790. ))
  31791. characterMakers.push(() => makeCharacter(
  31792. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31793. {
  31794. front: {
  31795. height: math.unit(4.2, "meters"),
  31796. preyCapacity: math.unit(50, "m^3"),
  31797. weight: math.unit(30, "tonnes"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/sydney/front.svg",
  31801. extra: 1177/1129,
  31802. bottom: 197/1374
  31803. },
  31804. extraAttributes: {
  31805. "length": {
  31806. name: "Length",
  31807. power: 1,
  31808. type: "length",
  31809. base: math.unit(21, "meters")
  31810. },
  31811. }
  31812. },
  31813. },
  31814. [
  31815. {
  31816. name: "Normal",
  31817. height: math.unit(4.2, "meters"),
  31818. default: true
  31819. },
  31820. ]
  31821. ))
  31822. characterMakers.push(() => makeCharacter(
  31823. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31824. {
  31825. back: {
  31826. height: math.unit(201, "feet"),
  31827. name: "Back",
  31828. image: {
  31829. source: "./media/characters/jessica/back.svg",
  31830. extra: 273 / 259,
  31831. bottom: 7 / 280
  31832. }
  31833. },
  31834. },
  31835. [
  31836. {
  31837. name: "Normal",
  31838. height: math.unit(201, "feet"),
  31839. default: true
  31840. },
  31841. {
  31842. name: "Megamacro",
  31843. height: math.unit(8, "miles")
  31844. },
  31845. ]
  31846. ))
  31847. characterMakers.push(() => makeCharacter(
  31848. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31849. {
  31850. side: {
  31851. height: math.unit(5.6, "m"),
  31852. weight: math.unit(8000, "kg"),
  31853. name: "Side",
  31854. image: {
  31855. source: "./media/characters/victoria/side.svg",
  31856. extra: 1542/1229,
  31857. bottom: 124/1666
  31858. }
  31859. },
  31860. maw: {
  31861. height: math.unit(7.14, "feet"),
  31862. name: "Maw",
  31863. image: {
  31864. source: "./media/characters/victoria/maw.svg"
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(5.6, "m"),
  31872. default: true
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31878. {
  31879. front: {
  31880. height: math.unit(5 + 6 / 12, "feet"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/cat/cat-front.svg",
  31884. extra: 1422/1262,
  31885. bottom: 61/1483
  31886. },
  31887. form: "cat",
  31888. default: true
  31889. },
  31890. back: {
  31891. height: math.unit(5 + 6 / 12, "feet"),
  31892. name: "Back",
  31893. image: {
  31894. source: "./media/characters/cat/cat-back.svg",
  31895. extra: 1466/1301,
  31896. bottom: 19/1485
  31897. },
  31898. form: "cat"
  31899. },
  31900. taur: {
  31901. height: math.unit(7, "feet"),
  31902. name: "Side",
  31903. image: {
  31904. source: "./media/characters/cat/taur-side.svg",
  31905. extra: 1389/1233,
  31906. bottom: 83/1472
  31907. },
  31908. form: "taur",
  31909. default: true
  31910. },
  31911. lucarioFront: {
  31912. height: math.unit(4, "feet"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/cat/lucario-front.svg",
  31916. extra: 1149/1019,
  31917. bottom: 84/1233
  31918. },
  31919. form: "lucario",
  31920. default: true
  31921. },
  31922. lucarioBack: {
  31923. height: math.unit(4, "feet"),
  31924. name: "Back",
  31925. image: {
  31926. source: "./media/characters/cat/lucario-back.svg",
  31927. extra: 1190/1059,
  31928. bottom: 33/1223
  31929. },
  31930. form: "lucario"
  31931. },
  31932. riolu_front: {
  31933. height: math.unit(2 + 4/12, "feet"),
  31934. name: "Front",
  31935. image: {
  31936. source: "./media/characters/cat/riolu-front.svg",
  31937. extra: 1104/956,
  31938. bottom: 70/1174
  31939. },
  31940. form: "riolu",
  31941. default: true
  31942. },
  31943. nickit: {
  31944. height: math.unit(2, "feet"),
  31945. name: "Side",
  31946. image: {
  31947. source: "./media/characters/cat/nickit-side.svg",
  31948. extra: 1087/852,
  31949. bottom: 67/1154
  31950. },
  31951. form: "nickit",
  31952. default: true
  31953. },
  31954. lopunnyFront: {
  31955. height: math.unit(5, "feet"),
  31956. name: "Front",
  31957. image: {
  31958. source: "./media/characters/cat/lopunny-front.svg",
  31959. extra: 1217/1078,
  31960. bottom: 23/1240
  31961. },
  31962. form: "lopunny",
  31963. default: true
  31964. },
  31965. lopunnyBack: {
  31966. height: math.unit(5, "feet"),
  31967. name: "Back",
  31968. image: {
  31969. source: "./media/characters/cat/lopunny-back.svg",
  31970. extra: 1205/1057,
  31971. bottom: 33/1238
  31972. },
  31973. form: "lopunny"
  31974. },
  31975. dog_front: {
  31976. height: math.unit(5 + 9/12, "feet"),
  31977. name: "Front",
  31978. image: {
  31979. source: "./media/characters/cat/dog-front.svg",
  31980. extra: 1403/1309,
  31981. bottom: 31/1434
  31982. },
  31983. form: "dog",
  31984. default: true
  31985. },
  31986. dog_back: {
  31987. height: math.unit(5 + 9/12, "feet"),
  31988. name: "Back",
  31989. image: {
  31990. source: "./media/characters/cat/dog-back.svg",
  31991. extra: 1393/1297,
  31992. bottom: 38/1431
  31993. },
  31994. form: "dog",
  31995. },
  31996. pikachu_front: {
  31997. height: math.unit(2.64, "feet"),
  31998. name: "Front",
  31999. image: {
  32000. source: "./media/characters/cat/pikachu-front.svg",
  32001. extra: 1224/958,
  32002. bottom: 34/1258
  32003. },
  32004. form: "pikachu",
  32005. default: true
  32006. },
  32007. pikachu_back: {
  32008. height: math.unit(2.64, "feet"),
  32009. name: "Back",
  32010. image: {
  32011. source: "./media/characters/cat/pikachu-back.svg",
  32012. extra: 1228/958,
  32013. bottom: 16/1244
  32014. },
  32015. form: "pikachu",
  32016. },
  32017. gigachuFront: {
  32018. height: math.unit(75, "feet"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/cat/gigachu-front.svg",
  32022. extra: 1239/1027,
  32023. bottom: 32/1271
  32024. },
  32025. form: "gigachu",
  32026. default: true
  32027. },
  32028. gigachuBack: {
  32029. height: math.unit(75, "feet"),
  32030. name: "Back",
  32031. image: {
  32032. source: "./media/characters/cat/gigachu-back.svg",
  32033. extra: 1229/1030,
  32034. bottom: 9/1238
  32035. },
  32036. form: "gigachu"
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Really small",
  32042. height: math.unit(1, "nm"),
  32043. allForms: true
  32044. },
  32045. {
  32046. name: "Micro",
  32047. height: math.unit(5, "inches"),
  32048. allForms: true
  32049. },
  32050. {
  32051. name: "Normal",
  32052. height: math.unit(5 + 6 / 12, "feet"),
  32053. default: true,
  32054. form: "cat"
  32055. },
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(7, "feet"),
  32059. default: true,
  32060. form: "taur"
  32061. },
  32062. {
  32063. name: "Normal",
  32064. height: math.unit(4, "feet"),
  32065. default: true,
  32066. form: "lucario"
  32067. },
  32068. {
  32069. name: "Normal",
  32070. height: math.unit(2, "feet"),
  32071. default: true,
  32072. form: "nickit"
  32073. },
  32074. {
  32075. name: "Normal",
  32076. height: math.unit(5, "feet"),
  32077. default: true,
  32078. form: "lopunny"
  32079. },
  32080. {
  32081. name: "Normal",
  32082. height: math.unit(2 + 4/12, "feet"),
  32083. default: true,
  32084. form: "riolu"
  32085. },
  32086. {
  32087. name: "Normal",
  32088. height: math.unit(5 + 6 / 12, "feet"),
  32089. default: true,
  32090. form: "dog"
  32091. },
  32092. {
  32093. name: "Macro",
  32094. height: math.unit(50, "feet"),
  32095. allForms: true
  32096. },
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(2.64, "feet"),
  32100. default: true,
  32101. form: "pikachu"
  32102. },
  32103. {
  32104. name: "Dynamax",
  32105. height: math.unit(75, "feet"),
  32106. form: "gigachu",
  32107. default: true
  32108. },
  32109. {
  32110. name: "Macro+",
  32111. height: math.unit(150, "feet"),
  32112. allForms: true
  32113. },
  32114. {
  32115. name: "Megamacro",
  32116. height: math.unit(100, "miles"),
  32117. allForms: true
  32118. },
  32119. ],
  32120. {
  32121. "cat": {
  32122. name: "Cat",
  32123. default: true
  32124. },
  32125. "taur": {
  32126. name: "Taur",
  32127. },
  32128. "lucario": {
  32129. name: "Lucario",
  32130. },
  32131. "riolu": {
  32132. name: "Riolu",
  32133. },
  32134. "nickit": {
  32135. name: "Nickit",
  32136. },
  32137. "lopunny": {
  32138. name: "Lopunny",
  32139. },
  32140. "dog": {
  32141. name: "Dog",
  32142. },
  32143. "pikachu": {
  32144. name: "Pikachu",
  32145. },
  32146. "gigachu": {
  32147. name: "Gigachu",
  32148. ignoreAllFormSizes: true
  32149. }
  32150. }
  32151. ))
  32152. characterMakers.push(() => makeCharacter(
  32153. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32154. {
  32155. front: {
  32156. height: math.unit(63.4, "meters"),
  32157. weight: math.unit(3.28349e+6, "kilograms"),
  32158. name: "Front",
  32159. image: {
  32160. source: "./media/characters/kirina-violet/front.svg",
  32161. extra: 2812 / 2725,
  32162. bottom: 0 / 2812
  32163. }
  32164. },
  32165. back: {
  32166. height: math.unit(63.4, "meters"),
  32167. weight: math.unit(3.28349e+6, "kilograms"),
  32168. name: "Back",
  32169. image: {
  32170. source: "./media/characters/kirina-violet/back.svg",
  32171. extra: 2812 / 2725,
  32172. bottom: 0 / 2812
  32173. }
  32174. },
  32175. mouth: {
  32176. height: math.unit(4.35, "meters"),
  32177. name: "Mouth",
  32178. image: {
  32179. source: "./media/characters/kirina-violet/mouth.svg"
  32180. }
  32181. },
  32182. paw: {
  32183. height: math.unit(5.6, "meters"),
  32184. name: "Paw",
  32185. image: {
  32186. source: "./media/characters/kirina-violet/paw.svg"
  32187. }
  32188. },
  32189. tail: {
  32190. height: math.unit(18, "meters"),
  32191. name: "Tail",
  32192. image: {
  32193. source: "./media/characters/kirina-violet/tail.svg"
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Macro",
  32200. height: math.unit(63.4, "meters"),
  32201. default: true
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(6, "feet"),
  32210. weight: math.unit(150, "lb"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/sfaiyan/front.svg",
  32214. extra: 999 / 978,
  32215. bottom: 5 / 1004
  32216. }
  32217. },
  32218. },
  32219. [
  32220. {
  32221. name: "Normal",
  32222. height: math.unit(1.82, "meters")
  32223. },
  32224. {
  32225. name: "Giant",
  32226. height: math.unit(2.27, "km"),
  32227. default: true
  32228. },
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32233. {
  32234. front: {
  32235. height: math.unit(179, "cm"),
  32236. weight: math.unit(100, "kg"),
  32237. name: "Front",
  32238. image: {
  32239. source: "./media/characters/raunehkeli/front.svg",
  32240. extra: 1934 / 1926,
  32241. bottom: 0 / 1934
  32242. }
  32243. },
  32244. },
  32245. [
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(179, "cm")
  32249. },
  32250. {
  32251. name: "Maximum",
  32252. height: math.unit(575, "meters"),
  32253. default: true
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32259. {
  32260. dressed: {
  32261. height: math.unit(6 + 2/12, "feet"),
  32262. weight: math.unit(150, "lb"),
  32263. name: "Dressed",
  32264. image: {
  32265. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32266. extra: 2620/2496,
  32267. bottom: 66/2686
  32268. }
  32269. },
  32270. nude: {
  32271. height: math.unit(6 + 2/12, "feet"),
  32272. weight: math.unit(150, "lb"),
  32273. name: "Nude",
  32274. image: {
  32275. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32276. extra: 2620/2496,
  32277. bottom: 66/2686
  32278. }
  32279. },
  32280. },
  32281. [
  32282. {
  32283. name: "Normal",
  32284. height: math.unit(6 + 2 / 12, "feet")
  32285. },
  32286. {
  32287. name: "Max Height",
  32288. height: math.unit(1181, "feet"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(5 + 6 / 12, "feet"),
  32298. weight: math.unit(108, "lb"),
  32299. name: "Front",
  32300. image: {
  32301. source: "./media/characters/lilith-zott/front.svg",
  32302. extra: 2415/2133,
  32303. bottom: 193/2608
  32304. }
  32305. },
  32306. },
  32307. [
  32308. {
  32309. name: "Base Height",
  32310. height: math.unit(5 + 6 / 12, "feet")
  32311. },
  32312. {
  32313. name: "Preferred Height",
  32314. height: math.unit(200, "feet")
  32315. },
  32316. {
  32317. name: "Max Height",
  32318. height: math.unit(1030, "feet"),
  32319. default: true
  32320. },
  32321. ]
  32322. ))
  32323. characterMakers.push(() => makeCharacter(
  32324. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32325. {
  32326. super: {
  32327. height: math.unit(6 + 2/12, "feet"),
  32328. weight: math.unit(150, "lb"),
  32329. name: "Super",
  32330. image: {
  32331. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32332. extra: 2555/2387,
  32333. bottom: 50/2605
  32334. }
  32335. },
  32336. casual: {
  32337. height: math.unit(6 + 2/12, "feet"),
  32338. weight: math.unit(150, "lb"),
  32339. name: "Casual",
  32340. image: {
  32341. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32342. extra: 2555/2387,
  32343. bottom: 50/2605
  32344. }
  32345. },
  32346. hand: {
  32347. height: math.unit(1.08, "feet"),
  32348. name: "Hand",
  32349. image: {
  32350. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32351. }
  32352. },
  32353. paw: {
  32354. height: math.unit(1.33, "feet"),
  32355. name: "Paw",
  32356. image: {
  32357. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Normal",
  32364. height: math.unit(6 + 2/12, "feet")
  32365. },
  32366. {
  32367. name: "Preferred Height",
  32368. height: math.unit(220, "feet")
  32369. },
  32370. {
  32371. name: "Max Height",
  32372. height: math.unit(1100, "feet"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32379. {
  32380. front: {
  32381. height: math.unit(100, "miles"),
  32382. name: "Front",
  32383. image: {
  32384. source: "./media/characters/sona/front.svg",
  32385. extra: 2433 / 2201,
  32386. bottom: 53 / 2486
  32387. }
  32388. },
  32389. foot: {
  32390. height: math.unit(16.1, "miles"),
  32391. name: "Foot",
  32392. image: {
  32393. source: "./media/characters/sona/foot.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Macro",
  32400. height: math.unit(100, "miles"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(6, "feet"),
  32410. weight: math.unit(150, "lb"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/bailey/front.svg",
  32414. extra: 1778 / 1724,
  32415. bottom: 30 / 1808
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Micro",
  32422. height: math.unit(4, "inches")
  32423. },
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(5 + 5 / 12, "feet"),
  32427. default: true
  32428. },
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(250, "feet")
  32432. },
  32433. {
  32434. name: "Megamacro",
  32435. height: math.unit(100, "miles")
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32441. {
  32442. front: {
  32443. height: math.unit(5 + 2 / 12, "feet"),
  32444. weight: math.unit(120, "lb"),
  32445. name: "Front",
  32446. image: {
  32447. source: "./media/characters/snaps/front.svg",
  32448. extra: 2370 / 2177,
  32449. bottom: 48 / 2418
  32450. }
  32451. },
  32452. back: {
  32453. height: math.unit(5 + 2 / 12, "feet"),
  32454. weight: math.unit(120, "lb"),
  32455. name: "Back",
  32456. image: {
  32457. source: "./media/characters/snaps/back.svg",
  32458. extra: 2408 / 2258,
  32459. bottom: 15 / 2423
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Micro",
  32466. height: math.unit(9, "inches")
  32467. },
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(5 + 2 / 12, "feet"),
  32471. default: true
  32472. },
  32473. {
  32474. name: "Mini Macro",
  32475. height: math.unit(10, "feet")
  32476. },
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(1.8, "meters"),
  32484. weight: math.unit(85, "kg"),
  32485. name: "Front",
  32486. image: {
  32487. source: "./media/characters/azteck/front.svg",
  32488. extra: 2815 / 2625,
  32489. bottom: 89 / 2904
  32490. }
  32491. },
  32492. back: {
  32493. height: math.unit(1.8, "meters"),
  32494. weight: math.unit(85, "kg"),
  32495. name: "Back",
  32496. image: {
  32497. source: "./media/characters/azteck/back.svg",
  32498. extra: 2856 / 2648,
  32499. bottom: 85 / 2941
  32500. }
  32501. },
  32502. frontDressed: {
  32503. height: math.unit(1.8, "meters"),
  32504. weight: math.unit(85, "kg"),
  32505. name: "Front (Dressed)",
  32506. image: {
  32507. source: "./media/characters/azteck/front-dressed.svg",
  32508. extra: 2147 / 2003,
  32509. bottom: 68 / 2215
  32510. }
  32511. },
  32512. head: {
  32513. height: math.unit(0.47, "meters"),
  32514. weight: math.unit(85, "kg"),
  32515. name: "Head",
  32516. image: {
  32517. source: "./media/characters/azteck/head.svg"
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Bite sized",
  32524. height: math.unit(16, "cm")
  32525. },
  32526. {
  32527. name: "Normal",
  32528. height: math.unit(1.8, "meters"),
  32529. default: true
  32530. },
  32531. ]
  32532. ))
  32533. characterMakers.push(() => makeCharacter(
  32534. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32535. {
  32536. front: {
  32537. height: math.unit(6, "feet"),
  32538. weight: math.unit(150, "lb"),
  32539. name: "Front",
  32540. image: {
  32541. source: "./media/characters/pidge/front.svg",
  32542. extra: 1936/1820,
  32543. bottom: 0/1936
  32544. }
  32545. },
  32546. back: {
  32547. height: math.unit(6, "feet"),
  32548. weight: math.unit(150, "lb"),
  32549. name: "Back",
  32550. image: {
  32551. source: "./media/characters/pidge/back.svg",
  32552. extra: 1938/1843,
  32553. bottom: 0/1938
  32554. }
  32555. },
  32556. casual: {
  32557. height: math.unit(6, "feet"),
  32558. weight: math.unit(150, "lb"),
  32559. name: "Casual",
  32560. image: {
  32561. source: "./media/characters/pidge/casual.svg",
  32562. extra: 1936/1820,
  32563. bottom: 0/1936
  32564. }
  32565. },
  32566. tech: {
  32567. height: math.unit(6, "feet"),
  32568. weight: math.unit(150, "lb"),
  32569. name: "Tech",
  32570. image: {
  32571. source: "./media/characters/pidge/tech.svg",
  32572. extra: 1802/1682,
  32573. bottom: 0/1802
  32574. }
  32575. },
  32576. head: {
  32577. height: math.unit(1.61, "feet"),
  32578. name: "Head",
  32579. image: {
  32580. source: "./media/characters/pidge/head.svg"
  32581. }
  32582. },
  32583. collar: {
  32584. height: math.unit(0.82, "feet"),
  32585. name: "Collar",
  32586. image: {
  32587. source: "./media/characters/pidge/collar.svg"
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Macro",
  32594. height: math.unit(2, "mile"),
  32595. default: true
  32596. },
  32597. {
  32598. name: "PUPPY",
  32599. height: math.unit(20, "miles")
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(6, "feet"),
  32608. weight: math.unit(150, "lb"),
  32609. name: "Front",
  32610. image: {
  32611. source: "./media/characters/en/front.svg",
  32612. extra: 1697 / 1563,
  32613. bottom: 103 / 1800
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(6, "feet"),
  32618. weight: math.unit(150, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/en/back.svg",
  32622. extra: 1700 / 1570,
  32623. bottom: 51 / 1751
  32624. }
  32625. },
  32626. frontDressed: {
  32627. height: math.unit(6, "feet"),
  32628. weight: math.unit(150, "lb"),
  32629. name: "Front (Dressed)",
  32630. image: {
  32631. source: "./media/characters/en/front-dressed.svg",
  32632. extra: 1697 / 1563,
  32633. bottom: 103 / 1800
  32634. }
  32635. },
  32636. backDressed: {
  32637. height: math.unit(6, "feet"),
  32638. weight: math.unit(150, "lb"),
  32639. name: "Back (Dressed)",
  32640. image: {
  32641. source: "./media/characters/en/back-dressed.svg",
  32642. extra: 1700 / 1570,
  32643. bottom: 51 / 1751
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Macro",
  32650. height: math.unit(210, "feet"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(6, "feet"),
  32660. weight: math.unit(150, "lb"),
  32661. name: "Front",
  32662. image: {
  32663. source: "./media/characters/haze-orris/front.svg",
  32664. extra: 3975 / 3525,
  32665. bottom: 137 / 4112
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Micro",
  32672. height: math.unit(150, "mm"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32679. {
  32680. front: {
  32681. height: math.unit(6, "feet"),
  32682. weight: math.unit(150, "lb"),
  32683. name: "Front",
  32684. image: {
  32685. source: "./media/characters/casselene-yaro/front.svg",
  32686. extra: 4721 / 4541,
  32687. bottom: 82 / 4803
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(6, "feet"),
  32692. weight: math.unit(150, "lb"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/casselene-yaro/back.svg",
  32696. extra: 4569 / 4377,
  32697. bottom: 69 / 4638
  32698. }
  32699. },
  32700. dressed: {
  32701. height: math.unit(6, "feet"),
  32702. weight: math.unit(150, "lb"),
  32703. name: "Dressed",
  32704. image: {
  32705. source: "./media/characters/casselene-yaro/dressed.svg",
  32706. extra: 4721 / 4541,
  32707. bottom: 82 / 4803
  32708. }
  32709. },
  32710. maw: {
  32711. height: math.unit(1, "feet"),
  32712. name: "Maw",
  32713. image: {
  32714. source: "./media/characters/casselene-yaro/maw.svg"
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Macro",
  32721. height: math.unit(190, "feet"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(10, "feet"),
  32731. weight: math.unit(15015, "lb"),
  32732. name: "Front",
  32733. image: {
  32734. source: "./media/characters/platine/front.svg",
  32735. extra: 1741/1650,
  32736. bottom: 84/1825
  32737. }
  32738. },
  32739. side: {
  32740. height: math.unit(10, "feet"),
  32741. weight: math.unit(15015, "lb"),
  32742. name: "Side",
  32743. image: {
  32744. source: "./media/characters/platine/side.svg",
  32745. extra: 1790/1705,
  32746. bottom: 29/1819
  32747. }
  32748. },
  32749. },
  32750. [
  32751. {
  32752. name: "Normal",
  32753. height: math.unit(10, "feet"),
  32754. default: true
  32755. },
  32756. {
  32757. name: "Macro",
  32758. height: math.unit(100, "feet")
  32759. },
  32760. {
  32761. name: "Megamacro",
  32762. height: math.unit(1000, "feet")
  32763. },
  32764. ]
  32765. ))
  32766. characterMakers.push(() => makeCharacter(
  32767. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32768. {
  32769. front: {
  32770. height: math.unit(15 + 5 / 12, "feet"),
  32771. weight: math.unit(4600, "lb"),
  32772. name: "Front",
  32773. image: {
  32774. source: "./media/characters/neapolitan-ananassa/front.svg",
  32775. extra: 2903 / 2736,
  32776. bottom: 0 / 2903
  32777. }
  32778. },
  32779. side: {
  32780. height: math.unit(15 + 5 / 12, "feet"),
  32781. weight: math.unit(4600, "lb"),
  32782. name: "Side",
  32783. image: {
  32784. source: "./media/characters/neapolitan-ananassa/side.svg",
  32785. extra: 2925 / 2719,
  32786. bottom: 0 / 2925
  32787. }
  32788. },
  32789. back: {
  32790. height: math.unit(15 + 5 / 12, "feet"),
  32791. weight: math.unit(4600, "lb"),
  32792. name: "Back",
  32793. image: {
  32794. source: "./media/characters/neapolitan-ananassa/back.svg",
  32795. extra: 2903 / 2736,
  32796. bottom: 0 / 2903
  32797. }
  32798. },
  32799. },
  32800. [
  32801. {
  32802. name: "Normal",
  32803. height: math.unit(15 + 5 / 12, "feet"),
  32804. default: true
  32805. },
  32806. {
  32807. name: "Post-Millenium",
  32808. height: math.unit(35 + 5 / 12, "feet")
  32809. },
  32810. {
  32811. name: "Post-Era",
  32812. height: math.unit(450 + 5 / 12, "feet")
  32813. },
  32814. ]
  32815. ))
  32816. characterMakers.push(() => makeCharacter(
  32817. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32818. {
  32819. front: {
  32820. height: math.unit(300, "meters"),
  32821. weight: math.unit(125000, "tonnes"),
  32822. name: "Front",
  32823. image: {
  32824. source: "./media/characters/pazuzu/front.svg",
  32825. extra: 877 / 794,
  32826. bottom: 47 / 924
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(300, "meters"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32840. {
  32841. side: {
  32842. height: math.unit(10 + 7 / 12, "feet"),
  32843. weight: math.unit(2.5, "tons"),
  32844. name: "Side",
  32845. image: {
  32846. source: "./media/characters/aasha/side.svg",
  32847. extra: 1345 / 1245,
  32848. bottom: 111 / 1456
  32849. }
  32850. },
  32851. back: {
  32852. height: math.unit(10 + 7 / 12, "feet"),
  32853. weight: math.unit(2.5, "tons"),
  32854. name: "Back",
  32855. image: {
  32856. source: "./media/characters/aasha/back.svg",
  32857. extra: 1133 / 1057,
  32858. bottom: 257 / 1390
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(10 + 7 / 12, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(6 + 3 / 12, "feet"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/nevan/front.svg",
  32878. extra: 704 / 704,
  32879. bottom: 28 / 732
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(6 + 3 / 12, "feet"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/nevan/back.svg",
  32887. extra: 714 / 714,
  32888. bottom: 21 / 735
  32889. }
  32890. },
  32891. frontFlaccid: {
  32892. height: math.unit(6 + 3 / 12, "feet"),
  32893. name: "Front (Flaccid)",
  32894. image: {
  32895. source: "./media/characters/nevan/front-flaccid.svg",
  32896. extra: 704 / 704,
  32897. bottom: 28 / 732
  32898. }
  32899. },
  32900. frontErect: {
  32901. height: math.unit(6 + 3 / 12, "feet"),
  32902. name: "Front (Erect)",
  32903. image: {
  32904. source: "./media/characters/nevan/front-erect.svg",
  32905. extra: 704 / 704,
  32906. bottom: 28 / 732
  32907. }
  32908. },
  32909. backFlaccid: {
  32910. height: math.unit(6 + 3 / 12, "feet"),
  32911. name: "Back (Flaccid)",
  32912. image: {
  32913. source: "./media/characters/nevan/back-flaccid.svg",
  32914. extra: 714 / 714,
  32915. bottom: 21 / 735
  32916. }
  32917. },
  32918. },
  32919. [
  32920. {
  32921. name: "Normal",
  32922. height: math.unit(6 + 3 / 12, "feet"),
  32923. default: true
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(4, "feet"),
  32932. name: "Front",
  32933. image: {
  32934. source: "./media/characters/arhan/front.svg",
  32935. extra: 3368 / 3133,
  32936. bottom: 0 / 3368
  32937. }
  32938. },
  32939. side: {
  32940. height: math.unit(4, "feet"),
  32941. name: "Side",
  32942. image: {
  32943. source: "./media/characters/arhan/side.svg",
  32944. extra: 3347 / 3105,
  32945. bottom: 0 / 3347
  32946. }
  32947. },
  32948. tongue: {
  32949. height: math.unit(1.42, "feet"),
  32950. name: "Tongue",
  32951. image: {
  32952. source: "./media/characters/arhan/tongue.svg"
  32953. }
  32954. },
  32955. head: {
  32956. height: math.unit(0.85, "feet"),
  32957. name: "Head",
  32958. image: {
  32959. source: "./media/characters/arhan/head.svg"
  32960. }
  32961. },
  32962. },
  32963. [
  32964. {
  32965. name: "Normal",
  32966. height: math.unit(4, "feet"),
  32967. default: true
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(5 + 7.5 / 12, "feet"),
  32976. weight: math.unit(120, "lb"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/digi-duncan/front.svg",
  32980. extra: 330 / 326,
  32981. bottom: 16 / 346
  32982. }
  32983. },
  32984. side: {
  32985. height: math.unit(5 + 7.5 / 12, "feet"),
  32986. weight: math.unit(120, "lb"),
  32987. name: "Side",
  32988. image: {
  32989. source: "./media/characters/digi-duncan/side.svg",
  32990. extra: 341 / 337,
  32991. bottom: 1 / 342
  32992. }
  32993. },
  32994. back: {
  32995. height: math.unit(5 + 7.5 / 12, "feet"),
  32996. weight: math.unit(120, "lb"),
  32997. name: "Back",
  32998. image: {
  32999. source: "./media/characters/digi-duncan/back.svg",
  33000. extra: 330 / 326,
  33001. bottom: 12 / 342
  33002. }
  33003. },
  33004. },
  33005. [
  33006. {
  33007. name: "Speck",
  33008. height: math.unit(0.25, "mm")
  33009. },
  33010. {
  33011. name: "Micro",
  33012. height: math.unit(5, "mm")
  33013. },
  33014. {
  33015. name: "Tiny",
  33016. height: math.unit(0.5, "inches"),
  33017. default: true
  33018. },
  33019. {
  33020. name: "Human",
  33021. height: math.unit(5 + 7.5 / 12, "feet")
  33022. },
  33023. {
  33024. name: "Minigiant",
  33025. height: math.unit(8 + 5.25, "feet")
  33026. },
  33027. {
  33028. name: "Giant",
  33029. height: math.unit(2000, "feet")
  33030. },
  33031. {
  33032. name: "Mega",
  33033. height: math.unit(371.1, "miles")
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  33039. {
  33040. front: {
  33041. height: math.unit(2, "meters"),
  33042. weight: math.unit(350, "kg"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/jagaz-soulbreaker/front.svg",
  33046. extra: 898 / 838,
  33047. bottom: 9 / 907
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Micro",
  33054. height: math.unit(8, "meters")
  33055. },
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(50, "meters"),
  33059. default: true
  33060. },
  33061. {
  33062. name: "Macro",
  33063. height: math.unit(500, "meters")
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(6 + 6 / 12, "feet"),
  33072. name: "Front",
  33073. image: {
  33074. source: "./media/characters/khardesh/front.svg",
  33075. extra: 1788/1596,
  33076. bottom: 66/1854
  33077. }
  33078. },
  33079. back: {
  33080. height: math.unit(6 + 6 / 12, "feet"),
  33081. name: "Back",
  33082. image: {
  33083. source: "./media/characters/khardesh/back.svg",
  33084. extra: 1781/1584,
  33085. bottom: 68/1849
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(6 + 6 / 12, "feet"),
  33093. default: true
  33094. },
  33095. {
  33096. name: "Normal+",
  33097. height: math.unit(4, "meters")
  33098. },
  33099. {
  33100. name: "Macro",
  33101. height: math.unit(50, "meters")
  33102. },
  33103. {
  33104. name: "Macro+",
  33105. height: math.unit(100, "meters")
  33106. },
  33107. {
  33108. name: "Megamacro",
  33109. height: math.unit(20, "km")
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(6, "feet"),
  33118. weight: math.unit(150, "lb"),
  33119. name: "Front",
  33120. image: {
  33121. source: "./media/characters/kosho/front.svg",
  33122. extra: 1847 / 1847,
  33123. bottom: 86 / 1933
  33124. }
  33125. },
  33126. },
  33127. [
  33128. {
  33129. name: "Second-stage micro",
  33130. height: math.unit(0.5, "inches")
  33131. },
  33132. {
  33133. name: "First-stage micro",
  33134. height: math.unit(6, "inches")
  33135. },
  33136. {
  33137. name: "Normal",
  33138. height: math.unit(6, "feet"),
  33139. default: true
  33140. },
  33141. {
  33142. name: "First-stage macro",
  33143. height: math.unit(72, "feet")
  33144. },
  33145. {
  33146. name: "Second-stage macro",
  33147. height: math.unit(864, "feet")
  33148. },
  33149. ]
  33150. ))
  33151. characterMakers.push(() => makeCharacter(
  33152. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33153. {
  33154. normal: {
  33155. height: math.unit(4 + 6 / 12, "feet"),
  33156. name: "Normal",
  33157. image: {
  33158. source: "./media/characters/hydra/normal.svg",
  33159. extra: 2833 / 2634,
  33160. bottom: 68 / 2901
  33161. }
  33162. },
  33163. smol: {
  33164. height: math.unit(0.705, "inches"),
  33165. name: "Smol",
  33166. image: {
  33167. source: "./media/characters/hydra/smol.svg",
  33168. extra: 2715 / 2540,
  33169. bottom: 0 / 2715
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(4 + 6 / 12, "feet"),
  33177. default: true
  33178. }
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(0.6, "cm"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/daz/front.svg",
  33189. extra: 1682 / 1164,
  33190. bottom: 42 / 1724
  33191. }
  33192. },
  33193. },
  33194. [
  33195. {
  33196. name: "Normal",
  33197. height: math.unit(0.6, "cm"),
  33198. default: true
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33204. {
  33205. front: {
  33206. height: math.unit(6, "feet"),
  33207. weight: math.unit(235, "lb"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/theo-pangolin/front.svg",
  33211. extra: 1996 / 1969,
  33212. bottom: 115 / 2111
  33213. }
  33214. },
  33215. back: {
  33216. height: math.unit(6, "feet"),
  33217. weight: math.unit(235, "lb"),
  33218. name: "Back",
  33219. image: {
  33220. source: "./media/characters/theo-pangolin/back.svg",
  33221. extra: 1979 / 1979,
  33222. bottom: 40 / 2019
  33223. }
  33224. },
  33225. feral: {
  33226. height: math.unit(2, "feet"),
  33227. weight: math.unit(30, "lb"),
  33228. name: "Feral",
  33229. image: {
  33230. source: "./media/characters/theo-pangolin/feral.svg",
  33231. extra: 803 / 791,
  33232. bottom: 181 / 984
  33233. }
  33234. },
  33235. footFive: {
  33236. height: math.unit(1.43, "feet"),
  33237. name: "Foot (Five Toes)",
  33238. image: {
  33239. source: "./media/characters/theo-pangolin/foot-five.svg"
  33240. }
  33241. },
  33242. footFour: {
  33243. height: math.unit(1.43, "feet"),
  33244. name: "Foot (Four Toes)",
  33245. image: {
  33246. source: "./media/characters/theo-pangolin/foot-four.svg"
  33247. }
  33248. },
  33249. handFour: {
  33250. height: math.unit(0.81, "feet"),
  33251. name: "Hand (Four Fingers)",
  33252. image: {
  33253. source: "./media/characters/theo-pangolin/hand-four.svg"
  33254. }
  33255. },
  33256. handThree: {
  33257. height: math.unit(0.81, "feet"),
  33258. name: "Hand (Three Fingers)",
  33259. image: {
  33260. source: "./media/characters/theo-pangolin/hand-three.svg"
  33261. }
  33262. },
  33263. headFront: {
  33264. height: math.unit(1.37, "feet"),
  33265. name: "Head (Front)",
  33266. image: {
  33267. source: "./media/characters/theo-pangolin/head-front.svg"
  33268. }
  33269. },
  33270. headSide: {
  33271. height: math.unit(1.43, "feet"),
  33272. name: "Head (Side)",
  33273. image: {
  33274. source: "./media/characters/theo-pangolin/head-side.svg"
  33275. }
  33276. },
  33277. tongue: {
  33278. height: math.unit(2.29, "feet"),
  33279. name: "Tongue",
  33280. image: {
  33281. source: "./media/characters/theo-pangolin/tongue.svg"
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Normal",
  33288. height: math.unit(6, "feet")
  33289. },
  33290. {
  33291. name: "Macro",
  33292. height: math.unit(400, "feet"),
  33293. default: true
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33299. {
  33300. front: {
  33301. height: math.unit(6, "inches"),
  33302. weight: math.unit(0.036, "kg"),
  33303. name: "Front",
  33304. image: {
  33305. source: "./media/characters/renée/front.svg",
  33306. extra: 900 / 886,
  33307. bottom: 8 / 908
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Nano",
  33314. height: math.unit(1, "nm")
  33315. },
  33316. {
  33317. name: "Micro",
  33318. height: math.unit(1, "mm")
  33319. },
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(6, "inches")
  33323. },
  33324. {
  33325. name: "Macro",
  33326. height: math.unit(2000, "feet"),
  33327. default: true
  33328. },
  33329. {
  33330. name: "Megamacro",
  33331. height: math.unit(2, "km")
  33332. },
  33333. {
  33334. name: "Gigamacro",
  33335. height: math.unit(2000, "km")
  33336. },
  33337. {
  33338. name: "Teramacro",
  33339. height: math.unit(250000, "km")
  33340. },
  33341. ]
  33342. ))
  33343. characterMakers.push(() => makeCharacter(
  33344. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33345. {
  33346. front: {
  33347. height: math.unit(4, "meters"),
  33348. weight: math.unit(150, "kg"),
  33349. name: "Front",
  33350. image: {
  33351. source: "./media/characters/caledvwlch/front.svg",
  33352. extra: 1757/1537,
  33353. bottom: 31/1788
  33354. }
  33355. },
  33356. side: {
  33357. height: math.unit(4, "meters"),
  33358. weight: math.unit(150, "kg"),
  33359. name: "Side",
  33360. image: {
  33361. source: "./media/characters/caledvwlch/side.svg",
  33362. extra: 1605 / 1536,
  33363. bottom: 31 / 1636
  33364. }
  33365. },
  33366. back: {
  33367. height: math.unit(4, "meters"),
  33368. weight: math.unit(150, "kg"),
  33369. name: "Back",
  33370. image: {
  33371. source: "./media/characters/caledvwlch/back.svg",
  33372. extra: 1635 / 1565,
  33373. bottom: 27 / 1662
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "\"Incognito\"",
  33380. height: math.unit(4, "meters")
  33381. },
  33382. {
  33383. name: "Small rampage",
  33384. height: math.unit(600, "meters")
  33385. },
  33386. {
  33387. name: "Mega",
  33388. height: math.unit(30, "km")
  33389. },
  33390. {
  33391. name: "Home-size",
  33392. height: math.unit(50, "km"),
  33393. default: true
  33394. },
  33395. {
  33396. name: "Giga",
  33397. height: math.unit(300, "km")
  33398. },
  33399. {
  33400. name: "Lounging",
  33401. height: math.unit(11000, "km")
  33402. },
  33403. {
  33404. name: "Planet snacking",
  33405. height: math.unit(2000000, "km")
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33411. {
  33412. front: {
  33413. height: math.unit(6, "feet"),
  33414. weight: math.unit(215, "lb"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/sapphire-svell/front.svg",
  33418. extra: 495 / 455,
  33419. bottom: 20 / 515
  33420. }
  33421. },
  33422. back: {
  33423. height: math.unit(6, "feet"),
  33424. weight: math.unit(216, "lb"),
  33425. name: "Back",
  33426. image: {
  33427. source: "./media/characters/sapphire-svell/back.svg",
  33428. extra: 497 / 477,
  33429. bottom: 7 / 504
  33430. }
  33431. },
  33432. maw: {
  33433. height: math.unit(1.57, "feet"),
  33434. name: "Maw",
  33435. image: {
  33436. source: "./media/characters/sapphire-svell/maw.svg"
  33437. }
  33438. },
  33439. foot: {
  33440. height: math.unit(1.07, "feet"),
  33441. name: "Foot",
  33442. image: {
  33443. source: "./media/characters/sapphire-svell/foot.svg"
  33444. }
  33445. },
  33446. toering: {
  33447. height: math.unit(1.7, "inch"),
  33448. name: "Toering",
  33449. image: {
  33450. source: "./media/characters/sapphire-svell/toering.svg"
  33451. }
  33452. },
  33453. },
  33454. [
  33455. {
  33456. name: "Normal",
  33457. height: math.unit(300, "feet"),
  33458. default: true
  33459. },
  33460. {
  33461. name: "Augmented",
  33462. height: math.unit(1250, "feet")
  33463. },
  33464. {
  33465. name: "Unleashed",
  33466. height: math.unit(3000, "feet")
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33472. {
  33473. side: {
  33474. height: math.unit(2 + 3 / 12, "feet"),
  33475. weight: math.unit(110, "lb"),
  33476. name: "Side",
  33477. image: {
  33478. source: "./media/characters/glitch-flux/side.svg",
  33479. extra: 997 / 805,
  33480. bottom: 20 / 1017
  33481. }
  33482. },
  33483. },
  33484. [
  33485. {
  33486. name: "Normal",
  33487. height: math.unit(2 + 3 / 12, "feet"),
  33488. default: true
  33489. },
  33490. ]
  33491. ))
  33492. characterMakers.push(() => makeCharacter(
  33493. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33494. {
  33495. front: {
  33496. height: math.unit(4, "meters"),
  33497. name: "Front",
  33498. image: {
  33499. source: "./media/characters/mid/front.svg",
  33500. extra: 507 / 476,
  33501. bottom: 17 / 524
  33502. }
  33503. },
  33504. back: {
  33505. height: math.unit(4, "meters"),
  33506. name: "Back",
  33507. image: {
  33508. source: "./media/characters/mid/back.svg",
  33509. extra: 519 / 487,
  33510. bottom: 7 / 526
  33511. }
  33512. },
  33513. stuck: {
  33514. height: math.unit(2.2, "meters"),
  33515. name: "Stuck",
  33516. image: {
  33517. source: "./media/characters/mid/stuck.svg",
  33518. extra: 1951 / 1869,
  33519. bottom: 88 / 2039
  33520. }
  33521. }
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(4, "meters"),
  33527. default: true
  33528. },
  33529. {
  33530. name: "Big",
  33531. height: math.unit(10, "meters")
  33532. },
  33533. {
  33534. name: "Macro",
  33535. height: math.unit(800, "meters")
  33536. },
  33537. {
  33538. name: "Megamacro",
  33539. height: math.unit(100, "km")
  33540. },
  33541. {
  33542. name: "Overgrown",
  33543. height: math.unit(1, "parsec")
  33544. },
  33545. ]
  33546. ))
  33547. characterMakers.push(() => makeCharacter(
  33548. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33549. {
  33550. front: {
  33551. height: math.unit(2.5, "meters"),
  33552. weight: math.unit(225, "kg"),
  33553. name: "Front",
  33554. image: {
  33555. source: "./media/characters/iris/front.svg",
  33556. extra: 3348 / 3251,
  33557. bottom: 205 / 3553
  33558. }
  33559. },
  33560. maw: {
  33561. height: math.unit(0.56, "meter"),
  33562. name: "Maw",
  33563. image: {
  33564. source: "./media/characters/iris/maw.svg"
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Mewter cat",
  33571. height: math.unit(1.2, "meters")
  33572. },
  33573. {
  33574. name: "Normal",
  33575. height: math.unit(2.5, "meters"),
  33576. default: true
  33577. },
  33578. {
  33579. name: "Minimacro",
  33580. height: math.unit(18, "feet")
  33581. },
  33582. {
  33583. name: "Macro",
  33584. height: math.unit(140, "feet")
  33585. },
  33586. {
  33587. name: "Macro+",
  33588. height: math.unit(180, "meters")
  33589. },
  33590. {
  33591. name: "Megamacro",
  33592. height: math.unit(2746, "meters")
  33593. },
  33594. ]
  33595. ))
  33596. characterMakers.push(() => makeCharacter(
  33597. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33598. {
  33599. front: {
  33600. height: math.unit(6, "feet"),
  33601. weight: math.unit(135, "lb"),
  33602. name: "Front",
  33603. image: {
  33604. source: "./media/characters/axel/front.svg",
  33605. extra: 908 / 908,
  33606. bottom: 58 / 966
  33607. }
  33608. },
  33609. side: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(135, "lb"),
  33612. name: "Side",
  33613. image: {
  33614. source: "./media/characters/axel/side.svg",
  33615. extra: 958 / 958,
  33616. bottom: 11 / 969
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(135, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/axel/back.svg",
  33625. extra: 887 / 887,
  33626. bottom: 34 / 921
  33627. }
  33628. },
  33629. head: {
  33630. height: math.unit(1.07, "feet"),
  33631. name: "Head",
  33632. image: {
  33633. source: "./media/characters/axel/head.svg"
  33634. }
  33635. },
  33636. beak: {
  33637. height: math.unit(1.4, "feet"),
  33638. name: "Beak",
  33639. image: {
  33640. source: "./media/characters/axel/beak.svg"
  33641. }
  33642. },
  33643. beakSide: {
  33644. height: math.unit(1.4, "feet"),
  33645. name: "Beak Side",
  33646. image: {
  33647. source: "./media/characters/axel/beak-side.svg"
  33648. }
  33649. },
  33650. sheath: {
  33651. height: math.unit(0.5, "feet"),
  33652. name: "Sheath",
  33653. image: {
  33654. source: "./media/characters/axel/sheath.svg"
  33655. }
  33656. },
  33657. dick: {
  33658. height: math.unit(0.98, "feet"),
  33659. name: "Dick",
  33660. image: {
  33661. source: "./media/characters/axel/dick.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Macro",
  33668. height: math.unit(68, "meters"),
  33669. default: true
  33670. },
  33671. ]
  33672. ))
  33673. characterMakers.push(() => makeCharacter(
  33674. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33675. {
  33676. front: {
  33677. height: math.unit(3.5, "meters"),
  33678. weight: math.unit(1200, "kg"),
  33679. name: "Front",
  33680. image: {
  33681. source: "./media/characters/joanna/front.svg",
  33682. extra: 1596 / 1488,
  33683. bottom: 29 / 1625
  33684. }
  33685. },
  33686. back: {
  33687. height: math.unit(3.5, "meters"),
  33688. weight: math.unit(1200, "kg"),
  33689. name: "Back",
  33690. image: {
  33691. source: "./media/characters/joanna/back.svg",
  33692. extra: 1594 / 1495,
  33693. bottom: 26 / 1620
  33694. }
  33695. },
  33696. frontShorts: {
  33697. height: math.unit(3.5, "meters"),
  33698. weight: math.unit(1200, "kg"),
  33699. name: "Front (Shorts)",
  33700. image: {
  33701. source: "./media/characters/joanna/front-shorts.svg",
  33702. extra: 1596 / 1488,
  33703. bottom: 29 / 1625
  33704. }
  33705. },
  33706. frontBiker: {
  33707. height: math.unit(3.5, "meters"),
  33708. weight: math.unit(1200, "kg"),
  33709. name: "Front (Biker)",
  33710. image: {
  33711. source: "./media/characters/joanna/front-biker.svg",
  33712. extra: 1596 / 1488,
  33713. bottom: 29 / 1625
  33714. }
  33715. },
  33716. backBiker: {
  33717. height: math.unit(3.5, "meters"),
  33718. weight: math.unit(1200, "kg"),
  33719. name: "Back (Biker)",
  33720. image: {
  33721. source: "./media/characters/joanna/back-biker.svg",
  33722. extra: 1594 / 1495,
  33723. bottom: 88 / 1682
  33724. }
  33725. },
  33726. bikeLeft: {
  33727. height: math.unit(2.4, "meters"),
  33728. weight: math.unit(1600, "kg"),
  33729. name: "Bike (Left)",
  33730. image: {
  33731. source: "./media/characters/joanna/bike-left.svg",
  33732. extra: 720 / 720,
  33733. bottom: 8 / 728
  33734. }
  33735. },
  33736. bikeRight: {
  33737. height: math.unit(2.4, "meters"),
  33738. weight: math.unit(1600, "kg"),
  33739. name: "Bike (Right)",
  33740. image: {
  33741. source: "./media/characters/joanna/bike-right.svg",
  33742. extra: 720 / 720,
  33743. bottom: 8 / 728
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Incognito",
  33750. height: math.unit(3.5, "meters")
  33751. },
  33752. {
  33753. name: "Casual Big",
  33754. height: math.unit(200, "meters")
  33755. },
  33756. {
  33757. name: "Macro",
  33758. height: math.unit(600, "meters")
  33759. },
  33760. {
  33761. name: "Original",
  33762. height: math.unit(20, "km"),
  33763. default: true
  33764. },
  33765. {
  33766. name: "Giga",
  33767. height: math.unit(400, "km")
  33768. },
  33769. {
  33770. name: "Lounging",
  33771. height: math.unit(1500, "km")
  33772. },
  33773. {
  33774. name: "Planetary",
  33775. height: math.unit(200000, "km")
  33776. },
  33777. ]
  33778. ))
  33779. characterMakers.push(() => makeCharacter(
  33780. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33781. {
  33782. front: {
  33783. height: math.unit(6, "feet"),
  33784. weight: math.unit(150, "lb"),
  33785. name: "Front",
  33786. image: {
  33787. source: "./media/characters/hugo-sigil/front.svg",
  33788. extra: 522 / 500,
  33789. bottom: 2 / 524
  33790. }
  33791. },
  33792. back: {
  33793. height: math.unit(6, "feet"),
  33794. weight: math.unit(150, "lb"),
  33795. name: "Back",
  33796. image: {
  33797. source: "./media/characters/hugo-sigil/back.svg",
  33798. extra: 519 / 495,
  33799. bottom: 5 / 524
  33800. }
  33801. },
  33802. maw: {
  33803. height: math.unit(1.4, "feet"),
  33804. weight: math.unit(150, "lb"),
  33805. name: "Maw",
  33806. image: {
  33807. source: "./media/characters/hugo-sigil/maw.svg"
  33808. }
  33809. },
  33810. feet: {
  33811. height: math.unit(1.56, "feet"),
  33812. weight: math.unit(150, "lb"),
  33813. name: "Feet",
  33814. image: {
  33815. source: "./media/characters/hugo-sigil/feet.svg",
  33816. extra: 177 / 177,
  33817. bottom: 12 / 189
  33818. }
  33819. },
  33820. },
  33821. [
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(6, "feet")
  33825. },
  33826. {
  33827. name: "Macro",
  33828. height: math.unit(200, "feet"),
  33829. default: true
  33830. },
  33831. ]
  33832. ))
  33833. characterMakers.push(() => makeCharacter(
  33834. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33835. {
  33836. front: {
  33837. height: math.unit(6, "feet"),
  33838. weight: math.unit(150, "lb"),
  33839. name: "Front",
  33840. image: {
  33841. source: "./media/characters/peri/front.svg",
  33842. extra: 2354 / 2233,
  33843. bottom: 49 / 2403
  33844. }
  33845. },
  33846. },
  33847. [
  33848. {
  33849. name: "Really Small",
  33850. height: math.unit(1, "nm")
  33851. },
  33852. {
  33853. name: "Micro",
  33854. height: math.unit(4, "inches")
  33855. },
  33856. {
  33857. name: "Normal",
  33858. height: math.unit(7, "inches"),
  33859. default: true
  33860. },
  33861. {
  33862. name: "Macro",
  33863. height: math.unit(400, "feet")
  33864. },
  33865. {
  33866. name: "Megamacro",
  33867. height: math.unit(100, "miles")
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33873. {
  33874. frontSlim: {
  33875. height: math.unit(7, "feet"),
  33876. name: "Front (Slim)",
  33877. image: {
  33878. source: "./media/characters/issilora/front-slim.svg",
  33879. extra: 529 / 449,
  33880. bottom: 53 / 582
  33881. }
  33882. },
  33883. sideSlim: {
  33884. height: math.unit(7, "feet"),
  33885. name: "Side (Slim)",
  33886. image: {
  33887. source: "./media/characters/issilora/side-slim.svg",
  33888. extra: 570 / 480,
  33889. bottom: 30 / 600
  33890. }
  33891. },
  33892. backSlim: {
  33893. height: math.unit(7, "feet"),
  33894. name: "Back (Slim)",
  33895. image: {
  33896. source: "./media/characters/issilora/back-slim.svg",
  33897. extra: 537 / 455,
  33898. bottom: 46 / 583
  33899. }
  33900. },
  33901. frontBuff: {
  33902. height: math.unit(7, "feet"),
  33903. name: "Front (Buff)",
  33904. image: {
  33905. source: "./media/characters/issilora/front-buff.svg",
  33906. extra: 2310 / 2035,
  33907. bottom: 335 / 2645
  33908. }
  33909. },
  33910. head: {
  33911. height: math.unit(1.94, "feet"),
  33912. name: "Head",
  33913. image: {
  33914. source: "./media/characters/issilora/head.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Minimum",
  33921. height: math.unit(7, "feet")
  33922. },
  33923. {
  33924. name: "Comfortable",
  33925. height: math.unit(17, "feet")
  33926. },
  33927. {
  33928. name: "Fun Size",
  33929. height: math.unit(47, "feet")
  33930. },
  33931. {
  33932. name: "Natural Macro",
  33933. height: math.unit(137, "feet"),
  33934. default: true
  33935. },
  33936. {
  33937. name: "Maximum Kaiju",
  33938. height: math.unit(397, "feet")
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33944. {
  33945. front: {
  33946. height: math.unit(50 + 9/12, "feet"),
  33947. weight: math.unit(32.8, "tons"),
  33948. name: "Front",
  33949. image: {
  33950. source: "./media/characters/irb'iiritaahn/front.svg",
  33951. extra: 1878/1826,
  33952. bottom: 326/2204
  33953. }
  33954. },
  33955. back: {
  33956. height: math.unit(50 + 9/12, "feet"),
  33957. weight: math.unit(32.8, "tons"),
  33958. name: "Back",
  33959. image: {
  33960. source: "./media/characters/irb'iiritaahn/back.svg",
  33961. extra: 2052/2018,
  33962. bottom: 152/2204
  33963. }
  33964. },
  33965. head: {
  33966. height: math.unit(12.86, "feet"),
  33967. name: "Head",
  33968. image: {
  33969. source: "./media/characters/irb'iiritaahn/head.svg"
  33970. }
  33971. },
  33972. maw: {
  33973. height: math.unit(9.66, "feet"),
  33974. name: "Maw",
  33975. image: {
  33976. source: "./media/characters/irb'iiritaahn/maw.svg"
  33977. }
  33978. },
  33979. frontDick: {
  33980. height: math.unit(8.78461, "feet"),
  33981. name: "Front Dick",
  33982. image: {
  33983. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33984. }
  33985. },
  33986. rearDick: {
  33987. height: math.unit(8.78461, "feet"),
  33988. name: "Rear Dick",
  33989. image: {
  33990. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33991. }
  33992. },
  33993. rearDickUnfolded: {
  33994. height: math.unit(8.78, "feet"),
  33995. name: "Rear Dick (Unfolded)",
  33996. image: {
  33997. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33998. }
  33999. },
  34000. wings: {
  34001. height: math.unit(43, "feet"),
  34002. name: "Wings",
  34003. image: {
  34004. source: "./media/characters/irb'iiritaahn/wings.svg"
  34005. }
  34006. },
  34007. },
  34008. [
  34009. {
  34010. name: "Macro",
  34011. height: math.unit(50 + 9/12, "feet"),
  34012. default: true
  34013. },
  34014. ]
  34015. ))
  34016. characterMakers.push(() => makeCharacter(
  34017. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  34018. {
  34019. front: {
  34020. height: math.unit(205, "cm"),
  34021. weight: math.unit(102, "kg"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/irbisgreif/front.svg",
  34025. extra: 785/706,
  34026. bottom: 13/798
  34027. }
  34028. },
  34029. back: {
  34030. height: math.unit(205, "cm"),
  34031. weight: math.unit(102, "kg"),
  34032. name: "Back",
  34033. image: {
  34034. source: "./media/characters/irbisgreif/back.svg",
  34035. extra: 713/701,
  34036. bottom: 26/739
  34037. }
  34038. },
  34039. frontDressed: {
  34040. height: math.unit(216, "cm"),
  34041. weight: math.unit(102, "kg"),
  34042. name: "Front (Dressed)",
  34043. image: {
  34044. source: "./media/characters/irbisgreif/front-dressed.svg",
  34045. extra: 902/776,
  34046. bottom: 14/916
  34047. }
  34048. },
  34049. sideDressed: {
  34050. height: math.unit(195, "cm"),
  34051. weight: math.unit(102, "kg"),
  34052. name: "Side (Dressed)",
  34053. image: {
  34054. source: "./media/characters/irbisgreif/side-dressed.svg",
  34055. extra: 788/688,
  34056. bottom: 21/809
  34057. }
  34058. },
  34059. backDressed: {
  34060. height: math.unit(216, "cm"),
  34061. weight: math.unit(102, "kg"),
  34062. name: "Back (Dressed)",
  34063. image: {
  34064. source: "./media/characters/irbisgreif/back-dressed.svg",
  34065. extra: 901/783,
  34066. bottom: 10/911
  34067. }
  34068. },
  34069. dick: {
  34070. height: math.unit(0.49, "feet"),
  34071. name: "Dick",
  34072. image: {
  34073. source: "./media/characters/irbisgreif/dick.svg"
  34074. }
  34075. },
  34076. wingTop: {
  34077. height: math.unit(1.93 , "feet"),
  34078. name: "Wing (Top)",
  34079. image: {
  34080. source: "./media/characters/irbisgreif/wing-top.svg"
  34081. }
  34082. },
  34083. wingBottom: {
  34084. height: math.unit(1.93 , "feet"),
  34085. name: "Wing (Bottom)",
  34086. image: {
  34087. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34088. }
  34089. },
  34090. },
  34091. [
  34092. {
  34093. name: "Normal",
  34094. height: math.unit(216, "cm"),
  34095. default: true
  34096. },
  34097. ]
  34098. ))
  34099. characterMakers.push(() => makeCharacter(
  34100. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34101. {
  34102. front: {
  34103. height: math.unit(6, "feet"),
  34104. weight: math.unit(150, "lb"),
  34105. name: "Front",
  34106. image: {
  34107. source: "./media/characters/pride/front.svg",
  34108. extra: 1299/1230,
  34109. bottom: 18/1317
  34110. }
  34111. },
  34112. },
  34113. [
  34114. {
  34115. name: "Normal",
  34116. height: math.unit(7, "feet")
  34117. },
  34118. {
  34119. name: "Mini-macro",
  34120. height: math.unit(11, "feet")
  34121. },
  34122. {
  34123. name: "Macro",
  34124. height: math.unit(15, "meters"),
  34125. default: true
  34126. },
  34127. {
  34128. name: "Macro+",
  34129. height: math.unit(40, "meters")
  34130. },
  34131. ]
  34132. ))
  34133. characterMakers.push(() => makeCharacter(
  34134. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34135. {
  34136. front: {
  34137. height: math.unit(4 + 2 / 12, "feet"),
  34138. weight: math.unit(95, "lb"),
  34139. name: "Front",
  34140. image: {
  34141. source: "./media/characters/vaelophis-nyx/front.svg",
  34142. extra: 2532/2330,
  34143. bottom: 0/2532
  34144. }
  34145. },
  34146. back: {
  34147. height: math.unit(4 + 2 / 12, "feet"),
  34148. weight: math.unit(95, "lb"),
  34149. name: "Back",
  34150. image: {
  34151. source: "./media/characters/vaelophis-nyx/back.svg",
  34152. extra: 2484/2361,
  34153. bottom: 0/2484
  34154. }
  34155. },
  34156. feralSide: {
  34157. height: math.unit(2 + 1/12, "feet"),
  34158. weight: math.unit(20, "lb"),
  34159. name: "Feral (Side)",
  34160. image: {
  34161. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34162. extra: 1721/1581,
  34163. bottom: 70/1791
  34164. }
  34165. },
  34166. feralLazing: {
  34167. height: math.unit(1.08, "feet"),
  34168. weight: math.unit(20, "lb"),
  34169. name: "Feral (Lazing)",
  34170. image: {
  34171. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34172. extra: 822/822,
  34173. bottom: 248/1070
  34174. }
  34175. },
  34176. ear: {
  34177. height: math.unit(0.416, "feet"),
  34178. name: "Ear",
  34179. image: {
  34180. source: "./media/characters/vaelophis-nyx/ear.svg"
  34181. }
  34182. },
  34183. eye: {
  34184. height: math.unit(0.0748, "feet"),
  34185. name: "Eye",
  34186. image: {
  34187. source: "./media/characters/vaelophis-nyx/eye.svg"
  34188. }
  34189. },
  34190. mouth: {
  34191. height: math.unit(0.378, "feet"),
  34192. name: "Mouth",
  34193. image: {
  34194. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34195. }
  34196. },
  34197. spade: {
  34198. height: math.unit(0.55, "feet"),
  34199. name: "Spade",
  34200. image: {
  34201. source: "./media/characters/vaelophis-nyx/spade.svg"
  34202. }
  34203. },
  34204. },
  34205. [
  34206. {
  34207. name: "Normal",
  34208. height: math.unit(4 + 2/12, "feet"),
  34209. default: true
  34210. },
  34211. ]
  34212. ))
  34213. characterMakers.push(() => makeCharacter(
  34214. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34215. {
  34216. front: {
  34217. height: math.unit(7, "feet"),
  34218. weight: math.unit(231, "lb"),
  34219. name: "Front",
  34220. image: {
  34221. source: "./media/characters/flux/front.svg",
  34222. extra: 919/871,
  34223. bottom: 0/919
  34224. }
  34225. },
  34226. back: {
  34227. height: math.unit(7, "feet"),
  34228. weight: math.unit(231, "lb"),
  34229. name: "Back",
  34230. image: {
  34231. source: "./media/characters/flux/back.svg",
  34232. extra: 1040/992,
  34233. bottom: 0/1040
  34234. }
  34235. },
  34236. frontDressed: {
  34237. height: math.unit(7, "feet"),
  34238. weight: math.unit(231, "lb"),
  34239. name: "Front (Dressed)",
  34240. image: {
  34241. source: "./media/characters/flux/front-dressed.svg",
  34242. extra: 919/871,
  34243. bottom: 0/919
  34244. }
  34245. },
  34246. feralSide: {
  34247. height: math.unit(5, "feet"),
  34248. weight: math.unit(150, "lb"),
  34249. name: "Feral (Side)",
  34250. image: {
  34251. source: "./media/characters/flux/feral-side.svg",
  34252. extra: 598/528,
  34253. bottom: 28/626
  34254. }
  34255. },
  34256. head: {
  34257. height: math.unit(1.585, "feet"),
  34258. name: "Head",
  34259. image: {
  34260. source: "./media/characters/flux/head.svg"
  34261. }
  34262. },
  34263. headSide: {
  34264. height: math.unit(1.74, "feet"),
  34265. name: "Head (Side)",
  34266. image: {
  34267. source: "./media/characters/flux/head-side.svg"
  34268. }
  34269. },
  34270. headSideFire: {
  34271. height: math.unit(1.76, "feet"),
  34272. name: "Head (Side, Fire)",
  34273. image: {
  34274. source: "./media/characters/flux/head-side-fire.svg"
  34275. }
  34276. },
  34277. },
  34278. [
  34279. {
  34280. name: "Normal",
  34281. height: math.unit(7, "feet"),
  34282. default: true
  34283. },
  34284. ]
  34285. ))
  34286. characterMakers.push(() => makeCharacter(
  34287. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34288. {
  34289. front: {
  34290. height: math.unit(9, "feet"),
  34291. weight: math.unit(1012, "lb"),
  34292. name: "Front",
  34293. image: {
  34294. source: "./media/characters/ulfra-lupae/front.svg",
  34295. extra: 1083/1011,
  34296. bottom: 67/1150
  34297. }
  34298. },
  34299. },
  34300. [
  34301. {
  34302. name: "Micro",
  34303. height: math.unit(6, "inches")
  34304. },
  34305. {
  34306. name: "Socializing",
  34307. height: math.unit(6 + 5/12, "feet")
  34308. },
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(9, "feet"),
  34312. default: true
  34313. },
  34314. {
  34315. name: "Macro",
  34316. height: math.unit(150, "feet")
  34317. },
  34318. ]
  34319. ))
  34320. characterMakers.push(() => makeCharacter(
  34321. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34322. {
  34323. front: {
  34324. height: math.unit(5 + 2/12, "feet"),
  34325. weight: math.unit(120, "lb"),
  34326. name: "Front",
  34327. image: {
  34328. source: "./media/characters/timber/front.svg",
  34329. extra: 2814/2705,
  34330. bottom: 181/2995
  34331. }
  34332. },
  34333. },
  34334. [
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(5 + 2/12, "feet"),
  34338. default: true
  34339. },
  34340. ]
  34341. ))
  34342. characterMakers.push(() => makeCharacter(
  34343. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34344. {
  34345. front: {
  34346. height: math.unit(9, "feet"),
  34347. name: "Front",
  34348. image: {
  34349. source: "./media/characters/nicki/front.svg",
  34350. extra: 1240/990,
  34351. bottom: 45/1285
  34352. },
  34353. form: "anthro",
  34354. default: true
  34355. },
  34356. side: {
  34357. height: math.unit(9, "feet"),
  34358. name: "Side",
  34359. image: {
  34360. source: "./media/characters/nicki/side.svg",
  34361. extra: 1047/973,
  34362. bottom: 61/1108
  34363. },
  34364. form: "anthro"
  34365. },
  34366. back: {
  34367. height: math.unit(9, "feet"),
  34368. name: "Back",
  34369. image: {
  34370. source: "./media/characters/nicki/back.svg",
  34371. extra: 1006/965,
  34372. bottom: 39/1045
  34373. },
  34374. form: "anthro"
  34375. },
  34376. taur: {
  34377. height: math.unit(15, "feet"),
  34378. name: "Taur",
  34379. image: {
  34380. source: "./media/characters/nicki/taur.svg",
  34381. extra: 1592/1347,
  34382. bottom: 0/1592
  34383. },
  34384. form: "taur",
  34385. default: true
  34386. },
  34387. },
  34388. [
  34389. {
  34390. name: "Normal",
  34391. height: math.unit(9, "feet"),
  34392. form: "anthro",
  34393. default: true
  34394. },
  34395. {
  34396. name: "Normal",
  34397. height: math.unit(15, "feet"),
  34398. form: "taur",
  34399. default: true
  34400. }
  34401. ],
  34402. {
  34403. "anthro": {
  34404. name: "Anthro",
  34405. default: true
  34406. },
  34407. "taur": {
  34408. name: "Taur"
  34409. }
  34410. }
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(7 + 10/12, "feet"),
  34417. weight: math.unit(3.5, "tons"),
  34418. name: "Front",
  34419. image: {
  34420. source: "./media/characters/lee/front.svg",
  34421. extra: 1773/1615,
  34422. bottom: 86/1859
  34423. }
  34424. },
  34425. hand: {
  34426. height: math.unit(1.78, "feet"),
  34427. name: "Hand",
  34428. image: {
  34429. source: "./media/characters/lee/hand.svg"
  34430. }
  34431. },
  34432. maw: {
  34433. height: math.unit(1.18, "feet"),
  34434. name: "Maw",
  34435. image: {
  34436. source: "./media/characters/lee/maw.svg"
  34437. }
  34438. },
  34439. },
  34440. [
  34441. {
  34442. name: "Normal",
  34443. height: math.unit(7 + 10/12, "feet"),
  34444. default: true
  34445. },
  34446. ]
  34447. ))
  34448. characterMakers.push(() => makeCharacter(
  34449. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34450. {
  34451. front: {
  34452. height: math.unit(9, "feet"),
  34453. name: "Front",
  34454. image: {
  34455. source: "./media/characters/guti/front.svg",
  34456. extra: 4551/4355,
  34457. bottom: 123/4674
  34458. }
  34459. },
  34460. tongue: {
  34461. height: math.unit(1, "feet"),
  34462. name: "Tongue",
  34463. image: {
  34464. source: "./media/characters/guti/tongue.svg"
  34465. }
  34466. },
  34467. paw: {
  34468. height: math.unit(1.18, "feet"),
  34469. name: "Paw",
  34470. image: {
  34471. source: "./media/characters/guti/paw.svg"
  34472. }
  34473. },
  34474. },
  34475. [
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(9, "feet"),
  34479. default: true
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34485. {
  34486. side: {
  34487. height: math.unit(5, "meters"),
  34488. name: "Side",
  34489. image: {
  34490. source: "./media/characters/vesper/side.svg",
  34491. extra: 1605/1518,
  34492. bottom: 0/1605
  34493. }
  34494. },
  34495. },
  34496. [
  34497. {
  34498. name: "Small",
  34499. height: math.unit(5, "meters")
  34500. },
  34501. {
  34502. name: "Sage",
  34503. height: math.unit(100, "meters"),
  34504. default: true
  34505. },
  34506. {
  34507. name: "Fun Size",
  34508. height: math.unit(600, "meters")
  34509. },
  34510. {
  34511. name: "Goddess",
  34512. height: math.unit(20000, "km")
  34513. },
  34514. {
  34515. name: "Maximum",
  34516. height: math.unit(5, "galaxies")
  34517. },
  34518. ]
  34519. ))
  34520. characterMakers.push(() => makeCharacter(
  34521. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34522. {
  34523. front: {
  34524. height: math.unit(6 + 3/12, "feet"),
  34525. weight: math.unit(190, "lb"),
  34526. name: "Front",
  34527. image: {
  34528. source: "./media/characters/gawain/front.svg",
  34529. extra: 2222/2139,
  34530. bottom: 90/2312
  34531. }
  34532. },
  34533. back: {
  34534. height: math.unit(6 + 3/12, "feet"),
  34535. weight: math.unit(190, "lb"),
  34536. name: "Back",
  34537. image: {
  34538. source: "./media/characters/gawain/back.svg",
  34539. extra: 2199/2111,
  34540. bottom: 73/2272
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(6 + 3/12, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34554. {
  34555. side: {
  34556. height: math.unit(3.5, "meters"),
  34557. weight: math.unit(16000, "lb"),
  34558. name: "Side",
  34559. image: {
  34560. source: "./media/characters/dascalti/side.svg",
  34561. extra: 392/273,
  34562. bottom: 47/439
  34563. }
  34564. },
  34565. breath: {
  34566. height: math.unit(7.4, "feet"),
  34567. name: "Breath",
  34568. image: {
  34569. source: "./media/characters/dascalti/breath.svg"
  34570. }
  34571. },
  34572. fed: {
  34573. height: math.unit(3.6, "meters"),
  34574. weight: math.unit(16000, "lb"),
  34575. name: "Fed",
  34576. image: {
  34577. source: "./media/characters/dascalti/fed.svg",
  34578. extra: 1419/820,
  34579. bottom: 95/1514
  34580. }
  34581. },
  34582. },
  34583. [
  34584. {
  34585. name: "Normal",
  34586. height: math.unit(3.5, "meters"),
  34587. default: true
  34588. },
  34589. ]
  34590. ))
  34591. characterMakers.push(() => makeCharacter(
  34592. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34593. {
  34594. front: {
  34595. height: math.unit(3 + 5/12, "feet"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/mauve/front.svg",
  34599. extra: 1126/1033,
  34600. bottom: 65/1191
  34601. }
  34602. },
  34603. side: {
  34604. height: math.unit(3 + 5/12, "feet"),
  34605. name: "Side",
  34606. image: {
  34607. source: "./media/characters/mauve/side.svg",
  34608. extra: 1089/1001,
  34609. bottom: 29/1118
  34610. }
  34611. },
  34612. back: {
  34613. height: math.unit(3 + 5/12, "feet"),
  34614. name: "Back",
  34615. image: {
  34616. source: "./media/characters/mauve/back.svg",
  34617. extra: 1173/1053,
  34618. bottom: 109/1282
  34619. }
  34620. },
  34621. },
  34622. [
  34623. {
  34624. name: "Normal",
  34625. height: math.unit(3 + 5/12, "feet"),
  34626. default: true
  34627. },
  34628. ]
  34629. ))
  34630. characterMakers.push(() => makeCharacter(
  34631. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34632. {
  34633. front: {
  34634. height: math.unit(6 + 3/12, "feet"),
  34635. weight: math.unit(450, "lb"),
  34636. name: "Front",
  34637. image: {
  34638. source: "./media/characters/carlos/front.svg",
  34639. extra: 444/423,
  34640. bottom: 27/471
  34641. }
  34642. },
  34643. },
  34644. [
  34645. {
  34646. name: "Normal",
  34647. height: math.unit(6 + 3/12, "feet"),
  34648. default: true
  34649. },
  34650. ]
  34651. ))
  34652. characterMakers.push(() => makeCharacter(
  34653. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34654. {
  34655. back: {
  34656. height: math.unit(5 + 10/12, "feet"),
  34657. weight: math.unit(200, "lb"),
  34658. name: "Back",
  34659. image: {
  34660. source: "./media/characters/jax/back.svg",
  34661. extra: 764/739,
  34662. bottom: 25/789
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Normal",
  34669. height: math.unit(5 + 10/12, "feet"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34676. {
  34677. front: {
  34678. height: math.unit(8, "feet"),
  34679. weight: math.unit(250, "lb"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/eikthynir/front.svg",
  34683. extra: 1332/1166,
  34684. bottom: 82/1414
  34685. }
  34686. },
  34687. back: {
  34688. height: math.unit(8, "feet"),
  34689. weight: math.unit(250, "lb"),
  34690. name: "Back",
  34691. image: {
  34692. source: "./media/characters/eikthynir/back.svg",
  34693. extra: 1342/1190,
  34694. bottom: 19/1361
  34695. }
  34696. },
  34697. dick: {
  34698. height: math.unit(2.35, "feet"),
  34699. name: "Dick",
  34700. image: {
  34701. source: "./media/characters/eikthynir/dick.svg"
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(8, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(99, "meters"),
  34718. weight: math.unit(13000, "tons"),
  34719. name: "Front",
  34720. image: {
  34721. source: "./media/characters/zlmos/front.svg",
  34722. extra: 2202/1992,
  34723. bottom: 315/2517
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Macro",
  34730. height: math.unit(99, "meters"),
  34731. default: true
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34737. {
  34738. front: {
  34739. height: math.unit(6 + 5/12, "feet"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/purri/front.svg",
  34743. extra: 1698/1610,
  34744. bottom: 32/1730
  34745. }
  34746. },
  34747. frontAlt: {
  34748. height: math.unit(6 + 5/12, "feet"),
  34749. name: "Front (Alt)",
  34750. image: {
  34751. source: "./media/characters/purri/front-alt.svg",
  34752. extra: 450/420,
  34753. bottom: 26/476
  34754. }
  34755. },
  34756. boots: {
  34757. height: math.unit(5.5, "feet"),
  34758. name: "Boots",
  34759. image: {
  34760. source: "./media/characters/purri/boots.svg",
  34761. extra: 905/853,
  34762. bottom: 18/923
  34763. },
  34764. extraAttributes: {
  34765. "shoeSize": {
  34766. name: "Shoe Size",
  34767. power: 1,
  34768. type: "length",
  34769. base: math.unit(12, "ShoeSizeMensUS")
  34770. },
  34771. "platformHeight": {
  34772. name: "Platform Height",
  34773. power: 1,
  34774. type: "length",
  34775. base: math.unit(2, "inches")
  34776. },
  34777. }
  34778. },
  34779. lying: {
  34780. height: math.unit(2, "feet"),
  34781. name: "Lying",
  34782. image: {
  34783. source: "./media/characters/purri/lying.svg",
  34784. extra: 940/843,
  34785. bottom: 146/1086
  34786. }
  34787. },
  34788. devious: {
  34789. height: math.unit(1.77, "feet"),
  34790. name: "Devious",
  34791. image: {
  34792. source: "./media/characters/purri/devious.svg",
  34793. extra: 1440/1155,
  34794. bottom: 147/1587
  34795. }
  34796. },
  34797. bean: {
  34798. height: math.unit(1.94, "feet"),
  34799. name: "Bean",
  34800. image: {
  34801. source: "./media/characters/purri/bean.svg"
  34802. }
  34803. },
  34804. },
  34805. [
  34806. {
  34807. name: "Micro",
  34808. height: math.unit(1, "mm")
  34809. },
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(6 + 5/12, "feet"),
  34813. default: true
  34814. },
  34815. {
  34816. name: "Macro :3c",
  34817. height: math.unit(2, "miles")
  34818. },
  34819. ]
  34820. ))
  34821. characterMakers.push(() => makeCharacter(
  34822. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34823. {
  34824. front: {
  34825. height: math.unit(6 + 2/12, "feet"),
  34826. weight: math.unit(250, "lb"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/moonlight/front.svg",
  34830. extra: 1044/908,
  34831. bottom: 56/1100
  34832. }
  34833. },
  34834. feral: {
  34835. height: math.unit(3 + 1/12, "feet"),
  34836. weight: math.unit(50, "kg"),
  34837. name: "Feral",
  34838. image: {
  34839. source: "./media/characters/moonlight/feral.svg",
  34840. extra: 3705/2791,
  34841. bottom: 145/3850
  34842. }
  34843. },
  34844. paw: {
  34845. height: math.unit(1, "feet"),
  34846. name: "Paw",
  34847. image: {
  34848. source: "./media/characters/moonlight/paw.svg"
  34849. }
  34850. },
  34851. paws: {
  34852. height: math.unit(0.98, "feet"),
  34853. name: "Paws",
  34854. image: {
  34855. source: "./media/characters/moonlight/paws.svg",
  34856. extra: 939/939,
  34857. bottom: 50/989
  34858. }
  34859. },
  34860. mouth: {
  34861. height: math.unit(0.48, "feet"),
  34862. name: "Mouth",
  34863. image: {
  34864. source: "./media/characters/moonlight/mouth.svg"
  34865. }
  34866. },
  34867. dick: {
  34868. height: math.unit(1.46, "feet"),
  34869. name: "Dick",
  34870. image: {
  34871. source: "./media/characters/moonlight/dick.svg"
  34872. }
  34873. },
  34874. },
  34875. [
  34876. {
  34877. name: "Normal",
  34878. height: math.unit(6 + 2/12, "feet"),
  34879. default: true
  34880. },
  34881. {
  34882. name: "Macro",
  34883. height: math.unit(300, "feet")
  34884. },
  34885. {
  34886. name: "Macro+",
  34887. height: math.unit(1, "mile")
  34888. },
  34889. {
  34890. name: "Mt. Moon",
  34891. height: math.unit(5, "miles")
  34892. },
  34893. {
  34894. name: "Megamacro",
  34895. height: math.unit(15, "miles")
  34896. },
  34897. ]
  34898. ))
  34899. characterMakers.push(() => makeCharacter(
  34900. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34901. {
  34902. back: {
  34903. height: math.unit(6, "feet"),
  34904. weight: math.unit(150, "lb"),
  34905. name: "Back",
  34906. image: {
  34907. source: "./media/characters/sylen/back.svg",
  34908. extra: 1335/1273,
  34909. bottom: 107/1442
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(5 + 5/12, "feet")
  34917. },
  34918. {
  34919. name: "Megamacro",
  34920. height: math.unit(3, "miles"),
  34921. default: true
  34922. },
  34923. ]
  34924. ))
  34925. characterMakers.push(() => makeCharacter(
  34926. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34927. {
  34928. front: {
  34929. height: math.unit(6, "feet"),
  34930. weight: math.unit(190, "lb"),
  34931. name: "Front",
  34932. image: {
  34933. source: "./media/characters/huttser/front.svg",
  34934. extra: 1152/1058,
  34935. bottom: 23/1175
  34936. }
  34937. },
  34938. side: {
  34939. height: math.unit(6, "feet"),
  34940. weight: math.unit(190, "lb"),
  34941. name: "Side",
  34942. image: {
  34943. source: "./media/characters/huttser/side.svg",
  34944. extra: 1174/1065,
  34945. bottom: 18/1192
  34946. }
  34947. },
  34948. back: {
  34949. height: math.unit(6, "feet"),
  34950. weight: math.unit(190, "lb"),
  34951. name: "Back",
  34952. image: {
  34953. source: "./media/characters/huttser/back.svg",
  34954. extra: 1158/1056,
  34955. bottom: 12/1170
  34956. }
  34957. },
  34958. },
  34959. [
  34960. ]
  34961. ))
  34962. characterMakers.push(() => makeCharacter(
  34963. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34964. {
  34965. side: {
  34966. height: math.unit(12 + 9/12, "feet"),
  34967. weight: math.unit(15000, "lb"),
  34968. name: "Side",
  34969. image: {
  34970. source: "./media/characters/faan/side.svg",
  34971. extra: 2747/2697,
  34972. bottom: 0/2747
  34973. }
  34974. },
  34975. front: {
  34976. height: math.unit(12 + 9/12, "feet"),
  34977. weight: math.unit(15000, "lb"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/faan/front.svg",
  34981. extra: 607/571,
  34982. bottom: 24/631
  34983. }
  34984. },
  34985. head: {
  34986. height: math.unit(2.85, "feet"),
  34987. name: "Head",
  34988. image: {
  34989. source: "./media/characters/faan/head.svg"
  34990. }
  34991. },
  34992. headAlt: {
  34993. height: math.unit(3.13, "feet"),
  34994. name: "Head (Alt)",
  34995. image: {
  34996. source: "./media/characters/faan/head-alt.svg"
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(12 + 9/12, "feet"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(6, "feet"),
  35013. weight: math.unit(300, "lb"),
  35014. name: "Front",
  35015. image: {
  35016. source: "./media/characters/tanio/front.svg",
  35017. extra: 711/673,
  35018. bottom: 25/736
  35019. }
  35020. },
  35021. },
  35022. [
  35023. {
  35024. name: "Normal",
  35025. height: math.unit(6, "feet"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  35032. {
  35033. front: {
  35034. height: math.unit(3, "inches"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/noboru/front.svg",
  35038. extra: 1039/932,
  35039. bottom: 18/1057
  35040. }
  35041. },
  35042. },
  35043. [
  35044. {
  35045. name: "Micro",
  35046. height: math.unit(3, "inches"),
  35047. default: true
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  35053. {
  35054. front: {
  35055. height: math.unit(1.85, "meters"),
  35056. weight: math.unit(80, "kg"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/daniel-barrett/front.svg",
  35060. extra: 355/337,
  35061. bottom: 9/364
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Pico",
  35068. height: math.unit(0.0433, "mm")
  35069. },
  35070. {
  35071. name: "Nano",
  35072. height: math.unit(1.5, "mm")
  35073. },
  35074. {
  35075. name: "Micro",
  35076. height: math.unit(5.3, "cm"),
  35077. default: true
  35078. },
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(1.85, "meters")
  35082. },
  35083. {
  35084. name: "Macro",
  35085. height: math.unit(64.7, "meters")
  35086. },
  35087. {
  35088. name: "Megamacro",
  35089. height: math.unit(2.26, "km")
  35090. },
  35091. {
  35092. name: "Gigamacro",
  35093. height: math.unit(79, "km")
  35094. },
  35095. {
  35096. name: "Teramacro",
  35097. height: math.unit(2765, "km")
  35098. },
  35099. {
  35100. name: "Petamacro",
  35101. height: math.unit(96678, "km")
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(30, "meters"),
  35110. weight: math.unit(400, "tons"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/zeel/front.svg",
  35114. extra: 2599/2599,
  35115. bottom: 226/2825
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Macro",
  35122. height: math.unit(30, "meters"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(6 + 7/12, "feet"),
  35132. weight: math.unit(210, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/tarn/front.svg",
  35136. extra: 3517/3220,
  35137. bottom: 91/3608
  35138. }
  35139. },
  35140. back: {
  35141. height: math.unit(6 + 7/12, "feet"),
  35142. weight: math.unit(210, "lb"),
  35143. name: "Back",
  35144. image: {
  35145. source: "./media/characters/tarn/back.svg",
  35146. extra: 3566/3241,
  35147. bottom: 34/3600
  35148. }
  35149. },
  35150. dick: {
  35151. height: math.unit(1.65, "feet"),
  35152. name: "Dick",
  35153. image: {
  35154. source: "./media/characters/tarn/dick.svg"
  35155. }
  35156. },
  35157. paw: {
  35158. height: math.unit(1.80, "feet"),
  35159. name: "Paw",
  35160. image: {
  35161. source: "./media/characters/tarn/paw.svg"
  35162. }
  35163. },
  35164. tongue: {
  35165. height: math.unit(0.97, "feet"),
  35166. name: "Tongue",
  35167. image: {
  35168. source: "./media/characters/tarn/tongue.svg"
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Micro",
  35175. height: math.unit(4, "inches")
  35176. },
  35177. {
  35178. name: "Normal",
  35179. height: math.unit(6 + 7/12, "feet"),
  35180. default: true
  35181. },
  35182. {
  35183. name: "Macro",
  35184. height: math.unit(300, "feet")
  35185. },
  35186. ]
  35187. ))
  35188. characterMakers.push(() => makeCharacter(
  35189. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35190. {
  35191. front: {
  35192. height: math.unit(5 + 7/12, "feet"),
  35193. weight: math.unit(80, "kg"),
  35194. name: "Front",
  35195. image: {
  35196. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35197. extra: 3023/2865,
  35198. bottom: 33/3056
  35199. }
  35200. },
  35201. back: {
  35202. height: math.unit(5 + 7/12, "feet"),
  35203. weight: math.unit(80, "kg"),
  35204. name: "Back",
  35205. image: {
  35206. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35207. extra: 3020/2886,
  35208. bottom: 30/3050
  35209. }
  35210. },
  35211. dick: {
  35212. height: math.unit(0.98, "feet"),
  35213. name: "Dick",
  35214. image: {
  35215. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35216. }
  35217. },
  35218. anatomy: {
  35219. height: math.unit(2.86, "feet"),
  35220. name: "Anatomy",
  35221. image: {
  35222. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Really Small",
  35229. height: math.unit(2, "inches")
  35230. },
  35231. {
  35232. name: "Micro",
  35233. height: math.unit(5.583, "inches")
  35234. },
  35235. {
  35236. name: "Normal",
  35237. height: math.unit(5 + 7/12, "feet"),
  35238. default: true
  35239. },
  35240. {
  35241. name: "Macro",
  35242. height: math.unit(67, "feet")
  35243. },
  35244. {
  35245. name: "Megamacro",
  35246. height: math.unit(134, "feet")
  35247. },
  35248. ]
  35249. ))
  35250. characterMakers.push(() => makeCharacter(
  35251. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35252. {
  35253. front: {
  35254. height: math.unit(9, "feet"),
  35255. weight: math.unit(120, "lb"),
  35256. name: "Front",
  35257. image: {
  35258. source: "./media/characters/sally/front.svg",
  35259. extra: 1506/1349,
  35260. bottom: 66/1572
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(9, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(8, "feet"),
  35277. weight: math.unit(900, "lb"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/owen/front.svg",
  35281. extra: 1761/1657,
  35282. bottom: 74/1835
  35283. }
  35284. },
  35285. side: {
  35286. height: math.unit(8, "feet"),
  35287. weight: math.unit(900, "lb"),
  35288. name: "Side",
  35289. image: {
  35290. source: "./media/characters/owen/side.svg",
  35291. extra: 1797/1734,
  35292. bottom: 30/1827
  35293. }
  35294. },
  35295. back: {
  35296. height: math.unit(8, "feet"),
  35297. weight: math.unit(900, "lb"),
  35298. name: "Back",
  35299. image: {
  35300. source: "./media/characters/owen/back.svg",
  35301. extra: 1796/1706,
  35302. bottom: 59/1855
  35303. }
  35304. },
  35305. maw: {
  35306. height: math.unit(1.76, "feet"),
  35307. name: "Maw",
  35308. image: {
  35309. source: "./media/characters/owen/maw.svg"
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(8, "feet"),
  35317. default: true
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35323. {
  35324. front: {
  35325. height: math.unit(4, "feet"),
  35326. weight: math.unit(400, "lb"),
  35327. name: "Front",
  35328. image: {
  35329. source: "./media/characters/ryth/front.svg",
  35330. extra: 1920/1748,
  35331. bottom: 42/1962
  35332. }
  35333. },
  35334. back: {
  35335. height: math.unit(4, "feet"),
  35336. weight: math.unit(400, "lb"),
  35337. name: "Back",
  35338. image: {
  35339. source: "./media/characters/ryth/back.svg",
  35340. extra: 1897/1690,
  35341. bottom: 89/1986
  35342. }
  35343. },
  35344. mouth: {
  35345. height: math.unit(1.39, "feet"),
  35346. name: "Mouth",
  35347. image: {
  35348. source: "./media/characters/ryth/mouth.svg"
  35349. }
  35350. },
  35351. tailmaw: {
  35352. height: math.unit(1.23, "feet"),
  35353. name: "Tailmaw",
  35354. image: {
  35355. source: "./media/characters/ryth/tailmaw.svg"
  35356. }
  35357. },
  35358. goia: {
  35359. height: math.unit(4, "meters"),
  35360. weight: math.unit(10800, "lb"),
  35361. name: "Goia",
  35362. image: {
  35363. source: "./media/characters/ryth/goia.svg",
  35364. extra: 745/640,
  35365. bottom: 107/852
  35366. }
  35367. },
  35368. goiaFront: {
  35369. height: math.unit(4, "meters"),
  35370. weight: math.unit(10800, "lb"),
  35371. name: "Goia (Front)",
  35372. image: {
  35373. source: "./media/characters/ryth/goia-front.svg",
  35374. extra: 750/586,
  35375. bottom: 114/864
  35376. }
  35377. },
  35378. goiaMaw: {
  35379. height: math.unit(5.55, "feet"),
  35380. name: "Goia Maw",
  35381. image: {
  35382. source: "./media/characters/ryth/goia-maw.svg"
  35383. }
  35384. },
  35385. goiaForepaw: {
  35386. height: math.unit(3.5, "feet"),
  35387. name: "Goia Forepaw",
  35388. image: {
  35389. source: "./media/characters/ryth/goia-forepaw.svg"
  35390. }
  35391. },
  35392. goiaHindpaw: {
  35393. height: math.unit(5.55, "feet"),
  35394. name: "Goia Hindpaw",
  35395. image: {
  35396. source: "./media/characters/ryth/goia-hindpaw.svg"
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Normal",
  35403. height: math.unit(4, "feet"),
  35404. default: true
  35405. },
  35406. ]
  35407. ))
  35408. characterMakers.push(() => makeCharacter(
  35409. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35410. {
  35411. front: {
  35412. height: math.unit(7, "feet"),
  35413. weight: math.unit(180, "lb"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/necrolance/front.svg",
  35417. extra: 1062/947,
  35418. bottom: 41/1103
  35419. }
  35420. },
  35421. back: {
  35422. height: math.unit(7, "feet"),
  35423. weight: math.unit(180, "lb"),
  35424. name: "Back",
  35425. image: {
  35426. source: "./media/characters/necrolance/back.svg",
  35427. extra: 1045/984,
  35428. bottom: 14/1059
  35429. }
  35430. },
  35431. wing: {
  35432. height: math.unit(2.67, "feet"),
  35433. name: "Wing",
  35434. image: {
  35435. source: "./media/characters/necrolance/wing.svg"
  35436. }
  35437. },
  35438. },
  35439. [
  35440. {
  35441. name: "Normal",
  35442. height: math.unit(7, "feet"),
  35443. default: true
  35444. },
  35445. ]
  35446. ))
  35447. characterMakers.push(() => makeCharacter(
  35448. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35449. {
  35450. front: {
  35451. height: math.unit(76, "meters"),
  35452. weight: math.unit(30000, "tons"),
  35453. name: "Front",
  35454. image: {
  35455. source: "./media/characters/tyler/front.svg",
  35456. extra: 1640/1640,
  35457. bottom: 114/1754
  35458. }
  35459. },
  35460. },
  35461. [
  35462. {
  35463. name: "Macro",
  35464. height: math.unit(76, "meters"),
  35465. default: true
  35466. },
  35467. ]
  35468. ))
  35469. characterMakers.push(() => makeCharacter(
  35470. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35471. {
  35472. front: {
  35473. height: math.unit(4 + 11/12, "feet"),
  35474. weight: math.unit(132, "lb"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/icey/front.svg",
  35478. extra: 2750/2550,
  35479. bottom: 33/2783
  35480. }
  35481. },
  35482. back: {
  35483. height: math.unit(4 + 11/12, "feet"),
  35484. weight: math.unit(132, "lb"),
  35485. name: "Back",
  35486. image: {
  35487. source: "./media/characters/icey/back.svg",
  35488. extra: 2624/2481,
  35489. bottom: 35/2659
  35490. }
  35491. },
  35492. },
  35493. [
  35494. {
  35495. name: "Normal",
  35496. height: math.unit(4 + 11/12, "feet"),
  35497. default: true
  35498. },
  35499. ]
  35500. ))
  35501. characterMakers.push(() => makeCharacter(
  35502. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35503. {
  35504. front: {
  35505. height: math.unit(100, "feet"),
  35506. weight: math.unit(0, "lb"),
  35507. name: "Front",
  35508. image: {
  35509. source: "./media/characters/smile/front.svg",
  35510. extra: 2983/2912,
  35511. bottom: 162/3145
  35512. }
  35513. },
  35514. back: {
  35515. height: math.unit(100, "feet"),
  35516. weight: math.unit(0, "lb"),
  35517. name: "Back",
  35518. image: {
  35519. source: "./media/characters/smile/back.svg",
  35520. extra: 3143/3031,
  35521. bottom: 91/3234
  35522. }
  35523. },
  35524. head: {
  35525. height: math.unit(26.3, "feet"),
  35526. weight: math.unit(0, "lb"),
  35527. name: "Head",
  35528. image: {
  35529. source: "./media/characters/smile/head.svg"
  35530. }
  35531. },
  35532. collar: {
  35533. height: math.unit(5.3, "feet"),
  35534. weight: math.unit(0, "lb"),
  35535. name: "Collar",
  35536. image: {
  35537. source: "./media/characters/smile/collar.svg"
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Macro",
  35544. height: math.unit(100, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35551. {
  35552. dragon: {
  35553. height: math.unit(26, "feet"),
  35554. weight: math.unit(36, "tons"),
  35555. name: "Dragon",
  35556. image: {
  35557. source: "./media/characters/arimphae/dragon.svg",
  35558. extra: 1574/983,
  35559. bottom: 357/1931
  35560. }
  35561. },
  35562. drake: {
  35563. height: math.unit(9, "feet"),
  35564. weight: math.unit(1.5, "tons"),
  35565. name: "Drake",
  35566. image: {
  35567. source: "./media/characters/arimphae/drake.svg",
  35568. extra: 1120/925,
  35569. bottom: 435/1555
  35570. }
  35571. },
  35572. },
  35573. [
  35574. {
  35575. name: "Small",
  35576. height: math.unit(26*5/9, "feet")
  35577. },
  35578. {
  35579. name: "Normal",
  35580. height: math.unit(26, "feet"),
  35581. default: true
  35582. },
  35583. ]
  35584. ))
  35585. characterMakers.push(() => makeCharacter(
  35586. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35587. {
  35588. front: {
  35589. height: math.unit(8 + 9/12, "feet"),
  35590. name: "Front",
  35591. image: {
  35592. source: "./media/characters/xander/front.svg",
  35593. extra: 1237/974,
  35594. bottom: 94/1331
  35595. }
  35596. },
  35597. },
  35598. [
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(8 + 9/12, "feet"),
  35602. default: true
  35603. },
  35604. {
  35605. name: "Gaze Grabber",
  35606. height: math.unit(13 + 8/12, "feet")
  35607. },
  35608. {
  35609. name: "Jaw Dropper",
  35610. height: math.unit(27, "feet")
  35611. },
  35612. {
  35613. name: "Show Stopper",
  35614. height: math.unit(136, "feet")
  35615. },
  35616. {
  35617. name: "Superstar",
  35618. height: math.unit(1.9e6, "miles")
  35619. },
  35620. ]
  35621. ))
  35622. characterMakers.push(() => makeCharacter(
  35623. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35624. {
  35625. side: {
  35626. height: math.unit(2100, "feet"),
  35627. name: "Side",
  35628. image: {
  35629. source: "./media/characters/osiris/side.svg",
  35630. extra: 1105/939,
  35631. bottom: 167/1272
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Macro",
  35638. height: math.unit(2100, "feet"),
  35639. default: true
  35640. },
  35641. ]
  35642. ))
  35643. characterMakers.push(() => makeCharacter(
  35644. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35645. {
  35646. front: {
  35647. height: math.unit(6 + 8/12, "feet"),
  35648. weight: math.unit(225, "lb"),
  35649. name: "Front",
  35650. image: {
  35651. source: "./media/characters/rhys-londe/front.svg",
  35652. extra: 2258/2141,
  35653. bottom: 188/2446
  35654. }
  35655. },
  35656. back: {
  35657. height: math.unit(6 + 8/12, "feet"),
  35658. weight: math.unit(225, "lb"),
  35659. name: "Back",
  35660. image: {
  35661. source: "./media/characters/rhys-londe/back.svg",
  35662. extra: 2237/2137,
  35663. bottom: 63/2300
  35664. }
  35665. },
  35666. frontNsfw: {
  35667. height: math.unit(6 + 8/12, "feet"),
  35668. weight: math.unit(225, "lb"),
  35669. name: "Front (NSFW)",
  35670. image: {
  35671. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35672. extra: 2258/2141,
  35673. bottom: 188/2446
  35674. }
  35675. },
  35676. backNsfw: {
  35677. height: math.unit(6 + 8/12, "feet"),
  35678. weight: math.unit(225, "lb"),
  35679. name: "Back (NSFW)",
  35680. image: {
  35681. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35682. extra: 2237/2137,
  35683. bottom: 63/2300
  35684. }
  35685. },
  35686. dick: {
  35687. height: math.unit(30, "inches"),
  35688. name: "Dick",
  35689. image: {
  35690. source: "./media/characters/rhys-londe/dick.svg"
  35691. }
  35692. },
  35693. maw: {
  35694. height: math.unit(1.6, "feet"),
  35695. name: "Maw",
  35696. image: {
  35697. source: "./media/characters/rhys-londe/maw.svg"
  35698. }
  35699. },
  35700. },
  35701. [
  35702. {
  35703. name: "Normal",
  35704. height: math.unit(6 + 8/12, "feet"),
  35705. default: true
  35706. },
  35707. ]
  35708. ))
  35709. characterMakers.push(() => makeCharacter(
  35710. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35711. {
  35712. front: {
  35713. height: math.unit(3 + 10/12, "feet"),
  35714. weight: math.unit(90, "lb"),
  35715. name: "Front",
  35716. image: {
  35717. source: "./media/characters/taivas-ensim/front.svg",
  35718. extra: 1327/1216,
  35719. bottom: 96/1423
  35720. }
  35721. },
  35722. back: {
  35723. height: math.unit(3 + 10/12, "feet"),
  35724. weight: math.unit(90, "lb"),
  35725. name: "Back",
  35726. image: {
  35727. source: "./media/characters/taivas-ensim/back.svg",
  35728. extra: 1355/1247,
  35729. bottom: 11/1366
  35730. }
  35731. },
  35732. frontNsfw: {
  35733. height: math.unit(3 + 10/12, "feet"),
  35734. weight: math.unit(90, "lb"),
  35735. name: "Front (NSFW)",
  35736. image: {
  35737. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35738. extra: 1327/1216,
  35739. bottom: 96/1423
  35740. }
  35741. },
  35742. backNsfw: {
  35743. height: math.unit(3 + 10/12, "feet"),
  35744. weight: math.unit(90, "lb"),
  35745. name: "Back (NSFW)",
  35746. image: {
  35747. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35748. extra: 1355/1247,
  35749. bottom: 11/1366
  35750. }
  35751. },
  35752. },
  35753. [
  35754. {
  35755. name: "Normal",
  35756. height: math.unit(3 + 10/12, "feet"),
  35757. default: true
  35758. },
  35759. ]
  35760. ))
  35761. characterMakers.push(() => makeCharacter(
  35762. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35763. {
  35764. front: {
  35765. height: math.unit(9 + 6/12, "feet"),
  35766. weight: math.unit(940, "lb"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/byliss/front.svg",
  35770. extra: 1327/1290,
  35771. bottom: 82/1409
  35772. }
  35773. },
  35774. back: {
  35775. height: math.unit(9 + 6/12, "feet"),
  35776. weight: math.unit(940, "lb"),
  35777. name: "Back",
  35778. image: {
  35779. source: "./media/characters/byliss/back.svg",
  35780. extra: 1376/1349,
  35781. bottom: 9/1385
  35782. }
  35783. },
  35784. frontNsfw: {
  35785. height: math.unit(9 + 6/12, "feet"),
  35786. weight: math.unit(940, "lb"),
  35787. name: "Front (NSFW)",
  35788. image: {
  35789. source: "./media/characters/byliss/front-nsfw.svg",
  35790. extra: 1327/1290,
  35791. bottom: 82/1409
  35792. }
  35793. },
  35794. backNsfw: {
  35795. height: math.unit(9 + 6/12, "feet"),
  35796. weight: math.unit(940, "lb"),
  35797. name: "Back (NSFW)",
  35798. image: {
  35799. source: "./media/characters/byliss/back-nsfw.svg",
  35800. extra: 1376/1349,
  35801. bottom: 9/1385
  35802. }
  35803. },
  35804. },
  35805. [
  35806. {
  35807. name: "Normal",
  35808. height: math.unit(9 + 6/12, "feet"),
  35809. default: true
  35810. },
  35811. ]
  35812. ))
  35813. characterMakers.push(() => makeCharacter(
  35814. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35815. {
  35816. front: {
  35817. height: math.unit(5 + 2/12, "feet"),
  35818. weight: math.unit(200, "lb"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/noraly/front.svg",
  35822. extra: 4985/4773,
  35823. bottom: 150/5135
  35824. }
  35825. },
  35826. full: {
  35827. height: math.unit(5 + 2/12, "feet"),
  35828. weight: math.unit(164, "lb"),
  35829. name: "Full",
  35830. image: {
  35831. source: "./media/characters/noraly/full.svg",
  35832. extra: 1114/1059,
  35833. bottom: 35/1149
  35834. }
  35835. },
  35836. fuller: {
  35837. height: math.unit(5 + 2/12, "feet"),
  35838. weight: math.unit(230, "lb"),
  35839. name: "Fuller",
  35840. image: {
  35841. source: "./media/characters/noraly/fuller.svg",
  35842. extra: 1114/1059,
  35843. bottom: 35/1149
  35844. }
  35845. },
  35846. fullest: {
  35847. height: math.unit(5 + 2/12, "feet"),
  35848. weight: math.unit(300, "lb"),
  35849. name: "Fullest",
  35850. image: {
  35851. source: "./media/characters/noraly/fullest.svg",
  35852. extra: 1114/1059,
  35853. bottom: 35/1149
  35854. }
  35855. },
  35856. },
  35857. [
  35858. {
  35859. name: "Normal",
  35860. height: math.unit(5 + 2/12, "feet"),
  35861. default: true
  35862. },
  35863. ]
  35864. ))
  35865. characterMakers.push(() => makeCharacter(
  35866. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35867. {
  35868. front: {
  35869. height: math.unit(5 + 2/12, "feet"),
  35870. weight: math.unit(210, "lb"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/pera/front.svg",
  35874. extra: 1560/1531,
  35875. bottom: 165/1725
  35876. }
  35877. },
  35878. back: {
  35879. height: math.unit(5 + 2/12, "feet"),
  35880. weight: math.unit(210, "lb"),
  35881. name: "Back",
  35882. image: {
  35883. source: "./media/characters/pera/back.svg",
  35884. extra: 1523/1493,
  35885. bottom: 152/1675
  35886. }
  35887. },
  35888. dick: {
  35889. height: math.unit(2.4, "feet"),
  35890. name: "Dick",
  35891. image: {
  35892. source: "./media/characters/pera/dick.svg"
  35893. }
  35894. },
  35895. },
  35896. [
  35897. {
  35898. name: "Normal",
  35899. height: math.unit(5 + 2/12, "feet"),
  35900. default: true
  35901. },
  35902. ]
  35903. ))
  35904. characterMakers.push(() => makeCharacter(
  35905. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35906. {
  35907. front: {
  35908. height: math.unit(12, "feet"),
  35909. weight: math.unit(3200, "lb"),
  35910. name: "Front",
  35911. image: {
  35912. source: "./media/characters/julian/front.svg",
  35913. extra: 2962/2701,
  35914. bottom: 184/3146
  35915. }
  35916. },
  35917. maw: {
  35918. height: math.unit(5.35, "feet"),
  35919. name: "Maw",
  35920. image: {
  35921. source: "./media/characters/julian/maw.svg"
  35922. }
  35923. },
  35924. paw: {
  35925. height: math.unit(3.07, "feet"),
  35926. name: "Paw",
  35927. image: {
  35928. source: "./media/characters/julian/paw.svg"
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Default",
  35935. height: math.unit(12, "feet"),
  35936. default: true
  35937. },
  35938. {
  35939. name: "Big",
  35940. height: math.unit(50, "feet")
  35941. },
  35942. {
  35943. name: "Really Big",
  35944. height: math.unit(1, "mile")
  35945. },
  35946. {
  35947. name: "Extremely Big",
  35948. height: math.unit(100, "miles")
  35949. },
  35950. {
  35951. name: "Planet Hugger",
  35952. height: math.unit(200, "megameters")
  35953. },
  35954. {
  35955. name: "Unreasonably Big",
  35956. height: math.unit(1e300, "meters")
  35957. },
  35958. ]
  35959. ))
  35960. characterMakers.push(() => makeCharacter(
  35961. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35962. {
  35963. solgooleo: {
  35964. height: math.unit(4, "meters"),
  35965. weight: math.unit(6000*1.5, "kg"),
  35966. volume: math.unit(6000, "liters"),
  35967. name: "Solgooleo",
  35968. image: {
  35969. source: "./media/characters/pi/solgooleo.svg",
  35970. extra: 388/331,
  35971. bottom: 29/417
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(4, "meters"),
  35979. default: true
  35980. },
  35981. ]
  35982. ))
  35983. characterMakers.push(() => makeCharacter(
  35984. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35985. {
  35986. front: {
  35987. height: math.unit(8, "feet"),
  35988. weight: math.unit(4, "tons"),
  35989. name: "Front",
  35990. image: {
  35991. source: "./media/characters/shaun/front.svg",
  35992. extra: 503/495,
  35993. bottom: 20/523
  35994. }
  35995. },
  35996. back: {
  35997. height: math.unit(8, "feet"),
  35998. weight: math.unit(4, "tons"),
  35999. name: "Back",
  36000. image: {
  36001. source: "./media/characters/shaun/back.svg",
  36002. extra: 487/480,
  36003. bottom: 20/507
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Lorg",
  36010. height: math.unit(8, "feet"),
  36011. default: true
  36012. },
  36013. ]
  36014. ))
  36015. characterMakers.push(() => makeCharacter(
  36016. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  36017. {
  36018. frontAnthro: {
  36019. height: math.unit(7, "feet"),
  36020. name: "Front",
  36021. image: {
  36022. source: "./media/characters/sini/front-anthro.svg",
  36023. extra: 726/678,
  36024. bottom: 35/761
  36025. },
  36026. form: "anthro",
  36027. default: true
  36028. },
  36029. backAnthro: {
  36030. height: math.unit(7, "feet"),
  36031. name: "Back",
  36032. image: {
  36033. source: "./media/characters/sini/back-anthro.svg",
  36034. extra: 743/701,
  36035. bottom: 12/755
  36036. },
  36037. form: "anthro",
  36038. },
  36039. frontAnthroNsfw: {
  36040. height: math.unit(7, "feet"),
  36041. name: "Front (NSFW)",
  36042. image: {
  36043. source: "./media/characters/sini/front-anthro-nsfw.svg",
  36044. extra: 726/678,
  36045. bottom: 35/761
  36046. },
  36047. form: "anthro"
  36048. },
  36049. backAnthroNsfw: {
  36050. height: math.unit(7, "feet"),
  36051. name: "Back (NSFW)",
  36052. image: {
  36053. source: "./media/characters/sini/back-anthro-nsfw.svg",
  36054. extra: 743/701,
  36055. bottom: 12/755
  36056. },
  36057. form: "anthro",
  36058. },
  36059. mawAnthro: {
  36060. height: math.unit(2.14, "feet"),
  36061. name: "Maw",
  36062. image: {
  36063. source: "./media/characters/sini/maw-anthro.svg"
  36064. },
  36065. form: "anthro"
  36066. },
  36067. dick: {
  36068. height: math.unit(1.45, "feet"),
  36069. name: "Dick",
  36070. image: {
  36071. source: "./media/characters/sini/dick-anthro.svg"
  36072. },
  36073. form: "anthro"
  36074. },
  36075. feral: {
  36076. height: math.unit(16, "feet"),
  36077. name: "Feral",
  36078. image: {
  36079. source: "./media/characters/sini/feral.svg",
  36080. extra: 814/605,
  36081. bottom: 11/825
  36082. },
  36083. form: "feral",
  36084. default: true
  36085. },
  36086. feralNsfw: {
  36087. height: math.unit(16, "feet"),
  36088. name: "Feral (NSFW)",
  36089. image: {
  36090. source: "./media/characters/sini/feral-nsfw.svg",
  36091. extra: 814/605,
  36092. bottom: 11/825
  36093. },
  36094. form: "feral"
  36095. },
  36096. mawFeral: {
  36097. height: math.unit(5.66, "feet"),
  36098. name: "Maw",
  36099. image: {
  36100. source: "./media/characters/sini/maw-feral.svg"
  36101. },
  36102. form: "feral",
  36103. },
  36104. pawFeral: {
  36105. height: math.unit(5.17, "feet"),
  36106. name: "Paw",
  36107. image: {
  36108. source: "./media/characters/sini/paw-feral.svg"
  36109. },
  36110. form: "feral",
  36111. },
  36112. rumpFeral: {
  36113. height: math.unit(13.11, "feet"),
  36114. name: "Rump",
  36115. image: {
  36116. source: "./media/characters/sini/rump-feral.svg"
  36117. },
  36118. form: "feral",
  36119. },
  36120. dickFeral: {
  36121. height: math.unit(1, "feet"),
  36122. name: "Dick",
  36123. image: {
  36124. source: "./media/characters/sini/dick-feral.svg"
  36125. },
  36126. form: "feral",
  36127. },
  36128. eyeFeral: {
  36129. height: math.unit(1.23, "feet"),
  36130. name: "Eye",
  36131. image: {
  36132. source: "./media/characters/sini/eye-feral.svg"
  36133. },
  36134. form: "feral",
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(7, "feet"),
  36141. default: true,
  36142. form: "anthro"
  36143. },
  36144. {
  36145. name: "Normal",
  36146. height: math.unit(16, "feet"),
  36147. default: true,
  36148. form: "feral"
  36149. },
  36150. ],
  36151. {
  36152. "anthro": {
  36153. name: "Anthro",
  36154. default: true
  36155. },
  36156. "feral": {
  36157. name: "Feral",
  36158. }
  36159. }
  36160. ))
  36161. characterMakers.push(() => makeCharacter(
  36162. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36163. {
  36164. side: {
  36165. height: math.unit(47.2, "meters"),
  36166. weight: math.unit(10000, "tons"),
  36167. name: "Side",
  36168. image: {
  36169. source: "./media/characters/raylldo/side.svg",
  36170. extra: 2363/642,
  36171. bottom: 221/2584
  36172. }
  36173. },
  36174. top: {
  36175. height: math.unit(240, "meters"),
  36176. weight: math.unit(10000, "tons"),
  36177. name: "Top",
  36178. image: {
  36179. source: "./media/characters/raylldo/top.svg"
  36180. }
  36181. },
  36182. bottom: {
  36183. height: math.unit(240, "meters"),
  36184. weight: math.unit(10000, "tons"),
  36185. name: "Bottom",
  36186. image: {
  36187. source: "./media/characters/raylldo/bottom.svg"
  36188. }
  36189. },
  36190. head: {
  36191. height: math.unit(38.6, "meters"),
  36192. name: "Head",
  36193. image: {
  36194. source: "./media/characters/raylldo/head.svg",
  36195. extra: 1335/1112,
  36196. bottom: 0/1335
  36197. }
  36198. },
  36199. maw: {
  36200. height: math.unit(16.37, "meters"),
  36201. name: "Maw",
  36202. image: {
  36203. source: "./media/characters/raylldo/maw.svg",
  36204. extra: 883/660,
  36205. bottom: 0/883
  36206. },
  36207. extraAttributes: {
  36208. preyCapacity: {
  36209. name: "Capacity",
  36210. power: 3,
  36211. type: "volume",
  36212. base: math.unit(1000, "people")
  36213. },
  36214. tongueSize: {
  36215. name: "Tongue Size",
  36216. power: 2,
  36217. type: "area",
  36218. base: math.unit(21, "m^2")
  36219. }
  36220. }
  36221. },
  36222. forepaw: {
  36223. height: math.unit(18, "meters"),
  36224. name: "Forepaw",
  36225. image: {
  36226. source: "./media/characters/raylldo/forepaw.svg"
  36227. }
  36228. },
  36229. hindpaw: {
  36230. height: math.unit(23, "meters"),
  36231. name: "Hindpaw",
  36232. image: {
  36233. source: "./media/characters/raylldo/hindpaw.svg"
  36234. }
  36235. },
  36236. genitals: {
  36237. height: math.unit(42, "meters"),
  36238. name: "Genitals",
  36239. image: {
  36240. source: "./media/characters/raylldo/genitals.svg"
  36241. }
  36242. },
  36243. },
  36244. [
  36245. {
  36246. name: "Normal",
  36247. height: math.unit(47.2, "meters"),
  36248. default: true
  36249. },
  36250. ]
  36251. ))
  36252. characterMakers.push(() => makeCharacter(
  36253. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36254. {
  36255. anthroFront: {
  36256. height: math.unit(9, "feet"),
  36257. weight: math.unit(600, "lb"),
  36258. name: "Anthro (Front)",
  36259. image: {
  36260. source: "./media/characters/glint/anthro-front.svg",
  36261. extra: 1097/1018,
  36262. bottom: 28/1125
  36263. }
  36264. },
  36265. anthroBack: {
  36266. height: math.unit(9, "feet"),
  36267. weight: math.unit(600, "lb"),
  36268. name: "Anthro (Back)",
  36269. image: {
  36270. source: "./media/characters/glint/anthro-back.svg",
  36271. extra: 1154/997,
  36272. bottom: 36/1190
  36273. }
  36274. },
  36275. feral: {
  36276. height: math.unit(11, "feet"),
  36277. weight: math.unit(50000, "lb"),
  36278. name: "Feral",
  36279. image: {
  36280. source: "./media/characters/glint/feral.svg",
  36281. extra: 3035/1585,
  36282. bottom: 1169/4204
  36283. }
  36284. },
  36285. dickAnthro: {
  36286. height: math.unit(0.7, "meters"),
  36287. name: "Dick (Anthro)",
  36288. image: {
  36289. source: "./media/characters/glint/dick-anthro.svg"
  36290. }
  36291. },
  36292. dickFeral: {
  36293. height: math.unit(2.65, "meters"),
  36294. name: "Dick (Feral)",
  36295. image: {
  36296. source: "./media/characters/glint/dick-feral.svg"
  36297. }
  36298. },
  36299. slitHidden: {
  36300. height: math.unit(5.85, "meters"),
  36301. name: "Slit (Hidden)",
  36302. image: {
  36303. source: "./media/characters/glint/slit-hidden.svg"
  36304. }
  36305. },
  36306. slitErect: {
  36307. height: math.unit(5.85, "meters"),
  36308. name: "Slit (Erect)",
  36309. image: {
  36310. source: "./media/characters/glint/slit-erect.svg"
  36311. }
  36312. },
  36313. mawAnthro: {
  36314. height: math.unit(0.63, "meters"),
  36315. name: "Maw (Anthro)",
  36316. image: {
  36317. source: "./media/characters/glint/maw.svg"
  36318. }
  36319. },
  36320. mawFeral: {
  36321. height: math.unit(2.89, "meters"),
  36322. name: "Maw (Feral)",
  36323. image: {
  36324. source: "./media/characters/glint/maw.svg"
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Normal",
  36331. height: math.unit(9, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36338. {
  36339. side: {
  36340. height: math.unit(15, "feet"),
  36341. weight: math.unit(5000, "kg"),
  36342. name: "Side",
  36343. image: {
  36344. source: "./media/characters/kairne/side.svg",
  36345. extra: 979/811,
  36346. bottom: 13/992
  36347. }
  36348. },
  36349. front: {
  36350. height: math.unit(15, "feet"),
  36351. weight: math.unit(5000, "kg"),
  36352. name: "Front",
  36353. image: {
  36354. source: "./media/characters/kairne/front.svg",
  36355. extra: 908/814,
  36356. bottom: 26/934
  36357. }
  36358. },
  36359. sideNsfw: {
  36360. height: math.unit(15, "feet"),
  36361. weight: math.unit(5000, "kg"),
  36362. name: "Side (NSFW)",
  36363. image: {
  36364. source: "./media/characters/kairne/side-nsfw.svg",
  36365. extra: 979/811,
  36366. bottom: 13/992
  36367. }
  36368. },
  36369. frontNsfw: {
  36370. height: math.unit(15, "feet"),
  36371. weight: math.unit(5000, "kg"),
  36372. name: "Front (NSFW)",
  36373. image: {
  36374. source: "./media/characters/kairne/front-nsfw.svg",
  36375. extra: 908/814,
  36376. bottom: 26/934
  36377. }
  36378. },
  36379. dickCaged: {
  36380. height: math.unit(0.65, "meters"),
  36381. name: "Dick (Caged)",
  36382. image: {
  36383. source: "./media/characters/kairne/dick-caged.svg"
  36384. }
  36385. },
  36386. dick: {
  36387. height: math.unit(0.79, "meters"),
  36388. name: "Dick",
  36389. image: {
  36390. source: "./media/characters/kairne/dick.svg"
  36391. }
  36392. },
  36393. genitals: {
  36394. height: math.unit(1.29, "meters"),
  36395. name: "Genitals",
  36396. image: {
  36397. source: "./media/characters/kairne/genitals.svg"
  36398. }
  36399. },
  36400. maw: {
  36401. height: math.unit(1.73, "meters"),
  36402. name: "Maw",
  36403. image: {
  36404. source: "./media/characters/kairne/maw.svg"
  36405. }
  36406. },
  36407. },
  36408. [
  36409. {
  36410. name: "Normal",
  36411. height: math.unit(15, "feet"),
  36412. default: true
  36413. },
  36414. ]
  36415. ))
  36416. characterMakers.push(() => makeCharacter(
  36417. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36418. {
  36419. front: {
  36420. height: math.unit(5 + 8/12, "feet"),
  36421. weight: math.unit(139, "lb"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/biscuit-jackal/front.svg",
  36425. extra: 2106/1961,
  36426. bottom: 58/2164
  36427. }
  36428. },
  36429. back: {
  36430. height: math.unit(5 + 8/12, "feet"),
  36431. weight: math.unit(139, "lb"),
  36432. name: "Back",
  36433. image: {
  36434. source: "./media/characters/biscuit-jackal/back.svg",
  36435. extra: 2132/1976,
  36436. bottom: 57/2189
  36437. }
  36438. },
  36439. werejackal: {
  36440. height: math.unit(6 + 3/12, "feet"),
  36441. weight: math.unit(188, "lb"),
  36442. name: "Werejackal",
  36443. image: {
  36444. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36445. extra: 2373/2178,
  36446. bottom: 53/2426
  36447. }
  36448. },
  36449. },
  36450. [
  36451. {
  36452. name: "Normal",
  36453. height: math.unit(5 + 8/12, "feet"),
  36454. default: true
  36455. },
  36456. ]
  36457. ))
  36458. characterMakers.push(() => makeCharacter(
  36459. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36460. {
  36461. front: {
  36462. height: math.unit(140, "cm"),
  36463. weight: math.unit(45, "kg"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/tayra-white/front.svg",
  36467. extra: 2229/2192,
  36468. bottom: 75/2304
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(140, "cm"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(4 + 5/12, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/scoop/front.svg",
  36488. extra: 1257/1136,
  36489. bottom: 69/1326
  36490. }
  36491. },
  36492. back: {
  36493. height: math.unit(4 + 5/12, "feet"),
  36494. name: "Back",
  36495. image: {
  36496. source: "./media/characters/scoop/back.svg",
  36497. extra: 1321/1152,
  36498. bottom: 32/1353
  36499. }
  36500. },
  36501. maw: {
  36502. height: math.unit(0.68, "feet"),
  36503. name: "Maw",
  36504. image: {
  36505. source: "./media/characters/scoop/maw.svg"
  36506. }
  36507. },
  36508. },
  36509. [
  36510. {
  36511. name: "Really Small",
  36512. height: math.unit(1, "mm")
  36513. },
  36514. {
  36515. name: "Micro",
  36516. height: math.unit(1, "inch")
  36517. },
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(4 + 5/12, "feet"),
  36521. default: true
  36522. },
  36523. {
  36524. name: "Macro",
  36525. height: math.unit(200, "feet")
  36526. },
  36527. {
  36528. name: "Megamacro",
  36529. height: math.unit(3240, "feet")
  36530. },
  36531. {
  36532. name: "Teramacro",
  36533. height: math.unit(2500, "miles")
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(15 + 7/12, "feet"),
  36542. weight: math.unit(1150, "tons"),
  36543. name: "Front",
  36544. image: {
  36545. source: "./media/characters/saphinara/front.svg",
  36546. extra: 1837/1643,
  36547. bottom: 84/1921
  36548. },
  36549. form: "normal",
  36550. default: true
  36551. },
  36552. side: {
  36553. height: math.unit(15 + 7/12, "feet"),
  36554. weight: math.unit(1150, "tons"),
  36555. name: "Side",
  36556. image: {
  36557. source: "./media/characters/saphinara/side.svg",
  36558. extra: 605/547,
  36559. bottom: 6/611
  36560. },
  36561. form: "normal"
  36562. },
  36563. back: {
  36564. height: math.unit(15 + 7/12, "feet"),
  36565. weight: math.unit(1150, "tons"),
  36566. name: "Back",
  36567. image: {
  36568. source: "./media/characters/saphinara/back.svg",
  36569. extra: 591/531,
  36570. bottom: 13/604
  36571. },
  36572. form: "normal"
  36573. },
  36574. frontTail: {
  36575. height: math.unit(15 + 7/12, "feet"),
  36576. weight: math.unit(1150, "tons"),
  36577. name: "Front (Full Tail)",
  36578. image: {
  36579. source: "./media/characters/saphinara/front-tail.svg",
  36580. extra: 2256/1630,
  36581. bottom: 261/2517
  36582. },
  36583. form: "normal"
  36584. },
  36585. insides: {
  36586. height: math.unit(11.92, "feet"),
  36587. name: "Insides",
  36588. image: {
  36589. source: "./media/characters/saphinara/insides.svg"
  36590. },
  36591. form: "normal"
  36592. },
  36593. head: {
  36594. height: math.unit(4.17, "feet"),
  36595. name: "Head",
  36596. image: {
  36597. source: "./media/characters/saphinara/head.svg"
  36598. },
  36599. form: "normal"
  36600. },
  36601. tongue: {
  36602. height: math.unit(4.60, "feet"),
  36603. name: "Tongue",
  36604. image: {
  36605. source: "./media/characters/saphinara/tongue.svg"
  36606. },
  36607. form: "normal"
  36608. },
  36609. headEnraged: {
  36610. height: math.unit(5.55, "feet"),
  36611. name: "Head (Enraged)",
  36612. image: {
  36613. source: "./media/characters/saphinara/head-enraged.svg"
  36614. },
  36615. form: "normal"
  36616. },
  36617. wings: {
  36618. height: math.unit(11.95, "feet"),
  36619. name: "Wings",
  36620. image: {
  36621. source: "./media/characters/saphinara/wings.svg"
  36622. },
  36623. form: "normal"
  36624. },
  36625. feathers: {
  36626. height: math.unit(8.92, "feet"),
  36627. name: "Feathers",
  36628. image: {
  36629. source: "./media/characters/saphinara/feathers.svg"
  36630. },
  36631. form: "normal"
  36632. },
  36633. shackles: {
  36634. height: math.unit(2, "feet"),
  36635. name: "Shackles",
  36636. image: {
  36637. source: "./media/characters/saphinara/shackles.svg"
  36638. },
  36639. form: "normal"
  36640. },
  36641. eyes: {
  36642. height: math.unit(1.331, "feet"),
  36643. name: "Eyes",
  36644. image: {
  36645. source: "./media/characters/saphinara/eyes.svg"
  36646. },
  36647. form: "normal"
  36648. },
  36649. eyesEnraged: {
  36650. height: math.unit(1.331, "feet"),
  36651. name: "Eyes (Enraged)",
  36652. image: {
  36653. source: "./media/characters/saphinara/eyes-enraged.svg"
  36654. },
  36655. form: "normal"
  36656. },
  36657. trueFormSide: {
  36658. height: math.unit(200, "feet"),
  36659. weight: math.unit(1e7, "tons"),
  36660. name: "Side",
  36661. image: {
  36662. source: "./media/characters/saphinara/true-form-side.svg",
  36663. extra: 1399/770,
  36664. bottom: 97/1496
  36665. },
  36666. form: "true-form",
  36667. default: true
  36668. },
  36669. trueFormMaw: {
  36670. height: math.unit(71.5, "feet"),
  36671. name: "Maw",
  36672. image: {
  36673. source: "./media/characters/saphinara/true-form-maw.svg",
  36674. extra: 2302/1453,
  36675. bottom: 0/2302
  36676. },
  36677. form: "true-form"
  36678. },
  36679. meowberusSide: {
  36680. height: math.unit(75, "feet"),
  36681. weight: math.unit(180000, "kg"),
  36682. preyCapacity: math.unit(50000, "people"),
  36683. name: "Side",
  36684. image: {
  36685. source: "./media/characters/saphinara/meowberus-side.svg",
  36686. extra: 1400/711,
  36687. bottom: 126/1526
  36688. },
  36689. form: "meowberus",
  36690. extraAttributes: {
  36691. "pawArea": {
  36692. name: "Paw Size",
  36693. power: 2,
  36694. type: "area",
  36695. base: math.unit(35, "m^2")
  36696. }
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(15 + 7/12, "feet"),
  36704. default: true,
  36705. form: "normal"
  36706. },
  36707. {
  36708. name: "Angry",
  36709. height: math.unit(30 + 6/12, "feet"),
  36710. form: "normal"
  36711. },
  36712. {
  36713. name: "Enraged",
  36714. height: math.unit(102 + 1/12, "feet"),
  36715. form: "normal"
  36716. },
  36717. {
  36718. name: "True",
  36719. height: math.unit(200, "feet"),
  36720. default: true,
  36721. form: "true-form"
  36722. },
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(75, "feet"),
  36726. default: true,
  36727. form: "meowberus"
  36728. },
  36729. ],
  36730. {
  36731. "normal": {
  36732. name: "Normal",
  36733. default: true
  36734. },
  36735. "true-form": {
  36736. name: "True Form"
  36737. },
  36738. "meowberus": {
  36739. name: "Meowberus",
  36740. },
  36741. }
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(6 + 8/12, "feet"),
  36748. weight: math.unit(300, "lb"),
  36749. name: "Front",
  36750. image: {
  36751. source: "./media/characters/jrain/front.svg",
  36752. extra: 3039/2865,
  36753. bottom: 399/3438
  36754. }
  36755. },
  36756. back: {
  36757. height: math.unit(6 + 8/12, "feet"),
  36758. weight: math.unit(300, "lb"),
  36759. name: "Back",
  36760. image: {
  36761. source: "./media/characters/jrain/back.svg",
  36762. extra: 3089/2938,
  36763. bottom: 172/3261
  36764. }
  36765. },
  36766. head: {
  36767. height: math.unit(2.14, "feet"),
  36768. name: "Head",
  36769. image: {
  36770. source: "./media/characters/jrain/head.svg"
  36771. }
  36772. },
  36773. maw: {
  36774. height: math.unit(1.77, "feet"),
  36775. name: "Maw",
  36776. image: {
  36777. source: "./media/characters/jrain/maw.svg"
  36778. }
  36779. },
  36780. leftHand: {
  36781. height: math.unit(1.1, "feet"),
  36782. name: "Left Hand",
  36783. image: {
  36784. source: "./media/characters/jrain/left-hand.svg"
  36785. }
  36786. },
  36787. rightHand: {
  36788. height: math.unit(1.1, "feet"),
  36789. name: "Right Hand",
  36790. image: {
  36791. source: "./media/characters/jrain/right-hand.svg"
  36792. }
  36793. },
  36794. eye: {
  36795. height: math.unit(0.35, "feet"),
  36796. name: "Eye",
  36797. image: {
  36798. source: "./media/characters/jrain/eye.svg"
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(6 + 8/12, "feet"),
  36806. default: true
  36807. },
  36808. {
  36809. name: "Casually Large",
  36810. height: math.unit(25, "feet")
  36811. },
  36812. {
  36813. name: "Giant",
  36814. height: math.unit(100, "feet")
  36815. },
  36816. {
  36817. name: "Kaiju",
  36818. height: math.unit(300, "feet")
  36819. },
  36820. ]
  36821. ))
  36822. characterMakers.push(() => makeCharacter(
  36823. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36824. {
  36825. dragon: {
  36826. height: math.unit(5, "meters"),
  36827. name: "Dragon",
  36828. image: {
  36829. source: "./media/characters/sabrina/dragon.svg",
  36830. extra: 3670 / 2365,
  36831. bottom: 333 / 4003
  36832. }
  36833. },
  36834. gryphon: {
  36835. height: math.unit(3, "meters"),
  36836. name: "Gryphon",
  36837. image: {
  36838. source: "./media/characters/sabrina/gryphon.svg",
  36839. extra: 1576 / 945,
  36840. bottom: 71 / 1647
  36841. }
  36842. },
  36843. snake: {
  36844. height: math.unit(12, "meters"),
  36845. name: "Snake",
  36846. image: {
  36847. source: "./media/characters/sabrina/snake.svg",
  36848. extra: 1758 / 1320,
  36849. bottom: 186 / 1944
  36850. }
  36851. },
  36852. collar: {
  36853. height: math.unit(1.86, "meters"),
  36854. name: "Collar",
  36855. image: {
  36856. source: "./media/characters/sabrina/collar.svg"
  36857. }
  36858. },
  36859. eye: {
  36860. height: math.unit(0.53, "meters"),
  36861. name: "Eye",
  36862. image: {
  36863. source: "./media/characters/sabrina/eye.svg"
  36864. }
  36865. },
  36866. foot: {
  36867. height: math.unit(1.86, "meters"),
  36868. name: "Foot",
  36869. image: {
  36870. source: "./media/characters/sabrina/foot.svg"
  36871. }
  36872. },
  36873. hand: {
  36874. height: math.unit(1.32, "meters"),
  36875. name: "Hand",
  36876. image: {
  36877. source: "./media/characters/sabrina/hand.svg"
  36878. }
  36879. },
  36880. head: {
  36881. height: math.unit(2.44, "meters"),
  36882. name: "Head",
  36883. image: {
  36884. source: "./media/characters/sabrina/head.svg"
  36885. }
  36886. },
  36887. headAngry: {
  36888. height: math.unit(2.44, "meters"),
  36889. name: "Head (Angry))",
  36890. image: {
  36891. source: "./media/characters/sabrina/head-angry.svg"
  36892. }
  36893. },
  36894. maw: {
  36895. height: math.unit(1.65, "meters"),
  36896. name: "Maw",
  36897. image: {
  36898. source: "./media/characters/sabrina/maw.svg"
  36899. }
  36900. },
  36901. spikes: {
  36902. height: math.unit(1.69, "meters"),
  36903. name: "Spikes",
  36904. image: {
  36905. source: "./media/characters/sabrina/spikes.svg"
  36906. }
  36907. },
  36908. stomach: {
  36909. height: math.unit(1.15, "meters"),
  36910. name: "Stomach",
  36911. image: {
  36912. source: "./media/characters/sabrina/stomach.svg"
  36913. }
  36914. },
  36915. tongue: {
  36916. height: math.unit(1.27, "meters"),
  36917. name: "Tongue",
  36918. image: {
  36919. source: "./media/characters/sabrina/tongue.svg"
  36920. }
  36921. },
  36922. wingDorsal: {
  36923. height: math.unit(4.85, "meters"),
  36924. name: "Wing (Dorsal)",
  36925. image: {
  36926. source: "./media/characters/sabrina/wing-dorsal.svg"
  36927. }
  36928. },
  36929. wingVentral: {
  36930. height: math.unit(4.85, "meters"),
  36931. name: "Wing (Ventral)",
  36932. image: {
  36933. source: "./media/characters/sabrina/wing-ventral.svg"
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Normal",
  36940. height: math.unit(5, "meters"),
  36941. default: true
  36942. },
  36943. ]
  36944. ))
  36945. characterMakers.push(() => makeCharacter(
  36946. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36947. {
  36948. frontMaid: {
  36949. height: math.unit(5 + 5/12, "feet"),
  36950. weight: math.unit(130, "lb"),
  36951. name: "Front (Maid)",
  36952. image: {
  36953. source: "./media/characters/midnight-tales/front-maid.svg",
  36954. extra: 489/454,
  36955. bottom: 61/550
  36956. }
  36957. },
  36958. frontFormal: {
  36959. height: math.unit(5 + 5/12, "feet"),
  36960. weight: math.unit(130, "lb"),
  36961. name: "Front (Formal)",
  36962. image: {
  36963. source: "./media/characters/midnight-tales/front-formal.svg",
  36964. extra: 489/454,
  36965. bottom: 61/550
  36966. }
  36967. },
  36968. back: {
  36969. height: math.unit(5 + 5/12, "feet"),
  36970. weight: math.unit(130, "lb"),
  36971. name: "Back",
  36972. image: {
  36973. source: "./media/characters/midnight-tales/back.svg",
  36974. extra: 498/456,
  36975. bottom: 33/531
  36976. }
  36977. },
  36978. frontBeast: {
  36979. height: math.unit(40, "feet"),
  36980. weight: math.unit(64000, "lb"),
  36981. name: "Front (Beast)",
  36982. image: {
  36983. source: "./media/characters/midnight-tales/front-beast.svg",
  36984. extra: 927/860,
  36985. bottom: 53/980
  36986. }
  36987. },
  36988. backBeast: {
  36989. height: math.unit(40, "feet"),
  36990. weight: math.unit(64000, "lb"),
  36991. name: "Back (Beast)",
  36992. image: {
  36993. source: "./media/characters/midnight-tales/back-beast.svg",
  36994. extra: 929/855,
  36995. bottom: 16/945
  36996. }
  36997. },
  36998. footBeast: {
  36999. height: math.unit(6.7, "feet"),
  37000. name: "Foot (Beast)",
  37001. image: {
  37002. source: "./media/characters/midnight-tales/foot-beast.svg"
  37003. }
  37004. },
  37005. headBeast: {
  37006. height: math.unit(8, "feet"),
  37007. name: "Head (Beast)",
  37008. image: {
  37009. source: "./media/characters/midnight-tales/head-beast.svg"
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(5 + 5 / 12, "feet"),
  37017. default: true
  37018. },
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(25, "feet")
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  37027. {
  37028. front: {
  37029. height: math.unit(6 + 2/12, "feet"),
  37030. weight: math.unit(115, "kg"),
  37031. preyCapacity: math.unit(3, "people"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/argon/front.svg",
  37035. extra: 2009/1935,
  37036. bottom: 118/2127
  37037. },
  37038. extraAttributes: {
  37039. "tailLength": {
  37040. name: "Tail Length",
  37041. power: 1,
  37042. type: "length",
  37043. base: math.unit(6, "feet")
  37044. },
  37045. "tailWeight": {
  37046. name: "Tail Weight",
  37047. power: 3,
  37048. type: "mass",
  37049. base: math.unit(40, "kg")
  37050. },
  37051. }
  37052. },
  37053. back: {
  37054. height: math.unit(6 + 2/12, "feet"),
  37055. weight: math.unit(115, "kg"),
  37056. preyCapacity: math.unit(3, "people"),
  37057. name: "Back",
  37058. image: {
  37059. source: "./media/characters/argon/back.svg",
  37060. extra: 2047/1992,
  37061. bottom: 20/2067
  37062. },
  37063. extraAttributes: {
  37064. "tailLength": {
  37065. name: "Tail Length",
  37066. power: 1,
  37067. type: "length",
  37068. base: math.unit(6, "feet")
  37069. },
  37070. "tailWeight": {
  37071. name: "Tail Weight",
  37072. power: 3,
  37073. type: "mass",
  37074. base: math.unit(40, "kg")
  37075. },
  37076. }
  37077. },
  37078. frontDressed: {
  37079. height: math.unit(6 + 2/12, "feet"),
  37080. weight: math.unit(115, "kg"),
  37081. preyCapacity: math.unit(3, "people"),
  37082. name: "Front (Dressed)",
  37083. image: {
  37084. source: "./media/characters/argon/front-dressed.svg",
  37085. extra: 2009/1935,
  37086. bottom: 118/2127
  37087. },
  37088. extraAttributes: {
  37089. "tailLength": {
  37090. name: "Tail Length",
  37091. power: 1,
  37092. type: "length",
  37093. base: math.unit(6, "feet")
  37094. },
  37095. "tailWeight": {
  37096. name: "Tail Weight",
  37097. power: 3,
  37098. type: "mass",
  37099. base: math.unit(40, "kg")
  37100. },
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Minimum",
  37107. height: math.unit(2 + 8/12, "feet")
  37108. },
  37109. {
  37110. name: "Normal",
  37111. height: math.unit(6 + 2/12, "feet"),
  37112. default: true
  37113. },
  37114. {
  37115. name: "Maximum",
  37116. height: math.unit(20, "feet")
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(8 + 6/12, "feet"),
  37125. weight: math.unit(1150, "lb"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/kichi/front.svg",
  37129. extra: 1267/1164,
  37130. bottom: 61/1328
  37131. }
  37132. },
  37133. back: {
  37134. height: math.unit(8 + 6/12, "feet"),
  37135. weight: math.unit(1150, "lb"),
  37136. name: "Back",
  37137. image: {
  37138. source: "./media/characters/kichi/back.svg",
  37139. extra: 1273/1166,
  37140. bottom: 33/1306
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(8 + 6/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(6, "feet"),
  37157. weight: math.unit(210, "lb"),
  37158. name: "Front",
  37159. image: {
  37160. source: "./media/characters/manetel-greyscale/front.svg",
  37161. extra: 483/444,
  37162. bottom: 22/505
  37163. },
  37164. extraAttributes: {
  37165. "tailLength": {
  37166. name: "Tail Length",
  37167. power: 1,
  37168. type: "length",
  37169. base: math.unit(6.5, "feet")
  37170. },
  37171. }
  37172. },
  37173. side: {
  37174. height: math.unit(6, "feet"),
  37175. weight: math.unit(210, "lb"),
  37176. name: "Side",
  37177. image: {
  37178. source: "./media/characters/manetel-greyscale/side.svg",
  37179. extra: 478/426,
  37180. bottom: 20/498
  37181. },
  37182. extraAttributes: {
  37183. "tailLength": {
  37184. name: "Tail Length",
  37185. power: 1,
  37186. type: "length",
  37187. base: math.unit(6.5, "feet")
  37188. },
  37189. }
  37190. },
  37191. back: {
  37192. height: math.unit(6, "feet"),
  37193. weight: math.unit(210, "lb"),
  37194. name: "Back",
  37195. image: {
  37196. source: "./media/characters/manetel-greyscale/back.svg",
  37197. extra: 482/445,
  37198. bottom: 12/494
  37199. },
  37200. extraAttributes: {
  37201. "tailLength": {
  37202. name: "Tail Length",
  37203. power: 1,
  37204. type: "length",
  37205. base: math.unit(6.5, "feet")
  37206. },
  37207. }
  37208. },
  37209. },
  37210. [
  37211. {
  37212. name: "Micro",
  37213. height: math.unit(2, "inches")
  37214. },
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(6, "feet"),
  37218. default: true
  37219. },
  37220. {
  37221. name: "Macro",
  37222. height: math.unit(117, "feet")
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37228. {
  37229. side: {
  37230. height: math.unit(5 + 1/12, "feet"),
  37231. weight: math.unit(418, "lb"),
  37232. name: "Side",
  37233. image: {
  37234. source: "./media/characters/softpurr/side.svg",
  37235. extra: 1993/1945,
  37236. bottom: 134/2127
  37237. }
  37238. },
  37239. front: {
  37240. height: math.unit(5 + 1/12, "feet"),
  37241. weight: math.unit(418, "lb"),
  37242. name: "Front",
  37243. image: {
  37244. source: "./media/characters/softpurr/front.svg",
  37245. extra: 1950/1856,
  37246. bottom: 174/2124
  37247. }
  37248. },
  37249. paw: {
  37250. height: math.unit(1, "feet"),
  37251. name: "Paw",
  37252. image: {
  37253. source: "./media/characters/softpurr/paw.svg"
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(5 + 1/12, "feet"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(300, "meters"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/anahita/front.svg",
  37273. extra: 609/576,
  37274. bottom: 51/660
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Macro",
  37281. height: math.unit(300, "meters"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(4 + 10/12, "feet"),
  37291. weight: math.unit(160, "lb"),
  37292. name: "Front",
  37293. image: {
  37294. source: "./media/characters/chip-mouse/front.svg",
  37295. extra: 3528/3408,
  37296. bottom: 0/3528
  37297. }
  37298. },
  37299. frontNsfw: {
  37300. height: math.unit(4 + 10/12, "feet"),
  37301. weight: math.unit(160, "lb"),
  37302. name: "Front (NSFW)",
  37303. image: {
  37304. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37305. extra: 3528/3408,
  37306. bottom: 0/3528
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(4 + 10/12, "feet"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37320. {
  37321. side: {
  37322. height: math.unit(10, "feet"),
  37323. weight: math.unit(14000, "lb"),
  37324. name: "Side",
  37325. image: {
  37326. source: "./media/characters/kremm/side.svg",
  37327. extra: 1390/1053,
  37328. bottom: 90/1480
  37329. }
  37330. },
  37331. gut: {
  37332. height: math.unit(5.8, "feet"),
  37333. name: "Gut",
  37334. image: {
  37335. source: "./media/characters/kremm/gut.svg"
  37336. }
  37337. },
  37338. ass: {
  37339. height: math.unit(6.1, "feet"),
  37340. name: "Ass",
  37341. image: {
  37342. source: "./media/characters/kremm/ass.svg"
  37343. }
  37344. },
  37345. jaws: {
  37346. height: math.unit(2.2, "feet"),
  37347. name: "Jaws",
  37348. image: {
  37349. source: "./media/characters/kremm/jaws.svg"
  37350. }
  37351. },
  37352. dick: {
  37353. height: math.unit(4.26, "feet"),
  37354. name: "Dick",
  37355. image: {
  37356. source: "./media/characters/kremm/dick.svg"
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(10, "feet"),
  37364. default: true
  37365. },
  37366. ]
  37367. ))
  37368. characterMakers.push(() => makeCharacter(
  37369. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37370. {
  37371. front: {
  37372. height: math.unit(30, "stories"),
  37373. name: "Front",
  37374. image: {
  37375. source: "./media/characters/kai/front.svg",
  37376. extra: 1892/1718,
  37377. bottom: 162/2054
  37378. }
  37379. },
  37380. },
  37381. [
  37382. {
  37383. name: "Macro",
  37384. height: math.unit(30, "stories"),
  37385. default: true
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37391. {
  37392. front: {
  37393. height: math.unit(6 + 4/12, "feet"),
  37394. weight: math.unit(145, "lb"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/sykes/front.svg",
  37398. extra: 1321 / 1187,
  37399. bottom: 66 / 1387
  37400. }
  37401. },
  37402. back: {
  37403. height: math.unit(6 + 4/12, "feet"),
  37404. weight: math.unit(145, "lb"),
  37405. name: "Back",
  37406. image: {
  37407. source: "./media/characters/sykes/back.svg",
  37408. extra: 1326/1181,
  37409. bottom: 31/1357
  37410. }
  37411. },
  37412. traditionalOutfit: {
  37413. height: math.unit(6 + 4/12, "feet"),
  37414. weight: math.unit(145, "lb"),
  37415. name: "Traditional Outfit",
  37416. image: {
  37417. source: "./media/characters/sykes/traditional-outfit.svg",
  37418. extra: 1321 / 1187,
  37419. bottom: 66 / 1387
  37420. }
  37421. },
  37422. adventureOutfit: {
  37423. height: math.unit(6 + 4/12, "feet"),
  37424. weight: math.unit(145, "lb"),
  37425. name: "Adventure Outfit",
  37426. image: {
  37427. source: "./media/characters/sykes/adventure-outfit.svg",
  37428. extra: 1321 / 1187,
  37429. bottom: 66 / 1387
  37430. }
  37431. },
  37432. handLeft: {
  37433. height: math.unit(0.9, "feet"),
  37434. name: "Hand (Left)",
  37435. image: {
  37436. source: "./media/characters/sykes/hand-left.svg"
  37437. }
  37438. },
  37439. handRight: {
  37440. height: math.unit(0.839, "feet"),
  37441. name: "Hand (Right)",
  37442. image: {
  37443. source: "./media/characters/sykes/hand-right.svg"
  37444. }
  37445. },
  37446. leftFoot: {
  37447. height: math.unit(1.2, "feet"),
  37448. name: "Foot (Left)",
  37449. image: {
  37450. source: "./media/characters/sykes/foot-left.svg"
  37451. }
  37452. },
  37453. rightFoot: {
  37454. height: math.unit(1.2, "feet"),
  37455. name: "Foot (Right)",
  37456. image: {
  37457. source: "./media/characters/sykes/foot-right.svg"
  37458. }
  37459. },
  37460. maw: {
  37461. height: math.unit(1.93, "feet"),
  37462. name: "Maw",
  37463. image: {
  37464. source: "./media/characters/sykes/maw.svg"
  37465. }
  37466. },
  37467. teeth: {
  37468. height: math.unit(0.51, "feet"),
  37469. name: "Teeth",
  37470. image: {
  37471. source: "./media/characters/sykes/teeth.svg"
  37472. }
  37473. },
  37474. tongue: {
  37475. height: math.unit(2.13, "feet"),
  37476. name: "Tongue",
  37477. image: {
  37478. source: "./media/characters/sykes/tongue.svg"
  37479. }
  37480. },
  37481. uvula: {
  37482. height: math.unit(0.16, "feet"),
  37483. name: "Uvula",
  37484. image: {
  37485. source: "./media/characters/sykes/uvula.svg"
  37486. }
  37487. },
  37488. collar: {
  37489. height: math.unit(0.287, "feet"),
  37490. name: "Collar",
  37491. image: {
  37492. source: "./media/characters/sykes/collar.svg"
  37493. }
  37494. },
  37495. tail: {
  37496. height: math.unit(3.8, "feet"),
  37497. name: "Tail",
  37498. image: {
  37499. source: "./media/characters/sykes/tail.svg"
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Shrunken",
  37506. height: math.unit(5, "inches")
  37507. },
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(6 + 4 / 12, "feet"),
  37511. default: true
  37512. },
  37513. {
  37514. name: "Big",
  37515. height: math.unit(15, "feet")
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(5 + 8/12, "feet"),
  37524. weight: math.unit(190, "lb"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/oven-otter/front.svg",
  37528. extra: 1809/1740,
  37529. bottom: 181/1990
  37530. }
  37531. },
  37532. back: {
  37533. height: math.unit(5 + 8/12, "feet"),
  37534. weight: math.unit(190, "lb"),
  37535. name: "Back",
  37536. image: {
  37537. source: "./media/characters/oven-otter/back.svg",
  37538. extra: 1709/1635,
  37539. bottom: 118/1827
  37540. }
  37541. },
  37542. hand: {
  37543. height: math.unit(1.07, "feet"),
  37544. name: "Hand",
  37545. image: {
  37546. source: "./media/characters/oven-otter/hand.svg"
  37547. }
  37548. },
  37549. beans: {
  37550. height: math.unit(1.74, "feet"),
  37551. name: "Beans",
  37552. image: {
  37553. source: "./media/characters/oven-otter/beans.svg"
  37554. }
  37555. },
  37556. },
  37557. [
  37558. {
  37559. name: "Micro",
  37560. height: math.unit(0.5, "inches")
  37561. },
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(5 + 8/12, "feet"),
  37565. default: true
  37566. },
  37567. {
  37568. name: "Macro",
  37569. height: math.unit(250, "feet")
  37570. },
  37571. {
  37572. name: "Really High",
  37573. height: math.unit(420, "feet")
  37574. },
  37575. ]
  37576. ))
  37577. characterMakers.push(() => makeCharacter(
  37578. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37579. {
  37580. front: {
  37581. height: math.unit(5, "meters"),
  37582. weight: math.unit(292000000000000, "kg"),
  37583. name: "Front",
  37584. image: {
  37585. source: "./media/characters/devourer/front.svg",
  37586. extra: 1800/1733,
  37587. bottom: 211/2011
  37588. }
  37589. },
  37590. maw: {
  37591. height: math.unit(1.1, "meter"),
  37592. name: "Maw",
  37593. image: {
  37594. source: "./media/characters/devourer/maw.svg"
  37595. }
  37596. },
  37597. },
  37598. [
  37599. {
  37600. name: "Small",
  37601. height: math.unit(3, "meters")
  37602. },
  37603. {
  37604. name: "Large",
  37605. height: math.unit(5, "meters"),
  37606. default: true
  37607. },
  37608. {
  37609. name: "Macro",
  37610. height: math.unit(20, "meters")
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37616. {
  37617. front: {
  37618. height: math.unit(6, "feet"),
  37619. weight: math.unit(400, "lb"),
  37620. name: "Front",
  37621. image: {
  37622. source: "./media/characters/ellarby/front.svg",
  37623. extra: 1909/1763,
  37624. bottom: 80/1989
  37625. }
  37626. },
  37627. back: {
  37628. height: math.unit(6, "feet"),
  37629. weight: math.unit(400, "lb"),
  37630. name: "Back",
  37631. image: {
  37632. source: "./media/characters/ellarby/back.svg",
  37633. extra: 1914/1784,
  37634. bottom: 172/2086
  37635. }
  37636. },
  37637. },
  37638. [
  37639. {
  37640. name: "Mischief",
  37641. height: math.unit(18, "inches")
  37642. },
  37643. {
  37644. name: "Trouble",
  37645. height: math.unit(12, "feet")
  37646. },
  37647. {
  37648. name: "Havoc",
  37649. height: math.unit(200, "feet"),
  37650. default: true
  37651. },
  37652. {
  37653. name: "Pandemonium",
  37654. height: math.unit(1, "mile")
  37655. },
  37656. {
  37657. name: "Catastrophe",
  37658. height: math.unit(100, "miles")
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37664. {
  37665. front: {
  37666. height: math.unit(4.7, "meters"),
  37667. weight: math.unit(6500, "kg"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/vex/front.svg",
  37671. extra: 1288/1140,
  37672. bottom: 100/1388
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(4.7, "meters"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37686. {
  37687. normal: {
  37688. height: math.unit(6, "feet"),
  37689. weight: math.unit(350, "lb"),
  37690. name: "Normal",
  37691. image: {
  37692. source: "./media/characters/teshy/normal.svg",
  37693. extra: 1795/1735,
  37694. bottom: 16/1811
  37695. }
  37696. },
  37697. monsterFront: {
  37698. height: math.unit(12, "feet"),
  37699. weight: math.unit(4700, "lb"),
  37700. name: "Monster (Front)",
  37701. image: {
  37702. source: "./media/characters/teshy/monster-front.svg",
  37703. extra: 2042/2034,
  37704. bottom: 128/2170
  37705. }
  37706. },
  37707. monsterSide: {
  37708. height: math.unit(12, "feet"),
  37709. weight: math.unit(4700, "lb"),
  37710. name: "Monster (Side)",
  37711. image: {
  37712. source: "./media/characters/teshy/monster-side.svg",
  37713. extra: 2067/2056,
  37714. bottom: 70/2137
  37715. }
  37716. },
  37717. monsterBack: {
  37718. height: math.unit(12, "feet"),
  37719. weight: math.unit(4700, "lb"),
  37720. name: "Monster (Back)",
  37721. image: {
  37722. source: "./media/characters/teshy/monster-back.svg",
  37723. extra: 1921/1914,
  37724. bottom: 171/2092
  37725. }
  37726. },
  37727. },
  37728. [
  37729. {
  37730. name: "Normal",
  37731. height: math.unit(6, "feet"),
  37732. default: true
  37733. },
  37734. ]
  37735. ))
  37736. characterMakers.push(() => makeCharacter(
  37737. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37738. {
  37739. front: {
  37740. height: math.unit(6, "feet"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/ramey/front.svg",
  37744. extra: 790/787,
  37745. bottom: 27/817
  37746. }
  37747. },
  37748. },
  37749. [
  37750. {
  37751. name: "Normal",
  37752. height: math.unit(6, "feet"),
  37753. default: true
  37754. },
  37755. ]
  37756. ))
  37757. characterMakers.push(() => makeCharacter(
  37758. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37759. {
  37760. front: {
  37761. height: math.unit(5 + 5/12, "feet"),
  37762. weight: math.unit(120, "lb"),
  37763. name: "Front",
  37764. image: {
  37765. source: "./media/characters/phirae/front.svg",
  37766. extra: 2491/2436,
  37767. bottom: 38/2529
  37768. }
  37769. },
  37770. },
  37771. [
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(5 + 5/12, "feet"),
  37775. default: true
  37776. },
  37777. ]
  37778. ))
  37779. characterMakers.push(() => makeCharacter(
  37780. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37781. {
  37782. front: {
  37783. height: math.unit(5 + 3/12, "feet"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/stagglas/front.svg",
  37787. extra: 962/882,
  37788. bottom: 53/1015
  37789. }
  37790. },
  37791. feral: {
  37792. height: math.unit(335, "cm"),
  37793. name: "Feral",
  37794. image: {
  37795. source: "./media/characters/stagglas/feral.svg",
  37796. extra: 1732/1090,
  37797. bottom: 48/1780
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(5 + 3/12, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(5 + 4/12, "feet"),
  37814. weight: math.unit(145, "lb"),
  37815. name: "Front",
  37816. image: {
  37817. source: "./media/characters/starra/front.svg",
  37818. extra: 1790/1691,
  37819. bottom: 91/1881
  37820. }
  37821. },
  37822. },
  37823. [
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(5 + 4/12, "feet"),
  37827. default: true
  37828. },
  37829. ]
  37830. ))
  37831. characterMakers.push(() => makeCharacter(
  37832. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37833. {
  37834. front: {
  37835. height: math.unit(3.5, "meters"),
  37836. name: "Front",
  37837. image: {
  37838. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37839. extra: 1248/972,
  37840. bottom: 38/1286
  37841. }
  37842. },
  37843. },
  37844. [
  37845. {
  37846. name: "Normal",
  37847. height: math.unit(3.5, "meters"),
  37848. default: true
  37849. },
  37850. ]
  37851. ))
  37852. characterMakers.push(() => makeCharacter(
  37853. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37854. {
  37855. side: {
  37856. height: math.unit(8 + 2/12, "feet"),
  37857. weight: math.unit(1240, "lb"),
  37858. name: "Side",
  37859. image: {
  37860. source: "./media/characters/mika-valentine/side.svg",
  37861. extra: 2670/2501,
  37862. bottom: 250/2920
  37863. }
  37864. },
  37865. },
  37866. [
  37867. {
  37868. name: "Normal",
  37869. height: math.unit(8 + 2/12, "feet"),
  37870. default: true
  37871. },
  37872. ]
  37873. ))
  37874. characterMakers.push(() => makeCharacter(
  37875. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37876. {
  37877. front: {
  37878. height: math.unit(7 + 2/12, "feet"),
  37879. name: "Front",
  37880. image: {
  37881. source: "./media/characters/xoltol/front.svg",
  37882. extra: 2212/2124,
  37883. bottom: 84/2296
  37884. }
  37885. },
  37886. side: {
  37887. height: math.unit(7 + 2/12, "feet"),
  37888. name: "Side",
  37889. image: {
  37890. source: "./media/characters/xoltol/side.svg",
  37891. extra: 2273/2197,
  37892. bottom: 26/2299
  37893. }
  37894. },
  37895. hand: {
  37896. height: math.unit(2.5, "feet"),
  37897. name: "Hand",
  37898. image: {
  37899. source: "./media/characters/xoltol/hand.svg"
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Small-ish",
  37906. height: math.unit(5 + 11/12, "feet")
  37907. },
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(7 + 2/12, "feet")
  37911. },
  37912. {
  37913. name: "\"Macro\"",
  37914. height: math.unit(14 + 9/12, "feet"),
  37915. default: true
  37916. },
  37917. {
  37918. name: "Alternate Height",
  37919. height: math.unit(20, "feet")
  37920. },
  37921. {
  37922. name: "Actually Macro",
  37923. height: math.unit(100, "feet")
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(5 + 2/12, "feet"),
  37932. weight: math.unit(75, "kg"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/kotetsu-redwood/front.svg",
  37936. extra: 1053/942,
  37937. bottom: 60/1113
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(5 + 2/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37951. {
  37952. front: {
  37953. height: math.unit(2.4, "meters"),
  37954. weight: math.unit(125, "kg"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/lilith/front.svg",
  37958. extra: 1590/1513,
  37959. bottom: 203/1793
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Humanoid",
  37966. height: math.unit(2.4, "meters")
  37967. },
  37968. {
  37969. name: "Normal",
  37970. height: math.unit(6, "meters"),
  37971. default: true
  37972. },
  37973. {
  37974. name: "Largest",
  37975. height: math.unit(55, "meters")
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(8 + 4/12, "feet"),
  37984. weight: math.unit(535, "lb"),
  37985. name: "Front",
  37986. image: {
  37987. source: "./media/characters/beh'kah-bolger/front.svg",
  37988. extra: 1660/1603,
  37989. bottom: 37/1697
  37990. }
  37991. },
  37992. },
  37993. [
  37994. {
  37995. name: "Normal",
  37996. height: math.unit(8 + 4/12, "feet"),
  37997. default: true
  37998. },
  37999. {
  38000. name: "Kaiju",
  38001. height: math.unit(250, "feet")
  38002. },
  38003. {
  38004. name: "Still Growing",
  38005. height: math.unit(10, "miles")
  38006. },
  38007. {
  38008. name: "Continental",
  38009. height: math.unit(5000, "miles")
  38010. },
  38011. {
  38012. name: "Final Form",
  38013. height: math.unit(2500000, "miles")
  38014. },
  38015. ]
  38016. ))
  38017. characterMakers.push(() => makeCharacter(
  38018. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  38019. {
  38020. front: {
  38021. height: math.unit(7 + 2/12, "feet"),
  38022. weight: math.unit(230, "kg"),
  38023. name: "Front",
  38024. image: {
  38025. source: "./media/characters/tatyana-milewska/front.svg",
  38026. extra: 1199/1150,
  38027. bottom: 86/1285
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Normal",
  38034. height: math.unit(7 + 2/12, "feet"),
  38035. default: true
  38036. },
  38037. {
  38038. name: "Big",
  38039. height: math.unit(12, "feet")
  38040. },
  38041. {
  38042. name: "Minimacro",
  38043. height: math.unit(20, "feet")
  38044. },
  38045. {
  38046. name: "Macro",
  38047. height: math.unit(120, "feet")
  38048. },
  38049. ]
  38050. ))
  38051. characterMakers.push(() => makeCharacter(
  38052. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  38053. {
  38054. front: {
  38055. height: math.unit(7 + 8/12, "feet"),
  38056. weight: math.unit(152, "kg"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/helen-arri/front.svg",
  38060. extra: 440/423,
  38061. bottom: 14/454
  38062. }
  38063. },
  38064. back: {
  38065. height: math.unit(7 + 8/12, "feet"),
  38066. weight: math.unit(152, "kg"),
  38067. name: "Back",
  38068. image: {
  38069. source: "./media/characters/helen-arri/back.svg",
  38070. extra: 443/426,
  38071. bottom: 8/451
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(7 + 8/12, "feet"),
  38079. default: true
  38080. },
  38081. {
  38082. name: "Big",
  38083. height: math.unit(14, "feet")
  38084. },
  38085. {
  38086. name: "Minimacro",
  38087. height: math.unit(24, "feet")
  38088. },
  38089. {
  38090. name: "Macro",
  38091. height: math.unit(140, "feet")
  38092. },
  38093. ]
  38094. ))
  38095. characterMakers.push(() => makeCharacter(
  38096. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38097. {
  38098. front: {
  38099. height: math.unit(6, "meters"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/ehanu-rehu/front.svg",
  38103. extra: 1800/1800,
  38104. bottom: 59/1859
  38105. }
  38106. },
  38107. },
  38108. [
  38109. {
  38110. name: "Normal",
  38111. height: math.unit(6, "meters"),
  38112. default: true
  38113. },
  38114. ]
  38115. ))
  38116. characterMakers.push(() => makeCharacter(
  38117. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38118. {
  38119. front: {
  38120. height: math.unit(7 + 3/12, "feet"),
  38121. name: "Front",
  38122. image: {
  38123. source: "./media/characters/renholder/front.svg",
  38124. extra: 3096/2960,
  38125. bottom: 250/3346
  38126. }
  38127. },
  38128. },
  38129. [
  38130. {
  38131. name: "Normal Bat",
  38132. height: math.unit(7 + 3/12, "feet"),
  38133. default: true
  38134. },
  38135. {
  38136. name: "Slightly Tall Bat",
  38137. height: math.unit(100, "feet")
  38138. },
  38139. {
  38140. name: "Big Bat",
  38141. height: math.unit(1000, "feet")
  38142. },
  38143. {
  38144. name: "City-Sized Bat",
  38145. height: math.unit(200000, "feet")
  38146. },
  38147. {
  38148. name: "Bigger Bat",
  38149. height: math.unit(10000, "miles")
  38150. },
  38151. {
  38152. name: "Solar Sized Bat",
  38153. height: math.unit(100, "AU")
  38154. },
  38155. {
  38156. name: "Galactic Bat",
  38157. height: math.unit(200000, "lightyears")
  38158. },
  38159. {
  38160. name: "Universally Known Bat",
  38161. height: math.unit(1, "universe")
  38162. },
  38163. ]
  38164. ))
  38165. characterMakers.push(() => makeCharacter(
  38166. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38167. {
  38168. front: {
  38169. height: math.unit(6 + 11/12, "feet"),
  38170. weight: math.unit(250, "lb"),
  38171. name: "Front",
  38172. image: {
  38173. source: "./media/characters/cookiecat/front.svg",
  38174. extra: 893/827,
  38175. bottom: 14/907
  38176. }
  38177. },
  38178. },
  38179. [
  38180. {
  38181. name: "Micro",
  38182. height: math.unit(3, "inches")
  38183. },
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(6 + 11/12, "feet"),
  38187. default: true
  38188. },
  38189. {
  38190. name: "Macro",
  38191. height: math.unit(100, "feet")
  38192. },
  38193. {
  38194. name: "Macro+",
  38195. height: math.unit(404, "feet")
  38196. },
  38197. {
  38198. name: "Megamacro",
  38199. height: math.unit(165, "miles")
  38200. },
  38201. {
  38202. name: "Planetary",
  38203. height: math.unit(4600, "miles")
  38204. },
  38205. ]
  38206. ))
  38207. characterMakers.push(() => makeCharacter(
  38208. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38209. {
  38210. front: {
  38211. height: math.unit(10 + 3/12, "feet"),
  38212. weight: math.unit(1500, "lb"),
  38213. name: "Front",
  38214. image: {
  38215. source: "./media/characters/tux-kusanagi/front.svg",
  38216. extra: 944/840,
  38217. bottom: 39/983
  38218. }
  38219. },
  38220. back: {
  38221. height: math.unit(10 + 3/12, "feet"),
  38222. weight: math.unit(1500, "lb"),
  38223. name: "Back",
  38224. image: {
  38225. source: "./media/characters/tux-kusanagi/back.svg",
  38226. extra: 941/842,
  38227. bottom: 28/969
  38228. }
  38229. },
  38230. rump: {
  38231. height: math.unit(5.25, "feet"),
  38232. name: "Rump",
  38233. image: {
  38234. source: "./media/characters/tux-kusanagi/rump.svg"
  38235. }
  38236. },
  38237. beak: {
  38238. height: math.unit(1.54, "feet"),
  38239. name: "Beak",
  38240. image: {
  38241. source: "./media/characters/tux-kusanagi/beak.svg"
  38242. }
  38243. },
  38244. },
  38245. [
  38246. {
  38247. name: "Normal",
  38248. height: math.unit(10 + 3/12, "feet"),
  38249. default: true
  38250. },
  38251. ]
  38252. ))
  38253. characterMakers.push(() => makeCharacter(
  38254. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38255. {
  38256. front: {
  38257. height: math.unit(58, "feet"),
  38258. weight: math.unit(200, "tons"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/uzarmazari/front.svg",
  38262. extra: 1575/1455,
  38263. bottom: 152/1727
  38264. }
  38265. },
  38266. back: {
  38267. height: math.unit(58, "feet"),
  38268. weight: math.unit(200, "tons"),
  38269. name: "Back",
  38270. image: {
  38271. source: "./media/characters/uzarmazari/back.svg",
  38272. extra: 1585/1510,
  38273. bottom: 157/1742
  38274. }
  38275. },
  38276. head: {
  38277. height: math.unit(26, "feet"),
  38278. name: "Head",
  38279. image: {
  38280. source: "./media/characters/uzarmazari/head.svg"
  38281. }
  38282. },
  38283. },
  38284. [
  38285. {
  38286. name: "Normal",
  38287. height: math.unit(58, "feet"),
  38288. default: true
  38289. },
  38290. ]
  38291. ))
  38292. characterMakers.push(() => makeCharacter(
  38293. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38294. {
  38295. side: {
  38296. height: math.unit(15, "feet"),
  38297. name: "Side",
  38298. image: {
  38299. source: "./media/characters/akitu/side.svg",
  38300. extra: 1421/1321,
  38301. bottom: 157/1578
  38302. }
  38303. },
  38304. front: {
  38305. height: math.unit(15, "feet"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/akitu/front.svg",
  38309. extra: 1435/1326,
  38310. bottom: 232/1667
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(15, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(10 + 8/12, "feet"),
  38327. name: "Front",
  38328. image: {
  38329. source: "./media/characters/azalie-croixland/front.svg",
  38330. extra: 1972/1856,
  38331. bottom: 31/2003
  38332. }
  38333. },
  38334. },
  38335. [
  38336. {
  38337. name: "Original Height",
  38338. height: math.unit(5 + 4/12, "feet")
  38339. },
  38340. {
  38341. name: "Normal Height",
  38342. height: math.unit(10 + 8/12, "feet"),
  38343. default: true
  38344. },
  38345. ]
  38346. ))
  38347. characterMakers.push(() => makeCharacter(
  38348. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38349. {
  38350. side: {
  38351. height: math.unit(7 + 1/12, "feet"),
  38352. weight: math.unit(245, "lb"),
  38353. name: "Side",
  38354. image: {
  38355. source: "./media/characters/kavus-kazian/side.svg",
  38356. extra: 349/342,
  38357. bottom: 15/364
  38358. }
  38359. },
  38360. },
  38361. [
  38362. {
  38363. name: "Normal",
  38364. height: math.unit(7 + 1/12, "feet"),
  38365. default: true
  38366. },
  38367. ]
  38368. ))
  38369. characterMakers.push(() => makeCharacter(
  38370. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38371. {
  38372. normalFront: {
  38373. height: math.unit(5 + 11/12, "feet"),
  38374. name: "Front",
  38375. image: {
  38376. source: "./media/characters/moonlight-rose/normal-front.svg",
  38377. extra: 1980/1825,
  38378. bottom: 18/1998
  38379. },
  38380. form: "normal",
  38381. default: true
  38382. },
  38383. normalBack: {
  38384. height: math.unit(5 + 11/12, "feet"),
  38385. name: "Back",
  38386. image: {
  38387. source: "./media/characters/moonlight-rose/normal-back.svg",
  38388. extra: 2010/1839,
  38389. bottom: 10/2020
  38390. },
  38391. form: "normal"
  38392. },
  38393. demonFront: {
  38394. height: math.unit(1.5, "earths"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/moonlight-rose/demon.svg",
  38398. extra: 1400/1294,
  38399. bottom: 45/1445
  38400. },
  38401. form: "demon",
  38402. default: true
  38403. },
  38404. terraFront: {
  38405. height: math.unit(1.5, "earths"),
  38406. name: "Front",
  38407. image: {
  38408. source: "./media/characters/moonlight-rose/terra.svg"
  38409. },
  38410. form: "terra",
  38411. default: true
  38412. },
  38413. jupiterFront: {
  38414. height: math.unit(69911*2, "km"),
  38415. name: "Front",
  38416. image: {
  38417. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38418. extra: 1367/1286,
  38419. bottom: 55/1422
  38420. },
  38421. form: "jupiter",
  38422. default: true
  38423. },
  38424. neptuneFront: {
  38425. height: math.unit(24622*2, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38429. extra: 1851/1712,
  38430. bottom: 0/1851
  38431. },
  38432. form: "neptune",
  38433. default: true
  38434. },
  38435. },
  38436. [
  38437. {
  38438. name: "\"Natural\" Height",
  38439. height: math.unit(5 + 11/12, "feet"),
  38440. form: "normal"
  38441. },
  38442. {
  38443. name: "Smallest comfortable size",
  38444. height: math.unit(40, "meters"),
  38445. form: "normal"
  38446. },
  38447. {
  38448. name: "Common size",
  38449. height: math.unit(50, "km"),
  38450. form: "normal",
  38451. default: true
  38452. },
  38453. {
  38454. name: "Normal",
  38455. height: math.unit(1.5, "earths"),
  38456. form: "demon",
  38457. default: true
  38458. },
  38459. {
  38460. name: "Universal",
  38461. height: math.unit(15, "universes"),
  38462. form: "demon"
  38463. },
  38464. {
  38465. name: "Earth",
  38466. height: math.unit(1.5, "earths"),
  38467. form: "terra",
  38468. default: true
  38469. },
  38470. {
  38471. name: "Super Earth",
  38472. height: math.unit(67.5, "earths"),
  38473. form: "terra"
  38474. },
  38475. {
  38476. name: "Doesn't fit in a solar system...",
  38477. height: math.unit(1, "galaxy"),
  38478. form: "terra"
  38479. },
  38480. {
  38481. name: "Saturn",
  38482. height: math.unit(58232*2, "km"),
  38483. form: "jupiter"
  38484. },
  38485. {
  38486. name: "Jupiter",
  38487. height: math.unit(69911*2, "km"),
  38488. form: "jupiter",
  38489. default: true
  38490. },
  38491. {
  38492. name: "HD 100546 b",
  38493. height: math.unit(482938, "km"),
  38494. form: "jupiter"
  38495. },
  38496. {
  38497. name: "Enceladus",
  38498. height: math.unit(513*2, "km"),
  38499. form: "neptune"
  38500. },
  38501. {
  38502. name: "Europe",
  38503. height: math.unit(1560*2, "km"),
  38504. form: "neptune"
  38505. },
  38506. {
  38507. name: "Neptune",
  38508. height: math.unit(24622*2, "km"),
  38509. form: "neptune",
  38510. default: true
  38511. },
  38512. {
  38513. name: "CoRoT-9b",
  38514. height: math.unit(75067*2, "km"),
  38515. form: "neptune"
  38516. },
  38517. ],
  38518. {
  38519. "normal": {
  38520. name: "Normal",
  38521. default: true
  38522. },
  38523. "demon": {
  38524. name: "Demon"
  38525. },
  38526. "terra": {
  38527. name: "Terra"
  38528. },
  38529. "jupiter": {
  38530. name: "Jupiter"
  38531. },
  38532. "neptune": {
  38533. name: "Neptune"
  38534. }
  38535. }
  38536. ))
  38537. characterMakers.push(() => makeCharacter(
  38538. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38539. {
  38540. front: {
  38541. height: math.unit(16, "feet"),
  38542. weight: math.unit(610, "kg"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/huckle/front.svg",
  38546. extra: 1731/1625,
  38547. bottom: 33/1764
  38548. }
  38549. },
  38550. back: {
  38551. height: math.unit(16, "feet"),
  38552. weight: math.unit(610, "kg"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/huckle/back.svg",
  38556. extra: 1738/1651,
  38557. bottom: 37/1775
  38558. }
  38559. },
  38560. laughing: {
  38561. height: math.unit(3.75, "feet"),
  38562. name: "Laughing",
  38563. image: {
  38564. source: "./media/characters/huckle/laughing.svg"
  38565. }
  38566. },
  38567. angry: {
  38568. height: math.unit(4.15, "feet"),
  38569. name: "Angry",
  38570. image: {
  38571. source: "./media/characters/huckle/angry.svg"
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(16, "feet"),
  38579. default: true
  38580. },
  38581. {
  38582. name: "Mini Macro",
  38583. height: math.unit(463, "feet")
  38584. },
  38585. {
  38586. name: "Macro",
  38587. height: math.unit(1680, "meters")
  38588. },
  38589. {
  38590. name: "Mega Macro",
  38591. height: math.unit(175, "km")
  38592. },
  38593. {
  38594. name: "Terra Macro",
  38595. height: math.unit(32, "gigameters")
  38596. },
  38597. {
  38598. name: "Multiverse+",
  38599. height: math.unit(2.56e23, "yottameters")
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(6 + 9/12, "feet"),
  38608. weight: math.unit(280, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/candy/front.svg",
  38612. extra: 234/217,
  38613. bottom: 11/245
  38614. }
  38615. },
  38616. },
  38617. [
  38618. {
  38619. name: "Really Small",
  38620. height: math.unit(0.1, "nm")
  38621. },
  38622. {
  38623. name: "Micro",
  38624. height: math.unit(2, "inches")
  38625. },
  38626. {
  38627. name: "Normal",
  38628. height: math.unit(6 + 9/12, "feet"),
  38629. default: true
  38630. },
  38631. {
  38632. name: "Small Macro",
  38633. height: math.unit(69, "feet")
  38634. },
  38635. {
  38636. name: "Macro",
  38637. height: math.unit(160, "feet")
  38638. },
  38639. {
  38640. name: "Megamacro",
  38641. height: math.unit(22000, "miles")
  38642. },
  38643. {
  38644. name: "Gigamacro",
  38645. height: math.unit(50000, "miles")
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(4, "feet"),
  38654. weight: math.unit(90, "lb"),
  38655. name: "Front",
  38656. image: {
  38657. source: "./media/characters/joey-mcdonald/front.svg",
  38658. extra: 1059/852,
  38659. bottom: 33/1092
  38660. }
  38661. },
  38662. back: {
  38663. height: math.unit(4, "feet"),
  38664. weight: math.unit(90, "lb"),
  38665. name: "Back",
  38666. image: {
  38667. source: "./media/characters/joey-mcdonald/back.svg",
  38668. extra: 1077/879,
  38669. bottom: 5/1082
  38670. }
  38671. },
  38672. frontKobold: {
  38673. height: math.unit(4, "feet"),
  38674. weight: math.unit(100, "lb"),
  38675. name: "Front (Kobold)",
  38676. image: {
  38677. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38678. extra: 1480/1367,
  38679. bottom: 0/1480
  38680. }
  38681. },
  38682. backKobold: {
  38683. height: math.unit(4, "feet"),
  38684. weight: math.unit(100, "lb"),
  38685. name: "Back (Kobold)",
  38686. image: {
  38687. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38688. extra: 1449/1361,
  38689. bottom: 0/1449
  38690. }
  38691. },
  38692. },
  38693. [
  38694. {
  38695. name: "Normal",
  38696. height: math.unit(4, "feet"),
  38697. default: true
  38698. },
  38699. ]
  38700. ))
  38701. characterMakers.push(() => makeCharacter(
  38702. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38703. {
  38704. front: {
  38705. height: math.unit(12 + 6/12, "feet"),
  38706. name: "Front",
  38707. image: {
  38708. source: "./media/characters/kass-lockheed/front.svg",
  38709. extra: 354/343,
  38710. bottom: 9/363
  38711. }
  38712. },
  38713. back: {
  38714. height: math.unit(12 + 6/12, "feet"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/kass-lockheed/back.svg",
  38718. extra: 364/352,
  38719. bottom: 3/367
  38720. }
  38721. },
  38722. dick: {
  38723. height: math.unit(3.12, "feet"),
  38724. name: "Dick",
  38725. image: {
  38726. source: "./media/characters/kass-lockheed/dick.svg"
  38727. }
  38728. },
  38729. head: {
  38730. height: math.unit(2.6, "feet"),
  38731. name: "Head",
  38732. image: {
  38733. source: "./media/characters/kass-lockheed/head.svg"
  38734. }
  38735. },
  38736. bleh: {
  38737. height: math.unit(2.85, "feet"),
  38738. name: "Bleh",
  38739. image: {
  38740. source: "./media/characters/kass-lockheed/bleh.svg"
  38741. }
  38742. },
  38743. smug: {
  38744. height: math.unit(2.85, "feet"),
  38745. name: "Smug",
  38746. image: {
  38747. source: "./media/characters/kass-lockheed/smug.svg"
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Normal",
  38754. height: math.unit(12 + 6/12, "feet"),
  38755. default: true
  38756. },
  38757. ]
  38758. ))
  38759. characterMakers.push(() => makeCharacter(
  38760. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38761. {
  38762. front: {
  38763. height: math.unit(6 + 2/12, "feet"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/taylor/front.svg",
  38767. extra: 639/495,
  38768. bottom: 12/651
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(6 + 2/12, "feet"),
  38776. default: true
  38777. },
  38778. {
  38779. name: "Big",
  38780. height: math.unit(15, "feet")
  38781. },
  38782. {
  38783. name: "Lorg",
  38784. height: math.unit(80, "feet")
  38785. },
  38786. {
  38787. name: "Too Lorg",
  38788. height: math.unit(120, "feet")
  38789. },
  38790. ]
  38791. ))
  38792. characterMakers.push(() => makeCharacter(
  38793. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38794. {
  38795. front: {
  38796. height: math.unit(15, "feet"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/kaizer/front.svg",
  38800. extra: 1612/1436,
  38801. bottom: 43/1655
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(15, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(2, "feet"),
  38818. weight: math.unit(30, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/sandy/front.svg",
  38822. extra: 1439/1307,
  38823. bottom: 194/1633
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(2, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(3, "feet"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/mellvi/front.svg",
  38843. extra: 1831/1630,
  38844. bottom: 58/1889
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(3, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(5 + 11/12, "feet"),
  38861. weight: math.unit(200, "lb"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/shirou/front.svg",
  38865. extra: 2491/2383,
  38866. bottom: 189/2680
  38867. }
  38868. },
  38869. back: {
  38870. height: math.unit(5 + 11/12, "feet"),
  38871. weight: math.unit(200, "lb"),
  38872. name: "Back",
  38873. image: {
  38874. source: "./media/characters/shirou/back.svg",
  38875. extra: 2554/2450,
  38876. bottom: 76/2630
  38877. }
  38878. },
  38879. },
  38880. [
  38881. {
  38882. name: "Normal",
  38883. height: math.unit(5 + 11/12, "feet"),
  38884. default: true
  38885. },
  38886. ]
  38887. ))
  38888. characterMakers.push(() => makeCharacter(
  38889. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38890. {
  38891. front: {
  38892. height: math.unit(6 + 3/12, "feet"),
  38893. weight: math.unit(177, "lb"),
  38894. name: "Front",
  38895. image: {
  38896. source: "./media/characters/noryu/front.svg",
  38897. extra: 973/885,
  38898. bottom: 10/983
  38899. }
  38900. },
  38901. },
  38902. [
  38903. {
  38904. name: "Normal",
  38905. height: math.unit(6 + 3/12, "feet"),
  38906. default: true
  38907. },
  38908. ]
  38909. ))
  38910. characterMakers.push(() => makeCharacter(
  38911. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38912. {
  38913. front: {
  38914. height: math.unit(5 + 6/12, "feet"),
  38915. weight: math.unit(170, "lb"),
  38916. name: "Front",
  38917. image: {
  38918. source: "./media/characters/mevolas-rubenido/front.svg",
  38919. extra: 2109/1901,
  38920. bottom: 96/2205
  38921. }
  38922. },
  38923. },
  38924. [
  38925. {
  38926. name: "Normal",
  38927. height: math.unit(5 + 6/12, "feet"),
  38928. default: true
  38929. },
  38930. ]
  38931. ))
  38932. characterMakers.push(() => makeCharacter(
  38933. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38934. {
  38935. front: {
  38936. height: math.unit(100, "feet"),
  38937. name: "Front",
  38938. image: {
  38939. source: "./media/characters/dee/front.svg",
  38940. extra: 2153/2036,
  38941. bottom: 59/2212
  38942. }
  38943. },
  38944. back: {
  38945. height: math.unit(100, "feet"),
  38946. name: "Back",
  38947. image: {
  38948. source: "./media/characters/dee/back.svg",
  38949. extra: 2183/2058,
  38950. bottom: 75/2258
  38951. }
  38952. },
  38953. foot: {
  38954. height: math.unit(19.43, "feet"),
  38955. name: "Foot",
  38956. image: {
  38957. source: "./media/characters/dee/foot.svg"
  38958. }
  38959. },
  38960. hoof: {
  38961. height: math.unit(20.6, "feet"),
  38962. name: "Hoof",
  38963. image: {
  38964. source: "./media/characters/dee/hoof.svg"
  38965. }
  38966. },
  38967. },
  38968. [
  38969. {
  38970. name: "Macro",
  38971. height: math.unit(100, "feet"),
  38972. default: true
  38973. },
  38974. ]
  38975. ))
  38976. characterMakers.push(() => makeCharacter(
  38977. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38978. {
  38979. front: {
  38980. height: math.unit(5 + 6/12, "feet"),
  38981. name: "Front",
  38982. image: {
  38983. source: "./media/characters/teh/front.svg",
  38984. extra: 1002/847,
  38985. bottom: 62/1064
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(5 + 6/12, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38999. {
  39000. side: {
  39001. height: math.unit(6 + 1/12, "feet"),
  39002. weight: math.unit(204, "lb"),
  39003. name: "Side",
  39004. image: {
  39005. source: "./media/characters/quicksilver-ayukoti/side.svg",
  39006. extra: 974/775,
  39007. bottom: 169/1143
  39008. }
  39009. },
  39010. sitting: {
  39011. height: math.unit(6 + 2/12, "feet"),
  39012. weight: math.unit(204, "lb"),
  39013. name: "Sitting",
  39014. image: {
  39015. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  39016. extra: 1175/964,
  39017. bottom: 378/1553
  39018. }
  39019. },
  39020. },
  39021. [
  39022. {
  39023. name: "Normal",
  39024. height: math.unit(6 + 1/12, "feet"),
  39025. default: true
  39026. },
  39027. ]
  39028. ))
  39029. characterMakers.push(() => makeCharacter(
  39030. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  39031. {
  39032. front: {
  39033. height: math.unit(6, "inches"),
  39034. name: "Front",
  39035. image: {
  39036. source: "./media/characters/tululi/front.svg",
  39037. extra: 1997/1876,
  39038. bottom: 20/2017
  39039. }
  39040. },
  39041. },
  39042. [
  39043. {
  39044. name: "Normal",
  39045. height: math.unit(6, "inches"),
  39046. default: true
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  39052. {
  39053. front: {
  39054. height: math.unit(4 + 1/12, "feet"),
  39055. name: "Front",
  39056. image: {
  39057. source: "./media/characters/star/front.svg",
  39058. extra: 1493/1189,
  39059. bottom: 48/1541
  39060. }
  39061. },
  39062. },
  39063. [
  39064. {
  39065. name: "Normal",
  39066. height: math.unit(4 + 1/12, "feet"),
  39067. default: true
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(6 + 3/12, "feet"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/comet/front.svg",
  39079. extra: 1681/1462,
  39080. bottom: 26/1707
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Normal",
  39087. height: math.unit(6 + 3/12, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(950, "feet"),
  39097. name: "Front",
  39098. image: {
  39099. source: "./media/characters/vortex/front.svg",
  39100. extra: 1497/1434,
  39101. bottom: 56/1553
  39102. }
  39103. },
  39104. maw: {
  39105. height: math.unit(285, "feet"),
  39106. name: "Maw",
  39107. image: {
  39108. source: "./media/characters/vortex/maw.svg"
  39109. }
  39110. },
  39111. },
  39112. [
  39113. {
  39114. name: "Macro",
  39115. height: math.unit(950, "feet"),
  39116. default: true
  39117. },
  39118. ]
  39119. ))
  39120. characterMakers.push(() => makeCharacter(
  39121. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39122. {
  39123. front: {
  39124. height: math.unit(600, "feet"),
  39125. weight: math.unit(0.02, "grams"),
  39126. name: "Front",
  39127. image: {
  39128. source: "./media/characters/doodle/front.svg",
  39129. extra: 1578/1413,
  39130. bottom: 37/1615
  39131. }
  39132. },
  39133. },
  39134. [
  39135. {
  39136. name: "Macro",
  39137. height: math.unit(600, "feet"),
  39138. default: true
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(6 + 6/12, "feet"),
  39147. name: "Front",
  39148. image: {
  39149. source: "./media/characters/jai/front.svg",
  39150. extra: 1645/1534,
  39151. bottom: 115/1760
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Normal",
  39158. height: math.unit(6 + 6/12, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(6 + 8/12, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/pixel/front.svg",
  39171. extra: 1900/1735,
  39172. bottom: 63/1963
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Normal",
  39179. height: math.unit(6 + 8/12, "feet"),
  39180. default: true
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39186. {
  39187. back: {
  39188. height: math.unit(4 + 1/12, "feet"),
  39189. weight: math.unit(75, "lb"),
  39190. name: "Back",
  39191. image: {
  39192. source: "./media/characters/rhett/back.svg",
  39193. extra: 930/878,
  39194. bottom: 25/955
  39195. }
  39196. },
  39197. front: {
  39198. height: math.unit(4 + 1/12, "feet"),
  39199. weight: math.unit(75, "lb"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/rhett/front.svg",
  39203. extra: 1682/1586,
  39204. bottom: 92/1774
  39205. }
  39206. },
  39207. },
  39208. [
  39209. {
  39210. name: "Micro",
  39211. height: math.unit(8, "inches")
  39212. },
  39213. {
  39214. name: "Tiny",
  39215. height: math.unit(2, "feet")
  39216. },
  39217. {
  39218. name: "Normal",
  39219. height: math.unit(4 + 1/12, "feet"),
  39220. default: true
  39221. },
  39222. ]
  39223. ))
  39224. characterMakers.push(() => makeCharacter(
  39225. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39226. {
  39227. front: {
  39228. height: math.unit(3 + 3/12, "feet"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/penny/front.svg",
  39232. extra: 1406/1311,
  39233. bottom: 26/1432
  39234. }
  39235. },
  39236. },
  39237. [
  39238. {
  39239. name: "Normal",
  39240. height: math.unit(3 + 3/12, "feet"),
  39241. default: true
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(4 + 11/12, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/monty/front.svg",
  39253. extra: 1479/1209,
  39254. bottom: 0/1479
  39255. }
  39256. },
  39257. },
  39258. [
  39259. {
  39260. name: "Normal",
  39261. height: math.unit(4 + 11/12, "feet"),
  39262. default: true
  39263. },
  39264. ]
  39265. ))
  39266. characterMakers.push(() => makeCharacter(
  39267. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39268. {
  39269. front: {
  39270. height: math.unit(8 + 4/12, "feet"),
  39271. name: "Front",
  39272. image: {
  39273. source: "./media/characters/sterling/front.svg",
  39274. extra: 1420/1236,
  39275. bottom: 27/1447
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(8 + 4/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(15, "feet"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/marble/front.svg",
  39295. extra: 973/937,
  39296. bottom: 32/1005
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(15, "feet"),
  39304. default: true
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39310. {
  39311. front: {
  39312. height: math.unit(3, "inches"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/powder/front.svg",
  39316. extra: 1504/1334,
  39317. bottom: 518/2022
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(3, "inches"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39331. {
  39332. front: {
  39333. height: math.unit(4 + 5/12, "feet"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/joey-raccoon/front.svg",
  39337. extra: 1273/1197,
  39338. bottom: 0/1273
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(4 + 5/12, "feet"),
  39346. default: true
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(8 + 4/12, "feet"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/vick/front.svg",
  39358. extra: 2187/2118,
  39359. bottom: 47/2234
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(8 + 4/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(5 + 5/12, "feet"),
  39376. name: "Front",
  39377. image: {
  39378. source: "./media/characters/mitsy/front.svg",
  39379. extra: 1842/1695,
  39380. bottom: 0/1842
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(5 + 5/12, "feet"),
  39388. default: true
  39389. },
  39390. ]
  39391. ))
  39392. characterMakers.push(() => makeCharacter(
  39393. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39394. {
  39395. front: {
  39396. height: math.unit(6 + 3/12, "feet"),
  39397. name: "Front",
  39398. image: {
  39399. source: "./media/characters/silvy/front.svg",
  39400. extra: 1995/1836,
  39401. bottom: 225/2220
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Normal",
  39408. height: math.unit(6 + 3/12, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(3 + 8/12, "feet"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/rodney/front.svg",
  39421. extra: 1956/1747,
  39422. bottom: 31/1987
  39423. }
  39424. },
  39425. frontDressed: {
  39426. height: math.unit(2.9, "feet"),
  39427. name: "Front (Dressed)",
  39428. image: {
  39429. source: "./media/characters/rodney/front-dressed.svg",
  39430. extra: 1382/1241,
  39431. bottom: 385/1767
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(3 + 8/12, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(5 + 9/12, "feet"),
  39448. weight: math.unit(194, "lbs"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/zakail-sudekai/front.svg",
  39452. extra: 2696/2533,
  39453. bottom: 248/2944
  39454. }
  39455. },
  39456. maw: {
  39457. height: math.unit(1.35, "feet"),
  39458. name: "Maw",
  39459. image: {
  39460. source: "./media/characters/zakail-sudekai/maw.svg"
  39461. }
  39462. },
  39463. },
  39464. [
  39465. {
  39466. name: "Normal",
  39467. height: math.unit(5 + 9/12, "feet"),
  39468. default: true
  39469. },
  39470. ]
  39471. ))
  39472. characterMakers.push(() => makeCharacter(
  39473. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39474. {
  39475. front: {
  39476. height: math.unit(8 + 4/12, "feet"),
  39477. weight: math.unit(1200, "lb"),
  39478. name: "Front",
  39479. image: {
  39480. source: "./media/characters/eleanor/front.svg",
  39481. extra: 1226/1192,
  39482. bottom: 52/1278
  39483. }
  39484. },
  39485. back: {
  39486. height: math.unit(8 + 4/12, "feet"),
  39487. weight: math.unit(1200, "lb"),
  39488. name: "Back",
  39489. image: {
  39490. source: "./media/characters/eleanor/back.svg",
  39491. extra: 1242/1184,
  39492. bottom: 60/1302
  39493. }
  39494. },
  39495. head: {
  39496. height: math.unit(2.62, "feet"),
  39497. name: "Head",
  39498. image: {
  39499. source: "./media/characters/eleanor/head.svg"
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Normal",
  39506. height: math.unit(8 + 4/12, "feet"),
  39507. default: true
  39508. },
  39509. ]
  39510. ))
  39511. characterMakers.push(() => makeCharacter(
  39512. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39513. {
  39514. front: {
  39515. height: math.unit(8 + 4/12, "feet"),
  39516. weight: math.unit(750, "lb"),
  39517. name: "Front",
  39518. image: {
  39519. source: "./media/characters/tanya/front.svg",
  39520. extra: 1749/1615,
  39521. bottom: 33/1782
  39522. }
  39523. },
  39524. },
  39525. [
  39526. {
  39527. name: "Normal",
  39528. height: math.unit(8 + 4/12, "feet"),
  39529. default: true
  39530. },
  39531. ]
  39532. ))
  39533. characterMakers.push(() => makeCharacter(
  39534. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39535. {
  39536. front: {
  39537. height: math.unit(5, "feet"),
  39538. weight: math.unit(225, "lb"),
  39539. name: "Front",
  39540. image: {
  39541. source: "./media/characters/cindy/front.svg",
  39542. extra: 1320/1250,
  39543. bottom: 42/1362
  39544. }
  39545. },
  39546. frontDressed: {
  39547. height: math.unit(5, "feet"),
  39548. weight: math.unit(225, "lb"),
  39549. name: "Front (Dressed)",
  39550. image: {
  39551. source: "./media/characters/cindy/front-dressed.svg",
  39552. extra: 1320/1250,
  39553. bottom: 42/1362
  39554. }
  39555. },
  39556. back: {
  39557. height: math.unit(5, "feet"),
  39558. weight: math.unit(225, "lb"),
  39559. name: "Back",
  39560. image: {
  39561. source: "./media/characters/cindy/back.svg",
  39562. extra: 1384/1346,
  39563. bottom: 14/1398
  39564. }
  39565. },
  39566. },
  39567. [
  39568. {
  39569. name: "Normal",
  39570. height: math.unit(5, "feet"),
  39571. default: true
  39572. },
  39573. ]
  39574. ))
  39575. characterMakers.push(() => makeCharacter(
  39576. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39577. {
  39578. front: {
  39579. height: math.unit(6 + 9/12, "feet"),
  39580. weight: math.unit(440, "lb"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/wilbur-owen/front.svg",
  39584. extra: 1575/1448,
  39585. bottom: 72/1647
  39586. }
  39587. },
  39588. back: {
  39589. height: math.unit(6 + 9/12, "feet"),
  39590. weight: math.unit(440, "lb"),
  39591. name: "Back",
  39592. image: {
  39593. source: "./media/characters/wilbur-owen/back.svg",
  39594. extra: 1578/1445,
  39595. bottom: 36/1614
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Normal",
  39602. height: math.unit(6 + 9/12, "feet"),
  39603. default: true
  39604. },
  39605. ]
  39606. ))
  39607. characterMakers.push(() => makeCharacter(
  39608. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39609. {
  39610. front: {
  39611. height: math.unit(6 + 5/12, "feet"),
  39612. weight: math.unit(650, "lb"),
  39613. name: "Front",
  39614. image: {
  39615. source: "./media/characters/keegan/front.svg",
  39616. extra: 2387/2198,
  39617. bottom: 33/2420
  39618. }
  39619. },
  39620. side: {
  39621. height: math.unit(6 + 5/12, "feet"),
  39622. weight: math.unit(650, "lb"),
  39623. name: "Side",
  39624. image: {
  39625. source: "./media/characters/keegan/side.svg",
  39626. extra: 2390/2202,
  39627. bottom: 47/2437
  39628. }
  39629. },
  39630. back: {
  39631. height: math.unit(6 + 5/12, "feet"),
  39632. weight: math.unit(650, "lb"),
  39633. name: "Back",
  39634. image: {
  39635. source: "./media/characters/keegan/back.svg",
  39636. extra: 2418/2268,
  39637. bottom: 15/2433
  39638. }
  39639. },
  39640. frontSfw: {
  39641. height: math.unit(6 + 5/12, "feet"),
  39642. weight: math.unit(650, "lb"),
  39643. name: "Front (SFW)",
  39644. image: {
  39645. source: "./media/characters/keegan/front-sfw.svg",
  39646. extra: 2387/2198,
  39647. bottom: 33/2420
  39648. }
  39649. },
  39650. beans: {
  39651. height: math.unit(1.85, "feet"),
  39652. name: "Beans",
  39653. image: {
  39654. source: "./media/characters/keegan/beans.svg"
  39655. }
  39656. },
  39657. },
  39658. [
  39659. {
  39660. name: "Normal",
  39661. height: math.unit(6 + 5/12, "feet"),
  39662. default: true
  39663. },
  39664. ]
  39665. ))
  39666. characterMakers.push(() => makeCharacter(
  39667. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39668. {
  39669. front: {
  39670. height: math.unit(9, "feet"),
  39671. name: "Front",
  39672. image: {
  39673. source: "./media/characters/colton/front.svg",
  39674. extra: 1589/1326,
  39675. bottom: 139/1728
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(9, "feet"),
  39683. default: true
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(2 + 9/12, "feet"),
  39692. name: "Front",
  39693. image: {
  39694. source: "./media/characters/bora/front.svg",
  39695. extra: 1265/1250,
  39696. bottom: 24/1289
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(2 + 9/12, "feet"),
  39704. default: true
  39705. },
  39706. ]
  39707. ))
  39708. characterMakers.push(() => makeCharacter(
  39709. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39710. {
  39711. front: {
  39712. height: math.unit(8, "feet"),
  39713. name: "Front",
  39714. image: {
  39715. source: "./media/characters/myu-myu/front.svg",
  39716. extra: 1949/1857,
  39717. bottom: 90/2039
  39718. }
  39719. },
  39720. },
  39721. [
  39722. {
  39723. name: "Normal",
  39724. height: math.unit(8, "feet"),
  39725. default: true
  39726. },
  39727. {
  39728. name: "Big",
  39729. height: math.unit(15, "feet")
  39730. },
  39731. {
  39732. name: "BIG",
  39733. height: math.unit(25, "feet")
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39739. {
  39740. side: {
  39741. height: math.unit(7 + 5/12, "feet"),
  39742. weight: math.unit(2800, "lb"),
  39743. name: "Side",
  39744. image: {
  39745. source: "./media/characters/haloren/side.svg",
  39746. extra: 1793/409,
  39747. bottom: 59/1852
  39748. }
  39749. },
  39750. frontPaw: {
  39751. height: math.unit(2.36, "feet"),
  39752. name: "Front paw",
  39753. image: {
  39754. source: "./media/characters/haloren/front-paw.svg"
  39755. }
  39756. },
  39757. hindPaw: {
  39758. height: math.unit(3.18, "feet"),
  39759. name: "Hind paw",
  39760. image: {
  39761. source: "./media/characters/haloren/hind-paw.svg"
  39762. }
  39763. },
  39764. maw: {
  39765. height: math.unit(5.05, "feet"),
  39766. name: "Maw",
  39767. image: {
  39768. source: "./media/characters/haloren/maw.svg"
  39769. }
  39770. },
  39771. dick: {
  39772. height: math.unit(2.90, "feet"),
  39773. name: "Dick",
  39774. image: {
  39775. source: "./media/characters/haloren/dick.svg"
  39776. }
  39777. },
  39778. },
  39779. [
  39780. {
  39781. name: "Normal",
  39782. height: math.unit(7 + 5/12, "feet"),
  39783. default: true
  39784. },
  39785. {
  39786. name: "Enhanced",
  39787. height: math.unit(14 + 3/12, "feet")
  39788. },
  39789. ]
  39790. ))
  39791. characterMakers.push(() => makeCharacter(
  39792. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39793. {
  39794. front: {
  39795. height: math.unit(171, "cm"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/kimmy/front.svg",
  39799. extra: 1491/1435,
  39800. bottom: 53/1544
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Small",
  39807. height: math.unit(9, "cm")
  39808. },
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(171, "cm"),
  39812. default: true
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(8, "feet"),
  39821. weight: math.unit(300, "lb"),
  39822. name: "Front",
  39823. image: {
  39824. source: "./media/characters/galeboomer/front.svg",
  39825. extra: 4651/4415,
  39826. bottom: 162/4813
  39827. }
  39828. },
  39829. back: {
  39830. height: math.unit(8, "feet"),
  39831. weight: math.unit(300, "lb"),
  39832. name: "Back",
  39833. image: {
  39834. source: "./media/characters/galeboomer/back.svg",
  39835. extra: 4544/4314,
  39836. bottom: 16/4560
  39837. }
  39838. },
  39839. frontAlt: {
  39840. height: math.unit(8, "feet"),
  39841. weight: math.unit(300, "lb"),
  39842. name: "Front (Alt)",
  39843. image: {
  39844. source: "./media/characters/galeboomer/front-alt.svg",
  39845. extra: 4458/4228,
  39846. bottom: 68/4526
  39847. }
  39848. },
  39849. maw: {
  39850. height: math.unit(1.2, "feet"),
  39851. name: "Maw",
  39852. image: {
  39853. source: "./media/characters/galeboomer/maw.svg"
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(8, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(5 + 9/12, "feet"),
  39870. weight: math.unit(120, "lb"),
  39871. name: "Front",
  39872. image: {
  39873. source: "./media/characters/chyr/front.svg",
  39874. extra: 1323/1254,
  39875. bottom: 63/1386
  39876. }
  39877. },
  39878. back: {
  39879. height: math.unit(5 + 9/12, "feet"),
  39880. weight: math.unit(120, "lb"),
  39881. name: "Back",
  39882. image: {
  39883. source: "./media/characters/chyr/back.svg",
  39884. extra: 1323/1252,
  39885. bottom: 48/1371
  39886. }
  39887. },
  39888. },
  39889. [
  39890. {
  39891. name: "Normal",
  39892. height: math.unit(5 + 9/12, "feet"),
  39893. default: true
  39894. },
  39895. ]
  39896. ))
  39897. characterMakers.push(() => makeCharacter(
  39898. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39899. {
  39900. front: {
  39901. height: math.unit(7, "feet"),
  39902. weight: math.unit(310, "lb"),
  39903. name: "Front",
  39904. image: {
  39905. source: "./media/characters/solarus/front.svg",
  39906. extra: 2415/2021,
  39907. bottom: 103/2518
  39908. }
  39909. },
  39910. back: {
  39911. height: math.unit(7, "feet"),
  39912. weight: math.unit(310, "lb"),
  39913. name: "Back",
  39914. image: {
  39915. source: "./media/characters/solarus/back.svg",
  39916. extra: 2463/2089,
  39917. bottom: 79/2542
  39918. }
  39919. },
  39920. },
  39921. [
  39922. {
  39923. name: "Normal",
  39924. height: math.unit(7, "feet"),
  39925. default: true
  39926. },
  39927. ]
  39928. ))
  39929. characterMakers.push(() => makeCharacter(
  39930. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39931. {
  39932. front: {
  39933. height: math.unit(16, "feet"),
  39934. name: "Front",
  39935. image: {
  39936. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39937. extra: 1844/1780,
  39938. bottom: 58/1902
  39939. }
  39940. },
  39941. winterCoat: {
  39942. height: math.unit(16, "feet"),
  39943. name: "Winter Coat",
  39944. image: {
  39945. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39946. extra: 1807/1775,
  39947. bottom: 69/1876
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "Normal",
  39954. height: math.unit(16, "feet"),
  39955. default: true
  39956. },
  39957. {
  39958. name: "Chicago Size",
  39959. height: math.unit(560, "feet")
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(11 + 6/12, "feet"),
  39968. weight: math.unit(1366, "lb"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/lexor/front.svg",
  39972. extra: 1560/1481,
  39973. bottom: 211/1771
  39974. }
  39975. },
  39976. back: {
  39977. height: math.unit(11 + 6/12, "feet"),
  39978. weight: math.unit(1366, "lb"),
  39979. name: "Back",
  39980. image: {
  39981. source: "./media/characters/lexor/back.svg",
  39982. extra: 1614/1533,
  39983. bottom: 76/1690
  39984. }
  39985. },
  39986. maw: {
  39987. height: math.unit(3, "feet"),
  39988. name: "Maw",
  39989. image: {
  39990. source: "./media/characters/lexor/maw.svg"
  39991. }
  39992. },
  39993. dick: {
  39994. height: math.unit(2.59, "feet"),
  39995. name: "Dick",
  39996. image: {
  39997. source: "./media/characters/lexor/dick.svg"
  39998. }
  39999. },
  40000. },
  40001. [
  40002. {
  40003. name: "Normal",
  40004. height: math.unit(11 + 6/12, "feet"),
  40005. default: true
  40006. },
  40007. ]
  40008. ))
  40009. characterMakers.push(() => makeCharacter(
  40010. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  40011. {
  40012. front: {
  40013. height: math.unit(5 + 8/12, "feet"),
  40014. name: "Front",
  40015. image: {
  40016. source: "./media/characters/magnum/front.svg",
  40017. extra: 942/855,
  40018. bottom: 26/968
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Normal",
  40025. height: math.unit(5 + 8/12, "feet"),
  40026. default: true
  40027. },
  40028. ]
  40029. ))
  40030. characterMakers.push(() => makeCharacter(
  40031. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  40032. {
  40033. front: {
  40034. height: math.unit(18 + 4/12, "feet"),
  40035. weight: math.unit(1500, "kg"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/solas-sharpsman/front.svg",
  40039. extra: 1698/1589,
  40040. bottom: 0/1698
  40041. }
  40042. },
  40043. },
  40044. [
  40045. {
  40046. name: "Normal",
  40047. height: math.unit(18 + 4/12, "feet"),
  40048. default: true
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "October", species: ["tiger"], tags: ["anthro"] },
  40054. {
  40055. front: {
  40056. height: math.unit(5 + 5/12, "feet"),
  40057. weight: math.unit(180, "lb"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/october/front.svg",
  40061. extra: 1800/1650,
  40062. bottom: 0/1800
  40063. }
  40064. },
  40065. frontNsfw: {
  40066. height: math.unit(5 + 5/12, "feet"),
  40067. weight: math.unit(180, "lb"),
  40068. name: "Front (NSFW)",
  40069. image: {
  40070. source: "./media/characters/october/front-nsfw.svg",
  40071. extra: 1392/1307,
  40072. bottom: 42/1434
  40073. }
  40074. },
  40075. },
  40076. [
  40077. {
  40078. name: "Normal",
  40079. height: math.unit(5 + 5/12, "feet"),
  40080. default: true
  40081. },
  40082. ]
  40083. ))
  40084. characterMakers.push(() => makeCharacter(
  40085. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40086. {
  40087. front: {
  40088. height: math.unit(8 + 6/12, "feet"),
  40089. name: "Front",
  40090. image: {
  40091. source: "./media/characters/essynkardi/front.svg",
  40092. extra: 1541/1457,
  40093. bottom: 47/1588
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(8 + 6/12, "feet"),
  40101. default: true
  40102. },
  40103. ]
  40104. ))
  40105. characterMakers.push(() => makeCharacter(
  40106. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40107. {
  40108. front: {
  40109. height: math.unit(6 + 6/12, "feet"),
  40110. weight: math.unit(7, "lb"),
  40111. name: "Front",
  40112. image: {
  40113. source: "./media/characters/icky/front.svg",
  40114. extra: 813/782,
  40115. bottom: 66/879
  40116. }
  40117. },
  40118. back: {
  40119. height: math.unit(6 + 6/12, "feet"),
  40120. weight: math.unit(7, "lb"),
  40121. name: "Back",
  40122. image: {
  40123. source: "./media/characters/icky/back.svg",
  40124. extra: 754/735,
  40125. bottom: 56/810
  40126. }
  40127. },
  40128. },
  40129. [
  40130. {
  40131. name: "Normal",
  40132. height: math.unit(6 + 6/12, "feet"),
  40133. default: true
  40134. },
  40135. ]
  40136. ))
  40137. characterMakers.push(() => makeCharacter(
  40138. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40139. {
  40140. front: {
  40141. height: math.unit(15, "feet"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/rojas/front.svg",
  40145. extra: 1462/1408,
  40146. bottom: 95/1557
  40147. }
  40148. },
  40149. back: {
  40150. height: math.unit(15, "feet"),
  40151. name: "Back",
  40152. image: {
  40153. source: "./media/characters/rojas/back.svg",
  40154. extra: 1023/954,
  40155. bottom: 28/1051
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Normal",
  40162. height: math.unit(15, "feet"),
  40163. default: true
  40164. },
  40165. ]
  40166. ))
  40167. characterMakers.push(() => makeCharacter(
  40168. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40169. {
  40170. frontHuman: {
  40171. height: math.unit(5 + 7/12, "feet"),
  40172. name: "Front (Human)",
  40173. image: {
  40174. source: "./media/characters/alek-dryagan/front-human.svg",
  40175. extra: 1687/1667,
  40176. bottom: 69/1756
  40177. }
  40178. },
  40179. backHuman: {
  40180. height: math.unit(5 + 7/12, "feet"),
  40181. name: "Back (Human)",
  40182. image: {
  40183. source: "./media/characters/alek-dryagan/back-human.svg",
  40184. extra: 1670/1649,
  40185. bottom: 65/1735
  40186. }
  40187. },
  40188. frontDemi: {
  40189. height: math.unit(65, "feet"),
  40190. name: "Front (Demi)",
  40191. image: {
  40192. source: "./media/characters/alek-dryagan/front-demi.svg",
  40193. extra: 1669/1642,
  40194. bottom: 49/1718
  40195. }
  40196. },
  40197. backDemi: {
  40198. height: math.unit(65, "feet"),
  40199. name: "Back (Demi)",
  40200. image: {
  40201. source: "./media/characters/alek-dryagan/back-demi.svg",
  40202. extra: 1658/1637,
  40203. bottom: 40/1698
  40204. }
  40205. },
  40206. mawHuman: {
  40207. height: math.unit(0.3, "feet"),
  40208. name: "Maw (Human)",
  40209. image: {
  40210. source: "./media/characters/alek-dryagan/maw-human.svg"
  40211. }
  40212. },
  40213. mawDemi: {
  40214. height: math.unit(3.8, "feet"),
  40215. name: "Maw (Demi)",
  40216. image: {
  40217. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40218. }
  40219. },
  40220. },
  40221. [
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(5 + 7/12, "feet"),
  40225. default: true
  40226. },
  40227. ]
  40228. ))
  40229. characterMakers.push(() => makeCharacter(
  40230. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40231. {
  40232. frontHuman: {
  40233. height: math.unit(5 + 2/12, "feet"),
  40234. name: "Front (Human)",
  40235. image: {
  40236. source: "./media/characters/gen/front-human.svg",
  40237. extra: 1627/1538,
  40238. bottom: 71/1698
  40239. }
  40240. },
  40241. backHuman: {
  40242. height: math.unit(5 + 2/12, "feet"),
  40243. name: "Back (Human)",
  40244. image: {
  40245. source: "./media/characters/gen/back-human.svg",
  40246. extra: 1638/1548,
  40247. bottom: 69/1707
  40248. }
  40249. },
  40250. frontDemi: {
  40251. height: math.unit(5 + 2/12, "feet"),
  40252. name: "Front (Demi)",
  40253. image: {
  40254. source: "./media/characters/gen/front-demi.svg",
  40255. extra: 1627/1538,
  40256. bottom: 71/1698
  40257. }
  40258. },
  40259. backDemi: {
  40260. height: math.unit(5 + 2/12, "feet"),
  40261. name: "Back (Demi)",
  40262. image: {
  40263. source: "./media/characters/gen/back-demi.svg",
  40264. extra: 1638/1548,
  40265. bottom: 69/1707
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(5 + 2/12, "feet"),
  40273. default: true
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40279. {
  40280. frontImp: {
  40281. height: math.unit(1 + 11/12, "feet"),
  40282. name: "Front (Imp)",
  40283. image: {
  40284. source: "./media/characters/max-kobold/front-imp.svg",
  40285. extra: 1238/1134,
  40286. bottom: 81/1319
  40287. }
  40288. },
  40289. backImp: {
  40290. height: math.unit(1 + 11/12, "feet"),
  40291. name: "Back (Imp)",
  40292. image: {
  40293. source: "./media/characters/max-kobold/back-imp.svg",
  40294. extra: 1334/1175,
  40295. bottom: 34/1368
  40296. }
  40297. },
  40298. frontDemi: {
  40299. height: math.unit(5 + 9/12, "feet"),
  40300. name: "Front (Demi)",
  40301. image: {
  40302. source: "./media/characters/max-kobold/front-demi.svg",
  40303. extra: 1715/1685,
  40304. bottom: 54/1769
  40305. }
  40306. },
  40307. backDemi: {
  40308. height: math.unit(5 + 9/12, "feet"),
  40309. name: "Back (Demi)",
  40310. image: {
  40311. source: "./media/characters/max-kobold/back-demi.svg",
  40312. extra: 1752/1729,
  40313. bottom: 41/1793
  40314. }
  40315. },
  40316. handImp: {
  40317. height: math.unit(0.45, "feet"),
  40318. name: "Hand (Imp)",
  40319. image: {
  40320. source: "./media/characters/max-kobold/hand.svg"
  40321. }
  40322. },
  40323. pawImp: {
  40324. height: math.unit(0.46, "feet"),
  40325. name: "Paw (Imp)",
  40326. image: {
  40327. source: "./media/characters/max-kobold/paw.svg"
  40328. }
  40329. },
  40330. handDemi: {
  40331. height: math.unit(0.80, "feet"),
  40332. name: "Hand (Demi)",
  40333. image: {
  40334. source: "./media/characters/max-kobold/hand.svg"
  40335. }
  40336. },
  40337. pawDemi: {
  40338. height: math.unit(1.1, "feet"),
  40339. name: "Paw (Demi)",
  40340. image: {
  40341. source: "./media/characters/max-kobold/paw.svg"
  40342. }
  40343. },
  40344. headImp: {
  40345. height: math.unit(1.33, "feet"),
  40346. name: "Head (Imp)",
  40347. image: {
  40348. source: "./media/characters/max-kobold/head-imp.svg"
  40349. }
  40350. },
  40351. mawImp: {
  40352. height: math.unit(0.75, "feet"),
  40353. name: "Maw (Imp)",
  40354. image: {
  40355. source: "./media/characters/max-kobold/maw-imp.svg"
  40356. }
  40357. },
  40358. mawDemi: {
  40359. height: math.unit(0.42, "feet"),
  40360. name: "Maw (Demi)",
  40361. image: {
  40362. source: "./media/characters/max-kobold/maw-demi.svg"
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Normal",
  40369. height: math.unit(1 + 11/12, "feet"),
  40370. default: true
  40371. },
  40372. ]
  40373. ))
  40374. characterMakers.push(() => makeCharacter(
  40375. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40376. {
  40377. front: {
  40378. height: math.unit(7 + 5/12, "feet"),
  40379. name: "Front",
  40380. image: {
  40381. source: "./media/characters/carbon/front.svg",
  40382. extra: 1754/1689,
  40383. bottom: 65/1819
  40384. }
  40385. },
  40386. back: {
  40387. height: math.unit(7 + 5/12, "feet"),
  40388. name: "Back",
  40389. image: {
  40390. source: "./media/characters/carbon/back.svg",
  40391. extra: 1762/1695,
  40392. bottom: 24/1786
  40393. }
  40394. },
  40395. frontGigantamax: {
  40396. height: math.unit(150, "feet"),
  40397. name: "Front (Gigantamax)",
  40398. image: {
  40399. source: "./media/characters/carbon/front-gigantamax.svg",
  40400. extra: 1826/1669,
  40401. bottom: 59/1885
  40402. }
  40403. },
  40404. backGigantamax: {
  40405. height: math.unit(150, "feet"),
  40406. name: "Back (Gigantamax)",
  40407. image: {
  40408. source: "./media/characters/carbon/back-gigantamax.svg",
  40409. extra: 1796/1653,
  40410. bottom: 53/1849
  40411. }
  40412. },
  40413. maw: {
  40414. height: math.unit(0.48, "feet"),
  40415. name: "Maw",
  40416. image: {
  40417. source: "./media/characters/carbon/maw.svg"
  40418. }
  40419. },
  40420. mawGigantamax: {
  40421. height: math.unit(7.5, "feet"),
  40422. name: "Maw (Gigantamax)",
  40423. image: {
  40424. source: "./media/characters/carbon/maw-gigantamax.svg"
  40425. }
  40426. },
  40427. },
  40428. [
  40429. {
  40430. name: "Normal",
  40431. height: math.unit(7 + 5/12, "feet"),
  40432. default: true
  40433. },
  40434. ]
  40435. ))
  40436. characterMakers.push(() => makeCharacter(
  40437. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40438. {
  40439. front: {
  40440. height: math.unit(6, "feet"),
  40441. name: "Front",
  40442. image: {
  40443. source: "./media/characters/maverick/front.svg",
  40444. extra: 1672/1661,
  40445. bottom: 85/1757
  40446. }
  40447. },
  40448. back: {
  40449. height: math.unit(6, "feet"),
  40450. name: "Back",
  40451. image: {
  40452. source: "./media/characters/maverick/back.svg",
  40453. extra: 1642/1631,
  40454. bottom: 38/1680
  40455. }
  40456. },
  40457. },
  40458. [
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(6, "feet"),
  40462. default: true
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(15, "feet"),
  40471. weight: math.unit(615, "lb"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/grockle/front.svg",
  40475. extra: 1535/1427,
  40476. bottom: 56/1591
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(15, "feet"),
  40484. default: true
  40485. },
  40486. {
  40487. name: "Large",
  40488. height: math.unit(150, "feet")
  40489. },
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(1876, "feet")
  40493. },
  40494. {
  40495. name: "Mega Macro",
  40496. height: math.unit(121940, "feet")
  40497. },
  40498. {
  40499. name: "Giga Macro",
  40500. height: math.unit(750, "km")
  40501. },
  40502. {
  40503. name: "Tera Macro",
  40504. height: math.unit(750000, "km")
  40505. },
  40506. {
  40507. name: "Galactic",
  40508. height: math.unit(1.4e5, "km")
  40509. },
  40510. {
  40511. name: "Godlike",
  40512. height: math.unit(9.8e280, "galaxies")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(11, "meters"),
  40521. weight: math.unit(20, "tonnes"),
  40522. name: "Front",
  40523. image: {
  40524. source: "./media/characters/alistair/front.svg",
  40525. extra: 1265/1009,
  40526. bottom: 93/1358
  40527. }
  40528. },
  40529. },
  40530. [
  40531. {
  40532. name: "Normal",
  40533. height: math.unit(11, "meters"),
  40534. default: true
  40535. },
  40536. ]
  40537. ))
  40538. characterMakers.push(() => makeCharacter(
  40539. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40540. {
  40541. front: {
  40542. height: math.unit(5 + 8/12, "feet"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/haruka/front.svg",
  40546. extra: 2012/1952,
  40547. bottom: 0/2012
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(5 + 8/12, "feet"),
  40555. default: true
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40561. {
  40562. back: {
  40563. height: math.unit(9, "feet"),
  40564. name: "Back",
  40565. image: {
  40566. source: "./media/characters/vivian-sylveon/back.svg",
  40567. extra: 1853/1714,
  40568. bottom: 0/1853
  40569. }
  40570. },
  40571. hyper: {
  40572. height: math.unit(5.58, "feet"),
  40573. name: "Hyper",
  40574. preyCapacity: math.unit(2.80616218797, "m^3"),
  40575. image: {
  40576. source: "./media/characters/vivian-sylveon/hyper.svg",
  40577. extra: 999/676,
  40578. bottom: 697/1696
  40579. },
  40580. },
  40581. paw: {
  40582. height: math.unit(1.8, "feet"),
  40583. name: "Paw",
  40584. image: {
  40585. source: "./media/characters/vivian-sylveon/paw.svg"
  40586. }
  40587. },
  40588. danger: {
  40589. height: math.unit(7.5, "feet"),
  40590. name: "DANGER",
  40591. image: {
  40592. source: "./media/characters/vivian-sylveon/danger.svg"
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Normal",
  40599. height: math.unit(9, "feet"),
  40600. default: true
  40601. },
  40602. {
  40603. name: "Macro",
  40604. height: math.unit(500, "feet")
  40605. },
  40606. {
  40607. name: "Megamacro",
  40608. height: math.unit(600, "miles")
  40609. },
  40610. {
  40611. name: "Gigamacro",
  40612. height: math.unit(30000, "miles")
  40613. },
  40614. ]
  40615. ))
  40616. characterMakers.push(() => makeCharacter(
  40617. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40618. {
  40619. anthro: {
  40620. height: math.unit(5 + 10/12, "feet"),
  40621. weight: math.unit(100, "lb"),
  40622. name: "Anthro",
  40623. image: {
  40624. source: "./media/characters/daiki/anthro.svg",
  40625. extra: 1115/1027,
  40626. bottom: 69/1184
  40627. }
  40628. },
  40629. feral: {
  40630. height: math.unit(200, "feet"),
  40631. name: "Feral",
  40632. image: {
  40633. source: "./media/characters/daiki/feral.svg",
  40634. extra: 1256/313,
  40635. bottom: 39/1295
  40636. }
  40637. },
  40638. feralHead: {
  40639. height: math.unit(171, "feet"),
  40640. name: "Feral Head",
  40641. image: {
  40642. source: "./media/characters/daiki/feral-head.svg"
  40643. }
  40644. },
  40645. manaDragon: {
  40646. height: math.unit(170, "meters"),
  40647. name: "Mana Dragon",
  40648. image: {
  40649. source: "./media/characters/daiki/mana-dragon.svg",
  40650. extra: 763/420,
  40651. bottom: 97/860
  40652. }
  40653. },
  40654. },
  40655. [
  40656. {
  40657. name: "Normal",
  40658. height: math.unit(5 + 10/12, "feet"),
  40659. default: true
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40665. {
  40666. fullyEquippedFront: {
  40667. height: math.unit(3 + 1/12, "feet"),
  40668. weight: math.unit(24, "lb"),
  40669. name: "Fully Equipped (Front)",
  40670. image: {
  40671. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40672. extra: 687/605,
  40673. bottom: 18/705
  40674. }
  40675. },
  40676. fullyEquippedBack: {
  40677. height: math.unit(3 + 1/12, "feet"),
  40678. weight: math.unit(24, "lb"),
  40679. name: "Fully Equipped (Back)",
  40680. image: {
  40681. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40682. extra: 689/590,
  40683. bottom: 18/707
  40684. }
  40685. },
  40686. dailyWear: {
  40687. height: math.unit(3 + 1/12, "feet"),
  40688. weight: math.unit(24, "lb"),
  40689. name: "Daily Wear",
  40690. image: {
  40691. source: "./media/characters/tea-spot/daily-wear.svg",
  40692. extra: 701/620,
  40693. bottom: 21/722
  40694. }
  40695. },
  40696. maidWork: {
  40697. height: math.unit(3 + 1/12, "feet"),
  40698. weight: math.unit(24, "lb"),
  40699. name: "Maid Work",
  40700. image: {
  40701. source: "./media/characters/tea-spot/maid-work.svg",
  40702. extra: 693/609,
  40703. bottom: 15/708
  40704. }
  40705. },
  40706. },
  40707. [
  40708. {
  40709. name: "Normal",
  40710. height: math.unit(3 + 1/12, "feet"),
  40711. default: true
  40712. },
  40713. ]
  40714. ))
  40715. characterMakers.push(() => makeCharacter(
  40716. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40717. {
  40718. front: {
  40719. height: math.unit(175, "cm"),
  40720. weight: math.unit(75, "kg"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/chee/front.svg",
  40724. extra: 1796/1740,
  40725. bottom: 40/1836
  40726. }
  40727. },
  40728. },
  40729. [
  40730. {
  40731. name: "Micro-Micro",
  40732. height: math.unit(1, "nm")
  40733. },
  40734. {
  40735. name: "Micro-erst",
  40736. height: math.unit(1, "micrometer")
  40737. },
  40738. {
  40739. name: "Micro-er",
  40740. height: math.unit(1, "cm")
  40741. },
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(175, "cm"),
  40745. default: true
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(100, "m")
  40750. },
  40751. {
  40752. name: "Macro-er",
  40753. height: math.unit(1, "km")
  40754. },
  40755. {
  40756. name: "Macro-erst",
  40757. height: math.unit(10, "km")
  40758. },
  40759. {
  40760. name: "Macro-Macro",
  40761. height: math.unit(100, "km")
  40762. },
  40763. ]
  40764. ))
  40765. characterMakers.push(() => makeCharacter(
  40766. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40767. {
  40768. front: {
  40769. height: math.unit(11 + 9/12, "feet"),
  40770. weight: math.unit(935, "lb"),
  40771. name: "Front",
  40772. image: {
  40773. source: "./media/characters/kingsley/front.svg",
  40774. extra: 1803/1674,
  40775. bottom: 127/1930
  40776. }
  40777. },
  40778. frontNude: {
  40779. height: math.unit(11 + 9/12, "feet"),
  40780. weight: math.unit(935, "lb"),
  40781. name: "Front (Nude)",
  40782. image: {
  40783. source: "./media/characters/kingsley/front-nude.svg",
  40784. extra: 1803/1674,
  40785. bottom: 127/1930
  40786. }
  40787. },
  40788. },
  40789. [
  40790. {
  40791. name: "Normal",
  40792. height: math.unit(11 + 9/12, "feet"),
  40793. default: true
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40799. {
  40800. side: {
  40801. height: math.unit(9, "feet"),
  40802. name: "Side",
  40803. image: {
  40804. source: "./media/characters/rymel/side.svg",
  40805. extra: 792/469,
  40806. bottom: 121/913
  40807. }
  40808. },
  40809. maw: {
  40810. height: math.unit(2.4, "meters"),
  40811. name: "Maw",
  40812. image: {
  40813. source: "./media/characters/rymel/maw.svg"
  40814. }
  40815. },
  40816. },
  40817. [
  40818. {
  40819. name: "House Drake",
  40820. height: math.unit(2, "feet")
  40821. },
  40822. {
  40823. name: "Reduced",
  40824. height: math.unit(4.5, "feet")
  40825. },
  40826. {
  40827. name: "Normal",
  40828. height: math.unit(9, "feet"),
  40829. default: true
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40835. {
  40836. front: {
  40837. height: math.unit(1.74, "meters"),
  40838. weight: math.unit(55, "kg"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/rubus/front.svg",
  40842. extra: 1894/1742,
  40843. bottom: 44/1938
  40844. }
  40845. },
  40846. },
  40847. [
  40848. {
  40849. name: "Normal",
  40850. height: math.unit(1.74, "meters"),
  40851. default: true
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(5 + 2/12, "feet"),
  40860. weight: math.unit(112, "lb"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/cassie-kingston/front.svg",
  40864. extra: 1438/1390,
  40865. bottom: 47/1485
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(5 + 2/12, "feet"),
  40873. default: true
  40874. },
  40875. {
  40876. name: "Macro",
  40877. height: math.unit(128, "feet")
  40878. },
  40879. {
  40880. name: "Megamacro",
  40881. height: math.unit(2.56, "miles")
  40882. },
  40883. ]
  40884. ))
  40885. characterMakers.push(() => makeCharacter(
  40886. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40887. {
  40888. front: {
  40889. height: math.unit(7, "feet"),
  40890. name: "Front",
  40891. image: {
  40892. source: "./media/characters/fox/front.svg",
  40893. extra: 1798/1703,
  40894. bottom: 55/1853
  40895. }
  40896. },
  40897. back: {
  40898. height: math.unit(7, "feet"),
  40899. name: "Back",
  40900. image: {
  40901. source: "./media/characters/fox/back.svg",
  40902. extra: 1748/1649,
  40903. bottom: 32/1780
  40904. }
  40905. },
  40906. head: {
  40907. height: math.unit(1.95, "feet"),
  40908. name: "Head",
  40909. image: {
  40910. source: "./media/characters/fox/head.svg"
  40911. }
  40912. },
  40913. dick: {
  40914. height: math.unit(1.33, "feet"),
  40915. name: "Dick",
  40916. image: {
  40917. source: "./media/characters/fox/dick.svg"
  40918. }
  40919. },
  40920. foot: {
  40921. height: math.unit(1, "feet"),
  40922. name: "Foot",
  40923. image: {
  40924. source: "./media/characters/fox/foot.svg"
  40925. }
  40926. },
  40927. paw: {
  40928. height: math.unit(0.92, "feet"),
  40929. name: "Paw",
  40930. image: {
  40931. source: "./media/characters/fox/paw.svg"
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Small",
  40938. height: math.unit(3, "inches")
  40939. },
  40940. {
  40941. name: "\"Realistic\"",
  40942. height: math.unit(7, "feet")
  40943. },
  40944. {
  40945. name: "Normal",
  40946. height: math.unit(150, "feet"),
  40947. default: true
  40948. },
  40949. {
  40950. name: "BIG",
  40951. height: math.unit(1200, "feet")
  40952. },
  40953. {
  40954. name: "👀",
  40955. height: math.unit(5, "miles")
  40956. },
  40957. {
  40958. name: "👀👀👀",
  40959. height: math.unit(64, "miles")
  40960. },
  40961. ]
  40962. ))
  40963. characterMakers.push(() => makeCharacter(
  40964. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40965. {
  40966. front: {
  40967. height: math.unit(625, "feet"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/asonja-rossa/front.svg",
  40971. extra: 1833/1686,
  40972. bottom: 24/1857
  40973. }
  40974. },
  40975. back: {
  40976. height: math.unit(625, "feet"),
  40977. name: "Back",
  40978. image: {
  40979. source: "./media/characters/asonja-rossa/back.svg",
  40980. extra: 1852/1753,
  40981. bottom: 26/1878
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Macro",
  40988. height: math.unit(625, "feet"),
  40989. default: true
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40995. {
  40996. side: {
  40997. height: math.unit(8, "feet"),
  40998. name: "Side",
  40999. image: {
  41000. source: "./media/characters/rezukii/side.svg",
  41001. extra: 979/542,
  41002. bottom: 87/1066
  41003. }
  41004. },
  41005. sitting: {
  41006. height: math.unit(14.6, "feet"),
  41007. name: "Sitting",
  41008. image: {
  41009. source: "./media/characters/rezukii/sitting.svg",
  41010. extra: 1023/813,
  41011. bottom: 45/1068
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Tiny",
  41018. height: math.unit(2, "feet")
  41019. },
  41020. {
  41021. name: "Smol",
  41022. height: math.unit(4, "feet")
  41023. },
  41024. {
  41025. name: "Normal",
  41026. height: math.unit(8, "feet"),
  41027. default: true
  41028. },
  41029. {
  41030. name: "Big",
  41031. height: math.unit(12, "feet")
  41032. },
  41033. {
  41034. name: "Macro",
  41035. height: math.unit(30, "feet")
  41036. },
  41037. ]
  41038. ))
  41039. characterMakers.push(() => makeCharacter(
  41040. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  41041. {
  41042. front: {
  41043. height: math.unit(14, "feet"),
  41044. weight: math.unit(9.5, "tonnes"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/dawnheart/front.svg",
  41048. extra: 2792/2675,
  41049. bottom: 64/2856
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(14, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41063. {
  41064. front: {
  41065. height: math.unit(1.7, "m"),
  41066. name: "Front",
  41067. image: {
  41068. source: "./media/characters/gladi/front.svg",
  41069. extra: 1460/1362,
  41070. bottom: 19/1479
  41071. }
  41072. },
  41073. back: {
  41074. height: math.unit(1.7, "m"),
  41075. name: "Back",
  41076. image: {
  41077. source: "./media/characters/gladi/back.svg",
  41078. extra: 1459/1357,
  41079. bottom: 12/1471
  41080. }
  41081. },
  41082. feral: {
  41083. height: math.unit(2.05, "m"),
  41084. name: "Feral",
  41085. image: {
  41086. source: "./media/characters/gladi/feral.svg",
  41087. extra: 821/557,
  41088. bottom: 91/912
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Shortest",
  41095. height: math.unit(70, "cm")
  41096. },
  41097. {
  41098. name: "Normal",
  41099. height: math.unit(1.7, "m")
  41100. },
  41101. {
  41102. name: "Macro",
  41103. height: math.unit(10, "m"),
  41104. default: true
  41105. },
  41106. {
  41107. name: "Tallest",
  41108. height: math.unit(200, "m")
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(5 + 7/12, "feet"),
  41117. weight: math.unit(2, "tons"),
  41118. name: "Front",
  41119. image: {
  41120. source: "./media/characters/erdno/front.svg",
  41121. extra: 1234/1129,
  41122. bottom: 35/1269
  41123. }
  41124. },
  41125. angled: {
  41126. height: math.unit(5 + 7/12, "feet"),
  41127. weight: math.unit(2, "tons"),
  41128. name: "Angled",
  41129. image: {
  41130. source: "./media/characters/erdno/angled.svg",
  41131. extra: 1185/1139,
  41132. bottom: 36/1221
  41133. }
  41134. },
  41135. side: {
  41136. height: math.unit(5 + 7/12, "feet"),
  41137. weight: math.unit(2, "tons"),
  41138. name: "Side",
  41139. image: {
  41140. source: "./media/characters/erdno/side.svg",
  41141. extra: 1191/1144,
  41142. bottom: 40/1231
  41143. }
  41144. },
  41145. back: {
  41146. height: math.unit(5 + 7/12, "feet"),
  41147. weight: math.unit(2, "tons"),
  41148. name: "Back",
  41149. image: {
  41150. source: "./media/characters/erdno/back.svg",
  41151. extra: 1202/1146,
  41152. bottom: 17/1219
  41153. }
  41154. },
  41155. frontNsfw: {
  41156. height: math.unit(5 + 7/12, "feet"),
  41157. weight: math.unit(2, "tons"),
  41158. name: "Front (NSFW)",
  41159. image: {
  41160. source: "./media/characters/erdno/front-nsfw.svg",
  41161. extra: 1234/1129,
  41162. bottom: 35/1269
  41163. }
  41164. },
  41165. angledNsfw: {
  41166. height: math.unit(5 + 7/12, "feet"),
  41167. weight: math.unit(2, "tons"),
  41168. name: "Angled (NSFW)",
  41169. image: {
  41170. source: "./media/characters/erdno/angled-nsfw.svg",
  41171. extra: 1185/1139,
  41172. bottom: 36/1221
  41173. }
  41174. },
  41175. sideNsfw: {
  41176. height: math.unit(5 + 7/12, "feet"),
  41177. weight: math.unit(2, "tons"),
  41178. name: "Side (NSFW)",
  41179. image: {
  41180. source: "./media/characters/erdno/side-nsfw.svg",
  41181. extra: 1191/1144,
  41182. bottom: 40/1231
  41183. }
  41184. },
  41185. backNsfw: {
  41186. height: math.unit(5 + 7/12, "feet"),
  41187. weight: math.unit(2, "tons"),
  41188. name: "Back (NSFW)",
  41189. image: {
  41190. source: "./media/characters/erdno/back-nsfw.svg",
  41191. extra: 1202/1146,
  41192. bottom: 17/1219
  41193. }
  41194. },
  41195. frontHyper: {
  41196. height: math.unit(5 + 7/12, "feet"),
  41197. weight: math.unit(2, "tons"),
  41198. name: "Front (Hyper)",
  41199. image: {
  41200. source: "./media/characters/erdno/front-hyper.svg",
  41201. extra: 1298/1136,
  41202. bottom: 35/1333
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(5 + 7/12, "feet"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Big",
  41214. height: math.unit(5.7, "meters")
  41215. },
  41216. {
  41217. name: "Macro",
  41218. height: math.unit(5.7, "kilometers")
  41219. },
  41220. {
  41221. name: "Megamacro",
  41222. height: math.unit(5.7, "earths")
  41223. },
  41224. ]
  41225. ))
  41226. characterMakers.push(() => makeCharacter(
  41227. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41228. {
  41229. front: {
  41230. height: math.unit(5 + 10/12, "feet"),
  41231. weight: math.unit(150, "lb"),
  41232. name: "Front",
  41233. image: {
  41234. source: "./media/characters/jamie/front.svg",
  41235. extra: 1908/1768,
  41236. bottom: 19/1927
  41237. }
  41238. },
  41239. },
  41240. [
  41241. {
  41242. name: "Minimum",
  41243. height: math.unit(2, "cm")
  41244. },
  41245. {
  41246. name: "Micro",
  41247. height: math.unit(3, "inches")
  41248. },
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(5 + 10/12, "feet"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Macro",
  41256. height: math.unit(150, "feet")
  41257. },
  41258. {
  41259. name: "Megamacro",
  41260. height: math.unit(10000, "m")
  41261. },
  41262. ]
  41263. ))
  41264. characterMakers.push(() => makeCharacter(
  41265. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41266. {
  41267. front: {
  41268. height: math.unit(2, "meters"),
  41269. weight: math.unit(100, "kg"),
  41270. name: "Front",
  41271. image: {
  41272. source: "./media/characters/shiron/front.svg",
  41273. extra: 2103/1985,
  41274. bottom: 98/2201
  41275. }
  41276. },
  41277. back: {
  41278. height: math.unit(2, "meters"),
  41279. weight: math.unit(100, "kg"),
  41280. name: "Back",
  41281. image: {
  41282. source: "./media/characters/shiron/back.svg",
  41283. extra: 2110/2015,
  41284. bottom: 89/2199
  41285. }
  41286. },
  41287. hand: {
  41288. height: math.unit(0.96, "feet"),
  41289. name: "Hand",
  41290. image: {
  41291. source: "./media/characters/shiron/hand.svg"
  41292. }
  41293. },
  41294. foot: {
  41295. height: math.unit(1.464, "feet"),
  41296. name: "Foot",
  41297. image: {
  41298. source: "./media/characters/shiron/foot.svg"
  41299. }
  41300. },
  41301. },
  41302. [
  41303. {
  41304. name: "Normal",
  41305. height: math.unit(2, "meters")
  41306. },
  41307. {
  41308. name: "Macro",
  41309. height: math.unit(500, "meters"),
  41310. default: true
  41311. },
  41312. {
  41313. name: "Megamacro",
  41314. height: math.unit(20, "km")
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41320. {
  41321. front: {
  41322. height: math.unit(6, "feet"),
  41323. name: "Front",
  41324. image: {
  41325. source: "./media/characters/sam/front.svg",
  41326. extra: 849/826,
  41327. bottom: 19/868
  41328. }
  41329. },
  41330. },
  41331. [
  41332. {
  41333. name: "Normal",
  41334. height: math.unit(6, "feet"),
  41335. default: true
  41336. },
  41337. ]
  41338. ))
  41339. characterMakers.push(() => makeCharacter(
  41340. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41341. {
  41342. front: {
  41343. height: math.unit(8 + 4/12, "feet"),
  41344. weight: math.unit(122, "kg"),
  41345. name: "Front",
  41346. image: {
  41347. source: "./media/characters/namori-kurogawa/front.svg",
  41348. extra: 1894/1576,
  41349. bottom: 34/1928
  41350. }
  41351. },
  41352. },
  41353. [
  41354. {
  41355. name: "Normal",
  41356. height: math.unit(8 + 4/12, "feet"),
  41357. default: true
  41358. },
  41359. ]
  41360. ))
  41361. characterMakers.push(() => makeCharacter(
  41362. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41363. {
  41364. front: {
  41365. height: math.unit(9, "feet"),
  41366. weight: math.unit(621, "lb"),
  41367. name: "Front",
  41368. image: {
  41369. source: "./media/characters/unmru/front.svg",
  41370. extra: 1853/1747,
  41371. bottom: 73/1926
  41372. }
  41373. },
  41374. side: {
  41375. height: math.unit(9, "feet"),
  41376. weight: math.unit(621, "lb"),
  41377. name: "Side",
  41378. image: {
  41379. source: "./media/characters/unmru/side.svg",
  41380. extra: 1781/1671,
  41381. bottom: 127/1908
  41382. }
  41383. },
  41384. back: {
  41385. height: math.unit(9, "feet"),
  41386. weight: math.unit(621, "lb"),
  41387. name: "Back",
  41388. image: {
  41389. source: "./media/characters/unmru/back.svg",
  41390. extra: 1894/1765,
  41391. bottom: 75/1969
  41392. }
  41393. },
  41394. dick: {
  41395. height: math.unit(3, "feet"),
  41396. weight: math.unit(35, "lb"),
  41397. name: "Dick",
  41398. image: {
  41399. source: "./media/characters/unmru/dick.svg"
  41400. }
  41401. },
  41402. },
  41403. [
  41404. {
  41405. name: "Normal",
  41406. height: math.unit(9, "feet")
  41407. },
  41408. {
  41409. name: "Natural",
  41410. height: math.unit(27, "feet"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Giant",
  41415. height: math.unit(90, "feet")
  41416. },
  41417. {
  41418. name: "Kaiju",
  41419. height: math.unit(270, "feet")
  41420. },
  41421. {
  41422. name: "Macro",
  41423. height: math.unit(900, "feet")
  41424. },
  41425. {
  41426. name: "Macro+",
  41427. height: math.unit(2700, "feet")
  41428. },
  41429. {
  41430. name: "Megamacro",
  41431. height: math.unit(9000, "feet")
  41432. },
  41433. {
  41434. name: "City-Crushing",
  41435. height: math.unit(27000, "feet")
  41436. },
  41437. {
  41438. name: "Mountain-Mashing",
  41439. height: math.unit(90000, "feet")
  41440. },
  41441. {
  41442. name: "Earth-Eclipsing",
  41443. height: math.unit(2.7e8, "feet")
  41444. },
  41445. {
  41446. name: "Sol-Swallowing",
  41447. height: math.unit(9e10, "feet")
  41448. },
  41449. {
  41450. name: "Majoris-Munching",
  41451. height: math.unit(2.7e13, "feet")
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41457. {
  41458. front: {
  41459. height: math.unit(1, "inch"),
  41460. name: "Front",
  41461. image: {
  41462. source: "./media/characters/squeaks-mouse/front.svg",
  41463. extra: 352/308,
  41464. bottom: 25/377
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Micro",
  41471. height: math.unit(1, "inch"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41478. {
  41479. side: {
  41480. height: math.unit(35, "feet"),
  41481. name: "Side",
  41482. image: {
  41483. source: "./media/characters/sayko/side.svg",
  41484. extra: 1697/1021,
  41485. bottom: 82/1779
  41486. }
  41487. },
  41488. head: {
  41489. height: math.unit(16, "feet"),
  41490. name: "Head",
  41491. image: {
  41492. source: "./media/characters/sayko/head.svg"
  41493. }
  41494. },
  41495. forepaw: {
  41496. height: math.unit(7.85, "feet"),
  41497. name: "Forepaw",
  41498. image: {
  41499. source: "./media/characters/sayko/forepaw.svg"
  41500. }
  41501. },
  41502. hindpaw: {
  41503. height: math.unit(8.8, "feet"),
  41504. name: "Hindpaw",
  41505. image: {
  41506. source: "./media/characters/sayko/hindpaw.svg"
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(35, "feet"),
  41514. default: true
  41515. },
  41516. {
  41517. name: "Colossus",
  41518. height: math.unit(100, "meters")
  41519. },
  41520. {
  41521. name: "\"Small\" Deity",
  41522. height: math.unit(1, "km")
  41523. },
  41524. {
  41525. name: "\"Large\" Deity",
  41526. height: math.unit(15, "km")
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(6, "feet"),
  41535. weight: math.unit(250, "lb"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/mukiro/front.svg",
  41539. extra: 1368/1310,
  41540. bottom: 34/1402
  41541. }
  41542. },
  41543. },
  41544. [
  41545. {
  41546. name: "Normal",
  41547. height: math.unit(6, "feet"),
  41548. default: true
  41549. },
  41550. ]
  41551. ))
  41552. characterMakers.push(() => makeCharacter(
  41553. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41554. {
  41555. front: {
  41556. height: math.unit(12 + 4/12, "feet"),
  41557. name: "Front",
  41558. image: {
  41559. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41560. extra: 1346/1311,
  41561. bottom: 65/1411
  41562. }
  41563. },
  41564. },
  41565. [
  41566. {
  41567. name: "Base",
  41568. height: math.unit(12 + 4/12, "feet"),
  41569. default: true
  41570. },
  41571. {
  41572. name: "Macro",
  41573. height: math.unit(150, "feet")
  41574. },
  41575. {
  41576. name: "Mega",
  41577. height: math.unit(2, "miles")
  41578. },
  41579. {
  41580. name: "Demi God",
  41581. height: math.unit(4, "AU")
  41582. },
  41583. {
  41584. name: "God Size",
  41585. height: math.unit(1, "universe")
  41586. },
  41587. ]
  41588. ))
  41589. characterMakers.push(() => makeCharacter(
  41590. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41591. {
  41592. front: {
  41593. height: math.unit(3 + 3/12, "feet"),
  41594. weight: math.unit(88, "lb"),
  41595. name: "Front",
  41596. image: {
  41597. source: "./media/characters/trey/front.svg",
  41598. extra: 1815/1509,
  41599. bottom: 60/1875
  41600. }
  41601. },
  41602. },
  41603. [
  41604. {
  41605. name: "Normal",
  41606. height: math.unit(3 + 3/12, "feet"),
  41607. default: true
  41608. },
  41609. ]
  41610. ))
  41611. characterMakers.push(() => makeCharacter(
  41612. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41613. {
  41614. front: {
  41615. height: math.unit(4, "meters"),
  41616. name: "Front",
  41617. image: {
  41618. source: "./media/characters/adelonda/front.svg",
  41619. extra: 1077/982,
  41620. bottom: 39/1116
  41621. }
  41622. },
  41623. back: {
  41624. height: math.unit(4, "meters"),
  41625. name: "Back",
  41626. image: {
  41627. source: "./media/characters/adelonda/back.svg",
  41628. extra: 1105/1003,
  41629. bottom: 25/1130
  41630. }
  41631. },
  41632. feral: {
  41633. height: math.unit(40/1.5, "meters"),
  41634. name: "Feral",
  41635. image: {
  41636. source: "./media/characters/adelonda/feral.svg",
  41637. extra: 597/271,
  41638. bottom: 387/984
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Normal",
  41645. height: math.unit(4, "meters"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(8 + 4/12, "feet"),
  41655. weight: math.unit(670, "lb"),
  41656. name: "Front",
  41657. image: {
  41658. source: "./media/characters/acadiel/front.svg",
  41659. extra: 1901/1595,
  41660. bottom: 142/2043
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Normal",
  41667. height: math.unit(8 + 4/12, "feet"),
  41668. default: true
  41669. },
  41670. {
  41671. name: "Macro",
  41672. height: math.unit(200, "feet")
  41673. },
  41674. ]
  41675. ))
  41676. characterMakers.push(() => makeCharacter(
  41677. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41678. {
  41679. front: {
  41680. height: math.unit(6 + 2/12, "feet"),
  41681. weight: math.unit(185, "lb"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/kayne-ein/front.svg",
  41685. extra: 1780/1560,
  41686. bottom: 81/1861
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(6 + 2/12, "feet"),
  41694. default: true
  41695. },
  41696. {
  41697. name: "Transformation Stage",
  41698. height: math.unit(15, "feet")
  41699. },
  41700. {
  41701. name: "Macro",
  41702. height: math.unit(150, "feet")
  41703. },
  41704. {
  41705. name: "Earth's Shadow",
  41706. height: math.unit(6200, "miles")
  41707. },
  41708. {
  41709. name: "Universal Demon",
  41710. height: math.unit(28e9, "parsecs")
  41711. },
  41712. {
  41713. name: "Multiverse God",
  41714. height: math.unit(3, "multiverses")
  41715. },
  41716. ]
  41717. ))
  41718. characterMakers.push(() => makeCharacter(
  41719. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41720. {
  41721. front: {
  41722. height: math.unit(5 + 5/12, "feet"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/fawn/front.svg",
  41726. extra: 1873/1731,
  41727. bottom: 95/1968
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(5 + 5/12, "feet"),
  41732. name: "Back",
  41733. image: {
  41734. source: "./media/characters/fawn/back.svg",
  41735. extra: 1813/1700,
  41736. bottom: 14/1827
  41737. }
  41738. },
  41739. hoof: {
  41740. height: math.unit(1.45, "feet"),
  41741. name: "Hoof",
  41742. image: {
  41743. source: "./media/characters/fawn/hoof.svg"
  41744. }
  41745. },
  41746. },
  41747. [
  41748. {
  41749. name: "Normal",
  41750. height: math.unit(5 + 5/12, "feet"),
  41751. default: true
  41752. },
  41753. ]
  41754. ))
  41755. characterMakers.push(() => makeCharacter(
  41756. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41757. {
  41758. front: {
  41759. height: math.unit(2 + 5/12, "feet"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/orion/front.svg",
  41763. extra: 1366/1304,
  41764. bottom: 43/1409
  41765. }
  41766. },
  41767. paw: {
  41768. height: math.unit(0.52, "feet"),
  41769. name: "Paw",
  41770. image: {
  41771. source: "./media/characters/orion/paw.svg"
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Normal",
  41778. height: math.unit(2 + 5/12, "feet"),
  41779. default: true
  41780. },
  41781. ]
  41782. ))
  41783. characterMakers.push(() => makeCharacter(
  41784. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41785. {
  41786. front: {
  41787. height: math.unit(5 + 10/12, "feet"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/vera/front.svg",
  41791. extra: 1680/1575,
  41792. bottom: 49/1729
  41793. }
  41794. },
  41795. back: {
  41796. height: math.unit(5 + 10/12, "feet"),
  41797. name: "Back",
  41798. image: {
  41799. source: "./media/characters/vera/back.svg",
  41800. extra: 1700/1588,
  41801. bottom: 18/1718
  41802. }
  41803. },
  41804. arcanine: {
  41805. height: math.unit(6 + 8/12, "feet"),
  41806. name: "Arcanine",
  41807. image: {
  41808. source: "./media/characters/vera/arcanine.svg",
  41809. extra: 1590/1511,
  41810. bottom: 71/1661
  41811. }
  41812. },
  41813. maw: {
  41814. height: math.unit(0.82, "feet"),
  41815. name: "Maw",
  41816. image: {
  41817. source: "./media/characters/vera/maw.svg"
  41818. }
  41819. },
  41820. mawArcanine: {
  41821. height: math.unit(0.97, "feet"),
  41822. name: "Maw (Arcanine)",
  41823. image: {
  41824. source: "./media/characters/vera/maw-arcanine.svg"
  41825. }
  41826. },
  41827. paw: {
  41828. height: math.unit(0.75, "feet"),
  41829. name: "Paw",
  41830. image: {
  41831. source: "./media/characters/vera/paw.svg"
  41832. }
  41833. },
  41834. pawprint: {
  41835. height: math.unit(0.52, "feet"),
  41836. name: "Pawprint",
  41837. image: {
  41838. source: "./media/characters/vera/pawprint.svg"
  41839. }
  41840. },
  41841. },
  41842. [
  41843. {
  41844. name: "Normal",
  41845. height: math.unit(5 + 10/12, "feet"),
  41846. default: true
  41847. },
  41848. {
  41849. name: "Macro",
  41850. height: math.unit(75, "feet")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(4, "feet"),
  41859. weight: math.unit(40, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/orvan-rabbit/front.svg",
  41863. extra: 1896/1642,
  41864. bottom: 29/1925
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Normal",
  41871. height: math.unit(4, "feet"),
  41872. default: true
  41873. },
  41874. ]
  41875. ))
  41876. characterMakers.push(() => makeCharacter(
  41877. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41878. {
  41879. front: {
  41880. height: math.unit(6, "feet"),
  41881. weight: math.unit(168, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/lisa/front.svg",
  41885. extra: 2065/1867,
  41886. bottom: 46/2111
  41887. }
  41888. },
  41889. back: {
  41890. height: math.unit(6, "feet"),
  41891. weight: math.unit(168, "lb"),
  41892. name: "Back",
  41893. image: {
  41894. source: "./media/characters/lisa/back.svg",
  41895. extra: 1982/1838,
  41896. bottom: 29/2011
  41897. }
  41898. },
  41899. maw: {
  41900. height: math.unit(0.81, "feet"),
  41901. name: "Maw",
  41902. image: {
  41903. source: "./media/characters/lisa/maw.svg"
  41904. }
  41905. },
  41906. paw: {
  41907. height: math.unit(0.9, "feet"),
  41908. name: "Paw",
  41909. image: {
  41910. source: "./media/characters/lisa/paw.svg"
  41911. }
  41912. },
  41913. caribousune: {
  41914. height: math.unit(7 + 2/12, "feet"),
  41915. weight: math.unit(268, "lb"),
  41916. name: "Caribousune",
  41917. image: {
  41918. source: "./media/characters/lisa/caribousune.svg",
  41919. extra: 1843/1633,
  41920. bottom: 29/1872
  41921. }
  41922. },
  41923. frontCaribousune: {
  41924. height: math.unit(7 + 2/12, "feet"),
  41925. weight: math.unit(268, "lb"),
  41926. name: "Front (Caribousune)",
  41927. image: {
  41928. source: "./media/characters/lisa/front-caribousune.svg",
  41929. extra: 1818/1638,
  41930. bottom: 52/1870
  41931. }
  41932. },
  41933. sideCaribousune: {
  41934. height: math.unit(7 + 2/12, "feet"),
  41935. weight: math.unit(268, "lb"),
  41936. name: "Side (Caribousune)",
  41937. image: {
  41938. source: "./media/characters/lisa/side-caribousune.svg",
  41939. extra: 1851/1635,
  41940. bottom: 16/1867
  41941. }
  41942. },
  41943. backCaribousune: {
  41944. height: math.unit(7 + 2/12, "feet"),
  41945. weight: math.unit(268, "lb"),
  41946. name: "Back (Caribousune)",
  41947. image: {
  41948. source: "./media/characters/lisa/back-caribousune.svg",
  41949. extra: 1801/1604,
  41950. bottom: 44/1845
  41951. }
  41952. },
  41953. caribou: {
  41954. height: math.unit(7 + 2/12, "feet"),
  41955. weight: math.unit(268, "lb"),
  41956. name: "Caribou",
  41957. image: {
  41958. source: "./media/characters/lisa/caribou.svg",
  41959. extra: 1843/1633,
  41960. bottom: 29/1872
  41961. }
  41962. },
  41963. frontCaribou: {
  41964. height: math.unit(7 + 2/12, "feet"),
  41965. weight: math.unit(268, "lb"),
  41966. name: "Front (Caribou)",
  41967. image: {
  41968. source: "./media/characters/lisa/front-caribou.svg",
  41969. extra: 1818/1638,
  41970. bottom: 52/1870
  41971. }
  41972. },
  41973. sideCaribou: {
  41974. height: math.unit(7 + 2/12, "feet"),
  41975. weight: math.unit(268, "lb"),
  41976. name: "Side (Caribou)",
  41977. image: {
  41978. source: "./media/characters/lisa/side-caribou.svg",
  41979. extra: 1851/1635,
  41980. bottom: 16/1867
  41981. }
  41982. },
  41983. backCaribou: {
  41984. height: math.unit(7 + 2/12, "feet"),
  41985. weight: math.unit(268, "lb"),
  41986. name: "Back (Caribou)",
  41987. image: {
  41988. source: "./media/characters/lisa/back-caribou.svg",
  41989. extra: 1801/1604,
  41990. bottom: 44/1845
  41991. }
  41992. },
  41993. mawCaribou: {
  41994. height: math.unit(1.45, "feet"),
  41995. name: "Maw (Caribou)",
  41996. image: {
  41997. source: "./media/characters/lisa/maw-caribou.svg"
  41998. }
  41999. },
  42000. mawCaribousune: {
  42001. height: math.unit(1.45, "feet"),
  42002. name: "Maw (Caribousune)",
  42003. image: {
  42004. source: "./media/characters/lisa/maw-caribousune.svg"
  42005. }
  42006. },
  42007. pawCaribousune: {
  42008. height: math.unit(1.61, "feet"),
  42009. name: "Paw (Caribou)",
  42010. image: {
  42011. source: "./media/characters/lisa/paw-caribousune.svg"
  42012. }
  42013. },
  42014. },
  42015. [
  42016. {
  42017. name: "Normal",
  42018. height: math.unit(6, "feet")
  42019. },
  42020. {
  42021. name: "God Size",
  42022. height: math.unit(72, "feet"),
  42023. default: true
  42024. },
  42025. {
  42026. name: "Towering",
  42027. height: math.unit(288, "feet")
  42028. },
  42029. {
  42030. name: "City Size",
  42031. height: math.unit(48384, "feet")
  42032. },
  42033. {
  42034. name: "Continental",
  42035. height: math.unit(4200, "miles")
  42036. },
  42037. {
  42038. name: "Planet Eater",
  42039. height: math.unit(42, "earths")
  42040. },
  42041. {
  42042. name: "Star Swallower",
  42043. height: math.unit(42, "solarradii")
  42044. },
  42045. {
  42046. name: "System Swallower",
  42047. height: math.unit(84000, "AU")
  42048. },
  42049. {
  42050. name: "Galaxy Gobbler",
  42051. height: math.unit(42, "galaxies")
  42052. },
  42053. {
  42054. name: "Universe Devourer",
  42055. height: math.unit(42, "universes")
  42056. },
  42057. {
  42058. name: "Multiverse Muncher",
  42059. height: math.unit(42, "multiverses")
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42065. {
  42066. front: {
  42067. height: math.unit(36, "feet"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/shadow-rat/front.svg",
  42071. extra: 1845/1758,
  42072. bottom: 83/1928
  42073. }
  42074. },
  42075. },
  42076. [
  42077. {
  42078. name: "Macro",
  42079. height: math.unit(36, "feet"),
  42080. default: true
  42081. },
  42082. ]
  42083. ))
  42084. characterMakers.push(() => makeCharacter(
  42085. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42086. {
  42087. side: {
  42088. height: math.unit(8, "feet"),
  42089. weight: math.unit(2630, "lb"),
  42090. name: "Side",
  42091. image: {
  42092. source: "./media/characters/torallia/side.svg",
  42093. extra: 2164/2021,
  42094. bottom: 371/2535
  42095. }
  42096. },
  42097. },
  42098. [
  42099. {
  42100. name: "Mortal Interaction",
  42101. height: math.unit(8, "feet")
  42102. },
  42103. {
  42104. name: "Natural",
  42105. height: math.unit(24, "feet"),
  42106. default: true
  42107. },
  42108. {
  42109. name: "Giant",
  42110. height: math.unit(80, "feet")
  42111. },
  42112. {
  42113. name: "Kaiju",
  42114. height: math.unit(240, "feet")
  42115. },
  42116. {
  42117. name: "Macro",
  42118. height: math.unit(800, "feet")
  42119. },
  42120. {
  42121. name: "Macro+",
  42122. height: math.unit(2400, "feet")
  42123. },
  42124. {
  42125. name: "Macro++",
  42126. height: math.unit(8000, "feet")
  42127. },
  42128. {
  42129. name: "City-Crushing",
  42130. height: math.unit(24000, "feet")
  42131. },
  42132. {
  42133. name: "Mountain-Mashing",
  42134. height: math.unit(80000, "feet")
  42135. },
  42136. {
  42137. name: "District Demolisher",
  42138. height: math.unit(240000, "feet")
  42139. },
  42140. {
  42141. name: "Tri-County Terror",
  42142. height: math.unit(800000, "feet")
  42143. },
  42144. {
  42145. name: "State Smasher",
  42146. height: math.unit(2.4e6, "feet")
  42147. },
  42148. {
  42149. name: "Nation Nemesis",
  42150. height: math.unit(8e6, "feet")
  42151. },
  42152. {
  42153. name: "Continent Cracker",
  42154. height: math.unit(2.4e7, "feet")
  42155. },
  42156. {
  42157. name: "Planet-Pillaging",
  42158. height: math.unit(8e7, "feet")
  42159. },
  42160. {
  42161. name: "Earth-Eclipsing",
  42162. height: math.unit(2.4e8, "feet")
  42163. },
  42164. {
  42165. name: "Jovian-Jostling",
  42166. height: math.unit(8e8, "feet")
  42167. },
  42168. {
  42169. name: "Gas Giant Gulper",
  42170. height: math.unit(2.4e9, "feet")
  42171. },
  42172. {
  42173. name: "Astral Annihilator",
  42174. height: math.unit(8e9, "feet")
  42175. },
  42176. {
  42177. name: "Celestial Conqueror",
  42178. height: math.unit(2.4e10, "feet")
  42179. },
  42180. {
  42181. name: "Sol-Swallowing",
  42182. height: math.unit(8e10, "feet")
  42183. },
  42184. {
  42185. name: "Hunter of the Heavens",
  42186. height: math.unit(2.4e13, "feet")
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(10, "feet"),
  42195. weight: math.unit(844, "kilograms"),
  42196. name: "Front",
  42197. image: {
  42198. source: "./media/characters/rebecca-pawlson/front.svg",
  42199. extra: 1196/1099,
  42200. bottom: 81/1277
  42201. },
  42202. extraAttributes: {
  42203. "pawSize": {
  42204. name: "Paw Size",
  42205. power: 2,
  42206. type: "area",
  42207. base: math.unit(0.2 * 0.375, "meters^2")
  42208. },
  42209. "handSize": {
  42210. name: "Hand Size",
  42211. power: 2,
  42212. type: "area",
  42213. base: math.unit(0.2 * 0.35, "meters^2")
  42214. },
  42215. "breastDiameter": {
  42216. name: "Breast Diameter",
  42217. power: 1,
  42218. type: "length",
  42219. base: math.unit(0.5, "meters")
  42220. },
  42221. "breastVolume": {
  42222. name: "Breast Volume",
  42223. power: 3,
  42224. type: "volume",
  42225. base: math.unit(0.065, "m^3")
  42226. },
  42227. "breastMass": {
  42228. name: "Breast Mass",
  42229. power: 3,
  42230. type: "mass",
  42231. base: math.unit(65, "kg")
  42232. },
  42233. "nippleDiameter": {
  42234. name: "Nipple Diameter",
  42235. power: 1,
  42236. type: "length",
  42237. base: math.unit(0.1, "meters")
  42238. },
  42239. }
  42240. },
  42241. back: {
  42242. height: math.unit(10, "feet"),
  42243. weight: math.unit(844, "kilograms"),
  42244. name: "Back",
  42245. image: {
  42246. source: "./media/characters/rebecca-pawlson/back.svg",
  42247. extra: 879/776,
  42248. bottom: 43/922
  42249. },
  42250. extraAttributes: {
  42251. "pawSize": {
  42252. name: "Paw Size",
  42253. power: 2,
  42254. type: "area",
  42255. base: math.unit(0.2 * 0.375, "meters^2")
  42256. },
  42257. "handSize": {
  42258. name: "Hand Size",
  42259. power: 2,
  42260. type: "area",
  42261. base: math.unit(0.2 * 0.35, "meters^2")
  42262. },
  42263. "breastDiameter": {
  42264. name: "Breast Diameter",
  42265. power: 1,
  42266. type: "length",
  42267. base: math.unit(0.5, "meters")
  42268. },
  42269. "breastVolume": {
  42270. name: "Breast Volume",
  42271. power: 3,
  42272. type: "volume",
  42273. base: math.unit(0.065, "m^3")
  42274. },
  42275. "breastMass": {
  42276. name: "Breast Mass",
  42277. power: 3,
  42278. type: "mass",
  42279. base: math.unit(65, "kg")
  42280. },
  42281. "nippleDiameter": {
  42282. name: "Nipple Diameter",
  42283. power: 1,
  42284. type: "length",
  42285. base: math.unit(0.1, "meters")
  42286. },
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Normal",
  42293. height: math.unit(6 + 8/12, "feet")
  42294. },
  42295. {
  42296. name: "Mini Macro",
  42297. height: math.unit(10, "feet"),
  42298. default: true
  42299. },
  42300. {
  42301. name: "Macro",
  42302. height: math.unit(100, "feet")
  42303. },
  42304. {
  42305. name: "Mega Macro",
  42306. height: math.unit(2500, "feet")
  42307. },
  42308. {
  42309. name: "Giga Macro",
  42310. height: math.unit(50, "miles")
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42316. {
  42317. front: {
  42318. height: math.unit(7 + 6/12, "feet"),
  42319. weight: math.unit(600, "lb"),
  42320. name: "Front",
  42321. image: {
  42322. source: "./media/characters/moxie-nova/front.svg",
  42323. extra: 1734/1652,
  42324. bottom: 41/1775
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(7 + 6/12, "feet"),
  42332. default: true
  42333. },
  42334. ]
  42335. ))
  42336. characterMakers.push(() => makeCharacter(
  42337. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42338. {
  42339. goat: {
  42340. height: math.unit(4, "feet"),
  42341. weight: math.unit(180, "lb"),
  42342. name: "Goat",
  42343. image: {
  42344. source: "./media/characters/tiffany/goat.svg",
  42345. extra: 1845/1595,
  42346. bottom: 106/1951
  42347. }
  42348. },
  42349. front: {
  42350. height: math.unit(5, "feet"),
  42351. weight: math.unit(150, "lb"),
  42352. name: "Foxcoon",
  42353. image: {
  42354. source: "./media/characters/tiffany/foxcoon.svg",
  42355. extra: 1941/1845,
  42356. bottom: 58/1999
  42357. }
  42358. },
  42359. },
  42360. [
  42361. {
  42362. name: "Normal",
  42363. height: math.unit(5, "feet"),
  42364. default: true
  42365. },
  42366. ]
  42367. ))
  42368. characterMakers.push(() => makeCharacter(
  42369. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42370. {
  42371. front: {
  42372. height: math.unit(8, "feet"),
  42373. weight: math.unit(300, "lb"),
  42374. name: "Front",
  42375. image: {
  42376. source: "./media/characters/raxinath/front.svg",
  42377. extra: 1407/1309,
  42378. bottom: 39/1446
  42379. }
  42380. },
  42381. back: {
  42382. height: math.unit(8, "feet"),
  42383. weight: math.unit(300, "lb"),
  42384. name: "Back",
  42385. image: {
  42386. source: "./media/characters/raxinath/back.svg",
  42387. extra: 1405/1315,
  42388. bottom: 9/1414
  42389. }
  42390. },
  42391. },
  42392. [
  42393. {
  42394. name: "Speck",
  42395. height: math.unit(0.5, "nm")
  42396. },
  42397. {
  42398. name: "Micro",
  42399. height: math.unit(3, "inches")
  42400. },
  42401. {
  42402. name: "Kobold",
  42403. height: math.unit(3, "feet")
  42404. },
  42405. {
  42406. name: "Normal",
  42407. height: math.unit(8, "feet"),
  42408. default: true
  42409. },
  42410. {
  42411. name: "Giant",
  42412. height: math.unit(50, "feet")
  42413. },
  42414. {
  42415. name: "Macro",
  42416. height: math.unit(1000, "feet")
  42417. },
  42418. {
  42419. name: "Megamacro",
  42420. height: math.unit(1, "mile")
  42421. },
  42422. ]
  42423. ))
  42424. characterMakers.push(() => makeCharacter(
  42425. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42426. {
  42427. front: {
  42428. height: math.unit(10, "feet"),
  42429. weight: math.unit(1442, "lb"),
  42430. name: "Front",
  42431. image: {
  42432. source: "./media/characters/mal-dragon/front.svg",
  42433. extra: 1515/1444,
  42434. bottom: 113/1628
  42435. }
  42436. },
  42437. back: {
  42438. height: math.unit(10, "feet"),
  42439. weight: math.unit(1442, "lb"),
  42440. name: "Back",
  42441. image: {
  42442. source: "./media/characters/mal-dragon/back.svg",
  42443. extra: 1527/1434,
  42444. bottom: 25/1552
  42445. }
  42446. },
  42447. },
  42448. [
  42449. {
  42450. name: "Mortal Interaction",
  42451. height: math.unit(10, "feet"),
  42452. default: true
  42453. },
  42454. {
  42455. name: "Large",
  42456. height: math.unit(30, "feet")
  42457. },
  42458. {
  42459. name: "Kaiju",
  42460. height: math.unit(300, "feet")
  42461. },
  42462. {
  42463. name: "Megamacro",
  42464. height: math.unit(10000, "feet")
  42465. },
  42466. {
  42467. name: "Continent Cracker",
  42468. height: math.unit(30000000, "feet")
  42469. },
  42470. {
  42471. name: "Sol-Swallowing",
  42472. height: math.unit(1e11, "feet")
  42473. },
  42474. {
  42475. name: "Light Universal",
  42476. height: math.unit(5, "universes")
  42477. },
  42478. {
  42479. name: "Universe Atoms",
  42480. height: math.unit(1.829e9, "universes")
  42481. },
  42482. {
  42483. name: "Light Multiversal",
  42484. height: math.unit(5, "multiverses")
  42485. },
  42486. {
  42487. name: "Multiverse Atoms",
  42488. height: math.unit(1.829e9, "multiverses")
  42489. },
  42490. {
  42491. name: "Fabric of Time",
  42492. height: math.unit(1e262, "multiverses")
  42493. },
  42494. ]
  42495. ))
  42496. characterMakers.push(() => makeCharacter(
  42497. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42498. {
  42499. front: {
  42500. height: math.unit(9, "feet"),
  42501. weight: math.unit(1050, "lb"),
  42502. name: "Front",
  42503. image: {
  42504. source: "./media/characters/tabitha/front.svg",
  42505. extra: 2083/1994,
  42506. bottom: 68/2151
  42507. }
  42508. },
  42509. },
  42510. [
  42511. {
  42512. name: "Baseline",
  42513. height: math.unit(9, "feet"),
  42514. default: true
  42515. },
  42516. {
  42517. name: "Giant",
  42518. height: math.unit(90, "feet")
  42519. },
  42520. {
  42521. name: "Macro",
  42522. height: math.unit(900, "feet")
  42523. },
  42524. {
  42525. name: "Megamacro",
  42526. height: math.unit(9000, "feet")
  42527. },
  42528. {
  42529. name: "City-Crushing",
  42530. height: math.unit(27000, "feet")
  42531. },
  42532. {
  42533. name: "Mountain-Mashing",
  42534. height: math.unit(90000, "feet")
  42535. },
  42536. {
  42537. name: "Nation Nemesis",
  42538. height: math.unit(9e6, "feet")
  42539. },
  42540. {
  42541. name: "Continent Cracker",
  42542. height: math.unit(27e6, "feet")
  42543. },
  42544. {
  42545. name: "Earth-Eclipsing",
  42546. height: math.unit(2.7e8, "feet")
  42547. },
  42548. {
  42549. name: "Gas Giant Gulper",
  42550. height: math.unit(2.7e9, "feet")
  42551. },
  42552. {
  42553. name: "Sol-Swallowing",
  42554. height: math.unit(9e10, "feet")
  42555. },
  42556. {
  42557. name: "Galaxy Gulper",
  42558. height: math.unit(9, "galaxies")
  42559. },
  42560. {
  42561. name: "Cosmos Churner",
  42562. height: math.unit(9, "universes")
  42563. },
  42564. ]
  42565. ))
  42566. characterMakers.push(() => makeCharacter(
  42567. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42568. {
  42569. front: {
  42570. height: math.unit(160, "cm"),
  42571. weight: math.unit(55, "kg"),
  42572. name: "Front",
  42573. image: {
  42574. source: "./media/characters/tow/front.svg",
  42575. extra: 1751/1722,
  42576. bottom: 74/1825
  42577. }
  42578. },
  42579. },
  42580. [
  42581. {
  42582. name: "Norm",
  42583. height: math.unit(160, "cm")
  42584. },
  42585. {
  42586. name: "Casual",
  42587. height: math.unit(3200, "m"),
  42588. default: true
  42589. },
  42590. {
  42591. name: "Show-Off",
  42592. height: math.unit(160, "km")
  42593. },
  42594. ]
  42595. ))
  42596. characterMakers.push(() => makeCharacter(
  42597. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42598. {
  42599. front: {
  42600. height: math.unit(7 + 11/12, "feet"),
  42601. weight: math.unit(342.8, "lb"),
  42602. name: "Front",
  42603. image: {
  42604. source: "./media/characters/vivian-orca-dragon/front.svg",
  42605. extra: 1890/1865,
  42606. bottom: 28/1918
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Micro",
  42613. height: math.unit(5, "inches")
  42614. },
  42615. {
  42616. name: "Normal",
  42617. height: math.unit(7 + 11/12, "feet"),
  42618. default: true
  42619. },
  42620. {
  42621. name: "Macro",
  42622. height: math.unit(395 + 7/12, "feet")
  42623. },
  42624. ]
  42625. ))
  42626. characterMakers.push(() => makeCharacter(
  42627. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42628. {
  42629. side: {
  42630. height: math.unit(10, "feet"),
  42631. weight: math.unit(1442, "lb"),
  42632. name: "Side",
  42633. image: {
  42634. source: "./media/characters/lotherakon/side.svg",
  42635. extra: 1604/1497,
  42636. bottom: 89/1693
  42637. }
  42638. },
  42639. },
  42640. [
  42641. {
  42642. name: "Mortal Interaction",
  42643. height: math.unit(10, "feet")
  42644. },
  42645. {
  42646. name: "Large",
  42647. height: math.unit(30, "feet"),
  42648. default: true
  42649. },
  42650. {
  42651. name: "Giant",
  42652. height: math.unit(100, "feet")
  42653. },
  42654. {
  42655. name: "Kaiju",
  42656. height: math.unit(300, "feet")
  42657. },
  42658. {
  42659. name: "Macro",
  42660. height: math.unit(1000, "feet")
  42661. },
  42662. {
  42663. name: "Macro+",
  42664. height: math.unit(3000, "feet")
  42665. },
  42666. {
  42667. name: "Megamacro",
  42668. height: math.unit(10000, "feet")
  42669. },
  42670. {
  42671. name: "City-Crushing",
  42672. height: math.unit(30000, "feet")
  42673. },
  42674. {
  42675. name: "Continent Cracker",
  42676. height: math.unit(30e6, "feet")
  42677. },
  42678. {
  42679. name: "Earth Eclipsing",
  42680. height: math.unit(3e8, "feet")
  42681. },
  42682. {
  42683. name: "Gas Giant Gulper",
  42684. height: math.unit(3e9, "feet")
  42685. },
  42686. {
  42687. name: "Sol-Swallowing",
  42688. height: math.unit(1e11, "feet")
  42689. },
  42690. {
  42691. name: "System Swallower",
  42692. height: math.unit(3e14, "feet")
  42693. },
  42694. {
  42695. name: "Galaxy Gulper",
  42696. height: math.unit(10, "galaxies")
  42697. },
  42698. {
  42699. name: "Light Universal",
  42700. height: math.unit(5, "universes")
  42701. },
  42702. {
  42703. name: "Universe Palm",
  42704. height: math.unit(20, "universes")
  42705. },
  42706. {
  42707. name: "Light Multiversal",
  42708. height: math.unit(5, "multiverses")
  42709. },
  42710. {
  42711. name: "Multiverse Palm",
  42712. height: math.unit(20, "multiverses")
  42713. },
  42714. {
  42715. name: "Inferno Incarnate",
  42716. height: math.unit(1e7, "multiverses")
  42717. },
  42718. ]
  42719. ))
  42720. characterMakers.push(() => makeCharacter(
  42721. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42722. {
  42723. front: {
  42724. height: math.unit(8, "feet"),
  42725. weight: math.unit(1200, "lb"),
  42726. name: "Front",
  42727. image: {
  42728. source: "./media/characters/malithee/front.svg",
  42729. extra: 1675/1640,
  42730. bottom: 162/1837
  42731. }
  42732. },
  42733. },
  42734. [
  42735. {
  42736. name: "Mortal Interaction",
  42737. height: math.unit(8, "feet"),
  42738. default: true
  42739. },
  42740. {
  42741. name: "Large",
  42742. height: math.unit(24, "feet")
  42743. },
  42744. {
  42745. name: "Kaiju",
  42746. height: math.unit(240, "feet")
  42747. },
  42748. {
  42749. name: "Megamacro",
  42750. height: math.unit(8000, "feet")
  42751. },
  42752. {
  42753. name: "Continent Cracker",
  42754. height: math.unit(24e6, "feet")
  42755. },
  42756. {
  42757. name: "Earth-Eclipsing",
  42758. height: math.unit(2.4e8, "feet")
  42759. },
  42760. {
  42761. name: "Sol-Swallowing",
  42762. height: math.unit(8e10, "feet")
  42763. },
  42764. {
  42765. name: "Galaxy Gulper",
  42766. height: math.unit(8, "galaxies")
  42767. },
  42768. {
  42769. name: "Light Universal",
  42770. height: math.unit(4, "universes")
  42771. },
  42772. {
  42773. name: "Universe Atoms",
  42774. height: math.unit(1.829e9, "universes")
  42775. },
  42776. {
  42777. name: "Light Multiversal",
  42778. height: math.unit(4, "multiverses")
  42779. },
  42780. {
  42781. name: "Multiverse Atoms",
  42782. height: math.unit(1.829e9, "multiverses")
  42783. },
  42784. {
  42785. name: "Nigh-Omnipresence",
  42786. height: math.unit(8e261, "multiverses")
  42787. },
  42788. ]
  42789. ))
  42790. characterMakers.push(() => makeCharacter(
  42791. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42792. {
  42793. front: {
  42794. height: math.unit(10, "feet"),
  42795. weight: math.unit(1500, "lb"),
  42796. name: "Front",
  42797. image: {
  42798. source: "./media/characters/miles-thestia/front.svg",
  42799. extra: 1812/1727,
  42800. bottom: 86/1898
  42801. }
  42802. },
  42803. back: {
  42804. height: math.unit(10, "feet"),
  42805. weight: math.unit(1500, "lb"),
  42806. name: "Back",
  42807. image: {
  42808. source: "./media/characters/miles-thestia/back.svg",
  42809. extra: 1799/1690,
  42810. bottom: 47/1846
  42811. }
  42812. },
  42813. frontNsfw: {
  42814. height: math.unit(10, "feet"),
  42815. weight: math.unit(1500, "lb"),
  42816. name: "Front (NSFW)",
  42817. image: {
  42818. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42819. extra: 1812/1727,
  42820. bottom: 86/1898
  42821. }
  42822. },
  42823. },
  42824. [
  42825. {
  42826. name: "Mini-Macro",
  42827. height: math.unit(10, "feet"),
  42828. default: true
  42829. },
  42830. ]
  42831. ))
  42832. characterMakers.push(() => makeCharacter(
  42833. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42834. {
  42835. front: {
  42836. height: math.unit(25, "feet"),
  42837. name: "Front",
  42838. image: {
  42839. source: "./media/characters/titan-s-wulf/front.svg",
  42840. extra: 1560/1484,
  42841. bottom: 76/1636
  42842. }
  42843. },
  42844. },
  42845. [
  42846. {
  42847. name: "Smallest",
  42848. height: math.unit(25, "feet"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Normal",
  42853. height: math.unit(200, "feet")
  42854. },
  42855. {
  42856. name: "Macro",
  42857. height: math.unit(200000, "feet")
  42858. },
  42859. {
  42860. name: "Multiversal Original",
  42861. height: math.unit(10000, "multiverses")
  42862. },
  42863. ]
  42864. ))
  42865. characterMakers.push(() => makeCharacter(
  42866. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42867. {
  42868. front: {
  42869. height: math.unit(8, "feet"),
  42870. weight: math.unit(553, "lb"),
  42871. name: "Front",
  42872. image: {
  42873. source: "./media/characters/tawendeh/front.svg",
  42874. extra: 2365/2268,
  42875. bottom: 83/2448
  42876. }
  42877. },
  42878. frontClothed: {
  42879. height: math.unit(8, "feet"),
  42880. weight: math.unit(553, "lb"),
  42881. name: "Front (Clothed)",
  42882. image: {
  42883. source: "./media/characters/tawendeh/front-clothed.svg",
  42884. extra: 2365/2268,
  42885. bottom: 83/2448
  42886. }
  42887. },
  42888. back: {
  42889. height: math.unit(8, "feet"),
  42890. weight: math.unit(553, "lb"),
  42891. name: "Back",
  42892. image: {
  42893. source: "./media/characters/tawendeh/back.svg",
  42894. extra: 2397/2294,
  42895. bottom: 42/2439
  42896. }
  42897. },
  42898. },
  42899. [
  42900. {
  42901. name: "Mortal Interaction",
  42902. height: math.unit(8, "feet"),
  42903. default: true
  42904. },
  42905. {
  42906. name: "Giant",
  42907. height: math.unit(80, "feet")
  42908. },
  42909. {
  42910. name: "Macro",
  42911. height: math.unit(800, "feet")
  42912. },
  42913. {
  42914. name: "Megamacro",
  42915. height: math.unit(8000, "feet")
  42916. },
  42917. {
  42918. name: "City-Crushing",
  42919. height: math.unit(24000, "feet")
  42920. },
  42921. {
  42922. name: "Mountain-Mashing",
  42923. height: math.unit(80000, "feet")
  42924. },
  42925. {
  42926. name: "Nation Nemesis",
  42927. height: math.unit(8e6, "feet")
  42928. },
  42929. {
  42930. name: "Continent Cracker",
  42931. height: math.unit(24e6, "feet")
  42932. },
  42933. {
  42934. name: "Earth-Eclipsing",
  42935. height: math.unit(2.4e8, "feet")
  42936. },
  42937. {
  42938. name: "Gas Giant Gulper",
  42939. height: math.unit(2.4e9, "feet")
  42940. },
  42941. {
  42942. name: "Sol-Swallowing",
  42943. height: math.unit(8e10, "feet")
  42944. },
  42945. {
  42946. name: "Galaxy Gulper",
  42947. height: math.unit(8, "galaxies")
  42948. },
  42949. {
  42950. name: "Cosmos Churner",
  42951. height: math.unit(8, "universes")
  42952. },
  42953. {
  42954. name: "Omnipotent Otter",
  42955. height: math.unit(80, "universes")
  42956. },
  42957. ]
  42958. ))
  42959. characterMakers.push(() => makeCharacter(
  42960. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42961. {
  42962. front: {
  42963. height: math.unit(2.6, "meters"),
  42964. weight: math.unit(900, "kg"),
  42965. name: "Front",
  42966. image: {
  42967. source: "./media/characters/neesha/front.svg",
  42968. extra: 1803/1653,
  42969. bottom: 128/1931
  42970. }
  42971. },
  42972. },
  42973. [
  42974. {
  42975. name: "Normal",
  42976. height: math.unit(2.6, "meters"),
  42977. default: true
  42978. },
  42979. {
  42980. name: "Macro",
  42981. height: math.unit(50, "meters")
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42987. {
  42988. front: {
  42989. height: math.unit(5, "feet"),
  42990. weight: math.unit(185, "lb"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/kyera/front.svg",
  42994. extra: 1875/1790,
  42995. bottom: 96/1971
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(5, "feet"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  43009. {
  43010. front: {
  43011. height: math.unit(7 + 6/12, "feet"),
  43012. weight: math.unit(540, "lb"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/yuko/front.svg",
  43016. extra: 1282/1222,
  43017. bottom: 101/1383
  43018. }
  43019. },
  43020. frontClothed: {
  43021. height: math.unit(7 + 6/12, "feet"),
  43022. weight: math.unit(540, "lb"),
  43023. name: "Front (Clothed)",
  43024. image: {
  43025. source: "./media/characters/yuko/front-clothed.svg",
  43026. extra: 1282/1222,
  43027. bottom: 101/1383
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(7 + 6/12, "feet"),
  43035. default: true
  43036. },
  43037. {
  43038. name: "Macro",
  43039. height: math.unit(26 + 9/12, "feet")
  43040. },
  43041. {
  43042. name: "Megamacro",
  43043. height: math.unit(300, "feet")
  43044. },
  43045. {
  43046. name: "Gigamacro",
  43047. height: math.unit(5000, "feet")
  43048. },
  43049. {
  43050. name: "Planetary",
  43051. height: math.unit(10000, "miles")
  43052. },
  43053. ]
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(8 + 2/12, "feet"),
  43060. weight: math.unit(600, "lb"),
  43061. name: "Front",
  43062. image: {
  43063. source: "./media/characters/deam-nitrel/front.svg",
  43064. extra: 1308/1234,
  43065. bottom: 125/1433
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Normal",
  43072. height: math.unit(8 + 2/12, "feet"),
  43073. default: true
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(6.1, "feet"),
  43082. weight: math.unit(180, "lb"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/skyress/front.svg",
  43086. extra: 1045/915,
  43087. bottom: 28/1073
  43088. }
  43089. },
  43090. maw: {
  43091. height: math.unit(1, "feet"),
  43092. name: "Maw",
  43093. image: {
  43094. source: "./media/characters/skyress/maw.svg"
  43095. }
  43096. },
  43097. },
  43098. [
  43099. {
  43100. name: "Normal",
  43101. height: math.unit(6.1, "feet"),
  43102. default: true
  43103. },
  43104. {
  43105. name: "Macro",
  43106. height: math.unit(200, "feet")
  43107. },
  43108. ]
  43109. ))
  43110. characterMakers.push(() => makeCharacter(
  43111. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43112. {
  43113. front: {
  43114. height: math.unit(4 + 2/12, "feet"),
  43115. weight: math.unit(40, "kg"),
  43116. name: "Front",
  43117. image: {
  43118. source: "./media/characters/amethyst-jones/front.svg",
  43119. extra: 1220/1150,
  43120. bottom: 101/1321
  43121. }
  43122. },
  43123. },
  43124. [
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(4 + 2/12, "feet"),
  43128. default: true
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(1.7, "m"),
  43137. weight: math.unit(135, "lb"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/jade/front.svg",
  43141. extra: 1818/1767,
  43142. bottom: 32/1850
  43143. }
  43144. },
  43145. back: {
  43146. height: math.unit(1.7, "m"),
  43147. weight: math.unit(135, "lb"),
  43148. name: "Back",
  43149. image: {
  43150. source: "./media/characters/jade/back.svg",
  43151. extra: 1869/1809,
  43152. bottom: 35/1904
  43153. }
  43154. },
  43155. hand: {
  43156. height: math.unit(0.24, "m"),
  43157. name: "Hand",
  43158. image: {
  43159. source: "./media/characters/jade/hand.svg"
  43160. }
  43161. },
  43162. foot: {
  43163. height: math.unit(0.263, "m"),
  43164. name: "Foot",
  43165. image: {
  43166. source: "./media/characters/jade/foot.svg"
  43167. }
  43168. },
  43169. dick: {
  43170. height: math.unit(0.47, "m"),
  43171. name: "Dick",
  43172. image: {
  43173. source: "./media/characters/jade/dick.svg"
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Micro",
  43180. height: math.unit(22, "cm")
  43181. },
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(1.7, "m"),
  43185. default: true
  43186. },
  43187. {
  43188. name: "Macro",
  43189. height: math.unit(152, "m")
  43190. },
  43191. ]
  43192. ))
  43193. characterMakers.push(() => makeCharacter(
  43194. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43195. {
  43196. front: {
  43197. height: math.unit(100, "miles"),
  43198. weight: math.unit(20000, "tons"),
  43199. name: "Front",
  43200. image: {
  43201. source: "./media/characters/cookie/front.svg",
  43202. extra: 1125/1070,
  43203. bottom: 30/1155
  43204. }
  43205. },
  43206. },
  43207. [
  43208. {
  43209. name: "Big",
  43210. height: math.unit(50, "feet")
  43211. },
  43212. {
  43213. name: "Macro",
  43214. height: math.unit(100, "miles"),
  43215. default: true
  43216. },
  43217. {
  43218. name: "Megamacro",
  43219. height: math.unit(90000, "miles")
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43225. {
  43226. front: {
  43227. height: math.unit(6, "feet"),
  43228. weight: math.unit(145, "lb"),
  43229. name: "Front",
  43230. image: {
  43231. source: "./media/characters/farzian/front.svg",
  43232. extra: 1902/1693,
  43233. bottom: 108/2010
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Macro",
  43240. height: math.unit(500, "feet"),
  43241. default: true
  43242. },
  43243. ]
  43244. ))
  43245. characterMakers.push(() => makeCharacter(
  43246. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43247. {
  43248. front: {
  43249. height: math.unit(3 + 6/12, "feet"),
  43250. weight: math.unit(50, "lb"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/kimberly-tilson/front.svg",
  43254. extra: 1400/1322,
  43255. bottom: 36/1436
  43256. }
  43257. },
  43258. back: {
  43259. height: math.unit(3 + 6/12, "feet"),
  43260. weight: math.unit(50, "lb"),
  43261. name: "Back",
  43262. image: {
  43263. source: "./media/characters/kimberly-tilson/back.svg",
  43264. extra: 1370/1307,
  43265. bottom: 20/1390
  43266. }
  43267. },
  43268. },
  43269. [
  43270. {
  43271. name: "Normal",
  43272. height: math.unit(3 + 6/12, "feet"),
  43273. default: true
  43274. },
  43275. ]
  43276. ))
  43277. characterMakers.push(() => makeCharacter(
  43278. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43279. {
  43280. front: {
  43281. height: math.unit(350, "meters"),
  43282. weight: math.unit(7.57059e+8, "lb"),
  43283. name: "Front",
  43284. image: {
  43285. source: "./media/characters/harthos/front.svg",
  43286. extra: 455/446,
  43287. bottom: 15/470
  43288. },
  43289. form: "peacekeeper",
  43290. default: true
  43291. },
  43292. allusus_front: {
  43293. height: math.unit(270, "meters"),
  43294. weight: math.unit(3.47550e+8, "lb"),
  43295. name: "Front",
  43296. image: {
  43297. source: "./media/characters/harthos/allusus-front.svg",
  43298. extra: 455/446,
  43299. bottom: 15/470
  43300. },
  43301. form: "allusus",
  43302. },
  43303. },
  43304. [
  43305. {
  43306. name: "Macro",
  43307. height: math.unit(350, "meters"),
  43308. default: true,
  43309. form: "peacekeeper"
  43310. },
  43311. {
  43312. name: "Macro",
  43313. height: math.unit(270, "meters"),
  43314. default: true,
  43315. form: "allusus"
  43316. },
  43317. ],
  43318. {
  43319. "peacekeeper": {
  43320. name: "Peacekeeper",
  43321. default: true
  43322. },
  43323. "allusus": {
  43324. name: "Allusus",
  43325. },
  43326. }
  43327. ))
  43328. characterMakers.push(() => makeCharacter(
  43329. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43330. {
  43331. front: {
  43332. height: math.unit(15, "feet"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/hypatia/front.svg",
  43336. extra: 1653/1591,
  43337. bottom: 79/1732
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Normal",
  43344. height: math.unit(15, "feet")
  43345. },
  43346. {
  43347. name: "Small",
  43348. height: math.unit(300, "feet")
  43349. },
  43350. {
  43351. name: "Macro",
  43352. height: math.unit(2500, "feet"),
  43353. default: true
  43354. },
  43355. {
  43356. name: "Mega Macro",
  43357. height: math.unit(1500, "miles")
  43358. },
  43359. {
  43360. name: "Giga Macro",
  43361. height: math.unit(1.5e6, "miles")
  43362. },
  43363. ]
  43364. ))
  43365. characterMakers.push(() => makeCharacter(
  43366. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43367. {
  43368. front: {
  43369. height: math.unit(6, "feet"),
  43370. weight: math.unit(200, "lb"),
  43371. name: "Front",
  43372. image: {
  43373. source: "./media/characters/wulver/front.svg",
  43374. extra: 1724/1632,
  43375. bottom: 130/1854
  43376. }
  43377. },
  43378. frontNsfw: {
  43379. height: math.unit(6, "feet"),
  43380. weight: math.unit(200, "lb"),
  43381. name: "Front (NSFW)",
  43382. image: {
  43383. source: "./media/characters/wulver/front-nsfw.svg",
  43384. extra: 1724/1632,
  43385. bottom: 130/1854
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Human-Sized",
  43392. height: math.unit(6, "feet")
  43393. },
  43394. {
  43395. name: "Normal",
  43396. height: math.unit(4, "meters"),
  43397. default: true
  43398. },
  43399. {
  43400. name: "Large",
  43401. height: math.unit(6, "m")
  43402. },
  43403. ]
  43404. ))
  43405. characterMakers.push(() => makeCharacter(
  43406. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43407. {
  43408. front: {
  43409. height: math.unit(7, "feet"),
  43410. name: "Front",
  43411. image: {
  43412. source: "./media/characters/maru/front.svg",
  43413. extra: 1595/1570,
  43414. bottom: 0/1595
  43415. }
  43416. },
  43417. },
  43418. [
  43419. {
  43420. name: "Normal",
  43421. height: math.unit(7, "feet"),
  43422. default: true
  43423. },
  43424. {
  43425. name: "Macro",
  43426. height: math.unit(700, "feet")
  43427. },
  43428. {
  43429. name: "Mega Macro",
  43430. height: math.unit(25, "miles")
  43431. },
  43432. ]
  43433. ))
  43434. characterMakers.push(() => makeCharacter(
  43435. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43436. {
  43437. front: {
  43438. height: math.unit(6, "feet"),
  43439. weight: math.unit(170, "lb"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/xenon/front.svg",
  43443. extra: 1376/1305,
  43444. bottom: 56/1432
  43445. }
  43446. },
  43447. back: {
  43448. height: math.unit(6, "feet"),
  43449. weight: math.unit(170, "lb"),
  43450. name: "Back",
  43451. image: {
  43452. source: "./media/characters/xenon/back.svg",
  43453. extra: 1328/1259,
  43454. bottom: 95/1423
  43455. }
  43456. },
  43457. maw: {
  43458. height: math.unit(0.52, "feet"),
  43459. name: "Maw",
  43460. image: {
  43461. source: "./media/characters/xenon/maw.svg"
  43462. }
  43463. },
  43464. handLeft: {
  43465. height: math.unit(0.82 * 169 / 153, "feet"),
  43466. name: "Hand (Left)",
  43467. image: {
  43468. source: "./media/characters/xenon/hand-left.svg"
  43469. }
  43470. },
  43471. handRight: {
  43472. height: math.unit(0.82, "feet"),
  43473. name: "Hand (Right)",
  43474. image: {
  43475. source: "./media/characters/xenon/hand-right.svg"
  43476. }
  43477. },
  43478. footLeft: {
  43479. height: math.unit(1.13, "feet"),
  43480. name: "Foot (Left)",
  43481. image: {
  43482. source: "./media/characters/xenon/foot-left.svg"
  43483. }
  43484. },
  43485. footRight: {
  43486. height: math.unit(1.13 * 194 / 196, "feet"),
  43487. name: "Foot (Right)",
  43488. image: {
  43489. source: "./media/characters/xenon/foot-right.svg"
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Micro",
  43496. height: math.unit(0.8, "inches")
  43497. },
  43498. {
  43499. name: "Normal",
  43500. height: math.unit(6, "feet")
  43501. },
  43502. {
  43503. name: "Macro",
  43504. height: math.unit(50, "feet"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Macro+",
  43509. height: math.unit(250, "feet")
  43510. },
  43511. {
  43512. name: "Megamacro",
  43513. height: math.unit(1500, "feet")
  43514. },
  43515. ]
  43516. ))
  43517. characterMakers.push(() => makeCharacter(
  43518. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43519. {
  43520. front: {
  43521. height: math.unit(7 + 5/12, "feet"),
  43522. name: "Front",
  43523. image: {
  43524. source: "./media/characters/zane/front.svg",
  43525. extra: 1260/1203,
  43526. bottom: 94/1354
  43527. }
  43528. },
  43529. back: {
  43530. height: math.unit(5.05, "feet"),
  43531. name: "Back",
  43532. image: {
  43533. source: "./media/characters/zane/back.svg",
  43534. extra: 893/829,
  43535. bottom: 30/923
  43536. }
  43537. },
  43538. werewolf: {
  43539. height: math.unit(11, "feet"),
  43540. name: "Werewolf",
  43541. image: {
  43542. source: "./media/characters/zane/werewolf.svg",
  43543. extra: 1383/1323,
  43544. bottom: 89/1472
  43545. }
  43546. },
  43547. foot: {
  43548. height: math.unit(1.46, "feet"),
  43549. name: "Foot",
  43550. image: {
  43551. source: "./media/characters/zane/foot.svg"
  43552. }
  43553. },
  43554. footFront: {
  43555. height: math.unit(0.784, "feet"),
  43556. name: "Foot (Front)",
  43557. image: {
  43558. source: "./media/characters/zane/foot-front.svg"
  43559. }
  43560. },
  43561. dick: {
  43562. height: math.unit(1.95, "feet"),
  43563. name: "Dick",
  43564. image: {
  43565. source: "./media/characters/zane/dick.svg"
  43566. }
  43567. },
  43568. dickWerewolf: {
  43569. height: math.unit(3.77, "feet"),
  43570. name: "Dick (Werewolf)",
  43571. image: {
  43572. source: "./media/characters/zane/dick.svg"
  43573. }
  43574. },
  43575. },
  43576. [
  43577. {
  43578. name: "Normal",
  43579. height: math.unit(7 + 5/12, "feet"),
  43580. default: true
  43581. },
  43582. ]
  43583. ))
  43584. characterMakers.push(() => makeCharacter(
  43585. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43586. {
  43587. front: {
  43588. height: math.unit(6 + 2/12, "feet"),
  43589. weight: math.unit(284, "lb"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/benni-desparque/front.svg",
  43593. extra: 878/729,
  43594. bottom: 58/936
  43595. }
  43596. },
  43597. back: {
  43598. height: math.unit(6 + 2/12, "feet"),
  43599. weight: math.unit(284, "lb"),
  43600. name: "Back",
  43601. image: {
  43602. source: "./media/characters/benni-desparque/back.svg",
  43603. extra: 901/756,
  43604. bottom: 51/952
  43605. }
  43606. },
  43607. dressed: {
  43608. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43609. weight: math.unit(284, "lb"),
  43610. name: "Dressed",
  43611. image: {
  43612. source: "./media/characters/benni-desparque/dressed.svg",
  43613. extra: 1514/1276,
  43614. bottom: 65/1579
  43615. }
  43616. },
  43617. hand: {
  43618. height: math.unit(1.28, "feet"),
  43619. name: "Hand",
  43620. image: {
  43621. source: "./media/characters/benni-desparque/hand.svg"
  43622. }
  43623. },
  43624. foot: {
  43625. height: math.unit(1.53, "feet"),
  43626. name: "Foot",
  43627. image: {
  43628. source: "./media/characters/benni-desparque/foot.svg"
  43629. }
  43630. },
  43631. aiControlUnit: {
  43632. height: math.unit(0.175, "feet"),
  43633. name: "AI Control Unit",
  43634. image: {
  43635. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43636. }
  43637. },
  43638. },
  43639. [
  43640. {
  43641. name: "Civilian",
  43642. height: math.unit(6 + 2/12, "feet")
  43643. },
  43644. {
  43645. name: "Normal",
  43646. height: math.unit(98, "feet"),
  43647. default: true
  43648. },
  43649. {
  43650. name: "Kaiju Fighter",
  43651. height: math.unit(268, "feet")
  43652. },
  43653. ]
  43654. ))
  43655. characterMakers.push(() => makeCharacter(
  43656. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43657. {
  43658. front: {
  43659. height: math.unit(5, "feet"),
  43660. weight: math.unit(105, "lb"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/maxine/front.svg",
  43664. extra: 1386/1250,
  43665. bottom: 71/1457
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(5, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(11 + 7/12, "feet"),
  43682. weight: math.unit(9576, "lb"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/scaly/front.svg",
  43686. extra: 888/867,
  43687. bottom: 36/924
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Normal",
  43694. height: math.unit(11 + 7/12, "feet"),
  43695. default: true
  43696. },
  43697. ]
  43698. ))
  43699. characterMakers.push(() => makeCharacter(
  43700. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43701. {
  43702. front: {
  43703. height: math.unit(6 + 3/12, "feet"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/saelria/front.svg",
  43707. extra: 1243/1138,
  43708. bottom: 46/1289
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Micro",
  43715. height: math.unit(6, "inches"),
  43716. },
  43717. {
  43718. name: "Normal",
  43719. height: math.unit(6 + 3/12, "feet"),
  43720. default: true
  43721. },
  43722. {
  43723. name: "Macro",
  43724. height: math.unit(25, "feet")
  43725. },
  43726. ]
  43727. ))
  43728. characterMakers.push(() => makeCharacter(
  43729. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43730. {
  43731. front: {
  43732. height: math.unit(80, "meters"),
  43733. weight: math.unit(7000, "tonnes"),
  43734. name: "Front",
  43735. image: {
  43736. source: "./media/characters/tef/front.svg",
  43737. extra: 2036/1991,
  43738. bottom: 54/2090
  43739. }
  43740. },
  43741. back: {
  43742. height: math.unit(80, "meters"),
  43743. weight: math.unit(7000, "tonnes"),
  43744. name: "Back",
  43745. image: {
  43746. source: "./media/characters/tef/back.svg",
  43747. extra: 2036/1991,
  43748. bottom: 54/2090
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Macro",
  43755. height: math.unit(80, "meters"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(13, "feet"),
  43765. weight: math.unit(6, "tons"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/rover/front.svg",
  43769. extra: 1233/1156,
  43770. bottom: 50/1283
  43771. }
  43772. },
  43773. back: {
  43774. height: math.unit(13, "feet"),
  43775. weight: math.unit(6, "tons"),
  43776. name: "Back",
  43777. image: {
  43778. source: "./media/characters/rover/back.svg",
  43779. extra: 1327/1258,
  43780. bottom: 39/1366
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(13, "feet"),
  43788. default: true
  43789. },
  43790. {
  43791. name: "Macro",
  43792. height: math.unit(1300, "feet")
  43793. },
  43794. {
  43795. name: "Megamacro",
  43796. height: math.unit(1300, "miles")
  43797. },
  43798. {
  43799. name: "Gigamacro",
  43800. height: math.unit(1300000, "miles")
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43806. {
  43807. front: {
  43808. height: math.unit(10, "feet"),
  43809. weight: math.unit(500, "lb"),
  43810. name: "Front",
  43811. image: {
  43812. source: "./media/characters/ariz/front.svg",
  43813. extra: 461/450,
  43814. bottom: 16/477
  43815. }
  43816. },
  43817. },
  43818. [
  43819. {
  43820. name: "MiniMacro",
  43821. height: math.unit(10, "feet"),
  43822. default: true
  43823. },
  43824. ]
  43825. ))
  43826. characterMakers.push(() => makeCharacter(
  43827. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43828. {
  43829. front: {
  43830. height: math.unit(6, "feet"),
  43831. weight: math.unit(140, "lb"),
  43832. name: "Front",
  43833. image: {
  43834. source: "./media/characters/sigrun/front.svg",
  43835. extra: 1418/1359,
  43836. bottom: 27/1445
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Macro",
  43843. height: math.unit(35, "feet"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43850. {
  43851. front: {
  43852. height: math.unit(6, "feet"),
  43853. weight: math.unit(150, "lb"),
  43854. name: "Front",
  43855. image: {
  43856. source: "./media/characters/numin/front.svg",
  43857. extra: 1433/1388,
  43858. bottom: 12/1445
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Macro",
  43865. height: math.unit(21.5, "km"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(6, "feet"),
  43875. weight: math.unit(463, "lb"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/melwa/front.svg",
  43879. extra: 1307/1248,
  43880. bottom: 93/1400
  43881. }
  43882. },
  43883. },
  43884. [
  43885. {
  43886. name: "Macro",
  43887. height: math.unit(50, "meters"),
  43888. default: true
  43889. },
  43890. ]
  43891. ))
  43892. characterMakers.push(() => makeCharacter(
  43893. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43894. {
  43895. front: {
  43896. height: math.unit(325, "feet"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/zorkaiju/front.svg",
  43900. extra: 1955/1814,
  43901. bottom: 40/1995
  43902. }
  43903. },
  43904. frontExtended: {
  43905. height: math.unit(325, "feet"),
  43906. name: "Front (Extended)",
  43907. image: {
  43908. source: "./media/characters/zorkaiju/front-extended.svg",
  43909. extra: 1955/1814,
  43910. bottom: 40/1995
  43911. }
  43912. },
  43913. side: {
  43914. height: math.unit(325, "feet"),
  43915. name: "Side",
  43916. image: {
  43917. source: "./media/characters/zorkaiju/side.svg",
  43918. extra: 1495/1396,
  43919. bottom: 17/1512
  43920. }
  43921. },
  43922. sideExtended: {
  43923. height: math.unit(325, "feet"),
  43924. name: "Side (Extended)",
  43925. image: {
  43926. source: "./media/characters/zorkaiju/side-extended.svg",
  43927. extra: 1495/1396,
  43928. bottom: 17/1512
  43929. }
  43930. },
  43931. back: {
  43932. height: math.unit(325, "feet"),
  43933. name: "Back",
  43934. image: {
  43935. source: "./media/characters/zorkaiju/back.svg",
  43936. extra: 1959/1821,
  43937. bottom: 31/1990
  43938. }
  43939. },
  43940. backExtended: {
  43941. height: math.unit(325, "feet"),
  43942. name: "Back (Extended)",
  43943. image: {
  43944. source: "./media/characters/zorkaiju/back-extended.svg",
  43945. extra: 1959/1821,
  43946. bottom: 31/1990
  43947. }
  43948. },
  43949. hand: {
  43950. height: math.unit(58.4, "feet"),
  43951. name: "Hand",
  43952. image: {
  43953. source: "./media/characters/zorkaiju/hand.svg"
  43954. }
  43955. },
  43956. handExtended: {
  43957. height: math.unit(61.4, "feet"),
  43958. name: "Hand (Extended)",
  43959. image: {
  43960. source: "./media/characters/zorkaiju/hand-extended.svg"
  43961. }
  43962. },
  43963. foot: {
  43964. height: math.unit(95, "feet"),
  43965. name: "Foot",
  43966. image: {
  43967. source: "./media/characters/zorkaiju/foot.svg"
  43968. }
  43969. },
  43970. leftArm: {
  43971. height: math.unit(59, "feet"),
  43972. name: "Left Arm",
  43973. image: {
  43974. source: "./media/characters/zorkaiju/left-arm.svg"
  43975. }
  43976. },
  43977. rightArm: {
  43978. height: math.unit(59, "feet"),
  43979. name: "Right Arm",
  43980. image: {
  43981. source: "./media/characters/zorkaiju/right-arm.svg"
  43982. }
  43983. },
  43984. leftArmExtended: {
  43985. height: math.unit(59 * 1.033546, "feet"),
  43986. name: "Left Arm (Extended)",
  43987. image: {
  43988. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43989. }
  43990. },
  43991. rightArmExtended: {
  43992. height: math.unit(59 * 1.0496, "feet"),
  43993. name: "Right Arm (Extended)",
  43994. image: {
  43995. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43996. }
  43997. },
  43998. tail: {
  43999. height: math.unit(104, "feet"),
  44000. name: "Tail",
  44001. image: {
  44002. source: "./media/characters/zorkaiju/tail.svg"
  44003. }
  44004. },
  44005. tailExtended: {
  44006. height: math.unit(104, "feet"),
  44007. name: "Tail (Extended)",
  44008. image: {
  44009. source: "./media/characters/zorkaiju/tail-extended.svg"
  44010. }
  44011. },
  44012. tailBottom: {
  44013. height: math.unit(104, "feet"),
  44014. name: "Tail Bottom",
  44015. image: {
  44016. source: "./media/characters/zorkaiju/tail-bottom.svg"
  44017. }
  44018. },
  44019. crystal: {
  44020. height: math.unit(27.54, "feet"),
  44021. name: "Crystal",
  44022. image: {
  44023. source: "./media/characters/zorkaiju/crystal.svg"
  44024. }
  44025. },
  44026. },
  44027. [
  44028. {
  44029. name: "Kaiju",
  44030. height: math.unit(325, "feet"),
  44031. default: true
  44032. },
  44033. ]
  44034. ))
  44035. characterMakers.push(() => makeCharacter(
  44036. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  44037. {
  44038. front: {
  44039. height: math.unit(6 + 1/12, "feet"),
  44040. weight: math.unit(115, "lb"),
  44041. name: "Front",
  44042. image: {
  44043. source: "./media/characters/bailey-belfry/front.svg",
  44044. extra: 1240/1121,
  44045. bottom: 101/1341
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(6 + 1/12, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44059. {
  44060. side: {
  44061. height: math.unit(4, "meters"),
  44062. weight: math.unit(250, "kg"),
  44063. name: "Side",
  44064. image: {
  44065. source: "./media/characters/blacky/side.svg",
  44066. extra: 1027/919,
  44067. bottom: 43/1070
  44068. }
  44069. },
  44070. maw: {
  44071. height: math.unit(1, "meters"),
  44072. name: "Maw",
  44073. image: {
  44074. source: "./media/characters/blacky/maw.svg"
  44075. }
  44076. },
  44077. paw: {
  44078. height: math.unit(1, "meters"),
  44079. name: "Paw",
  44080. image: {
  44081. source: "./media/characters/blacky/paw.svg"
  44082. }
  44083. },
  44084. },
  44085. [
  44086. {
  44087. name: "Normal",
  44088. height: math.unit(4, "meters"),
  44089. default: true
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44095. {
  44096. front: {
  44097. height: math.unit(170, "cm"),
  44098. weight: math.unit(66, "kg"),
  44099. name: "Front",
  44100. image: {
  44101. source: "./media/characters/thux-ei/front.svg",
  44102. extra: 1109/1011,
  44103. bottom: 8/1117
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(170, "cm"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44117. {
  44118. front: {
  44119. height: math.unit(5, "feet"),
  44120. weight: math.unit(120, "lb"),
  44121. name: "Front",
  44122. image: {
  44123. source: "./media/characters/roxanne-voltaire/front.svg",
  44124. extra: 1901/1779,
  44125. bottom: 53/1954
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(5, "feet"),
  44133. default: true
  44134. },
  44135. {
  44136. name: "Giant",
  44137. height: math.unit(50, "feet")
  44138. },
  44139. {
  44140. name: "Titan",
  44141. height: math.unit(500, "feet")
  44142. },
  44143. {
  44144. name: "Macro",
  44145. height: math.unit(5000, "feet")
  44146. },
  44147. {
  44148. name: "Megamacro",
  44149. height: math.unit(50000, "feet")
  44150. },
  44151. {
  44152. name: "Gigamacro",
  44153. height: math.unit(500000, "feet")
  44154. },
  44155. {
  44156. name: "Teramacro",
  44157. height: math.unit(5e6, "feet")
  44158. },
  44159. ]
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(6 + 2/12, "feet"),
  44166. name: "Front",
  44167. image: {
  44168. source: "./media/characters/squeaks/front.svg",
  44169. extra: 1823/1768,
  44170. bottom: 138/1961
  44171. }
  44172. },
  44173. },
  44174. [
  44175. {
  44176. name: "Micro",
  44177. height: math.unit(0.5, "inches")
  44178. },
  44179. {
  44180. name: "Normal",
  44181. height: math.unit(6 + 2/12, "feet"),
  44182. default: true
  44183. },
  44184. {
  44185. name: "Macro",
  44186. height: math.unit(600, "feet")
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(1.72, "meters"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/archinger/front.svg",
  44198. extra: 1861/1675,
  44199. bottom: 125/1986
  44200. }
  44201. },
  44202. back: {
  44203. height: math.unit(1.72, "meters"),
  44204. name: "Back",
  44205. image: {
  44206. source: "./media/characters/archinger/back.svg",
  44207. extra: 1844/1701,
  44208. bottom: 104/1948
  44209. }
  44210. },
  44211. cock: {
  44212. height: math.unit(0.59, "feet"),
  44213. name: "Cock",
  44214. image: {
  44215. source: "./media/characters/archinger/cock.svg"
  44216. }
  44217. },
  44218. },
  44219. [
  44220. {
  44221. name: "Normal",
  44222. height: math.unit(1.72, "meters"),
  44223. default: true
  44224. },
  44225. {
  44226. name: "Macro",
  44227. height: math.unit(84, "meters")
  44228. },
  44229. {
  44230. name: "Macro+",
  44231. height: math.unit(112, "meters")
  44232. },
  44233. {
  44234. name: "Macro++",
  44235. height: math.unit(960, "meters")
  44236. },
  44237. {
  44238. name: "Macro+++",
  44239. height: math.unit(4, "km")
  44240. },
  44241. {
  44242. name: "Macro++++",
  44243. height: math.unit(48, "km")
  44244. },
  44245. {
  44246. name: "Macro+++++",
  44247. height: math.unit(4500, "km")
  44248. },
  44249. ]
  44250. ))
  44251. characterMakers.push(() => makeCharacter(
  44252. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44253. {
  44254. front: {
  44255. height: math.unit(5 + 5/12, "feet"),
  44256. name: "Front",
  44257. image: {
  44258. source: "./media/characters/alsnapz/front.svg",
  44259. extra: 1157/1065,
  44260. bottom: 42/1199
  44261. }
  44262. },
  44263. },
  44264. [
  44265. {
  44266. name: "Normal",
  44267. height: math.unit(5 + 5/12, "feet"),
  44268. default: true
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44274. {
  44275. side: {
  44276. height: math.unit(3.2, "earths"),
  44277. name: "Side",
  44278. image: {
  44279. source: "./media/characters/mag/side.svg",
  44280. extra: 1331/1008,
  44281. bottom: 52/1383
  44282. }
  44283. },
  44284. wing: {
  44285. height: math.unit(1.94, "earths"),
  44286. name: "Wing",
  44287. image: {
  44288. source: "./media/characters/mag/wing.svg"
  44289. }
  44290. },
  44291. dick: {
  44292. height: math.unit(1.8, "earths"),
  44293. name: "Dick",
  44294. image: {
  44295. source: "./media/characters/mag/dick.svg"
  44296. }
  44297. },
  44298. ass: {
  44299. height: math.unit(1.33, "earths"),
  44300. name: "Ass",
  44301. image: {
  44302. source: "./media/characters/mag/ass.svg"
  44303. }
  44304. },
  44305. head: {
  44306. height: math.unit(1.1, "earths"),
  44307. name: "Head",
  44308. image: {
  44309. source: "./media/characters/mag/head.svg"
  44310. }
  44311. },
  44312. maw: {
  44313. height: math.unit(1.62, "earths"),
  44314. name: "Maw",
  44315. image: {
  44316. source: "./media/characters/mag/maw.svg"
  44317. }
  44318. },
  44319. },
  44320. [
  44321. {
  44322. name: "Small",
  44323. height: math.unit(162, "feet")
  44324. },
  44325. {
  44326. name: "Normal",
  44327. height: math.unit(3.2, "earths"),
  44328. default: true
  44329. },
  44330. ]
  44331. ))
  44332. characterMakers.push(() => makeCharacter(
  44333. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44334. {
  44335. front: {
  44336. height: math.unit(512, "feet"),
  44337. weight: math.unit(63509, "tonnes"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/vorrel-harroc/front.svg",
  44341. extra: 1075/1063,
  44342. bottom: 62/1137
  44343. }
  44344. },
  44345. },
  44346. [
  44347. {
  44348. name: "Normal",
  44349. height: math.unit(10, "feet")
  44350. },
  44351. {
  44352. name: "Macro",
  44353. height: math.unit(512, "feet"),
  44354. default: true
  44355. },
  44356. {
  44357. name: "Megamacro",
  44358. height: math.unit(256, "miles")
  44359. },
  44360. {
  44361. name: "Gigamacro",
  44362. height: math.unit(4096, "miles")
  44363. },
  44364. ]
  44365. ))
  44366. characterMakers.push(() => makeCharacter(
  44367. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44368. {
  44369. side: {
  44370. height: math.unit(50, "feet"),
  44371. name: "Side",
  44372. image: {
  44373. source: "./media/characters/froimar/side.svg",
  44374. extra: 855/638,
  44375. bottom: 99/954
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Macro",
  44382. height: math.unit(50, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44389. {
  44390. front: {
  44391. height: math.unit(210, "miles"),
  44392. name: "Front",
  44393. image: {
  44394. source: "./media/characters/timothy/front.svg",
  44395. extra: 1007/943,
  44396. bottom: 62/1069
  44397. }
  44398. },
  44399. frontSkirt: {
  44400. height: math.unit(210, "miles"),
  44401. name: "Front (Skirt)",
  44402. image: {
  44403. source: "./media/characters/timothy/front-skirt.svg",
  44404. extra: 1007/943,
  44405. bottom: 62/1069
  44406. }
  44407. },
  44408. frontCoat: {
  44409. height: math.unit(210, "miles"),
  44410. name: "Front (Coat)",
  44411. image: {
  44412. source: "./media/characters/timothy/front-coat.svg",
  44413. extra: 1007/943,
  44414. bottom: 62/1069
  44415. }
  44416. },
  44417. },
  44418. [
  44419. {
  44420. name: "Macro",
  44421. height: math.unit(210, "miles"),
  44422. default: true
  44423. },
  44424. {
  44425. name: "Megamacro",
  44426. height: math.unit(210000, "miles")
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44432. {
  44433. front: {
  44434. height: math.unit(188, "feet"),
  44435. name: "Front",
  44436. image: {
  44437. source: "./media/characters/pyotr/front.svg",
  44438. extra: 1912/1826,
  44439. bottom: 18/1930
  44440. }
  44441. },
  44442. },
  44443. [
  44444. {
  44445. name: "Macro",
  44446. height: math.unit(188, "feet"),
  44447. default: true
  44448. },
  44449. {
  44450. name: "Megamacro",
  44451. height: math.unit(8, "miles")
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44457. {
  44458. side: {
  44459. height: math.unit(10, "feet"),
  44460. weight: math.unit(4500, "lb"),
  44461. name: "Side",
  44462. image: {
  44463. source: "./media/characters/ackart/side.svg",
  44464. extra: 1776/1668,
  44465. bottom: 116/1892
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(10, "feet"),
  44473. default: true
  44474. },
  44475. ]
  44476. ))
  44477. characterMakers.push(() => makeCharacter(
  44478. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44479. {
  44480. side: {
  44481. height: math.unit(21, "feet"),
  44482. name: "Side",
  44483. image: {
  44484. source: "./media/characters/nolow/side.svg",
  44485. extra: 1484/1434,
  44486. bottom: 85/1569
  44487. }
  44488. },
  44489. sideErect: {
  44490. height: math.unit(21, "feet"),
  44491. name: "Side (Erect)",
  44492. image: {
  44493. source: "./media/characters/nolow/side-erect.svg",
  44494. extra: 1484/1434,
  44495. bottom: 85/1569
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Regular",
  44502. height: math.unit(12, "feet")
  44503. },
  44504. {
  44505. name: "Big Chee",
  44506. height: math.unit(21, "feet"),
  44507. default: true
  44508. },
  44509. ]
  44510. ))
  44511. characterMakers.push(() => makeCharacter(
  44512. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44513. {
  44514. front: {
  44515. height: math.unit(7, "feet"),
  44516. weight: math.unit(250, "lb"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/nines/front.svg",
  44520. extra: 1741/1607,
  44521. bottom: 41/1782
  44522. }
  44523. },
  44524. side: {
  44525. height: math.unit(7, "feet"),
  44526. weight: math.unit(250, "lb"),
  44527. name: "Side",
  44528. image: {
  44529. source: "./media/characters/nines/side.svg",
  44530. extra: 1854/1735,
  44531. bottom: 93/1947
  44532. }
  44533. },
  44534. back: {
  44535. height: math.unit(7, "feet"),
  44536. weight: math.unit(250, "lb"),
  44537. name: "Back",
  44538. image: {
  44539. source: "./media/characters/nines/back.svg",
  44540. extra: 1748/1615,
  44541. bottom: 20/1768
  44542. }
  44543. },
  44544. },
  44545. [
  44546. {
  44547. name: "Megamacro",
  44548. height: math.unit(99, "km"),
  44549. default: true
  44550. },
  44551. ]
  44552. ))
  44553. characterMakers.push(() => makeCharacter(
  44554. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44555. {
  44556. front: {
  44557. height: math.unit(5 + 10/12, "feet"),
  44558. weight: math.unit(210, "lb"),
  44559. name: "Front",
  44560. image: {
  44561. source: "./media/characters/zenith/front.svg",
  44562. extra: 1531/1452,
  44563. bottom: 198/1729
  44564. }
  44565. },
  44566. back: {
  44567. height: math.unit(5 + 10/12, "feet"),
  44568. weight: math.unit(210, "lb"),
  44569. name: "Back",
  44570. image: {
  44571. source: "./media/characters/zenith/back.svg",
  44572. extra: 1571/1487,
  44573. bottom: 75/1646
  44574. }
  44575. },
  44576. },
  44577. [
  44578. {
  44579. name: "Normal",
  44580. height: math.unit(5 + 10/12, "feet"),
  44581. default: true
  44582. }
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(4, "feet"),
  44590. weight: math.unit(60, "lb"),
  44591. name: "Front",
  44592. image: {
  44593. source: "./media/characters/jasper/front.svg",
  44594. extra: 1450/1379,
  44595. bottom: 19/1469
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(4, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(6 + 5/12, "feet"),
  44612. weight: math.unit(290, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/tiberius-thyben/front.svg",
  44616. extra: 757/739,
  44617. bottom: 39/796
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Micro",
  44624. height: math.unit(1.5, "inches")
  44625. },
  44626. {
  44627. name: "Normal",
  44628. height: math.unit(6 + 5/12, "feet"),
  44629. default: true
  44630. },
  44631. {
  44632. name: "Macro",
  44633. height: math.unit(300, "feet")
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(5 + 6/12, "feet"),
  44642. weight: math.unit(60, "kg"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/sabre/front.svg",
  44646. extra: 738/671,
  44647. bottom: 27/765
  44648. }
  44649. },
  44650. },
  44651. [
  44652. {
  44653. name: "Teeny",
  44654. height: math.unit(2, "inches")
  44655. },
  44656. {
  44657. name: "Smol",
  44658. height: math.unit(8, "inches")
  44659. },
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(5 + 6/12, "feet"),
  44663. default: true
  44664. },
  44665. {
  44666. name: "Mini-Macro",
  44667. height: math.unit(15, "feet")
  44668. },
  44669. {
  44670. name: "Macro",
  44671. height: math.unit(50, "feet")
  44672. },
  44673. ]
  44674. ))
  44675. characterMakers.push(() => makeCharacter(
  44676. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44677. {
  44678. front: {
  44679. height: math.unit(6 + 4/12, "feet"),
  44680. weight: math.unit(170, "lb"),
  44681. name: "Front",
  44682. image: {
  44683. source: "./media/characters/charlie/front.svg",
  44684. extra: 1348/1228,
  44685. bottom: 15/1363
  44686. }
  44687. },
  44688. },
  44689. [
  44690. {
  44691. name: "Macro",
  44692. height: math.unit(1700, "meters"),
  44693. default: true
  44694. },
  44695. {
  44696. name: "MegaMacro",
  44697. height: math.unit(20400, "meters")
  44698. },
  44699. ]
  44700. ))
  44701. characterMakers.push(() => makeCharacter(
  44702. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44703. {
  44704. front: {
  44705. height: math.unit(1.96, "meters"),
  44706. weight: math.unit(220, "lb"),
  44707. name: "Front",
  44708. image: {
  44709. source: "./media/characters/susan-grant/front.svg",
  44710. extra: 482/478,
  44711. bottom: 7/489
  44712. }
  44713. },
  44714. },
  44715. [
  44716. {
  44717. name: "Normal",
  44718. height: math.unit(1.96, "meters"),
  44719. default: true
  44720. },
  44721. {
  44722. name: "Macro",
  44723. height: math.unit(76.2, "meters")
  44724. },
  44725. {
  44726. name: "MegaMacro",
  44727. height: math.unit(305, "meters")
  44728. },
  44729. {
  44730. name: "GigaMacro",
  44731. height: math.unit(1220, "meters")
  44732. },
  44733. {
  44734. name: "SuperMacro",
  44735. height: math.unit(4878, "meters")
  44736. },
  44737. ]
  44738. ))
  44739. characterMakers.push(() => makeCharacter(
  44740. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44741. {
  44742. front: {
  44743. height: math.unit(5 + 4/12, "feet"),
  44744. weight: math.unit(110, "lb"),
  44745. name: "Front",
  44746. image: {
  44747. source: "./media/characters/axel-isanov/front.svg",
  44748. extra: 1096/1065,
  44749. bottom: 13/1109
  44750. }
  44751. },
  44752. },
  44753. [
  44754. {
  44755. name: "Normal",
  44756. height: math.unit(5 + 4/12, "feet"),
  44757. default: true
  44758. },
  44759. ]
  44760. ))
  44761. characterMakers.push(() => makeCharacter(
  44762. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44763. {
  44764. front: {
  44765. height: math.unit(9, "feet"),
  44766. weight: math.unit(467, "lb"),
  44767. name: "Front",
  44768. image: {
  44769. source: "./media/characters/necahual/front.svg",
  44770. extra: 920/873,
  44771. bottom: 26/946
  44772. }
  44773. },
  44774. back: {
  44775. height: math.unit(9, "feet"),
  44776. weight: math.unit(467, "lb"),
  44777. name: "Back",
  44778. image: {
  44779. source: "./media/characters/necahual/back.svg",
  44780. extra: 930/884,
  44781. bottom: 16/946
  44782. }
  44783. },
  44784. frontUnderwear: {
  44785. height: math.unit(9, "feet"),
  44786. weight: math.unit(467, "lb"),
  44787. name: "Front (Underwear)",
  44788. image: {
  44789. source: "./media/characters/necahual/front-underwear.svg",
  44790. extra: 920/873,
  44791. bottom: 26/946
  44792. }
  44793. },
  44794. frontDressed: {
  44795. height: math.unit(9, "feet"),
  44796. weight: math.unit(467, "lb"),
  44797. name: "Front (Dressed)",
  44798. image: {
  44799. source: "./media/characters/necahual/front-dressed.svg",
  44800. extra: 920/873,
  44801. bottom: 26/946
  44802. }
  44803. },
  44804. },
  44805. [
  44806. {
  44807. name: "Comprsesed",
  44808. height: math.unit(9, "feet")
  44809. },
  44810. {
  44811. name: "Natural",
  44812. height: math.unit(15, "feet"),
  44813. default: true
  44814. },
  44815. {
  44816. name: "Boosted",
  44817. height: math.unit(50, "feet")
  44818. },
  44819. {
  44820. name: "Boosted+",
  44821. height: math.unit(150, "feet")
  44822. },
  44823. {
  44824. name: "Max",
  44825. height: math.unit(500, "feet")
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44831. {
  44832. front: {
  44833. height: math.unit(22 + 1/12, "feet"),
  44834. weight: math.unit(3200, "lb"),
  44835. name: "Front",
  44836. image: {
  44837. source: "./media/characters/theo-acacia/front.svg",
  44838. extra: 1796/1741,
  44839. bottom: 83/1879
  44840. }
  44841. },
  44842. frontUnderwear: {
  44843. height: math.unit(22 + 1/12, "feet"),
  44844. weight: math.unit(3200, "lb"),
  44845. name: "Front (Underwear)",
  44846. image: {
  44847. source: "./media/characters/theo-acacia/front-underwear.svg",
  44848. extra: 1796/1741,
  44849. bottom: 83/1879
  44850. }
  44851. },
  44852. frontNude: {
  44853. height: math.unit(22 + 1/12, "feet"),
  44854. weight: math.unit(3200, "lb"),
  44855. name: "Front (Nude)",
  44856. image: {
  44857. source: "./media/characters/theo-acacia/front-nude.svg",
  44858. extra: 1796/1741,
  44859. bottom: 83/1879
  44860. }
  44861. },
  44862. },
  44863. [
  44864. {
  44865. name: "Normal",
  44866. height: math.unit(22 + 1/12, "feet"),
  44867. default: true
  44868. },
  44869. ]
  44870. ))
  44871. characterMakers.push(() => makeCharacter(
  44872. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44873. {
  44874. front: {
  44875. height: math.unit(20, "feet"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/astra/front.svg",
  44879. extra: 1850/1714,
  44880. bottom: 106/1956
  44881. }
  44882. },
  44883. frontUndressed: {
  44884. height: math.unit(20, "feet"),
  44885. name: "Front (Undressed)",
  44886. image: {
  44887. source: "./media/characters/astra/front-undressed.svg",
  44888. extra: 1926/1749,
  44889. bottom: 0/1926
  44890. }
  44891. },
  44892. hand: {
  44893. height: math.unit(1.53, "feet"),
  44894. name: "Hand",
  44895. image: {
  44896. source: "./media/characters/astra/hand.svg"
  44897. }
  44898. },
  44899. paw: {
  44900. height: math.unit(1.53, "feet"),
  44901. name: "Paw",
  44902. image: {
  44903. source: "./media/characters/astra/paw.svg"
  44904. }
  44905. },
  44906. },
  44907. [
  44908. {
  44909. name: "Smallest",
  44910. height: math.unit(20, "feet")
  44911. },
  44912. {
  44913. name: "Normal",
  44914. height: math.unit(1e9, "miles"),
  44915. default: true
  44916. },
  44917. {
  44918. name: "Larger",
  44919. height: math.unit(5, "multiverses")
  44920. },
  44921. {
  44922. name: "Largest",
  44923. height: math.unit(1e9, "multiverses")
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44929. {
  44930. front: {
  44931. height: math.unit(8, "feet"),
  44932. name: "Front",
  44933. image: {
  44934. source: "./media/characters/breanna/front.svg",
  44935. extra: 1912/1632,
  44936. bottom: 33/1945
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Smallest",
  44943. height: math.unit(8, "feet")
  44944. },
  44945. {
  44946. name: "Normal",
  44947. height: math.unit(1, "mile"),
  44948. default: true
  44949. },
  44950. {
  44951. name: "Maximum",
  44952. height: math.unit(1500000000000, "lightyears")
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44958. {
  44959. front: {
  44960. height: math.unit(5 + 11/12, "feet"),
  44961. weight: math.unit(155, "lb"),
  44962. name: "Front",
  44963. image: {
  44964. source: "./media/characters/cai/front.svg",
  44965. extra: 1823/1702,
  44966. bottom: 32/1855
  44967. }
  44968. },
  44969. back: {
  44970. height: math.unit(5 + 11/12, "feet"),
  44971. weight: math.unit(155, "lb"),
  44972. name: "Back",
  44973. image: {
  44974. source: "./media/characters/cai/back.svg",
  44975. extra: 1809/1708,
  44976. bottom: 31/1840
  44977. }
  44978. },
  44979. },
  44980. [
  44981. {
  44982. name: "Normal",
  44983. height: math.unit(5 + 11/12, "feet"),
  44984. default: true
  44985. },
  44986. {
  44987. name: "Big",
  44988. height: math.unit(15, "feet")
  44989. },
  44990. {
  44991. name: "Macro",
  44992. height: math.unit(200, "feet")
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44998. {
  44999. front: {
  45000. height: math.unit(5 + 6/12, "feet"),
  45001. weight: math.unit(160, "lb"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/zanna-virtuedòttir/front.svg",
  45005. extra: 1227/1174,
  45006. bottom: 37/1264
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Macro",
  45013. height: math.unit(444, "meters"),
  45014. default: true
  45015. },
  45016. ]
  45017. ))
  45018. characterMakers.push(() => makeCharacter(
  45019. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  45020. {
  45021. front: {
  45022. height: math.unit(18 + 7/12, "feet"),
  45023. name: "Front",
  45024. image: {
  45025. source: "./media/characters/rex/front.svg",
  45026. extra: 1941/1807,
  45027. bottom: 66/2007
  45028. }
  45029. },
  45030. back: {
  45031. height: math.unit(18 + 7/12, "feet"),
  45032. name: "Back",
  45033. image: {
  45034. source: "./media/characters/rex/back.svg",
  45035. extra: 1937/1822,
  45036. bottom: 42/1979
  45037. }
  45038. },
  45039. boot: {
  45040. height: math.unit(3.45, "feet"),
  45041. name: "Boot",
  45042. image: {
  45043. source: "./media/characters/rex/boot.svg"
  45044. }
  45045. },
  45046. paw: {
  45047. height: math.unit(4.17, "feet"),
  45048. name: "Paw",
  45049. image: {
  45050. source: "./media/characters/rex/paw.svg"
  45051. }
  45052. },
  45053. head: {
  45054. height: math.unit(6.728, "feet"),
  45055. name: "Head",
  45056. image: {
  45057. source: "./media/characters/rex/head.svg"
  45058. }
  45059. },
  45060. },
  45061. [
  45062. {
  45063. name: "Nano",
  45064. height: math.unit(18 + 7/12, "feet")
  45065. },
  45066. {
  45067. name: "Micro",
  45068. height: math.unit(1.5, "megameters")
  45069. },
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(440, "megameters"),
  45073. default: true
  45074. },
  45075. {
  45076. name: "Macro",
  45077. height: math.unit(2.5, "gigameters")
  45078. },
  45079. {
  45080. name: "Gigamacro",
  45081. height: math.unit(2, "galaxies")
  45082. },
  45083. ]
  45084. ))
  45085. characterMakers.push(() => makeCharacter(
  45086. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45087. {
  45088. side: {
  45089. height: math.unit(32, "feet"),
  45090. weight: math.unit(250000, "lb"),
  45091. name: "Side",
  45092. image: {
  45093. source: "./media/characters/silverwing/side.svg",
  45094. extra: 1100/1019,
  45095. bottom: 204/1304
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Normal",
  45102. height: math.unit(32, "feet"),
  45103. default: true
  45104. },
  45105. ]
  45106. ))
  45107. characterMakers.push(() => makeCharacter(
  45108. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45109. {
  45110. skunkFront: {
  45111. height: math.unit(4 + 6/12, "feet"),
  45112. weight: math.unit(120, "lb"),
  45113. name: "Front",
  45114. image: {
  45115. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45116. extra: 330/318,
  45117. bottom: 25/355
  45118. },
  45119. form: "skunk",
  45120. default: true
  45121. },
  45122. alolanUmbraichu_front: {
  45123. height: math.unit(2 + 6/12, "feet"),
  45124. name: "Front",
  45125. image: {
  45126. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45127. extra: 389/350,
  45128. bottom: 33/422
  45129. },
  45130. form: "alolan-umbraichu",
  45131. default: true
  45132. },
  45133. },
  45134. [
  45135. {
  45136. name: "Normal",
  45137. height: math.unit(4 + 6/12, "feet"),
  45138. form: "skunk",
  45139. default: true
  45140. },
  45141. {
  45142. name: "Normal",
  45143. height: math.unit(2 + 6/12, "feet"),
  45144. form: "alolan-umbraichu",
  45145. default: true
  45146. },
  45147. ],
  45148. {
  45149. "skunk": {
  45150. name: "Skunk",
  45151. default: true
  45152. },
  45153. "alolan-umbraichu": {
  45154. name: "Alolan Umbraichu",
  45155. },
  45156. }
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45160. {
  45161. front: {
  45162. height: math.unit(5 + 11/12, "feet"),
  45163. weight: math.unit(190, "lb"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/mizu/front.svg",
  45167. extra: 1988/1788,
  45168. bottom: 14/2002
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Normal",
  45175. height: math.unit(5 + 11/12, "feet"),
  45176. default: true
  45177. },
  45178. ]
  45179. ))
  45180. characterMakers.push(() => makeCharacter(
  45181. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45182. {
  45183. front: {
  45184. height: math.unit(1.7, "feet"),
  45185. weight: math.unit(50, "lb"),
  45186. name: "Front",
  45187. image: {
  45188. source: "./media/characters/dechroma/front.svg",
  45189. extra: 1095/859,
  45190. bottom: 64/1159
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(1.7, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45204. {
  45205. side: {
  45206. height: math.unit(30, "feet"),
  45207. name: "Side",
  45208. image: {
  45209. source: "./media/characters/veluren-thanazel/side.svg",
  45210. extra: 1611/633,
  45211. bottom: 118/1729
  45212. }
  45213. },
  45214. front: {
  45215. height: math.unit(30, "feet"),
  45216. name: "Front",
  45217. image: {
  45218. source: "./media/characters/veluren-thanazel/front.svg",
  45219. extra: 1486/636,
  45220. bottom: 238/1724
  45221. }
  45222. },
  45223. head: {
  45224. height: math.unit(21.4, "feet"),
  45225. name: "Head",
  45226. image: {
  45227. source: "./media/characters/veluren-thanazel/head.svg"
  45228. }
  45229. },
  45230. genitals: {
  45231. height: math.unit(19.4, "feet"),
  45232. name: "Genitals",
  45233. image: {
  45234. source: "./media/characters/veluren-thanazel/genitals.svg"
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Social",
  45241. height: math.unit(6, "feet")
  45242. },
  45243. {
  45244. name: "Play",
  45245. height: math.unit(12, "feet")
  45246. },
  45247. {
  45248. name: "True",
  45249. height: math.unit(30, "feet"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45256. {
  45257. front: {
  45258. height: math.unit(7 + 6/12, "feet"),
  45259. weight: math.unit(500, "kg"),
  45260. name: "Front",
  45261. image: {
  45262. source: "./media/characters/arcturas/front.svg",
  45263. extra: 1700/1500,
  45264. bottom: 145/1845
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(7 + 6/12, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45278. {
  45279. side: {
  45280. height: math.unit(6, "feet"),
  45281. weight: math.unit(2, "tons"),
  45282. name: "Side",
  45283. image: {
  45284. source: "./media/characters/vitaen/side.svg",
  45285. extra: 1157/617,
  45286. bottom: 122/1279
  45287. }
  45288. },
  45289. },
  45290. [
  45291. {
  45292. name: "Normal",
  45293. height: math.unit(6, "feet"),
  45294. default: true
  45295. },
  45296. ]
  45297. ))
  45298. characterMakers.push(() => makeCharacter(
  45299. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45300. {
  45301. front: {
  45302. height: math.unit(19, "feet"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/fia-dreamweaver/front.svg",
  45306. extra: 1630/1504,
  45307. bottom: 25/1655
  45308. }
  45309. },
  45310. },
  45311. [
  45312. {
  45313. name: "Normal",
  45314. height: math.unit(19, "feet"),
  45315. default: true
  45316. },
  45317. ]
  45318. ))
  45319. characterMakers.push(() => makeCharacter(
  45320. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45321. {
  45322. front: {
  45323. height: math.unit(5 + 4/12, "feet"),
  45324. name: "Front",
  45325. image: {
  45326. source: "./media/characters/artan/front.svg",
  45327. extra: 1618/1535,
  45328. bottom: 46/1664
  45329. }
  45330. },
  45331. back: {
  45332. height: math.unit(5 + 4/12, "feet"),
  45333. name: "Back",
  45334. image: {
  45335. source: "./media/characters/artan/back.svg",
  45336. extra: 1618/1543,
  45337. bottom: 31/1649
  45338. }
  45339. },
  45340. },
  45341. [
  45342. {
  45343. name: "Normal",
  45344. height: math.unit(5 + 4/12, "feet"),
  45345. default: true
  45346. },
  45347. ]
  45348. ))
  45349. characterMakers.push(() => makeCharacter(
  45350. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45351. {
  45352. side: {
  45353. height: math.unit(182, "cm"),
  45354. weight: math.unit(1000, "lb"),
  45355. name: "Side",
  45356. image: {
  45357. source: "./media/characters/silver-dragon/side.svg",
  45358. extra: 710/287,
  45359. bottom: 88/798
  45360. }
  45361. },
  45362. },
  45363. [
  45364. {
  45365. name: "Normal",
  45366. height: math.unit(182, "cm"),
  45367. default: true
  45368. },
  45369. ]
  45370. ))
  45371. characterMakers.push(() => makeCharacter(
  45372. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45373. {
  45374. side: {
  45375. height: math.unit(6 + 6/12, "feet"),
  45376. weight: math.unit(1.5, "tons"),
  45377. name: "Side",
  45378. image: {
  45379. source: "./media/characters/zephyr/side.svg",
  45380. extra: 1436/603,
  45381. bottom: 105/1541
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(6 + 6/12, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45395. {
  45396. side: {
  45397. height: math.unit(1, "feet"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/vixye/side.svg",
  45401. extra: 632/541,
  45402. bottom: 0/632
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(1, "feet"),
  45410. default: true
  45411. },
  45412. {
  45413. name: "True",
  45414. height: math.unit(1e15, "multiverses")
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(8 + 2/12, "feet"),
  45423. weight: math.unit(650, "lb"),
  45424. name: "Front",
  45425. image: {
  45426. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45427. extra: 1174/1137,
  45428. bottom: 82/1256
  45429. }
  45430. },
  45431. back: {
  45432. height: math.unit(8 + 2/12, "feet"),
  45433. weight: math.unit(650, "lb"),
  45434. name: "Back",
  45435. image: {
  45436. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45437. extra: 1204/1157,
  45438. bottom: 46/1250
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Wildform",
  45445. height: math.unit(8 + 2/12, "feet"),
  45446. default: true
  45447. },
  45448. ]
  45449. ))
  45450. characterMakers.push(() => makeCharacter(
  45451. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45452. {
  45453. front: {
  45454. height: math.unit(18, "feet"),
  45455. name: "Front",
  45456. image: {
  45457. source: "./media/characters/cyphin/front.svg",
  45458. extra: 970/886,
  45459. bottom: 42/1012
  45460. }
  45461. },
  45462. back: {
  45463. height: math.unit(18, "feet"),
  45464. name: "Back",
  45465. image: {
  45466. source: "./media/characters/cyphin/back.svg",
  45467. extra: 1009/894,
  45468. bottom: 24/1033
  45469. }
  45470. },
  45471. head: {
  45472. height: math.unit(5.05, "feet"),
  45473. name: "Head",
  45474. image: {
  45475. source: "./media/characters/cyphin/head.svg"
  45476. }
  45477. },
  45478. tailbud: {
  45479. height: math.unit(5, "feet"),
  45480. name: "Tailbud",
  45481. image: {
  45482. source: "./media/characters/cyphin/tailbud.svg"
  45483. }
  45484. },
  45485. },
  45486. [
  45487. ]
  45488. ))
  45489. characterMakers.push(() => makeCharacter(
  45490. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45491. {
  45492. side: {
  45493. height: math.unit(10, "feet"),
  45494. weight: math.unit(6, "tons"),
  45495. name: "Side",
  45496. image: {
  45497. source: "./media/characters/raijin/side.svg",
  45498. extra: 1529/613,
  45499. bottom: 337/1866
  45500. }
  45501. },
  45502. },
  45503. [
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(10, "feet"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45513. {
  45514. side: {
  45515. height: math.unit(9, "feet"),
  45516. name: "Side",
  45517. image: {
  45518. source: "./media/characters/nilghais/side.svg",
  45519. extra: 1047/744,
  45520. bottom: 91/1138
  45521. }
  45522. },
  45523. head: {
  45524. height: math.unit(3.14, "feet"),
  45525. name: "Head",
  45526. image: {
  45527. source: "./media/characters/nilghais/head.svg"
  45528. }
  45529. },
  45530. mouth: {
  45531. height: math.unit(4.6, "feet"),
  45532. name: "Mouth",
  45533. image: {
  45534. source: "./media/characters/nilghais/mouth.svg"
  45535. }
  45536. },
  45537. wings: {
  45538. height: math.unit(24, "feet"),
  45539. name: "Wings",
  45540. image: {
  45541. source: "./media/characters/nilghais/wings.svg"
  45542. }
  45543. },
  45544. ass: {
  45545. height: math.unit(6.12, "feet"),
  45546. name: "Ass",
  45547. image: {
  45548. source: "./media/characters/nilghais/ass.svg"
  45549. }
  45550. },
  45551. },
  45552. [
  45553. {
  45554. name: "Normal",
  45555. height: math.unit(9, "feet"),
  45556. default: true
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45562. {
  45563. regular: {
  45564. height: math.unit(16 + 2/12, "feet"),
  45565. weight: math.unit(2300, "lb"),
  45566. name: "Regular",
  45567. image: {
  45568. source: "./media/characters/zolgar/regular.svg",
  45569. extra: 1246/1004,
  45570. bottom: 124/1370
  45571. }
  45572. },
  45573. boxers: {
  45574. height: math.unit(16 + 2/12, "feet"),
  45575. weight: math.unit(2300, "lb"),
  45576. name: "Boxers",
  45577. image: {
  45578. source: "./media/characters/zolgar/boxers.svg",
  45579. extra: 1246/1004,
  45580. bottom: 124/1370
  45581. }
  45582. },
  45583. armored: {
  45584. height: math.unit(16 + 2/12, "feet"),
  45585. weight: math.unit(2300, "lb"),
  45586. name: "Armored",
  45587. image: {
  45588. source: "./media/characters/zolgar/armored.svg",
  45589. extra: 1246/1004,
  45590. bottom: 124/1370
  45591. }
  45592. },
  45593. goth: {
  45594. height: math.unit(16 + 2/12, "feet"),
  45595. weight: math.unit(2300, "lb"),
  45596. name: "Goth",
  45597. image: {
  45598. source: "./media/characters/zolgar/goth.svg",
  45599. extra: 1246/1004,
  45600. bottom: 124/1370
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Shrunken Down",
  45607. height: math.unit(9 + 2/12, "feet")
  45608. },
  45609. {
  45610. name: "Normal",
  45611. height: math.unit(16 + 2/12, "feet"),
  45612. default: true
  45613. },
  45614. ]
  45615. ))
  45616. characterMakers.push(() => makeCharacter(
  45617. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45618. {
  45619. front: {
  45620. height: math.unit(6, "feet"),
  45621. weight: math.unit(168, "lb"),
  45622. name: "Front",
  45623. image: {
  45624. source: "./media/characters/luca/front.svg",
  45625. extra: 841/667,
  45626. bottom: 102/943
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(6, "feet"),
  45634. default: true
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45640. {
  45641. side: {
  45642. height: math.unit(7 + 3/12, "feet"),
  45643. weight: math.unit(312, "lb"),
  45644. name: "Side",
  45645. image: {
  45646. source: "./media/characters/zezo/side.svg",
  45647. extra: 1192/1067,
  45648. bottom: 63/1255
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(7 + 3/12, "feet"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(5 + 5/12, "feet"),
  45665. weight: math.unit(170, "lb"),
  45666. name: "Front",
  45667. image: {
  45668. source: "./media/characters/mayso/front.svg",
  45669. extra: 1215/1108,
  45670. bottom: 16/1231
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(5 + 5/12, "feet"),
  45678. default: true
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45684. {
  45685. front: {
  45686. height: math.unit(4 + 3/12, "feet"),
  45687. weight: math.unit(80, "lb"),
  45688. name: "Front",
  45689. image: {
  45690. source: "./media/characters/hess/front.svg",
  45691. extra: 1200/1123,
  45692. bottom: 16/1216
  45693. }
  45694. },
  45695. },
  45696. [
  45697. {
  45698. name: "Normal",
  45699. height: math.unit(4 + 3/12, "feet"),
  45700. default: true
  45701. },
  45702. ]
  45703. ))
  45704. characterMakers.push(() => makeCharacter(
  45705. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45706. {
  45707. front: {
  45708. height: math.unit(1.9, "meters"),
  45709. name: "Front",
  45710. image: {
  45711. source: "./media/characters/ashgar/front.svg",
  45712. extra: 1177/1146,
  45713. bottom: 99/1276
  45714. }
  45715. },
  45716. back: {
  45717. height: math.unit(1.9, "meters"),
  45718. name: "Back",
  45719. image: {
  45720. source: "./media/characters/ashgar/back.svg",
  45721. extra: 1201/1183,
  45722. bottom: 53/1254
  45723. }
  45724. },
  45725. feral: {
  45726. height: math.unit(1.4, "meters"),
  45727. name: "Feral",
  45728. image: {
  45729. source: "./media/characters/ashgar/feral.svg",
  45730. extra: 370/345,
  45731. bottom: 45/415
  45732. }
  45733. },
  45734. },
  45735. [
  45736. {
  45737. name: "Normal",
  45738. height: math.unit(1.9, "meters"),
  45739. default: true
  45740. },
  45741. ]
  45742. ))
  45743. characterMakers.push(() => makeCharacter(
  45744. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45745. {
  45746. regular: {
  45747. height: math.unit(6, "feet"),
  45748. weight: math.unit(220, "lb"),
  45749. name: "Regular",
  45750. image: {
  45751. source: "./media/characters/phillip/regular.svg",
  45752. extra: 1373/1277,
  45753. bottom: 75/1448
  45754. }
  45755. },
  45756. dressed: {
  45757. height: math.unit(6, "feet"),
  45758. weight: math.unit(220, "lb"),
  45759. name: "Dressed",
  45760. image: {
  45761. source: "./media/characters/phillip/dressed.svg",
  45762. extra: 1373/1277,
  45763. bottom: 75/1448
  45764. }
  45765. },
  45766. paw: {
  45767. height: math.unit(1.44, "feet"),
  45768. name: "Paw",
  45769. image: {
  45770. source: "./media/characters/phillip/paw.svg"
  45771. }
  45772. },
  45773. },
  45774. [
  45775. {
  45776. name: "Normal",
  45777. height: math.unit(6, "feet"),
  45778. default: true
  45779. },
  45780. ]
  45781. ))
  45782. characterMakers.push(() => makeCharacter(
  45783. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45784. {
  45785. side: {
  45786. height: math.unit(42, "feet"),
  45787. name: "Side",
  45788. image: {
  45789. source: "./media/characters/uvula/side.svg",
  45790. extra: 683/586,
  45791. bottom: 60/743
  45792. }
  45793. },
  45794. front: {
  45795. height: math.unit(42, "feet"),
  45796. name: "Front",
  45797. image: {
  45798. source: "./media/characters/uvula/front.svg",
  45799. extra: 705/613,
  45800. bottom: 54/759
  45801. }
  45802. },
  45803. maw: {
  45804. height: math.unit(23.5, "feet"),
  45805. name: "Maw",
  45806. image: {
  45807. source: "./media/characters/uvula/maw.svg"
  45808. }
  45809. },
  45810. },
  45811. [
  45812. {
  45813. name: "Original Size",
  45814. height: math.unit(14, "inches")
  45815. },
  45816. {
  45817. name: "Human Size",
  45818. height: math.unit(6, "feet")
  45819. },
  45820. {
  45821. name: "Big",
  45822. height: math.unit(42, "feet"),
  45823. default: true
  45824. },
  45825. {
  45826. name: "Bigger",
  45827. height: math.unit(100, "feet")
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45833. {
  45834. front: {
  45835. height: math.unit(5 + 11/12, "feet"),
  45836. name: "Front",
  45837. image: {
  45838. source: "./media/characters/lannah/front.svg",
  45839. extra: 1208/1113,
  45840. bottom: 97/1305
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(5 + 11/12, "feet"),
  45848. default: true
  45849. },
  45850. ]
  45851. ))
  45852. characterMakers.push(() => makeCharacter(
  45853. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45854. {
  45855. front: {
  45856. height: math.unit(6 + 3/12, "feet"),
  45857. weight: math.unit(3.5, "tons"),
  45858. name: "Front",
  45859. image: {
  45860. source: "./media/characters/emberflame/front.svg",
  45861. extra: 1198/672,
  45862. bottom: 82/1280
  45863. }
  45864. },
  45865. side: {
  45866. height: math.unit(6 + 3/12, "feet"),
  45867. weight: math.unit(3.5, "tons"),
  45868. name: "Side",
  45869. image: {
  45870. source: "./media/characters/emberflame/side.svg",
  45871. extra: 938/527,
  45872. bottom: 56/994
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(6 + 3/12, "feet"),
  45880. default: true
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45886. {
  45887. side: {
  45888. height: math.unit(17.5, "feet"),
  45889. weight: math.unit(35, "tons"),
  45890. name: "Side",
  45891. image: {
  45892. source: "./media/characters/sophie-ambrose/side.svg",
  45893. extra: 1573/1242,
  45894. bottom: 71/1644
  45895. }
  45896. },
  45897. maw: {
  45898. height: math.unit(7.4, "feet"),
  45899. name: "Maw",
  45900. image: {
  45901. source: "./media/characters/sophie-ambrose/maw.svg"
  45902. }
  45903. },
  45904. },
  45905. [
  45906. {
  45907. name: "Normal",
  45908. height: math.unit(17.5, "feet"),
  45909. default: true
  45910. },
  45911. ]
  45912. ))
  45913. characterMakers.push(() => makeCharacter(
  45914. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45915. {
  45916. front: {
  45917. height: math.unit(280, "feet"),
  45918. weight: math.unit(550, "tons"),
  45919. name: "Front",
  45920. image: {
  45921. source: "./media/characters/king-mugi/front.svg",
  45922. extra: 1102/947,
  45923. bottom: 104/1206
  45924. }
  45925. },
  45926. },
  45927. [
  45928. {
  45929. name: "King Mugi",
  45930. height: math.unit(280, "feet"),
  45931. default: true
  45932. },
  45933. ]
  45934. ))
  45935. characterMakers.push(() => makeCharacter(
  45936. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45937. {
  45938. female: {
  45939. height: math.unit(300, "meters"),
  45940. name: "Front",
  45941. image: {
  45942. source: "./media/characters/nova-fox/female.svg",
  45943. extra: 664/632,
  45944. bottom: 51/715
  45945. },
  45946. form: "female",
  45947. default: true
  45948. },
  45949. male: {
  45950. height: math.unit(300, "meters"),
  45951. name: "Front",
  45952. image: {
  45953. source: "./media/characters/nova-fox/male.svg",
  45954. extra: 663/631,
  45955. bottom: 30/693
  45956. },
  45957. form: "male",
  45958. default: true
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Macro",
  45964. height: math.unit(300, "meters"),
  45965. default: true,
  45966. allForms: true
  45967. },
  45968. ],
  45969. {
  45970. "female": {
  45971. name: "Female",
  45972. default: true
  45973. },
  45974. "male": {
  45975. name: "Male",
  45976. },
  45977. }
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(6 + 3/12, "feet"),
  45984. weight: math.unit(170, "lb"),
  45985. name: "Front",
  45986. image: {
  45987. source: "./media/characters/sam-bat/front.svg",
  45988. extra: 1601/1411,
  45989. bottom: 125/1726
  45990. }
  45991. },
  45992. back: {
  45993. height: math.unit(6 + 3/12, "feet"),
  45994. weight: math.unit(170, "lb"),
  45995. name: "Back",
  45996. image: {
  45997. source: "./media/characters/sam-bat/back.svg",
  45998. extra: 1577/1405,
  45999. bottom: 58/1635
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(6 + 3/12, "feet"),
  46007. default: true
  46008. },
  46009. ]
  46010. ))
  46011. characterMakers.push(() => makeCharacter(
  46012. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  46013. {
  46014. front: {
  46015. height: math.unit(59, "feet"),
  46016. weight: math.unit(40000, "lb"),
  46017. name: "Front",
  46018. image: {
  46019. source: "./media/characters/inari/front.svg",
  46020. extra: 1884/1350,
  46021. bottom: 95/1979
  46022. }
  46023. },
  46024. },
  46025. [
  46026. {
  46027. name: "Gigantamax",
  46028. height: math.unit(59, "feet"),
  46029. default: true
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  46035. {
  46036. front: {
  46037. height: math.unit(5 + 8/12, "feet"),
  46038. name: "Front",
  46039. image: {
  46040. source: "./media/characters/elizabeth/front.svg",
  46041. extra: 1395/1298,
  46042. bottom: 54/1449
  46043. }
  46044. },
  46045. mouth: {
  46046. height: math.unit(1.97, "feet"),
  46047. name: "Mouth",
  46048. image: {
  46049. source: "./media/characters/elizabeth/mouth.svg"
  46050. }
  46051. },
  46052. foot: {
  46053. height: math.unit(1.17, "feet"),
  46054. name: "Foot",
  46055. image: {
  46056. source: "./media/characters/elizabeth/foot.svg"
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Normal",
  46063. height: math.unit(5 + 8/12, "feet"),
  46064. default: true
  46065. },
  46066. {
  46067. name: "Minimacro",
  46068. height: math.unit(18, "feet")
  46069. },
  46070. {
  46071. name: "Macro",
  46072. height: math.unit(180, "feet")
  46073. },
  46074. ]
  46075. ))
  46076. characterMakers.push(() => makeCharacter(
  46077. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46078. {
  46079. front: {
  46080. height: math.unit(5 + 2/12, "feet"),
  46081. name: "Front",
  46082. image: {
  46083. source: "./media/characters/october-gossamer/front.svg",
  46084. extra: 505/454,
  46085. bottom: 7/512
  46086. }
  46087. },
  46088. back: {
  46089. height: math.unit(5 + 2/12, "feet"),
  46090. name: "Back",
  46091. image: {
  46092. source: "./media/characters/october-gossamer/back.svg",
  46093. extra: 501/454,
  46094. bottom: 11/512
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(5 + 2/12, "feet"),
  46102. default: true
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46108. {
  46109. front: {
  46110. height: math.unit(5, "feet"),
  46111. name: "Front",
  46112. image: {
  46113. source: "./media/characters/epiglottis/front.svg",
  46114. extra: 923/849,
  46115. bottom: 17/940
  46116. }
  46117. },
  46118. },
  46119. [
  46120. {
  46121. name: "Original Size",
  46122. height: math.unit(10, "inches")
  46123. },
  46124. {
  46125. name: "Human Size",
  46126. height: math.unit(5, "feet"),
  46127. default: true
  46128. },
  46129. {
  46130. name: "Big",
  46131. height: math.unit(25, "feet")
  46132. },
  46133. {
  46134. name: "Bigger",
  46135. height: math.unit(50, "feet")
  46136. },
  46137. {
  46138. name: "oh lawd",
  46139. height: math.unit(75, "feet")
  46140. },
  46141. ]
  46142. ))
  46143. characterMakers.push(() => makeCharacter(
  46144. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46145. {
  46146. front: {
  46147. height: math.unit(2 + 4/12, "feet"),
  46148. weight: math.unit(60, "lb"),
  46149. name: "Front",
  46150. image: {
  46151. source: "./media/characters/lerm/front.svg",
  46152. extra: 796/790,
  46153. bottom: 79/875
  46154. }
  46155. },
  46156. },
  46157. [
  46158. {
  46159. name: "Normal",
  46160. height: math.unit(2 + 4/12, "feet"),
  46161. default: true
  46162. },
  46163. ]
  46164. ))
  46165. characterMakers.push(() => makeCharacter(
  46166. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46167. {
  46168. front: {
  46169. height: math.unit(5.5, "feet"),
  46170. weight: math.unit(130, "lb"),
  46171. name: "Front",
  46172. image: {
  46173. source: "./media/characters/xena-nebadon/front.svg",
  46174. extra: 1828/1730,
  46175. bottom: 79/1907
  46176. }
  46177. },
  46178. },
  46179. [
  46180. {
  46181. name: "Tiny Puppy",
  46182. height: math.unit(3, "inches")
  46183. },
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(5.5, "feet"),
  46187. default: true
  46188. },
  46189. {
  46190. name: "Lotta Lady",
  46191. height: math.unit(12, "feet")
  46192. },
  46193. {
  46194. name: "Pretty Big",
  46195. height: math.unit(100, "feet")
  46196. },
  46197. {
  46198. name: "Big",
  46199. height: math.unit(500, "feet")
  46200. },
  46201. {
  46202. name: "Skyscraper Toys",
  46203. height: math.unit(2500, "feet")
  46204. },
  46205. {
  46206. name: "Plane Catcher",
  46207. height: math.unit(8, "miles")
  46208. },
  46209. {
  46210. name: "Planet Toys",
  46211. height: math.unit(15, "earths")
  46212. },
  46213. {
  46214. name: "Stardust",
  46215. height: math.unit(0.25, "galaxies")
  46216. },
  46217. {
  46218. name: "Snacks",
  46219. height: math.unit(70, "universes")
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46225. {
  46226. front: {
  46227. height: math.unit(1.6, "meters"),
  46228. weight: math.unit(60, "kg"),
  46229. name: "Front",
  46230. image: {
  46231. source: "./media/characters/bounty/front.svg",
  46232. extra: 1426/1308,
  46233. bottom: 15/1441
  46234. }
  46235. },
  46236. back: {
  46237. height: math.unit(1.6, "meters"),
  46238. weight: math.unit(60, "kg"),
  46239. name: "Back",
  46240. image: {
  46241. source: "./media/characters/bounty/back.svg",
  46242. extra: 1417/1307,
  46243. bottom: 8/1425
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Normal",
  46250. height: math.unit(1.6, "meters"),
  46251. default: true
  46252. },
  46253. {
  46254. name: "Macro",
  46255. height: math.unit(300, "meters")
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46261. {
  46262. front: {
  46263. height: math.unit(2 + 8/12, "feet"),
  46264. weight: math.unit(15, "lb"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/mochi/front.svg",
  46268. extra: 1022/852,
  46269. bottom: 435/1457
  46270. }
  46271. },
  46272. back: {
  46273. height: math.unit(2 + 8/12, "feet"),
  46274. weight: math.unit(15, "lb"),
  46275. name: "Back",
  46276. image: {
  46277. source: "./media/characters/mochi/back.svg",
  46278. extra: 1335/1119,
  46279. bottom: 39/1374
  46280. }
  46281. },
  46282. bird: {
  46283. height: math.unit(2 + 8/12, "feet"),
  46284. weight: math.unit(15, "lb"),
  46285. name: "Bird",
  46286. image: {
  46287. source: "./media/characters/mochi/bird.svg",
  46288. extra: 1251/1113,
  46289. bottom: 178/1429
  46290. }
  46291. },
  46292. kaiju: {
  46293. height: math.unit(154, "feet"),
  46294. weight: math.unit(1e7, "lb"),
  46295. name: "Kaiju",
  46296. image: {
  46297. source: "./media/characters/mochi/kaiju.svg",
  46298. extra: 460/324,
  46299. bottom: 40/500
  46300. }
  46301. },
  46302. head: {
  46303. height: math.unit(1.21, "feet"),
  46304. name: "Head",
  46305. image: {
  46306. source: "./media/characters/mochi/head.svg"
  46307. }
  46308. },
  46309. alternateTail: {
  46310. height: math.unit(2 + 8/12, "feet"),
  46311. weight: math.unit(45, "lb"),
  46312. name: "Alternate Tail",
  46313. image: {
  46314. source: "./media/characters/mochi/alternate-tail.svg",
  46315. extra: 139/76,
  46316. bottom: 45/184
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Micro",
  46323. height: math.unit(2, "inches")
  46324. },
  46325. {
  46326. name: "Normal",
  46327. height: math.unit(2 + 8/12, "feet"),
  46328. default: true
  46329. },
  46330. {
  46331. name: "Macro",
  46332. height: math.unit(106, "feet")
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(5.67, "feet"),
  46341. weight: math.unit(135, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/sarel/front.svg",
  46345. extra: 865/788,
  46346. bottom: 97/962
  46347. }
  46348. },
  46349. back: {
  46350. height: math.unit(5.67, "feet"),
  46351. weight: math.unit(135, "lb"),
  46352. name: "Back",
  46353. image: {
  46354. source: "./media/characters/sarel/back.svg",
  46355. extra: 857/777,
  46356. bottom: 32/889
  46357. }
  46358. },
  46359. chozoan: {
  46360. height: math.unit(5.67, "feet"),
  46361. weight: math.unit(135, "lb"),
  46362. name: "Chozoan",
  46363. image: {
  46364. source: "./media/characters/sarel/chozoan.svg",
  46365. extra: 865/788,
  46366. bottom: 97/962
  46367. }
  46368. },
  46369. current: {
  46370. height: math.unit(5.67, "feet"),
  46371. weight: math.unit(135, "lb"),
  46372. name: "Current",
  46373. image: {
  46374. source: "./media/characters/sarel/current.svg",
  46375. extra: 865/788,
  46376. bottom: 97/962
  46377. }
  46378. },
  46379. head: {
  46380. height: math.unit(1.77, "feet"),
  46381. name: "Head",
  46382. image: {
  46383. source: "./media/characters/sarel/head.svg"
  46384. }
  46385. },
  46386. claws: {
  46387. height: math.unit(1.8, "feet"),
  46388. name: "Claws",
  46389. image: {
  46390. source: "./media/characters/sarel/claws.svg"
  46391. }
  46392. },
  46393. clawsAlt: {
  46394. height: math.unit(1.8, "feet"),
  46395. name: "Claws (Alt)",
  46396. image: {
  46397. source: "./media/characters/sarel/claws-alt.svg"
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(5.67, "feet"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46411. {
  46412. front: {
  46413. height: math.unit(5500, "feet"),
  46414. name: "Front",
  46415. image: {
  46416. source: "./media/characters/alyonia/front.svg",
  46417. extra: 1200/1135,
  46418. bottom: 29/1229
  46419. }
  46420. },
  46421. back: {
  46422. height: math.unit(5500, "feet"),
  46423. name: "Back",
  46424. image: {
  46425. source: "./media/characters/alyonia/back.svg",
  46426. extra: 1205/1138,
  46427. bottom: 10/1215
  46428. }
  46429. },
  46430. },
  46431. [
  46432. {
  46433. name: "Small",
  46434. height: math.unit(10, "feet")
  46435. },
  46436. {
  46437. name: "Macro",
  46438. height: math.unit(500, "feet")
  46439. },
  46440. {
  46441. name: "Mega Macro",
  46442. height: math.unit(5500, "feet"),
  46443. default: true
  46444. },
  46445. {
  46446. name: "Mega Macro+",
  46447. height: math.unit(500000, "feet")
  46448. },
  46449. {
  46450. name: "Giga Macro",
  46451. height: math.unit(3000, "miles")
  46452. },
  46453. {
  46454. name: "Tera Macro",
  46455. height: math.unit(2.8e6, "miles")
  46456. },
  46457. {
  46458. name: "Galactic",
  46459. height: math.unit(120000, "lightyears")
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46465. {
  46466. werewolf: {
  46467. height: math.unit(8, "feet"),
  46468. weight: math.unit(425, "lb"),
  46469. name: "Werewolf",
  46470. image: {
  46471. source: "./media/characters/autumn/werewolf.svg",
  46472. extra: 2154/2031,
  46473. bottom: 160/2314
  46474. }
  46475. },
  46476. human: {
  46477. height: math.unit(5 + 8/12, "feet"),
  46478. weight: math.unit(150, "lb"),
  46479. name: "Human",
  46480. image: {
  46481. source: "./media/characters/autumn/human.svg",
  46482. extra: 1200/1149,
  46483. bottom: 30/1230
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(8, "feet"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46497. {
  46498. front: {
  46499. height: math.unit(8 + 5/12, "feet"),
  46500. weight: math.unit(825, "lb"),
  46501. name: "Front",
  46502. image: {
  46503. source: "./media/characters/cobalt-charizard/front.svg",
  46504. extra: 1268/1155,
  46505. bottom: 122/1390
  46506. }
  46507. },
  46508. side: {
  46509. height: math.unit(8 + 5/12, "feet"),
  46510. weight: math.unit(825, "lb"),
  46511. name: "Side",
  46512. image: {
  46513. source: "./media/characters/cobalt-charizard/side.svg",
  46514. extra: 1348/1257,
  46515. bottom: 58/1406
  46516. }
  46517. },
  46518. gMax: {
  46519. height: math.unit(134 + 11/12, "feet"),
  46520. name: "G-Max",
  46521. image: {
  46522. source: "./media/characters/cobalt-charizard/g-max.svg",
  46523. extra: 1835/1541,
  46524. bottom: 151/1986
  46525. }
  46526. },
  46527. },
  46528. [
  46529. {
  46530. name: "Normal",
  46531. height: math.unit(8 + 5/12, "feet"),
  46532. default: true
  46533. },
  46534. ]
  46535. ))
  46536. characterMakers.push(() => makeCharacter(
  46537. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46538. {
  46539. front: {
  46540. height: math.unit(6 + 3/12, "feet"),
  46541. weight: math.unit(210, "lb"),
  46542. name: "Front",
  46543. image: {
  46544. source: "./media/characters/stella/front.svg",
  46545. extra: 3549/3335,
  46546. bottom: 51/3600
  46547. }
  46548. },
  46549. },
  46550. [
  46551. {
  46552. name: "Normal",
  46553. height: math.unit(6 + 3/12, "feet"),
  46554. default: true
  46555. },
  46556. ]
  46557. ))
  46558. characterMakers.push(() => makeCharacter(
  46559. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46560. {
  46561. front: {
  46562. height: math.unit(5, "feet"),
  46563. weight: math.unit(90, "lb"),
  46564. name: "Front",
  46565. image: {
  46566. source: "./media/characters/riley-bishop/front.svg",
  46567. extra: 1450/1428,
  46568. bottom: 152/1602
  46569. }
  46570. },
  46571. },
  46572. [
  46573. {
  46574. name: "Normal",
  46575. height: math.unit(5, "feet"),
  46576. default: true
  46577. },
  46578. ]
  46579. ))
  46580. characterMakers.push(() => makeCharacter(
  46581. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46582. {
  46583. side: {
  46584. height: math.unit(8 + 2/12, "feet"),
  46585. weight: math.unit(500, "kg"),
  46586. name: "Side",
  46587. image: {
  46588. source: "./media/characters/theo-arcanine/side.svg",
  46589. extra: 1342/1074,
  46590. bottom: 111/1453
  46591. }
  46592. },
  46593. },
  46594. [
  46595. {
  46596. name: "Normal",
  46597. height: math.unit(8 + 2/12, "feet"),
  46598. default: true
  46599. },
  46600. ]
  46601. ))
  46602. characterMakers.push(() => makeCharacter(
  46603. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46604. {
  46605. front: {
  46606. height: math.unit(4, "feet"),
  46607. name: "Front",
  46608. image: {
  46609. source: "./media/characters/kali/front.svg",
  46610. extra: 1074/867,
  46611. bottom: 34/1108
  46612. }
  46613. },
  46614. back: {
  46615. height: math.unit(4, "feet"),
  46616. name: "Back",
  46617. image: {
  46618. source: "./media/characters/kali/back.svg",
  46619. extra: 1068/863,
  46620. bottom: 26/1094
  46621. }
  46622. },
  46623. frontAlt: {
  46624. height: math.unit(4, "feet"),
  46625. name: "Front (Alt)",
  46626. image: {
  46627. source: "./media/characters/kali/front-alt.svg",
  46628. extra: 1921/1357,
  46629. bottom: 70/1991
  46630. }
  46631. },
  46632. },
  46633. [
  46634. {
  46635. name: "Normal",
  46636. height: math.unit(4, "feet"),
  46637. default: true
  46638. },
  46639. {
  46640. name: "Big'vali",
  46641. height: math.unit(11, "feet")
  46642. },
  46643. {
  46644. name: "Macro",
  46645. height: math.unit(32, "meters")
  46646. },
  46647. {
  46648. name: "Macro+",
  46649. height: math.unit(150, "meters")
  46650. },
  46651. {
  46652. name: "Megamacro",
  46653. height: math.unit(7500, "meters")
  46654. },
  46655. {
  46656. name: "Megamacro+",
  46657. height: math.unit(80, "kilometers")
  46658. },
  46659. ]
  46660. ))
  46661. characterMakers.push(() => makeCharacter(
  46662. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46663. {
  46664. side: {
  46665. height: math.unit(5 + 11/12, "feet"),
  46666. weight: math.unit(236, "lb"),
  46667. name: "Side",
  46668. image: {
  46669. source: "./media/characters/gapp/side.svg",
  46670. extra: 775/340,
  46671. bottom: 58/833
  46672. }
  46673. },
  46674. mouth: {
  46675. height: math.unit(2.98, "feet"),
  46676. name: "Mouth",
  46677. image: {
  46678. source: "./media/characters/gapp/mouth.svg"
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(5 + 1/12, "feet"),
  46686. default: true
  46687. },
  46688. ]
  46689. ))
  46690. characterMakers.push(() => makeCharacter(
  46691. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46692. {
  46693. front: {
  46694. height: math.unit(6, "feet"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/persephone/front.svg",
  46698. extra: 1895/1717,
  46699. bottom: 96/1991
  46700. }
  46701. },
  46702. back: {
  46703. height: math.unit(6, "feet"),
  46704. name: "Back",
  46705. image: {
  46706. source: "./media/characters/persephone/back.svg",
  46707. extra: 1868/1679,
  46708. bottom: 26/1894
  46709. }
  46710. },
  46711. casual: {
  46712. height: math.unit(6, "feet"),
  46713. name: "Casual",
  46714. image: {
  46715. source: "./media/characters/persephone/casual.svg",
  46716. extra: 1713/1541,
  46717. bottom: 76/1789
  46718. }
  46719. },
  46720. gaming: {
  46721. height: math.unit(3.55, "feet"),
  46722. name: "Gaming",
  46723. image: {
  46724. source: "./media/characters/persephone/gaming.svg",
  46725. extra: 1242/1038,
  46726. bottom: 66/1308
  46727. }
  46728. },
  46729. head: {
  46730. height: math.unit(2.15, "feet"),
  46731. name: "😐",
  46732. image: {
  46733. source: "./media/characters/persephone/head.svg"
  46734. }
  46735. },
  46736. talking: {
  46737. height: math.unit(2.5, "feet"),
  46738. name: "💬",
  46739. image: {
  46740. source: "./media/characters/persephone/talking.svg"
  46741. }
  46742. },
  46743. hmm: {
  46744. height: math.unit(2.28, "feet"),
  46745. name: "🤨",
  46746. image: {
  46747. source: "./media/characters/persephone/hmm.svg"
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Human Size",
  46754. height: math.unit(6, "feet")
  46755. },
  46756. {
  46757. name: "Big Steppy",
  46758. height: math.unit(600, "meters"),
  46759. default: true
  46760. },
  46761. {
  46762. name: "Galaxy Brain",
  46763. height: math.unit(1, "zettameter")
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(1.85, "meters"),
  46772. name: "Front",
  46773. image: {
  46774. source: "./media/characters/riley-foxthing/front.svg",
  46775. extra: 1495/1354,
  46776. bottom: 122/1617
  46777. }
  46778. },
  46779. frontAlt: {
  46780. height: math.unit(1.85, "meters"),
  46781. name: "Front (Alt)",
  46782. image: {
  46783. source: "./media/characters/riley-foxthing/front-alt.svg",
  46784. extra: 1572/1389,
  46785. bottom: 116/1688
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Normal Sized",
  46792. height: math.unit(1.85, "meters"),
  46793. default: true
  46794. },
  46795. {
  46796. name: "Quite Sizable",
  46797. height: math.unit(5, "meters")
  46798. },
  46799. {
  46800. name: "Rather Large",
  46801. height: math.unit(20, "meters")
  46802. },
  46803. {
  46804. name: "Macro",
  46805. height: math.unit(450, "meters")
  46806. },
  46807. {
  46808. name: "Giga",
  46809. height: math.unit(5, "km")
  46810. },
  46811. ]
  46812. ))
  46813. characterMakers.push(() => makeCharacter(
  46814. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46815. {
  46816. front: {
  46817. height: math.unit(6, "feet"),
  46818. weight: math.unit(200, "lb"),
  46819. name: "Front",
  46820. image: {
  46821. source: "./media/characters/blizzard/front.svg",
  46822. extra: 1136/990,
  46823. bottom: 136/1272
  46824. }
  46825. },
  46826. back: {
  46827. height: math.unit(6, "feet"),
  46828. weight: math.unit(200, "lb"),
  46829. name: "Back",
  46830. image: {
  46831. source: "./media/characters/blizzard/back.svg",
  46832. extra: 1175/1034,
  46833. bottom: 97/1272
  46834. }
  46835. },
  46836. sitting: {
  46837. height: math.unit(3.725, "feet"),
  46838. weight: math.unit(200, "lb"),
  46839. name: "Sitting",
  46840. image: {
  46841. source: "./media/characters/blizzard/sitting.svg",
  46842. extra: 581/485,
  46843. bottom: 90/671
  46844. }
  46845. },
  46846. frontWizard: {
  46847. height: math.unit(7.9, "feet"),
  46848. weight: math.unit(200, "lb"),
  46849. name: "Front (Wizard)",
  46850. image: {
  46851. source: "./media/characters/blizzard/front-wizard.svg"
  46852. }
  46853. },
  46854. backWizard: {
  46855. height: math.unit(7.9, "feet"),
  46856. weight: math.unit(200, "lb"),
  46857. name: "Back (Wizard)",
  46858. image: {
  46859. source: "./media/characters/blizzard/back-wizard.svg"
  46860. }
  46861. },
  46862. frontNsfw: {
  46863. height: math.unit(6, "feet"),
  46864. weight: math.unit(200, "lb"),
  46865. name: "Front (NSFW)",
  46866. image: {
  46867. source: "./media/characters/blizzard/front-nsfw.svg",
  46868. extra: 1136/990,
  46869. bottom: 136/1272
  46870. }
  46871. },
  46872. backNsfw: {
  46873. height: math.unit(6, "feet"),
  46874. weight: math.unit(200, "lb"),
  46875. name: "Back (NSFW)",
  46876. image: {
  46877. source: "./media/characters/blizzard/back-nsfw.svg",
  46878. extra: 1175/1034,
  46879. bottom: 97/1272
  46880. }
  46881. },
  46882. sittingNsfw: {
  46883. height: math.unit(3.725, "feet"),
  46884. weight: math.unit(200, "lb"),
  46885. name: "Sitting (NSFW)",
  46886. image: {
  46887. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46888. extra: 581/485,
  46889. bottom: 90/671
  46890. }
  46891. },
  46892. wizardFrontNsfw: {
  46893. height: math.unit(7.9, "feet"),
  46894. weight: math.unit(200, "lb"),
  46895. name: "Wizard (Front, NSFW)",
  46896. image: {
  46897. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46898. }
  46899. },
  46900. },
  46901. [
  46902. {
  46903. name: "Normal",
  46904. height: math.unit(6, "feet"),
  46905. default: true
  46906. },
  46907. ]
  46908. ))
  46909. characterMakers.push(() => makeCharacter(
  46910. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46911. {
  46912. front: {
  46913. height: math.unit(5 + 2/12, "feet"),
  46914. name: "Front",
  46915. image: {
  46916. source: "./media/characters/lumi/front.svg",
  46917. extra: 1328/1268,
  46918. bottom: 103/1431
  46919. }
  46920. },
  46921. back: {
  46922. height: math.unit(5 + 2/12, "feet"),
  46923. name: "Back",
  46924. image: {
  46925. source: "./media/characters/lumi/back.svg",
  46926. extra: 1381/1327,
  46927. bottom: 43/1424
  46928. }
  46929. },
  46930. },
  46931. [
  46932. {
  46933. name: "Normal",
  46934. height: math.unit(5 + 2/12, "feet"),
  46935. default: true
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(5 + 9/12, "feet"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/aliya-cotton/front.svg",
  46947. extra: 577/564,
  46948. bottom: 29/606
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(5 + 9/12, "feet"),
  46956. default: true
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46962. {
  46963. front: {
  46964. height: math.unit(2.7, "meters"),
  46965. weight: math.unit(25000, "lb"),
  46966. name: "Front",
  46967. image: {
  46968. source: "./media/characters/noah-luxray/front.svg",
  46969. extra: 1644/825,
  46970. bottom: 339/1983
  46971. }
  46972. },
  46973. side: {
  46974. height: math.unit(2.97, "meters"),
  46975. weight: math.unit(25000, "lb"),
  46976. name: "Side",
  46977. image: {
  46978. source: "./media/characters/noah-luxray/side.svg",
  46979. extra: 1319/650,
  46980. bottom: 163/1482
  46981. }
  46982. },
  46983. dick: {
  46984. height: math.unit(7.4, "feet"),
  46985. weight: math.unit(2500, "lb"),
  46986. name: "Dick",
  46987. image: {
  46988. source: "./media/characters/noah-luxray/dick.svg"
  46989. }
  46990. },
  46991. dickAlt: {
  46992. height: math.unit(10.83, "feet"),
  46993. weight: math.unit(2500, "lb"),
  46994. name: "Dick (Alt)",
  46995. image: {
  46996. source: "./media/characters/noah-luxray/dick-alt.svg"
  46997. }
  46998. },
  46999. },
  47000. [
  47001. {
  47002. name: "BIG",
  47003. height: math.unit(2.7, "meters"),
  47004. default: true
  47005. },
  47006. ]
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  47010. {
  47011. standing: {
  47012. height: math.unit(183, "cm"),
  47013. weight: math.unit(68, "kg"),
  47014. name: "Standing",
  47015. image: {
  47016. source: "./media/characters/arion/standing.svg",
  47017. extra: 1869/1807,
  47018. bottom: 93/1962
  47019. }
  47020. },
  47021. reclining: {
  47022. height: math.unit(70.5, "cm"),
  47023. weight: math.unit(68, "lb"),
  47024. name: "Reclining",
  47025. image: {
  47026. source: "./media/characters/arion/reclining.svg",
  47027. extra: 937/870,
  47028. bottom: 63/1000
  47029. }
  47030. },
  47031. },
  47032. [
  47033. {
  47034. name: "Colossus Size, Low",
  47035. height: math.unit(33, "meters"),
  47036. default: true
  47037. },
  47038. {
  47039. name: "Colossus Size, Mid",
  47040. height: math.unit(52, "meters")
  47041. },
  47042. {
  47043. name: "Colossus Size, High",
  47044. height: math.unit(60, "meters")
  47045. },
  47046. {
  47047. name: "Titan Size, Low",
  47048. height: math.unit(91, "meters"),
  47049. },
  47050. {
  47051. name: "Titan Size, Mid",
  47052. height: math.unit(122, "meters")
  47053. },
  47054. {
  47055. name: "Titan Size, High",
  47056. height: math.unit(162, "meters")
  47057. },
  47058. ]
  47059. ))
  47060. characterMakers.push(() => makeCharacter(
  47061. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47062. {
  47063. front: {
  47064. height: math.unit(53, "meters"),
  47065. name: "Front",
  47066. image: {
  47067. source: "./media/characters/stellar-marbey/front.svg",
  47068. extra: 1913/1805,
  47069. bottom: 92/2005
  47070. }
  47071. },
  47072. back: {
  47073. height: math.unit(53, "meters"),
  47074. name: "Back",
  47075. image: {
  47076. source: "./media/characters/stellar-marbey/back.svg",
  47077. extra: 1960/1851,
  47078. bottom: 28/1988
  47079. }
  47080. },
  47081. mouth: {
  47082. height: math.unit(3.5, "meters"),
  47083. name: "Mouth",
  47084. image: {
  47085. source: "./media/characters/stellar-marbey/mouth.svg"
  47086. }
  47087. },
  47088. },
  47089. [
  47090. {
  47091. name: "Macro",
  47092. height: math.unit(53, "meters"),
  47093. default: true
  47094. },
  47095. ]
  47096. ))
  47097. characterMakers.push(() => makeCharacter(
  47098. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47099. {
  47100. front: {
  47101. height: math.unit(8 + 1/12, "feet"),
  47102. weight: math.unit(233, "lb"),
  47103. name: "Front",
  47104. image: {
  47105. source: "./media/characters/matsu/front.svg",
  47106. extra: 832/772,
  47107. bottom: 40/872
  47108. }
  47109. },
  47110. back: {
  47111. height: math.unit(8 + 1/12, "feet"),
  47112. weight: math.unit(233, "lb"),
  47113. name: "Back",
  47114. image: {
  47115. source: "./media/characters/matsu/back.svg",
  47116. extra: 839/780,
  47117. bottom: 47/886
  47118. }
  47119. },
  47120. },
  47121. [
  47122. {
  47123. name: "Normal",
  47124. height: math.unit(8 + 1/12, "feet"),
  47125. default: true
  47126. },
  47127. ]
  47128. ))
  47129. characterMakers.push(() => makeCharacter(
  47130. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47131. {
  47132. front: {
  47133. height: math.unit(4, "feet"),
  47134. weight: math.unit(148, "lb"),
  47135. name: "Front",
  47136. image: {
  47137. source: "./media/characters/thiz/front.svg",
  47138. extra: 1913/1748,
  47139. bottom: 62/1975
  47140. }
  47141. },
  47142. },
  47143. [
  47144. {
  47145. name: "Normal",
  47146. height: math.unit(4, "feet"),
  47147. default: true
  47148. },
  47149. ]
  47150. ))
  47151. characterMakers.push(() => makeCharacter(
  47152. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47153. {
  47154. front: {
  47155. height: math.unit(7 + 6/12, "feet"),
  47156. weight: math.unit(267, "lb"),
  47157. name: "Front",
  47158. image: {
  47159. source: "./media/characters/marcel/front.svg",
  47160. extra: 1221/1096,
  47161. bottom: 76/1297
  47162. }
  47163. },
  47164. },
  47165. [
  47166. {
  47167. name: "Normal",
  47168. height: math.unit(7 + 6/12, "feet"),
  47169. default: true
  47170. },
  47171. ]
  47172. ))
  47173. characterMakers.push(() => makeCharacter(
  47174. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47175. {
  47176. side: {
  47177. height: math.unit(42, "meters"),
  47178. name: "Side",
  47179. image: {
  47180. source: "./media/characters/flake/side.svg",
  47181. extra: 1525/1306,
  47182. bottom: 209/1734
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(42, "meters"),
  47190. default: true
  47191. },
  47192. ]
  47193. ))
  47194. characterMakers.push(() => makeCharacter(
  47195. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47196. {
  47197. dressed: {
  47198. height: math.unit(6 + 4/12, "feet"),
  47199. weight: math.unit(520, "lb"),
  47200. name: "Dressed",
  47201. image: {
  47202. source: "./media/characters/someonne/dressed.svg",
  47203. extra: 1020/1010,
  47204. bottom: 178/1198
  47205. }
  47206. },
  47207. undressed: {
  47208. height: math.unit(6 + 4/12, "feet"),
  47209. weight: math.unit(520, "lb"),
  47210. name: "Undressed",
  47211. image: {
  47212. source: "./media/characters/someonne/undressed.svg",
  47213. extra: 1019/1014,
  47214. bottom: 169/1188
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Normal",
  47221. height: math.unit(6 + 4/12, "feet"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(3, "feet"),
  47231. weight: math.unit(30, "lb"),
  47232. name: "Front",
  47233. image: {
  47234. source: "./media/characters/till/front.svg",
  47235. extra: 892/823,
  47236. bottom: 55/947
  47237. }
  47238. },
  47239. },
  47240. [
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(3, "feet"),
  47244. default: true
  47245. },
  47246. ]
  47247. ))
  47248. characterMakers.push(() => makeCharacter(
  47249. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47250. {
  47251. front: {
  47252. height: math.unit(9 + 8/12, "feet"),
  47253. weight: math.unit(800, "lb"),
  47254. name: "Front",
  47255. image: {
  47256. source: "./media/characters/sydney-heki/front.svg",
  47257. extra: 1360/1300,
  47258. bottom: 22/1382
  47259. }
  47260. },
  47261. back: {
  47262. height: math.unit(9 + 8/12, "feet"),
  47263. weight: math.unit(800, "lb"),
  47264. name: "Back",
  47265. image: {
  47266. source: "./media/characters/sydney-heki/back.svg",
  47267. extra: 1356/1293,
  47268. bottom: 12/1368
  47269. }
  47270. },
  47271. frontDressed: {
  47272. height: math.unit(9 + 8/12, "feet"),
  47273. weight: math.unit(800, "lb"),
  47274. name: "Front (Dressed)",
  47275. image: {
  47276. source: "./media/characters/sydney-heki/front-dressed.svg",
  47277. extra: 1360/1300,
  47278. bottom: 22/1382
  47279. }
  47280. },
  47281. },
  47282. [
  47283. {
  47284. name: "Normal",
  47285. height: math.unit(9 + 8/12, "feet"),
  47286. default: true
  47287. },
  47288. {
  47289. name: "Macro",
  47290. height: math.unit(500, "feet")
  47291. },
  47292. {
  47293. name: "Megamacro",
  47294. height: math.unit(3.6, "miles")
  47295. },
  47296. ]
  47297. ))
  47298. characterMakers.push(() => makeCharacter(
  47299. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47300. {
  47301. front: {
  47302. height: math.unit(200, "cm"),
  47303. weight: math.unit(250, "lb"),
  47304. name: "Front",
  47305. image: {
  47306. source: "./media/characters/fowler-karlsson/front.svg",
  47307. extra: 897/845,
  47308. bottom: 123/1020
  47309. }
  47310. },
  47311. back: {
  47312. height: math.unit(200, "cm"),
  47313. weight: math.unit(250, "lb"),
  47314. name: "Back",
  47315. image: {
  47316. source: "./media/characters/fowler-karlsson/back.svg",
  47317. extra: 999/944,
  47318. bottom: 26/1025
  47319. }
  47320. },
  47321. dick: {
  47322. height: math.unit(1.92, "feet"),
  47323. weight: math.unit(150, "lb"),
  47324. name: "Dick",
  47325. image: {
  47326. source: "./media/characters/fowler-karlsson/dick.svg"
  47327. }
  47328. },
  47329. },
  47330. [
  47331. {
  47332. name: "Normal",
  47333. height: math.unit(200, "cm"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Smaller Macro",
  47338. height: math.unit(90, "m")
  47339. },
  47340. {
  47341. name: "Macro",
  47342. height: math.unit(150, "m")
  47343. },
  47344. {
  47345. name: "Bigger Macro",
  47346. height: math.unit(300, "m")
  47347. },
  47348. ]
  47349. ))
  47350. characterMakers.push(() => makeCharacter(
  47351. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47352. {
  47353. side: {
  47354. height: math.unit(8 + 2/12, "feet"),
  47355. weight: math.unit(1, "tonne"),
  47356. name: "Side",
  47357. image: {
  47358. source: "./media/characters/rylide/side.svg",
  47359. extra: 1318/1034,
  47360. bottom: 106/1424
  47361. }
  47362. },
  47363. sitting: {
  47364. height: math.unit(303, "cm"),
  47365. weight: math.unit(1, "tonne"),
  47366. name: "Sitting",
  47367. image: {
  47368. source: "./media/characters/rylide/sitting.svg",
  47369. extra: 1303/1103,
  47370. bottom: 36/1339
  47371. }
  47372. },
  47373. },
  47374. [
  47375. {
  47376. name: "Normal",
  47377. height: math.unit(8 + 2/12, "feet"),
  47378. default: true
  47379. },
  47380. ]
  47381. ))
  47382. characterMakers.push(() => makeCharacter(
  47383. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47384. {
  47385. front: {
  47386. height: math.unit(5 + 10/12, "feet"),
  47387. weight: math.unit(160, "lb"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/pudask/front.svg",
  47391. extra: 1616/1590,
  47392. bottom: 161/1777
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Ferret Height",
  47399. height: math.unit(2 + 5/12, "feet")
  47400. },
  47401. {
  47402. name: "Canon Height",
  47403. height: math.unit(5 + 10/12, "feet"),
  47404. default: true
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(3 + 6/12, "feet"),
  47413. weight: math.unit(60, "lb"),
  47414. name: "Front",
  47415. image: {
  47416. source: "./media/characters/ramita/front.svg",
  47417. extra: 1402/1232,
  47418. bottom: 62/1464
  47419. }
  47420. },
  47421. dressed: {
  47422. height: math.unit(3 + 6/12, "feet"),
  47423. weight: math.unit(60, "lb"),
  47424. name: "Dressed",
  47425. image: {
  47426. source: "./media/characters/ramita/dressed.svg",
  47427. extra: 1534/1249,
  47428. bottom: 50/1584
  47429. }
  47430. },
  47431. },
  47432. [
  47433. {
  47434. name: "Normal",
  47435. height: math.unit(3 + 6/12, "feet"),
  47436. default: true
  47437. },
  47438. ]
  47439. ))
  47440. characterMakers.push(() => makeCharacter(
  47441. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47442. {
  47443. front: {
  47444. height: math.unit(8, "feet"),
  47445. name: "Front",
  47446. image: {
  47447. source: "./media/characters/ark/front.svg",
  47448. extra: 772/693,
  47449. bottom: 45/817
  47450. }
  47451. },
  47452. },
  47453. [
  47454. {
  47455. name: "Normal",
  47456. height: math.unit(8, "feet"),
  47457. default: true
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(6, "feet"),
  47466. weight: math.unit(250, "lb"),
  47467. volume: math.unit(5/8, "gallons"),
  47468. name: "Front",
  47469. image: {
  47470. source: "./media/characters/ludwig-horn/front.svg",
  47471. extra: 1782/1635,
  47472. bottom: 96/1878
  47473. }
  47474. },
  47475. back: {
  47476. height: math.unit(6, "feet"),
  47477. weight: math.unit(250, "lb"),
  47478. volume: math.unit(5/8, "gallons"),
  47479. name: "Back",
  47480. image: {
  47481. source: "./media/characters/ludwig-horn/back.svg",
  47482. extra: 1874/1729,
  47483. bottom: 27/1901
  47484. }
  47485. },
  47486. dick: {
  47487. height: math.unit(1.05, "feet"),
  47488. weight: math.unit(15, "lb"),
  47489. volume: math.unit(5/8, "gallons"),
  47490. name: "Dick",
  47491. image: {
  47492. source: "./media/characters/ludwig-horn/dick.svg"
  47493. }
  47494. },
  47495. },
  47496. [
  47497. {
  47498. name: "Small",
  47499. height: math.unit(6, "feet")
  47500. },
  47501. {
  47502. name: "Typical",
  47503. height: math.unit(12, "feet"),
  47504. default: true
  47505. },
  47506. {
  47507. name: "Building",
  47508. height: math.unit(80, "feet")
  47509. },
  47510. {
  47511. name: "Town",
  47512. height: math.unit(800, "feet")
  47513. },
  47514. {
  47515. name: "Kingdom",
  47516. height: math.unit(80000, "feet")
  47517. },
  47518. {
  47519. name: "Planet",
  47520. height: math.unit(8000000, "feet")
  47521. },
  47522. {
  47523. name: "Universe",
  47524. height: math.unit(8000000000, "feet")
  47525. },
  47526. {
  47527. name: "Transcended",
  47528. height: math.unit(8e27, "feet")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(5, "feet"),
  47537. weight: math.unit(50, "kg"),
  47538. name: "Front",
  47539. image: {
  47540. source: "./media/characters/biot-avery/front.svg",
  47541. extra: 1295/1232,
  47542. bottom: 86/1381
  47543. }
  47544. },
  47545. },
  47546. [
  47547. {
  47548. name: "Normal",
  47549. height: math.unit(5, "feet"),
  47550. default: true
  47551. },
  47552. ]
  47553. ))
  47554. characterMakers.push(() => makeCharacter(
  47555. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47556. {
  47557. front: {
  47558. height: math.unit(6, "feet"),
  47559. name: "Front",
  47560. image: {
  47561. source: "./media/characters/kitsune-kiro/front.svg",
  47562. extra: 1270/1158,
  47563. bottom: 42/1312
  47564. }
  47565. },
  47566. frontAlt: {
  47567. height: math.unit(6, "feet"),
  47568. name: "Front (Alt)",
  47569. image: {
  47570. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47571. extra: 1130/1081,
  47572. bottom: 36/1166
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Smol",
  47579. height: math.unit(3, "feet")
  47580. },
  47581. {
  47582. name: "Normal",
  47583. height: math.unit(6, "feet"),
  47584. default: true
  47585. },
  47586. ]
  47587. ))
  47588. characterMakers.push(() => makeCharacter(
  47589. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47590. {
  47591. front: {
  47592. height: math.unit(6, "feet"),
  47593. weight: math.unit(125, "lb"),
  47594. name: "Front",
  47595. image: {
  47596. source: "./media/characters/jack-thatcher/front.svg",
  47597. extra: 1474/1370,
  47598. bottom: 26/1500
  47599. }
  47600. },
  47601. back: {
  47602. height: math.unit(6, "feet"),
  47603. weight: math.unit(125, "lb"),
  47604. name: "Back",
  47605. image: {
  47606. source: "./media/characters/jack-thatcher/back.svg",
  47607. extra: 1489/1384,
  47608. bottom: 18/1507
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(6, "feet"),
  47616. default: true
  47617. },
  47618. {
  47619. name: "Macro",
  47620. height: math.unit(75, "feet")
  47621. },
  47622. {
  47623. name: "Macro-er",
  47624. height: math.unit(250, "feet")
  47625. },
  47626. ]
  47627. ))
  47628. characterMakers.push(() => makeCharacter(
  47629. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47630. {
  47631. front: {
  47632. height: math.unit(7, "feet"),
  47633. weight: math.unit(110, "kg"),
  47634. name: "Front",
  47635. image: {
  47636. source: "./media/characters/max-hyper/front.svg",
  47637. extra: 1969/1881,
  47638. bottom: 49/2018
  47639. }
  47640. },
  47641. },
  47642. [
  47643. {
  47644. name: "Normal",
  47645. height: math.unit(7, "feet"),
  47646. default: true
  47647. },
  47648. ]
  47649. ))
  47650. characterMakers.push(() => makeCharacter(
  47651. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47652. {
  47653. front: {
  47654. height: math.unit(5 + 5/12, "feet"),
  47655. weight: math.unit(160, "lb"),
  47656. name: "Front",
  47657. image: {
  47658. source: "./media/characters/spook/front.svg",
  47659. extra: 794/791,
  47660. bottom: 54/848
  47661. }
  47662. },
  47663. back: {
  47664. height: math.unit(5 + 5/12, "feet"),
  47665. weight: math.unit(160, "lb"),
  47666. name: "Back",
  47667. image: {
  47668. source: "./media/characters/spook/back.svg",
  47669. extra: 812/798,
  47670. bottom: 32/844
  47671. }
  47672. },
  47673. },
  47674. [
  47675. {
  47676. name: "Normal",
  47677. height: math.unit(5 + 5/12, "feet"),
  47678. default: true
  47679. },
  47680. ]
  47681. ))
  47682. characterMakers.push(() => makeCharacter(
  47683. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47684. {
  47685. front: {
  47686. height: math.unit(18, "feet"),
  47687. name: "Front",
  47688. image: {
  47689. source: "./media/characters/xeaduulix/front.svg",
  47690. extra: 1380/1166,
  47691. bottom: 110/1490
  47692. }
  47693. },
  47694. back: {
  47695. height: math.unit(18, "feet"),
  47696. name: "Back",
  47697. image: {
  47698. source: "./media/characters/xeaduulix/back.svg",
  47699. extra: 1592/1170,
  47700. bottom: 128/1720
  47701. }
  47702. },
  47703. frontNsfw: {
  47704. height: math.unit(18, "feet"),
  47705. name: "Front (NSFW)",
  47706. image: {
  47707. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47708. extra: 1380/1166,
  47709. bottom: 110/1490
  47710. }
  47711. },
  47712. backNsfw: {
  47713. height: math.unit(18, "feet"),
  47714. name: "Back (NSFW)",
  47715. image: {
  47716. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47717. extra: 1592/1170,
  47718. bottom: 128/1720
  47719. }
  47720. },
  47721. },
  47722. [
  47723. {
  47724. name: "Normal",
  47725. height: math.unit(18, "feet"),
  47726. default: true
  47727. },
  47728. ]
  47729. ))
  47730. characterMakers.push(() => makeCharacter(
  47731. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47732. {
  47733. spreadWings: {
  47734. height: math.unit(20, "feet"),
  47735. name: "Spread Wings",
  47736. image: {
  47737. source: "./media/characters/fledge/spread-wings.svg",
  47738. extra: 693/635,
  47739. bottom: 26/719
  47740. }
  47741. },
  47742. front: {
  47743. height: math.unit(20, "feet"),
  47744. name: "Front",
  47745. image: {
  47746. source: "./media/characters/fledge/front.svg",
  47747. extra: 684/637,
  47748. bottom: 18/702
  47749. }
  47750. },
  47751. frontAlt: {
  47752. height: math.unit(20, "feet"),
  47753. name: "Front (Alt)",
  47754. image: {
  47755. source: "./media/characters/fledge/front-alt.svg",
  47756. extra: 708/664,
  47757. bottom: 13/721
  47758. }
  47759. },
  47760. back: {
  47761. height: math.unit(20, "feet"),
  47762. name: "Back",
  47763. image: {
  47764. source: "./media/characters/fledge/back.svg",
  47765. extra: 718/634,
  47766. bottom: 22/740
  47767. }
  47768. },
  47769. head: {
  47770. height: math.unit(5.55, "feet"),
  47771. name: "Head",
  47772. image: {
  47773. source: "./media/characters/fledge/head.svg"
  47774. }
  47775. },
  47776. headAlt: {
  47777. height: math.unit(5.1, "feet"),
  47778. name: "Head (Alt)",
  47779. image: {
  47780. source: "./media/characters/fledge/head-alt.svg"
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Small",
  47787. height: math.unit(6 + 2/12, "feet")
  47788. },
  47789. {
  47790. name: "Big",
  47791. height: math.unit(20, "feet"),
  47792. default: true
  47793. },
  47794. {
  47795. name: "Giant",
  47796. height: math.unit(100, "feet")
  47797. },
  47798. {
  47799. name: "Macro",
  47800. height: math.unit(200, "feet")
  47801. },
  47802. ]
  47803. ))
  47804. characterMakers.push(() => makeCharacter(
  47805. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47806. {
  47807. front: {
  47808. height: math.unit(1, "meter"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/atlas-morenai/front.svg",
  47812. extra: 1275/1043,
  47813. bottom: 19/1294
  47814. }
  47815. },
  47816. back: {
  47817. height: math.unit(1, "meter"),
  47818. name: "Back",
  47819. image: {
  47820. source: "./media/characters/atlas-morenai/back.svg",
  47821. extra: 1141/1001,
  47822. bottom: 25/1166
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(1, "meter"),
  47830. default: true
  47831. },
  47832. {
  47833. name: "Magic-Infused",
  47834. height: math.unit(5, "meters")
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47840. {
  47841. front: {
  47842. height: math.unit(5, "meters"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/cintia/front.svg",
  47846. extra: 1312/1228,
  47847. bottom: 38/1350
  47848. }
  47849. },
  47850. back: {
  47851. height: math.unit(5, "meters"),
  47852. name: "Back",
  47853. image: {
  47854. source: "./media/characters/cintia/back.svg",
  47855. extra: 1260/1166,
  47856. bottom: 98/1358
  47857. }
  47858. },
  47859. frontDick: {
  47860. height: math.unit(5, "meters"),
  47861. name: "Front (Dick)",
  47862. image: {
  47863. source: "./media/characters/cintia/front-dick.svg",
  47864. extra: 1312/1228,
  47865. bottom: 38/1350
  47866. }
  47867. },
  47868. backDick: {
  47869. height: math.unit(5, "meters"),
  47870. name: "Back (Dick)",
  47871. image: {
  47872. source: "./media/characters/cintia/back-dick.svg",
  47873. extra: 1260/1166,
  47874. bottom: 98/1358
  47875. }
  47876. },
  47877. bust: {
  47878. height: math.unit(1.97, "meters"),
  47879. name: "Bust",
  47880. image: {
  47881. source: "./media/characters/cintia/bust.svg",
  47882. extra: 617/565,
  47883. bottom: 0/617
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Normal",
  47890. height: math.unit(5, "meters"),
  47891. default: true
  47892. },
  47893. ]
  47894. ))
  47895. characterMakers.push(() => makeCharacter(
  47896. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47897. {
  47898. side: {
  47899. height: math.unit(100, "feet"),
  47900. name: "Side",
  47901. image: {
  47902. source: "./media/characters/denora/side.svg",
  47903. extra: 875/803,
  47904. bottom: 9/884
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Standard",
  47911. height: math.unit(100, "feet"),
  47912. default: true
  47913. },
  47914. {
  47915. name: "Grand",
  47916. height: math.unit(1000, "feet")
  47917. },
  47918. {
  47919. name: "Conquering",
  47920. height: math.unit(10000, "feet")
  47921. },
  47922. ]
  47923. ))
  47924. characterMakers.push(() => makeCharacter(
  47925. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47926. {
  47927. front: {
  47928. height: math.unit(8 + 5/12, "feet"),
  47929. weight: math.unit(700, "lb"),
  47930. name: "Front",
  47931. image: {
  47932. source: "./media/characters/kiva/front.svg",
  47933. extra: 419/406,
  47934. bottom: 30/449
  47935. }
  47936. },
  47937. sideDressed: {
  47938. height: math.unit(8 + 5/12, "feet"),
  47939. weight: math.unit(700, "lb"),
  47940. name: "Side (Dressed)",
  47941. image: {
  47942. source: "./media/characters/kiva/side-dressed.svg",
  47943. extra: 1102/1055,
  47944. bottom: 60/1162
  47945. }
  47946. },
  47947. sideNude: {
  47948. height: math.unit(8 + 5/12, "feet"),
  47949. weight: math.unit(700, "lb"),
  47950. name: "Side (Nude)",
  47951. image: {
  47952. source: "./media/characters/kiva/side-nude.svg",
  47953. extra: 1102/1055,
  47954. bottom: 60/1162
  47955. }
  47956. },
  47957. },
  47958. [
  47959. {
  47960. name: "Base Height",
  47961. height: math.unit(8 + 5/12, "feet"),
  47962. default: true
  47963. },
  47964. {
  47965. name: "Macro",
  47966. height: math.unit(100, "feet")
  47967. },
  47968. {
  47969. name: "Max",
  47970. height: math.unit(3280, "feet")
  47971. },
  47972. ]
  47973. ))
  47974. characterMakers.push(() => makeCharacter(
  47975. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47976. {
  47977. front: {
  47978. height: math.unit(6 + 8/12, "feet"),
  47979. weight: math.unit(250, "lb"),
  47980. name: "Front",
  47981. image: {
  47982. source: "./media/characters/ztragon/front.svg",
  47983. extra: 1825/1684,
  47984. bottom: 98/1923
  47985. }
  47986. },
  47987. },
  47988. [
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(6 + 8/12, "feet"),
  47992. default: true
  47993. },
  47994. {
  47995. name: "Macro",
  47996. height: math.unit(80, "feet")
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  48002. {
  48003. front: {
  48004. height: math.unit(10.4, "feet"),
  48005. weight: math.unit(2, "tons"),
  48006. name: "Front",
  48007. image: {
  48008. source: "./media/characters/yesenia/front.svg",
  48009. extra: 1479/1474,
  48010. bottom: 233/1712
  48011. }
  48012. },
  48013. },
  48014. [
  48015. {
  48016. name: "Normal",
  48017. height: math.unit(10.4, "feet"),
  48018. default: true
  48019. },
  48020. ]
  48021. ))
  48022. characterMakers.push(() => makeCharacter(
  48023. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  48024. {
  48025. normal: {
  48026. height: math.unit(6 + 1/12, "feet"),
  48027. weight: math.unit(180, "lb"),
  48028. name: "Normal",
  48029. image: {
  48030. source: "./media/characters/leanne-lycheborne/normal.svg",
  48031. extra: 1748/1660,
  48032. bottom: 98/1846
  48033. }
  48034. },
  48035. were: {
  48036. height: math.unit(12, "feet"),
  48037. weight: math.unit(1600, "lb"),
  48038. name: "Were",
  48039. image: {
  48040. source: "./media/characters/leanne-lycheborne/were.svg",
  48041. extra: 1485/1432,
  48042. bottom: 66/1551
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(6 + 1/12, "feet"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  48056. {
  48057. side: {
  48058. height: math.unit(13, "feet"),
  48059. name: "Side",
  48060. image: {
  48061. source: "./media/characters/kira-tyler/side.svg",
  48062. extra: 693/393,
  48063. bottom: 58/751
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(13, "feet"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48077. {
  48078. front: {
  48079. height: math.unit(10.3, "feet"),
  48080. weight: math.unit(150, "lb"),
  48081. name: "Front",
  48082. image: {
  48083. source: "./media/characters/blaze/front.svg",
  48084. extra: 1378/1286,
  48085. bottom: 172/1550
  48086. }
  48087. },
  48088. },
  48089. [
  48090. {
  48091. name: "Normal",
  48092. height: math.unit(10.3, "feet"),
  48093. default: true
  48094. },
  48095. ]
  48096. ))
  48097. characterMakers.push(() => makeCharacter(
  48098. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48099. {
  48100. side: {
  48101. height: math.unit(2, "meters"),
  48102. weight: math.unit(400, "kg"),
  48103. name: "Side",
  48104. image: {
  48105. source: "./media/characters/anu/side.svg",
  48106. extra: 506/394,
  48107. bottom: 18/524
  48108. }
  48109. },
  48110. },
  48111. [
  48112. {
  48113. name: "Humanoid",
  48114. height: math.unit(2, "meters")
  48115. },
  48116. {
  48117. name: "Normal",
  48118. height: math.unit(5, "meters"),
  48119. default: true
  48120. },
  48121. ]
  48122. ))
  48123. characterMakers.push(() => makeCharacter(
  48124. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48125. {
  48126. front: {
  48127. height: math.unit(5 + 5/12, "feet"),
  48128. weight: math.unit(170, "lb"),
  48129. name: "Front",
  48130. image: {
  48131. source: "./media/characters/synx-the-lynx/front.svg",
  48132. extra: 1893/1745,
  48133. bottom: 17/1910
  48134. }
  48135. },
  48136. side: {
  48137. height: math.unit(5 + 5/12, "feet"),
  48138. weight: math.unit(170, "lb"),
  48139. name: "Side",
  48140. image: {
  48141. source: "./media/characters/synx-the-lynx/side.svg",
  48142. extra: 1884/1740,
  48143. bottom: 39/1923
  48144. }
  48145. },
  48146. back: {
  48147. height: math.unit(5 + 5/12, "feet"),
  48148. weight: math.unit(170, "lb"),
  48149. name: "Back",
  48150. image: {
  48151. source: "./media/characters/synx-the-lynx/back.svg",
  48152. extra: 1903/1755,
  48153. bottom: 14/1917
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(5 + 5/12, "feet"),
  48161. default: true
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48167. {
  48168. back: {
  48169. height: math.unit(15, "feet"),
  48170. name: "Back",
  48171. image: {
  48172. source: "./media/characters/nadezda-fex/back.svg",
  48173. extra: 1695/1481,
  48174. bottom: 25/1720
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(15, "feet"),
  48182. default: true
  48183. },
  48184. {
  48185. name: "Macro",
  48186. height: math.unit(2.5, "miles")
  48187. },
  48188. {
  48189. name: "Goddess",
  48190. height: math.unit(2, "multiverses")
  48191. },
  48192. ]
  48193. ))
  48194. characterMakers.push(() => makeCharacter(
  48195. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48196. {
  48197. front: {
  48198. height: math.unit(216, "cm"),
  48199. name: "Front",
  48200. image: {
  48201. source: "./media/characters/lev/front.svg",
  48202. extra: 1728/1670,
  48203. bottom: 82/1810
  48204. }
  48205. },
  48206. back: {
  48207. height: math.unit(216, "cm"),
  48208. name: "Back",
  48209. image: {
  48210. source: "./media/characters/lev/back.svg",
  48211. extra: 1738/1675,
  48212. bottom: 24/1762
  48213. }
  48214. },
  48215. dressed: {
  48216. height: math.unit(216, "cm"),
  48217. name: "Dressed",
  48218. image: {
  48219. source: "./media/characters/lev/dressed.svg",
  48220. extra: 1397/1351,
  48221. bottom: 73/1470
  48222. }
  48223. },
  48224. head: {
  48225. height: math.unit(0.51, "meter"),
  48226. name: "Head",
  48227. image: {
  48228. source: "./media/characters/lev/head.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Normal",
  48235. height: math.unit(216, "cm"),
  48236. default: true
  48237. },
  48238. {
  48239. name: "Relatively Macro",
  48240. height: math.unit(80, "meters")
  48241. },
  48242. {
  48243. name: "Megamacro",
  48244. height: math.unit(21600, "meters")
  48245. },
  48246. {
  48247. name: "Megamacro+",
  48248. height: math.unit(64800, "meters")
  48249. },
  48250. ]
  48251. ))
  48252. characterMakers.push(() => makeCharacter(
  48253. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48254. {
  48255. front: {
  48256. height: math.unit(2, "meters"),
  48257. weight: math.unit(80, "kg"),
  48258. name: "Front",
  48259. image: {
  48260. source: "./media/characters/moka/front.svg",
  48261. extra: 1337/1255,
  48262. bottom: 58/1395
  48263. }
  48264. },
  48265. },
  48266. [
  48267. {
  48268. name: "Micro",
  48269. height: math.unit(15, "cm")
  48270. },
  48271. {
  48272. name: "Normal",
  48273. height: math.unit(2, "meters"),
  48274. default: true
  48275. },
  48276. {
  48277. name: "Macro",
  48278. height: math.unit(20, "meters"),
  48279. },
  48280. ]
  48281. ))
  48282. characterMakers.push(() => makeCharacter(
  48283. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48284. {
  48285. front: {
  48286. height: math.unit(9, "feet"),
  48287. weight: math.unit(240, "lb"),
  48288. name: "Front",
  48289. image: {
  48290. source: "./media/characters/kuzco/front.svg",
  48291. extra: 1593/1487,
  48292. bottom: 32/1625
  48293. }
  48294. },
  48295. side: {
  48296. height: math.unit(9, "feet"),
  48297. weight: math.unit(240, "lb"),
  48298. name: "Side",
  48299. image: {
  48300. source: "./media/characters/kuzco/side.svg",
  48301. extra: 1575/1485,
  48302. bottom: 30/1605
  48303. }
  48304. },
  48305. back: {
  48306. height: math.unit(9, "feet"),
  48307. weight: math.unit(240, "lb"),
  48308. name: "Back",
  48309. image: {
  48310. source: "./media/characters/kuzco/back.svg",
  48311. extra: 1603/1514,
  48312. bottom: 14/1617
  48313. }
  48314. },
  48315. },
  48316. [
  48317. {
  48318. name: "Normal",
  48319. height: math.unit(9, "feet"),
  48320. default: true
  48321. },
  48322. ]
  48323. ))
  48324. characterMakers.push(() => makeCharacter(
  48325. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48326. {
  48327. side: {
  48328. height: math.unit(2, "meters"),
  48329. weight: math.unit(300, "kg"),
  48330. name: "Side",
  48331. image: {
  48332. source: "./media/characters/ceruleus/side.svg",
  48333. extra: 1068/974,
  48334. bottom: 126/1194
  48335. }
  48336. },
  48337. maw: {
  48338. height: math.unit(0.8125, "meter"),
  48339. name: "Maw",
  48340. image: {
  48341. source: "./media/characters/ceruleus/maw.svg"
  48342. }
  48343. },
  48344. },
  48345. [
  48346. {
  48347. name: "Normal",
  48348. height: math.unit(16, "meters"),
  48349. default: true
  48350. },
  48351. ]
  48352. ))
  48353. characterMakers.push(() => makeCharacter(
  48354. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48355. {
  48356. front: {
  48357. height: math.unit(9, "feet"),
  48358. weight: math.unit(500, "kg"),
  48359. name: "Front",
  48360. image: {
  48361. source: "./media/characters/acouya/front.svg",
  48362. extra: 1660/1473,
  48363. bottom: 28/1688
  48364. }
  48365. },
  48366. },
  48367. [
  48368. {
  48369. name: "Normal",
  48370. height: math.unit(9, "feet"),
  48371. default: true
  48372. },
  48373. ]
  48374. ))
  48375. characterMakers.push(() => makeCharacter(
  48376. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48377. {
  48378. front: {
  48379. height: math.unit(5 + 6/12, "feet"),
  48380. weight: math.unit(195, "lb"),
  48381. name: "Front",
  48382. image: {
  48383. source: "./media/characters/vant/front.svg",
  48384. extra: 1396/1320,
  48385. bottom: 20/1416
  48386. }
  48387. },
  48388. back: {
  48389. height: math.unit(5 + 6/12, "feet"),
  48390. weight: math.unit(195, "lb"),
  48391. name: "Back",
  48392. image: {
  48393. source: "./media/characters/vant/back.svg",
  48394. extra: 1396/1320,
  48395. bottom: 20/1416
  48396. }
  48397. },
  48398. maw: {
  48399. height: math.unit(0.75, "feet"),
  48400. name: "Maw",
  48401. image: {
  48402. source: "./media/characters/vant/maw.svg"
  48403. }
  48404. },
  48405. paw: {
  48406. height: math.unit(1.07, "feet"),
  48407. name: "Paw",
  48408. image: {
  48409. source: "./media/characters/vant/paw.svg"
  48410. }
  48411. },
  48412. },
  48413. [
  48414. {
  48415. name: "Micro",
  48416. height: math.unit(0.25, "inches")
  48417. },
  48418. {
  48419. name: "Normal",
  48420. height: math.unit(5 + 6/12, "feet"),
  48421. default: true
  48422. },
  48423. {
  48424. name: "Macro",
  48425. height: math.unit(75, "feet")
  48426. },
  48427. ]
  48428. ))
  48429. characterMakers.push(() => makeCharacter(
  48430. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48431. {
  48432. front: {
  48433. height: math.unit(30, "meters"),
  48434. weight: math.unit(363, "tons"),
  48435. name: "Front",
  48436. image: {
  48437. source: "./media/characters/ahra/front.svg",
  48438. extra: 1914/1814,
  48439. bottom: 46/1960
  48440. }
  48441. },
  48442. },
  48443. [
  48444. {
  48445. name: "Macro",
  48446. height: math.unit(30, "meters"),
  48447. default: true
  48448. },
  48449. ]
  48450. ))
  48451. characterMakers.push(() => makeCharacter(
  48452. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48453. {
  48454. undressed: {
  48455. height: math.unit(2, "m"),
  48456. weight: math.unit(250, "kg"),
  48457. name: "Undressed",
  48458. image: {
  48459. source: "./media/characters/coriander/undressed.svg",
  48460. extra: 1757/1606,
  48461. bottom: 107/1864
  48462. }
  48463. },
  48464. dressed: {
  48465. height: math.unit(2, "m"),
  48466. weight: math.unit(250, "kg"),
  48467. name: "Dressed",
  48468. image: {
  48469. source: "./media/characters/coriander/dressed.svg",
  48470. extra: 1757/1606,
  48471. bottom: 107/1864
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Normal",
  48478. height: math.unit(4, "meters"),
  48479. default: true
  48480. },
  48481. {
  48482. name: "XL",
  48483. height: math.unit(6, "meters")
  48484. },
  48485. {
  48486. name: "XXL",
  48487. height: math.unit(8, "meters")
  48488. },
  48489. ]
  48490. ))
  48491. characterMakers.push(() => makeCharacter(
  48492. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48493. {
  48494. front: {
  48495. height: math.unit(6, "feet"),
  48496. name: "Front",
  48497. image: {
  48498. source: "./media/characters/syrinx/front.svg",
  48499. extra: 1557/1259,
  48500. bottom: 171/1728
  48501. }
  48502. },
  48503. },
  48504. [
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(6 + 3/12, "feet"),
  48508. default: true
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48514. {
  48515. front: {
  48516. height: math.unit(11 + 6/12, "feet"),
  48517. weight: math.unit(1.5, "tons"),
  48518. name: "Front",
  48519. image: {
  48520. source: "./media/characters/bor/front.svg",
  48521. extra: 1189/1109,
  48522. bottom: 170/1359
  48523. }
  48524. },
  48525. },
  48526. [
  48527. {
  48528. name: "Normal",
  48529. height: math.unit(11 + 6/12, "feet"),
  48530. default: true
  48531. },
  48532. {
  48533. name: "Macro",
  48534. height: math.unit(32 + 9/12, "feet")
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48540. {
  48541. anthro: {
  48542. height: math.unit(9, "feet"),
  48543. weight: math.unit(2076, "lb"),
  48544. name: "Anthro",
  48545. image: {
  48546. source: "./media/characters/abacus/anthro.svg",
  48547. extra: 1540/1494,
  48548. bottom: 233/1773
  48549. }
  48550. },
  48551. pigeon: {
  48552. height: math.unit(1, "feet"),
  48553. name: "Pigeon",
  48554. image: {
  48555. source: "./media/characters/abacus/pigeon.svg",
  48556. extra: 528/525,
  48557. bottom: 46/574
  48558. }
  48559. },
  48560. },
  48561. [
  48562. {
  48563. name: "Normal",
  48564. height: math.unit(9, "feet"),
  48565. default: true
  48566. },
  48567. ]
  48568. ))
  48569. characterMakers.push(() => makeCharacter(
  48570. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48571. {
  48572. side: {
  48573. height: math.unit(6, "feet"),
  48574. name: "Side",
  48575. image: {
  48576. source: "./media/characters/delkhan/side.svg",
  48577. extra: 1884/1786,
  48578. bottom: 308/2192
  48579. }
  48580. },
  48581. head: {
  48582. height: math.unit(3.38, "feet"),
  48583. name: "Head",
  48584. image: {
  48585. source: "./media/characters/delkhan/head.svg"
  48586. }
  48587. },
  48588. },
  48589. [
  48590. {
  48591. name: "Normal",
  48592. height: math.unit(72, "feet"),
  48593. default: true
  48594. },
  48595. {
  48596. name: "Giant",
  48597. height: math.unit(172, "feet")
  48598. },
  48599. ]
  48600. ))
  48601. characterMakers.push(() => makeCharacter(
  48602. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48603. {
  48604. standing: {
  48605. height: math.unit(6, "feet"),
  48606. name: "Standing",
  48607. image: {
  48608. source: "./media/characters/euchidat/standing.svg",
  48609. extra: 1612/1553,
  48610. bottom: 116/1728
  48611. }
  48612. },
  48613. leaning: {
  48614. height: math.unit(6, "feet"),
  48615. name: "Leaning",
  48616. image: {
  48617. source: "./media/characters/euchidat/leaning.svg",
  48618. extra: 1719/1674,
  48619. bottom: 27/1746
  48620. }
  48621. },
  48622. },
  48623. [
  48624. {
  48625. name: "Normal",
  48626. height: math.unit(175, "feet"),
  48627. default: true
  48628. },
  48629. {
  48630. name: "Megamacro",
  48631. height: math.unit(190, "miles")
  48632. },
  48633. {
  48634. name: "Gigamacro",
  48635. height: math.unit(190000, "miles")
  48636. },
  48637. ]
  48638. ))
  48639. characterMakers.push(() => makeCharacter(
  48640. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48641. {
  48642. front: {
  48643. height: math.unit(6, "feet"),
  48644. weight: math.unit(150, "lb"),
  48645. name: "Front",
  48646. image: {
  48647. source: "./media/characters/rebecca-stack/front.svg",
  48648. extra: 1256/1201,
  48649. bottom: 18/1274
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Normal",
  48656. height: math.unit(5 + 8/12, "feet"),
  48657. default: true
  48658. },
  48659. {
  48660. name: "Demolitionist",
  48661. height: math.unit(200, "feet")
  48662. },
  48663. {
  48664. name: "Out of Control",
  48665. height: math.unit(2, "miles")
  48666. },
  48667. {
  48668. name: "Giga",
  48669. height: math.unit(7200, "miles")
  48670. },
  48671. ]
  48672. ))
  48673. characterMakers.push(() => makeCharacter(
  48674. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48675. {
  48676. front: {
  48677. height: math.unit(6, "feet"),
  48678. weight: math.unit(150, "lb"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/jenny-cartwright/front.svg",
  48682. extra: 1384/1376,
  48683. bottom: 58/1442
  48684. }
  48685. },
  48686. },
  48687. [
  48688. {
  48689. name: "Normal",
  48690. height: math.unit(6 + 7/12, "feet"),
  48691. default: true
  48692. },
  48693. {
  48694. name: "Librarian",
  48695. height: math.unit(55, "feet")
  48696. },
  48697. {
  48698. name: "Sightseer",
  48699. height: math.unit(50, "miles")
  48700. },
  48701. {
  48702. name: "Giga",
  48703. height: math.unit(30000, "miles")
  48704. },
  48705. ]
  48706. ))
  48707. characterMakers.push(() => makeCharacter(
  48708. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48709. {
  48710. nude: {
  48711. height: math.unit(8, "feet"),
  48712. weight: math.unit(225, "lb"),
  48713. name: "Nude",
  48714. image: {
  48715. source: "./media/characters/marvy/nude.svg",
  48716. extra: 1900/1683,
  48717. bottom: 89/1989
  48718. }
  48719. },
  48720. dressed: {
  48721. height: math.unit(8, "feet"),
  48722. weight: math.unit(225, "lb"),
  48723. name: "Dressed",
  48724. image: {
  48725. source: "./media/characters/marvy/dressed.svg",
  48726. extra: 1900/1683,
  48727. bottom: 89/1989
  48728. }
  48729. },
  48730. head: {
  48731. height: math.unit(2.85, "feet"),
  48732. name: "Head",
  48733. image: {
  48734. source: "./media/characters/marvy/head.svg"
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(8, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(8, "feet"),
  48751. weight: math.unit(250, "lb"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/leah/front.svg",
  48755. extra: 1257/1149,
  48756. bottom: 109/1366
  48757. }
  48758. },
  48759. },
  48760. [
  48761. {
  48762. name: "Normal",
  48763. height: math.unit(8, "feet"),
  48764. default: true
  48765. },
  48766. {
  48767. name: "Minimacro",
  48768. height: math.unit(40, "feet")
  48769. },
  48770. {
  48771. name: "Macro",
  48772. height: math.unit(124, "feet")
  48773. },
  48774. {
  48775. name: "Megamacro",
  48776. height: math.unit(850, "feet")
  48777. },
  48778. ]
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48782. {
  48783. side: {
  48784. height: math.unit(13 + 6/12, "feet"),
  48785. weight: math.unit(3200, "lb"),
  48786. name: "Side",
  48787. image: {
  48788. source: "./media/characters/alvir/side.svg",
  48789. extra: 896/589,
  48790. bottom: 26/922
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Normal",
  48797. height: math.unit(13 + 6/12, "feet"),
  48798. default: true
  48799. },
  48800. ]
  48801. ))
  48802. characterMakers.push(() => makeCharacter(
  48803. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48804. {
  48805. front: {
  48806. height: math.unit(5 + 4/12, "feet"),
  48807. weight: math.unit(236, "lb"),
  48808. name: "Front",
  48809. image: {
  48810. source: "./media/characters/zaina-khalil/front.svg",
  48811. extra: 1533/1485,
  48812. bottom: 94/1627
  48813. }
  48814. },
  48815. side: {
  48816. height: math.unit(5 + 4/12, "feet"),
  48817. weight: math.unit(236, "lb"),
  48818. name: "Side",
  48819. image: {
  48820. source: "./media/characters/zaina-khalil/side.svg",
  48821. extra: 1537/1498,
  48822. bottom: 66/1603
  48823. }
  48824. },
  48825. back: {
  48826. height: math.unit(5 + 4/12, "feet"),
  48827. weight: math.unit(236, "lb"),
  48828. name: "Back",
  48829. image: {
  48830. source: "./media/characters/zaina-khalil/back.svg",
  48831. extra: 1546/1494,
  48832. bottom: 89/1635
  48833. }
  48834. },
  48835. },
  48836. [
  48837. {
  48838. name: "Normal",
  48839. height: math.unit(5 + 4/12, "feet"),
  48840. default: true
  48841. },
  48842. ]
  48843. ))
  48844. characterMakers.push(() => makeCharacter(
  48845. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48846. {
  48847. side: {
  48848. height: math.unit(12, "feet"),
  48849. weight: math.unit(4000, "lb"),
  48850. name: "Side",
  48851. image: {
  48852. source: "./media/characters/terry/side.svg",
  48853. extra: 1518/1439,
  48854. bottom: 149/1667
  48855. }
  48856. },
  48857. },
  48858. [
  48859. {
  48860. name: "Normal",
  48861. height: math.unit(12, "feet"),
  48862. default: true
  48863. },
  48864. ]
  48865. ))
  48866. characterMakers.push(() => makeCharacter(
  48867. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48868. {
  48869. front: {
  48870. height: math.unit(12, "feet"),
  48871. weight: math.unit(1500, "lb"),
  48872. name: "Front",
  48873. image: {
  48874. source: "./media/characters/kahea/front.svg",
  48875. extra: 1722/1617,
  48876. bottom: 179/1901
  48877. }
  48878. },
  48879. },
  48880. [
  48881. {
  48882. name: "Normal",
  48883. height: math.unit(12, "feet"),
  48884. default: true
  48885. },
  48886. ]
  48887. ))
  48888. characterMakers.push(() => makeCharacter(
  48889. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48890. {
  48891. demonFront: {
  48892. height: math.unit(36, "feet"),
  48893. name: "Front",
  48894. image: {
  48895. source: "./media/characters/alex-xuria/demon-front.svg",
  48896. extra: 1705/1673,
  48897. bottom: 198/1903
  48898. },
  48899. form: "demon",
  48900. default: true
  48901. },
  48902. demonBack: {
  48903. height: math.unit(36, "feet"),
  48904. name: "Back",
  48905. image: {
  48906. source: "./media/characters/alex-xuria/demon-back.svg",
  48907. extra: 1725/1693,
  48908. bottom: 70/1795
  48909. },
  48910. form: "demon"
  48911. },
  48912. demonHead: {
  48913. height: math.unit(2.14, "meters"),
  48914. name: "Head",
  48915. image: {
  48916. source: "./media/characters/alex-xuria/demon-head.svg"
  48917. },
  48918. form: "demon"
  48919. },
  48920. demonHand: {
  48921. height: math.unit(1.61, "meters"),
  48922. name: "Hand",
  48923. image: {
  48924. source: "./media/characters/alex-xuria/demon-hand.svg"
  48925. },
  48926. form: "demon"
  48927. },
  48928. demonPaw: {
  48929. height: math.unit(1.35, "meters"),
  48930. name: "Paw",
  48931. image: {
  48932. source: "./media/characters/alex-xuria/demon-paw.svg"
  48933. },
  48934. form: "demon"
  48935. },
  48936. demonFoot: {
  48937. height: math.unit(2.2, "meters"),
  48938. name: "Foot",
  48939. image: {
  48940. source: "./media/characters/alex-xuria/demon-foot.svg"
  48941. },
  48942. form: "demon"
  48943. },
  48944. demonCock: {
  48945. height: math.unit(1.74, "meters"),
  48946. name: "Cock",
  48947. image: {
  48948. source: "./media/characters/alex-xuria/demon-cock.svg"
  48949. },
  48950. form: "demon"
  48951. },
  48952. demonTailClosed: {
  48953. height: math.unit(1.47, "meters"),
  48954. name: "Tail (Closed)",
  48955. image: {
  48956. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48957. },
  48958. form: "demon"
  48959. },
  48960. demonTailOpen: {
  48961. height: math.unit(2.85, "meters"),
  48962. name: "Tail (Open)",
  48963. image: {
  48964. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48965. },
  48966. form: "demon"
  48967. },
  48968. incubusFront: {
  48969. height: math.unit(12, "feet"),
  48970. name: "Front",
  48971. image: {
  48972. source: "./media/characters/alex-xuria/incubus-front.svg",
  48973. extra: 1754/1677,
  48974. bottom: 125/1879
  48975. },
  48976. form: "incubus",
  48977. default: true
  48978. },
  48979. incubusBack: {
  48980. height: math.unit(12, "feet"),
  48981. name: "Back",
  48982. image: {
  48983. source: "./media/characters/alex-xuria/incubus-back.svg",
  48984. extra: 1702/1647,
  48985. bottom: 30/1732
  48986. },
  48987. form: "incubus"
  48988. },
  48989. incubusHead: {
  48990. height: math.unit(3.45, "feet"),
  48991. name: "Head",
  48992. image: {
  48993. source: "./media/characters/alex-xuria/incubus-head.svg"
  48994. },
  48995. form: "incubus"
  48996. },
  48997. rabbitFront: {
  48998. height: math.unit(6, "feet"),
  48999. name: "Front",
  49000. image: {
  49001. source: "./media/characters/alex-xuria/rabbit-front.svg",
  49002. extra: 1369/1349,
  49003. bottom: 45/1414
  49004. },
  49005. form: "rabbit",
  49006. default: true
  49007. },
  49008. rabbitSide: {
  49009. height: math.unit(6, "feet"),
  49010. name: "Side",
  49011. image: {
  49012. source: "./media/characters/alex-xuria/rabbit-side.svg",
  49013. extra: 1370/1356,
  49014. bottom: 37/1407
  49015. },
  49016. form: "rabbit"
  49017. },
  49018. rabbitBack: {
  49019. height: math.unit(6, "feet"),
  49020. name: "Back",
  49021. image: {
  49022. source: "./media/characters/alex-xuria/rabbit-back.svg",
  49023. extra: 1375/1358,
  49024. bottom: 43/1418
  49025. },
  49026. form: "rabbit"
  49027. },
  49028. },
  49029. [
  49030. {
  49031. name: "Normal",
  49032. height: math.unit(6, "feet"),
  49033. default: true,
  49034. form: "rabbit"
  49035. },
  49036. {
  49037. name: "Incubus",
  49038. height: math.unit(12, "feet"),
  49039. default: true,
  49040. form: "incubus"
  49041. },
  49042. {
  49043. name: "Demon",
  49044. height: math.unit(36, "feet"),
  49045. default: true,
  49046. form: "demon"
  49047. }
  49048. ],
  49049. {
  49050. "demon": {
  49051. name: "Demon",
  49052. default: true
  49053. },
  49054. "incubus": {
  49055. name: "Incubus",
  49056. },
  49057. "rabbit": {
  49058. name: "Rabbit"
  49059. }
  49060. }
  49061. ))
  49062. characterMakers.push(() => makeCharacter(
  49063. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  49064. {
  49065. front: {
  49066. height: math.unit(7 + 5/12, "feet"),
  49067. weight: math.unit(510, "lb"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/syrup/front.svg",
  49071. extra: 932/916,
  49072. bottom: 26/958
  49073. }
  49074. },
  49075. },
  49076. [
  49077. {
  49078. name: "Normal",
  49079. height: math.unit(7 + 5/12, "feet"),
  49080. default: true
  49081. },
  49082. {
  49083. name: "Big",
  49084. height: math.unit(50, "feet")
  49085. },
  49086. {
  49087. name: "Macro",
  49088. height: math.unit(300, "feet")
  49089. },
  49090. {
  49091. name: "Megamacro",
  49092. height: math.unit(1, "mile")
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(6 + 9/12, "feet"),
  49101. name: "Front",
  49102. image: {
  49103. source: "./media/characters/zeimne/front.svg",
  49104. extra: 1969/1806,
  49105. bottom: 53/2022
  49106. }
  49107. },
  49108. },
  49109. [
  49110. {
  49111. name: "Normal",
  49112. height: math.unit(6 + 9/12, "feet"),
  49113. default: true
  49114. },
  49115. {
  49116. name: "Giant",
  49117. height: math.unit(550, "feet")
  49118. },
  49119. {
  49120. name: "Mega",
  49121. height: math.unit(3, "miles")
  49122. },
  49123. {
  49124. name: "Giga",
  49125. height: math.unit(250, "miles")
  49126. },
  49127. {
  49128. name: "Tera",
  49129. height: math.unit(1, "AU")
  49130. },
  49131. ]
  49132. ))
  49133. characterMakers.push(() => makeCharacter(
  49134. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49135. {
  49136. front: {
  49137. height: math.unit(5 + 2/12, "feet"),
  49138. name: "Front",
  49139. image: {
  49140. source: "./media/characters/grar/front.svg",
  49141. extra: 1331/1119,
  49142. bottom: 60/1391
  49143. }
  49144. },
  49145. back: {
  49146. height: math.unit(5 + 2/12, "feet"),
  49147. name: "Back",
  49148. image: {
  49149. source: "./media/characters/grar/back.svg",
  49150. extra: 1385/1169,
  49151. bottom: 23/1408
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Normal",
  49158. height: math.unit(5 + 2/12, "feet"),
  49159. default: true
  49160. },
  49161. ]
  49162. ))
  49163. characterMakers.push(() => makeCharacter(
  49164. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49165. {
  49166. front: {
  49167. height: math.unit(13 + 7/12, "feet"),
  49168. weight: math.unit(2200, "lb"),
  49169. name: "Front",
  49170. image: {
  49171. source: "./media/characters/endraya/front.svg",
  49172. extra: 1289/1215,
  49173. bottom: 50/1339
  49174. }
  49175. },
  49176. nude: {
  49177. height: math.unit(13 + 7/12, "feet"),
  49178. weight: math.unit(2200, "lb"),
  49179. name: "Nude",
  49180. image: {
  49181. source: "./media/characters/endraya/nude.svg",
  49182. extra: 1247/1171,
  49183. bottom: 40/1287
  49184. }
  49185. },
  49186. head: {
  49187. height: math.unit(2.6, "feet"),
  49188. name: "Head",
  49189. image: {
  49190. source: "./media/characters/endraya/head.svg"
  49191. }
  49192. },
  49193. slit: {
  49194. height: math.unit(3.4, "feet"),
  49195. name: "Slit",
  49196. image: {
  49197. source: "./media/characters/endraya/slit.svg"
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Normal",
  49204. height: math.unit(13 + 7/12, "feet"),
  49205. default: true
  49206. },
  49207. {
  49208. name: "Macro",
  49209. height: math.unit(200, "feet")
  49210. },
  49211. ]
  49212. ))
  49213. characterMakers.push(() => makeCharacter(
  49214. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49215. {
  49216. front: {
  49217. height: math.unit(1.81, "meters"),
  49218. weight: math.unit(69, "kg"),
  49219. name: "Front",
  49220. image: {
  49221. source: "./media/characters/rodryana/front.svg",
  49222. extra: 2002/1921,
  49223. bottom: 53/2055
  49224. }
  49225. },
  49226. back: {
  49227. height: math.unit(1.81, "meters"),
  49228. weight: math.unit(69, "kg"),
  49229. name: "Back",
  49230. image: {
  49231. source: "./media/characters/rodryana/back.svg",
  49232. extra: 1993/1926,
  49233. bottom: 48/2041
  49234. }
  49235. },
  49236. maw: {
  49237. height: math.unit(0.19769417475, "meters"),
  49238. name: "Maw",
  49239. image: {
  49240. source: "./media/characters/rodryana/maw.svg"
  49241. }
  49242. },
  49243. slit: {
  49244. height: math.unit(0.31631067961, "meters"),
  49245. name: "Slit",
  49246. image: {
  49247. source: "./media/characters/rodryana/slit.svg"
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Normal",
  49254. height: math.unit(1.81, "meters")
  49255. },
  49256. {
  49257. name: "Mini Macro",
  49258. height: math.unit(181, "meters")
  49259. },
  49260. {
  49261. name: "Macro",
  49262. height: math.unit(452, "meters"),
  49263. default: true
  49264. },
  49265. {
  49266. name: "Mega Macro",
  49267. height: math.unit(1.375, "km")
  49268. },
  49269. {
  49270. name: "Giga Macro",
  49271. height: math.unit(13.575, "km")
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49277. {
  49278. front: {
  49279. height: math.unit(6, "feet"),
  49280. weight: math.unit(1000, "lb"),
  49281. name: "Front",
  49282. image: {
  49283. source: "./media/characters/asaya/front.svg",
  49284. extra: 1460/1200,
  49285. bottom: 71/1531
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(8, "km"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49299. {
  49300. front: {
  49301. height: math.unit(3.5, "meters"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/sarzu-and-israz/front.svg",
  49305. extra: 1570/1558,
  49306. bottom: 150/1720
  49307. },
  49308. },
  49309. back: {
  49310. height: math.unit(3.5, "meters"),
  49311. name: "Back",
  49312. image: {
  49313. source: "./media/characters/sarzu-and-israz/back.svg",
  49314. extra: 1523/1509,
  49315. bottom: 132/1655
  49316. },
  49317. },
  49318. frontFemale: {
  49319. height: math.unit(3.5, "meters"),
  49320. name: "Front (Female)",
  49321. image: {
  49322. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49323. extra: 1570/1558,
  49324. bottom: 150/1720
  49325. },
  49326. },
  49327. frontHerm: {
  49328. height: math.unit(3.5, "meters"),
  49329. name: "Front (Herm)",
  49330. image: {
  49331. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49332. extra: 1570/1558,
  49333. bottom: 150/1720
  49334. },
  49335. },
  49336. },
  49337. [
  49338. {
  49339. name: "Normal",
  49340. height: math.unit(3.5, "meters"),
  49341. default: true,
  49342. },
  49343. {
  49344. name: "Macro",
  49345. height: math.unit(65.5, "meters"),
  49346. },
  49347. ],
  49348. ))
  49349. characterMakers.push(() => makeCharacter(
  49350. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49351. {
  49352. front: {
  49353. height: math.unit(6, "feet"),
  49354. weight: math.unit(250, "lb"),
  49355. name: "Front",
  49356. image: {
  49357. source: "./media/characters/zenimma/front.svg",
  49358. extra: 1346/1320,
  49359. bottom: 58/1404
  49360. }
  49361. },
  49362. back: {
  49363. height: math.unit(6, "feet"),
  49364. weight: math.unit(250, "lb"),
  49365. name: "Back",
  49366. image: {
  49367. source: "./media/characters/zenimma/back.svg",
  49368. extra: 1324/1308,
  49369. bottom: 44/1368
  49370. }
  49371. },
  49372. dick: {
  49373. height: math.unit(1.44, "feet"),
  49374. name: "Dick",
  49375. image: {
  49376. source: "./media/characters/zenimma/dick.svg"
  49377. }
  49378. },
  49379. },
  49380. [
  49381. {
  49382. name: "Canon Height",
  49383. height: math.unit(66, "miles"),
  49384. default: true
  49385. },
  49386. ]
  49387. ))
  49388. characterMakers.push(() => makeCharacter(
  49389. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49390. {
  49391. nude: {
  49392. height: math.unit(6, "feet"),
  49393. weight: math.unit(150, "lb"),
  49394. name: "Nude",
  49395. image: {
  49396. source: "./media/characters/shavon/nude.svg",
  49397. extra: 1242/1096,
  49398. bottom: 98/1340
  49399. }
  49400. },
  49401. dressed: {
  49402. height: math.unit(6, "feet"),
  49403. weight: math.unit(150, "lb"),
  49404. name: "Dressed",
  49405. image: {
  49406. source: "./media/characters/shavon/dressed.svg",
  49407. extra: 1242/1096,
  49408. bottom: 98/1340
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Macro",
  49415. height: math.unit(255, "feet"),
  49416. default: true
  49417. },
  49418. ]
  49419. ))
  49420. characterMakers.push(() => makeCharacter(
  49421. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49422. {
  49423. front: {
  49424. height: math.unit(6, "feet"),
  49425. name: "Front",
  49426. image: {
  49427. source: "./media/characters/steph/front.svg",
  49428. extra: 1430/1330,
  49429. bottom: 54/1484
  49430. }
  49431. },
  49432. },
  49433. [
  49434. {
  49435. name: "Normal",
  49436. height: math.unit(6, "feet"),
  49437. default: true
  49438. },
  49439. ]
  49440. ))
  49441. characterMakers.push(() => makeCharacter(
  49442. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49443. {
  49444. front: {
  49445. height: math.unit(9, "feet"),
  49446. weight: math.unit(400, "lb"),
  49447. name: "Front",
  49448. image: {
  49449. source: "./media/characters/kil'aman/front.svg",
  49450. extra: 1210/1159,
  49451. bottom: 109/1319
  49452. }
  49453. },
  49454. head: {
  49455. height: math.unit(2.14, "feet"),
  49456. name: "Head",
  49457. image: {
  49458. source: "./media/characters/kil'aman/head.svg"
  49459. }
  49460. },
  49461. maw: {
  49462. height: math.unit(1.21, "feet"),
  49463. name: "Maw",
  49464. image: {
  49465. source: "./media/characters/kil'aman/maw.svg"
  49466. }
  49467. },
  49468. foot: {
  49469. height: math.unit(1.7, "feet"),
  49470. name: "Foot",
  49471. image: {
  49472. source: "./media/characters/kil'aman/foot.svg"
  49473. }
  49474. },
  49475. dick: {
  49476. height: math.unit(2.1, "feet"),
  49477. name: "Dick",
  49478. image: {
  49479. source: "./media/characters/kil'aman/dick.svg"
  49480. }
  49481. },
  49482. },
  49483. [
  49484. {
  49485. name: "Normal",
  49486. height: math.unit(9, "feet")
  49487. },
  49488. {
  49489. name: "Canon Height",
  49490. height: math.unit(10, "miles"),
  49491. default: true
  49492. },
  49493. {
  49494. name: "Maximum",
  49495. height: math.unit(6e9, "miles")
  49496. },
  49497. ]
  49498. ))
  49499. characterMakers.push(() => makeCharacter(
  49500. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49501. {
  49502. front: {
  49503. height: math.unit(90, "feet"),
  49504. weight: math.unit(675000, "lb"),
  49505. name: "Front",
  49506. image: {
  49507. source: "./media/characters/qadan/front.svg",
  49508. extra: 1012/1004,
  49509. bottom: 78/1090
  49510. }
  49511. },
  49512. back: {
  49513. height: math.unit(90, "feet"),
  49514. weight: math.unit(675000, "lb"),
  49515. name: "Back",
  49516. image: {
  49517. source: "./media/characters/qadan/back.svg",
  49518. extra: 1042/1031,
  49519. bottom: 55/1097
  49520. }
  49521. },
  49522. armored: {
  49523. height: math.unit(90, "feet"),
  49524. weight: math.unit(675000, "lb"),
  49525. name: "Armored",
  49526. image: {
  49527. source: "./media/characters/qadan/armored.svg",
  49528. extra: 1047/1037,
  49529. bottom: 48/1095
  49530. }
  49531. },
  49532. },
  49533. [
  49534. {
  49535. name: "Normal",
  49536. height: math.unit(90, "feet"),
  49537. default: true
  49538. },
  49539. ]
  49540. ))
  49541. characterMakers.push(() => makeCharacter(
  49542. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49543. {
  49544. front: {
  49545. height: math.unit(6, "feet"),
  49546. weight: math.unit(225, "lb"),
  49547. name: "Front",
  49548. image: {
  49549. source: "./media/characters/brooke/front.svg",
  49550. extra: 1050/1010,
  49551. bottom: 66/1116
  49552. }
  49553. },
  49554. back: {
  49555. height: math.unit(6, "feet"),
  49556. weight: math.unit(225, "lb"),
  49557. name: "Back",
  49558. image: {
  49559. source: "./media/characters/brooke/back.svg",
  49560. extra: 1053/1013,
  49561. bottom: 41/1094
  49562. }
  49563. },
  49564. dressed: {
  49565. height: math.unit(6, "feet"),
  49566. weight: math.unit(225, "lb"),
  49567. name: "Dressed",
  49568. image: {
  49569. source: "./media/characters/brooke/dressed.svg",
  49570. extra: 1050/1010,
  49571. bottom: 66/1116
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Canon Height",
  49578. height: math.unit(500, "miles"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(6 + 2/12, "feet"),
  49588. weight: math.unit(210, "lb"),
  49589. name: "Front",
  49590. image: {
  49591. source: "./media/characters/wubs/front.svg",
  49592. extra: 1345/1325,
  49593. bottom: 70/1415
  49594. }
  49595. },
  49596. back: {
  49597. height: math.unit(6 + 2/12, "feet"),
  49598. weight: math.unit(210, "lb"),
  49599. name: "Back",
  49600. image: {
  49601. source: "./media/characters/wubs/back.svg",
  49602. extra: 1296/1275,
  49603. bottom: 58/1354
  49604. }
  49605. },
  49606. },
  49607. [
  49608. {
  49609. name: "Normal",
  49610. height: math.unit(6 + 2/12, "feet"),
  49611. default: true
  49612. },
  49613. {
  49614. name: "Macro",
  49615. height: math.unit(1000, "feet")
  49616. },
  49617. {
  49618. name: "Megamacro",
  49619. height: math.unit(1, "mile")
  49620. },
  49621. ]
  49622. ))
  49623. characterMakers.push(() => makeCharacter(
  49624. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49625. {
  49626. front: {
  49627. height: math.unit(4, "feet"),
  49628. weight: math.unit(120, "lb"),
  49629. name: "Front",
  49630. image: {
  49631. source: "./media/characters/blue/front.svg",
  49632. extra: 1636/1525,
  49633. bottom: 43/1679
  49634. }
  49635. },
  49636. back: {
  49637. height: math.unit(4, "feet"),
  49638. weight: math.unit(120, "lb"),
  49639. name: "Back",
  49640. image: {
  49641. source: "./media/characters/blue/back.svg",
  49642. extra: 1660/1560,
  49643. bottom: 57/1717
  49644. }
  49645. },
  49646. paws: {
  49647. height: math.unit(0.826, "feet"),
  49648. name: "Paws",
  49649. image: {
  49650. source: "./media/characters/blue/paws.svg"
  49651. }
  49652. },
  49653. },
  49654. [
  49655. {
  49656. name: "Micro",
  49657. height: math.unit(3, "inches")
  49658. },
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(4, "feet"),
  49662. default: true
  49663. },
  49664. {
  49665. name: "Femenine Form",
  49666. height: math.unit(14, "feet")
  49667. },
  49668. {
  49669. name: "Werebat Form",
  49670. height: math.unit(18, "feet")
  49671. },
  49672. ]
  49673. ))
  49674. characterMakers.push(() => makeCharacter(
  49675. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49676. {
  49677. female: {
  49678. height: math.unit(7 + 4/12, "feet"),
  49679. weight: math.unit(243, "lb"),
  49680. name: "Female",
  49681. image: {
  49682. source: "./media/characters/kaya/female.svg",
  49683. extra: 975/898,
  49684. bottom: 34/1009
  49685. }
  49686. },
  49687. herm: {
  49688. height: math.unit(7 + 4/12, "feet"),
  49689. weight: math.unit(243, "lb"),
  49690. name: "Herm",
  49691. image: {
  49692. source: "./media/characters/kaya/herm.svg",
  49693. extra: 975/898,
  49694. bottom: 34/1009
  49695. }
  49696. },
  49697. },
  49698. [
  49699. {
  49700. name: "Normal",
  49701. height: math.unit(7 + 4/12, "feet"),
  49702. default: true
  49703. },
  49704. ]
  49705. ))
  49706. characterMakers.push(() => makeCharacter(
  49707. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49708. {
  49709. female: {
  49710. height: math.unit(9 + 4/12, "feet"),
  49711. weight: math.unit(398, "lb"),
  49712. name: "Female",
  49713. image: {
  49714. source: "./media/characters/kassandra/female.svg",
  49715. extra: 908/839,
  49716. bottom: 61/969
  49717. }
  49718. },
  49719. intersex: {
  49720. height: math.unit(9 + 4/12, "feet"),
  49721. weight: math.unit(398, "lb"),
  49722. name: "Intersex",
  49723. image: {
  49724. source: "./media/characters/kassandra/intersex.svg",
  49725. extra: 908/839,
  49726. bottom: 61/969
  49727. }
  49728. },
  49729. },
  49730. [
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(9 + 4/12, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(3, "meters"),
  49743. name: "Front",
  49744. image: {
  49745. source: "./media/characters/amy/front.svg",
  49746. extra: 1380/1343,
  49747. bottom: 70/1450
  49748. }
  49749. },
  49750. back: {
  49751. height: math.unit(3, "meters"),
  49752. name: "Back",
  49753. image: {
  49754. source: "./media/characters/amy/back.svg",
  49755. extra: 1380/1347,
  49756. bottom: 66/1446
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(3, "meters"),
  49764. default: true
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49770. {
  49771. side: {
  49772. height: math.unit(47, "cm"),
  49773. weight: math.unit(10.8, "kg"),
  49774. name: "Side",
  49775. image: {
  49776. source: "./media/characters/alphaschakal/side.svg",
  49777. extra: 1058/568,
  49778. bottom: 62/1120
  49779. }
  49780. },
  49781. back: {
  49782. height: math.unit(78, "cm"),
  49783. weight: math.unit(10.8, "kg"),
  49784. name: "Back",
  49785. image: {
  49786. source: "./media/characters/alphaschakal/back.svg",
  49787. extra: 1102/942,
  49788. bottom: 185/1287
  49789. }
  49790. },
  49791. head: {
  49792. height: math.unit(28, "cm"),
  49793. name: "Head",
  49794. image: {
  49795. source: "./media/characters/alphaschakal/head.svg",
  49796. extra: 696/508,
  49797. bottom: 0/696
  49798. }
  49799. },
  49800. paw: {
  49801. height: math.unit(16, "cm"),
  49802. name: "Paw",
  49803. image: {
  49804. source: "./media/characters/alphaschakal/paw.svg"
  49805. }
  49806. },
  49807. },
  49808. [
  49809. {
  49810. name: "Normal",
  49811. height: math.unit(47, "cm"),
  49812. default: true
  49813. },
  49814. {
  49815. name: "Macro",
  49816. height: math.unit(340, "cm")
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(36, "earths"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/ecobyss/front.svg",
  49828. extra: 1282/1215,
  49829. bottom: 11/1293
  49830. }
  49831. },
  49832. back: {
  49833. height: math.unit(36, "earths"),
  49834. name: "Back",
  49835. image: {
  49836. source: "./media/characters/ecobyss/back.svg",
  49837. extra: 1291/1222,
  49838. bottom: 8/1299
  49839. }
  49840. },
  49841. },
  49842. [
  49843. {
  49844. name: "Normal",
  49845. height: math.unit(36, "earths"),
  49846. default: true
  49847. },
  49848. ]
  49849. ))
  49850. characterMakers.push(() => makeCharacter(
  49851. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49852. {
  49853. front: {
  49854. height: math.unit(12, "feet"),
  49855. name: "Front",
  49856. image: {
  49857. source: "./media/characters/vasuk/front.svg",
  49858. extra: 1326/1207,
  49859. bottom: 64/1390
  49860. }
  49861. },
  49862. },
  49863. [
  49864. {
  49865. name: "Normal",
  49866. height: math.unit(12, "feet"),
  49867. default: true
  49868. },
  49869. ]
  49870. ))
  49871. characterMakers.push(() => makeCharacter(
  49872. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49873. {
  49874. side: {
  49875. height: math.unit(100, "feet"),
  49876. name: "Side",
  49877. image: {
  49878. source: "./media/characters/linneaus/side.svg",
  49879. extra: 987/807,
  49880. bottom: 47/1034
  49881. }
  49882. },
  49883. },
  49884. [
  49885. {
  49886. name: "Macro",
  49887. height: math.unit(100, "feet"),
  49888. default: true
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(8, "feet"),
  49897. weight: math.unit(1200, "lb"),
  49898. name: "Front",
  49899. image: {
  49900. source: "./media/characters/nyterious-daligdig/front.svg",
  49901. extra: 1284/1094,
  49902. bottom: 84/1368
  49903. }
  49904. },
  49905. back: {
  49906. height: math.unit(8, "feet"),
  49907. weight: math.unit(1200, "lb"),
  49908. name: "Back",
  49909. image: {
  49910. source: "./media/characters/nyterious-daligdig/back.svg",
  49911. extra: 1301/1121,
  49912. bottom: 129/1430
  49913. }
  49914. },
  49915. mouth: {
  49916. height: math.unit(1.464, "feet"),
  49917. name: "Mouth",
  49918. image: {
  49919. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49920. }
  49921. },
  49922. },
  49923. [
  49924. {
  49925. name: "Small",
  49926. height: math.unit(8, "feet"),
  49927. default: true
  49928. },
  49929. {
  49930. name: "Normal",
  49931. height: math.unit(15, "feet")
  49932. },
  49933. {
  49934. name: "Macro",
  49935. height: math.unit(90, "feet")
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49941. {
  49942. front: {
  49943. height: math.unit(7 + 4/12, "feet"),
  49944. weight: math.unit(252, "lb"),
  49945. name: "Front",
  49946. image: {
  49947. source: "./media/characters/bandel/front.svg",
  49948. extra: 1946/1775,
  49949. bottom: 26/1972
  49950. }
  49951. },
  49952. back: {
  49953. height: math.unit(7 + 4/12, "feet"),
  49954. weight: math.unit(252, "lb"),
  49955. name: "Back",
  49956. image: {
  49957. source: "./media/characters/bandel/back.svg",
  49958. extra: 1940/1770,
  49959. bottom: 25/1965
  49960. }
  49961. },
  49962. maw: {
  49963. height: math.unit(2.15, "feet"),
  49964. name: "Maw",
  49965. image: {
  49966. source: "./media/characters/bandel/maw.svg"
  49967. }
  49968. },
  49969. stomach: {
  49970. height: math.unit(1.95, "feet"),
  49971. name: "Stomach",
  49972. image: {
  49973. source: "./media/characters/bandel/stomach.svg"
  49974. }
  49975. },
  49976. },
  49977. [
  49978. {
  49979. name: "Normal",
  49980. height: math.unit(7 + 4/12, "feet"),
  49981. default: true
  49982. },
  49983. ]
  49984. ))
  49985. characterMakers.push(() => makeCharacter(
  49986. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49987. {
  49988. front: {
  49989. height: math.unit(10 + 5/12, "feet"),
  49990. weight: math.unit(773.5, "kg"),
  49991. name: "Front",
  49992. image: {
  49993. source: "./media/characters/zed/front.svg",
  49994. extra: 987/941,
  49995. bottom: 52/1039
  49996. }
  49997. },
  49998. },
  49999. [
  50000. {
  50001. name: "Short",
  50002. height: math.unit(5 + 4/12, "feet")
  50003. },
  50004. {
  50005. name: "Average",
  50006. height: math.unit(10 + 5/12, "feet"),
  50007. default: true
  50008. },
  50009. {
  50010. name: "Mini-Macro",
  50011. height: math.unit(24 + 9/12, "feet")
  50012. },
  50013. {
  50014. name: "Macro",
  50015. height: math.unit(249, "feet")
  50016. },
  50017. {
  50018. name: "Mega-Macro",
  50019. height: math.unit(12490, "feet")
  50020. },
  50021. {
  50022. name: "Giga-Macro",
  50023. height: math.unit(24.9, "miles")
  50024. },
  50025. {
  50026. name: "Tera-Macro",
  50027. height: math.unit(24900, "miles")
  50028. },
  50029. {
  50030. name: "Cosmic Scale",
  50031. height: math.unit(38.9, "lightyears")
  50032. },
  50033. {
  50034. name: "Universal Scale",
  50035. height: math.unit(138e12, "lightyears")
  50036. },
  50037. ]
  50038. ))
  50039. characterMakers.push(() => makeCharacter(
  50040. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  50041. {
  50042. front: {
  50043. height: math.unit(1561, "inches"),
  50044. name: "Front",
  50045. image: {
  50046. source: "./media/characters/ivan/front.svg",
  50047. extra: 1126/1071,
  50048. bottom: 26/1152
  50049. }
  50050. },
  50051. back: {
  50052. height: math.unit(1561, "inches"),
  50053. name: "Back",
  50054. image: {
  50055. source: "./media/characters/ivan/back.svg",
  50056. extra: 1134/1079,
  50057. bottom: 30/1164
  50058. }
  50059. },
  50060. },
  50061. [
  50062. {
  50063. name: "Normal",
  50064. height: math.unit(1561, "inches"),
  50065. default: true
  50066. },
  50067. ]
  50068. ))
  50069. characterMakers.push(() => makeCharacter(
  50070. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50071. {
  50072. front: {
  50073. height: math.unit(5 + 7/12, "feet"),
  50074. weight: math.unit(150, "lb"),
  50075. name: "Front",
  50076. image: {
  50077. source: "./media/characters/robin-arctic-hare/front.svg",
  50078. extra: 1148/974,
  50079. bottom: 20/1168
  50080. }
  50081. },
  50082. },
  50083. [
  50084. {
  50085. name: "Normal",
  50086. height: math.unit(5 + 7/12, "feet"),
  50087. default: true
  50088. },
  50089. ]
  50090. ))
  50091. characterMakers.push(() => makeCharacter(
  50092. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50093. {
  50094. side: {
  50095. height: math.unit(5, "feet"),
  50096. name: "Side",
  50097. image: {
  50098. source: "./media/characters/birch/side.svg",
  50099. extra: 985/796,
  50100. bottom: 111/1096
  50101. }
  50102. },
  50103. },
  50104. [
  50105. {
  50106. name: "Normal",
  50107. height: math.unit(5, "feet"),
  50108. default: true
  50109. },
  50110. ]
  50111. ))
  50112. characterMakers.push(() => makeCharacter(
  50113. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50114. {
  50115. front: {
  50116. height: math.unit(4, "feet"),
  50117. name: "Front",
  50118. image: {
  50119. source: "./media/characters/rasp/front.svg",
  50120. extra: 561/478,
  50121. bottom: 74/635
  50122. }
  50123. },
  50124. },
  50125. [
  50126. {
  50127. name: "Normal",
  50128. height: math.unit(4, "feet"),
  50129. default: true
  50130. },
  50131. ]
  50132. ))
  50133. characterMakers.push(() => makeCharacter(
  50134. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50135. {
  50136. front: {
  50137. height: math.unit(4 + 6/12, "feet"),
  50138. name: "Front",
  50139. image: {
  50140. source: "./media/characters/agatha/front.svg",
  50141. extra: 947/933,
  50142. bottom: 42/989
  50143. }
  50144. },
  50145. back: {
  50146. height: math.unit(4 + 6/12, "feet"),
  50147. name: "Back",
  50148. image: {
  50149. source: "./media/characters/agatha/back.svg",
  50150. extra: 935/922,
  50151. bottom: 48/983
  50152. }
  50153. },
  50154. },
  50155. [
  50156. {
  50157. name: "Normal",
  50158. height: math.unit(4 + 6 /12, "feet"),
  50159. default: true
  50160. },
  50161. {
  50162. name: "Max Size",
  50163. height: math.unit(500, "feet")
  50164. },
  50165. ]
  50166. ))
  50167. characterMakers.push(() => makeCharacter(
  50168. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50169. {
  50170. side: {
  50171. height: math.unit(30, "feet"),
  50172. name: "Side",
  50173. image: {
  50174. source: "./media/characters/roggy/side.svg",
  50175. extra: 909/643,
  50176. bottom: 63/972
  50177. }
  50178. },
  50179. lounging: {
  50180. height: math.unit(20, "feet"),
  50181. name: "Lounging",
  50182. image: {
  50183. source: "./media/characters/roggy/lounging.svg",
  50184. extra: 643/479,
  50185. bottom: 145/788
  50186. }
  50187. },
  50188. handpaw: {
  50189. height: math.unit(13.1, "feet"),
  50190. name: "Handpaw",
  50191. image: {
  50192. source: "./media/characters/roggy/handpaw.svg"
  50193. }
  50194. },
  50195. footpaw: {
  50196. height: math.unit(15.8, "feet"),
  50197. name: "Footpaw",
  50198. image: {
  50199. source: "./media/characters/roggy/footpaw.svg"
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Menacing",
  50206. height: math.unit(30, "feet"),
  50207. default: true
  50208. },
  50209. ]
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50213. {
  50214. front: {
  50215. height: math.unit(5 + 7/12, "feet"),
  50216. weight: math.unit(135, "lb"),
  50217. name: "Front",
  50218. image: {
  50219. source: "./media/characters/naomi/front.svg",
  50220. extra: 1209/1154,
  50221. bottom: 129/1338
  50222. }
  50223. },
  50224. back: {
  50225. height: math.unit(5 + 7/12, "feet"),
  50226. weight: math.unit(135, "lb"),
  50227. name: "Back",
  50228. image: {
  50229. source: "./media/characters/naomi/back.svg",
  50230. extra: 1252/1190,
  50231. bottom: 23/1275
  50232. }
  50233. },
  50234. },
  50235. [
  50236. {
  50237. name: "Normal",
  50238. height: math.unit(5 + 7 /12, "feet"),
  50239. default: true
  50240. },
  50241. ]
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50245. {
  50246. side: {
  50247. height: math.unit(35, "meters"),
  50248. name: "Side",
  50249. image: {
  50250. source: "./media/characters/kimpi/side.svg",
  50251. extra: 419/382,
  50252. bottom: 63/482
  50253. }
  50254. },
  50255. hand: {
  50256. height: math.unit(8.96, "meters"),
  50257. name: "Hand",
  50258. image: {
  50259. source: "./media/characters/kimpi/hand.svg"
  50260. }
  50261. },
  50262. },
  50263. [
  50264. {
  50265. name: "Normal",
  50266. height: math.unit(35, "meters"),
  50267. default: true
  50268. },
  50269. ]
  50270. ))
  50271. characterMakers.push(() => makeCharacter(
  50272. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50273. {
  50274. front: {
  50275. height: math.unit(4 + 4/12, "feet"),
  50276. name: "Front",
  50277. image: {
  50278. source: "./media/characters/pepper-purrloin/front.svg",
  50279. extra: 1141/1024,
  50280. bottom: 21/1162
  50281. }
  50282. },
  50283. },
  50284. [
  50285. {
  50286. name: "Normal",
  50287. height: math.unit(4 + 4/12, "feet"),
  50288. default: true
  50289. },
  50290. ]
  50291. ))
  50292. characterMakers.push(() => makeCharacter(
  50293. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50294. {
  50295. front: {
  50296. height: math.unit(6 + 2/12, "feet"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/raphael/front.svg",
  50300. extra: 1101/962,
  50301. bottom: 59/1160
  50302. }
  50303. },
  50304. },
  50305. [
  50306. {
  50307. name: "Normal",
  50308. height: math.unit(6 + 2/12, "feet"),
  50309. default: true
  50310. },
  50311. ]
  50312. ))
  50313. characterMakers.push(() => makeCharacter(
  50314. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50315. {
  50316. front: {
  50317. height: math.unit(6, "feet"),
  50318. weight: math.unit(150, "lb"),
  50319. name: "Front",
  50320. image: {
  50321. source: "./media/characters/victor-williams/front.svg",
  50322. extra: 1894/1825,
  50323. bottom: 67/1961
  50324. }
  50325. },
  50326. },
  50327. [
  50328. {
  50329. name: "Normal",
  50330. height: math.unit(6, "feet"),
  50331. default: true
  50332. },
  50333. ]
  50334. ))
  50335. characterMakers.push(() => makeCharacter(
  50336. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50337. {
  50338. front: {
  50339. height: math.unit(5 + 8/12, "feet"),
  50340. weight: math.unit(150, "lb"),
  50341. name: "Front",
  50342. image: {
  50343. source: "./media/characters/rachel/front.svg",
  50344. extra: 1902/1787,
  50345. bottom: 46/1948
  50346. }
  50347. },
  50348. },
  50349. [
  50350. {
  50351. name: "Base Height",
  50352. height: math.unit(5 + 8/12, "feet"),
  50353. default: true
  50354. },
  50355. {
  50356. name: "Macro",
  50357. height: math.unit(200, "feet")
  50358. },
  50359. {
  50360. name: "Mega Macro",
  50361. height: math.unit(1, "mile")
  50362. },
  50363. {
  50364. name: "Giga Macro",
  50365. height: math.unit(1500, "miles")
  50366. },
  50367. {
  50368. name: "Tera Macro",
  50369. height: math.unit(8000, "miles")
  50370. },
  50371. {
  50372. name: "Tera Macro+",
  50373. height: math.unit(2e5, "miles")
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50379. {
  50380. front: {
  50381. height: math.unit(6.5, "feet"),
  50382. name: "Front",
  50383. image: {
  50384. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50385. extra: 860/819,
  50386. bottom: 307/1167
  50387. }
  50388. },
  50389. back: {
  50390. height: math.unit(6.5, "feet"),
  50391. name: "Back",
  50392. image: {
  50393. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50394. extra: 880/837,
  50395. bottom: 395/1275
  50396. }
  50397. },
  50398. sleeping: {
  50399. height: math.unit(2.79, "feet"),
  50400. name: "Sleeping",
  50401. image: {
  50402. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50403. extra: 465/383,
  50404. bottom: 263/728
  50405. }
  50406. },
  50407. maw: {
  50408. height: math.unit(2.52, "feet"),
  50409. name: "Maw",
  50410. image: {
  50411. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50412. }
  50413. },
  50414. },
  50415. [
  50416. {
  50417. name: "Normal",
  50418. height: math.unit(6.5, "feet"),
  50419. default: true
  50420. },
  50421. ]
  50422. ))
  50423. characterMakers.push(() => makeCharacter(
  50424. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50425. {
  50426. front: {
  50427. height: math.unit(5, "feet"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/nova-nerium/front.svg",
  50431. extra: 1548/1392,
  50432. bottom: 374/1922
  50433. }
  50434. },
  50435. back: {
  50436. height: math.unit(5, "feet"),
  50437. name: "Back",
  50438. image: {
  50439. source: "./media/characters/nova-nerium/back.svg",
  50440. extra: 1658/1468,
  50441. bottom: 257/1915
  50442. }
  50443. },
  50444. },
  50445. [
  50446. {
  50447. name: "Normal",
  50448. height: math.unit(5, "feet"),
  50449. default: true
  50450. },
  50451. ]
  50452. ))
  50453. characterMakers.push(() => makeCharacter(
  50454. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50455. {
  50456. front: {
  50457. height: math.unit(5 + 4/12, "feet"),
  50458. name: "Front",
  50459. image: {
  50460. source: "./media/characters/ashe-pyriph/front.svg",
  50461. extra: 1935/1747,
  50462. bottom: 60/1995
  50463. }
  50464. },
  50465. },
  50466. [
  50467. {
  50468. name: "Normal",
  50469. height: math.unit(5 + 4/12, "feet"),
  50470. default: true
  50471. },
  50472. ]
  50473. ))
  50474. characterMakers.push(() => makeCharacter(
  50475. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50476. {
  50477. front: {
  50478. height: math.unit(8.7, "feet"),
  50479. name: "Front",
  50480. image: {
  50481. source: "./media/characters/flicker-wisp/front.svg",
  50482. extra: 1835/1613,
  50483. bottom: 449/2284
  50484. }
  50485. },
  50486. side: {
  50487. height: math.unit(8.7, "feet"),
  50488. name: "Side",
  50489. image: {
  50490. source: "./media/characters/flicker-wisp/side.svg",
  50491. extra: 1841/1642,
  50492. bottom: 336/2177
  50493. },
  50494. default: true
  50495. },
  50496. maw: {
  50497. height: math.unit(3.35, "feet"),
  50498. name: "Maw",
  50499. image: {
  50500. source: "./media/characters/flicker-wisp/maw.svg",
  50501. extra: 2338/1506,
  50502. bottom: 0/2338
  50503. }
  50504. },
  50505. ovipositor: {
  50506. height: math.unit(4.95, "feet"),
  50507. name: "Ovipositor",
  50508. image: {
  50509. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50510. }
  50511. },
  50512. egg: {
  50513. height: math.unit(0.385, "feet"),
  50514. weight: math.unit(2, "lb"),
  50515. name: "Egg",
  50516. image: {
  50517. source: "./media/characters/flicker-wisp/egg.svg"
  50518. }
  50519. },
  50520. },
  50521. [
  50522. {
  50523. name: "Normal",
  50524. height: math.unit(8.7, "feet"),
  50525. default: true
  50526. },
  50527. ]
  50528. ))
  50529. characterMakers.push(() => makeCharacter(
  50530. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50531. {
  50532. side: {
  50533. height: math.unit(11, "feet"),
  50534. name: "Side",
  50535. image: {
  50536. source: "./media/characters/faefnul/side.svg",
  50537. extra: 1100/1007,
  50538. bottom: 0/1100
  50539. }
  50540. },
  50541. },
  50542. [
  50543. {
  50544. name: "Normal",
  50545. height: math.unit(11, "feet"),
  50546. default: true
  50547. },
  50548. ]
  50549. ))
  50550. characterMakers.push(() => makeCharacter(
  50551. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50552. {
  50553. front: {
  50554. height: math.unit(6 + 2/12, "feet"),
  50555. name: "Front",
  50556. image: {
  50557. source: "./media/characters/shady/front.svg",
  50558. extra: 502/461,
  50559. bottom: 9/511
  50560. }
  50561. },
  50562. kneeling: {
  50563. height: math.unit(4.6, "feet"),
  50564. name: "Kneeling",
  50565. image: {
  50566. source: "./media/characters/shady/kneeling.svg",
  50567. extra: 1328/1219,
  50568. bottom: 117/1445
  50569. }
  50570. },
  50571. maw: {
  50572. height: math.unit(2, "feet"),
  50573. name: "Maw",
  50574. image: {
  50575. source: "./media/characters/shady/maw.svg"
  50576. }
  50577. },
  50578. },
  50579. [
  50580. {
  50581. name: "Nano",
  50582. height: math.unit(1, "mm")
  50583. },
  50584. {
  50585. name: "Micro",
  50586. height: math.unit(12, "mm")
  50587. },
  50588. {
  50589. name: "Tiny",
  50590. height: math.unit(3, "inches")
  50591. },
  50592. {
  50593. name: "Normal",
  50594. height: math.unit(6 + 2/12, "feet"),
  50595. default: true
  50596. },
  50597. {
  50598. name: "Big",
  50599. height: math.unit(15, "feet")
  50600. },
  50601. {
  50602. name: "Macro",
  50603. height: math.unit(150, "feet")
  50604. },
  50605. {
  50606. name: "Titanic",
  50607. height: math.unit(500, "feet")
  50608. },
  50609. ]
  50610. ))
  50611. characterMakers.push(() => makeCharacter(
  50612. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50613. {
  50614. front: {
  50615. height: math.unit(12, "feet"),
  50616. name: "Front",
  50617. image: {
  50618. source: "./media/characters/fenrir/front.svg",
  50619. extra: 968/875,
  50620. bottom: 22/990
  50621. }
  50622. },
  50623. },
  50624. [
  50625. {
  50626. name: "Big",
  50627. height: math.unit(12, "feet"),
  50628. default: true
  50629. },
  50630. ]
  50631. ))
  50632. characterMakers.push(() => makeCharacter(
  50633. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50634. {
  50635. front: {
  50636. height: math.unit(5 + 4/12, "feet"),
  50637. name: "Front",
  50638. image: {
  50639. source: "./media/characters/makar/front.svg",
  50640. extra: 1181/1112,
  50641. bottom: 78/1259
  50642. }
  50643. },
  50644. },
  50645. [
  50646. {
  50647. name: "Normal",
  50648. height: math.unit(5 + 4/12, "feet"),
  50649. default: true
  50650. },
  50651. ]
  50652. ))
  50653. characterMakers.push(() => makeCharacter(
  50654. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50655. {
  50656. front: {
  50657. height: math.unit(5 + 7/12, "feet"),
  50658. name: "Front",
  50659. image: {
  50660. source: "./media/characters/callow/front.svg",
  50661. extra: 1482/1304,
  50662. bottom: 23/1505
  50663. }
  50664. },
  50665. back: {
  50666. height: math.unit(5 + 7/12, "feet"),
  50667. name: "Back",
  50668. image: {
  50669. source: "./media/characters/callow/back.svg",
  50670. extra: 1484/1296,
  50671. bottom: 25/1509
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Micro",
  50678. height: math.unit(3, "inches"),
  50679. default: true
  50680. },
  50681. {
  50682. name: "Normal",
  50683. height: math.unit(5 + 7/12, "feet")
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50689. {
  50690. front: {
  50691. height: math.unit(6 + 2/12, "feet"),
  50692. name: "Front",
  50693. image: {
  50694. source: "./media/characters/natel/front.svg",
  50695. extra: 1833/1692,
  50696. bottom: 166/1999
  50697. }
  50698. },
  50699. },
  50700. [
  50701. {
  50702. name: "Normal",
  50703. height: math.unit(6 + 2/12, "feet"),
  50704. default: true
  50705. },
  50706. ]
  50707. ))
  50708. characterMakers.push(() => makeCharacter(
  50709. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50710. {
  50711. front: {
  50712. height: math.unit(1.75, "meters"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/misu/front.svg",
  50716. extra: 1690/1558,
  50717. bottom: 234/1924
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(1.75, "meters"),
  50722. name: "Back",
  50723. image: {
  50724. source: "./media/characters/misu/back.svg",
  50725. extra: 1762/1618,
  50726. bottom: 146/1908
  50727. }
  50728. },
  50729. frontNude: {
  50730. height: math.unit(1.75, "meters"),
  50731. name: "Front (Nude)",
  50732. image: {
  50733. source: "./media/characters/misu/front-nude.svg",
  50734. extra: 1690/1558,
  50735. bottom: 234/1924
  50736. }
  50737. },
  50738. backNude: {
  50739. height: math.unit(1.75, "meters"),
  50740. name: "Back (Nude)",
  50741. image: {
  50742. source: "./media/characters/misu/back-nude.svg",
  50743. extra: 1762/1618,
  50744. bottom: 146/1908
  50745. }
  50746. },
  50747. frontErect: {
  50748. height: math.unit(1.75, "meters"),
  50749. name: "Front (Erect)",
  50750. image: {
  50751. source: "./media/characters/misu/front-erect.svg",
  50752. extra: 1690/1558,
  50753. bottom: 234/1924
  50754. }
  50755. },
  50756. maw: {
  50757. height: math.unit(0.47, "meters"),
  50758. name: "Maw",
  50759. image: {
  50760. source: "./media/characters/misu/maw.svg"
  50761. }
  50762. },
  50763. head: {
  50764. height: math.unit(0.35, "meters"),
  50765. name: "Head",
  50766. image: {
  50767. source: "./media/characters/misu/head.svg"
  50768. }
  50769. },
  50770. rear: {
  50771. height: math.unit(0.47, "meters"),
  50772. name: "Rear",
  50773. image: {
  50774. source: "./media/characters/misu/rear.svg"
  50775. }
  50776. },
  50777. },
  50778. [
  50779. {
  50780. name: "Normal",
  50781. height: math.unit(1.75, "meters")
  50782. },
  50783. {
  50784. name: "Not good for the people",
  50785. height: math.unit(42, "meters")
  50786. },
  50787. {
  50788. name: "Not good for the neighborhood",
  50789. height: math.unit(135, "meters")
  50790. },
  50791. {
  50792. name: "Bit bigger problem",
  50793. height: math.unit(380, "meters"),
  50794. default: true
  50795. },
  50796. {
  50797. name: "Not good for the city",
  50798. height: math.unit(1.5, "km")
  50799. },
  50800. {
  50801. name: "Not good for the county",
  50802. height: math.unit(5.5, "km")
  50803. },
  50804. {
  50805. name: "Not good for the state",
  50806. height: math.unit(25, "km")
  50807. },
  50808. {
  50809. name: "Not good for the country",
  50810. height: math.unit(125, "km")
  50811. },
  50812. {
  50813. name: "Not good for the continent",
  50814. height: math.unit(2100, "km")
  50815. },
  50816. {
  50817. name: "Not good for the planet",
  50818. height: math.unit(35000, "km")
  50819. },
  50820. {
  50821. name: "Just no",
  50822. height: math.unit(8.5e18, "km")
  50823. },
  50824. ]
  50825. ))
  50826. characterMakers.push(() => makeCharacter(
  50827. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50828. {
  50829. front: {
  50830. height: math.unit(6.5, "feet"),
  50831. name: "Front",
  50832. image: {
  50833. source: "./media/characters/poppy/front.svg",
  50834. extra: 1878/1812,
  50835. bottom: 43/1921
  50836. }
  50837. },
  50838. feet: {
  50839. height: math.unit(1.06, "feet"),
  50840. name: "Feet",
  50841. image: {
  50842. source: "./media/characters/poppy/feet.svg",
  50843. extra: 1083/1083,
  50844. bottom: 87/1170
  50845. }
  50846. },
  50847. },
  50848. [
  50849. {
  50850. name: "Human",
  50851. height: math.unit(6.5, "feet")
  50852. },
  50853. {
  50854. name: "Default",
  50855. height: math.unit(300, "feet"),
  50856. default: true
  50857. },
  50858. {
  50859. name: "Huge",
  50860. height: math.unit(850, "feet")
  50861. },
  50862. {
  50863. name: "Mega",
  50864. height: math.unit(8000, "feet")
  50865. },
  50866. {
  50867. name: "Giga",
  50868. height: math.unit(300, "miles")
  50869. },
  50870. ]
  50871. ))
  50872. characterMakers.push(() => makeCharacter(
  50873. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50874. {
  50875. bipedal: {
  50876. height: math.unit(7, "feet"),
  50877. name: "Bipedal",
  50878. image: {
  50879. source: "./media/characters/zener/bipedal.svg",
  50880. extra: 874/805,
  50881. bottom: 109/983
  50882. }
  50883. },
  50884. quadrupedal: {
  50885. height: math.unit(4.64, "feet"),
  50886. name: "Quadrupedal",
  50887. image: {
  50888. source: "./media/characters/zener/quadrupedal.svg",
  50889. extra: 638/507,
  50890. bottom: 190/828
  50891. }
  50892. },
  50893. cock: {
  50894. height: math.unit(18, "inches"),
  50895. name: "Cock",
  50896. image: {
  50897. source: "./media/characters/zener/cock.svg"
  50898. }
  50899. },
  50900. },
  50901. [
  50902. {
  50903. name: "Normal",
  50904. height: math.unit(7, "feet"),
  50905. default: true
  50906. },
  50907. ]
  50908. ))
  50909. characterMakers.push(() => makeCharacter(
  50910. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50911. {
  50912. nude: {
  50913. height: math.unit(5 + 6/12, "feet"),
  50914. name: "Nude",
  50915. image: {
  50916. source: "./media/characters/charlie-dog/nude.svg",
  50917. extra: 768/734,
  50918. bottom: 26/794
  50919. }
  50920. },
  50921. dressed: {
  50922. height: math.unit(5 + 6/12, "feet"),
  50923. name: "Dressed",
  50924. image: {
  50925. source: "./media/characters/charlie-dog/dressed.svg",
  50926. extra: 768/734,
  50927. bottom: 26/794
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(5 + 6/12, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(6 + 4/12, "feet"),
  50944. name: "Front",
  50945. image: {
  50946. source: "./media/characters/ir'istrasz/front.svg",
  50947. extra: 1014/977,
  50948. bottom: 65/1079
  50949. }
  50950. },
  50951. back: {
  50952. height: math.unit(6 + 4/12, "feet"),
  50953. name: "Back",
  50954. image: {
  50955. source: "./media/characters/ir'istrasz/back.svg",
  50956. extra: 1024/992,
  50957. bottom: 34/1058
  50958. }
  50959. },
  50960. },
  50961. [
  50962. {
  50963. name: "Normal",
  50964. height: math.unit(6 + 4/12, "feet"),
  50965. default: true
  50966. },
  50967. ]
  50968. ))
  50969. characterMakers.push(() => makeCharacter(
  50970. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50971. {
  50972. front: {
  50973. height: math.unit(5 + 8/12, "feet"),
  50974. name: "Front",
  50975. image: {
  50976. source: "./media/characters/dee-ditto/front.svg",
  50977. extra: 1874/1785,
  50978. bottom: 68/1942
  50979. }
  50980. },
  50981. back: {
  50982. height: math.unit(5 + 8/12, "feet"),
  50983. name: "Back",
  50984. image: {
  50985. source: "./media/characters/dee-ditto/back.svg",
  50986. extra: 1870/1783,
  50987. bottom: 77/1947
  50988. }
  50989. },
  50990. },
  50991. [
  50992. {
  50993. name: "Normal",
  50994. height: math.unit(5 + 8/12, "feet"),
  50995. default: true
  50996. },
  50997. ]
  50998. ))
  50999. characterMakers.push(() => makeCharacter(
  51000. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  51001. {
  51002. front: {
  51003. height: math.unit(7 + 6/12, "feet"),
  51004. name: "Front",
  51005. image: {
  51006. source: "./media/characters/fey/front.svg",
  51007. extra: 995/979,
  51008. bottom: 30/1025
  51009. }
  51010. },
  51011. back: {
  51012. height: math.unit(7 + 6/12, "feet"),
  51013. name: "Back",
  51014. image: {
  51015. source: "./media/characters/fey/back.svg",
  51016. extra: 1079/1008,
  51017. bottom: 5/1084
  51018. }
  51019. },
  51020. dressed: {
  51021. height: math.unit(7 + 6/12, "feet"),
  51022. name: "Dressed",
  51023. image: {
  51024. source: "./media/characters/fey/dressed.svg",
  51025. extra: 995/979,
  51026. bottom: 30/1025
  51027. }
  51028. },
  51029. },
  51030. [
  51031. {
  51032. name: "Normal",
  51033. height: math.unit(7 + 6/12, "feet"),
  51034. default: true
  51035. },
  51036. ]
  51037. ))
  51038. characterMakers.push(() => makeCharacter(
  51039. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  51040. {
  51041. standing: {
  51042. height: math.unit(17, "feet"),
  51043. name: "Standing",
  51044. image: {
  51045. source: "./media/characters/aster/standing.svg",
  51046. extra: 1798/1598,
  51047. bottom: 117/1915
  51048. }
  51049. },
  51050. },
  51051. [
  51052. {
  51053. name: "Normal",
  51054. height: math.unit(17, "feet"),
  51055. default: true
  51056. },
  51057. {
  51058. name: "Homewrecker",
  51059. height: math.unit(95, "feet")
  51060. },
  51061. {
  51062. name: "Planet Devourer",
  51063. height: math.unit(1008000, "miles")
  51064. },
  51065. ]
  51066. ))
  51067. characterMakers.push(() => makeCharacter(
  51068. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51069. {
  51070. front: {
  51071. height: math.unit(6 + 5/12, "feet"),
  51072. weight: math.unit(265, "lb"),
  51073. name: "Front",
  51074. image: {
  51075. source: "./media/characters/devon-childs/front.svg",
  51076. extra: 1795/1721,
  51077. bottom: 41/1836
  51078. }
  51079. },
  51080. side: {
  51081. height: math.unit(6 + 5/12, "feet"),
  51082. weight: math.unit(265, "lb"),
  51083. name: "Side",
  51084. image: {
  51085. source: "./media/characters/devon-childs/side.svg",
  51086. extra: 1812/1738,
  51087. bottom: 30/1842
  51088. }
  51089. },
  51090. back: {
  51091. height: math.unit(6 + 5/12, "feet"),
  51092. weight: math.unit(265, "lb"),
  51093. name: "Back",
  51094. image: {
  51095. source: "./media/characters/devon-childs/back.svg",
  51096. extra: 1808/1735,
  51097. bottom: 23/1831
  51098. }
  51099. },
  51100. hand: {
  51101. height: math.unit(1.464, "feet"),
  51102. name: "Hand",
  51103. image: {
  51104. source: "./media/characters/devon-childs/hand.svg"
  51105. }
  51106. },
  51107. foot: {
  51108. height: math.unit(1.6, "feet"),
  51109. name: "Foot",
  51110. image: {
  51111. source: "./media/characters/devon-childs/foot.svg"
  51112. }
  51113. },
  51114. },
  51115. [
  51116. {
  51117. name: "Micro",
  51118. height: math.unit(7, "cm")
  51119. },
  51120. {
  51121. name: "Normal",
  51122. height: math.unit(6 + 5/12, "feet"),
  51123. default: true
  51124. },
  51125. {
  51126. name: "Macro",
  51127. height: math.unit(154, "feet")
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(6, "feet"),
  51136. weight: math.unit(180, "lb"),
  51137. name: "Front",
  51138. image: {
  51139. source: "./media/characters/lydemox-vir/front.svg",
  51140. extra: 1632/1435,
  51141. bottom: 58/1690
  51142. }
  51143. },
  51144. frontSFW: {
  51145. height: math.unit(6, "feet"),
  51146. weight: math.unit(180, "lb"),
  51147. name: "Front (SFW)",
  51148. image: {
  51149. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51150. extra: 1632/1435,
  51151. bottom: 58/1690
  51152. }
  51153. },
  51154. back: {
  51155. height: math.unit(6, "feet"),
  51156. weight: math.unit(180, "lb"),
  51157. name: "Back",
  51158. image: {
  51159. source: "./media/characters/lydemox-vir/back.svg",
  51160. extra: 1593/1408,
  51161. bottom: 31/1624
  51162. }
  51163. },
  51164. paw: {
  51165. height: math.unit(1.85, "feet"),
  51166. name: "Paw",
  51167. image: {
  51168. source: "./media/characters/lydemox-vir/paw.svg"
  51169. }
  51170. },
  51171. dick: {
  51172. height: math.unit(1.8, "feet"),
  51173. name: "Dick",
  51174. image: {
  51175. source: "./media/characters/lydemox-vir/dick.svg"
  51176. }
  51177. },
  51178. },
  51179. [
  51180. {
  51181. name: "Macro",
  51182. height: math.unit(100, "feet"),
  51183. default: true
  51184. },
  51185. {
  51186. name: "Teramacro",
  51187. height: math.unit(1, "earth")
  51188. },
  51189. {
  51190. name: "Planetary",
  51191. height: math.unit(20, "earths")
  51192. },
  51193. ]
  51194. ))
  51195. characterMakers.push(() => makeCharacter(
  51196. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51197. {
  51198. front: {
  51199. height: math.unit(15 + 8/12, "feet"),
  51200. weight: math.unit(1237, "kg"),
  51201. name: "Front",
  51202. image: {
  51203. source: "./media/characters/mia/front.svg",
  51204. extra: 1573/1446,
  51205. bottom: 58/1631
  51206. }
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Small",
  51212. height: math.unit(9 + 5/12, "feet")
  51213. },
  51214. {
  51215. name: "Normal",
  51216. height: math.unit(15 + 8/12, "feet"),
  51217. default: true
  51218. },
  51219. ]
  51220. ))
  51221. characterMakers.push(() => makeCharacter(
  51222. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51223. {
  51224. front: {
  51225. height: math.unit(10 + 6/12, "feet"),
  51226. weight: math.unit(1.3, "tons"),
  51227. name: "Front",
  51228. image: {
  51229. source: "./media/characters/mr-graves/front.svg",
  51230. extra: 1779/1695,
  51231. bottom: 198/1977
  51232. }
  51233. },
  51234. },
  51235. [
  51236. {
  51237. name: "Normal",
  51238. height: math.unit(10 + 6 /12, "feet"),
  51239. default: true
  51240. },
  51241. ]
  51242. ))
  51243. characterMakers.push(() => makeCharacter(
  51244. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51245. {
  51246. dressedFront: {
  51247. height: math.unit(5 + 8/12, "feet"),
  51248. weight: math.unit(125, "lb"),
  51249. name: "Dressed (Front)",
  51250. image: {
  51251. source: "./media/characters/jess/dressed-front.svg",
  51252. extra: 1176/1152,
  51253. bottom: 42/1218
  51254. }
  51255. },
  51256. dressedSide: {
  51257. height: math.unit(5 + 8/12, "feet"),
  51258. weight: math.unit(125, "lb"),
  51259. name: "Dressed (Side)",
  51260. image: {
  51261. source: "./media/characters/jess/dressed-side.svg",
  51262. extra: 1204/1190,
  51263. bottom: 6/1210
  51264. }
  51265. },
  51266. nudeFront: {
  51267. height: math.unit(5 + 8/12, "feet"),
  51268. weight: math.unit(125, "lb"),
  51269. name: "Nude (Front)",
  51270. image: {
  51271. source: "./media/characters/jess/nude-front.svg",
  51272. extra: 1176/1152,
  51273. bottom: 42/1218
  51274. }
  51275. },
  51276. nudeSide: {
  51277. height: math.unit(5 + 8/12, "feet"),
  51278. weight: math.unit(125, "lb"),
  51279. name: "Nude (Side)",
  51280. image: {
  51281. source: "./media/characters/jess/nude-side.svg",
  51282. extra: 1204/1190,
  51283. bottom: 6/1210
  51284. }
  51285. },
  51286. organsFront: {
  51287. height: math.unit(2.83799342105, "feet"),
  51288. name: "Organs (Front)",
  51289. image: {
  51290. source: "./media/characters/jess/organs-front.svg"
  51291. }
  51292. },
  51293. organsSide: {
  51294. height: math.unit(2.64225290474, "feet"),
  51295. name: "Organs (Side)",
  51296. image: {
  51297. source: "./media/characters/jess/organs-side.svg"
  51298. }
  51299. },
  51300. digestiveTractFront: {
  51301. height: math.unit(2.8106580871, "feet"),
  51302. name: "Digestive Tract (Front)",
  51303. image: {
  51304. source: "./media/characters/jess/digestive-tract-front.svg"
  51305. }
  51306. },
  51307. digestiveTractSide: {
  51308. height: math.unit(2.54365045014, "feet"),
  51309. name: "Digestive Tract (Side)",
  51310. image: {
  51311. source: "./media/characters/jess/digestive-tract-side.svg"
  51312. }
  51313. },
  51314. respiratorySystemFront: {
  51315. height: math.unit(1.11196233456, "feet"),
  51316. name: "Respiratory System (Front)",
  51317. image: {
  51318. source: "./media/characters/jess/respiratory-system-front.svg"
  51319. }
  51320. },
  51321. respiratorySystemSide: {
  51322. height: math.unit(0.89327966297, "feet"),
  51323. name: "Respiratory System (Side)",
  51324. image: {
  51325. source: "./media/characters/jess/respiratory-system-side.svg"
  51326. }
  51327. },
  51328. urinaryTractFront: {
  51329. height: math.unit(1.16126356186, "feet"),
  51330. name: "Urinary Tract (Front)",
  51331. image: {
  51332. source: "./media/characters/jess/urinary-tract-front.svg"
  51333. }
  51334. },
  51335. urinaryTractSide: {
  51336. height: math.unit(1.20910039627, "feet"),
  51337. name: "Urinary Tract (Side)",
  51338. image: {
  51339. source: "./media/characters/jess/urinary-tract-side.svg"
  51340. }
  51341. },
  51342. reproductiveOrgansFront: {
  51343. height: math.unit(0.48422591566, "feet"),
  51344. name: "Reproductive Organs (Front)",
  51345. image: {
  51346. source: "./media/characters/jess/reproductive-organs-front.svg"
  51347. }
  51348. },
  51349. reproductiveOrgansSide: {
  51350. height: math.unit(0.61553314481, "feet"),
  51351. name: "Reproductive Organs (Side)",
  51352. image: {
  51353. source: "./media/characters/jess/reproductive-organs-side.svg"
  51354. }
  51355. },
  51356. breastsFront: {
  51357. height: math.unit(0.47690395121, "feet"),
  51358. name: "Breasts (Front)",
  51359. image: {
  51360. source: "./media/characters/jess/breasts-front.svg"
  51361. }
  51362. },
  51363. breastsSide: {
  51364. height: math.unit(0.30556998307, "feet"),
  51365. name: "Breasts (Side)",
  51366. image: {
  51367. source: "./media/characters/jess/breasts-side.svg"
  51368. }
  51369. },
  51370. heartFront: {
  51371. height: math.unit(0.53011022622, "feet"),
  51372. name: "Heart (Front)",
  51373. image: {
  51374. source: "./media/characters/jess/heart-front.svg"
  51375. }
  51376. },
  51377. heartSide: {
  51378. height: math.unit(0.51790695213, "feet"),
  51379. name: "Heart (Side)",
  51380. image: {
  51381. source: "./media/characters/jess/heart-side.svg"
  51382. }
  51383. },
  51384. earsAndNoseFront: {
  51385. height: math.unit(0.29385483995, "feet"),
  51386. name: "Ears and Nose (Front)",
  51387. image: {
  51388. source: "./media/characters/jess/ears-and-nose-front.svg"
  51389. }
  51390. },
  51391. earsAndNoseSide: {
  51392. height: math.unit(0.18109658741, "feet"),
  51393. name: "Ears and Nose (Side)",
  51394. image: {
  51395. source: "./media/characters/jess/ears-and-nose-side.svg"
  51396. }
  51397. },
  51398. },
  51399. [
  51400. {
  51401. name: "Normal",
  51402. height: math.unit(5 + 8/12, "feet"),
  51403. default: true
  51404. },
  51405. ]
  51406. ))
  51407. characterMakers.push(() => makeCharacter(
  51408. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51409. {
  51410. front: {
  51411. height: math.unit(6, "feet"),
  51412. weight: math.unit(6.64467e-7, "grams"),
  51413. name: "Front",
  51414. image: {
  51415. source: "./media/characters/wimpering/front.svg",
  51416. extra: 597/587,
  51417. bottom: 34/631
  51418. }
  51419. },
  51420. },
  51421. [
  51422. {
  51423. name: "Micro",
  51424. height: math.unit(0.4, "mm"),
  51425. default: true
  51426. },
  51427. ]
  51428. ))
  51429. characterMakers.push(() => makeCharacter(
  51430. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51431. {
  51432. front: {
  51433. height: math.unit(5 + 2/12, "feet"),
  51434. weight: math.unit(110, "lb"),
  51435. name: "Front",
  51436. image: {
  51437. source: "./media/characters/keltre/front.svg",
  51438. extra: 1099/1057,
  51439. bottom: 22/1121
  51440. }
  51441. },
  51442. back: {
  51443. height: math.unit(5 + 2/12, "feet"),
  51444. weight: math.unit(110, "lb"),
  51445. name: "Back",
  51446. image: {
  51447. source: "./media/characters/keltre/back.svg",
  51448. extra: 1095/1053,
  51449. bottom: 17/1112
  51450. }
  51451. },
  51452. dressed: {
  51453. height: math.unit(5 + 2/12, "feet"),
  51454. weight: math.unit(110, "lb"),
  51455. name: "Dressed",
  51456. image: {
  51457. source: "./media/characters/keltre/dressed.svg",
  51458. extra: 1099/1057,
  51459. bottom: 22/1121
  51460. }
  51461. },
  51462. winter: {
  51463. height: math.unit(5 + 2/12, "feet"),
  51464. weight: math.unit(110, "lb"),
  51465. name: "Winter",
  51466. image: {
  51467. source: "./media/characters/keltre/winter.svg",
  51468. extra: 1099/1057,
  51469. bottom: 22/1121
  51470. }
  51471. },
  51472. head: {
  51473. height: math.unit(1.61 * 0.86, "feet"),
  51474. name: "Head",
  51475. image: {
  51476. source: "./media/characters/keltre/head.svg",
  51477. extra: 534/421,
  51478. bottom: 0/534
  51479. }
  51480. },
  51481. hand: {
  51482. height: math.unit(1.3 * 0.86, "feet"),
  51483. name: "Hand",
  51484. image: {
  51485. source: "./media/characters/keltre/hand.svg"
  51486. }
  51487. },
  51488. foot: {
  51489. height: math.unit(1.8 * 0.86, "feet"),
  51490. name: "Foot",
  51491. image: {
  51492. source: "./media/characters/keltre/foot.svg"
  51493. }
  51494. },
  51495. },
  51496. [
  51497. {
  51498. name: "Fine",
  51499. height: math.unit(1, "inch")
  51500. },
  51501. {
  51502. name: "Dimnutive",
  51503. height: math.unit(4, "inches")
  51504. },
  51505. {
  51506. name: "Tiny",
  51507. height: math.unit(1, "foot")
  51508. },
  51509. {
  51510. name: "Small",
  51511. height: math.unit(3, "feet")
  51512. },
  51513. {
  51514. name: "Normal",
  51515. height: math.unit(5 + 2/12, "feet"),
  51516. default: true
  51517. },
  51518. ]
  51519. ))
  51520. characterMakers.push(() => makeCharacter(
  51521. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51522. {
  51523. front: {
  51524. height: math.unit(6 + 2/12, "feet"),
  51525. name: "Front",
  51526. image: {
  51527. source: "./media/characters/nox/front.svg",
  51528. extra: 1917/1830,
  51529. bottom: 74/1991
  51530. }
  51531. },
  51532. back: {
  51533. height: math.unit(6 + 2/12, "feet"),
  51534. name: "Back",
  51535. image: {
  51536. source: "./media/characters/nox/back.svg",
  51537. extra: 1896/1815,
  51538. bottom: 21/1917
  51539. }
  51540. },
  51541. head: {
  51542. height: math.unit(1.1, "feet"),
  51543. name: "Head",
  51544. image: {
  51545. source: "./media/characters/nox/head.svg",
  51546. extra: 874/704,
  51547. bottom: 0/874
  51548. }
  51549. },
  51550. tattoo: {
  51551. height: math.unit(0.729, "feet"),
  51552. name: "Tattoo",
  51553. image: {
  51554. source: "./media/characters/nox/tattoo.svg"
  51555. }
  51556. },
  51557. },
  51558. [
  51559. {
  51560. name: "Normal",
  51561. height: math.unit(6 + 2/12, "feet")
  51562. },
  51563. {
  51564. name: "Gigamacro",
  51565. height: math.unit(2, "earths"),
  51566. default: true
  51567. },
  51568. {
  51569. name: "Cosmic",
  51570. height: math.unit(867, "yottameters")
  51571. },
  51572. ]
  51573. ))
  51574. characterMakers.push(() => makeCharacter(
  51575. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51576. {
  51577. front: {
  51578. height: math.unit(6, "feet"),
  51579. weight: math.unit(150, "lb"),
  51580. name: "Front",
  51581. image: {
  51582. source: "./media/characters/caspian/front.svg",
  51583. extra: 1443/1359,
  51584. bottom: 0/1443
  51585. }
  51586. },
  51587. back: {
  51588. height: math.unit(6, "feet"),
  51589. weight: math.unit(150, "lb"),
  51590. name: "Back",
  51591. image: {
  51592. source: "./media/characters/caspian/back.svg",
  51593. extra: 1379/1309,
  51594. bottom: 0/1379
  51595. }
  51596. },
  51597. head: {
  51598. height: math.unit(0.9, "feet"),
  51599. name: "Head",
  51600. image: {
  51601. source: "./media/characters/caspian/head.svg",
  51602. extra: 692/492,
  51603. bottom: 0/692
  51604. }
  51605. },
  51606. headAlt: {
  51607. height: math.unit(0.95, "feet"),
  51608. name: "Head (Alt)",
  51609. image: {
  51610. source: "./media/characters/caspian/head-alt.svg",
  51611. extra: 668/508,
  51612. bottom: 0/668
  51613. }
  51614. },
  51615. hand: {
  51616. height: math.unit(0.8, "feet"),
  51617. name: "Hand",
  51618. image: {
  51619. source: "./media/characters/caspian/hand.svg"
  51620. }
  51621. },
  51622. paw: {
  51623. height: math.unit(0.95, "feet"),
  51624. name: "Paw",
  51625. image: {
  51626. source: "./media/characters/caspian/paw.svg"
  51627. }
  51628. },
  51629. },
  51630. [
  51631. {
  51632. name: "Normal",
  51633. height: math.unit(162, "feet"),
  51634. default: true
  51635. },
  51636. ]
  51637. ))
  51638. characterMakers.push(() => makeCharacter(
  51639. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51640. {
  51641. front: {
  51642. height: math.unit(6, "feet"),
  51643. name: "Front",
  51644. image: {
  51645. source: "./media/characters/myra-aisling/front.svg",
  51646. extra: 1268/1166,
  51647. bottom: 73/1341
  51648. }
  51649. },
  51650. back: {
  51651. height: math.unit(6, "feet"),
  51652. name: "Back",
  51653. image: {
  51654. source: "./media/characters/myra-aisling/back.svg",
  51655. extra: 1249/1149,
  51656. bottom: 79/1328
  51657. }
  51658. },
  51659. dressed: {
  51660. height: math.unit(6, "feet"),
  51661. name: "Dressed",
  51662. image: {
  51663. source: "./media/characters/myra-aisling/dressed.svg",
  51664. extra: 1290/1189,
  51665. bottom: 47/1337
  51666. }
  51667. },
  51668. hand: {
  51669. height: math.unit(1.1, "feet"),
  51670. name: "Hand",
  51671. image: {
  51672. source: "./media/characters/myra-aisling/hand.svg"
  51673. }
  51674. },
  51675. paw: {
  51676. height: math.unit(1.23, "feet"),
  51677. name: "Paw",
  51678. image: {
  51679. source: "./media/characters/myra-aisling/paw.svg"
  51680. }
  51681. },
  51682. },
  51683. [
  51684. {
  51685. name: "Normal",
  51686. height: math.unit(160, "feet"),
  51687. default: true
  51688. },
  51689. ]
  51690. ))
  51691. characterMakers.push(() => makeCharacter(
  51692. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51693. {
  51694. front: {
  51695. height: math.unit(6, "feet"),
  51696. name: "Front",
  51697. image: {
  51698. source: "./media/characters/tenley-sidero/front.svg",
  51699. extra: 1365/1276,
  51700. bottom: 47/1412
  51701. }
  51702. },
  51703. back: {
  51704. height: math.unit(6, "feet"),
  51705. name: "Back",
  51706. image: {
  51707. source: "./media/characters/tenley-sidero/back.svg",
  51708. extra: 1383/1283,
  51709. bottom: 35/1418
  51710. }
  51711. },
  51712. dressed: {
  51713. height: math.unit(6, "feet"),
  51714. name: "Dressed",
  51715. image: {
  51716. source: "./media/characters/tenley-sidero/dressed.svg",
  51717. extra: 1364/1275,
  51718. bottom: 42/1406
  51719. }
  51720. },
  51721. head: {
  51722. height: math.unit(1.47, "feet"),
  51723. name: "Head",
  51724. image: {
  51725. source: "./media/characters/tenley-sidero/head.svg",
  51726. extra: 610/490,
  51727. bottom: 0/610
  51728. }
  51729. },
  51730. },
  51731. [
  51732. {
  51733. name: "Normal",
  51734. height: math.unit(154, "feet"),
  51735. default: true
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(5, "inches"),
  51744. name: "Front",
  51745. image: {
  51746. source: "./media/characters/mallory/front.svg",
  51747. extra: 1919/1678,
  51748. bottom: 29/1948
  51749. }
  51750. },
  51751. hand: {
  51752. height: math.unit(0.73, "inches"),
  51753. name: "Hand",
  51754. image: {
  51755. source: "./media/characters/mallory/hand.svg"
  51756. }
  51757. },
  51758. paw: {
  51759. height: math.unit(0.68, "inches"),
  51760. name: "Paw",
  51761. image: {
  51762. source: "./media/characters/mallory/paw.svg"
  51763. }
  51764. },
  51765. },
  51766. [
  51767. {
  51768. name: "Small",
  51769. height: math.unit(5, "inches"),
  51770. default: true
  51771. },
  51772. ]
  51773. ))
  51774. characterMakers.push(() => makeCharacter(
  51775. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51776. {
  51777. naked: {
  51778. height: math.unit(6, "feet"),
  51779. name: "Naked",
  51780. image: {
  51781. source: "./media/characters/mab/naked.svg",
  51782. extra: 1855/1757,
  51783. bottom: 208/2063
  51784. }
  51785. },
  51786. outside: {
  51787. height: math.unit(6, "feet"),
  51788. name: "Outside",
  51789. image: {
  51790. source: "./media/characters/mab/outside.svg",
  51791. extra: 1855/1757,
  51792. bottom: 208/2063
  51793. }
  51794. },
  51795. party: {
  51796. height: math.unit(6, "feet"),
  51797. name: "Party",
  51798. image: {
  51799. source: "./media/characters/mab/party.svg",
  51800. extra: 1855/1757,
  51801. bottom: 208/2063
  51802. }
  51803. },
  51804. },
  51805. [
  51806. {
  51807. name: "Normal",
  51808. height: math.unit(165, "feet"),
  51809. default: true
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51815. {
  51816. feral: {
  51817. height: math.unit(12, "feet"),
  51818. weight: math.unit(20000, "lb"),
  51819. name: "Side",
  51820. image: {
  51821. source: "./media/characters/winter/feral.svg",
  51822. extra: 1286/943,
  51823. bottom: 112/1398
  51824. },
  51825. form: "feral",
  51826. default: true
  51827. },
  51828. feralNsfw: {
  51829. height: math.unit(12, "feet"),
  51830. weight: math.unit(20000, "lb"),
  51831. name: "Side (NSFW)",
  51832. image: {
  51833. source: "./media/characters/winter/feral-nsfw.svg",
  51834. extra: 1286/943,
  51835. bottom: 112/1398
  51836. },
  51837. form: "feral"
  51838. },
  51839. dick: {
  51840. height: math.unit(3.79, "feet"),
  51841. name: "Dick",
  51842. image: {
  51843. source: "./media/characters/winter/dick.svg"
  51844. },
  51845. form: "feral"
  51846. },
  51847. anthro: {
  51848. height: math.unit(12, "feet"),
  51849. weight: math.unit(10, "tons"),
  51850. name: "Anthro",
  51851. image: {
  51852. source: "./media/characters/winter/anthro.svg",
  51853. extra: 1701/1553,
  51854. bottom: 64/1765
  51855. },
  51856. form: "anthro",
  51857. default: true
  51858. },
  51859. },
  51860. [
  51861. {
  51862. name: "Big",
  51863. height: math.unit(12, "feet"),
  51864. default: true,
  51865. form: "feral"
  51866. },
  51867. {
  51868. name: "Big",
  51869. height: math.unit(12, "feet"),
  51870. default: true,
  51871. form: "anthro"
  51872. },
  51873. ],
  51874. {
  51875. "feral": {
  51876. name: "Feral",
  51877. default: true
  51878. },
  51879. "anthro": {
  51880. name: "Anthro"
  51881. }
  51882. }
  51883. ))
  51884. characterMakers.push(() => makeCharacter(
  51885. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51886. {
  51887. front: {
  51888. height: math.unit(4.1, "inches"),
  51889. name: "Front",
  51890. image: {
  51891. source: "./media/characters/alto/front.svg",
  51892. extra: 736/627,
  51893. bottom: 90/826
  51894. }
  51895. },
  51896. },
  51897. [
  51898. {
  51899. name: "Normal",
  51900. height: math.unit(4.1, "inches"),
  51901. default: true
  51902. },
  51903. ]
  51904. ))
  51905. characterMakers.push(() => makeCharacter(
  51906. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51907. {
  51908. sitting: {
  51909. height: math.unit(3, "feet"),
  51910. name: "Sitting",
  51911. image: {
  51912. source: "./media/characters/ratstrid-v/sitting.svg",
  51913. extra: 355/310,
  51914. bottom: 136/491
  51915. }
  51916. },
  51917. },
  51918. [
  51919. {
  51920. name: "Normal",
  51921. height: math.unit(3, "feet"),
  51922. default: true
  51923. },
  51924. ]
  51925. ))
  51926. characterMakers.push(() => makeCharacter(
  51927. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51928. {
  51929. back: {
  51930. height: math.unit(6, "feet"),
  51931. weight: math.unit(450, "lb"),
  51932. name: "Back",
  51933. image: {
  51934. source: "./media/characters/siz/back.svg",
  51935. extra: 1449/1274,
  51936. bottom: 13/1462
  51937. }
  51938. },
  51939. },
  51940. [
  51941. {
  51942. name: "Smallest",
  51943. height: math.unit(18 + 3/12, "feet")
  51944. },
  51945. {
  51946. name: "Modest",
  51947. height: math.unit(56 + 8/12, "feet"),
  51948. default: true
  51949. },
  51950. {
  51951. name: "Largest",
  51952. height: math.unit(3590, "feet")
  51953. },
  51954. ]
  51955. ))
  51956. characterMakers.push(() => makeCharacter(
  51957. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51958. {
  51959. front: {
  51960. height: math.unit(5 + 9/12, "feet"),
  51961. weight: math.unit(150, "lb"),
  51962. name: "Front",
  51963. image: {
  51964. source: "./media/characters/ven/front.svg",
  51965. extra: 1372/1320,
  51966. bottom: 73/1445
  51967. }
  51968. },
  51969. side: {
  51970. height: math.unit(5 + 9/12, "feet"),
  51971. weight: math.unit(1150, "lb"),
  51972. name: "Side",
  51973. image: {
  51974. source: "./media/characters/ven/side.svg",
  51975. extra: 1119/1070,
  51976. bottom: 42/1161
  51977. },
  51978. default: true
  51979. },
  51980. },
  51981. [
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(5 + 9/12, "feet"),
  51985. default: true
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51991. {
  51992. front: {
  51993. height: math.unit(12, "feet"),
  51994. weight: math.unit(1000, "kg"),
  51995. name: "Front",
  51996. image: {
  51997. source: "./media/characters/maple/front.svg",
  51998. extra: 1193/1081,
  51999. bottom: 22/1215
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Compressed",
  52006. height: math.unit(7, "feet")
  52007. },
  52008. {
  52009. name: "Normal",
  52010. height: math.unit(12, "feet"),
  52011. default: true
  52012. },
  52013. ]
  52014. ))
  52015. characterMakers.push(() => makeCharacter(
  52016. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  52017. {
  52018. front: {
  52019. height: math.unit(9, "feet"),
  52020. weight: math.unit(1500, "lb"),
  52021. name: "Front",
  52022. image: {
  52023. source: "./media/characters/nora/front.svg",
  52024. extra: 1348/1286,
  52025. bottom: 218/1566
  52026. }
  52027. },
  52028. erect: {
  52029. height: math.unit(9, "feet"),
  52030. weight: math.unit(11500, "lb"),
  52031. name: "Erect",
  52032. image: {
  52033. source: "./media/characters/nora/erect.svg",
  52034. extra: 1488/1433,
  52035. bottom: 133/1621
  52036. }
  52037. },
  52038. },
  52039. [
  52040. {
  52041. name: "Normal",
  52042. height: math.unit(9, "feet"),
  52043. default: true
  52044. },
  52045. ]
  52046. ))
  52047. characterMakers.push(() => makeCharacter(
  52048. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  52049. {
  52050. front: {
  52051. height: math.unit(25, "feet"),
  52052. weight: math.unit(27500, "lb"),
  52053. name: "Front",
  52054. image: {
  52055. source: "./media/characters/north-caudin/front.svg",
  52056. extra: 1184/1082,
  52057. bottom: 23/1207
  52058. }
  52059. },
  52060. },
  52061. [
  52062. {
  52063. name: "Compressed",
  52064. height: math.unit(10, "feet")
  52065. },
  52066. {
  52067. name: "Normal",
  52068. height: math.unit(25, "feet"),
  52069. default: true
  52070. },
  52071. ]
  52072. ))
  52073. characterMakers.push(() => makeCharacter(
  52074. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52075. {
  52076. front: {
  52077. height: math.unit(9, "feet"),
  52078. weight: math.unit(1250, "lb"),
  52079. name: "Front",
  52080. image: {
  52081. source: "./media/characters/merrian/front.svg",
  52082. extra: 2393/2304,
  52083. bottom: 40/2433
  52084. }
  52085. },
  52086. },
  52087. [
  52088. {
  52089. name: "Normal",
  52090. height: math.unit(9, "feet"),
  52091. default: true
  52092. },
  52093. ]
  52094. ))
  52095. characterMakers.push(() => makeCharacter(
  52096. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52097. {
  52098. front: {
  52099. height: math.unit(9, "feet"),
  52100. weight: math.unit(1000, "lb"),
  52101. name: "Front",
  52102. image: {
  52103. source: "./media/characters/hazel/front.svg",
  52104. extra: 2351/2298,
  52105. bottom: 38/2389
  52106. }
  52107. },
  52108. },
  52109. [
  52110. {
  52111. name: "Normal",
  52112. height: math.unit(9, "feet"),
  52113. default: true
  52114. },
  52115. ]
  52116. ))
  52117. characterMakers.push(() => makeCharacter(
  52118. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52119. {
  52120. front: {
  52121. height: math.unit(13, "feet"),
  52122. weight: math.unit(3200, "lb"),
  52123. name: "Front",
  52124. image: {
  52125. source: "./media/characters/emma/front.svg",
  52126. extra: 2263/2029,
  52127. bottom: 68/2331
  52128. }
  52129. },
  52130. },
  52131. [
  52132. {
  52133. name: "Normal",
  52134. height: math.unit(13, "feet"),
  52135. default: true
  52136. },
  52137. ]
  52138. ))
  52139. characterMakers.push(() => makeCharacter(
  52140. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52141. {
  52142. front: {
  52143. height: math.unit(11 + 9/12, "feet"),
  52144. weight: math.unit(2500, "lb"),
  52145. name: "Front",
  52146. image: {
  52147. source: "./media/characters/ilumina/front.svg",
  52148. extra: 2248/2209,
  52149. bottom: 164/2412
  52150. }
  52151. },
  52152. },
  52153. [
  52154. {
  52155. name: "Normal",
  52156. height: math.unit(11 + 9/12, "feet"),
  52157. default: true
  52158. },
  52159. ]
  52160. ))
  52161. characterMakers.push(() => makeCharacter(
  52162. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52163. {
  52164. front: {
  52165. height: math.unit(8 + 10/12, "feet"),
  52166. weight: math.unit(1350, "lb"),
  52167. name: "Front",
  52168. image: {
  52169. source: "./media/characters/moonshine/front.svg",
  52170. extra: 2395/2288,
  52171. bottom: 40/2435
  52172. }
  52173. },
  52174. },
  52175. [
  52176. {
  52177. name: "Normal",
  52178. height: math.unit(8 + 10/12, "feet"),
  52179. default: true
  52180. },
  52181. ]
  52182. ))
  52183. characterMakers.push(() => makeCharacter(
  52184. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52185. {
  52186. front: {
  52187. height: math.unit(14, "feet"),
  52188. weight: math.unit(3400, "lb"),
  52189. name: "Front",
  52190. image: {
  52191. source: "./media/characters/aletia/front.svg",
  52192. extra: 1185/1052,
  52193. bottom: 21/1206
  52194. }
  52195. },
  52196. },
  52197. [
  52198. {
  52199. name: "Compressed",
  52200. height: math.unit(8, "feet")
  52201. },
  52202. {
  52203. name: "Normal",
  52204. height: math.unit(14, "feet"),
  52205. default: true
  52206. },
  52207. ]
  52208. ))
  52209. characterMakers.push(() => makeCharacter(
  52210. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52211. {
  52212. front: {
  52213. height: math.unit(17, "feet"),
  52214. weight: math.unit(6500, "lb"),
  52215. name: "Front",
  52216. image: {
  52217. source: "./media/characters/deidra/front.svg",
  52218. extra: 1201/1081,
  52219. bottom: 16/1217
  52220. }
  52221. },
  52222. },
  52223. [
  52224. {
  52225. name: "Compressed",
  52226. height: math.unit(9 + 6/12, "feet")
  52227. },
  52228. {
  52229. name: "Normal",
  52230. height: math.unit(17, "feet"),
  52231. default: true
  52232. },
  52233. ]
  52234. ))
  52235. characterMakers.push(() => makeCharacter(
  52236. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52237. {
  52238. front: {
  52239. height: math.unit(7 + 4/12, "feet"),
  52240. weight: math.unit(280, "lb"),
  52241. name: "Front",
  52242. image: {
  52243. source: "./media/characters/freki-yrmori/front.svg",
  52244. extra: 1286/1182,
  52245. bottom: 29/1315
  52246. }
  52247. },
  52248. maw: {
  52249. height: math.unit(0.9, "feet"),
  52250. name: "Maw",
  52251. image: {
  52252. source: "./media/characters/freki-yrmori/maw.svg"
  52253. }
  52254. },
  52255. },
  52256. [
  52257. {
  52258. name: "Normal",
  52259. height: math.unit(7 + 4/12, "feet"),
  52260. default: true
  52261. },
  52262. {
  52263. name: "Macro",
  52264. height: math.unit(38.5, "meters")
  52265. },
  52266. ]
  52267. ))
  52268. characterMakers.push(() => makeCharacter(
  52269. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52270. {
  52271. side: {
  52272. height: math.unit(47.2, "meters"),
  52273. weight: math.unit(10000, "tons"),
  52274. name: "Side",
  52275. image: {
  52276. source: "./media/characters/aetherios/side.svg",
  52277. extra: 2363/642,
  52278. bottom: 221/2584
  52279. }
  52280. },
  52281. top: {
  52282. height: math.unit(240, "meters"),
  52283. weight: math.unit(10000, "tons"),
  52284. name: "Top",
  52285. image: {
  52286. source: "./media/characters/aetherios/top.svg"
  52287. }
  52288. },
  52289. bottom: {
  52290. height: math.unit(240, "meters"),
  52291. weight: math.unit(10000, "tons"),
  52292. name: "Bottom",
  52293. image: {
  52294. source: "./media/characters/aetherios/bottom.svg"
  52295. }
  52296. },
  52297. head: {
  52298. height: math.unit(38.6, "meters"),
  52299. name: "Head",
  52300. image: {
  52301. source: "./media/characters/aetherios/head.svg",
  52302. extra: 1335/1112,
  52303. bottom: 0/1335
  52304. }
  52305. },
  52306. front: {
  52307. height: math.unit(29, "meters"),
  52308. name: "Front",
  52309. image: {
  52310. source: "./media/characters/aetherios/front.svg",
  52311. extra: 1266/953,
  52312. bottom: 158/1424
  52313. }
  52314. },
  52315. maw: {
  52316. height: math.unit(16.37, "meters"),
  52317. name: "Maw",
  52318. image: {
  52319. source: "./media/characters/aetherios/maw.svg",
  52320. extra: 748/637,
  52321. bottom: 0/748
  52322. },
  52323. extraAttributes: {
  52324. preyCapacity: {
  52325. name: "Capacity",
  52326. power: 3,
  52327. type: "volume",
  52328. base: math.unit(1000, "people")
  52329. },
  52330. tongueSize: {
  52331. name: "Tongue Size",
  52332. power: 2,
  52333. type: "area",
  52334. base: math.unit(21, "m^2")
  52335. }
  52336. }
  52337. },
  52338. forepaw: {
  52339. height: math.unit(18, "meters"),
  52340. name: "Forepaw",
  52341. image: {
  52342. source: "./media/characters/aetherios/forepaw.svg"
  52343. }
  52344. },
  52345. hindpaw: {
  52346. height: math.unit(23, "meters"),
  52347. name: "Hindpaw",
  52348. image: {
  52349. source: "./media/characters/aetherios/hindpaw.svg"
  52350. }
  52351. },
  52352. genitals: {
  52353. height: math.unit(42, "meters"),
  52354. name: "Genitals",
  52355. image: {
  52356. source: "./media/characters/aetherios/genitals.svg"
  52357. }
  52358. },
  52359. },
  52360. [
  52361. {
  52362. name: "Normal",
  52363. height: math.unit(47.2, "meters"),
  52364. default: true
  52365. },
  52366. {
  52367. name: "Macro",
  52368. height: math.unit(160, "meters")
  52369. },
  52370. {
  52371. name: "Mega",
  52372. height: math.unit(1.87, "km")
  52373. },
  52374. {
  52375. name: "Giga",
  52376. height: math.unit(40000, "km")
  52377. },
  52378. {
  52379. name: "Stellar",
  52380. height: math.unit(158000000, "km")
  52381. },
  52382. {
  52383. name: "Cosmic",
  52384. height: math.unit(9.46e12, "km")
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52390. {
  52391. front: {
  52392. height: math.unit(5 + 4/12, "feet"),
  52393. weight: math.unit(80, "lb"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/mizu-gieeg/front.svg",
  52397. extra: 850/709,
  52398. bottom: 52/902
  52399. }
  52400. },
  52401. back: {
  52402. height: math.unit(5 + 4/12, "feet"),
  52403. weight: math.unit(80, "lb"),
  52404. name: "Back",
  52405. image: {
  52406. source: "./media/characters/mizu-gieeg/back.svg",
  52407. extra: 882/745,
  52408. bottom: 25/907
  52409. }
  52410. },
  52411. },
  52412. [
  52413. {
  52414. name: "Normal",
  52415. height: math.unit(5 + 4/12, "feet"),
  52416. default: true
  52417. },
  52418. ]
  52419. ))
  52420. characterMakers.push(() => makeCharacter(
  52421. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52422. {
  52423. front: {
  52424. height: math.unit(6, "feet"),
  52425. name: "Front",
  52426. image: {
  52427. source: "./media/characters/roselle-st-papier/front.svg",
  52428. extra: 1430/1280,
  52429. bottom: 37/1467
  52430. }
  52431. },
  52432. back: {
  52433. height: math.unit(6, "feet"),
  52434. name: "Back",
  52435. image: {
  52436. source: "./media/characters/roselle-st-papier/back.svg",
  52437. extra: 1491/1296,
  52438. bottom: 23/1514
  52439. }
  52440. },
  52441. ear: {
  52442. height: math.unit(1.26, "feet"),
  52443. name: "Ear",
  52444. image: {
  52445. source: "./media/characters/roselle-st-papier/ear.svg"
  52446. }
  52447. },
  52448. },
  52449. [
  52450. {
  52451. name: "Normal",
  52452. height: math.unit(150, "feet"),
  52453. default: true
  52454. },
  52455. ]
  52456. ))
  52457. characterMakers.push(() => makeCharacter(
  52458. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52459. {
  52460. front: {
  52461. height: math.unit(1, "inches"),
  52462. name: "Front",
  52463. image: {
  52464. source: "./media/characters/valargent/front.svg",
  52465. extra: 1825/1694,
  52466. bottom: 62/1887
  52467. }
  52468. },
  52469. back: {
  52470. height: math.unit(1, "inches"),
  52471. name: "Back",
  52472. image: {
  52473. source: "./media/characters/valargent/back.svg",
  52474. extra: 1775/1682,
  52475. bottom: 88/1863
  52476. }
  52477. },
  52478. },
  52479. [
  52480. {
  52481. name: "Micro",
  52482. height: math.unit(1, "inch"),
  52483. default: true
  52484. },
  52485. ]
  52486. ))
  52487. characterMakers.push(() => makeCharacter(
  52488. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52489. {
  52490. front: {
  52491. height: math.unit(3.4, "meters"),
  52492. name: "Front",
  52493. image: {
  52494. source: "./media/characters/zarina/front.svg",
  52495. extra: 1733/1425,
  52496. bottom: 93/1826
  52497. }
  52498. },
  52499. squatting: {
  52500. height: math.unit(2.14, "meters"),
  52501. name: "Squatting",
  52502. image: {
  52503. source: "./media/characters/zarina/squatting.svg",
  52504. extra: 1073/788,
  52505. bottom: 63/1136
  52506. }
  52507. },
  52508. back: {
  52509. height: math.unit(2.14, "meters"),
  52510. name: "Back",
  52511. image: {
  52512. source: "./media/characters/zarina/back.svg",
  52513. extra: 1128/885,
  52514. bottom: 0/1128
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(3.4, "meters"),
  52522. default: true
  52523. },
  52524. {
  52525. name: "Big",
  52526. height: math.unit(5, "meters")
  52527. },
  52528. {
  52529. name: "Macro",
  52530. height: math.unit(110, "meters")
  52531. },
  52532. ]
  52533. ))
  52534. characterMakers.push(() => makeCharacter(
  52535. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52536. {
  52537. front: {
  52538. height: math.unit(7, "feet"),
  52539. name: "Front",
  52540. image: {
  52541. source: "./media/characters/ventus-astro-fox/front.svg",
  52542. extra: 1792/1623,
  52543. bottom: 28/1820
  52544. }
  52545. },
  52546. back: {
  52547. height: math.unit(7, "feet"),
  52548. name: "Back",
  52549. image: {
  52550. source: "./media/characters/ventus-astro-fox/back.svg",
  52551. extra: 1789/1620,
  52552. bottom: 31/1820
  52553. }
  52554. },
  52555. outfit: {
  52556. height: math.unit(7, "feet"),
  52557. name: "Outfit",
  52558. image: {
  52559. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52560. extra: 1054/925,
  52561. bottom: 15/1069
  52562. }
  52563. },
  52564. head: {
  52565. height: math.unit(1.12, "feet"),
  52566. name: "Head",
  52567. image: {
  52568. source: "./media/characters/ventus-astro-fox/head.svg",
  52569. extra: 866/504,
  52570. bottom: 0/866
  52571. }
  52572. },
  52573. hand: {
  52574. height: math.unit(1, "feet"),
  52575. name: "Hand",
  52576. image: {
  52577. source: "./media/characters/ventus-astro-fox/hand.svg"
  52578. }
  52579. },
  52580. paw: {
  52581. height: math.unit(1.5, "feet"),
  52582. name: "Paw",
  52583. image: {
  52584. source: "./media/characters/ventus-astro-fox/paw.svg"
  52585. }
  52586. },
  52587. },
  52588. [
  52589. {
  52590. name: "Normal",
  52591. height: math.unit(7, "feet"),
  52592. default: true
  52593. },
  52594. {
  52595. name: "Macro",
  52596. height: math.unit(200, "feet")
  52597. },
  52598. {
  52599. name: "Cosmic",
  52600. height: math.unit(3, "universes")
  52601. },
  52602. ]
  52603. ))
  52604. characterMakers.push(() => makeCharacter(
  52605. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52606. {
  52607. front: {
  52608. height: math.unit(3, "meters"),
  52609. weight: math.unit(7000, "lb"),
  52610. name: "Front",
  52611. image: {
  52612. source: "./media/characters/core-t/front.svg",
  52613. extra: 5729/4941,
  52614. bottom: 1129/6858
  52615. }
  52616. },
  52617. },
  52618. [
  52619. {
  52620. name: "Big",
  52621. height: math.unit(3, "meters"),
  52622. default: true
  52623. },
  52624. ]
  52625. ))
  52626. characterMakers.push(() => makeCharacter(
  52627. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52628. {
  52629. normal: {
  52630. height: math.unit(6 + 6/12, "feet"),
  52631. weight: math.unit(275, "lb"),
  52632. name: "Front",
  52633. image: {
  52634. source: "./media/characters/cadbunny/normal.svg",
  52635. extra: 1129/947,
  52636. bottom: 93/1222
  52637. },
  52638. default: true,
  52639. form: "normal"
  52640. },
  52641. gigantamax: {
  52642. height: math.unit(26, "feet"),
  52643. weight: math.unit(16000, "lb"),
  52644. name: "Front",
  52645. image: {
  52646. source: "./media/characters/cadbunny/gigantamax.svg",
  52647. extra: 1133/944,
  52648. bottom: 90/1223
  52649. },
  52650. default: true,
  52651. form: "gigantamax"
  52652. },
  52653. },
  52654. [
  52655. {
  52656. name: "Normal",
  52657. height: math.unit(6 + 6/12, "feet"),
  52658. default: true,
  52659. form: "normal"
  52660. },
  52661. {
  52662. name: "Small",
  52663. height: math.unit(26, "feet"),
  52664. default: true,
  52665. form: "gigantamax"
  52666. },
  52667. {
  52668. name: "Large",
  52669. height: math.unit(78, "feet"),
  52670. form: "gigantamax"
  52671. },
  52672. ],
  52673. {
  52674. "normal": {
  52675. name: "Normal",
  52676. default: true
  52677. },
  52678. "gigantamax": {
  52679. name: "Gigantamax"
  52680. }
  52681. }
  52682. ))
  52683. characterMakers.push(() => makeCharacter(
  52684. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52685. {
  52686. anthroFront: {
  52687. height: math.unit(8, "feet"),
  52688. weight: math.unit(300, "lb"),
  52689. name: "Front",
  52690. image: {
  52691. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52692. extra: 1272/1176,
  52693. bottom: 53/1325
  52694. },
  52695. form: "anthro",
  52696. default: true
  52697. },
  52698. feralSide: {
  52699. height: math.unit(4, "feet"),
  52700. weight: math.unit(250, "lb"),
  52701. name: "Side",
  52702. image: {
  52703. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52704. extra: 731/621,
  52705. bottom: 0/731
  52706. },
  52707. form: "feral",
  52708. default: true
  52709. },
  52710. },
  52711. [
  52712. {
  52713. name: "Regular",
  52714. height: math.unit(8, "feet"),
  52715. form: "anthro"
  52716. },
  52717. {
  52718. name: "Macro",
  52719. height: math.unit(250, "feet"),
  52720. form: "anthro",
  52721. default: true
  52722. },
  52723. {
  52724. name: "Regular",
  52725. height: math.unit(4, "feet"),
  52726. form: "feral"
  52727. },
  52728. {
  52729. name: "Macro",
  52730. height: math.unit(125, "feet"),
  52731. form: "feral",
  52732. default: true
  52733. },
  52734. ],
  52735. {
  52736. "anthro": {
  52737. name: "Anthro",
  52738. default: true
  52739. },
  52740. "feral": {
  52741. name: "Feral",
  52742. },
  52743. }
  52744. ))
  52745. characterMakers.push(() => makeCharacter(
  52746. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52747. {
  52748. front: {
  52749. height: math.unit(11 + 10/12, "feet"),
  52750. weight: math.unit(1587, "kg"),
  52751. name: "Front",
  52752. image: {
  52753. source: "./media/characters/maple-javira-dragon/front.svg",
  52754. extra: 1136/744,
  52755. bottom: 73/1209
  52756. }
  52757. },
  52758. side: {
  52759. height: math.unit(11 + 10/12, "feet"),
  52760. weight: math.unit(1587, "kg"),
  52761. name: "Side",
  52762. image: {
  52763. source: "./media/characters/maple-javira-dragon/side.svg",
  52764. extra: 712/505,
  52765. bottom: 17/729
  52766. }
  52767. },
  52768. head: {
  52769. height: math.unit(8.05, "feet"),
  52770. name: "Head",
  52771. image: {
  52772. source: "./media/characters/maple-javira-dragon/head.svg",
  52773. extra: 1420/1344,
  52774. bottom: 0/1420
  52775. }
  52776. },
  52777. },
  52778. [
  52779. {
  52780. name: "Normal",
  52781. height: math.unit(11 + 10/12, "feet"),
  52782. default: true
  52783. },
  52784. ]
  52785. ))
  52786. characterMakers.push(() => makeCharacter(
  52787. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52788. {
  52789. front: {
  52790. height: math.unit(117, "cm"),
  52791. weight: math.unit(50, "kg"),
  52792. name: "Front",
  52793. image: {
  52794. source: "./media/characters/sonia-wyverntail/front.svg",
  52795. extra: 708/592,
  52796. bottom: 25/733
  52797. }
  52798. },
  52799. },
  52800. [
  52801. {
  52802. name: "Normal",
  52803. height: math.unit(117, "cm"),
  52804. default: true
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52810. {
  52811. front: {
  52812. height: math.unit(6 + 5/12, "feet"),
  52813. name: "Front",
  52814. image: {
  52815. source: "./media/characters/micah/front.svg",
  52816. extra: 1758/1546,
  52817. bottom: 214/1972
  52818. }
  52819. },
  52820. },
  52821. [
  52822. {
  52823. name: "Normal",
  52824. height: math.unit(6 + 5/12, "feet"),
  52825. default: true
  52826. },
  52827. ]
  52828. ))
  52829. characterMakers.push(() => makeCharacter(
  52830. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52831. {
  52832. front: {
  52833. height: math.unit(1.75, "meters"),
  52834. weight: math.unit(100, "kg"),
  52835. name: "Front",
  52836. image: {
  52837. source: "./media/characters/zarya/front.svg",
  52838. extra: 741/735,
  52839. bottom: 44/785
  52840. },
  52841. extraAttributes: {
  52842. "tailLength": {
  52843. name: "Tail Length",
  52844. power: 1,
  52845. type: "length",
  52846. base: math.unit(180, "cm")
  52847. },
  52848. "pawLength": {
  52849. name: "Paw Length",
  52850. power: 1,
  52851. type: "length",
  52852. base: math.unit(31, "cm")
  52853. },
  52854. }
  52855. },
  52856. side: {
  52857. height: math.unit(1.75, "meters"),
  52858. weight: math.unit(100, "kg"),
  52859. name: "Side",
  52860. image: {
  52861. source: "./media/characters/zarya/side.svg",
  52862. extra: 776/770,
  52863. bottom: 17/793
  52864. },
  52865. extraAttributes: {
  52866. "tailLength": {
  52867. name: "Tail Length",
  52868. power: 1,
  52869. type: "length",
  52870. base: math.unit(180, "cm")
  52871. },
  52872. "pawLength": {
  52873. name: "Paw Length",
  52874. power: 1,
  52875. type: "length",
  52876. base: math.unit(31, "cm")
  52877. },
  52878. }
  52879. },
  52880. back: {
  52881. height: math.unit(1.75, "meters"),
  52882. weight: math.unit(100, "kg"),
  52883. name: "Back",
  52884. image: {
  52885. source: "./media/characters/zarya/back.svg",
  52886. extra: 741/735,
  52887. bottom: 44/785
  52888. },
  52889. extraAttributes: {
  52890. "tailLength": {
  52891. name: "Tail Length",
  52892. power: 1,
  52893. type: "length",
  52894. base: math.unit(180, "cm")
  52895. },
  52896. "pawLength": {
  52897. name: "Paw Length",
  52898. power: 1,
  52899. type: "length",
  52900. base: math.unit(31, "cm")
  52901. },
  52902. }
  52903. },
  52904. frontNoTail: {
  52905. height: math.unit(1.75, "meters"),
  52906. weight: math.unit(100, "kg"),
  52907. name: "Front (No Tail)",
  52908. image: {
  52909. source: "./media/characters/zarya/front-no-tail.svg",
  52910. extra: 741/735,
  52911. bottom: 44/785
  52912. },
  52913. extraAttributes: {
  52914. "tailLength": {
  52915. name: "Tail Length",
  52916. power: 1,
  52917. type: "length",
  52918. base: math.unit(180, "cm")
  52919. },
  52920. "pawLength": {
  52921. name: "Paw Length",
  52922. power: 1,
  52923. type: "length",
  52924. base: math.unit(31, "cm")
  52925. },
  52926. }
  52927. },
  52928. dressed: {
  52929. height: math.unit(1.75, "meters"),
  52930. weight: math.unit(100, "kg"),
  52931. name: "Dressed",
  52932. image: {
  52933. source: "./media/characters/zarya/dressed.svg",
  52934. extra: 683/672,
  52935. bottom: 79/762
  52936. },
  52937. extraAttributes: {
  52938. "tailLength": {
  52939. name: "Tail Length",
  52940. power: 1,
  52941. type: "length",
  52942. base: math.unit(180, "cm")
  52943. },
  52944. "pawLength": {
  52945. name: "Paw Length",
  52946. power: 1,
  52947. type: "length",
  52948. base: math.unit(31, "cm")
  52949. },
  52950. }
  52951. },
  52952. },
  52953. [
  52954. {
  52955. name: "Micro",
  52956. height: math.unit(5, "cm")
  52957. },
  52958. {
  52959. name: "Normal",
  52960. height: math.unit(1.75, "meters"),
  52961. default: true
  52962. },
  52963. {
  52964. name: "Macro",
  52965. height: math.unit(122, "meters")
  52966. },
  52967. ]
  52968. ))
  52969. characterMakers.push(() => makeCharacter(
  52970. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52971. {
  52972. front: {
  52973. height: math.unit(7.5, "feet"),
  52974. name: "Front",
  52975. image: {
  52976. source: "./media/characters/sven-hatisson/front.svg",
  52977. extra: 917/857,
  52978. bottom: 42/959
  52979. }
  52980. },
  52981. back: {
  52982. height: math.unit(7.5, "feet"),
  52983. name: "Back",
  52984. image: {
  52985. source: "./media/characters/sven-hatisson/back.svg",
  52986. extra: 903/856,
  52987. bottom: 15/918
  52988. }
  52989. },
  52990. },
  52991. [
  52992. {
  52993. name: "Base Height",
  52994. height: math.unit(7.5, "feet")
  52995. },
  52996. {
  52997. name: "Usual Height",
  52998. height: math.unit(13.5, "feet"),
  52999. default: true
  53000. },
  53001. {
  53002. name: "Smaller Macro",
  53003. height: math.unit(85, "feet")
  53004. },
  53005. {
  53006. name: "Moderate Macro",
  53007. height: math.unit(320, "feet")
  53008. },
  53009. {
  53010. name: "Large Macro",
  53011. height: math.unit(1000, "feet")
  53012. },
  53013. {
  53014. name: "Largest Size",
  53015. height: math.unit(2, "miles")
  53016. },
  53017. ]
  53018. ))
  53019. characterMakers.push(() => makeCharacter(
  53020. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  53021. {
  53022. side: {
  53023. height: math.unit(1.8, "meters"),
  53024. weight: math.unit(275, "kg"),
  53025. name: "Side",
  53026. image: {
  53027. source: "./media/characters/terra/side.svg",
  53028. extra: 1273/1147,
  53029. bottom: 0/1273
  53030. }
  53031. },
  53032. },
  53033. [
  53034. {
  53035. name: "Normal",
  53036. height: math.unit(16.2, "meters"),
  53037. default: true
  53038. },
  53039. ]
  53040. ))
  53041. characterMakers.push(() => makeCharacter(
  53042. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  53043. {
  53044. borzoiFront: {
  53045. height: math.unit(6 + 9/12, "feet"),
  53046. name: "Front",
  53047. image: {
  53048. source: "./media/characters/rae/borzoi-front.svg",
  53049. extra: 1161/1098,
  53050. bottom: 31/1192
  53051. },
  53052. form: "borzoi",
  53053. default: true
  53054. },
  53055. werewolfFront: {
  53056. height: math.unit(8 + 7/12, "feet"),
  53057. name: "Front",
  53058. image: {
  53059. source: "./media/characters/rae/werewolf-front.svg",
  53060. extra: 1411/1334,
  53061. bottom: 127/1538
  53062. },
  53063. form: "werewolf",
  53064. default: true
  53065. },
  53066. },
  53067. [
  53068. {
  53069. name: "Normal",
  53070. height: math.unit(6 + 9/12, "feet"),
  53071. default: true,
  53072. form: "borzoi"
  53073. },
  53074. {
  53075. name: "Normal",
  53076. height: math.unit(8 + 7/12, "feet"),
  53077. default: true,
  53078. form: "werewolf"
  53079. },
  53080. ],
  53081. {
  53082. "borzoi": {
  53083. name: "Borzoi",
  53084. default: true
  53085. },
  53086. "werewolf": {
  53087. name: "Werewolf",
  53088. },
  53089. }
  53090. ))
  53091. characterMakers.push(() => makeCharacter(
  53092. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53093. {
  53094. front: {
  53095. height: math.unit(8 + 7/12, "feet"),
  53096. weight: math.unit(482, "lb"),
  53097. name: "Front",
  53098. image: {
  53099. source: "./media/characters/kit/front.svg",
  53100. extra: 1247/1103,
  53101. bottom: 41/1288
  53102. }
  53103. },
  53104. back: {
  53105. height: math.unit(8 + 7/12, "feet"),
  53106. weight: math.unit(482, "lb"),
  53107. name: "Back",
  53108. image: {
  53109. source: "./media/characters/kit/back.svg",
  53110. extra: 1252/1123,
  53111. bottom: 21/1273
  53112. }
  53113. },
  53114. paw: {
  53115. height: math.unit(1.46, "feet"),
  53116. name: "Paw",
  53117. image: {
  53118. source: "./media/characters/kit/paw.svg"
  53119. }
  53120. },
  53121. },
  53122. [
  53123. {
  53124. name: "Normal",
  53125. height: math.unit(2.61, "meters"),
  53126. default: true
  53127. },
  53128. {
  53129. name: "\"Tall\"",
  53130. height: math.unit(8.21, "meters")
  53131. },
  53132. {
  53133. name: "Tall",
  53134. height: math.unit(19.6, "meters")
  53135. },
  53136. {
  53137. name: "Very Tall",
  53138. height: math.unit(57.91, "meters")
  53139. },
  53140. {
  53141. name: "Semi-Macro",
  53142. height: math.unit(138.64, "meters")
  53143. },
  53144. {
  53145. name: "Macro",
  53146. height: math.unit(831.99, "meters")
  53147. },
  53148. {
  53149. name: "EX-Macro",
  53150. height: math.unit(96451121, "meters")
  53151. },
  53152. {
  53153. name: "S1-Omnipotent",
  53154. height: math.unit(4.42074e+9, "meters")
  53155. },
  53156. {
  53157. name: "S2-Omnipotent",
  53158. height: math.unit(9.42074e+17, "meters")
  53159. },
  53160. {
  53161. name: "Omnipotent",
  53162. height: math.unit(4.23112e+24, "meters")
  53163. },
  53164. {
  53165. name: "Hypergod",
  53166. height: math.unit(5.05176e+27, "meters")
  53167. },
  53168. {
  53169. name: "Hypergod-EX",
  53170. height: math.unit(9.45532e+49, "meters")
  53171. },
  53172. {
  53173. name: "Hypergod-SP",
  53174. height: math.unit(9.45532e+195, "meters")
  53175. },
  53176. ]
  53177. ))
  53178. characterMakers.push(() => makeCharacter(
  53179. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53180. {
  53181. side: {
  53182. height: math.unit(0.6, "meters"),
  53183. weight: math.unit(24, "kg"),
  53184. name: "Side",
  53185. image: {
  53186. source: "./media/characters/celeste/side.svg",
  53187. extra: 810/517,
  53188. bottom: 53/863
  53189. }
  53190. },
  53191. },
  53192. [
  53193. {
  53194. name: "Velociraptor",
  53195. height: math.unit(0.6, "meters"),
  53196. default: true
  53197. },
  53198. {
  53199. name: "Utahraptor",
  53200. height: math.unit(1.8, "meters")
  53201. },
  53202. {
  53203. name: "Gallimimus",
  53204. height: math.unit(4.0, "meters")
  53205. },
  53206. {
  53207. name: "Large",
  53208. height: math.unit(20, "meters")
  53209. },
  53210. {
  53211. name: "Planetary",
  53212. height: math.unit(50, "megameters")
  53213. },
  53214. {
  53215. name: "Stellar",
  53216. height: math.unit(1.5, "gigameters")
  53217. },
  53218. {
  53219. name: "Galactic",
  53220. height: math.unit(100, "exameters")
  53221. },
  53222. ]
  53223. ))
  53224. characterMakers.push(() => makeCharacter(
  53225. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53226. {
  53227. front: {
  53228. height: math.unit(6, "feet"),
  53229. weight: math.unit(210, "lb"),
  53230. name: "Front",
  53231. image: {
  53232. source: "./media/characters/glacia/front.svg",
  53233. extra: 958/901,
  53234. bottom: 45/1003
  53235. }
  53236. },
  53237. },
  53238. [
  53239. {
  53240. name: "Macro",
  53241. height: math.unit(1000, "meters"),
  53242. default: true
  53243. },
  53244. ]
  53245. ))
  53246. characterMakers.push(() => makeCharacter(
  53247. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53248. {
  53249. front: {
  53250. height: math.unit(4, "meters"),
  53251. name: "Front",
  53252. image: {
  53253. source: "./media/characters/giri/front.svg",
  53254. extra: 966/894,
  53255. bottom: 21/987
  53256. }
  53257. },
  53258. },
  53259. [
  53260. {
  53261. name: "Normal",
  53262. height: math.unit(4, "meters"),
  53263. default: true
  53264. },
  53265. ]
  53266. ))
  53267. characterMakers.push(() => makeCharacter(
  53268. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53269. {
  53270. back: {
  53271. height: math.unit(4, "feet"),
  53272. weight: math.unit(37, "lb"),
  53273. name: "Back",
  53274. image: {
  53275. source: "./media/characters/tin/back.svg",
  53276. extra: 845/780,
  53277. bottom: 28/873
  53278. }
  53279. },
  53280. },
  53281. [
  53282. {
  53283. name: "Normal",
  53284. height: math.unit(4, "feet"),
  53285. default: true
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53291. {
  53292. front: {
  53293. height: math.unit(25, "feet"),
  53294. name: "Front",
  53295. image: {
  53296. source: "./media/characters/cadenza-vivace/front.svg",
  53297. extra: 1842/1578,
  53298. bottom: 30/1872
  53299. }
  53300. },
  53301. },
  53302. [
  53303. {
  53304. name: "Macro",
  53305. height: math.unit(25, "feet"),
  53306. default: true
  53307. },
  53308. ]
  53309. ))
  53310. characterMakers.push(() => makeCharacter(
  53311. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53312. {
  53313. front: {
  53314. height: math.unit(10, "feet"),
  53315. weight: math.unit(625, "kg"),
  53316. name: "Front",
  53317. image: {
  53318. source: "./media/characters/zain/front.svg",
  53319. extra: 1682/1498,
  53320. bottom: 223/1905
  53321. }
  53322. },
  53323. back: {
  53324. height: math.unit(10, "feet"),
  53325. weight: math.unit(625, "kg"),
  53326. name: "Back",
  53327. image: {
  53328. source: "./media/characters/zain/back.svg",
  53329. extra: 1814/1657,
  53330. bottom: 152/1966
  53331. }
  53332. },
  53333. head: {
  53334. height: math.unit(10, "feet"),
  53335. weight: math.unit(625, "kg"),
  53336. name: "Head",
  53337. image: {
  53338. source: "./media/characters/zain/head.svg",
  53339. extra: 1059/762,
  53340. bottom: 0/1059
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Normal",
  53347. height: math.unit(10, "feet"),
  53348. default: true
  53349. },
  53350. ]
  53351. ))
  53352. characterMakers.push(() => makeCharacter(
  53353. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53354. {
  53355. front: {
  53356. height: math.unit(6 + 5/12, "feet"),
  53357. weight: math.unit(750, "lb"),
  53358. name: "Front",
  53359. image: {
  53360. source: "./media/characters/ruchex/front.svg",
  53361. extra: 877/820,
  53362. bottom: 17/894
  53363. },
  53364. extraAttributes: {
  53365. "width": {
  53366. name: "Width",
  53367. power: 1,
  53368. type: "length",
  53369. base: math.unit(4.757, "feet")
  53370. },
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Normal",
  53377. height: math.unit(6 + 5/12, "feet"),
  53378. default: true
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53384. {
  53385. dressedFront: {
  53386. height: math.unit(191, "cm"),
  53387. weight: math.unit(80, "kg"),
  53388. name: "Front",
  53389. image: {
  53390. source: "./media/characters/buster/dressed-front.svg",
  53391. extra: 1022/973,
  53392. bottom: 69/1091
  53393. }
  53394. },
  53395. dressedBack: {
  53396. height: math.unit(191, "cm"),
  53397. weight: math.unit(80, "kg"),
  53398. name: "Back",
  53399. image: {
  53400. source: "./media/characters/buster/dressed-back.svg",
  53401. extra: 1018/970,
  53402. bottom: 55/1073
  53403. }
  53404. },
  53405. nudeFront: {
  53406. height: math.unit(191, "cm"),
  53407. weight: math.unit(80, "kg"),
  53408. name: "Front (Nude)",
  53409. image: {
  53410. source: "./media/characters/buster/nude-front.svg",
  53411. extra: 1022/973,
  53412. bottom: 69/1091
  53413. }
  53414. },
  53415. nudeBack: {
  53416. height: math.unit(191, "cm"),
  53417. weight: math.unit(80, "kg"),
  53418. name: "Back (Nude)",
  53419. image: {
  53420. source: "./media/characters/buster/nude-back.svg",
  53421. extra: 1018/970,
  53422. bottom: 55/1073
  53423. }
  53424. },
  53425. dick: {
  53426. height: math.unit(2.59, "feet"),
  53427. name: "Dick",
  53428. image: {
  53429. source: "./media/characters/buster/dick.svg"
  53430. }
  53431. },
  53432. ass: {
  53433. height: math.unit(1.2, "feet"),
  53434. name: "Ass",
  53435. image: {
  53436. source: "./media/characters/buster/ass.svg"
  53437. }
  53438. },
  53439. },
  53440. [
  53441. {
  53442. name: "Normal",
  53443. height: math.unit(191, "cm"),
  53444. default: true
  53445. },
  53446. ]
  53447. ))
  53448. characterMakers.push(() => makeCharacter(
  53449. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53450. {
  53451. side: {
  53452. height: math.unit(8.1, "feet"),
  53453. weight: math.unit(3500, "lb"),
  53454. name: "Side",
  53455. image: {
  53456. source: "./media/characters/sonya/side.svg",
  53457. extra: 1730/1317,
  53458. bottom: 86/1816
  53459. }
  53460. },
  53461. },
  53462. [
  53463. {
  53464. name: "Normal",
  53465. height: math.unit(8.1, "feet"),
  53466. default: true
  53467. },
  53468. ]
  53469. ))
  53470. characterMakers.push(() => makeCharacter(
  53471. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53472. {
  53473. front: {
  53474. height: math.unit(6, "feet"),
  53475. weight: math.unit(150, "lb"),
  53476. name: "Front",
  53477. image: {
  53478. source: "./media/characters/cadence-andrysiak/front.svg",
  53479. extra: 1164/1121,
  53480. bottom: 60/1224
  53481. }
  53482. },
  53483. back: {
  53484. height: math.unit(6, "feet"),
  53485. weight: math.unit(150, "lb"),
  53486. name: "Back",
  53487. image: {
  53488. source: "./media/characters/cadence-andrysiak/back.svg",
  53489. extra: 1200/1165,
  53490. bottom: 9/1209
  53491. }
  53492. },
  53493. dressed: {
  53494. height: math.unit(6, "feet"),
  53495. weight: math.unit(150, "lb"),
  53496. name: "Dressed",
  53497. image: {
  53498. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53499. extra: 1164/1121,
  53500. bottom: 60/1224
  53501. }
  53502. },
  53503. },
  53504. [
  53505. {
  53506. name: "Micro",
  53507. height: math.unit(1, "mm")
  53508. },
  53509. {
  53510. name: "Normal",
  53511. height: math.unit(6, "feet"),
  53512. default: true
  53513. },
  53514. ]
  53515. ))
  53516. characterMakers.push(() => makeCharacter(
  53517. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53518. {
  53519. front: {
  53520. height: math.unit(60, "inches"),
  53521. weight: math.unit(16, "lb"),
  53522. preyCapacity: math.unit(80, "liters"),
  53523. name: "Front",
  53524. image: {
  53525. source: "./media/characters/penny-lynx/front.svg",
  53526. extra: 1959/1769,
  53527. bottom: 49/2008
  53528. }
  53529. },
  53530. },
  53531. [
  53532. {
  53533. name: "Nokia",
  53534. height: math.unit(2, "inches")
  53535. },
  53536. {
  53537. name: "Desktop",
  53538. height: math.unit(24, "inches")
  53539. },
  53540. {
  53541. name: "TV",
  53542. height: math.unit(60, "inches")
  53543. },
  53544. {
  53545. name: "Jumbotron",
  53546. height: math.unit(12, "feet")
  53547. },
  53548. {
  53549. name: "Billboard",
  53550. height: math.unit(48, "feet"),
  53551. default: true
  53552. },
  53553. {
  53554. name: "IMAX",
  53555. height: math.unit(96, "feet")
  53556. },
  53557. {
  53558. name: "SINGULARITY",
  53559. height: math.unit(864938, "miles")
  53560. },
  53561. ]
  53562. ))
  53563. characterMakers.push(() => makeCharacter(
  53564. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53565. {
  53566. front: {
  53567. height: math.unit(5 + 4/12, "feet"),
  53568. weight: math.unit(230, "lb"),
  53569. name: "Front",
  53570. image: {
  53571. source: "./media/characters/sukebe/front.svg",
  53572. extra: 2130/2038,
  53573. bottom: 90/2220
  53574. }
  53575. },
  53576. back: {
  53577. height: math.unit(3.48, "feet"),
  53578. weight: math.unit(230, "lb"),
  53579. name: "Back",
  53580. image: {
  53581. source: "./media/characters/sukebe/back.svg",
  53582. extra: 1670/1604,
  53583. bottom: 0/1670
  53584. }
  53585. },
  53586. },
  53587. [
  53588. {
  53589. name: "Normal",
  53590. height: math.unit(5 + 4/12, "feet"),
  53591. default: true
  53592. },
  53593. ]
  53594. ))
  53595. characterMakers.push(() => makeCharacter(
  53596. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53597. {
  53598. front: {
  53599. height: math.unit(6, "feet"),
  53600. name: "Front",
  53601. image: {
  53602. source: "./media/characters/nylla/front.svg",
  53603. extra: 1868/1699,
  53604. bottom: 97/1965
  53605. }
  53606. },
  53607. back: {
  53608. height: math.unit(6, "feet"),
  53609. name: "Back",
  53610. image: {
  53611. source: "./media/characters/nylla/back.svg",
  53612. extra: 1889/1712,
  53613. bottom: 93/1982
  53614. }
  53615. },
  53616. frontNsfw: {
  53617. height: math.unit(6, "feet"),
  53618. name: "Front (NSFW)",
  53619. image: {
  53620. source: "./media/characters/nylla/front-nsfw.svg",
  53621. extra: 1868/1699,
  53622. bottom: 97/1965
  53623. },
  53624. extraAttributes: {
  53625. "dickLength": {
  53626. name: "Dick Length",
  53627. power: 1,
  53628. type: "length",
  53629. base: math.unit(1.4, "feet")
  53630. },
  53631. "cumVolume": {
  53632. name: "Cum Volume",
  53633. power: 3,
  53634. type: "volume",
  53635. base: math.unit(100, "mL")
  53636. },
  53637. }
  53638. },
  53639. backNsfw: {
  53640. height: math.unit(6, "feet"),
  53641. name: "Back (NSFW)",
  53642. image: {
  53643. source: "./media/characters/nylla/back-nsfw.svg",
  53644. extra: 1889/1712,
  53645. bottom: 93/1982
  53646. }
  53647. },
  53648. maw: {
  53649. height: math.unit(2.10, "feet"),
  53650. name: "Maw",
  53651. image: {
  53652. source: "./media/characters/nylla/maw.svg"
  53653. }
  53654. },
  53655. paws: {
  53656. height: math.unit(2.06, "feet"),
  53657. name: "Paws",
  53658. image: {
  53659. source: "./media/characters/nylla/paws.svg"
  53660. }
  53661. },
  53662. muzzle: {
  53663. height: math.unit(0.61, "feet"),
  53664. name: "Muzzle",
  53665. image: {
  53666. source: "./media/characters/nylla/muzzle.svg"
  53667. }
  53668. },
  53669. sheath: {
  53670. height: math.unit(1.305, "feet"),
  53671. name: "Sheath",
  53672. image: {
  53673. source: "./media/characters/nylla/sheath.svg"
  53674. }
  53675. },
  53676. },
  53677. [
  53678. {
  53679. name: "Micro",
  53680. height: math.unit(7.5, "inches")
  53681. },
  53682. {
  53683. name: "Normal",
  53684. height: math.unit(7, "feet"),
  53685. default: true
  53686. },
  53687. {
  53688. name: "Macro",
  53689. height: math.unit(60, "feet")
  53690. },
  53691. {
  53692. name: "Mega",
  53693. height: math.unit(200, "feet")
  53694. },
  53695. ]
  53696. ))
  53697. characterMakers.push(() => makeCharacter(
  53698. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53699. {
  53700. front: {
  53701. height: math.unit(10, "feet"),
  53702. weight: math.unit(2300, "lb"),
  53703. name: "Front",
  53704. image: {
  53705. source: "./media/characters/hunt3r/front.svg",
  53706. extra: 1909/1742,
  53707. bottom: 46/1955
  53708. }
  53709. },
  53710. },
  53711. [
  53712. {
  53713. name: "Normal",
  53714. height: math.unit(10, "feet"),
  53715. default: true
  53716. },
  53717. ]
  53718. ))
  53719. characterMakers.push(() => makeCharacter(
  53720. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53721. {
  53722. dressed: {
  53723. height: math.unit(11, "feet"),
  53724. weight: math.unit(18500, "lb"),
  53725. preyCapacity: math.unit(9, "people"),
  53726. name: "Dressed",
  53727. image: {
  53728. source: "./media/characters/cylphis/dressed.svg",
  53729. extra: 1028/1003,
  53730. bottom: 75/1103
  53731. },
  53732. },
  53733. undressed: {
  53734. height: math.unit(11, "feet"),
  53735. weight: math.unit(18500, "lb"),
  53736. preyCapacity: math.unit(9, "people"),
  53737. name: "Undressed",
  53738. image: {
  53739. source: "./media/characters/cylphis/undressed.svg",
  53740. extra: 1028/1003,
  53741. bottom: 75/1103
  53742. }
  53743. },
  53744. full: {
  53745. height: math.unit(11, "feet"),
  53746. weight: math.unit(18500 + 150*9, "lb"),
  53747. preyCapacity: math.unit(9, "people"),
  53748. name: "Full",
  53749. image: {
  53750. source: "./media/characters/cylphis/full.svg",
  53751. extra: 1028/1003,
  53752. bottom: 75/1103
  53753. }
  53754. },
  53755. },
  53756. [
  53757. {
  53758. name: "Small",
  53759. height: math.unit(8, "feet")
  53760. },
  53761. {
  53762. name: "Normal",
  53763. height: math.unit(11, "feet"),
  53764. default: true
  53765. },
  53766. ]
  53767. ))
  53768. characterMakers.push(() => makeCharacter(
  53769. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53770. {
  53771. front: {
  53772. height: math.unit(2 + 7/12, "feet"),
  53773. name: "Front",
  53774. image: {
  53775. source: "./media/characters/orishan/front.svg",
  53776. extra: 1058/1023,
  53777. bottom: 23/1081
  53778. }
  53779. },
  53780. back: {
  53781. height: math.unit(2 + 7/12, "feet"),
  53782. name: "Back",
  53783. image: {
  53784. source: "./media/characters/orishan/back.svg",
  53785. extra: 1058/1023,
  53786. bottom: 23/1081
  53787. }
  53788. },
  53789. },
  53790. [
  53791. {
  53792. name: "Micro",
  53793. height: math.unit(2, "cm")
  53794. },
  53795. {
  53796. name: "Normal",
  53797. height: math.unit(2 + 7/12, "feet"),
  53798. default: true
  53799. },
  53800. ]
  53801. ))
  53802. characterMakers.push(() => makeCharacter(
  53803. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53804. {
  53805. front: {
  53806. height: math.unit(3, "meters"),
  53807. weight: math.unit(508, "kg"),
  53808. name: "Front",
  53809. image: {
  53810. source: "./media/characters/seranis/front.svg",
  53811. extra: 1478/1454,
  53812. bottom: 41/1519
  53813. }
  53814. },
  53815. },
  53816. [
  53817. {
  53818. name: "Normal",
  53819. height: math.unit(3, "meters"),
  53820. default: true
  53821. },
  53822. {
  53823. name: "Macro",
  53824. height: math.unit(108, "meters")
  53825. },
  53826. {
  53827. name: "Megamacro",
  53828. height: math.unit(1250, "meters")
  53829. },
  53830. ]
  53831. ))
  53832. characterMakers.push(() => makeCharacter(
  53833. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53834. {
  53835. undressed: {
  53836. height: math.unit(5 + 3/12, "feet"),
  53837. name: "Undressed",
  53838. image: {
  53839. source: "./media/characters/ankou/undressed.svg",
  53840. extra: 1301/1213,
  53841. bottom: 87/1388
  53842. }
  53843. },
  53844. dressed: {
  53845. height: math.unit(5 + 3/12, "feet"),
  53846. name: "Dressed",
  53847. image: {
  53848. source: "./media/characters/ankou/dressed.svg",
  53849. extra: 1301/1213,
  53850. bottom: 87/1388
  53851. }
  53852. },
  53853. head: {
  53854. height: math.unit(1.61, "feet"),
  53855. name: "Head",
  53856. image: {
  53857. source: "./media/characters/ankou/head.svg"
  53858. }
  53859. },
  53860. },
  53861. [
  53862. {
  53863. name: "Normal",
  53864. height: math.unit(5 + 3/12, "feet"),
  53865. default: true
  53866. },
  53867. ]
  53868. ))
  53869. characterMakers.push(() => makeCharacter(
  53870. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53871. {
  53872. side: {
  53873. height: math.unit(6 + 3/12, "feet"),
  53874. weight: math.unit(200, "kg"),
  53875. name: "Side",
  53876. image: {
  53877. source: "./media/characters/juniper-skunktaur/side.svg",
  53878. extra: 1574/1229,
  53879. bottom: 38/1612
  53880. }
  53881. },
  53882. front: {
  53883. height: math.unit(6 + 3/12, "feet"),
  53884. weight: math.unit(200, "kg"),
  53885. name: "Front",
  53886. image: {
  53887. source: "./media/characters/juniper-skunktaur/front.svg",
  53888. extra: 1337/1278,
  53889. bottom: 22/1359
  53890. }
  53891. },
  53892. back: {
  53893. height: math.unit(6 + 3/12, "feet"),
  53894. weight: math.unit(200, "kg"),
  53895. name: "Back",
  53896. image: {
  53897. source: "./media/characters/juniper-skunktaur/back.svg",
  53898. extra: 1618/1273,
  53899. bottom: 13/1631
  53900. }
  53901. },
  53902. top: {
  53903. height: math.unit(2.62, "feet"),
  53904. weight: math.unit(200, "kg"),
  53905. name: "Top",
  53906. image: {
  53907. source: "./media/characters/juniper-skunktaur/top.svg"
  53908. }
  53909. },
  53910. },
  53911. [
  53912. {
  53913. name: "Normal",
  53914. height: math.unit(6 + 3/12, "feet"),
  53915. default: true
  53916. },
  53917. ]
  53918. ))
  53919. characterMakers.push(() => makeCharacter(
  53920. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53921. {
  53922. front: {
  53923. height: math.unit(20.5, "feet"),
  53924. name: "Front",
  53925. image: {
  53926. source: "./media/characters/rei/front.svg",
  53927. extra: 1349/1195,
  53928. bottom: 31/1380
  53929. }
  53930. },
  53931. back: {
  53932. height: math.unit(20.5, "feet"),
  53933. name: "Back",
  53934. image: {
  53935. source: "./media/characters/rei/back.svg",
  53936. extra: 1358/1204,
  53937. bottom: 22/1380
  53938. }
  53939. },
  53940. pawsDigi: {
  53941. height: math.unit(3.45, "feet"),
  53942. name: "Paws (Digi)",
  53943. image: {
  53944. source: "./media/characters/rei/paws-digi.svg"
  53945. }
  53946. },
  53947. pawsPlanti: {
  53948. height: math.unit(3.45, "feet"),
  53949. name: "Paws (Planti)",
  53950. image: {
  53951. source: "./media/characters/rei/paws-planti.svg"
  53952. }
  53953. },
  53954. },
  53955. [
  53956. {
  53957. name: "Normal",
  53958. height: math.unit(20.5, "feet"),
  53959. default: true
  53960. },
  53961. ]
  53962. ))
  53963. characterMakers.push(() => makeCharacter(
  53964. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53965. {
  53966. front: {
  53967. height: math.unit(5 + 11/12, "feet"),
  53968. name: "Front",
  53969. image: {
  53970. source: "./media/characters/carina/front.svg",
  53971. extra: 1720/1449,
  53972. bottom: 14/1734
  53973. }
  53974. },
  53975. back: {
  53976. height: math.unit(5 + 11/12, "feet"),
  53977. name: "Back",
  53978. image: {
  53979. source: "./media/characters/carina/back.svg",
  53980. extra: 1493/1445,
  53981. bottom: 17/1510
  53982. }
  53983. },
  53984. paw: {
  53985. height: math.unit(0.92, "feet"),
  53986. name: "Paw",
  53987. image: {
  53988. source: "./media/characters/carina/paw.svg"
  53989. }
  53990. },
  53991. },
  53992. [
  53993. {
  53994. name: "Normal",
  53995. height: math.unit(5 + 11/12, "feet"),
  53996. default: true
  53997. },
  53998. ]
  53999. ))
  54000. characterMakers.push(() => makeCharacter(
  54001. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  54002. {
  54003. normal_front: {
  54004. height: math.unit(4.88, "meters"),
  54005. name: "Front",
  54006. image: {
  54007. source: "./media/characters/maya/normal-front.svg",
  54008. extra: 1222/1145,
  54009. bottom: 57/1279
  54010. },
  54011. form: "normal",
  54012. default: true
  54013. },
  54014. monstrous_front: {
  54015. height: math.unit(10, "meters"),
  54016. name: "Front",
  54017. image: {
  54018. source: "./media/characters/maya/monstrous-front.svg",
  54019. extra: 1523/1109,
  54020. bottom: 113/1636
  54021. },
  54022. form: "monstrous",
  54023. extraAttributes: {
  54024. "swallowSize": {
  54025. name: "Tailmaw Bite Size",
  54026. power: 3,
  54027. type: "volume",
  54028. base: math.unit(43000, "liters")
  54029. },
  54030. }
  54031. },
  54032. taur_front: {
  54033. height: math.unit(10, "meters"),
  54034. name: "Front",
  54035. image: {
  54036. source: "./media/characters/maya/taur-front.svg",
  54037. extra: 743/506,
  54038. bottom: 101/844
  54039. },
  54040. form: "taur",
  54041. },
  54042. },
  54043. [
  54044. {
  54045. name: "Normal",
  54046. height: math.unit(4.88, "meters"),
  54047. default: true,
  54048. form: "normal"
  54049. },
  54050. {
  54051. name: "Macro",
  54052. height: math.unit(38.1, "meters"),
  54053. form: "normal"
  54054. },
  54055. {
  54056. name: "Macro+",
  54057. height: math.unit(152.4, "meters"),
  54058. form: "normal"
  54059. },
  54060. {
  54061. name: "Macro++",
  54062. height: math.unit(16.09, "km"),
  54063. form: "normal"
  54064. },
  54065. {
  54066. name: "Mega-macro",
  54067. height: math.unit(700, "megameters"),
  54068. form: "normal"
  54069. },
  54070. {
  54071. name: "Satiated",
  54072. height: math.unit(10, "meters"),
  54073. default: true,
  54074. form: "monstrous"
  54075. },
  54076. {
  54077. name: "Hungry",
  54078. height: math.unit(75, "meters"),
  54079. form: "monstrous"
  54080. },
  54081. {
  54082. name: "Ravenous",
  54083. height: math.unit(500, "meters"),
  54084. form: "monstrous"
  54085. },
  54086. {
  54087. name: "\"Normal\"",
  54088. height: math.unit(10, "meters"),
  54089. form: "taur"
  54090. },
  54091. {
  54092. name: "Macro",
  54093. height: math.unit(50, "meters"),
  54094. form: "taur"
  54095. },
  54096. ],
  54097. {
  54098. "normal": {
  54099. name: "Normal",
  54100. default: true
  54101. },
  54102. "monstrous": {
  54103. name: "Monstrous",
  54104. },
  54105. "taur": {
  54106. name: "Taur",
  54107. },
  54108. }
  54109. ))
  54110. characterMakers.push(() => makeCharacter(
  54111. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54112. {
  54113. front: {
  54114. height: math.unit(6 + 2/12, "feet"),
  54115. weight: math.unit(500, "lb"),
  54116. preyCapacity: math.unit(4, "people"),
  54117. name: "Front",
  54118. image: {
  54119. source: "./media/characters/yepir/front.svg"
  54120. }
  54121. },
  54122. side: {
  54123. height: math.unit(6 + 2/12, "feet"),
  54124. weight: math.unit(500, "lb"),
  54125. preyCapacity: math.unit(4, "people"),
  54126. name: "Side",
  54127. image: {
  54128. source: "./media/characters/yepir/side.svg"
  54129. }
  54130. },
  54131. paw: {
  54132. height: math.unit(1.05, "feet"),
  54133. name: "Paw",
  54134. image: {
  54135. source: "./media/characters/yepir/paw.svg"
  54136. }
  54137. },
  54138. },
  54139. [
  54140. {
  54141. name: "Normal",
  54142. height: math.unit(6 + 2/12, "feet"),
  54143. default: true
  54144. },
  54145. ]
  54146. ))
  54147. characterMakers.push(() => makeCharacter(
  54148. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54149. {
  54150. front: {
  54151. height: math.unit(5 + 4/12, "feet"),
  54152. name: "Front",
  54153. image: {
  54154. source: "./media/characters/russec/front.svg",
  54155. extra: 1926/1626,
  54156. bottom: 72/1998
  54157. }
  54158. },
  54159. back: {
  54160. height: math.unit(5 + 4/12, "feet"),
  54161. name: "Back",
  54162. image: {
  54163. source: "./media/characters/russec/back.svg",
  54164. extra: 1910/1591,
  54165. bottom: 48/1958
  54166. }
  54167. },
  54168. },
  54169. [
  54170. {
  54171. name: "Small",
  54172. height: math.unit(5 + 4/12, "feet")
  54173. },
  54174. {
  54175. name: "Normal",
  54176. height: math.unit(72, "feet"),
  54177. default: true
  54178. },
  54179. ]
  54180. ))
  54181. characterMakers.push(() => makeCharacter(
  54182. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54183. {
  54184. side: {
  54185. height: math.unit(12, "feet"),
  54186. name: "Side",
  54187. image: {
  54188. source: "./media/characters/cianus/side.svg",
  54189. extra: 808/526,
  54190. bottom: 61/869
  54191. }
  54192. },
  54193. },
  54194. [
  54195. {
  54196. name: "Normal",
  54197. height: math.unit(12, "feet"),
  54198. default: true
  54199. },
  54200. ]
  54201. ))
  54202. characterMakers.push(() => makeCharacter(
  54203. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54204. {
  54205. front: {
  54206. height: math.unit(9 + 6/12, "feet"),
  54207. weight: math.unit(300, "lb"),
  54208. name: "Front",
  54209. image: {
  54210. source: "./media/characters/ahab/front.svg",
  54211. extra: 1897/1868,
  54212. bottom: 121/2018
  54213. }
  54214. },
  54215. frontNsfw: {
  54216. height: math.unit(9 + 6/12, "feet"),
  54217. weight: math.unit(300, "lb"),
  54218. name: "Front (NSFW)",
  54219. image: {
  54220. source: "./media/characters/ahab/front-nsfw.svg",
  54221. extra: 1897/1868,
  54222. bottom: 121/2018
  54223. }
  54224. },
  54225. },
  54226. [
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(9 + 6/12, "feet")
  54230. },
  54231. {
  54232. name: "Macro",
  54233. height: math.unit(657, "feet"),
  54234. default: true
  54235. },
  54236. ]
  54237. ))
  54238. characterMakers.push(() => makeCharacter(
  54239. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54240. {
  54241. front: {
  54242. height: math.unit(2.69, "meters"),
  54243. weight: math.unit(132, "kg"),
  54244. name: "Front",
  54245. image: {
  54246. source: "./media/characters/aarkus/front.svg",
  54247. extra: 1400/1231,
  54248. bottom: 34/1434
  54249. }
  54250. },
  54251. back: {
  54252. height: math.unit(2.69, "meters"),
  54253. weight: math.unit(132, "kg"),
  54254. name: "Back",
  54255. image: {
  54256. source: "./media/characters/aarkus/back.svg",
  54257. extra: 1381/1218,
  54258. bottom: 30/1411
  54259. }
  54260. },
  54261. frontNsfw: {
  54262. height: math.unit(2.69, "meters"),
  54263. weight: math.unit(132, "kg"),
  54264. name: "Front (NSFW)",
  54265. image: {
  54266. source: "./media/characters/aarkus/front-nsfw.svg",
  54267. extra: 1400/1231,
  54268. bottom: 34/1434
  54269. }
  54270. },
  54271. foot: {
  54272. height: math.unit(1.45, "feet"),
  54273. name: "Foot",
  54274. image: {
  54275. source: "./media/characters/aarkus/foot.svg"
  54276. }
  54277. },
  54278. head: {
  54279. height: math.unit(2.85, "feet"),
  54280. name: "Head",
  54281. image: {
  54282. source: "./media/characters/aarkus/head.svg"
  54283. }
  54284. },
  54285. headAlt: {
  54286. height: math.unit(3.07, "feet"),
  54287. name: "Head (Alt)",
  54288. image: {
  54289. source: "./media/characters/aarkus/head-alt.svg"
  54290. }
  54291. },
  54292. mouth: {
  54293. height: math.unit(1.25, "feet"),
  54294. name: "Mouth",
  54295. image: {
  54296. source: "./media/characters/aarkus/mouth.svg"
  54297. }
  54298. },
  54299. dick: {
  54300. height: math.unit(1.77, "feet"),
  54301. name: "Dick",
  54302. image: {
  54303. source: "./media/characters/aarkus/dick.svg"
  54304. }
  54305. },
  54306. },
  54307. [
  54308. {
  54309. name: "Normal",
  54310. height: math.unit(2.69, "meters"),
  54311. default: true
  54312. },
  54313. {
  54314. name: "Macro",
  54315. height: math.unit(269, "meters")
  54316. },
  54317. {
  54318. name: "Macro+",
  54319. height: math.unit(672.5, "meters")
  54320. },
  54321. {
  54322. name: "Megamacro",
  54323. height: math.unit(2.017, "km")
  54324. },
  54325. ]
  54326. ))
  54327. characterMakers.push(() => makeCharacter(
  54328. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54329. {
  54330. front: {
  54331. height: math.unit(23.47, "cm"),
  54332. weight: math.unit(600, "grams"),
  54333. name: "Front",
  54334. image: {
  54335. source: "./media/characters/diode/front.svg",
  54336. extra: 1778/1396,
  54337. bottom: 95/1873
  54338. }
  54339. },
  54340. side: {
  54341. height: math.unit(23.47, "cm"),
  54342. weight: math.unit(600, "grams"),
  54343. name: "Side",
  54344. image: {
  54345. source: "./media/characters/diode/side.svg",
  54346. extra: 1831/1404,
  54347. bottom: 86/1917
  54348. }
  54349. },
  54350. wings: {
  54351. height: math.unit(0.683, "feet"),
  54352. name: "Wings",
  54353. image: {
  54354. source: "./media/characters/diode/wings.svg"
  54355. }
  54356. },
  54357. },
  54358. [
  54359. {
  54360. name: "Normal",
  54361. height: math.unit(23.47, "cm"),
  54362. default: true
  54363. },
  54364. ]
  54365. ))
  54366. characterMakers.push(() => makeCharacter(
  54367. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54368. {
  54369. front: {
  54370. height: math.unit(6 + 3/12, "feet"),
  54371. weight: math.unit(250, "lb"),
  54372. name: "Front",
  54373. image: {
  54374. source: "./media/characters/reika/front.svg",
  54375. extra: 1120/1078,
  54376. bottom: 86/1206
  54377. }
  54378. },
  54379. },
  54380. [
  54381. {
  54382. name: "Normal",
  54383. height: math.unit(6 + 3/12, "feet"),
  54384. default: true
  54385. },
  54386. ]
  54387. ))
  54388. characterMakers.push(() => makeCharacter(
  54389. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54390. {
  54391. front: {
  54392. height: math.unit(16 + 8/12, "feet"),
  54393. weight: math.unit(9000, "lb"),
  54394. name: "Front",
  54395. image: {
  54396. source: "./media/characters/lokuto-takama/front.svg",
  54397. extra: 1774/1632,
  54398. bottom: 147/1921
  54399. },
  54400. extraAttributes: {
  54401. "bustWidth": {
  54402. name: "Bust Width",
  54403. power: 1,
  54404. type: "length",
  54405. base: math.unit(2.4, "meters")
  54406. },
  54407. "breastWeight": {
  54408. name: "Breast Weight",
  54409. power: 3,
  54410. type: "mass",
  54411. base: math.unit(1000, "kg")
  54412. },
  54413. }
  54414. },
  54415. },
  54416. [
  54417. {
  54418. name: "Normal",
  54419. height: math.unit(16 + 8/12, "feet"),
  54420. default: true
  54421. },
  54422. ]
  54423. ))
  54424. characterMakers.push(() => makeCharacter(
  54425. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54426. {
  54427. front: {
  54428. height: math.unit(10, "cm"),
  54429. weight: math.unit(850, "grams"),
  54430. name: "Front",
  54431. image: {
  54432. source: "./media/characters/owak-bone/front.svg",
  54433. extra: 1965/1801,
  54434. bottom: 31/1996
  54435. }
  54436. },
  54437. },
  54438. [
  54439. {
  54440. name: "Normal",
  54441. height: math.unit(10, "cm"),
  54442. default: true
  54443. },
  54444. ]
  54445. ))
  54446. characterMakers.push(() => makeCharacter(
  54447. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54448. {
  54449. front: {
  54450. height: math.unit(2 + 6/12, "feet"),
  54451. weight: math.unit(9, "lb"),
  54452. name: "Front",
  54453. image: {
  54454. source: "./media/characters/muffin/front.svg",
  54455. extra: 1220/1195,
  54456. bottom: 84/1304
  54457. }
  54458. },
  54459. },
  54460. [
  54461. {
  54462. name: "Normal",
  54463. height: math.unit(2 + 6/12, "feet"),
  54464. default: true
  54465. },
  54466. ]
  54467. ))
  54468. characterMakers.push(() => makeCharacter(
  54469. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54470. {
  54471. front: {
  54472. height: math.unit(7, "feet"),
  54473. name: "Front",
  54474. image: {
  54475. source: "./media/characters/chimera/front.svg",
  54476. extra: 1752/1614,
  54477. bottom: 68/1820
  54478. }
  54479. },
  54480. },
  54481. [
  54482. {
  54483. name: "Normal",
  54484. height: math.unit(7, "feet")
  54485. },
  54486. {
  54487. name: "Gigamacro",
  54488. height: math.unit(2.9, "gigameters"),
  54489. default: true
  54490. },
  54491. {
  54492. name: "Universal",
  54493. height: math.unit(1.56e26, "yottameters")
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(3, "feet"),
  54502. weight: math.unit(20, "lb"),
  54503. name: "Front",
  54504. image: {
  54505. source: "./media/characters/kit-fennec-fox/front.svg",
  54506. extra: 1027/932,
  54507. bottom: 16/1043
  54508. }
  54509. },
  54510. back: {
  54511. height: math.unit(3, "feet"),
  54512. weight: math.unit(20, "lb"),
  54513. name: "Back",
  54514. image: {
  54515. source: "./media/characters/kit-fennec-fox/back.svg",
  54516. extra: 1027/932,
  54517. bottom: 16/1043
  54518. }
  54519. },
  54520. },
  54521. [
  54522. {
  54523. name: "Normal",
  54524. height: math.unit(3, "feet"),
  54525. default: true
  54526. },
  54527. ]
  54528. ))
  54529. characterMakers.push(() => makeCharacter(
  54530. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54531. {
  54532. front: {
  54533. height: math.unit(167, "cm"),
  54534. name: "Front",
  54535. image: {
  54536. source: "./media/characters/blue-otter/front.svg",
  54537. extra: 1951/1920,
  54538. bottom: 31/1982
  54539. }
  54540. },
  54541. },
  54542. [
  54543. {
  54544. name: "Otter-Sized",
  54545. height: math.unit(100, "cm")
  54546. },
  54547. {
  54548. name: "Normal",
  54549. height: math.unit(167, "cm"),
  54550. default: true
  54551. },
  54552. ]
  54553. ))
  54554. characterMakers.push(() => makeCharacter(
  54555. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54556. {
  54557. front: {
  54558. height: math.unit(4 + 4/12, "feet"),
  54559. name: "Front",
  54560. image: {
  54561. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54562. extra: 1072/1067,
  54563. bottom: 117/1189
  54564. }
  54565. },
  54566. back: {
  54567. height: math.unit(4 + 4/12, "feet"),
  54568. name: "Back",
  54569. image: {
  54570. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54571. extra: 1135/1129,
  54572. bottom: 57/1192
  54573. }
  54574. },
  54575. head: {
  54576. height: math.unit(1.77, "feet"),
  54577. name: "Head",
  54578. image: {
  54579. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54580. }
  54581. },
  54582. },
  54583. [
  54584. {
  54585. name: "Normal",
  54586. height: math.unit(4 + 4/12, "feet"),
  54587. default: true
  54588. },
  54589. ]
  54590. ))
  54591. characterMakers.push(() => makeCharacter(
  54592. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54593. {
  54594. front: {
  54595. height: math.unit(2, "inches"),
  54596. name: "Front",
  54597. image: {
  54598. source: "./media/characters/carley-hartford/front.svg",
  54599. extra: 1035/988,
  54600. bottom: 23/1058
  54601. }
  54602. },
  54603. back: {
  54604. height: math.unit(2, "inches"),
  54605. name: "Back",
  54606. image: {
  54607. source: "./media/characters/carley-hartford/back.svg",
  54608. extra: 1035/988,
  54609. bottom: 23/1058
  54610. }
  54611. },
  54612. dressed: {
  54613. height: math.unit(2, "inches"),
  54614. name: "Dressed",
  54615. image: {
  54616. source: "./media/characters/carley-hartford/dressed.svg",
  54617. extra: 651/620,
  54618. bottom: 0/651
  54619. }
  54620. },
  54621. },
  54622. [
  54623. {
  54624. name: "Micro",
  54625. height: math.unit(2, "inches"),
  54626. default: true
  54627. },
  54628. {
  54629. name: "Macro",
  54630. height: math.unit(6 + 3/12, "feet")
  54631. },
  54632. ]
  54633. ))
  54634. characterMakers.push(() => makeCharacter(
  54635. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54636. {
  54637. front: {
  54638. height: math.unit(2 + 3/12, "feet"),
  54639. weight: math.unit(15 + 7/16, "lb"),
  54640. name: "Front",
  54641. image: {
  54642. source: "./media/characters/duke/front.svg",
  54643. extra: 910/815,
  54644. bottom: 30/940
  54645. }
  54646. },
  54647. },
  54648. [
  54649. {
  54650. name: "Normal",
  54651. height: math.unit(2 + 3/12, "feet"),
  54652. default: true
  54653. },
  54654. ]
  54655. ))
  54656. characterMakers.push(() => makeCharacter(
  54657. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54658. {
  54659. front: {
  54660. height: math.unit(5 + 4/12, "feet"),
  54661. weight: math.unit(156, "lb"),
  54662. name: "Front",
  54663. image: {
  54664. source: "./media/characters/dein/front.svg",
  54665. extra: 855/815,
  54666. bottom: 48/903
  54667. }
  54668. },
  54669. side: {
  54670. height: math.unit(5 + 4/12, "feet"),
  54671. weight: math.unit(156, "lb"),
  54672. name: "side",
  54673. image: {
  54674. source: "./media/characters/dein/side.svg",
  54675. extra: 846/803,
  54676. bottom: 25/871
  54677. }
  54678. },
  54679. maw: {
  54680. height: math.unit(1.45, "feet"),
  54681. name: "Maw",
  54682. image: {
  54683. source: "./media/characters/dein/maw.svg"
  54684. }
  54685. },
  54686. },
  54687. [
  54688. {
  54689. name: "Ferret Sized",
  54690. height: math.unit(2 + 5/12, "feet")
  54691. },
  54692. {
  54693. name: "Normal",
  54694. height: math.unit(5 + 4/12, "feet"),
  54695. default: true
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54701. {
  54702. front: {
  54703. height: math.unit(84 + 8/12, "feet"),
  54704. weight: math.unit(942180, "lb"),
  54705. name: "Front",
  54706. image: {
  54707. source: "./media/characters/daurine-arima/front.svg",
  54708. extra: 1989/1782,
  54709. bottom: 37/2026
  54710. }
  54711. },
  54712. side: {
  54713. height: math.unit(84 + 8/12, "feet"),
  54714. weight: math.unit(942180, "lb"),
  54715. name: "Side",
  54716. image: {
  54717. source: "./media/characters/daurine-arima/side.svg",
  54718. extra: 1997/1790,
  54719. bottom: 21/2018
  54720. }
  54721. },
  54722. back: {
  54723. height: math.unit(84 + 8/12, "feet"),
  54724. weight: math.unit(942180, "lb"),
  54725. name: "Back",
  54726. image: {
  54727. source: "./media/characters/daurine-arima/back.svg",
  54728. extra: 1992/1800,
  54729. bottom: 12/2004
  54730. }
  54731. },
  54732. head: {
  54733. height: math.unit(15.5, "feet"),
  54734. name: "Head",
  54735. image: {
  54736. source: "./media/characters/daurine-arima/head.svg"
  54737. }
  54738. },
  54739. headAlt: {
  54740. height: math.unit(19.19, "feet"),
  54741. name: "Head (Alt)",
  54742. image: {
  54743. source: "./media/characters/daurine-arima/head-alt.svg"
  54744. }
  54745. },
  54746. },
  54747. [
  54748. {
  54749. name: "Minimum height",
  54750. height: math.unit(8 + 10/12, "feet")
  54751. },
  54752. {
  54753. name: "Comfort height",
  54754. height: math.unit(19 + 6 /12, "feet")
  54755. },
  54756. {
  54757. name: "\"Normal\" height",
  54758. height: math.unit(28 + 10/12, "feet")
  54759. },
  54760. {
  54761. name: "Base height",
  54762. height: math.unit(84 + 8/12, "feet"),
  54763. default: true
  54764. },
  54765. {
  54766. name: "Mini-macro",
  54767. height: math.unit(2360, "feet")
  54768. },
  54769. {
  54770. name: "Macro",
  54771. height: math.unit(10, "miles")
  54772. },
  54773. {
  54774. name: "Goddess",
  54775. height: math.unit(9.99e40, "yottameters")
  54776. },
  54777. ]
  54778. ))
  54779. characterMakers.push(() => makeCharacter(
  54780. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54781. {
  54782. front: {
  54783. height: math.unit(2.3, "meters"),
  54784. name: "Front",
  54785. image: {
  54786. source: "./media/characters/cilenomon/front.svg",
  54787. extra: 1963/1778,
  54788. bottom: 54/2017
  54789. }
  54790. },
  54791. },
  54792. [
  54793. {
  54794. name: "Normal",
  54795. height: math.unit(2.3, "meters"),
  54796. default: true
  54797. },
  54798. {
  54799. name: "Big",
  54800. height: math.unit(5, "meters")
  54801. },
  54802. {
  54803. name: "Macro",
  54804. height: math.unit(30, "meters")
  54805. },
  54806. {
  54807. name: "True",
  54808. height: math.unit(1, "universe")
  54809. },
  54810. ]
  54811. ))
  54812. characterMakers.push(() => makeCharacter(
  54813. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54814. {
  54815. front: {
  54816. height: math.unit(5, "feet"),
  54817. name: "Front",
  54818. image: {
  54819. source: "./media/characters/sen-mink/front.svg",
  54820. extra: 1727/1675,
  54821. bottom: 35/1762
  54822. }
  54823. },
  54824. },
  54825. [
  54826. {
  54827. name: "Normal",
  54828. height: math.unit(5, "feet"),
  54829. default: true
  54830. },
  54831. ]
  54832. ))
  54833. characterMakers.push(() => makeCharacter(
  54834. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54835. {
  54836. front: {
  54837. height: math.unit(5.42999, "feet"),
  54838. weight: math.unit(100, "lb"),
  54839. name: "Front",
  54840. image: {
  54841. source: "./media/characters/ophois/front.svg",
  54842. extra: 1429/1286,
  54843. bottom: 60/1489
  54844. }
  54845. },
  54846. },
  54847. [
  54848. {
  54849. name: "Normal",
  54850. height: math.unit(5.42999, "feet"),
  54851. default: true
  54852. },
  54853. ]
  54854. ))
  54855. characterMakers.push(() => makeCharacter(
  54856. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54857. {
  54858. front: {
  54859. height: math.unit(2, "meters"),
  54860. name: "Front",
  54861. image: {
  54862. source: "./media/characters/riley/front.svg",
  54863. extra: 1779/1754,
  54864. bottom: 139/1918
  54865. }
  54866. },
  54867. },
  54868. [
  54869. {
  54870. name: "Normal",
  54871. height: math.unit(2, "meters"),
  54872. default: true
  54873. },
  54874. ]
  54875. ))
  54876. characterMakers.push(() => makeCharacter(
  54877. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54878. {
  54879. front: {
  54880. height: math.unit(6 + 2/12, "feet"),
  54881. weight: math.unit(195, "lb"),
  54882. preyCapacity: math.unit(6, "people"),
  54883. name: "Front",
  54884. image: {
  54885. source: "./media/characters/shuken-flash/front.svg",
  54886. extra: 1905/1739,
  54887. bottom: 65/1970
  54888. }
  54889. },
  54890. back: {
  54891. height: math.unit(6 + 2/12, "feet"),
  54892. weight: math.unit(195, "lb"),
  54893. preyCapacity: math.unit(6, "people"),
  54894. name: "Back",
  54895. image: {
  54896. source: "./media/characters/shuken-flash/back.svg",
  54897. extra: 1912/1751,
  54898. bottom: 13/1925
  54899. }
  54900. },
  54901. },
  54902. [
  54903. {
  54904. name: "Normal",
  54905. height: math.unit(6 + 2/12, "feet"),
  54906. default: true
  54907. },
  54908. ]
  54909. ))
  54910. characterMakers.push(() => makeCharacter(
  54911. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54912. {
  54913. front: {
  54914. height: math.unit(5 + 9/12, "feet"),
  54915. weight: math.unit(150, "lb"),
  54916. name: "Front",
  54917. image: {
  54918. source: "./media/characters/plat/front.svg",
  54919. extra: 1816/1703,
  54920. bottom: 43/1859
  54921. }
  54922. },
  54923. side: {
  54924. height: math.unit(5 + 9/12, "feet"),
  54925. weight: math.unit(300, "lb"),
  54926. name: "Side",
  54927. image: {
  54928. source: "./media/characters/plat/side.svg",
  54929. extra: 1824/1699,
  54930. bottom: 18/1842
  54931. }
  54932. },
  54933. },
  54934. [
  54935. {
  54936. name: "Normal",
  54937. height: math.unit(5 + 9/12, "feet"),
  54938. default: true
  54939. },
  54940. ]
  54941. ))
  54942. characterMakers.push(() => makeCharacter(
  54943. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54944. {
  54945. front: {
  54946. height: math.unit(9, "feet"),
  54947. weight: math.unit(1800, "lb"),
  54948. name: "Front",
  54949. image: {
  54950. source: "./media/characters/elaine/front.svg",
  54951. extra: 1833/1354,
  54952. bottom: 25/1858
  54953. }
  54954. },
  54955. back: {
  54956. height: math.unit(8.8, "feet"),
  54957. weight: math.unit(1800, "lb"),
  54958. name: "Back",
  54959. image: {
  54960. source: "./media/characters/elaine/back.svg",
  54961. extra: 1641/1233,
  54962. bottom: 53/1694
  54963. }
  54964. },
  54965. },
  54966. [
  54967. {
  54968. name: "Normal",
  54969. height: math.unit(9, "feet"),
  54970. default: true
  54971. },
  54972. ]
  54973. ))
  54974. characterMakers.push(() => makeCharacter(
  54975. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54976. {
  54977. front: {
  54978. height: math.unit(17 + 9/12, "feet"),
  54979. weight: math.unit(8000, "lb"),
  54980. name: "Front",
  54981. image: {
  54982. source: "./media/characters/vera-raven/front.svg",
  54983. extra: 1457/1412,
  54984. bottom: 121/1578
  54985. }
  54986. },
  54987. side: {
  54988. height: math.unit(17 + 9/12, "feet"),
  54989. weight: math.unit(8000, "lb"),
  54990. name: "Side",
  54991. image: {
  54992. source: "./media/characters/vera-raven/side.svg",
  54993. extra: 1510/1464,
  54994. bottom: 54/1564
  54995. }
  54996. },
  54997. },
  54998. [
  54999. {
  55000. name: "Normal",
  55001. height: math.unit(17 + 9/12, "feet"),
  55002. default: true
  55003. },
  55004. ]
  55005. ))
  55006. characterMakers.push(() => makeCharacter(
  55007. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  55008. {
  55009. dressed: {
  55010. height: math.unit(6 + 9/12, "feet"),
  55011. name: "Dressed",
  55012. image: {
  55013. source: "./media/characters/nakisha/dressed.svg",
  55014. extra: 1909/1757,
  55015. bottom: 48/1957
  55016. }
  55017. },
  55018. nude: {
  55019. height: math.unit(6 + 9/12, "feet"),
  55020. name: "Nude",
  55021. image: {
  55022. source: "./media/characters/nakisha/nude.svg",
  55023. extra: 1917/1765,
  55024. bottom: 34/1951
  55025. }
  55026. },
  55027. },
  55028. [
  55029. {
  55030. name: "Normal",
  55031. height: math.unit(6 + 9/12, "feet"),
  55032. default: true
  55033. },
  55034. ]
  55035. ))
  55036. characterMakers.push(() => makeCharacter(
  55037. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  55038. {
  55039. front: {
  55040. height: math.unit(87, "meters"),
  55041. name: "Front",
  55042. image: {
  55043. source: "./media/characters/serafin/front.svg",
  55044. extra: 1919/1776,
  55045. bottom: 65/1984
  55046. }
  55047. },
  55048. },
  55049. [
  55050. {
  55051. name: "Normal",
  55052. height: math.unit(87, "meters"),
  55053. default: true
  55054. },
  55055. ]
  55056. ))
  55057. characterMakers.push(() => makeCharacter(
  55058. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  55059. {
  55060. front: {
  55061. height: math.unit(6, "feet"),
  55062. weight: math.unit(200, "lb"),
  55063. name: "Front",
  55064. image: {
  55065. source: "./media/characters/poptart/front.svg",
  55066. extra: 615/583,
  55067. bottom: 23/638
  55068. }
  55069. },
  55070. back: {
  55071. height: math.unit(6, "feet"),
  55072. weight: math.unit(200, "lb"),
  55073. name: "Back",
  55074. image: {
  55075. source: "./media/characters/poptart/back.svg",
  55076. extra: 617/584,
  55077. bottom: 22/639
  55078. }
  55079. },
  55080. frontNsfw: {
  55081. height: math.unit(6, "feet"),
  55082. weight: math.unit(200, "lb"),
  55083. name: "Front (NSFW)",
  55084. image: {
  55085. source: "./media/characters/poptart/front-nsfw.svg",
  55086. extra: 615/583,
  55087. bottom: 23/638
  55088. }
  55089. },
  55090. backNsfw: {
  55091. height: math.unit(6, "feet"),
  55092. weight: math.unit(200, "lb"),
  55093. name: "Back (NSFW)",
  55094. image: {
  55095. source: "./media/characters/poptart/back-nsfw.svg",
  55096. extra: 617/584,
  55097. bottom: 22/639
  55098. }
  55099. },
  55100. hand: {
  55101. height: math.unit(1.14, "feet"),
  55102. name: "Hand",
  55103. image: {
  55104. source: "./media/characters/poptart/hand.svg"
  55105. }
  55106. },
  55107. foot: {
  55108. height: math.unit(1.5, "feet"),
  55109. name: "Foot",
  55110. image: {
  55111. source: "./media/characters/poptart/foot.svg"
  55112. }
  55113. },
  55114. },
  55115. [
  55116. {
  55117. name: "Normal",
  55118. height: math.unit(6, "feet"),
  55119. default: true
  55120. },
  55121. {
  55122. name: "Grande",
  55123. height: math.unit(350, "feet")
  55124. },
  55125. {
  55126. name: "Massif",
  55127. height: math.unit(967, "feet")
  55128. },
  55129. ]
  55130. ))
  55131. characterMakers.push(() => makeCharacter(
  55132. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55133. {
  55134. hyenaSide: {
  55135. height: math.unit(120, "cm"),
  55136. weight: math.unit(120, "lb"),
  55137. name: "Side",
  55138. image: {
  55139. source: "./media/characters/trance/hyena-side.svg",
  55140. extra: 998/904,
  55141. bottom: 76/1074
  55142. }
  55143. },
  55144. },
  55145. [
  55146. {
  55147. name: "Normal",
  55148. height: math.unit(120, "cm"),
  55149. default: true
  55150. },
  55151. {
  55152. name: "Dire",
  55153. height: math.unit(230, "cm")
  55154. },
  55155. {
  55156. name: "Macro",
  55157. height: math.unit(37, "feet")
  55158. },
  55159. ]
  55160. ))
  55161. characterMakers.push(() => makeCharacter(
  55162. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55163. {
  55164. front: {
  55165. height: math.unit(6 + 3/12, "feet"),
  55166. name: "Front",
  55167. image: {
  55168. source: "./media/characters/michael-berretta/front.svg",
  55169. extra: 515/494,
  55170. bottom: 20/535
  55171. }
  55172. },
  55173. back: {
  55174. height: math.unit(6 + 3/12, "feet"),
  55175. name: "Back",
  55176. image: {
  55177. source: "./media/characters/michael-berretta/back.svg",
  55178. extra: 520/497,
  55179. bottom: 21/541
  55180. }
  55181. },
  55182. frontNsfw: {
  55183. height: math.unit(6 + 3/12, "feet"),
  55184. name: "Front (NSFW)",
  55185. image: {
  55186. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55187. extra: 515/494,
  55188. bottom: 20/535
  55189. }
  55190. },
  55191. dick: {
  55192. height: math.unit(1, "feet"),
  55193. name: "Dick",
  55194. image: {
  55195. source: "./media/characters/michael-berretta/dick.svg"
  55196. }
  55197. },
  55198. },
  55199. [
  55200. {
  55201. name: "Normal",
  55202. height: math.unit(6 + 3/12, "feet"),
  55203. default: true
  55204. },
  55205. {
  55206. name: "Big",
  55207. height: math.unit(12, "feet")
  55208. },
  55209. {
  55210. name: "Macro",
  55211. height: math.unit(187.5, "feet")
  55212. },
  55213. ]
  55214. ))
  55215. characterMakers.push(() => makeCharacter(
  55216. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55217. {
  55218. front: {
  55219. height: math.unit(9 + 9/12, "feet"),
  55220. weight: math.unit(1244, "lb"),
  55221. name: "Front",
  55222. image: {
  55223. source: "./media/characters/stella-edgecomb/front.svg",
  55224. extra: 1835/1706,
  55225. bottom: 49/1884
  55226. }
  55227. },
  55228. pen: {
  55229. height: math.unit(0.95, "feet"),
  55230. name: "Pen",
  55231. image: {
  55232. source: "./media/characters/stella-edgecomb/pen.svg"
  55233. }
  55234. },
  55235. },
  55236. [
  55237. {
  55238. name: "Cozy Bear",
  55239. height: math.unit(0.5, "inches")
  55240. },
  55241. {
  55242. name: "Normal",
  55243. height: math.unit(9 + 9/12, "feet"),
  55244. default: true
  55245. },
  55246. {
  55247. name: "Giga Bear",
  55248. height: math.unit(1, "mile")
  55249. },
  55250. {
  55251. name: "Great Bear",
  55252. height: math.unit(53, "miles")
  55253. },
  55254. {
  55255. name: "Goddess Bear",
  55256. height: math.unit(40000, "miles")
  55257. },
  55258. {
  55259. name: "Sun Bear",
  55260. height: math.unit(900000, "miles")
  55261. },
  55262. ]
  55263. ))
  55264. characterMakers.push(() => makeCharacter(
  55265. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55266. {
  55267. anthroFront: {
  55268. height: math.unit(556, "cm"),
  55269. weight: math.unit(2650, "kg"),
  55270. preyCapacity: math.unit(3, "people"),
  55271. name: "Front",
  55272. image: {
  55273. source: "./media/characters/ash´iika/front.svg",
  55274. extra: 710/673,
  55275. bottom: 15/725
  55276. },
  55277. form: "anthro",
  55278. default: true
  55279. },
  55280. anthroSide: {
  55281. height: math.unit(556, "cm"),
  55282. weight: math.unit(2650, "kg"),
  55283. preyCapacity: math.unit(3, "people"),
  55284. name: "Side",
  55285. image: {
  55286. source: "./media/characters/ash´iika/side.svg",
  55287. extra: 696/676,
  55288. bottom: 13/709
  55289. },
  55290. form: "anthro"
  55291. },
  55292. anthroDressed: {
  55293. height: math.unit(556, "cm"),
  55294. weight: math.unit(2650, "kg"),
  55295. preyCapacity: math.unit(3, "people"),
  55296. name: "Dressed",
  55297. image: {
  55298. source: "./media/characters/ash´iika/dressed.svg",
  55299. extra: 710/673,
  55300. bottom: 15/725
  55301. },
  55302. form: "anthro"
  55303. },
  55304. anthroHead: {
  55305. height: math.unit(3.5, "feet"),
  55306. name: "Head",
  55307. image: {
  55308. source: "./media/characters/ash´iika/head.svg",
  55309. extra: 348/291,
  55310. bottom: 45/393
  55311. },
  55312. form: "anthro"
  55313. },
  55314. feralSide: {
  55315. height: math.unit(870, "cm"),
  55316. weight: math.unit(17500, "kg"),
  55317. preyCapacity: math.unit(15, "people"),
  55318. name: "Side",
  55319. image: {
  55320. source: "./media/characters/ash´iika/feral.svg",
  55321. extra: 595/199,
  55322. bottom: 7/602
  55323. },
  55324. form: "feral",
  55325. default: true,
  55326. },
  55327. },
  55328. [
  55329. {
  55330. name: "Normal",
  55331. height: math.unit(556, "cm"),
  55332. default: true,
  55333. form: "anthro"
  55334. },
  55335. {
  55336. name: "Macro",
  55337. height: math.unit(88, "meters"),
  55338. form: "anthro"
  55339. },
  55340. {
  55341. name: "Normal",
  55342. height: math.unit(870, "cm"),
  55343. default: true,
  55344. form: "feral"
  55345. },
  55346. {
  55347. name: "Large",
  55348. height: math.unit(25, "meters"),
  55349. form: "feral"
  55350. },
  55351. ],
  55352. {
  55353. "anthro": {
  55354. name: "Anthro",
  55355. default: true
  55356. },
  55357. "feral": {
  55358. name: "Feral",
  55359. },
  55360. }
  55361. ))
  55362. characterMakers.push(() => makeCharacter(
  55363. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55364. {
  55365. front: {
  55366. height: math.unit(10, "feet"),
  55367. weight: math.unit(800, "lb"),
  55368. name: "Front",
  55369. image: {
  55370. source: "./media/characters/yen/front.svg",
  55371. extra: 443/411,
  55372. bottom: 6/449
  55373. }
  55374. },
  55375. sleeping: {
  55376. height: math.unit(10, "feet"),
  55377. weight: math.unit(800, "lb"),
  55378. name: "Sleeping",
  55379. image: {
  55380. source: "./media/characters/yen/sleeping.svg",
  55381. extra: 470/422,
  55382. bottom: 0/470
  55383. }
  55384. },
  55385. head: {
  55386. height: math.unit(2.2, "feet"),
  55387. name: "Head",
  55388. image: {
  55389. source: "./media/characters/yen/head.svg"
  55390. }
  55391. },
  55392. headAlt: {
  55393. height: math.unit(2.1, "feet"),
  55394. name: "Head (Alt)",
  55395. image: {
  55396. source: "./media/characters/yen/head-alt.svg"
  55397. }
  55398. },
  55399. },
  55400. [
  55401. {
  55402. name: "Normal",
  55403. height: math.unit(10, "feet"),
  55404. default: true
  55405. },
  55406. ]
  55407. ))
  55408. characterMakers.push(() => makeCharacter(
  55409. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55410. {
  55411. front: {
  55412. height: math.unit(12, "feet"),
  55413. name: "Front",
  55414. image: {
  55415. source: "./media/characters/citra/front.svg",
  55416. extra: 1950/1710,
  55417. bottom: 47/1997
  55418. }
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(12, "feet"),
  55425. default: true
  55426. },
  55427. ]
  55428. ))
  55429. characterMakers.push(() => makeCharacter(
  55430. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55431. {
  55432. side: {
  55433. height: math.unit(7 + 10/12, "feet"),
  55434. name: "Side",
  55435. image: {
  55436. source: "./media/characters/sholstim/side.svg",
  55437. extra: 786/682,
  55438. bottom: 40/826
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Normal",
  55445. height: math.unit(7 + 10/12, "feet"),
  55446. default: true
  55447. },
  55448. ]
  55449. ))
  55450. characterMakers.push(() => makeCharacter(
  55451. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55452. {
  55453. front: {
  55454. height: math.unit(3.10, "meters"),
  55455. name: "Front",
  55456. image: {
  55457. source: "./media/characters/aggyn/front.svg",
  55458. extra: 1188/963,
  55459. bottom: 24/1212
  55460. }
  55461. },
  55462. },
  55463. [
  55464. {
  55465. name: "Normal",
  55466. height: math.unit(3.10, "meters"),
  55467. default: true
  55468. },
  55469. ]
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55473. {
  55474. front: {
  55475. height: math.unit(7 + 5/12, "feet"),
  55476. weight: math.unit(687, "lb"),
  55477. name: "Front",
  55478. image: {
  55479. source: "./media/characters/alsandair-hergenroether/front.svg",
  55480. extra: 1251/1186,
  55481. bottom: 75/1326
  55482. }
  55483. },
  55484. back: {
  55485. height: math.unit(7 + 5/12, "feet"),
  55486. weight: math.unit(687, "lb"),
  55487. name: "Back",
  55488. image: {
  55489. source: "./media/characters/alsandair-hergenroether/back.svg",
  55490. extra: 1290/1229,
  55491. bottom: 17/1307
  55492. }
  55493. },
  55494. },
  55495. [
  55496. {
  55497. name: "Max Compression",
  55498. height: math.unit(7 + 5/12, "feet"),
  55499. default: true
  55500. },
  55501. {
  55502. name: "\"Normal\"",
  55503. height: math.unit(2, "universes")
  55504. },
  55505. ]
  55506. ))
  55507. characterMakers.push(() => makeCharacter(
  55508. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55509. {
  55510. front: {
  55511. height: math.unit(4 + 1/12, "feet"),
  55512. weight: math.unit(92, "lb"),
  55513. name: "Front",
  55514. image: {
  55515. source: "./media/characters/ie/front.svg",
  55516. extra: 1585/1352,
  55517. bottom: 91/1676
  55518. }
  55519. },
  55520. },
  55521. [
  55522. {
  55523. name: "Normal",
  55524. height: math.unit(4 + 1/12, "feet"),
  55525. default: true
  55526. },
  55527. ]
  55528. ))
  55529. characterMakers.push(() => makeCharacter(
  55530. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55531. {
  55532. anthro: {
  55533. height: math.unit(6, "feet"),
  55534. weight: math.unit(150, "lb"),
  55535. name: "Front",
  55536. image: {
  55537. source: "./media/characters/willow/anthro.svg",
  55538. extra: 1073/986,
  55539. bottom: 34/1107
  55540. },
  55541. form: "anthro",
  55542. default: true
  55543. },
  55544. taur: {
  55545. height: math.unit(6, "feet"),
  55546. weight: math.unit(150, "lb"),
  55547. name: "Side",
  55548. image: {
  55549. source: "./media/characters/willow/taur.svg",
  55550. extra: 647/512,
  55551. bottom: 136/783
  55552. },
  55553. form: "taur",
  55554. default: true
  55555. },
  55556. },
  55557. [
  55558. {
  55559. name: "Humanoid",
  55560. height: math.unit(2.7, "meters"),
  55561. form: "anthro"
  55562. },
  55563. {
  55564. name: "Normal",
  55565. height: math.unit(9, "meters"),
  55566. form: "anthro",
  55567. default: true
  55568. },
  55569. {
  55570. name: "Humanoid",
  55571. height: math.unit(2.1, "meters"),
  55572. form: "taur"
  55573. },
  55574. {
  55575. name: "Normal",
  55576. height: math.unit(7, "meters"),
  55577. form: "taur",
  55578. default: true
  55579. },
  55580. ],
  55581. {
  55582. "anthro": {
  55583. name: "Anthro",
  55584. default: true
  55585. },
  55586. "taur": {
  55587. name: "Taur",
  55588. },
  55589. }
  55590. ))
  55591. characterMakers.push(() => makeCharacter(
  55592. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55593. {
  55594. front: {
  55595. height: math.unit(2 + 5/12, "feet"),
  55596. name: "Front",
  55597. image: {
  55598. source: "./media/characters/kyan/front.svg",
  55599. extra: 460/334,
  55600. bottom: 23/483
  55601. },
  55602. extraAttributes: {
  55603. "toeLength": {
  55604. name: "Toe Length",
  55605. power: 1,
  55606. type: "length",
  55607. base: math.unit(7, "cm")
  55608. },
  55609. "toeclawLength": {
  55610. name: "Toeclaw Length",
  55611. power: 1,
  55612. type: "length",
  55613. base: math.unit(4.7, "cm")
  55614. },
  55615. "earHeight": {
  55616. name: "Ear Height",
  55617. power: 1,
  55618. type: "length",
  55619. base: math.unit(14.1, "cm")
  55620. },
  55621. }
  55622. },
  55623. paws: {
  55624. height: math.unit(0.45, "feet"),
  55625. name: "Paws",
  55626. image: {
  55627. source: "./media/characters/kyan/paws.svg",
  55628. extra: 581/581,
  55629. bottom: 114/695
  55630. }
  55631. },
  55632. },
  55633. [
  55634. {
  55635. name: "Normal",
  55636. height: math.unit(2 + 5/12, "feet"),
  55637. default: true
  55638. },
  55639. ]
  55640. ))
  55641. characterMakers.push(() => makeCharacter(
  55642. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55643. {
  55644. front: {
  55645. height: math.unit(2 + 2/3, "feet"),
  55646. name: "Front",
  55647. image: {
  55648. source: "./media/characters/xazzon/front.svg",
  55649. extra: 1109/984,
  55650. bottom: 42/1151
  55651. }
  55652. },
  55653. back: {
  55654. height: math.unit(2 + 2/3, "feet"),
  55655. name: "Back",
  55656. image: {
  55657. source: "./media/characters/xazzon/back.svg",
  55658. extra: 1095/971,
  55659. bottom: 23/1118
  55660. }
  55661. },
  55662. },
  55663. [
  55664. {
  55665. name: "Normal",
  55666. height: math.unit(2 + 2/3, "feet"),
  55667. default: true
  55668. },
  55669. ]
  55670. ))
  55671. characterMakers.push(() => makeCharacter(
  55672. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55673. {
  55674. front: {
  55675. height: math.unit(8, "feet"),
  55676. weight: math.unit(300, "lb"),
  55677. name: "Front",
  55678. image: {
  55679. source: "./media/characters/khyla-shadowsong/front.svg",
  55680. extra: 861/798,
  55681. bottom: 32/893
  55682. }
  55683. },
  55684. side: {
  55685. height: math.unit(8, "feet"),
  55686. weight: math.unit(300, "lb"),
  55687. name: "Side",
  55688. image: {
  55689. source: "./media/characters/khyla-shadowsong/side.svg",
  55690. extra: 790/750,
  55691. bottom: 87/877
  55692. }
  55693. },
  55694. back: {
  55695. height: math.unit(8, "feet"),
  55696. weight: math.unit(300, "lb"),
  55697. name: "Back",
  55698. image: {
  55699. source: "./media/characters/khyla-shadowsong/back.svg",
  55700. extra: 855/808,
  55701. bottom: 14/869
  55702. }
  55703. },
  55704. head: {
  55705. height: math.unit(2.7, "feet"),
  55706. name: "Head",
  55707. image: {
  55708. source: "./media/characters/khyla-shadowsong/head.svg"
  55709. }
  55710. },
  55711. },
  55712. [
  55713. {
  55714. name: "Micro",
  55715. height: math.unit(6, "inches")
  55716. },
  55717. {
  55718. name: "Normal",
  55719. height: math.unit(8, "feet"),
  55720. default: true
  55721. },
  55722. ]
  55723. ))
  55724. characterMakers.push(() => makeCharacter(
  55725. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55726. {
  55727. hyperFront: {
  55728. height: math.unit(9 + 4/12, "feet"),
  55729. weight: math.unit(2000, "lb"),
  55730. name: "Front",
  55731. image: {
  55732. source: "./media/characters/tiden/hyper-front.svg",
  55733. extra: 400/382,
  55734. bottom: 6/406
  55735. },
  55736. form: "hyper",
  55737. },
  55738. regularFront: {
  55739. height: math.unit(7 + 10/12, "feet"),
  55740. weight: math.unit(470, "lb"),
  55741. name: "Front",
  55742. image: {
  55743. source: "./media/characters/tiden/regular-front.svg",
  55744. extra: 468/442,
  55745. bottom: 6/474
  55746. },
  55747. form: "regular",
  55748. },
  55749. },
  55750. [
  55751. {
  55752. name: "Normal",
  55753. height: math.unit(9 + 4/12, "feet"),
  55754. default: true,
  55755. form: "hyper"
  55756. },
  55757. {
  55758. name: "Normal",
  55759. height: math.unit(7 + 10/12, "feet"),
  55760. default: true,
  55761. form: "regular"
  55762. },
  55763. ],
  55764. {
  55765. "hyper": {
  55766. name: "Hyper",
  55767. default: true
  55768. },
  55769. "regular": {
  55770. name: "Regular",
  55771. },
  55772. }
  55773. ))
  55774. characterMakers.push(() => makeCharacter(
  55775. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55776. {
  55777. side: {
  55778. height: math.unit(6, "feet"),
  55779. weight: math.unit(150, "lb"),
  55780. name: "Side",
  55781. image: {
  55782. source: "./media/characters/jason-crowe/side.svg",
  55783. extra: 1771/766,
  55784. bottom: 219/1990
  55785. }
  55786. },
  55787. },
  55788. [
  55789. {
  55790. name: "Pocket Gryphon",
  55791. height: math.unit(6, "cm")
  55792. },
  55793. {
  55794. name: "Raven",
  55795. height: math.unit(60, "cm")
  55796. },
  55797. {
  55798. name: "Normal",
  55799. height: math.unit(1, "meter"),
  55800. default: true
  55801. },
  55802. ]
  55803. ))
  55804. characterMakers.push(() => makeCharacter(
  55805. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55806. {
  55807. front: {
  55808. height: math.unit(9 + 6/12, "feet"),
  55809. weight: math.unit(1100, "lb"),
  55810. name: "Front",
  55811. image: {
  55812. source: "./media/characters/django/front.svg",
  55813. extra: 1231/1136,
  55814. bottom: 34/1265
  55815. }
  55816. },
  55817. side: {
  55818. height: math.unit(9 + 6/12, "feet"),
  55819. weight: math.unit(1100, "lb"),
  55820. name: "Side",
  55821. image: {
  55822. source: "./media/characters/django/side.svg",
  55823. extra: 1267/1174,
  55824. bottom: 9/1276
  55825. }
  55826. },
  55827. },
  55828. [
  55829. {
  55830. name: "Normal",
  55831. height: math.unit(9 + 6/12, "feet"),
  55832. default: true
  55833. },
  55834. {
  55835. name: "Macro 1",
  55836. height: math.unit(50, "feet")
  55837. },
  55838. {
  55839. name: "Macro 2",
  55840. height: math.unit(500, "feet")
  55841. },
  55842. {
  55843. name: "Mega Macro",
  55844. height: math.unit(5300, "feet")
  55845. },
  55846. ]
  55847. ))
  55848. characterMakers.push(() => makeCharacter(
  55849. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55850. {
  55851. frontSfw: {
  55852. height: math.unit(120, "cm"),
  55853. weight: math.unit(15, "kg"),
  55854. name: "Front (SFW)",
  55855. image: {
  55856. source: "./media/characters/eri/front-sfw.svg",
  55857. extra: 1014/939,
  55858. bottom: 37/1051
  55859. },
  55860. form: "moth",
  55861. },
  55862. frontNsfw: {
  55863. height: math.unit(120, "cm"),
  55864. weight: math.unit(15, "kg"),
  55865. name: "Front (NSFW)",
  55866. image: {
  55867. source: "./media/characters/eri/front-nsfw.svg",
  55868. extra: 1014/939,
  55869. bottom: 37/1051
  55870. },
  55871. form: "moth",
  55872. default: true
  55873. },
  55874. egg: {
  55875. height: math.unit(10, "cm"),
  55876. name: "Egg",
  55877. image: {
  55878. source: "./media/characters/eri/egg.svg"
  55879. },
  55880. form: "egg",
  55881. default: true
  55882. },
  55883. },
  55884. [
  55885. {
  55886. name: "Normal",
  55887. height: math.unit(120, "cm"),
  55888. default: true,
  55889. form: "moth"
  55890. },
  55891. {
  55892. name: "Normal",
  55893. height: math.unit(10, "cm"),
  55894. default: true,
  55895. form: "egg"
  55896. },
  55897. ],
  55898. {
  55899. "moth": {
  55900. name: "Moth",
  55901. default: true
  55902. },
  55903. "egg": {
  55904. name: "Egg",
  55905. },
  55906. }
  55907. ))
  55908. characterMakers.push(() => makeCharacter(
  55909. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55910. {
  55911. front: {
  55912. height: math.unit(200, "feet"),
  55913. name: "Front",
  55914. image: {
  55915. source: "./media/characters/bishop-dowser/front.svg",
  55916. extra: 933/868,
  55917. bottom: 106/1039
  55918. }
  55919. },
  55920. },
  55921. [
  55922. {
  55923. name: "Giant",
  55924. height: math.unit(200, "feet"),
  55925. default: true
  55926. },
  55927. ]
  55928. ))
  55929. characterMakers.push(() => makeCharacter(
  55930. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55931. {
  55932. front: {
  55933. height: math.unit(2, "meters"),
  55934. preyCapacity: math.unit(3, "people"),
  55935. name: "Front",
  55936. image: {
  55937. source: "./media/characters/fryra/front.svg",
  55938. extra: 1025/948,
  55939. bottom: 30/1055
  55940. },
  55941. extraAttributes: {
  55942. "breastVolume": {
  55943. name: "Breast Volume",
  55944. power: 3,
  55945. type: "volume",
  55946. base: math.unit(8, "liters")
  55947. },
  55948. }
  55949. },
  55950. back: {
  55951. height: math.unit(2, "meters"),
  55952. preyCapacity: math.unit(3, "people"),
  55953. name: "Back",
  55954. image: {
  55955. source: "./media/characters/fryra/back.svg",
  55956. extra: 993/938,
  55957. bottom: 38/1031
  55958. },
  55959. extraAttributes: {
  55960. "breastVolume": {
  55961. name: "Breast Volume",
  55962. power: 3,
  55963. type: "volume",
  55964. base: math.unit(8, "liters")
  55965. },
  55966. }
  55967. },
  55968. head: {
  55969. height: math.unit(1.33, "feet"),
  55970. name: "Head",
  55971. image: {
  55972. source: "./media/characters/fryra/head.svg"
  55973. }
  55974. },
  55975. maw: {
  55976. height: math.unit(0.56, "feet"),
  55977. name: "Maw",
  55978. image: {
  55979. source: "./media/characters/fryra/maw.svg"
  55980. }
  55981. },
  55982. },
  55983. [
  55984. {
  55985. name: "Micro",
  55986. height: math.unit(5, "cm")
  55987. },
  55988. {
  55989. name: "Normal",
  55990. height: math.unit(2, "meters"),
  55991. default: true
  55992. },
  55993. {
  55994. name: "Small Macro",
  55995. height: math.unit(8, "meters")
  55996. },
  55997. {
  55998. name: "Macro",
  55999. height: math.unit(50, "meters")
  56000. },
  56001. {
  56002. name: "Megamacro",
  56003. height: math.unit(1, "km")
  56004. },
  56005. {
  56006. name: "Planetary",
  56007. height: math.unit(300000, "km")
  56008. },
  56009. {
  56010. name: "Universal",
  56011. height: math.unit(250, "lightyears")
  56012. },
  56013. {
  56014. name: "Fabric of Reality",
  56015. height: math.unit(1000, "multiverses")
  56016. },
  56017. ]
  56018. ))
  56019. characterMakers.push(() => makeCharacter(
  56020. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  56021. {
  56022. frontDressed: {
  56023. height: math.unit(6 + 2/12, "feet"),
  56024. name: "Front (Dressed)",
  56025. image: {
  56026. source: "./media/characters/fiera/front-dressed.svg",
  56027. extra: 1883/1793,
  56028. bottom: 70/1953
  56029. }
  56030. },
  56031. backDressed: {
  56032. height: math.unit(6 + 2/12, "feet"),
  56033. name: "Back (Dressed)",
  56034. image: {
  56035. source: "./media/characters/fiera/back-dressed.svg",
  56036. extra: 1847/1780,
  56037. bottom: 70/1917
  56038. }
  56039. },
  56040. frontNude: {
  56041. height: math.unit(6 + 2/12, "feet"),
  56042. name: "Front (Nude)",
  56043. image: {
  56044. source: "./media/characters/fiera/front-nude.svg",
  56045. extra: 1875/1785,
  56046. bottom: 66/1941
  56047. }
  56048. },
  56049. backNude: {
  56050. height: math.unit(6 + 2/12, "feet"),
  56051. name: "Back (Nude)",
  56052. image: {
  56053. source: "./media/characters/fiera/back-nude.svg",
  56054. extra: 1855/1788,
  56055. bottom: 44/1899
  56056. }
  56057. },
  56058. maw: {
  56059. height: math.unit(1.3, "feet"),
  56060. name: "Maw",
  56061. image: {
  56062. source: "./media/characters/fiera/maw.svg"
  56063. }
  56064. },
  56065. paw: {
  56066. height: math.unit(1, "feet"),
  56067. name: "Paw",
  56068. image: {
  56069. source: "./media/characters/fiera/paw.svg"
  56070. }
  56071. },
  56072. shoe: {
  56073. height: math.unit(1.05, "feet"),
  56074. name: "Shoe",
  56075. image: {
  56076. source: "./media/characters/fiera/shoe.svg"
  56077. }
  56078. },
  56079. },
  56080. [
  56081. {
  56082. name: "Normal",
  56083. height: math.unit(6 + 2/12, "feet"),
  56084. default: true
  56085. },
  56086. {
  56087. name: "Size Difference",
  56088. height: math.unit(13, "feet")
  56089. },
  56090. {
  56091. name: "Macro",
  56092. height: math.unit(60, "feet")
  56093. },
  56094. {
  56095. name: "Mega Macro",
  56096. height: math.unit(200, "feet")
  56097. },
  56098. ]
  56099. ))
  56100. characterMakers.push(() => makeCharacter(
  56101. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56102. {
  56103. back: {
  56104. height: math.unit(6, "feet"),
  56105. name: "Back",
  56106. image: {
  56107. source: "./media/characters/flare/back.svg",
  56108. extra: 1883/1765,
  56109. bottom: 32/1915
  56110. }
  56111. },
  56112. },
  56113. [
  56114. {
  56115. name: "Normal",
  56116. height: math.unit(6 + 2/12, "feet"),
  56117. default: true
  56118. },
  56119. {
  56120. name: "Size Difference",
  56121. height: math.unit(13, "feet")
  56122. },
  56123. {
  56124. name: "Macro",
  56125. height: math.unit(60, "feet")
  56126. },
  56127. {
  56128. name: "Macro 2",
  56129. height: math.unit(100, "feet")
  56130. },
  56131. {
  56132. name: "Mega Macro",
  56133. height: math.unit(200, "feet")
  56134. },
  56135. ]
  56136. ))
  56137. characterMakers.push(() => makeCharacter(
  56138. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56139. {
  56140. front: {
  56141. height: math.unit(2.2, "m"),
  56142. weight: math.unit(300, "kg"),
  56143. name: "Front",
  56144. image: {
  56145. source: "./media/characters/hanna/front.svg",
  56146. extra: 1696/1502,
  56147. bottom: 206/1902
  56148. }
  56149. },
  56150. },
  56151. [
  56152. {
  56153. name: "Humanoid",
  56154. height: math.unit(2.2, "meters")
  56155. },
  56156. {
  56157. name: "Normal",
  56158. height: math.unit(4.8, "meters"),
  56159. default: true
  56160. },
  56161. ]
  56162. ))
  56163. characterMakers.push(() => makeCharacter(
  56164. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56165. {
  56166. front: {
  56167. height: math.unit(2.8, "meters"),
  56168. name: "Front",
  56169. image: {
  56170. source: "./media/characters/argo/front.svg",
  56171. extra: 731/518,
  56172. bottom: 84/815
  56173. }
  56174. },
  56175. },
  56176. [
  56177. {
  56178. name: "Normal",
  56179. height: math.unit(3, "meters"),
  56180. default: true
  56181. },
  56182. ]
  56183. ))
  56184. characterMakers.push(() => makeCharacter(
  56185. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56186. {
  56187. side: {
  56188. height: math.unit(3.8, "meters"),
  56189. name: "Side",
  56190. image: {
  56191. source: "./media/characters/sybil/side.svg",
  56192. extra: 382/361,
  56193. bottom: 25/407
  56194. }
  56195. },
  56196. },
  56197. [
  56198. {
  56199. name: "Normal",
  56200. height: math.unit(3.8, "meters"),
  56201. default: true
  56202. },
  56203. ]
  56204. ))
  56205. characterMakers.push(() => makeCharacter(
  56206. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56207. {
  56208. side: {
  56209. height: math.unit(6, "meters"),
  56210. name: "Side",
  56211. image: {
  56212. source: "./media/characters/plum/side.svg",
  56213. extra: 858/755,
  56214. bottom: 45/903
  56215. },
  56216. form: "taur",
  56217. default: true
  56218. },
  56219. back: {
  56220. height: math.unit(6.3, "meters"),
  56221. name: "Back",
  56222. image: {
  56223. source: "./media/characters/plum/back.svg",
  56224. extra: 887/813,
  56225. bottom: 32/919
  56226. },
  56227. form: "taur",
  56228. },
  56229. feral: {
  56230. height: math.unit(5.5, "meter"),
  56231. name: "Front",
  56232. image: {
  56233. source: "./media/characters/plum/feral.svg",
  56234. extra: 568/403,
  56235. bottom: 51/619
  56236. },
  56237. form: "feral",
  56238. default: true
  56239. },
  56240. head: {
  56241. height: math.unit(1.46, "meter"),
  56242. name: "Head",
  56243. image: {
  56244. source: "./media/characters/plum/head.svg"
  56245. },
  56246. form: "taur"
  56247. },
  56248. tailTop: {
  56249. height: math.unit(5.6, "meter"),
  56250. name: "Tail (Top)",
  56251. image: {
  56252. source: "./media/characters/plum/tail-top.svg"
  56253. },
  56254. form: "taur",
  56255. },
  56256. tailBottom: {
  56257. height: math.unit(5.6, "meter"),
  56258. name: "Tail (Bottom)",
  56259. image: {
  56260. source: "./media/characters/plum/tail-bottom.svg"
  56261. },
  56262. form: "taur",
  56263. },
  56264. feralHead: {
  56265. height: math.unit(2.56549521, "meter"),
  56266. name: "Head",
  56267. image: {
  56268. source: "./media/characters/plum/head.svg"
  56269. },
  56270. form: "feral"
  56271. },
  56272. feralTailTop: {
  56273. height: math.unit(5.44728435, "meter"),
  56274. name: "Tail (Top)",
  56275. image: {
  56276. source: "./media/characters/plum/tail-top.svg"
  56277. },
  56278. form: "feral",
  56279. },
  56280. feralTailBottom: {
  56281. height: math.unit(5.44728435, "meter"),
  56282. name: "Tail (Bottom)",
  56283. image: {
  56284. source: "./media/characters/plum/tail-bottom.svg"
  56285. },
  56286. form: "feral",
  56287. },
  56288. },
  56289. [
  56290. {
  56291. name: "Normal",
  56292. height: math.unit(6, "meters"),
  56293. default: true,
  56294. form: "taur"
  56295. },
  56296. {
  56297. name: "Normal",
  56298. height: math.unit(5.5, "meters"),
  56299. default: true,
  56300. form: "feral"
  56301. },
  56302. ],
  56303. {
  56304. "taur": {
  56305. name: "Taur",
  56306. default: true
  56307. },
  56308. "feral": {
  56309. name: "Feral",
  56310. },
  56311. }
  56312. ))
  56313. characterMakers.push(() => makeCharacter(
  56314. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56315. {
  56316. front: {
  56317. height: math.unit(6, "feet"),
  56318. weight: math.unit(115, "lb"),
  56319. name: "Front",
  56320. image: {
  56321. source: "./media/characters/celeste-kitsune/front.svg",
  56322. extra: 393/366,
  56323. bottom: 7/400
  56324. }
  56325. },
  56326. side: {
  56327. height: math.unit(6, "feet"),
  56328. weight: math.unit(115, "lb"),
  56329. name: "Side",
  56330. image: {
  56331. source: "./media/characters/celeste-kitsune/side.svg",
  56332. extra: 818/765,
  56333. bottom: 40/858
  56334. }
  56335. },
  56336. },
  56337. [
  56338. {
  56339. name: "Megamacro",
  56340. height: math.unit(1500, "miles"),
  56341. default: true
  56342. },
  56343. ]
  56344. ))
  56345. characterMakers.push(() => makeCharacter(
  56346. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56347. {
  56348. front: {
  56349. height: math.unit(8, "meters"),
  56350. name: "Front",
  56351. image: {
  56352. source: "./media/characters/io/front.svg",
  56353. extra: 865/722,
  56354. bottom: 58/923
  56355. }
  56356. },
  56357. back: {
  56358. height: math.unit(8, "meters"),
  56359. name: "Back",
  56360. image: {
  56361. source: "./media/characters/io/back.svg",
  56362. extra: 920/776,
  56363. bottom: 42/962
  56364. }
  56365. },
  56366. head: {
  56367. height: math.unit(5.09, "meters"),
  56368. name: "Head",
  56369. image: {
  56370. source: "./media/characters/io/head.svg"
  56371. }
  56372. },
  56373. hand: {
  56374. height: math.unit(1.6, "meters"),
  56375. name: "Hand",
  56376. image: {
  56377. source: "./media/characters/io/hand.svg"
  56378. }
  56379. },
  56380. foot: {
  56381. height: math.unit(2.4, "meters"),
  56382. name: "Foot",
  56383. image: {
  56384. source: "./media/characters/io/foot.svg"
  56385. }
  56386. },
  56387. },
  56388. [
  56389. {
  56390. name: "Normal",
  56391. height: math.unit(8, "meters"),
  56392. default: true
  56393. },
  56394. ]
  56395. ))
  56396. characterMakers.push(() => makeCharacter(
  56397. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56398. {
  56399. side: {
  56400. height: math.unit(6 + 3/12, "feet"),
  56401. weight: math.unit(225, "lb"),
  56402. name: "Side",
  56403. image: {
  56404. source: "./media/characters/silas/side.svg",
  56405. extra: 703/653,
  56406. bottom: 23/726
  56407. },
  56408. extraAttributes: {
  56409. "pawLength": {
  56410. name: "Paw Length",
  56411. power: 1,
  56412. type: "length",
  56413. base: math.unit(12, "inches")
  56414. },
  56415. "pawWidth": {
  56416. name: "Paw Width",
  56417. power: 1,
  56418. type: "length",
  56419. base: math.unit(4.5, "inches")
  56420. },
  56421. "pawArea": {
  56422. name: "Paw Area",
  56423. power: 2,
  56424. type: "area",
  56425. base: math.unit(12 * 4.5, "inches^2")
  56426. },
  56427. }
  56428. },
  56429. },
  56430. [
  56431. {
  56432. name: "Normal",
  56433. height: math.unit(6 + 3/12, "feet"),
  56434. default: true
  56435. },
  56436. ]
  56437. ))
  56438. characterMakers.push(() => makeCharacter(
  56439. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56440. {
  56441. back: {
  56442. height: math.unit(1.6, "meters"),
  56443. weight: math.unit(150, "lb"),
  56444. name: "Back",
  56445. image: {
  56446. source: "./media/characters/zari/back.svg",
  56447. extra: 424/411,
  56448. bottom: 32/456
  56449. },
  56450. extraAttributes: {
  56451. "bladderCapacity": {
  56452. name: "Bladder Size",
  56453. power: 3,
  56454. type: "volume",
  56455. base: math.unit(500, "mL")
  56456. },
  56457. "bladderFlow": {
  56458. name: "Flow Rate",
  56459. power: 3,
  56460. type: "volume",
  56461. base: math.unit(25, "mL")
  56462. },
  56463. }
  56464. },
  56465. },
  56466. [
  56467. {
  56468. name: "Normal",
  56469. height: math.unit(1.6, "meters"),
  56470. default: true
  56471. },
  56472. ]
  56473. ))
  56474. characterMakers.push(() => makeCharacter(
  56475. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56476. {
  56477. front: {
  56478. height: math.unit(25, "feet"),
  56479. weight: math.unit(5, "tons"),
  56480. name: "Front",
  56481. image: {
  56482. source: "./media/characters/charlie-human/front.svg",
  56483. extra: 1870/1740,
  56484. bottom: 102/1972
  56485. },
  56486. extraAttributes: {
  56487. "dickLength": {
  56488. name: "Dick Length",
  56489. power: 1,
  56490. type: "length",
  56491. base: math.unit(9, "feet")
  56492. },
  56493. }
  56494. },
  56495. back: {
  56496. height: math.unit(25, "feet"),
  56497. weight: math.unit(5, "tons"),
  56498. name: "Back",
  56499. image: {
  56500. source: "./media/characters/charlie-human/back.svg",
  56501. extra: 1858/1733,
  56502. bottom: 105/1963
  56503. },
  56504. extraAttributes: {
  56505. "dickLength": {
  56506. name: "Dick Length",
  56507. power: 1,
  56508. type: "length",
  56509. base: math.unit(9, "feet")
  56510. },
  56511. }
  56512. },
  56513. },
  56514. [
  56515. {
  56516. name: "\"Normal\"",
  56517. height: math.unit(6 + 4/12, "feet")
  56518. },
  56519. {
  56520. name: "Big",
  56521. height: math.unit(25, "feet"),
  56522. default: true
  56523. },
  56524. ]
  56525. ))
  56526. characterMakers.push(() => makeCharacter(
  56527. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56528. {
  56529. front: {
  56530. height: math.unit(6 + 4/12, "feet"),
  56531. weight: math.unit(320, "lb"),
  56532. name: "Front",
  56533. image: {
  56534. source: "./media/characters/ookitsu/front.svg",
  56535. extra: 1160/976,
  56536. bottom: 38/1198
  56537. }
  56538. },
  56539. frontNsfw: {
  56540. height: math.unit(6 + 4/12, "feet"),
  56541. weight: math.unit(320, "lb"),
  56542. name: "Front (NSFW)",
  56543. image: {
  56544. source: "./media/characters/ookitsu/front-nsfw.svg",
  56545. extra: 1160/976,
  56546. bottom: 38/1198
  56547. }
  56548. },
  56549. back: {
  56550. height: math.unit(6 + 4/12, "feet"),
  56551. weight: math.unit(320, "lb"),
  56552. name: "Back",
  56553. image: {
  56554. source: "./media/characters/ookitsu/back.svg",
  56555. extra: 1030/975,
  56556. bottom: 70/1100
  56557. }
  56558. },
  56559. head: {
  56560. height: math.unit(1.79, "feet"),
  56561. name: "Head",
  56562. image: {
  56563. source: "./media/characters/ookitsu/head.svg"
  56564. }
  56565. },
  56566. hand: {
  56567. height: math.unit(0.92, "feet"),
  56568. name: "Hand",
  56569. image: {
  56570. source: "./media/characters/ookitsu/hand.svg"
  56571. }
  56572. },
  56573. tails: {
  56574. height: math.unit(3.3, "feet"),
  56575. name: "Tails",
  56576. image: {
  56577. source: "./media/characters/ookitsu/tails.svg"
  56578. }
  56579. },
  56580. dick: {
  56581. height: math.unit(1.10833, "feet"),
  56582. name: "Dick",
  56583. image: {
  56584. source: "./media/characters/ookitsu/dick.svg"
  56585. }
  56586. },
  56587. },
  56588. [
  56589. {
  56590. name: "Normal",
  56591. height: math.unit(6 + 4/12, "feet"),
  56592. default: true
  56593. },
  56594. {
  56595. name: "Macro",
  56596. height: math.unit(30, "feet")
  56597. },
  56598. ]
  56599. ))
  56600. characterMakers.push(() => makeCharacter(
  56601. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56602. {
  56603. anthroFront: {
  56604. height: math.unit(6, "feet"),
  56605. weight: math.unit(250, "lb"),
  56606. name: "Front",
  56607. image: {
  56608. source: "./media/characters/jhusky/anthro-front.svg",
  56609. extra: 474/439,
  56610. bottom: 7/481
  56611. },
  56612. form: "anthro",
  56613. default: true
  56614. },
  56615. taurSideSfw: {
  56616. height: math.unit(6 + 4/12, "feet"),
  56617. weight: math.unit(500, "lb"),
  56618. name: "Side (SFW)",
  56619. image: {
  56620. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56621. extra: 1741/1629,
  56622. bottom: 196/1937
  56623. },
  56624. form: "taur",
  56625. default: true
  56626. },
  56627. taurSideNsfw: {
  56628. height: math.unit(6 + 4/12, "feet"),
  56629. weight: math.unit(500, "lb"),
  56630. name: "Taur (NSFW)",
  56631. image: {
  56632. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56633. extra: 1741/1629,
  56634. bottom: 196/1937
  56635. },
  56636. form: "taur",
  56637. },
  56638. },
  56639. [
  56640. {
  56641. name: "Huge",
  56642. height: math.unit(500, "feet"),
  56643. form: "anthro"
  56644. },
  56645. {
  56646. name: "Macro",
  56647. height: math.unit(1000, "feet"),
  56648. default: true,
  56649. form: "anthro"
  56650. },
  56651. {
  56652. name: "Megamacro",
  56653. height: math.unit(10000, "feet"),
  56654. form: "anthro"
  56655. },
  56656. {
  56657. name: "Huge",
  56658. height: math.unit(528, "feet"),
  56659. form: "taur"
  56660. },
  56661. {
  56662. name: "Macro",
  56663. height: math.unit(1056, "feet"),
  56664. default: true,
  56665. form: "taur"
  56666. },
  56667. {
  56668. name: "Megamacro",
  56669. height: math.unit(10556, "feet"),
  56670. form: "taur"
  56671. },
  56672. ],
  56673. {
  56674. "anthro": {
  56675. name: "Anthro",
  56676. default: true
  56677. },
  56678. "taur": {
  56679. name: "Taur",
  56680. },
  56681. }
  56682. ))
  56683. characterMakers.push(() => makeCharacter(
  56684. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56685. {
  56686. front: {
  56687. height: math.unit(8, "feet"),
  56688. weight: math.unit(500, "lb"),
  56689. name: "Front",
  56690. image: {
  56691. source: "./media/characters/armail/front.svg",
  56692. extra: 1753/1669,
  56693. bottom: 155/1908
  56694. }
  56695. },
  56696. back: {
  56697. height: math.unit(8, "feet"),
  56698. weight: math.unit(500, "lb"),
  56699. name: "Back",
  56700. image: {
  56701. source: "./media/characters/armail/back.svg",
  56702. extra: 1872/1803,
  56703. bottom: 63/1935
  56704. }
  56705. },
  56706. },
  56707. [
  56708. {
  56709. name: "Micro",
  56710. height: math.unit(0.25, "feet")
  56711. },
  56712. {
  56713. name: "Normal",
  56714. height: math.unit(8, "feet"),
  56715. default: true
  56716. },
  56717. {
  56718. name: "Mini-macro",
  56719. height: math.unit(30, "feet")
  56720. },
  56721. {
  56722. name: "Macro",
  56723. height: math.unit(400, "feet")
  56724. },
  56725. {
  56726. name: "Mega-macro",
  56727. height: math.unit(6000, "feet")
  56728. },
  56729. ]
  56730. ))
  56731. characterMakers.push(() => makeCharacter(
  56732. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56733. {
  56734. front: {
  56735. height: math.unit(6 + 7/12, "feet"),
  56736. weight: math.unit(210, "lb"),
  56737. name: "Front",
  56738. image: {
  56739. source: "./media/characters/wilfred-t-buxton/front.svg",
  56740. extra: 1068/882,
  56741. bottom: 28/1096
  56742. }
  56743. },
  56744. },
  56745. [
  56746. {
  56747. name: "Normal",
  56748. height: math.unit(6 + 7/12, "feet"),
  56749. default: true
  56750. },
  56751. ]
  56752. ))
  56753. characterMakers.push(() => makeCharacter(
  56754. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56755. {
  56756. front: {
  56757. height: math.unit(5 + 2/12, "feet"),
  56758. weight: math.unit(120, "lb"),
  56759. name: "Front",
  56760. image: {
  56761. source: "./media/characters/leighton-marrow/front.svg",
  56762. extra: 441/409,
  56763. bottom: 37/478
  56764. }
  56765. },
  56766. },
  56767. [
  56768. {
  56769. name: "Normal",
  56770. height: math.unit(5 + 2/12, "feet"),
  56771. default: true
  56772. },
  56773. ]
  56774. ))
  56775. characterMakers.push(() => makeCharacter(
  56776. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56777. {
  56778. front: {
  56779. height: math.unit(4, "meters"),
  56780. weight: math.unit(1200, "kg"),
  56781. name: "Front",
  56782. image: {
  56783. source: "./media/characters/licos/front.svg",
  56784. extra: 1727/1604,
  56785. bottom: 101/1828
  56786. },
  56787. form: "anthro",
  56788. default: true
  56789. },
  56790. taur_side: {
  56791. height: math.unit(20, "meters"),
  56792. weight: math.unit(1100000, "kg"),
  56793. name: "Side",
  56794. image: {
  56795. source: "./media/characters/licos/taur.svg",
  56796. extra: 1158/1091,
  56797. bottom: 80/1238
  56798. },
  56799. form: "taur",
  56800. default: true
  56801. },
  56802. },
  56803. [
  56804. {
  56805. name: "Normal",
  56806. height: math.unit(4, "meters"),
  56807. default: true,
  56808. form: "anthro"
  56809. },
  56810. {
  56811. name: "Normal",
  56812. height: math.unit(20, "meters"),
  56813. default: true,
  56814. form: "taur"
  56815. },
  56816. ],
  56817. {
  56818. "anthro": {
  56819. name: "Anthro",
  56820. default: true
  56821. },
  56822. "taur": {
  56823. name: "Taur",
  56824. },
  56825. }
  56826. ))
  56827. characterMakers.push(() => makeCharacter(
  56828. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56829. {
  56830. front: {
  56831. height: math.unit(10 + 3/12, "feet"),
  56832. name: "Front",
  56833. image: {
  56834. source: "./media/characters/theo-monkey/front.svg",
  56835. extra: 1735/1658,
  56836. bottom: 73/1808
  56837. }
  56838. },
  56839. back: {
  56840. height: math.unit(10 + 3/12, "feet"),
  56841. name: "Back",
  56842. image: {
  56843. source: "./media/characters/theo-monkey/back.svg",
  56844. extra: 1742/1664,
  56845. bottom: 33/1775
  56846. }
  56847. },
  56848. head: {
  56849. height: math.unit(2.29, "feet"),
  56850. name: "Head",
  56851. image: {
  56852. source: "./media/characters/theo-monkey/head.svg"
  56853. }
  56854. },
  56855. handPalm: {
  56856. height: math.unit(1.73, "feet"),
  56857. name: "Hand (Palm)",
  56858. image: {
  56859. source: "./media/characters/theo-monkey/hand-palm.svg"
  56860. }
  56861. },
  56862. handBack: {
  56863. height: math.unit(1.63, "feet"),
  56864. name: "Hand (Back)",
  56865. image: {
  56866. source: "./media/characters/theo-monkey/hand-back.svg"
  56867. }
  56868. },
  56869. footSole: {
  56870. height: math.unit(2.15, "feet"),
  56871. name: "Foot (Sole)",
  56872. image: {
  56873. source: "./media/characters/theo-monkey/foot-sole.svg"
  56874. }
  56875. },
  56876. footSide: {
  56877. height: math.unit(1.6, "feet"),
  56878. name: "Foot (Side)",
  56879. image: {
  56880. source: "./media/characters/theo-monkey/foot-side.svg"
  56881. }
  56882. },
  56883. },
  56884. [
  56885. {
  56886. name: "Normal",
  56887. height: math.unit(10 + 3/12, "feet"),
  56888. default: true
  56889. },
  56890. ]
  56891. ))
  56892. characterMakers.push(() => makeCharacter(
  56893. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56894. {
  56895. front: {
  56896. height: math.unit(11, "feet"),
  56897. weight: math.unit(3000, "lb"),
  56898. preyCapacity: math.unit(10, "people"),
  56899. name: "Front",
  56900. image: {
  56901. source: "./media/characters/brook/front.svg",
  56902. extra: 909/835,
  56903. bottom: 108/1017
  56904. }
  56905. },
  56906. back: {
  56907. height: math.unit(11, "feet"),
  56908. weight: math.unit(3000, "lb"),
  56909. preyCapacity: math.unit(10, "people"),
  56910. name: "Back",
  56911. image: {
  56912. source: "./media/characters/brook/back.svg",
  56913. extra: 976/916,
  56914. bottom: 34/1010
  56915. }
  56916. },
  56917. backAlt: {
  56918. height: math.unit(11, "feet"),
  56919. weight: math.unit(3000, "lb"),
  56920. preyCapacity: math.unit(10, "people"),
  56921. name: "Back (Alt)",
  56922. image: {
  56923. source: "./media/characters/brook/back-alt.svg",
  56924. extra: 1283/1213,
  56925. bottom: 35/1318
  56926. }
  56927. },
  56928. bust: {
  56929. height: math.unit(9.0859030837, "feet"),
  56930. weight: math.unit(3000, "lb"),
  56931. preyCapacity: math.unit(10, "people"),
  56932. name: "Bust",
  56933. image: {
  56934. source: "./media/characters/brook/bust.svg",
  56935. extra: 2043/1923,
  56936. bottom: 0/2043
  56937. }
  56938. },
  56939. },
  56940. [
  56941. {
  56942. name: "Small",
  56943. height: math.unit(11, "feet"),
  56944. default: true
  56945. },
  56946. {
  56947. name: "Towering",
  56948. height: math.unit(5, "km")
  56949. },
  56950. {
  56951. name: "Enormous",
  56952. height: math.unit(25, "earths")
  56953. },
  56954. ]
  56955. ))
  56956. characterMakers.push(() => makeCharacter(
  56957. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56958. {
  56959. front: {
  56960. height: math.unit(4, "feet"),
  56961. weight: math.unit(150, "lb"),
  56962. name: "Front",
  56963. image: {
  56964. source: "./media/characters/squishi/front.svg",
  56965. extra: 1428/1271,
  56966. bottom: 30/1458
  56967. },
  56968. extraAttributes: {
  56969. "pawSize": {
  56970. name: "Paw Size",
  56971. power: 1,
  56972. type: "length",
  56973. base: math.unit(14, "ShoeSizeMensUS"),
  56974. defaultUnit: "ShoeSizeMensUS"
  56975. },
  56976. }
  56977. },
  56978. side: {
  56979. height: math.unit(4, "feet"),
  56980. weight: math.unit(150, "lb"),
  56981. name: "Side",
  56982. image: {
  56983. source: "./media/characters/squishi/side.svg",
  56984. extra: 1428/1271,
  56985. bottom: 30/1458
  56986. },
  56987. extraAttributes: {
  56988. "pawSize": {
  56989. name: "Paw Size",
  56990. power: 1,
  56991. type: "length",
  56992. base: math.unit(14, "ShoeSizeMensUS"),
  56993. defaultUnit: "ShoeSizeMensUS"
  56994. },
  56995. }
  56996. },
  56997. back: {
  56998. height: math.unit(4, "feet"),
  56999. weight: math.unit(150, "lb"),
  57000. name: "Back",
  57001. image: {
  57002. source: "./media/characters/squishi/back.svg",
  57003. extra: 1428/1271,
  57004. bottom: 30/1458
  57005. },
  57006. extraAttributes: {
  57007. "pawSize": {
  57008. name: "Paw Size",
  57009. power: 1,
  57010. type: "length",
  57011. base: math.unit(14, "ShoeSizeMensUS"),
  57012. defaultUnit: "ShoeSizeMensUS"
  57013. },
  57014. }
  57015. },
  57016. },
  57017. [
  57018. {
  57019. name: "Normal",
  57020. height: math.unit(4, "feet"),
  57021. default: true
  57022. },
  57023. ]
  57024. ))
  57025. characterMakers.push(() => makeCharacter(
  57026. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  57027. {
  57028. front: {
  57029. height: math.unit(7 + 8/12, "feet"),
  57030. weight: math.unit(333, "lb"),
  57031. name: "Front",
  57032. image: {
  57033. source: "./media/characters/vincent-vasroc/front.svg",
  57034. extra: 1962/1860,
  57035. bottom: 41/2003
  57036. }
  57037. },
  57038. back: {
  57039. height: math.unit(7 + 8/12, "feet"),
  57040. weight: math.unit(333, "lb"),
  57041. name: "Back",
  57042. image: {
  57043. source: "./media/characters/vincent-vasroc/back.svg",
  57044. extra: 1952/1815,
  57045. bottom: 33/1985
  57046. }
  57047. },
  57048. paw: {
  57049. height: math.unit(1.24, "feet"),
  57050. name: "Paw",
  57051. image: {
  57052. source: "./media/characters/vincent-vasroc/paw.svg"
  57053. }
  57054. },
  57055. ear: {
  57056. height: math.unit(0.75, "feet"),
  57057. name: "Ear",
  57058. image: {
  57059. source: "./media/characters/vincent-vasroc/ear.svg"
  57060. }
  57061. },
  57062. },
  57063. [
  57064. {
  57065. name: "Nano",
  57066. height: math.unit(92, "micrometers")
  57067. },
  57068. {
  57069. name: "Normal",
  57070. height: math.unit(7 + 8/12, "feet"),
  57071. default: true
  57072. },
  57073. ]
  57074. ))
  57075. characterMakers.push(() => makeCharacter(
  57076. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57077. {
  57078. frontNsfw: {
  57079. height: math.unit(40, "feet"),
  57080. weight: math.unit(58, "tons"),
  57081. name: "Front (NSFW)",
  57082. image: {
  57083. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57084. extra: 1265/965,
  57085. bottom: 155/1420
  57086. }
  57087. },
  57088. frontSfw: {
  57089. height: math.unit(40, "feet"),
  57090. weight: math.unit(58, "tons"),
  57091. name: "Front (SFW)",
  57092. image: {
  57093. source: "./media/characters/ru-kahn/front-sfw.svg",
  57094. extra: 1265/965,
  57095. bottom: 80/1345
  57096. }
  57097. },
  57098. },
  57099. [
  57100. {
  57101. name: "Small",
  57102. height: math.unit(4, "feet")
  57103. },
  57104. {
  57105. name: "Normal",
  57106. height: math.unit(40, "feet"),
  57107. default: true
  57108. },
  57109. {
  57110. name: "Macro",
  57111. height: math.unit(400, "feet")
  57112. },
  57113. ]
  57114. ))
  57115. characterMakers.push(() => makeCharacter(
  57116. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57117. {
  57118. frontNude: {
  57119. height: math.unit(6 + 5/12, "feet"),
  57120. name: "Front (Nude)",
  57121. image: {
  57122. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57123. extra: 1369/1366,
  57124. bottom: 68/1437
  57125. }
  57126. },
  57127. frontDressed: {
  57128. height: math.unit(6 + 5/12, "feet"),
  57129. name: "Front (Dressed)",
  57130. image: {
  57131. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57132. extra: 1369/1366,
  57133. bottom: 68/1437
  57134. }
  57135. },
  57136. },
  57137. [
  57138. {
  57139. name: "Normal",
  57140. height: math.unit(6 + 5/12, "feet"),
  57141. default: true
  57142. },
  57143. {
  57144. name: "Maximum",
  57145. height: math.unit(1930, "feet")
  57146. },
  57147. ]
  57148. ))
  57149. characterMakers.push(() => makeCharacter(
  57150. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57151. {
  57152. front: {
  57153. height: math.unit(5 + 6/12, "feet"),
  57154. name: "Front",
  57155. image: {
  57156. source: "./media/characters/kaja/front.svg",
  57157. extra: 1874/1514,
  57158. bottom: 117/1991
  57159. }
  57160. },
  57161. },
  57162. [
  57163. {
  57164. name: "Normal",
  57165. height: math.unit(5 + 6/12, "feet"),
  57166. default: true
  57167. },
  57168. ]
  57169. ))
  57170. characterMakers.push(() => makeCharacter(
  57171. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57172. {
  57173. front: {
  57174. height: math.unit(5 + 9/12, "feet"),
  57175. weight: math.unit(200, "lb"),
  57176. name: "Front",
  57177. image: {
  57178. source: "./media/characters/mark-smith/front.svg",
  57179. extra: 1004/943,
  57180. bottom: 58/1062
  57181. }
  57182. },
  57183. back: {
  57184. height: math.unit(5 + 9/12, "feet"),
  57185. weight: math.unit(200, "lb"),
  57186. name: "Back",
  57187. image: {
  57188. source: "./media/characters/mark-smith/back.svg",
  57189. extra: 1023/953,
  57190. bottom: 24/1047
  57191. }
  57192. },
  57193. head: {
  57194. height: math.unit(1.82, "feet"),
  57195. name: "Head",
  57196. image: {
  57197. source: "./media/characters/mark-smith/head.svg"
  57198. }
  57199. },
  57200. hand: {
  57201. height: math.unit(1.4, "feet"),
  57202. name: "Hand",
  57203. image: {
  57204. source: "./media/characters/mark-smith/hand.svg"
  57205. }
  57206. },
  57207. paw: {
  57208. height: math.unit(1.69, "feet"),
  57209. name: "Paw",
  57210. image: {
  57211. source: "./media/characters/mark-smith/paw.svg"
  57212. }
  57213. },
  57214. },
  57215. [
  57216. {
  57217. name: "Micro",
  57218. height: math.unit(0.25, "inches")
  57219. },
  57220. {
  57221. name: "Normal",
  57222. height: math.unit(5 + 9/12, "feet"),
  57223. default: true
  57224. },
  57225. {
  57226. name: "Macro",
  57227. height: math.unit(500, "feet")
  57228. },
  57229. ]
  57230. ))
  57231. characterMakers.push(() => makeCharacter(
  57232. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57233. {
  57234. frontNude: {
  57235. height: math.unit(6, "feet"),
  57236. name: "Front (Nude)",
  57237. image: {
  57238. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57239. extra: 1384/1321,
  57240. bottom: 57/1441
  57241. }
  57242. },
  57243. frontDressed: {
  57244. height: math.unit(6, "feet"),
  57245. name: "Front (Dressed)",
  57246. image: {
  57247. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57248. extra: 1384/1321,
  57249. bottom: 57/1441
  57250. }
  57251. },
  57252. },
  57253. [
  57254. {
  57255. name: "Normal",
  57256. height: math.unit(6, "feet"),
  57257. default: true
  57258. },
  57259. {
  57260. name: "Maximum",
  57261. height: math.unit(1776, "feet")
  57262. },
  57263. ]
  57264. ))
  57265. characterMakers.push(() => makeCharacter(
  57266. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57267. {
  57268. front: {
  57269. height: math.unit(2 + 4/12, "feet"),
  57270. weight: math.unit(350, "lb"),
  57271. name: "Front",
  57272. image: {
  57273. source: "./media/characters/devos/front.svg",
  57274. extra: 958/852,
  57275. bottom: 143/1101
  57276. }
  57277. },
  57278. },
  57279. [
  57280. {
  57281. name: "Base",
  57282. height: math.unit(2 + 4/12, "feet"),
  57283. default: true
  57284. },
  57285. ]
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(9 + 2/12, "feet"),
  57292. name: "Front",
  57293. image: {
  57294. source: "./media/characters/hiveheart/front.svg",
  57295. extra: 394/364,
  57296. bottom: 65/459
  57297. }
  57298. },
  57299. back: {
  57300. height: math.unit(9 + 2/12, "feet"),
  57301. name: "Back",
  57302. image: {
  57303. source: "./media/characters/hiveheart/back.svg",
  57304. extra: 374/357,
  57305. bottom: 63/437
  57306. }
  57307. },
  57308. },
  57309. [
  57310. {
  57311. name: "Base",
  57312. height: math.unit(9 + 2/12, "feet"),
  57313. default: true
  57314. },
  57315. ]
  57316. ))
  57317. characterMakers.push(() => makeCharacter(
  57318. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57319. {
  57320. front: {
  57321. height: math.unit(2.5, "inches"),
  57322. weight: math.unit(0.6, "oz"),
  57323. name: "Front",
  57324. image: {
  57325. source: "./media/characters/bryn/front.svg",
  57326. extra: 1484/1119,
  57327. bottom: 66/1550
  57328. }
  57329. },
  57330. back: {
  57331. height: math.unit(2.5, "inches"),
  57332. weight: math.unit(0.6, "oz"),
  57333. name: "Back",
  57334. image: {
  57335. source: "./media/characters/bryn/back.svg",
  57336. extra: 1472/1170,
  57337. bottom: 32/1504
  57338. }
  57339. },
  57340. wings: {
  57341. height: math.unit(2.5, "inches"),
  57342. weight: math.unit(0.6, "oz"),
  57343. name: "Wings",
  57344. image: {
  57345. source: "./media/characters/bryn/wings.svg",
  57346. extra: 567/448,
  57347. bottom: 10/577
  57348. }
  57349. },
  57350. dressed: {
  57351. height: math.unit(2.5, "inches"),
  57352. weight: math.unit(0.6, "oz"),
  57353. name: "Dressed",
  57354. image: {
  57355. source: "./media/characters/bryn/dressed.svg",
  57356. extra: 719/589,
  57357. bottom: 54/773
  57358. }
  57359. },
  57360. head: {
  57361. height: math.unit(1.75, "inches"),
  57362. name: "Head",
  57363. image: {
  57364. source: "./media/characters/bryn/head.svg"
  57365. }
  57366. },
  57367. foot: {
  57368. height: math.unit(0.4, "inches"),
  57369. name: "Foot",
  57370. image: {
  57371. source: "./media/characters/bryn/foot.svg"
  57372. }
  57373. },
  57374. },
  57375. [
  57376. {
  57377. name: "Normal",
  57378. height: math.unit(2.5, "inches"),
  57379. default: true
  57380. },
  57381. ]
  57382. ))
  57383. characterMakers.push(() => makeCharacter(
  57384. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57385. {
  57386. side: {
  57387. height: math.unit(7, "feet"),
  57388. weight: math.unit(657, "kg"),
  57389. name: "Side",
  57390. image: {
  57391. source: "./media/characters/delta/side.svg",
  57392. extra: 781/212,
  57393. bottom: 7/788
  57394. },
  57395. extraAttributes: {
  57396. "wingspan": {
  57397. name: "Wingspan",
  57398. power: 1,
  57399. type: "length",
  57400. base: math.unit(48, "feet")
  57401. },
  57402. "length": {
  57403. name: "Length",
  57404. power: 1,
  57405. type: "length",
  57406. base: math.unit(21, "feet")
  57407. },
  57408. "pawSize": {
  57409. name: "Paw Size",
  57410. power: 2,
  57411. type: "area",
  57412. base: math.unit(1.5*1.4, "feet^2")
  57413. },
  57414. }
  57415. },
  57416. },
  57417. [
  57418. {
  57419. name: "Normal",
  57420. height: math.unit(6, "feet"),
  57421. default: true
  57422. },
  57423. ]
  57424. ))
  57425. characterMakers.push(() => makeCharacter(
  57426. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57427. {
  57428. front: {
  57429. height: math.unit(6, "feet"),
  57430. name: "Front",
  57431. image: {
  57432. source: "./media/characters/pyrow/front.svg",
  57433. extra: 513/486,
  57434. bottom: 14/527
  57435. }
  57436. },
  57437. frontWing: {
  57438. height: math.unit(6, "feet"),
  57439. name: "Front (Wing)",
  57440. image: {
  57441. source: "./media/characters/pyrow/front-wing.svg",
  57442. extra: 539/383,
  57443. bottom: 20/559
  57444. }
  57445. },
  57446. back: {
  57447. height: math.unit(6, "feet"),
  57448. name: "Back",
  57449. image: {
  57450. source: "./media/characters/pyrow/back.svg",
  57451. extra: 500/473,
  57452. bottom: 9/509
  57453. }
  57454. },
  57455. },
  57456. [
  57457. {
  57458. name: "Normal",
  57459. height: math.unit(6, "feet"),
  57460. default: true
  57461. },
  57462. ]
  57463. ))
  57464. characterMakers.push(() => makeCharacter(
  57465. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57466. {
  57467. front: {
  57468. height: math.unit(5, "meters"),
  57469. weight: math.unit(3, "tonnes"),
  57470. name: "Front",
  57471. image: {
  57472. source: "./media/characters/velikan/front.svg",
  57473. extra: 867/744,
  57474. bottom: 71/938
  57475. },
  57476. extraAttributes: {
  57477. "shoeSize": {
  57478. name: "Shoe Size",
  57479. power: 1,
  57480. type: "length",
  57481. base: math.unit(135, "ShoeSizeUK"),
  57482. defaultUnit: "ShoeSizeUK"
  57483. },
  57484. }
  57485. },
  57486. },
  57487. [
  57488. {
  57489. name: "Normal",
  57490. height: math.unit(5, "meters"),
  57491. default: true
  57492. },
  57493. {
  57494. name: "Macro",
  57495. height: math.unit(1, "km")
  57496. },
  57497. {
  57498. name: "Mega Macro",
  57499. height: math.unit(100, "km")
  57500. },
  57501. {
  57502. name: "Giga Macro",
  57503. height: math.unit(2, "megameters")
  57504. },
  57505. {
  57506. name: "Planetary",
  57507. height: math.unit(22, "megameters")
  57508. },
  57509. {
  57510. name: "Solar",
  57511. height: math.unit(8, "gigameters")
  57512. },
  57513. {
  57514. name: "Cosmic",
  57515. height: math.unit(10, "zettameters")
  57516. },
  57517. {
  57518. name: "Omni",
  57519. height: math.unit(9e260, "multiverses")
  57520. },
  57521. ]
  57522. ))
  57523. characterMakers.push(() => makeCharacter(
  57524. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57525. {
  57526. front: {
  57527. height: math.unit(4 + 3/12, "feet"),
  57528. weight: math.unit(90, "lb"),
  57529. name: "Front",
  57530. image: {
  57531. source: "./media/characters/sabiki/front.svg",
  57532. extra: 1662/1423,
  57533. bottom: 65/1727
  57534. }
  57535. },
  57536. },
  57537. [
  57538. {
  57539. name: "Normal",
  57540. height: math.unit(4 + 3/12, "feet"),
  57541. default: true
  57542. },
  57543. ]
  57544. ))
  57545. characterMakers.push(() => makeCharacter(
  57546. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57547. {
  57548. frontSfw: {
  57549. height: math.unit(2, "mm"),
  57550. name: "Front (SFW)",
  57551. image: {
  57552. source: "./media/characters/carmel/front-sfw.svg",
  57553. extra: 1131/1006,
  57554. bottom: 66/1197
  57555. }
  57556. },
  57557. frontNsfw: {
  57558. height: math.unit(2, "mm"),
  57559. name: "Front (NSFW)",
  57560. image: {
  57561. source: "./media/characters/carmel/front-nsfw.svg",
  57562. extra: 1131/1006,
  57563. bottom: 66/1197
  57564. }
  57565. },
  57566. foot: {
  57567. height: math.unit(0.3, "mm"),
  57568. name: "Foot",
  57569. image: {
  57570. source: "./media/characters/carmel/foot.svg"
  57571. }
  57572. },
  57573. tongue: {
  57574. height: math.unit(0.71, "mm"),
  57575. name: "Tongue",
  57576. image: {
  57577. source: "./media/characters/carmel/tongue.svg"
  57578. }
  57579. },
  57580. dick: {
  57581. height: math.unit(0.085, "mm"),
  57582. name: "Dick",
  57583. image: {
  57584. source: "./media/characters/carmel/dick.svg"
  57585. }
  57586. },
  57587. },
  57588. [
  57589. {
  57590. name: "Micro",
  57591. height: math.unit(2, "mm"),
  57592. default: true
  57593. },
  57594. {
  57595. name: "Normal",
  57596. height: math.unit(4 + 8/12, "feet")
  57597. },
  57598. {
  57599. name: "Mega Macro",
  57600. height: math.unit(250, "feet")
  57601. },
  57602. {
  57603. name: "BIGGER",
  57604. height: math.unit(1000, "feet")
  57605. },
  57606. {
  57607. name: "BIGGEST",
  57608. height: math.unit(2, "miles")
  57609. },
  57610. ]
  57611. ))
  57612. characterMakers.push(() => makeCharacter(
  57613. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57614. {
  57615. front: {
  57616. height: math.unit(6.5, "feet"),
  57617. weight: math.unit(198, "lb"),
  57618. name: "Front",
  57619. image: {
  57620. source: "./media/characters/tamani/anthro.svg",
  57621. extra: 930/890,
  57622. bottom: 34/964
  57623. },
  57624. form: "anthro",
  57625. default: true
  57626. },
  57627. side: {
  57628. height: math.unit(6, "feet"),
  57629. weight: math.unit(198*2, "lb"),
  57630. name: "Side",
  57631. image: {
  57632. source: "./media/characters/tamani/feral.svg",
  57633. extra: 559/519,
  57634. bottom: 43/602
  57635. },
  57636. form: "feral"
  57637. },
  57638. },
  57639. [
  57640. {
  57641. name: "Normal",
  57642. height: math.unit(6.5, "feet"),
  57643. default: true,
  57644. form: "anthro"
  57645. },
  57646. {
  57647. name: "Normal",
  57648. height: math.unit(6, "feet"),
  57649. default: true,
  57650. form: "feral"
  57651. },
  57652. ],
  57653. {
  57654. "anthro": {
  57655. name: "Anthro",
  57656. default: true
  57657. },
  57658. "feral": {
  57659. name: "Feral",
  57660. },
  57661. }
  57662. ))
  57663. characterMakers.push(() => makeCharacter(
  57664. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57665. {
  57666. front: {
  57667. height: math.unit(4 + 1/12, "feet"),
  57668. weight: math.unit(114, "lb"),
  57669. name: "Front",
  57670. image: {
  57671. source: "./media/characters/dex/front.svg",
  57672. extra: 787/680,
  57673. bottom: 18/805
  57674. }
  57675. },
  57676. side: {
  57677. height: math.unit(4 + 1/12, "feet"),
  57678. weight: math.unit(114, "lb"),
  57679. name: "Side",
  57680. image: {
  57681. source: "./media/characters/dex/side.svg",
  57682. extra: 785/680,
  57683. bottom: 12/797
  57684. }
  57685. },
  57686. back: {
  57687. height: math.unit(4 + 1/12, "feet"),
  57688. weight: math.unit(114, "lb"),
  57689. name: "Back",
  57690. image: {
  57691. source: "./media/characters/dex/back.svg",
  57692. extra: 785/681,
  57693. bottom: 17/802
  57694. }
  57695. },
  57696. loungewear: {
  57697. height: math.unit(4 + 1/12, "feet"),
  57698. weight: math.unit(114, "lb"),
  57699. name: "Loungewear",
  57700. image: {
  57701. source: "./media/characters/dex/loungewear.svg",
  57702. extra: 787/680,
  57703. bottom: 18/805
  57704. }
  57705. },
  57706. workout: {
  57707. height: math.unit(4 + 1/12, "feet"),
  57708. weight: math.unit(114, "lb"),
  57709. name: "Workout",
  57710. image: {
  57711. source: "./media/characters/dex/workout.svg",
  57712. extra: 787/680,
  57713. bottom: 18/805
  57714. }
  57715. },
  57716. schoolUniform: {
  57717. height: math.unit(4 + 1/12, "feet"),
  57718. weight: math.unit(114, "lb"),
  57719. name: "School Uniform",
  57720. image: {
  57721. source: "./media/characters/dex/school-uniform.svg",
  57722. extra: 787/680,
  57723. bottom: 18/805
  57724. }
  57725. },
  57726. maw: {
  57727. height: math.unit(0.55, "feet"),
  57728. name: "Maw",
  57729. image: {
  57730. source: "./media/characters/dex/maw.svg"
  57731. }
  57732. },
  57733. paw: {
  57734. height: math.unit(0.87, "feet"),
  57735. name: "Paw",
  57736. image: {
  57737. source: "./media/characters/dex/paw.svg"
  57738. }
  57739. },
  57740. bust: {
  57741. height: math.unit(1.67, "feet"),
  57742. name: "Bust",
  57743. image: {
  57744. source: "./media/characters/dex/bust.svg"
  57745. }
  57746. },
  57747. },
  57748. [
  57749. {
  57750. name: "Normal",
  57751. height: math.unit(4 + 1/12, "feet"),
  57752. default: true
  57753. },
  57754. ]
  57755. ))
  57756. characterMakers.push(() => makeCharacter(
  57757. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57758. {
  57759. front: {
  57760. height: math.unit(4 + 3/12, "feet"),
  57761. weight: math.unit(60, "lb"),
  57762. name: "Front",
  57763. image: {
  57764. source: "./media/characters/silke/front.svg",
  57765. extra: 1334/1122,
  57766. bottom: 21/1355
  57767. }
  57768. },
  57769. back: {
  57770. height: math.unit(4 + 3/12, "feet"),
  57771. weight: math.unit(60, "lb"),
  57772. name: "Back",
  57773. image: {
  57774. source: "./media/characters/silke/back.svg",
  57775. extra: 1328/1092,
  57776. bottom: 16/1344
  57777. }
  57778. },
  57779. dressed: {
  57780. height: math.unit(4 + 3/12, "feet"),
  57781. weight: math.unit(60, "lb"),
  57782. name: "Dressed",
  57783. image: {
  57784. source: "./media/characters/silke/dressed.svg",
  57785. extra: 1334/1122,
  57786. bottom: 43/1377
  57787. }
  57788. },
  57789. },
  57790. [
  57791. {
  57792. name: "Normal",
  57793. height: math.unit(4 + 3/12, "feet"),
  57794. default: true
  57795. },
  57796. ]
  57797. ))
  57798. characterMakers.push(() => makeCharacter(
  57799. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57800. {
  57801. front: {
  57802. height: math.unit(1.58, "meters"),
  57803. weight: math.unit(47, "kg"),
  57804. name: "Front",
  57805. image: {
  57806. source: "./media/characters/wireshark/front.svg",
  57807. extra: 883/838,
  57808. bottom: 66/949
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(1.58, "meters"),
  57816. default: true
  57817. },
  57818. ]
  57819. ))
  57820. characterMakers.push(() => makeCharacter(
  57821. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57822. {
  57823. front: {
  57824. height: math.unit(6, "meters"),
  57825. weight: math.unit(15000, "kg"),
  57826. name: "Front",
  57827. image: {
  57828. source: "./media/characters/gallagher/front.svg",
  57829. extra: 532/493,
  57830. bottom: 0/532
  57831. }
  57832. },
  57833. },
  57834. [
  57835. {
  57836. name: "Normal",
  57837. height: math.unit(6, "meters"),
  57838. default: true
  57839. },
  57840. ]
  57841. ))
  57842. characterMakers.push(() => makeCharacter(
  57843. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57844. {
  57845. front: {
  57846. height: math.unit(2.4, "meters"),
  57847. weight: math.unit(270, "kg"),
  57848. name: "Front",
  57849. image: {
  57850. source: "./media/characters/alice/front.svg",
  57851. extra: 950/900,
  57852. bottom: 36/986
  57853. }
  57854. },
  57855. side: {
  57856. height: math.unit(2.4, "meters"),
  57857. weight: math.unit(270, "kg"),
  57858. name: "Side",
  57859. image: {
  57860. source: "./media/characters/alice/side.svg",
  57861. extra: 921/876,
  57862. bottom: 19/940
  57863. }
  57864. },
  57865. dressed: {
  57866. height: math.unit(2.4, "meters"),
  57867. weight: math.unit(270, "kg"),
  57868. name: "Dressed",
  57869. image: {
  57870. source: "./media/characters/alice/dressed.svg",
  57871. extra: 905/850,
  57872. bottom: 81/986
  57873. }
  57874. },
  57875. fishnet: {
  57876. height: math.unit(2.4, "meters"),
  57877. weight: math.unit(270, "kg"),
  57878. name: "Fishnet",
  57879. image: {
  57880. source: "./media/characters/alice/fishnet.svg",
  57881. extra: 905/850,
  57882. bottom: 81/986
  57883. }
  57884. },
  57885. },
  57886. [
  57887. {
  57888. name: "Normal",
  57889. height: math.unit(2.4, "meters"),
  57890. default: true
  57891. },
  57892. ]
  57893. ))
  57894. characterMakers.push(() => makeCharacter(
  57895. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57896. {
  57897. front: {
  57898. height: math.unit(175.25, "feet"),
  57899. name: "Front",
  57900. image: {
  57901. source: "./media/characters/fio/front.svg",
  57902. extra: 1883/1591,
  57903. bottom: 34/1917
  57904. }
  57905. },
  57906. },
  57907. [
  57908. {
  57909. name: "Normal",
  57910. height: math.unit(175.25, "cm"),
  57911. default: true
  57912. },
  57913. ]
  57914. ))
  57915. characterMakers.push(() => makeCharacter(
  57916. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57917. {
  57918. side: {
  57919. height: math.unit(6, "meters"),
  57920. weight: math.unit(3400, "kg"),
  57921. preyCapacity: math.unit(1700, "liters"),
  57922. name: "Side",
  57923. image: {
  57924. source: "./media/characters/hass/side.svg",
  57925. extra: 1058/997,
  57926. bottom: 177/1235
  57927. }
  57928. },
  57929. feeding: {
  57930. height: math.unit(6*0.63, "meters"),
  57931. weight: math.unit(3400, "kg"),
  57932. preyCapacity: math.unit(1700, "liters"),
  57933. name: "Feeding",
  57934. image: {
  57935. source: "./media/characters/hass/feeding.svg",
  57936. extra: 689/579,
  57937. bottom: 146/835
  57938. }
  57939. },
  57940. guts: {
  57941. height: math.unit(6, "meters"),
  57942. weight: math.unit(3400, "kg"),
  57943. name: "Guts",
  57944. image: {
  57945. source: "./media/characters/hass/guts.svg",
  57946. extra: 1223/1198,
  57947. bottom: 182/1405
  57948. }
  57949. },
  57950. dickFront: {
  57951. height: math.unit(1.4, "meters"),
  57952. name: "Dick (Front)",
  57953. image: {
  57954. source: "./media/characters/hass/dick-front.svg"
  57955. }
  57956. },
  57957. dickSide: {
  57958. height: math.unit(1.3, "meters"),
  57959. name: "Dick (Side)",
  57960. image: {
  57961. source: "./media/characters/hass/dick-side.svg"
  57962. }
  57963. },
  57964. dickBack: {
  57965. height: math.unit(1.4, "meters"),
  57966. name: "Dick (Back)",
  57967. image: {
  57968. source: "./media/characters/hass/dick-back.svg"
  57969. }
  57970. },
  57971. },
  57972. [
  57973. {
  57974. name: "Normal",
  57975. height: math.unit(6, "meters"),
  57976. default: true
  57977. },
  57978. ]
  57979. ))
  57980. characterMakers.push(() => makeCharacter(
  57981. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57982. {
  57983. front: {
  57984. height: math.unit(4, "feet"),
  57985. weight: math.unit(60, "lb"),
  57986. name: "Front",
  57987. image: {
  57988. source: "./media/characters/hickory-finnegan/front.svg",
  57989. extra: 444/411,
  57990. bottom: 10/454
  57991. }
  57992. },
  57993. side: {
  57994. height: math.unit(4, "feet"),
  57995. weight: math.unit(60, "lb"),
  57996. name: "Side",
  57997. image: {
  57998. source: "./media/characters/hickory-finnegan/side.svg",
  57999. extra: 444/411,
  58000. bottom: 10/454
  58001. }
  58002. },
  58003. back: {
  58004. height: math.unit(4, "feet"),
  58005. weight: math.unit(60, "lb"),
  58006. name: "Back",
  58007. image: {
  58008. source: "./media/characters/hickory-finnegan/back.svg",
  58009. extra: 444/411,
  58010. bottom: 10/454
  58011. }
  58012. },
  58013. },
  58014. [
  58015. {
  58016. name: "Normal",
  58017. height: math.unit(4, "feet"),
  58018. default: true
  58019. },
  58020. ]
  58021. ))
  58022. characterMakers.push(() => makeCharacter(
  58023. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  58024. {
  58025. snivy_front: {
  58026. height: math.unit(2, "feet"),
  58027. weight: math.unit(17.9, "lb"),
  58028. name: "Front",
  58029. image: {
  58030. source: "./media/characters/robin-phox/snivy-front.svg",
  58031. extra: 569/504,
  58032. bottom: 33/602
  58033. },
  58034. form: "snivy",
  58035. default: true
  58036. },
  58037. snivy_frontNsfw: {
  58038. height: math.unit(2, "feet"),
  58039. weight: math.unit(17.9, "lb"),
  58040. name: "Front (NSFW)",
  58041. image: {
  58042. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  58043. extra: 569/504,
  58044. bottom: 33/602
  58045. },
  58046. form: "snivy",
  58047. },
  58048. snivy_back: {
  58049. height: math.unit(2, "feet"),
  58050. weight: math.unit(17.9, "lb"),
  58051. name: "Back",
  58052. image: {
  58053. source: "./media/characters/robin-phox/snivy-back.svg",
  58054. extra: 577/508,
  58055. bottom: 21/598
  58056. },
  58057. form: "snivy",
  58058. },
  58059. snivy_foot: {
  58060. height: math.unit(0.68, "feet"),
  58061. name: "Foot",
  58062. image: {
  58063. source: "./media/characters/robin-phox/snivy-foot.svg"
  58064. },
  58065. form: "snivy",
  58066. },
  58067. snivy_sole: {
  58068. height: math.unit(0.68, "feet"),
  58069. name: "Sole",
  58070. image: {
  58071. source: "./media/characters/robin-phox/snivy-sole.svg"
  58072. },
  58073. form: "snivy",
  58074. },
  58075. yoshi_front: {
  58076. height: math.unit(6, "feet"),
  58077. weight: math.unit(150, "lb"),
  58078. name: "Front",
  58079. image: {
  58080. source: "./media/characters/robin-phox/yoshi-front.svg",
  58081. extra: 890/792,
  58082. bottom: 29/919
  58083. },
  58084. form: "yoshi",
  58085. default: true
  58086. },
  58087. yoshi_frontNsfw: {
  58088. height: math.unit(6, "feet"),
  58089. weight: math.unit(150, "lb"),
  58090. name: "Front (NSFW)",
  58091. image: {
  58092. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58093. extra: 890/792,
  58094. bottom: 29/919
  58095. },
  58096. form: "yoshi",
  58097. },
  58098. yoshi_back: {
  58099. height: math.unit(6, "feet"),
  58100. weight: math.unit(150, "lb"),
  58101. name: "Back",
  58102. image: {
  58103. source: "./media/characters/robin-phox/yoshi-back.svg",
  58104. extra: 890/792,
  58105. bottom: 29/919
  58106. },
  58107. form: "yoshi",
  58108. },
  58109. yoshi_foot: {
  58110. height: math.unit(1.5, "feet"),
  58111. name: "Foot",
  58112. image: {
  58113. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58114. },
  58115. form: "yoshi",
  58116. },
  58117. delphox_front: {
  58118. height: math.unit(4 + 11/12, "feet"),
  58119. weight: math.unit(86, "lb"),
  58120. name: "Front",
  58121. image: {
  58122. source: "./media/characters/robin-phox/delphox-front.svg",
  58123. extra: 1266/1069,
  58124. bottom: 32/1298
  58125. },
  58126. form: "delphox",
  58127. default: true
  58128. },
  58129. delphox_frontNsfw: {
  58130. height: math.unit(4 + 11/12, "feet"),
  58131. weight: math.unit(86, "lb"),
  58132. name: "Front (NSFW)",
  58133. image: {
  58134. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58135. extra: 1266/1069,
  58136. bottom: 32/1298
  58137. },
  58138. form: "delphox",
  58139. },
  58140. delphox_back: {
  58141. height: math.unit(4 + 11/12, "feet"),
  58142. weight: math.unit(86, "lb"),
  58143. name: "Back",
  58144. image: {
  58145. source: "./media/characters/robin-phox/delphox-back.svg",
  58146. extra: 1269/1083,
  58147. bottom: 15/1284
  58148. },
  58149. form: "delphox",
  58150. },
  58151. mienshao_front: {
  58152. height: math.unit(4 + 7/12, "feet"),
  58153. weight: math.unit(78.3, "lb"),
  58154. name: "Front",
  58155. image: {
  58156. source: "./media/characters/robin-phox/mienshao-front.svg",
  58157. extra: 1052/970,
  58158. bottom: 108/1160
  58159. },
  58160. form: "mienshao",
  58161. default: true
  58162. },
  58163. mienshao_frontNsfw: {
  58164. height: math.unit(4 + 7/12, "feet"),
  58165. weight: math.unit(78.3, "lb"),
  58166. name: "Front (NSFW)",
  58167. image: {
  58168. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58169. extra: 1052/970,
  58170. bottom: 108/1160
  58171. },
  58172. form: "mienshao",
  58173. },
  58174. mienshao_back: {
  58175. height: math.unit(4 + 7/12, "feet"),
  58176. weight: math.unit(78.3, "lb"),
  58177. name: "Back",
  58178. image: {
  58179. source: "./media/characters/robin-phox/mienshao-back.svg",
  58180. extra: 1102/982,
  58181. bottom: 32/1134
  58182. },
  58183. form: "mienshao",
  58184. },
  58185. inteleon_front: {
  58186. height: math.unit(6 + 3/12, "feet"),
  58187. weight: math.unit(99.6, "lb"),
  58188. name: "Front",
  58189. image: {
  58190. source: "./media/characters/robin-phox/inteleon-front.svg",
  58191. extra: 910/799,
  58192. bottom: 76/986
  58193. },
  58194. form: "inteleon",
  58195. default: true
  58196. },
  58197. inteleon_frontNsfw: {
  58198. height: math.unit(6 + 3/12, "feet"),
  58199. weight: math.unit(99.6, "lb"),
  58200. name: "Front (NSFW)",
  58201. image: {
  58202. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58203. extra: 910/799,
  58204. bottom: 76/986
  58205. },
  58206. form: "inteleon",
  58207. },
  58208. inteleon_back: {
  58209. height: math.unit(6 + 3/12, "feet"),
  58210. weight: math.unit(99.6, "lb"),
  58211. name: "Back",
  58212. image: {
  58213. source: "./media/characters/robin-phox/inteleon-back.svg",
  58214. extra: 907/796,
  58215. bottom: 25/932
  58216. },
  58217. form: "inteleon",
  58218. },
  58219. reshiram_front: {
  58220. height: math.unit(10 + 6/12, "feet"),
  58221. weight: math.unit(727.5, "lb"),
  58222. name: "Front",
  58223. image: {
  58224. source: "./media/characters/robin-phox/reshiram-front.svg",
  58225. extra: 1198/940,
  58226. bottom: 123/1321
  58227. },
  58228. form: "reshiram",
  58229. },
  58230. reshiram_frontNsfw: {
  58231. height: math.unit(10 + 6/12, "feet"),
  58232. weight: math.unit(727.5, "lb"),
  58233. name: "Front (NSFW)",
  58234. image: {
  58235. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58236. extra: 1198/940,
  58237. bottom: 123/1321
  58238. },
  58239. form: "reshiram",
  58240. },
  58241. reshiram_back: {
  58242. height: math.unit(10 + 6/12, "feet"),
  58243. weight: math.unit(727.5, "lb"),
  58244. name: "Back",
  58245. image: {
  58246. source: "./media/characters/robin-phox/reshiram-back.svg",
  58247. extra: 1024/904,
  58248. bottom: 85/1109
  58249. },
  58250. form: "reshiram",
  58251. },
  58252. samurott_front: {
  58253. height: math.unit(8, "feet"),
  58254. weight: math.unit(208.6, "lb"),
  58255. name: "Front",
  58256. image: {
  58257. source: "./media/characters/robin-phox/samurott-front.svg",
  58258. extra: 1048/984,
  58259. bottom: 100/1148
  58260. },
  58261. form: "samurott",
  58262. },
  58263. samurott_frontNsfw: {
  58264. height: math.unit(8, "feet"),
  58265. weight: math.unit(208.6, "lb"),
  58266. name: "Front NSFW",
  58267. image: {
  58268. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58269. extra: 1048/984,
  58270. bottom: 100/1148
  58271. },
  58272. form: "samurott",
  58273. },
  58274. samurott_back: {
  58275. height: math.unit(8, "feet"),
  58276. weight: math.unit(208.6, "lb"),
  58277. name: "Back",
  58278. image: {
  58279. source: "./media/characters/robin-phox/samurott-back.svg",
  58280. extra: 1110/1042,
  58281. bottom: 12/1122
  58282. },
  58283. form: "samurott",
  58284. },
  58285. samurott_feral: {
  58286. height: math.unit(4 + 11/12, "feet"),
  58287. weight: math.unit(208.6, "lb"),
  58288. name: "Feral",
  58289. image: {
  58290. source: "./media/characters/robin-phox/samurott-feral.svg",
  58291. extra: 766/681,
  58292. bottom: 108/874
  58293. },
  58294. form: "samurott",
  58295. },
  58296. },
  58297. [
  58298. {
  58299. name: "Normal",
  58300. height: math.unit(2, "feet"),
  58301. default: true,
  58302. form: "snivy"
  58303. },
  58304. {
  58305. name: "Normal",
  58306. height: math.unit(6, "feet"),
  58307. default: true,
  58308. form: "yoshi"
  58309. },
  58310. {
  58311. name: "Normal",
  58312. height: math.unit(4 + 11/12, "feet"),
  58313. default: true,
  58314. form: "delphox"
  58315. },
  58316. {
  58317. name: "Normal",
  58318. height: math.unit(4 + 7/12, "feet"),
  58319. default: true,
  58320. form: "mienshao"
  58321. },
  58322. {
  58323. name: "Normal",
  58324. height: math.unit(6 + 3/12, "feet"),
  58325. default: true,
  58326. form: "inteleon"
  58327. },
  58328. {
  58329. name: "Normal",
  58330. height: math.unit(10 + 6/12, "feet"),
  58331. default: true,
  58332. form: "reshiram"
  58333. },
  58334. {
  58335. name: "Normal",
  58336. height: math.unit(8, "feet"),
  58337. default: true,
  58338. form: "samurott"
  58339. },
  58340. {
  58341. name: "Macro",
  58342. height: math.unit(500, "feet"),
  58343. allForms: true
  58344. },
  58345. {
  58346. name: "Mega Macro",
  58347. height: math.unit(10, "earths"),
  58348. allForms: true
  58349. },
  58350. {
  58351. name: "Giga Macro",
  58352. height: math.unit(1, "galaxy"),
  58353. allForms: true
  58354. },
  58355. {
  58356. name: "Godly Macro",
  58357. height: math.unit(1e10, "multiverses"),
  58358. allForms: true
  58359. },
  58360. ],
  58361. {
  58362. "snivy": {
  58363. name: "Snivy",
  58364. default: true
  58365. },
  58366. "yoshi": {
  58367. name: "Yoshi",
  58368. },
  58369. "delphox": {
  58370. name: "Delphox",
  58371. },
  58372. "mienshao": {
  58373. name: "Mienshao",
  58374. },
  58375. "inteleon": {
  58376. name: "Inteleon",
  58377. },
  58378. "reshiram": {
  58379. name: "Reshiram",
  58380. },
  58381. "samurott": {
  58382. name: "Samurott",
  58383. },
  58384. }
  58385. ))
  58386. characterMakers.push(() => makeCharacter(
  58387. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58388. {
  58389. front: {
  58390. height: math.unit(4, "feet"),
  58391. name: "Front",
  58392. image: {
  58393. source: "./media/characters/ash-leung/front.svg",
  58394. extra: 1916/1792,
  58395. bottom: 50/1966
  58396. }
  58397. },
  58398. },
  58399. [
  58400. {
  58401. name: "Atomic",
  58402. height: math.unit(1, "angstrom")
  58403. },
  58404. {
  58405. name: "Microscopic",
  58406. height: math.unit(4000, "angstroms")
  58407. },
  58408. {
  58409. name: "Speck",
  58410. height: math.unit(1, "mm")
  58411. },
  58412. {
  58413. name: "Small",
  58414. height: math.unit(1, "inch")
  58415. },
  58416. {
  58417. name: "Normal",
  58418. height: math.unit(4, "feet"),
  58419. default: true
  58420. },
  58421. ]
  58422. ))
  58423. characterMakers.push(() => makeCharacter(
  58424. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58425. {
  58426. frontDressed: {
  58427. height: math.unit(2.08, "meters"),
  58428. weight: math.unit(175, "lb"),
  58429. name: "Front (Dressed)",
  58430. image: {
  58431. source: "./media/characters/carie/front-dressed.svg",
  58432. extra: 456/417,
  58433. bottom: 7/463
  58434. }
  58435. },
  58436. backDressed: {
  58437. height: math.unit(2.08, "meters"),
  58438. weight: math.unit(175, "lb"),
  58439. name: "Back (Dressed)",
  58440. image: {
  58441. source: "./media/characters/carie/back-dressed.svg",
  58442. extra: 455/414,
  58443. bottom: 11/466
  58444. }
  58445. },
  58446. front: {
  58447. height: math.unit(2, "meters"),
  58448. weight: math.unit(175, "lb"),
  58449. name: "Front",
  58450. image: {
  58451. source: "./media/characters/carie/front.svg",
  58452. extra: 438/399,
  58453. bottom: 12/450
  58454. }
  58455. },
  58456. back: {
  58457. height: math.unit(2, "meters"),
  58458. weight: math.unit(175, "lb"),
  58459. name: "Back",
  58460. image: {
  58461. source: "./media/characters/carie/back.svg",
  58462. extra: 438/397,
  58463. bottom: 7/445
  58464. }
  58465. },
  58466. },
  58467. [
  58468. {
  58469. name: "Normal",
  58470. height: math.unit(2.08, "meters"),
  58471. default: true
  58472. },
  58473. {
  58474. name: "Macro",
  58475. height: math.unit(2.08e3, "meters")
  58476. },
  58477. {
  58478. name: "Mega Macro",
  58479. height: math.unit(2.08e6, "meters")
  58480. },
  58481. {
  58482. name: "Giga Macro",
  58483. height: math.unit(2.08e9, "meters")
  58484. },
  58485. {
  58486. name: "Tera Macro",
  58487. height: math.unit(2.08e12, "meters")
  58488. },
  58489. {
  58490. name: "Peta Macro",
  58491. height: math.unit(2.08e15, "meters")
  58492. },
  58493. {
  58494. name: "Exa Macro",
  58495. height: math.unit(2.08e18, "meters")
  58496. },
  58497. {
  58498. name: "Zetta Macro",
  58499. height: math.unit(2.08e21, "meters")
  58500. },
  58501. {
  58502. name: "Yotta Macro",
  58503. height: math.unit(2.08e24, "meters")
  58504. },
  58505. ]
  58506. ))
  58507. characterMakers.push(() => makeCharacter(
  58508. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58509. {
  58510. front: {
  58511. height: math.unit(5 + 2/12, "feet"),
  58512. weight: math.unit(120, "lb"),
  58513. name: "Front",
  58514. image: {
  58515. source: "./media/characters/sai-bree/front.svg",
  58516. extra: 1843/1702,
  58517. bottom: 91/1934
  58518. }
  58519. },
  58520. back: {
  58521. height: math.unit(5 + 2/12, "feet"),
  58522. weight: math.unit(120, "lb"),
  58523. name: "Back",
  58524. image: {
  58525. source: "./media/characters/sai-bree/back.svg",
  58526. extra: 1809/1637,
  58527. bottom: 56/1865
  58528. }
  58529. },
  58530. },
  58531. [
  58532. {
  58533. name: "Normal",
  58534. height: math.unit(5 + 2/12, "feet"),
  58535. default: true
  58536. },
  58537. {
  58538. name: "Macro",
  58539. height: math.unit(500, "feet")
  58540. },
  58541. ]
  58542. ))
  58543. characterMakers.push(() => makeCharacter(
  58544. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58545. {
  58546. side: {
  58547. height: math.unit(0.77, "meters"),
  58548. weight: math.unit(120, "lb"),
  58549. name: "Side",
  58550. image: {
  58551. source: "./media/characters/davwyn/side.svg",
  58552. extra: 1557/1225,
  58553. bottom: 131/1688
  58554. }
  58555. },
  58556. front: {
  58557. height: math.unit(0.835410, "meters"),
  58558. weight: math.unit(120, "lb"),
  58559. name: "Front",
  58560. image: {
  58561. source: "./media/characters/davwyn/front.svg",
  58562. extra: 870/843,
  58563. bottom: 175/1045
  58564. }
  58565. },
  58566. },
  58567. [
  58568. {
  58569. name: "Minidrake",
  58570. height: math.unit(0.77/4, "meters")
  58571. },
  58572. {
  58573. name: "Normal",
  58574. height: math.unit(0.77, "meters"),
  58575. default: true
  58576. },
  58577. ]
  58578. ))
  58579. characterMakers.push(() => makeCharacter(
  58580. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58581. {
  58582. front: {
  58583. height: math.unit(10 + 3/12, "feet"),
  58584. weight: math.unit(2857, "lb"),
  58585. name: "Front",
  58586. image: {
  58587. source: "./media/characters/balans/front.svg",
  58588. extra: 427/402,
  58589. bottom: 26/453
  58590. }
  58591. },
  58592. side: {
  58593. height: math.unit(10 + 3/12, "feet"),
  58594. weight: math.unit(2857, "lb"),
  58595. name: "Side",
  58596. image: {
  58597. source: "./media/characters/balans/side.svg",
  58598. extra: 397/371,
  58599. bottom: 17/414
  58600. }
  58601. },
  58602. back: {
  58603. height: math.unit(10 + 3/12, "feet"),
  58604. weight: math.unit(2857, "lb"),
  58605. name: "Back",
  58606. image: {
  58607. source: "./media/characters/balans/back.svg",
  58608. extra: 408/381,
  58609. bottom: 14/422
  58610. }
  58611. },
  58612. hand: {
  58613. height: math.unit(1.15, "feet"),
  58614. name: "Hand",
  58615. image: {
  58616. source: "./media/characters/balans/hand.svg"
  58617. }
  58618. },
  58619. footRest: {
  58620. height: math.unit(3.1, "feet"),
  58621. name: "Foot (Rest)",
  58622. image: {
  58623. source: "./media/characters/balans/foot-rest.svg"
  58624. }
  58625. },
  58626. footActive: {
  58627. height: math.unit(3.5, "feet"),
  58628. name: "Foot (Active)",
  58629. image: {
  58630. source: "./media/characters/balans/foot-active.svg"
  58631. }
  58632. },
  58633. },
  58634. [
  58635. {
  58636. name: "Normal",
  58637. height: math.unit(10 + 3/12, "feet"),
  58638. default: true
  58639. },
  58640. ]
  58641. ))
  58642. characterMakers.push(() => makeCharacter(
  58643. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58644. {
  58645. side: {
  58646. height: math.unit(9, "meters"),
  58647. weight: math.unit(114, "tonnes"),
  58648. name: "Side",
  58649. image: {
  58650. source: "./media/characters/eldkveikir/side.svg",
  58651. extra: 1927/338,
  58652. bottom: 42/1969
  58653. }
  58654. },
  58655. sitting: {
  58656. height: math.unit(13.4, "meters"),
  58657. weight: math.unit(114, "tonnes"),
  58658. name: "Sitting",
  58659. image: {
  58660. source: "./media/characters/eldkveikir/sitting.svg",
  58661. extra: 1108/963,
  58662. bottom: 610/1718
  58663. }
  58664. },
  58665. maw: {
  58666. height: math.unit(8.36, "meters"),
  58667. name: "Maw",
  58668. image: {
  58669. source: "./media/characters/eldkveikir/maw.svg"
  58670. }
  58671. },
  58672. hand: {
  58673. height: math.unit(4.84, "meters"),
  58674. name: "Hand",
  58675. image: {
  58676. source: "./media/characters/eldkveikir/hand.svg"
  58677. }
  58678. },
  58679. foot: {
  58680. height: math.unit(6.9, "meters"),
  58681. name: "Foot",
  58682. image: {
  58683. source: "./media/characters/eldkveikir/foot.svg"
  58684. }
  58685. },
  58686. genitals: {
  58687. height: math.unit(9.6, "meters"),
  58688. name: "Genitals",
  58689. image: {
  58690. source: "./media/characters/eldkveikir/genitals.svg"
  58691. }
  58692. },
  58693. },
  58694. [
  58695. {
  58696. name: "Normal",
  58697. height: math.unit(9, "meters"),
  58698. default: true
  58699. },
  58700. ]
  58701. ))
  58702. characterMakers.push(() => makeCharacter(
  58703. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58704. {
  58705. front: {
  58706. height: math.unit(14, "feet"),
  58707. weight: math.unit(4100, "lb"),
  58708. name: "Front",
  58709. image: {
  58710. source: "./media/characters/arrow/front.svg",
  58711. extra: 330/318,
  58712. bottom: 56/386
  58713. }
  58714. },
  58715. },
  58716. [
  58717. {
  58718. name: "Normal",
  58719. height: math.unit(14, "feet"),
  58720. default: true
  58721. },
  58722. {
  58723. name: "Minimacro",
  58724. height: math.unit(63, "feet")
  58725. },
  58726. {
  58727. name: "Macro",
  58728. height: math.unit(630, "feet")
  58729. },
  58730. {
  58731. name: "Megamacro",
  58732. height: math.unit(12600, "feet")
  58733. },
  58734. {
  58735. name: "Gigamacro",
  58736. height: math.unit(18000, "miles")
  58737. },
  58738. ]
  58739. ))
  58740. characterMakers.push(() => makeCharacter(
  58741. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58742. {
  58743. front: {
  58744. height: math.unit(10, "feet"),
  58745. weight: math.unit(2.4, "tons"),
  58746. name: "Front",
  58747. image: {
  58748. source: "./media/characters/3yk-k0-unit/front.svg",
  58749. extra: 573/561,
  58750. bottom: 33/606
  58751. }
  58752. },
  58753. back: {
  58754. height: math.unit(10, "feet"),
  58755. weight: math.unit(2.4, "tons"),
  58756. name: "Back",
  58757. image: {
  58758. source: "./media/characters/3yk-k0-unit/back.svg",
  58759. extra: 614/573,
  58760. bottom: 32/646
  58761. }
  58762. },
  58763. maw: {
  58764. height: math.unit(2.15, "feet"),
  58765. name: "Maw",
  58766. image: {
  58767. source: "./media/characters/3yk-k0-unit/maw.svg"
  58768. }
  58769. },
  58770. },
  58771. [
  58772. {
  58773. name: "Normal",
  58774. height: math.unit(10, "feet"),
  58775. default: true
  58776. },
  58777. ]
  58778. ))
  58779. characterMakers.push(() => makeCharacter(
  58780. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58781. {
  58782. front: {
  58783. height: math.unit(8 + 8/12, "feet"),
  58784. name: "Front",
  58785. image: {
  58786. source: "./media/characters/nemo/front.svg",
  58787. extra: 1308/1217,
  58788. bottom: 57/1365
  58789. }
  58790. },
  58791. },
  58792. [
  58793. {
  58794. name: "Normal",
  58795. height: math.unit(8 + 8/12, "feet"),
  58796. default: true
  58797. },
  58798. ]
  58799. ))
  58800. characterMakers.push(() => makeCharacter(
  58801. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58802. {
  58803. front: {
  58804. height: math.unit(8, "feet"),
  58805. weight: math.unit(760, "lb"),
  58806. name: "Front",
  58807. image: {
  58808. source: "./media/characters/rexx/front.svg",
  58809. extra: 786/750,
  58810. bottom: 17/803
  58811. },
  58812. extraAttributes: {
  58813. "pawLength": {
  58814. name: "Paw Length",
  58815. power: 1,
  58816. type: "length",
  58817. base: math.unit(27, "inches")
  58818. },
  58819. }
  58820. },
  58821. },
  58822. [
  58823. {
  58824. name: "Micro",
  58825. height: math.unit(2, "inches")
  58826. },
  58827. {
  58828. name: "Normal",
  58829. height: math.unit(8, "feet"),
  58830. default: true
  58831. },
  58832. {
  58833. name: "Macro",
  58834. height: math.unit(150, "feet")
  58835. },
  58836. ]
  58837. ))
  58838. characterMakers.push(() => makeCharacter(
  58839. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58840. {
  58841. front: {
  58842. height: math.unit(18, "feet"),
  58843. weight: math.unit(1975, "lb"),
  58844. name: "Front",
  58845. image: {
  58846. source: "./media/characters/draco/front.svg",
  58847. extra: 1325/1241,
  58848. bottom: 83/1408
  58849. }
  58850. },
  58851. back: {
  58852. height: math.unit(18, "feet"),
  58853. weight: math.unit(1975, "lb"),
  58854. name: "Back",
  58855. image: {
  58856. source: "./media/characters/draco/back.svg",
  58857. extra: 1332/1250,
  58858. bottom: 43/1375
  58859. }
  58860. },
  58861. dick: {
  58862. height: math.unit(7.5, "feet"),
  58863. name: "Dick",
  58864. image: {
  58865. source: "./media/characters/draco/dick.svg"
  58866. }
  58867. },
  58868. },
  58869. [
  58870. {
  58871. name: "Normal",
  58872. height: math.unit(18, "feet"),
  58873. default: true
  58874. },
  58875. ]
  58876. ))
  58877. characterMakers.push(() => makeCharacter(
  58878. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58879. {
  58880. front: {
  58881. height: math.unit(3.2, "meters"),
  58882. name: "Front",
  58883. image: {
  58884. source: "./media/characters/harriett/front.svg",
  58885. extra: 1966/1915,
  58886. bottom: 9/1975
  58887. }
  58888. },
  58889. },
  58890. [
  58891. {
  58892. name: "Normal",
  58893. height: math.unit(3.2, "meters"),
  58894. default: true
  58895. },
  58896. ]
  58897. ))
  58898. characterMakers.push(() => makeCharacter(
  58899. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58900. {
  58901. standing: {
  58902. height: math.unit(180, "cm"),
  58903. weight: math.unit(185, "lb"),
  58904. name: "Standing",
  58905. image: {
  58906. source: "./media/characters/serpentus/standing.svg",
  58907. extra: 882/878,
  58908. bottom: 16/898
  58909. }
  58910. },
  58911. sitting: {
  58912. height: math.unit(0.8, "meter"),
  58913. weight: math.unit(155, "lb"),
  58914. name: "Sitting",
  58915. image: {
  58916. source: "./media/characters/serpentus/sitting.svg",
  58917. extra: 293/290,
  58918. bottom: 140/433
  58919. }
  58920. },
  58921. },
  58922. [
  58923. {
  58924. name: "Normal",
  58925. height: math.unit(1.8, "meter"),
  58926. default: true
  58927. },
  58928. ]
  58929. ))
  58930. characterMakers.push(() => makeCharacter(
  58931. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58932. {
  58933. front: {
  58934. height: math.unit(5.7174385736, "feet"),
  58935. name: "Front",
  58936. image: {
  58937. source: "./media/characters/nova-polecat/front.svg",
  58938. extra: 1317/1216,
  58939. bottom: 92/1409
  58940. }
  58941. },
  58942. },
  58943. [
  58944. {
  58945. name: "Normal",
  58946. height: math.unit(5.7174385736, "feet"),
  58947. default: true
  58948. },
  58949. ]
  58950. ))
  58951. characterMakers.push(() => makeCharacter(
  58952. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58953. {
  58954. front: {
  58955. height: math.unit(5 + 4/12, "feet"),
  58956. weight: math.unit(250, "lb"),
  58957. name: "Front",
  58958. image: {
  58959. source: "./media/characters/mook/front.svg",
  58960. extra: 1088/1037,
  58961. bottom: 132/1220
  58962. }
  58963. },
  58964. back: {
  58965. height: math.unit(5 + 1/12, "feet"),
  58966. weight: math.unit(250, "lb"),
  58967. name: "Back",
  58968. image: {
  58969. source: "./media/characters/mook/back.svg",
  58970. extra: 1184/905,
  58971. bottom: 96/1280
  58972. }
  58973. },
  58974. head: {
  58975. height: math.unit(1.85, "feet"),
  58976. name: "Head",
  58977. image: {
  58978. source: "./media/characters/mook/head.svg"
  58979. }
  58980. },
  58981. hand: {
  58982. height: math.unit(1.9, "feet"),
  58983. name: "Hand",
  58984. image: {
  58985. source: "./media/characters/mook/hand.svg"
  58986. }
  58987. },
  58988. palm: {
  58989. height: math.unit(1.84, "feet"),
  58990. name: "Palm",
  58991. image: {
  58992. source: "./media/characters/mook/palm.svg"
  58993. }
  58994. },
  58995. foot: {
  58996. height: math.unit(1.44, "feet"),
  58997. name: "Foot",
  58998. image: {
  58999. source: "./media/characters/mook/foot.svg"
  59000. }
  59001. },
  59002. sole: {
  59003. height: math.unit(1.44, "feet"),
  59004. name: "Sole",
  59005. image: {
  59006. source: "./media/characters/mook/sole.svg"
  59007. }
  59008. },
  59009. },
  59010. [
  59011. {
  59012. name: "Normal",
  59013. height: math.unit(5 + 4/12, "feet"),
  59014. default: true
  59015. },
  59016. {
  59017. name: "Big",
  59018. height: math.unit(12, "feet")
  59019. },
  59020. ]
  59021. ))
  59022. characterMakers.push(() => makeCharacter(
  59023. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  59024. {
  59025. front: {
  59026. height: math.unit(6 + 10/12, "feet"),
  59027. weight: math.unit(233, "lb"),
  59028. name: "Front",
  59029. image: {
  59030. source: "./media/characters/kayla/front.svg",
  59031. extra: 1850/1775,
  59032. bottom: 65/1915
  59033. }
  59034. },
  59035. },
  59036. [
  59037. {
  59038. name: "Normal",
  59039. height: math.unit(6 + 10/12, "feet"),
  59040. default: true
  59041. },
  59042. {
  59043. name: "Amazonian",
  59044. height: math.unit(12 + 5/12, "feet")
  59045. },
  59046. {
  59047. name: "Mini Giantess",
  59048. height: math.unit(26, "feet")
  59049. },
  59050. {
  59051. name: "Giantess",
  59052. height: math.unit(200, "feet")
  59053. },
  59054. {
  59055. name: "Mega Giantess",
  59056. height: math.unit(2500, "feet")
  59057. },
  59058. {
  59059. name: "City Sized",
  59060. height: math.unit(50, "miles")
  59061. },
  59062. {
  59063. name: "Country Sized",
  59064. height: math.unit(500, "miles")
  59065. },
  59066. {
  59067. name: "Continent Sized",
  59068. height: math.unit(2500, "miles")
  59069. },
  59070. {
  59071. name: "Planet Sized",
  59072. height: math.unit(10000, "miles")
  59073. },
  59074. {
  59075. name: "Star Sized",
  59076. height: math.unit(5e6, "miles")
  59077. },
  59078. {
  59079. name: "Solar System Sized",
  59080. height: math.unit(125, "AU")
  59081. },
  59082. {
  59083. name: "Galaxy Sized",
  59084. height: math.unit(300e3, "lightyears")
  59085. },
  59086. {
  59087. name: "Universe Sized",
  59088. height: math.unit(200e9, "lightyears")
  59089. },
  59090. {
  59091. name: "Multiverse Sized",
  59092. height: math.unit(20, "exauniverses")
  59093. },
  59094. {
  59095. name: "Mother of Existence",
  59096. height: math.unit(1e6, "yottauniverses")
  59097. },
  59098. ]
  59099. ))
  59100. characterMakers.push(() => makeCharacter(
  59101. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59102. {
  59103. side: {
  59104. height: math.unit(9.5, "meters"),
  59105. name: "Side",
  59106. image: {
  59107. source: "./media/characters/kulve-ragnarok/side.svg",
  59108. extra: 364/326,
  59109. bottom: 50/414
  59110. }
  59111. },
  59112. },
  59113. [
  59114. {
  59115. name: "Normal",
  59116. height: math.unit(9.5, "meters"),
  59117. default: true
  59118. },
  59119. ]
  59120. ))
  59121. characterMakers.push(() => makeCharacter(
  59122. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59123. {
  59124. front: {
  59125. height: math.unit(8 + 9/12, "feet"),
  59126. name: "Front",
  59127. image: {
  59128. source: "./media/characters/atlas-goat/front.svg",
  59129. extra: 1462/1323,
  59130. bottom: 12/1474
  59131. }
  59132. },
  59133. },
  59134. [
  59135. {
  59136. name: "Normal",
  59137. height: math.unit(8 + 9/12, "feet"),
  59138. default: true
  59139. },
  59140. {
  59141. name: "Skyline",
  59142. height: math.unit(845, "feet")
  59143. },
  59144. {
  59145. name: "Orbital",
  59146. height: math.unit(93000, "miles")
  59147. },
  59148. {
  59149. name: "Constellation",
  59150. height: math.unit(27000, "lightyears")
  59151. },
  59152. ]
  59153. ))
  59154. characterMakers.push(() => makeCharacter(
  59155. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59156. {
  59157. side: {
  59158. height: math.unit(1.8, "meters"),
  59159. weight: math.unit(120, "kg"),
  59160. name: "Side",
  59161. image: {
  59162. source: "./media/characters/xie-ling/side.svg",
  59163. extra: 646/574,
  59164. bottom: 44/690
  59165. }
  59166. },
  59167. },
  59168. [
  59169. {
  59170. name: "Tiny",
  59171. height: math.unit(1.80, "meters")
  59172. },
  59173. {
  59174. name: "Small",
  59175. height: math.unit(6, "meters")
  59176. },
  59177. {
  59178. name: "Medium",
  59179. height: math.unit(15, "meters")
  59180. },
  59181. {
  59182. name: "Normal",
  59183. height: math.unit(30, "meters"),
  59184. default: true
  59185. },
  59186. {
  59187. name: "Above Normal",
  59188. height: math.unit(60, "meters")
  59189. },
  59190. {
  59191. name: "Big",
  59192. height: math.unit(220, "meters")
  59193. },
  59194. {
  59195. name: "Giant",
  59196. height: math.unit(2.2, "km")
  59197. },
  59198. {
  59199. name: "Macro",
  59200. height: math.unit(25, "km")
  59201. },
  59202. {
  59203. name: "Mega Macro",
  59204. height: math.unit(350, "km")
  59205. },
  59206. {
  59207. name: "Mega Macro+",
  59208. height: math.unit(5000, "km")
  59209. },
  59210. {
  59211. name: "Goddess",
  59212. height: math.unit(3, "multiverses")
  59213. },
  59214. ]
  59215. ))
  59216. characterMakers.push(() => makeCharacter(
  59217. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59218. {
  59219. frontSfw: {
  59220. height: math.unit(5 + 11/12, "feet"),
  59221. weight: math.unit(210, "lb"),
  59222. name: "Front",
  59223. image: {
  59224. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59225. extra: 1928/1821,
  59226. bottom: 45/1973
  59227. }
  59228. },
  59229. backSfw: {
  59230. height: math.unit(5 + 11/12, "feet"),
  59231. weight: math.unit(210, "lb"),
  59232. name: "Back",
  59233. image: {
  59234. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59235. extra: 1920/1813,
  59236. bottom: 34/1954
  59237. }
  59238. },
  59239. frontNsfw: {
  59240. height: math.unit(5 + 11/12, "feet"),
  59241. weight: math.unit(210, "lb"),
  59242. name: "Front (NSFW)",
  59243. image: {
  59244. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59245. extra: 1928/1821,
  59246. bottom: 45/1973
  59247. }
  59248. },
  59249. backNsfw: {
  59250. height: math.unit(5 + 11/12, "feet"),
  59251. weight: math.unit(210, "lb"),
  59252. name: "Back (NSFW)",
  59253. image: {
  59254. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59255. extra: 1920/1813,
  59256. bottom: 34/1954
  59257. }
  59258. },
  59259. },
  59260. [
  59261. {
  59262. name: "Normal",
  59263. height: math.unit(5 + 11/12, "feet"),
  59264. default: true
  59265. },
  59266. {
  59267. name: "Goddess",
  59268. height: math.unit(20 + 3/12, "feet")
  59269. },
  59270. {
  59271. name: "Breaker of Man",
  59272. height: math.unit(329 + 9/12, "feet")
  59273. },
  59274. {
  59275. name: "Solar Justice",
  59276. height: math.unit(0.6, "solarradii")
  59277. },
  59278. {
  59279. name: "She Who Judges",
  59280. height: math.unit(1, "universe")
  59281. },
  59282. ]
  59283. ))
  59284. characterMakers.push(() => makeCharacter(
  59285. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59286. {
  59287. casual_front: {
  59288. height: math.unit(6 + 1/12, "feet"),
  59289. weight: math.unit(190, "lb"),
  59290. preyCapacity: math.unit(1, "people"),
  59291. name: "Front",
  59292. image: {
  59293. source: "./media/characters/managarmr/casual-front.svg",
  59294. extra: 411/381,
  59295. bottom: 15/426
  59296. },
  59297. extraAttributes: {
  59298. "pawSize": {
  59299. name: "Paw Size",
  59300. power: 1,
  59301. type: "length",
  59302. base: math.unit(0.2, "meters")
  59303. },
  59304. },
  59305. form: "casual",
  59306. },
  59307. casual_back: {
  59308. height: math.unit(6 + 1/12, "feet"),
  59309. weight: math.unit(190, "lb"),
  59310. preyCapacity: math.unit(1, "people"),
  59311. name: "Back",
  59312. image: {
  59313. source: "./media/characters/managarmr/casual-back.svg",
  59314. extra: 413/383,
  59315. bottom: 13/426
  59316. },
  59317. extraAttributes: {
  59318. "pawSize": {
  59319. name: "Paw Size",
  59320. power: 1,
  59321. type: "length",
  59322. base: math.unit(0.2, "meters")
  59323. },
  59324. },
  59325. form: "casual",
  59326. },
  59327. base_front: {
  59328. height: math.unit(7, "feet"),
  59329. weight: math.unit(210, "lb"),
  59330. preyCapacity: math.unit(2, "people"),
  59331. name: "Front",
  59332. image: {
  59333. source: "./media/characters/managarmr/base-front.svg",
  59334. extra: 580/485,
  59335. bottom: 32/612
  59336. },
  59337. extraAttributes: {
  59338. "wingspan": {
  59339. name: "Wingspan",
  59340. power: 1,
  59341. type: "length",
  59342. base: math.unit(4, "meters")
  59343. },
  59344. "pawSize": {
  59345. name: "Paw Size",
  59346. power: 1,
  59347. type: "length",
  59348. base: math.unit(0.2, "meters")
  59349. },
  59350. },
  59351. form: "base",
  59352. },
  59353. "true-divine_front": {
  59354. height: math.unit(40, "feet"),
  59355. weight: math.unit(39000, "lb"),
  59356. preyCapacity: math.unit(375, "people"),
  59357. name: "Front",
  59358. image: {
  59359. source: "./media/characters/managarmr/true-divine-front.svg",
  59360. extra: 725/573,
  59361. bottom: 120/845
  59362. },
  59363. extraAttributes: {
  59364. "wingspan": {
  59365. name: "Wingspan",
  59366. power: 1,
  59367. type: "length",
  59368. base: math.unit(20, "meters")
  59369. },
  59370. "pawSize": {
  59371. name: "Paw Size",
  59372. power: 1,
  59373. type: "length",
  59374. base: math.unit(1.5, "meters")
  59375. },
  59376. },
  59377. form: "true-divine",
  59378. },
  59379. },
  59380. [
  59381. {
  59382. name: "Normal",
  59383. height: math.unit(6 + 1/12, "feet"),
  59384. form: "casual",
  59385. default: true
  59386. },
  59387. {
  59388. name: "Normal",
  59389. height: math.unit(7, "feet"),
  59390. form: "base",
  59391. default: true
  59392. },
  59393. ],
  59394. {
  59395. "casual": {
  59396. name: "Casual",
  59397. default: true
  59398. },
  59399. "base": {
  59400. name: "Base",
  59401. },
  59402. "true-divine": {
  59403. name: "True Divine",
  59404. },
  59405. }
  59406. ))
  59407. characterMakers.push(() => makeCharacter(
  59408. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59409. {
  59410. front: {
  59411. height: math.unit(1.8, "meters"),
  59412. weight: math.unit(110, "kg"),
  59413. name: "Front",
  59414. image: {
  59415. source: "./media/characters/mystra/front.svg",
  59416. extra: 529/442,
  59417. bottom: 31/560
  59418. }
  59419. },
  59420. frontLewd: {
  59421. height: math.unit(1.8, "meters"),
  59422. weight: math.unit(110, "kg"),
  59423. name: "Front (Lewd)",
  59424. image: {
  59425. source: "./media/characters/mystra/front-lewd.svg",
  59426. extra: 529/442,
  59427. bottom: 31/560
  59428. }
  59429. },
  59430. head: {
  59431. height: math.unit(1.63, "feet"),
  59432. name: "Head",
  59433. image: {
  59434. source: "./media/characters/mystra/head.svg"
  59435. }
  59436. },
  59437. paw: {
  59438. height: math.unit(1.9, "feet"),
  59439. name: "Paw",
  59440. image: {
  59441. source: "./media/characters/mystra/paw.svg"
  59442. }
  59443. },
  59444. },
  59445. [
  59446. {
  59447. name: "Incognito",
  59448. height: math.unit(2.3, "meters")
  59449. },
  59450. {
  59451. name: "Small Macro",
  59452. height: math.unit(300, "meters")
  59453. },
  59454. {
  59455. name: "Small Mega",
  59456. height: math.unit(2, "km")
  59457. },
  59458. {
  59459. name: "Mega",
  59460. height: math.unit(30, "km")
  59461. },
  59462. {
  59463. name: "Small Giga",
  59464. height: math.unit(100, "km")
  59465. },
  59466. {
  59467. name: "Giga",
  59468. height: math.unit(1000, "km"),
  59469. default: true
  59470. },
  59471. {
  59472. name: "Continental",
  59473. height: math.unit(5000, "km")
  59474. },
  59475. {
  59476. name: "Terra",
  59477. height: math.unit(20000, "km")
  59478. },
  59479. {
  59480. name: "Solar",
  59481. height: math.unit(2e6, "km")
  59482. },
  59483. {
  59484. name: "Galactic",
  59485. height: math.unit(528502, "lightyears")
  59486. },
  59487. {
  59488. name: "Universal",
  59489. height: math.unit(20, "universes")
  59490. },
  59491. ]
  59492. ))
  59493. characterMakers.push(() => makeCharacter(
  59494. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59495. {
  59496. front: {
  59497. height: math.unit(2, "meters"),
  59498. weight: math.unit(140, "kg"),
  59499. name: "Front",
  59500. image: {
  59501. source: "./media/characters/caleb/front.svg",
  59502. extra: 873/817,
  59503. bottom: 47/920
  59504. }
  59505. },
  59506. back: {
  59507. height: math.unit(2, "meters"),
  59508. weight: math.unit(140, "kg"),
  59509. name: "Back",
  59510. image: {
  59511. source: "./media/characters/caleb/back.svg",
  59512. extra: 877/828,
  59513. bottom: 24/901
  59514. }
  59515. },
  59516. snakeTail: {
  59517. height: math.unit(1.44, "feet"),
  59518. name: "Snake Tail",
  59519. image: {
  59520. source: "./media/characters/caleb/snake-tail.svg"
  59521. }
  59522. },
  59523. dick: {
  59524. height: math.unit(2.6, "feet"),
  59525. name: "Dick",
  59526. image: {
  59527. source: "./media/characters/caleb/dick.svg"
  59528. }
  59529. },
  59530. },
  59531. [
  59532. {
  59533. name: "Incognito",
  59534. height: math.unit(3, "meters")
  59535. },
  59536. {
  59537. name: "Home Size",
  59538. height: math.unit(200, "meters"),
  59539. default: true
  59540. },
  59541. {
  59542. name: "Macro",
  59543. height: math.unit(500, "meters")
  59544. },
  59545. {
  59546. name: "Big Macro",
  59547. height: math.unit(5, "km")
  59548. },
  59549. {
  59550. name: "Giga",
  59551. height: math.unit(250, "km")
  59552. },
  59553. {
  59554. name: "Giga+",
  59555. height: math.unit(5000, "km")
  59556. },
  59557. {
  59558. name: "Small Terra",
  59559. height: math.unit(35e3, "km")
  59560. },
  59561. {
  59562. name: "Terra",
  59563. height: math.unit(2e6, "km")
  59564. },
  59565. {
  59566. name: "Terra+",
  59567. height: math.unit(1.5e6, "km")
  59568. },
  59569. ]
  59570. ))
  59571. characterMakers.push(() => makeCharacter(
  59572. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59573. {
  59574. front: {
  59575. height: math.unit(2, "meters"),
  59576. weight: math.unit(120, "kg"),
  59577. name: "Front",
  59578. image: {
  59579. source: "./media/characters/gilirian/front.svg",
  59580. extra: 805/737,
  59581. bottom: 13/818
  59582. }
  59583. },
  59584. side: {
  59585. height: math.unit(2, "meters"),
  59586. weight: math.unit(120, "kg"),
  59587. name: "Side",
  59588. image: {
  59589. source: "./media/characters/gilirian/side.svg",
  59590. extra: 810/746,
  59591. bottom: 6/816
  59592. }
  59593. },
  59594. back: {
  59595. height: math.unit(2, "meters"),
  59596. weight: math.unit(120, "kg"),
  59597. name: "Back",
  59598. image: {
  59599. source: "./media/characters/gilirian/back.svg",
  59600. extra: 815/745,
  59601. bottom: 15/830
  59602. }
  59603. },
  59604. frontNsfw: {
  59605. height: math.unit(2, "meters"),
  59606. weight: math.unit(120, "kg"),
  59607. name: "Front (NSFW)",
  59608. image: {
  59609. source: "./media/characters/gilirian/front-nsfw.svg",
  59610. extra: 805/737,
  59611. bottom: 13/818
  59612. }
  59613. },
  59614. sideNsfw: {
  59615. height: math.unit(2, "meters"),
  59616. weight: math.unit(120, "kg"),
  59617. name: "Side (NSFW)",
  59618. image: {
  59619. source: "./media/characters/gilirian/side-nsfw.svg",
  59620. extra: 810/746,
  59621. bottom: 6/816
  59622. }
  59623. },
  59624. },
  59625. [
  59626. {
  59627. name: "Incognito",
  59628. height: math.unit(2, "meters"),
  59629. default: true
  59630. },
  59631. {
  59632. name: "Macro",
  59633. height: math.unit(250, "meters")
  59634. },
  59635. {
  59636. name: "Big Macro",
  59637. height: math.unit(1500, "meters")
  59638. },
  59639. {
  59640. name: "Mega",
  59641. height: math.unit(40, "km")
  59642. },
  59643. {
  59644. name: "Giga",
  59645. height: math.unit(300, "km")
  59646. },
  59647. {
  59648. name: "Extra Giga",
  59649. height: math.unit(5000, "km")
  59650. },
  59651. {
  59652. name: "Small Terra",
  59653. height: math.unit(10e3, "km")
  59654. },
  59655. {
  59656. name: "Terra",
  59657. height: math.unit(3e5, "km")
  59658. },
  59659. {
  59660. name: "Galactic",
  59661. height: math.unit(369950, "lightyears")
  59662. },
  59663. ]
  59664. ))
  59665. characterMakers.push(() => makeCharacter(
  59666. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59667. {
  59668. front: {
  59669. height: math.unit(2.5, "meters"),
  59670. weight: math.unit(230, "lb"),
  59671. name: "Front",
  59672. image: {
  59673. source: "./media/characters/tarken/front.svg",
  59674. extra: 764/720,
  59675. bottom: 49/813
  59676. }
  59677. },
  59678. back: {
  59679. height: math.unit(2.5, "meters"),
  59680. weight: math.unit(230, "lb"),
  59681. name: "Back",
  59682. image: {
  59683. source: "./media/characters/tarken/back.svg",
  59684. extra: 756/720,
  59685. bottom: 35/791
  59686. }
  59687. },
  59688. frontNsfw: {
  59689. height: math.unit(2.5, "meters"),
  59690. weight: math.unit(230, "lb"),
  59691. name: "Front (NSFW)",
  59692. image: {
  59693. source: "./media/characters/tarken/front-nsfw.svg",
  59694. extra: 764/720,
  59695. bottom: 49/813
  59696. }
  59697. },
  59698. backNsfw: {
  59699. height: math.unit(2.5, "meters"),
  59700. weight: math.unit(230, "lb"),
  59701. name: "Back (NSFW)",
  59702. image: {
  59703. source: "./media/characters/tarken/back-nsfw.svg",
  59704. extra: 756/720,
  59705. bottom: 35/791
  59706. }
  59707. },
  59708. head: {
  59709. height: math.unit(2.22, "feet"),
  59710. name: "Head",
  59711. image: {
  59712. source: "./media/characters/tarken/head.svg"
  59713. }
  59714. },
  59715. tail: {
  59716. height: math.unit(5.25, "feet"),
  59717. name: "Tail",
  59718. image: {
  59719. source: "./media/characters/tarken/tail.svg"
  59720. }
  59721. },
  59722. dick: {
  59723. height: math.unit(1.95, "feet"),
  59724. name: "Dick",
  59725. image: {
  59726. source: "./media/characters/tarken/dick.svg"
  59727. }
  59728. },
  59729. hand: {
  59730. height: math.unit(1.78, "feet"),
  59731. name: "Hand",
  59732. image: {
  59733. source: "./media/characters/tarken/hand.svg"
  59734. }
  59735. },
  59736. beam: {
  59737. height: math.unit(1.5, "feet"),
  59738. name: "Beam",
  59739. image: {
  59740. source: "./media/characters/tarken/beam.svg"
  59741. }
  59742. },
  59743. },
  59744. [
  59745. {
  59746. name: "Original Size",
  59747. height: math.unit(2.5, "meters")
  59748. },
  59749. {
  59750. name: "Macro",
  59751. height: math.unit(150, "meters"),
  59752. default: true
  59753. },
  59754. {
  59755. name: "Macro+",
  59756. height: math.unit(300, "meters")
  59757. },
  59758. {
  59759. name: "Mega",
  59760. height: math.unit(2, "km")
  59761. },
  59762. {
  59763. name: "Mega+",
  59764. height: math.unit(35, "km")
  59765. },
  59766.  {
  59767. name: "Mega++",
  59768. height: math.unit(60, "km")
  59769. },
  59770. {
  59771. name: "Giga",
  59772. height: math.unit(200, "km")
  59773. },
  59774. {
  59775. name: "Giga+",
  59776. height: math.unit(2500, "km")
  59777. },
  59778. {
  59779. name: "Giga++",
  59780. height: math.unit(6600, "km")
  59781. },
  59782. {
  59783. name: "Terra",
  59784. height: math.unit(20000, "km")
  59785. },
  59786. {
  59787. name: "Terra+",
  59788. height: math.unit(300000, "km")
  59789. },
  59790. ]
  59791. ))
  59792. characterMakers.push(() => makeCharacter(
  59793. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59794. {
  59795. magpie_dressed: {
  59796. height: math.unit(1.7, "meters"),
  59797. weight: math.unit(70, "kg"),
  59798. name: "Dressed",
  59799. image: {
  59800. source: "./media/characters/otreus/magpie-dressed.svg",
  59801. extra: 691/672,
  59802. bottom: 116/807
  59803. },
  59804. form: "magpie",
  59805. default: true
  59806. },
  59807. magpie_nude: {
  59808. height: math.unit(1.7, "meters"),
  59809. weight: math.unit(70, "kg"),
  59810. name: "Nude",
  59811. image: {
  59812. source: "./media/characters/otreus/magpie-nude.svg",
  59813. extra: 691/672,
  59814. bottom: 116/807
  59815. },
  59816. form: "magpie",
  59817. },
  59818. magpie_dressedLewd: {
  59819. height: math.unit(1.7, "meters"),
  59820. weight: math.unit(70, "kg"),
  59821. name: "Dressed (Lewd)",
  59822. image: {
  59823. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59824. extra: 691/672,
  59825. bottom: 116/807
  59826. },
  59827. form: "magpie",
  59828. },
  59829. magpie_nudeLewd: {
  59830. height: math.unit(1.7, "meters"),
  59831. weight: math.unit(70, "kg"),
  59832. name: "Nude (Lewd)",
  59833. image: {
  59834. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59835. extra: 691/672,
  59836. bottom: 116/807
  59837. },
  59838. form: "magpie",
  59839. },
  59840. magpie_leftFoot: {
  59841. height: math.unit(1.58, "feet"),
  59842. name: "Left Foot",
  59843. image: {
  59844. source: "./media/characters/otreus/magpie-left-foot.svg"
  59845. },
  59846. form: "magpie",
  59847. },
  59848. magpie_rightFoot: {
  59849. height: math.unit(1.58, "feet"),
  59850. name: "Right Foot",
  59851. image: {
  59852. source: "./media/characters/otreus/magpie-right-foot.svg"
  59853. },
  59854. form: "magpie",
  59855. },
  59856. magpie_wingspan: {
  59857. height: math.unit(2, "meters"),
  59858. weight: math.unit(70, "kg"),
  59859. name: "Wingspan",
  59860. image: {
  59861. source: "./media/characters/otreus/magpie-wingspan.svg"
  59862. },
  59863. extraAttributes: {
  59864. "wingspan": {
  59865. name: "Wingspan",
  59866. power: 1,
  59867. type: "length",
  59868. base: math.unit(3.35, "meters")
  59869. },
  59870. },
  59871. form: "magpie",
  59872. },
  59873. hippogriff_dressed: {
  59874. height: math.unit(1.7, "meters"),
  59875. weight: math.unit(70, "kg"),
  59876. name: "Dressed",
  59877. image: {
  59878. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59879. extra: 710/689,
  59880. bottom: 67/777
  59881. },
  59882. form: "hippogriff",
  59883. default: true
  59884. },
  59885. hippogriff_nude: {
  59886. height: math.unit(1.7, "meters"),
  59887. weight: math.unit(70, "kg"),
  59888. name: "Nude",
  59889. image: {
  59890. source: "./media/characters/otreus/hippogriff-nude.svg",
  59891. extra: 710/689,
  59892. bottom: 67/777
  59893. },
  59894. form: "hippogriff",
  59895. },
  59896. hippogriff_dressedLewd: {
  59897. height: math.unit(1.7, "meters"),
  59898. weight: math.unit(70, "kg"),
  59899. name: "Dressed (Lewd)",
  59900. image: {
  59901. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59902. extra: 710/689,
  59903. bottom: 67/777
  59904. },
  59905. form: "hippogriff",
  59906. },
  59907. hippogriff_nudeLewd: {
  59908. height: math.unit(1.7, "meters"),
  59909. weight: math.unit(70, "kg"),
  59910. name: "Nude (Lewd)",
  59911. image: {
  59912. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59913. extra: 710/689,
  59914. bottom: 67/777
  59915. },
  59916. form: "hippogriff",
  59917. },
  59918. },
  59919. [
  59920. {
  59921. name: "Original Size",
  59922. height: math.unit(1.7, "meters"),
  59923. allForms: true
  59924. },
  59925. {
  59926. name: "Incognito Size",
  59927. height: math.unit(2, "meters"),
  59928. allForms: true
  59929. },
  59930. {
  59931. name: "Mega",
  59932. height: math.unit(2, "km"),
  59933. allForms: true
  59934. },
  59935. {
  59936. name: "Mega+",
  59937. height: math.unit(40, "km"),
  59938. allForms: true
  59939. },
  59940. {
  59941. name: "Giga",
  59942. height: math.unit(250, "km"),
  59943. allForms: true
  59944. },
  59945. {
  59946. name: "Giga+",
  59947. height: math.unit(3000, "km"),
  59948. allForms: true
  59949. },
  59950. {
  59951. name: "Terra",
  59952. height: math.unit(20000, "km"),
  59953. allForms: true
  59954. },
  59955. {
  59956. name: "Solar (Home Size)",
  59957. height: math.unit(3e6, "km"),
  59958. allForms: true,
  59959. default: true
  59960. },
  59961. ],
  59962. {
  59963. "magpie": {
  59964. name: "Magpie",
  59965. default: true
  59966. },
  59967. "hippogriff": {
  59968. name: "Hippogriff",
  59969. },
  59970. }
  59971. ))
  59972. characterMakers.push(() => makeCharacter(
  59973. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59974. {
  59975. frontDressed: {
  59976. height: math.unit(1.8, "meters"),
  59977. weight: math.unit(90, "kg"),
  59978. name: "Front (Dressed)",
  59979. image: {
  59980. source: "./media/characters/thalia/front-dressed.svg",
  59981. extra: 478/402,
  59982. bottom: 55/533
  59983. }
  59984. },
  59985. backDressed: {
  59986. height: math.unit(1.8, "meters"),
  59987. weight: math.unit(90, "kg"),
  59988. name: "Back (Dressed)",
  59989. image: {
  59990. source: "./media/characters/thalia/back-dressed.svg",
  59991. extra: 500/424,
  59992. bottom: 15/515
  59993. }
  59994. },
  59995. frontNude: {
  59996. height: math.unit(1.8, "meters"),
  59997. weight: math.unit(90, "kg"),
  59998. name: "Front (Nude)",
  59999. image: {
  60000. source: "./media/characters/thalia/front-nude.svg",
  60001. extra: 478/402,
  60002. bottom: 55/533
  60003. }
  60004. },
  60005. backNude: {
  60006. height: math.unit(1.8, "meters"),
  60007. weight: math.unit(90, "kg"),
  60008. name: "Back (Nude)",
  60009. image: {
  60010. source: "./media/characters/thalia/back-nude.svg",
  60011. extra: 500/424,
  60012. bottom: 15/515
  60013. }
  60014. },
  60015. },
  60016. [
  60017. {
  60018. name: "Incognito",
  60019. height: math.unit(3, "meters")
  60020. },
  60021. {
  60022. name: "Macro",
  60023. height: math.unit(500, "meters")
  60024. },
  60025. {
  60026. name: "Mega",
  60027. height: math.unit(5, "km")
  60028. },
  60029. {
  60030. name: "Mega+",
  60031. height: math.unit(30, "km")
  60032. },
  60033. {
  60034. name: "Giga",
  60035. height: math.unit(350, "km")
  60036. },
  60037. {
  60038. name: "Giga+",
  60039. height: math.unit(4000, "km")
  60040. },
  60041. {
  60042. name: "Terra",
  60043. height: math.unit(35000, "km")
  60044. },
  60045. {
  60046. name: "Original Size",
  60047. height: math.unit(130000, "km")
  60048. },
  60049. {
  60050. name: "Solar (Home Size)",
  60051. height: math.unit(4e6, "km"),
  60052. default: true
  60053. },
  60054. ]
  60055. ))
  60056. characterMakers.push(() => makeCharacter(
  60057. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  60058. {
  60059. front: {
  60060. height: math.unit(1.8, "meters"),
  60061. weight: math.unit(95, "kg"),
  60062. name: "Front",
  60063. image: {
  60064. source: "./media/characters/shango/front.svg",
  60065. extra: 1925/1774,
  60066. bottom: 67/1992
  60067. }
  60068. },
  60069. back: {
  60070. height: math.unit(1.8, "meters"),
  60071. weight: math.unit(95, "kg"),
  60072. name: "Back",
  60073. image: {
  60074. source: "./media/characters/shango/back.svg",
  60075. extra: 1915/1766,
  60076. bottom: 52/1967
  60077. }
  60078. },
  60079. frontLewd: {
  60080. height: math.unit(1.8, "meters"),
  60081. weight: math.unit(95, "kg"),
  60082. name: "Front (Lewd)",
  60083. image: {
  60084. source: "./media/characters/shango/front-lewd.svg",
  60085. extra: 1925/1774,
  60086. bottom: 67/1992
  60087. }
  60088. },
  60089. backLewd: {
  60090. height: math.unit(1.8, "meters"),
  60091. weight: math.unit(95, "kg"),
  60092. name: "Back (Lewd)",
  60093. image: {
  60094. source: "./media/characters/shango/back-lewd.svg",
  60095. extra: 1915/1766,
  60096. bottom: 52/1967
  60097. }
  60098. },
  60099. maw: {
  60100. height: math.unit(1.64, "feet"),
  60101. name: "Maw",
  60102. image: {
  60103. source: "./media/characters/shango/maw.svg"
  60104. }
  60105. },
  60106. dick: {
  60107. height: math.unit(2.14, "feet"),
  60108. name: "Dick",
  60109. image: {
  60110. source: "./media/characters/shango/dick.svg"
  60111. }
  60112. },
  60113. },
  60114. [
  60115. {
  60116. name: "Incognito",
  60117. height: math.unit(1.8, "meters")
  60118. },
  60119. {
  60120. name: "Home Size",
  60121. height: math.unit(60, "meters"),
  60122. default: true
  60123. },
  60124. {
  60125. name: "Macro",
  60126. height: math.unit(450, "meters")
  60127. },
  60128. {
  60129. name: "Mega",
  60130. height: math.unit(6, "km")
  60131. },
  60132. {
  60133. name: "Mega+",
  60134. height: math.unit(35, "km")
  60135. },
  60136. {
  60137. name: "Giga",
  60138. height: math.unit(500, "km")
  60139. },
  60140. {
  60141. name: "Giga+",
  60142. height: math.unit(5000, "km")
  60143. },
  60144. {
  60145. name: "Terra",
  60146. height: math.unit(60000, "km")
  60147. },
  60148. {
  60149. name: "Terra+",
  60150. height: math.unit(400000, "km")
  60151. },
  60152. ]
  60153. ))
  60154. characterMakers.push(() => makeCharacter(
  60155. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60156. {
  60157. front: {
  60158. height: math.unit(2, "meters"),
  60159. weight: math.unit(95, "kg"),
  60160. name: "Front",
  60161. image: {
  60162. source: "./media/characters/osiris-gryphon/front.svg",
  60163. extra: 1508/1313,
  60164. bottom: 87/1595
  60165. }
  60166. },
  60167. back: {
  60168. height: math.unit(2, "meters"),
  60169. weight: math.unit(95, "kg"),
  60170. name: "Back",
  60171. image: {
  60172. source: "./media/characters/osiris-gryphon/back.svg",
  60173. extra: 1436/1309,
  60174. bottom: 64/1500
  60175. }
  60176. },
  60177. frontLewd: {
  60178. height: math.unit(2, "meters"),
  60179. weight: math.unit(95, "kg"),
  60180. name: "Front (Lewd)",
  60181. image: {
  60182. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60183. extra: 1508/1313,
  60184. bottom: 87/1595
  60185. }
  60186. },
  60187. wing: {
  60188. height: math.unit(6.3333, "feet"),
  60189. name: "Wing",
  60190. image: {
  60191. source: "./media/characters/osiris-gryphon/wing.svg"
  60192. }
  60193. },
  60194. },
  60195. [
  60196. {
  60197. name: "Incognito",
  60198. height: math.unit(2, "meters")
  60199. },
  60200. {
  60201. name: "Home Size",
  60202. height: math.unit(30, "meters"),
  60203. default: true
  60204. },
  60205. {
  60206. name: "Macro",
  60207. height: math.unit(100, "meters")
  60208. },
  60209. {
  60210. name: "Macro+",
  60211. height: math.unit(350, "meters")
  60212. },
  60213. {
  60214. name: "Mega",
  60215. height: math.unit(40, "km")
  60216. },
  60217. {
  60218. name: "Giga",
  60219. height: math.unit(300, "km")
  60220. },
  60221. {
  60222. name: "Giga+",
  60223. height: math.unit(2000, "km")
  60224. },
  60225. {
  60226. name: "Terra",
  60227. height: math.unit(30000, "km")
  60228. },
  60229. ]
  60230. ))
  60231. characterMakers.push(() => makeCharacter(
  60232. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60233. {
  60234. front: {
  60235. height: math.unit(2.5, "meters"),
  60236. weight: math.unit(200, "kg"),
  60237. name: "Front",
  60238. image: {
  60239. source: "./media/characters/atlas-dragon/front.svg",
  60240. extra: 745/462,
  60241. bottom: 36/781
  60242. }
  60243. },
  60244. back: {
  60245. height: math.unit(2.5, "meters"),
  60246. weight: math.unit(200, "kg"),
  60247. name: "Back",
  60248. image: {
  60249. source: "./media/characters/atlas-dragon/back.svg",
  60250. extra: 848/822,
  60251. bottom: 57/905
  60252. }
  60253. },
  60254. frontLewd: {
  60255. height: math.unit(2.5, "meters"),
  60256. weight: math.unit(200, "kg"),
  60257. name: "Front (Lewd)",
  60258. image: {
  60259. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60260. extra: 745/462,
  60261. bottom: 36/781
  60262. }
  60263. },
  60264. backLewd: {
  60265. height: math.unit(2.5, "meters"),
  60266. weight: math.unit(200, "kg"),
  60267. name: "Back (Lewd)",
  60268. image: {
  60269. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60270. extra: 848/822,
  60271. bottom: 57/905
  60272. }
  60273. },
  60274. },
  60275. [
  60276. {
  60277. name: "Incognito",
  60278. height: math.unit(2.5, "meters")
  60279. },
  60280. {
  60281. name: "Small Macro",
  60282. height: math.unit(50, "meters")
  60283. },
  60284. {
  60285. name: "Macro",
  60286. height: math.unit(350, "meters")
  60287. },
  60288. {
  60289. name: "Mega",
  60290. height: math.unit(5.5, "kilometers")
  60291. },
  60292. {
  60293. name: "Mega+",
  60294. height: math.unit(50, "km")
  60295. },
  60296. {
  60297. name: "Giga",
  60298. height: math.unit(350, "km")
  60299. },
  60300. {
  60301. name: "Giga+",
  60302. height: math.unit(2000, "km")
  60303. },
  60304. {
  60305. name: "Giga++",
  60306. height: math.unit(6500, "km")
  60307. },
  60308. {
  60309. name: "Terra",
  60310. height: math.unit(30000, "km")
  60311. },
  60312. {
  60313. name: "Terra+",
  60314. height: math.unit(250000, "km")
  60315. },
  60316. {
  60317. name: "True Size",
  60318. height: math.unit(100, "multiverses"),
  60319. default: true
  60320. },
  60321. ]
  60322. ))
  60323. characterMakers.push(() => makeCharacter(
  60324. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60325. {
  60326. front: {
  60327. height: math.unit(1.8, "m"),
  60328. weight: math.unit(120, "kg"),
  60329. name: "Front",
  60330. image: {
  60331. source: "./media/characters/chey/front.svg",
  60332. extra: 1359/1270,
  60333. bottom: 18/1377
  60334. }
  60335. },
  60336. arm: {
  60337. height: math.unit(2.05, "feet"),
  60338. name: "Arm",
  60339. image: {
  60340. source: "./media/characters/chey/arm.svg"
  60341. }
  60342. },
  60343. head: {
  60344. height: math.unit(1.89, "feet"),
  60345. name: "Head",
  60346. image: {
  60347. source: "./media/characters/chey/head.svg"
  60348. }
  60349. },
  60350. },
  60351. [
  60352. {
  60353. name: "Original Size",
  60354. height: math.unit(5, "cm")
  60355. },
  60356. {
  60357. name: "Incognito Size",
  60358. height: math.unit(2.4, "m")
  60359. },
  60360. {
  60361. name: "Home Size",
  60362. height: math.unit(200, "meters"),
  60363. default: true
  60364. },
  60365. {
  60366. name: "Mega",
  60367. height: math.unit(2, "km")
  60368. },
  60369. {
  60370. name: "Giga (Preferred Size)",
  60371. height: math.unit(2000, "km")
  60372. },
  60373. {
  60374. name: "Giga+",
  60375. height: math.unit(6000, "km")
  60376. },
  60377. {
  60378. name: "Terra",
  60379. height: math.unit(17000, "km")
  60380. },
  60381. {
  60382. name: "Terra+",
  60383. height: math.unit(75000, "km")
  60384. },
  60385. {
  60386. name: "Terra++",
  60387. height: math.unit(225000, "km")
  60388. },
  60389. ]
  60390. ))
  60391. characterMakers.push(() => makeCharacter(
  60392. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60393. {
  60394. side: {
  60395. height: math.unit(7.8, "meters"),
  60396. name: "Side",
  60397. image: {
  60398. source: "./media/characters/ragnarok/side.svg",
  60399. extra: 725/621,
  60400. bottom: 72/797
  60401. }
  60402. },
  60403. },
  60404. [
  60405. {
  60406. name: "Normal",
  60407. height: math.unit(7.8, "meters"),
  60408. default: true
  60409. },
  60410. ]
  60411. ))
  60412. characterMakers.push(() => makeCharacter(
  60413. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60414. {
  60415. hyena_front: {
  60416. height: math.unit(2.1, "meters"),
  60417. weight: math.unit(110, "kg"),
  60418. name: "Front",
  60419. image: {
  60420. source: "./media/characters/nima/hyena-front.svg",
  60421. extra: 1904/1796,
  60422. bottom: 67/1971
  60423. },
  60424. form: "hyena",
  60425. },
  60426. hyena_back: {
  60427. height: math.unit(2.1, "meters"),
  60428. weight: math.unit(110, "kg"),
  60429. name: "Back",
  60430. image: {
  60431. source: "./media/characters/nima/hyena-back.svg",
  60432. extra: 1964/1884,
  60433. bottom: 35/1999
  60434. },
  60435. form: "hyena",
  60436. },
  60437. shark_front: {
  60438. height: math.unit(1.95, "meters"),
  60439. weight: math.unit(110, "kg"),
  60440. name: "Front",
  60441. image: {
  60442. source: "./media/characters/nima/shark-front.svg",
  60443. extra: 2238/2013,
  60444. bottom: 0/223
  60445. },
  60446. form: "shark",
  60447. },
  60448. paw: {
  60449. height: math.unit(1, "feet"),
  60450. name: "Paw",
  60451. image: {
  60452. source: "./media/characters/nima/paw.svg"
  60453. }
  60454. },
  60455. circlet: {
  60456. height: math.unit(0.3, "feet"),
  60457. name: "Circlet",
  60458. image: {
  60459. source: "./media/characters/nima/circlet.svg"
  60460. }
  60461. },
  60462. necklace: {
  60463. height: math.unit(1.2, "feet"),
  60464. name: "Necklace",
  60465. image: {
  60466. source: "./media/characters/nima/necklace.svg"
  60467. }
  60468. },
  60469. bracelet: {
  60470. height: math.unit(0.51, "feet"),
  60471. name: "Bracelet",
  60472. image: {
  60473. source: "./media/characters/nima/bracelet.svg"
  60474. }
  60475. },
  60476. armband: {
  60477. height: math.unit(1.3, "feet"),
  60478. name: "Armband",
  60479. image: {
  60480. source: "./media/characters/nima/armband.svg"
  60481. }
  60482. },
  60483. },
  60484. [
  60485. {
  60486. name: "Incognito",
  60487. height: math.unit(2.1, "meters"),
  60488. allForms: true
  60489. },
  60490. {
  60491. name: "Small Macro",
  60492. height: math.unit(50, "meters"),
  60493. allForms: true
  60494. },
  60495. {
  60496. name: "Macro",
  60497. height: math.unit(200, "meters"),
  60498. allForms: true
  60499. },
  60500. {
  60501. name: "Mega",
  60502. height: math.unit(2.5, "km"),
  60503. allForms: true
  60504. },
  60505. {
  60506. name: "Mega+",
  60507. height: math.unit(30, "km"),
  60508. allForms: true
  60509. },
  60510. {
  60511. name: "Giga (Home Size)",
  60512. height: math.unit(400, "km"),
  60513. allForms: true,
  60514. default: true
  60515. },
  60516. {
  60517. name: "Giga+",
  60518. height: math.unit(2500, "km"),
  60519. allForms: true
  60520. },
  60521. {
  60522. name: "Giga++",
  60523. height: math.unit(8000, "km"),
  60524. allForms: true
  60525. },
  60526. {
  60527. name: "Terra",
  60528. height: math.unit(20000, "km"),
  60529. allForms: true
  60530. },
  60531. {
  60532. name: "Terra+",
  60533. height: math.unit(70000, "km"),
  60534. allForms: true
  60535. },
  60536. {
  60537. name: "Terra++",
  60538. height: math.unit(600000, "km"),
  60539. allForms: true
  60540. },
  60541. {
  60542. name: "Galactic",
  60543. height: math.unit(40, "galaxies"),
  60544. allForms: true
  60545. },
  60546. {
  60547. name: "Universal",
  60548. height: math.unit(40, "universes"),
  60549. allForms: true
  60550. },
  60551. ],
  60552. {
  60553. "hyena": {
  60554. name: "Hyena",
  60555. default: true
  60556. },
  60557. "shark": {
  60558. name: "Shark",
  60559. },
  60560. }
  60561. ))
  60562. characterMakers.push(() => makeCharacter(
  60563. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60564. {
  60565. anthro_front: {
  60566. height: math.unit(1.5, "meters"),
  60567. name: "Front",
  60568. image: {
  60569. source: "./media/characters/adelaide/anthro-front.svg",
  60570. extra: 860/783,
  60571. bottom: 60/920
  60572. },
  60573. form: "anthro",
  60574. default: true
  60575. },
  60576. hand: {
  60577. height: math.unit(0.65, "feet"),
  60578. name: "Hand",
  60579. image: {
  60580. source: "./media/characters/adelaide/hand.svg"
  60581. },
  60582. form: "anthro"
  60583. },
  60584. foot: {
  60585. height: math.unit(1.38 * 259 / 314, "feet"),
  60586. name: "Foot",
  60587. image: {
  60588. source: "./media/characters/adelaide/foot.svg",
  60589. extra: 259/259,
  60590. bottom: 55/314
  60591. },
  60592. form: "anthro"
  60593. },
  60594. feather: {
  60595. height: math.unit(0.85, "feet"),
  60596. name: "Feather",
  60597. image: {
  60598. source: "./media/characters/adelaide/feather.svg"
  60599. },
  60600. form: "anthro"
  60601. },
  60602. feral_side: {
  60603. height: math.unit(1, "meters"),
  60604. name: "Side",
  60605. image: {
  60606. source: "./media/characters/adelaide/feral-side.svg",
  60607. extra: 550/467,
  60608. bottom: 37/587
  60609. },
  60610. form: "feral",
  60611. default: true
  60612. },
  60613. feral_hand: {
  60614. height: math.unit(0.58, "feet"),
  60615. name: "Hand",
  60616. image: {
  60617. source: "./media/characters/adelaide/hand.svg"
  60618. },
  60619. form: "feral"
  60620. },
  60621. feral_foot: {
  60622. height: math.unit(1.2 * 259 / 314, "feet"),
  60623. name: "Foot",
  60624. image: {
  60625. source: "./media/characters/adelaide/foot.svg",
  60626. extra: 259/259,
  60627. bottom: 55/314
  60628. },
  60629. form: "feral"
  60630. },
  60631. feral_feather: {
  60632. height: math.unit(0.63, "feet"),
  60633. name: "Feather",
  60634. image: {
  60635. source: "./media/characters/adelaide/feather.svg"
  60636. },
  60637. form: "feral"
  60638. },
  60639. },
  60640. [
  60641. {
  60642. name: "Normal",
  60643. height: math.unit(1.5, "meters"),
  60644. form: "anthro",
  60645. default: true
  60646. },
  60647. {
  60648. name: "Normal",
  60649. height: math.unit(1, "meters"),
  60650. form: "feral",
  60651. default: true
  60652. },
  60653. ],
  60654. {
  60655. "anthro": {
  60656. name: "Anthro",
  60657. default: true
  60658. },
  60659. "feral": {
  60660. name: "Feral",
  60661. },
  60662. }
  60663. ))
  60664. characterMakers.push(() => makeCharacter(
  60665. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60666. {
  60667. front: {
  60668. height: math.unit(2.5, "meters"),
  60669. name: "Front",
  60670. image: {
  60671. source: "./media/characters/goa/front.svg",
  60672. extra: 1109/1013,
  60673. bottom: 150/1259
  60674. }
  60675. },
  60676. },
  60677. [
  60678. {
  60679. name: "Normal",
  60680. height: math.unit(2.5, "meters"),
  60681. default: true
  60682. },
  60683. ]
  60684. ))
  60685. characterMakers.push(() => makeCharacter(
  60686. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60687. {
  60688. front: {
  60689. height: math.unit(2, "meters"),
  60690. weight: math.unit(100, "kg"),
  60691. name: "Front",
  60692. image: {
  60693. source: "./media/characters/kiki-weavile/front.svg",
  60694. extra: 357/332,
  60695. bottom: 60/417
  60696. }
  60697. },
  60698. },
  60699. [
  60700. {
  60701. name: "Normal",
  60702. height: math.unit(2, "meters"),
  60703. default: true
  60704. },
  60705. ]
  60706. ))
  60707. characterMakers.push(() => makeCharacter(
  60708. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60709. {
  60710. side: {
  60711. height: math.unit(1.6, "meters"),
  60712. name: "Side",
  60713. image: {
  60714. source: "./media/characters/liza/side.svg",
  60715. extra: 943/915,
  60716. bottom: 72/1015
  60717. }
  60718. },
  60719. },
  60720. [
  60721. {
  60722. name: "Normal",
  60723. height: math.unit(1.6, "meters"),
  60724. default: true
  60725. },
  60726. ]
  60727. ))
  60728. characterMakers.push(() => makeCharacter(
  60729. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60730. {
  60731. side: {
  60732. height: math.unit(2.5, "meters"),
  60733. preyCapacity: math.unit(1, "people"),
  60734. name: "Side",
  60735. image: {
  60736. source: "./media/characters/persephone-sweetbreath/side.svg",
  60737. extra: 796/700,
  60738. bottom: 44/840
  60739. }
  60740. },
  60741. sideVore: {
  60742. height: math.unit(2.5, "meters"),
  60743. preyCapacity: math.unit(1, "people"),
  60744. name: "Side (Full)",
  60745. image: {
  60746. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60747. extra: 796/700,
  60748. bottom: 44/840
  60749. }
  60750. },
  60751. },
  60752. [
  60753. {
  60754. name: "Normal",
  60755. height: math.unit(2.5, "meters"),
  60756. default: true
  60757. },
  60758. ]
  60759. ))
  60760. characterMakers.push(() => makeCharacter(
  60761. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60762. {
  60763. front: {
  60764. height: math.unit(32, "meters"),
  60765. name: "Front",
  60766. image: {
  60767. source: "./media/characters/pierce/front.svg",
  60768. extra: 1695/1475,
  60769. bottom: 185/1880
  60770. }
  60771. },
  60772. side: {
  60773. height: math.unit(32, "meters"),
  60774. name: "Side",
  60775. image: {
  60776. source: "./media/characters/pierce/side.svg",
  60777. extra: 974/859,
  60778. bottom: 43/1017
  60779. }
  60780. },
  60781. frontWingless: {
  60782. height: math.unit(32, "meters"),
  60783. name: "Front (Wingless)",
  60784. image: {
  60785. source: "./media/characters/pierce/front-wingless.svg",
  60786. extra: 1695/1475,
  60787. bottom: 185/1880
  60788. }
  60789. },
  60790. sideWingless: {
  60791. height: math.unit(32, "meters"),
  60792. name: "Side (Wingless)",
  60793. image: {
  60794. source: "./media/characters/pierce/side-wingless.svg",
  60795. extra: 974/859,
  60796. bottom: 43/1017
  60797. }
  60798. },
  60799. maw: {
  60800. height: math.unit(19.3, "meters"),
  60801. name: "Maw",
  60802. image: {
  60803. source: "./media/characters/pierce/maw.svg"
  60804. }
  60805. },
  60806. },
  60807. [
  60808. {
  60809. name: "Small",
  60810. height: math.unit(8.5, "meters")
  60811. },
  60812. {
  60813. name: "Normal",
  60814. height: math.unit(32, "meters"),
  60815. default: true
  60816. },
  60817. ]
  60818. ))
  60819. characterMakers.push(() => makeCharacter(
  60820. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60821. {
  60822. front: {
  60823. height: math.unit(2.3, "meters"),
  60824. weight: math.unit(165, "kg"),
  60825. name: "Front",
  60826. image: {
  60827. source: "./media/characters/shira/front.svg",
  60828. extra: 924/919,
  60829. bottom: 17/941
  60830. },
  60831. form: "cobra",
  60832. default: true
  60833. },
  60834. back: {
  60835. height: math.unit(2.3, "meters"),
  60836. weight: math.unit(165, "kg"),
  60837. name: "Back",
  60838. image: {
  60839. source: "./media/characters/shira/back.svg",
  60840. extra: 928/922,
  60841. bottom: 18/946
  60842. },
  60843. form: "cobra"
  60844. },
  60845. frontLewd: {
  60846. height: math.unit(2.3, "meters"),
  60847. weight: math.unit(165, "kg"),
  60848. name: "Front (Lewd)",
  60849. image: {
  60850. source: "./media/characters/shira/front-lewd.svg",
  60851. extra: 924/919,
  60852. bottom: 17/941
  60853. },
  60854. form: "cobra"
  60855. },
  60856. backLewd: {
  60857. height: math.unit(2.3, "meters"),
  60858. weight: math.unit(165, "kg"),
  60859. name: "Back (Lewd)",
  60860. image: {
  60861. source: "./media/characters/shira/back-lewd.svg",
  60862. extra: 928/922,
  60863. bottom: 18/946
  60864. },
  60865. form: "cobra"
  60866. },
  60867. maw: {
  60868. height: math.unit(1.14, "feet"),
  60869. name: "Maw",
  60870. image: {
  60871. source: "./media/characters/shira/maw.svg"
  60872. },
  60873. form: "cobra"
  60874. },
  60875. magma_front: {
  60876. height: math.unit(2.3, "meters"),
  60877. weight: math.unit(165, "kg"),
  60878. name: "Front",
  60879. image: {
  60880. source: "./media/characters/shira/magma-front.svg",
  60881. extra: 1870/1693,
  60882. bottom: 24/1894
  60883. },
  60884. form: "magma",
  60885. },
  60886. magma_back: {
  60887. height: math.unit(2.3, "meters"),
  60888. weight: math.unit(165, "kg"),
  60889. name: "Back",
  60890. image: {
  60891. source: "./media/characters/shira/magma-back.svg",
  60892. extra: 1918/1756,
  60893. bottom: 46/1964
  60894. },
  60895. form: "magma",
  60896. },
  60897. },
  60898. [
  60899. {
  60900. name: "Incognito",
  60901. height: math.unit(2.3, "meters"),
  60902. allForms: true
  60903. },
  60904. {
  60905. name: "Home Size",
  60906. height: math.unit(150, "meters"),
  60907. default: true,
  60908. allForms: true
  60909. },
  60910. {
  60911. name: "Macro",
  60912. height: math.unit(2, "km"),
  60913. allForms: true
  60914. },
  60915. {
  60916. name: "Mega",
  60917. height: math.unit(30, "km"),
  60918. allForms: true
  60919. },
  60920. {
  60921. name: "Giga",
  60922. height: math.unit(450, "km"),
  60923. allForms: true
  60924. },
  60925. {
  60926. name: "Giga+",
  60927. height: math.unit(3000, "km"),
  60928. allForms: true
  60929. },
  60930. {
  60931. name: "Giga++",
  60932. height: math.unit(6000, "km"),
  60933. allForms: true
  60934. },
  60935. {
  60936. name: "Terra",
  60937. height: math.unit(80000, "km"),
  60938. allForms: true
  60939. },
  60940. {
  60941. name: "Terra+",
  60942. height: math.unit(350000, "km"),
  60943. allForms: true
  60944. },
  60945. {
  60946. name: "Solar",
  60947. height: math.unit(1e6, "km"),
  60948. allForms: true
  60949. },
  60950. ],
  60951. {
  60952. "cobra": {
  60953. name: "Cobra",
  60954. default: true
  60955. },
  60956. "magma": {
  60957. name: "Magma Dragon",
  60958. },
  60959. }
  60960. ))
  60961. characterMakers.push(() => makeCharacter(
  60962. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60963. {
  60964. front: {
  60965. height: math.unit(2, "meters"),
  60966. weight: math.unit(160, "kg"),
  60967. name: "Front",
  60968. image: {
  60969. source: "./media/characters/daxerios/front.svg",
  60970. extra: 1334/1277,
  60971. bottom: 45/1379
  60972. }
  60973. },
  60974. frontLewd: {
  60975. height: math.unit(2, "meters"),
  60976. weight: math.unit(160, "kg"),
  60977. name: "Front (Lewd)",
  60978. image: {
  60979. source: "./media/characters/daxerios/front-lewd.svg",
  60980. extra: 1334/1277,
  60981. bottom: 45/1379
  60982. }
  60983. },
  60984. dick: {
  60985. height: math.unit(2.35, "feet"),
  60986. name: "Dick",
  60987. image: {
  60988. source: "./media/characters/daxerios/dick.svg"
  60989. }
  60990. },
  60991. },
  60992. [
  60993. {
  60994. name: "\"Small\"",
  60995. height: math.unit(5, "meters")
  60996. },
  60997. {
  60998. name: "Original Size",
  60999. height: math.unit(500, "meters"),
  61000. default: true
  61001. },
  61002. {
  61003. name: "Mega",
  61004. height: math.unit(2, "km")
  61005. },
  61006. {
  61007. name: "Mega+",
  61008. height: math.unit(35, "km")
  61009. },
  61010. {
  61011. name: "Giga",
  61012. height: math.unit(250, "km")
  61013. },
  61014. {
  61015. name: "Giga+",
  61016. height: math.unit(3000, "km")
  61017. },
  61018. {
  61019. name: "Terra",
  61020. height: math.unit(25000, "km")
  61021. },
  61022. {
  61023. name: "Terra+",
  61024. height: math.unit(300000, "km")
  61025. },
  61026. {
  61027. name: "Solar",
  61028. height: math.unit(1e6, "km")
  61029. },
  61030. ]
  61031. ))
  61032. characterMakers.push(() => makeCharacter(
  61033. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  61034. {
  61035. front: {
  61036. height: math.unit(8 + 4/12, "feet"),
  61037. weight: math.unit(464, "lb"),
  61038. name: "Front",
  61039. image: {
  61040. source: "./media/characters/caveat/front.svg",
  61041. extra: 1861/1678,
  61042. bottom: 40/1901
  61043. }
  61044. },
  61045. },
  61046. [
  61047. {
  61048. name: "Normal",
  61049. height: math.unit(8 + 4/12, "feet"),
  61050. default: true
  61051. },
  61052. ]
  61053. ))
  61054. characterMakers.push(() => makeCharacter(
  61055. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  61056. {
  61057. front: {
  61058. height: math.unit(12, "feet"),
  61059. weight: math.unit(1800, "lb"),
  61060. name: "Front",
  61061. image: {
  61062. source: "./media/characters/centbair/front.svg",
  61063. extra: 781/663,
  61064. bottom: 25/806
  61065. }
  61066. },
  61067. frontNsfw: {
  61068. height: math.unit(12, "feet"),
  61069. weight: math.unit(1800, "lb"),
  61070. name: "Front (NSFW)",
  61071. image: {
  61072. source: "./media/characters/centbair/front-nsfw.svg",
  61073. extra: 781/663,
  61074. bottom: 25/806
  61075. }
  61076. },
  61077. back: {
  61078. height: math.unit(12, "feet"),
  61079. weight: math.unit(1800, "lb"),
  61080. name: "Back",
  61081. image: {
  61082. source: "./media/characters/centbair/back.svg",
  61083. extra: 808/761,
  61084. bottom: 19/827
  61085. }
  61086. },
  61087. dick: {
  61088. height: math.unit(6.5, "feet"),
  61089. name: "Dick",
  61090. image: {
  61091. source: "./media/characters/centbair/dick.svg"
  61092. }
  61093. },
  61094. slit: {
  61095. height: math.unit(3.25, "feet"),
  61096. name: "Slit",
  61097. image: {
  61098. source: "./media/characters/centbair/slit.svg"
  61099. }
  61100. },
  61101. },
  61102. [
  61103. {
  61104. name: "Normal",
  61105. height: math.unit(12, "feet"),
  61106. default: true
  61107. },
  61108. ]
  61109. ))
  61110. characterMakers.push(() => makeCharacter(
  61111. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61112. {
  61113. front: {
  61114. height: math.unit(5 + 7/12, "feet"),
  61115. name: "Front",
  61116. image: {
  61117. source: "./media/characters/andy/front.svg",
  61118. extra: 634/588,
  61119. bottom: 36/670
  61120. },
  61121. extraAttributes: {
  61122. "pawLength": {
  61123. name: "Paw Length",
  61124. power: 1,
  61125. type: "length",
  61126. base: math.unit(1, "feet")
  61127. },
  61128. }
  61129. },
  61130. side: {
  61131. height: math.unit(5 + 7/12, "feet"),
  61132. name: "Side",
  61133. image: {
  61134. source: "./media/characters/andy/side.svg",
  61135. extra: 641/596,
  61136. bottom: 34/675
  61137. },
  61138. extraAttributes: {
  61139. "pawLength": {
  61140. name: "Paw Length",
  61141. power: 1,
  61142. type: "length",
  61143. base: math.unit(1, "feet")
  61144. },
  61145. }
  61146. },
  61147. back: {
  61148. height: math.unit(5 + 7/12, "feet"),
  61149. name: "Back",
  61150. image: {
  61151. source: "./media/characters/andy/back.svg",
  61152. extra: 618/583,
  61153. bottom: 39/657
  61154. },
  61155. extraAttributes: {
  61156. "pawLength": {
  61157. name: "Paw Length",
  61158. power: 1,
  61159. type: "length",
  61160. base: math.unit(1, "feet")
  61161. },
  61162. }
  61163. },
  61164. paw: {
  61165. height: math.unit(1.13, "feet"),
  61166. name: "Paw",
  61167. image: {
  61168. source: "./media/characters/andy/paw.svg"
  61169. }
  61170. },
  61171. },
  61172. [
  61173. {
  61174. name: "Micro",
  61175. height: math.unit(4, "inches")
  61176. },
  61177. {
  61178. name: "Normal",
  61179. height: math.unit(5 + 7/12, "feet"),
  61180. default: true
  61181. },
  61182. {
  61183. name: "Macro",
  61184. height: math.unit(390.42, "feet")
  61185. },
  61186. ]
  61187. ))
  61188. characterMakers.push(() => makeCharacter(
  61189. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61190. {
  61191. front: {
  61192. height: math.unit(7, "feet"),
  61193. weight: math.unit(250, "lb"),
  61194. name: "Front",
  61195. image: {
  61196. source: "./media/characters/vix-titan/front.svg",
  61197. extra: 460/428,
  61198. bottom: 15/475
  61199. },
  61200. extraAttributes: {
  61201. "pawWidth": {
  61202. name: "Paw Width",
  61203. power: 1,
  61204. type: "length",
  61205. base: math.unit(0.75, "feet")
  61206. },
  61207. }
  61208. },
  61209. },
  61210. [
  61211. {
  61212. name: "Normal",
  61213. height: math.unit(7, "feet"),
  61214. default: true
  61215. },
  61216. {
  61217. name: "Giant",
  61218. height: math.unit(1500, "feet")
  61219. },
  61220. {
  61221. name: "Mega",
  61222. height: math.unit(10, "miles")
  61223. },
  61224. {
  61225. name: "Giga",
  61226. height: math.unit(150, "miles")
  61227. },
  61228. {
  61229. name: "Tera",
  61230. height: math.unit(144000, "miles")
  61231. },
  61232. ]
  61233. ))
  61234. characterMakers.push(() => makeCharacter(
  61235. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61236. {
  61237. front: {
  61238. height: math.unit(6 + 2/12, "feet"),
  61239. name: "Front",
  61240. image: {
  61241. source: "./media/characters/reiku/front.svg",
  61242. extra: 1910/1757,
  61243. bottom: 103/2013
  61244. },
  61245. extraAttributes: {
  61246. "thighThickness": {
  61247. name: "Thigh Thickness",
  61248. power: 1,
  61249. type: "length",
  61250. base: math.unit(1.12, "feet")
  61251. },
  61252. "assThickness": {
  61253. name: "Ass Thickness",
  61254. power: 1,
  61255. type: "length",
  61256. base: math.unit(1.12*2, "feet")
  61257. },
  61258. }
  61259. },
  61260. side: {
  61261. height: math.unit(6 + 2/12, "feet"),
  61262. name: "Side",
  61263. image: {
  61264. source: "./media/characters/reiku/side.svg",
  61265. extra: 1846/1748,
  61266. bottom: 99/1945
  61267. },
  61268. extraAttributes: {
  61269. "thighThickness": {
  61270. name: "Thigh Thickness",
  61271. power: 1,
  61272. type: "length",
  61273. base: math.unit(1.12, "feet")
  61274. },
  61275. "assThickness": {
  61276. name: "Ass Thickness",
  61277. power: 1,
  61278. type: "length",
  61279. base: math.unit(1.12*2, "feet")
  61280. },
  61281. }
  61282. },
  61283. back: {
  61284. height: math.unit(6 + 2/12, "feet"),
  61285. name: "Back",
  61286. image: {
  61287. source: "./media/characters/reiku/back.svg",
  61288. extra: 1941/1786,
  61289. bottom: 34/1975
  61290. },
  61291. extraAttributes: {
  61292. "thighThickness": {
  61293. name: "Thigh Thickness",
  61294. power: 1,
  61295. type: "length",
  61296. base: math.unit(1.12, "feet")
  61297. },
  61298. "assThickness": {
  61299. name: "Ass Thickness",
  61300. power: 1,
  61301. type: "length",
  61302. base: math.unit(1.12*2, "feet")
  61303. },
  61304. }
  61305. },
  61306. head: {
  61307. height: math.unit(1.8, "feet"),
  61308. name: "Head",
  61309. image: {
  61310. source: "./media/characters/reiku/head.svg"
  61311. }
  61312. },
  61313. tailTop: {
  61314. height: math.unit(8.4, "feet"),
  61315. name: "Tail (Top)",
  61316. image: {
  61317. source: "./media/characters/reiku/tail-top.svg"
  61318. }
  61319. },
  61320. tailBottom: {
  61321. height: math.unit(8.4, "feet"),
  61322. name: "Tail (Bottom)",
  61323. image: {
  61324. source: "./media/characters/reiku/tail-bottom.svg"
  61325. }
  61326. },
  61327. foot: {
  61328. height: math.unit(2.6, "feet"),
  61329. name: "Foot",
  61330. image: {
  61331. source: "./media/characters/reiku/foot.svg"
  61332. }
  61333. },
  61334. footCurled: {
  61335. height: math.unit(2.3, "feet"),
  61336. name: "Foot (Curled)",
  61337. image: {
  61338. source: "./media/characters/reiku/foot-curled.svg"
  61339. }
  61340. },
  61341. footSide: {
  61342. height: math.unit(1.26, "feet"),
  61343. name: "Foot (Side)",
  61344. image: {
  61345. source: "./media/characters/reiku/foot-side.svg"
  61346. }
  61347. },
  61348. },
  61349. [
  61350. {
  61351. name: "Normal",
  61352. height: math.unit(6 + 2/12, "feet"),
  61353. default: true
  61354. },
  61355. ]
  61356. ))
  61357. characterMakers.push(() => makeCharacter(
  61358. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61359. {
  61360. front: {
  61361. height: math.unit(7, "feet"),
  61362. weight: math.unit(500, "kg"),
  61363. name: "Front",
  61364. image: {
  61365. source: "./media/characters/cialda/front.svg",
  61366. extra: 912/745,
  61367. bottom: 55/967
  61368. }
  61369. },
  61370. },
  61371. [
  61372. {
  61373. name: "Normal",
  61374. height: math.unit(7, "feet"),
  61375. default: true
  61376. },
  61377. ]
  61378. ))
  61379. characterMakers.push(() => makeCharacter(
  61380. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61381. {
  61382. side: {
  61383. height: math.unit(6, "feet"),
  61384. weight: math.unit(600, "lb"),
  61385. preyCapacity: math.unit(25, "liters"),
  61386. name: "Side",
  61387. image: {
  61388. source: "./media/characters/darkkin/side.svg",
  61389. extra: 1597/1447,
  61390. bottom: 101/1698
  61391. }
  61392. },
  61393. },
  61394. [
  61395. {
  61396. name: "Canon Height",
  61397. height: math.unit(568, "feet"),
  61398. default: true
  61399. },
  61400. ]
  61401. ))
  61402. characterMakers.push(() => makeCharacter(
  61403. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61404. {
  61405. front: {
  61406. height: math.unit(6, "feet"),
  61407. weight: math.unit(1500, "lb"),
  61408. preyCapacity: math.unit(3, "people"),
  61409. name: "Front",
  61410. image: {
  61411. source: "./media/characters/livnia/front.svg",
  61412. extra: 934/932,
  61413. bottom: 83/1017
  61414. }
  61415. },
  61416. back: {
  61417. height: math.unit(6, "feet"),
  61418. weight: math.unit(1500, "lb"),
  61419. preyCapacity: math.unit(3, "people"),
  61420. name: "Back",
  61421. image: {
  61422. source: "./media/characters/livnia/back.svg",
  61423. extra: 916/915,
  61424. bottom: 58/974
  61425. }
  61426. },
  61427. head: {
  61428. height: math.unit(1.53, "feet"),
  61429. name: "Head",
  61430. image: {
  61431. source: "./media/characters/livnia/head.svg"
  61432. }
  61433. },
  61434. maw: {
  61435. height: math.unit(0.78, "feet"),
  61436. name: "Maw",
  61437. image: {
  61438. source: "./media/characters/livnia/maw.svg"
  61439. }
  61440. },
  61441. genitals: {
  61442. height: math.unit(0.35, "feet"),
  61443. name: "Genitals",
  61444. image: {
  61445. source: "./media/characters/livnia/genitals.svg"
  61446. }
  61447. },
  61448. },
  61449. [
  61450. {
  61451. name: "Normal",
  61452. height: math.unit(1000, "feet"),
  61453. default: true
  61454. },
  61455. ]
  61456. ))
  61457. characterMakers.push(() => makeCharacter(
  61458. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61459. {
  61460. front: {
  61461. height: math.unit(4, "feet"),
  61462. weight: math.unit(73, "lb"),
  61463. name: "Front",
  61464. image: {
  61465. source: "./media/characters/hayaku/front.svg",
  61466. extra: 1011/888,
  61467. bottom: 33/1044
  61468. }
  61469. },
  61470. back: {
  61471. height: math.unit(4, "feet"),
  61472. weight: math.unit(73, "lb"),
  61473. name: "Back",
  61474. image: {
  61475. source: "./media/characters/hayaku/back.svg",
  61476. extra: 1040/930,
  61477. bottom: 20/1060
  61478. }
  61479. },
  61480. },
  61481. [
  61482. {
  61483. name: "Normal",
  61484. height: math.unit(4, "feet"),
  61485. default: true
  61486. },
  61487. ]
  61488. ))
  61489. characterMakers.push(() => makeCharacter(
  61490. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61491. {
  61492. front: {
  61493. height: math.unit(6 + 7/12, "feet"),
  61494. weight: math.unit(300, "lb"),
  61495. name: "Front",
  61496. image: {
  61497. source: "./media/characters/athena-bryzant/front.svg",
  61498. extra: 870/835,
  61499. bottom: 33/903
  61500. }
  61501. },
  61502. back: {
  61503. height: math.unit(6 + 7/12, "feet"),
  61504. weight: math.unit(300, "lb"),
  61505. name: "Back",
  61506. image: {
  61507. source: "./media/characters/athena-bryzant/back.svg",
  61508. extra: 858/823,
  61509. bottom: 30/888
  61510. }
  61511. },
  61512. head: {
  61513. height: math.unit(2.38, "feet"),
  61514. name: "Head",
  61515. image: {
  61516. source: "./media/characters/athena-bryzant/head.svg"
  61517. }
  61518. },
  61519. wings: {
  61520. height: math.unit(2.85, "feet"),
  61521. name: "Wings",
  61522. image: {
  61523. source: "./media/characters/athena-bryzant/wings.svg"
  61524. }
  61525. },
  61526. },
  61527. [
  61528. {
  61529. name: "Normal",
  61530. height: math.unit(6 + 7/12, "feet"),
  61531. default: true
  61532. },
  61533. {
  61534. name: "Big",
  61535. height: math.unit(8, "feet")
  61536. },
  61537. {
  61538. name: "Very Big",
  61539. height: math.unit(11, "feet")
  61540. },
  61541. ]
  61542. ))
  61543. characterMakers.push(() => makeCharacter(
  61544. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61545. {
  61546. side: {
  61547. height: math.unit(3, "meters"),
  61548. weight: math.unit(7500, "kg"),
  61549. preyCapacity: math.unit(1e12, "people"),
  61550. name: "Side",
  61551. image: {
  61552. source: "./media/characters/zel-kesh/side.svg",
  61553. extra: 910/407,
  61554. bottom: 147/1057
  61555. }
  61556. },
  61557. },
  61558. [
  61559. {
  61560. name: "Normal",
  61561. height: math.unit(3, "meters"),
  61562. default: true
  61563. },
  61564. ]
  61565. ))
  61566. characterMakers.push(() => makeCharacter(
  61567. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61568. {
  61569. front: {
  61570. height: math.unit(2, "meters"),
  61571. weight: math.unit(95, "kg"),
  61572. name: "Front",
  61573. image: {
  61574. source: "./media/characters/kane-fox/front.svg",
  61575. extra: 945/888,
  61576. bottom: 27/972
  61577. }
  61578. },
  61579. back: {
  61580. height: math.unit(2, "meters"),
  61581. weight: math.unit(95, "kg"),
  61582. name: "Back",
  61583. image: {
  61584. source: "./media/characters/kane-fox/back.svg",
  61585. extra: 959/914,
  61586. bottom: 15/974
  61587. }
  61588. },
  61589. frontLewd: {
  61590. height: math.unit(2, "meters"),
  61591. weight: math.unit(95, "kg"),
  61592. name: "Front (Lewd)",
  61593. image: {
  61594. source: "./media/characters/kane-fox/front-lewd.svg",
  61595. extra: 945/888,
  61596. bottom: 27/972
  61597. }
  61598. },
  61599. },
  61600. [
  61601. {
  61602. name: "Home Size",
  61603. height: math.unit(2, "meters"),
  61604. default: true
  61605. },
  61606. {
  61607. name: "Macro",
  61608. height: math.unit(200, "meters")
  61609. },
  61610. {
  61611. name: "Small Mega",
  61612. height: math.unit(3, "km")
  61613. },
  61614. {
  61615. name: "Mega",
  61616. height: math.unit(50, "km")
  61617. },
  61618. {
  61619. name: "Giga",
  61620. height: math.unit(200, "km")
  61621. },
  61622. {
  61623. name: "Giga+",
  61624. height: math.unit(2500, "km")
  61625. },
  61626. {
  61627. name: "Terra",
  61628. height: math.unit(70000, "km")
  61629. },
  61630. {
  61631. name: "Terra+",
  61632. height: math.unit(150000, "km")
  61633. },
  61634. {
  61635. name: "Terra++",
  61636. height: math.unit(400000, "km")
  61637. },
  61638. ]
  61639. ))
  61640. characterMakers.push(() => makeCharacter(
  61641. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61642. {
  61643. otter_front: {
  61644. height: math.unit(1.8, "meters"),
  61645. weight: math.unit(90, "kg"),
  61646. name: "Front",
  61647. image: {
  61648. source: "./media/characters/ayranus/otter-front.svg",
  61649. extra: 468/452,
  61650. bottom: 43/511
  61651. },
  61652. form: "otter",
  61653. },
  61654. otter_frontLewd: {
  61655. height: math.unit(1.8, "meters"),
  61656. weight: math.unit(90, "kg"),
  61657. name: "Front (Lewd)",
  61658. image: {
  61659. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61660. extra: 468/452,
  61661. bottom: 43/511
  61662. },
  61663. form: "otter",
  61664. },
  61665. lionbat_front: {
  61666. height: math.unit(1.8, "meters"),
  61667. weight: math.unit(90, "kg"),
  61668. name: "Front (Lewd)",
  61669. image: {
  61670. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61671. extra: 797/740,
  61672. bottom: 78/875
  61673. },
  61674. form: "lionbat",
  61675. },
  61676. paw: {
  61677. height: math.unit(1.5, "feet"),
  61678. name: "Paw",
  61679. image: {
  61680. source: "./media/characters/ayranus/paw.svg"
  61681. },
  61682. },
  61683. },
  61684. [
  61685. {
  61686. name: "Incognito",
  61687. height: math.unit(1.8, "meters"),
  61688. allForms: true
  61689. },
  61690. {
  61691. name: "Macro",
  61692. height: math.unit(60, "meters"),
  61693. allForms: true
  61694. },
  61695. {
  61696. name: "Macro+",
  61697. height: math.unit(200, "meters"),
  61698. allForms: true
  61699. },
  61700. {
  61701. name: "Mega",
  61702. height: math.unit(35, "km"),
  61703. allForms: true
  61704. },
  61705. {
  61706. name: "Giga",
  61707. height: math.unit(220, "km"),
  61708. allForms: true
  61709. },
  61710. {
  61711. name: "Giga+",
  61712. height: math.unit(1500, "km"),
  61713. allForms: true
  61714. },
  61715. {
  61716. name: "Terra",
  61717. height: math.unit(13000, "km"),
  61718. allForms: true
  61719. },
  61720. {
  61721. name: "Terra+",
  61722. height: math.unit(500000, "km"),
  61723. allForms: true
  61724. },
  61725. {
  61726. name: "Galactic",
  61727. height: math.unit(486080, "parsecs"),
  61728. default: true,
  61729. allForms: true
  61730. },
  61731. ],
  61732. {
  61733. "otter": {
  61734. name: "Otter",
  61735. default: true
  61736. },
  61737. "lionbat": {
  61738. name: "Lionbat",
  61739. },
  61740. }
  61741. ))
  61742. characterMakers.push(() => makeCharacter(
  61743. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61744. {
  61745. front: {
  61746. height: math.unit(7 + 4/12, "feet"),
  61747. weight: math.unit(400, "lb"),
  61748. name: "Front",
  61749. image: {
  61750. source: "./media/characters/proxy/front.svg",
  61751. extra: 1605/1542,
  61752. bottom: 55/1660
  61753. }
  61754. },
  61755. side: {
  61756. height: math.unit(7 + 4/12, "feet"),
  61757. weight: math.unit(400, "lb"),
  61758. name: "Side",
  61759. image: {
  61760. source: "./media/characters/proxy/side.svg",
  61761. extra: 794/759,
  61762. bottom: 6/800
  61763. }
  61764. },
  61765. hand: {
  61766. height: math.unit(1.54, "feet"),
  61767. name: "Hand",
  61768. image: {
  61769. source: "./media/characters/proxy/hand.svg"
  61770. }
  61771. },
  61772. paw: {
  61773. height: math.unit(1.53, "feet"),
  61774. name: "Paw",
  61775. image: {
  61776. source: "./media/characters/proxy/paw.svg"
  61777. }
  61778. },
  61779. maw: {
  61780. height: math.unit(1.9, "feet"),
  61781. name: "Maw",
  61782. image: {
  61783. source: "./media/characters/proxy/maw.svg"
  61784. }
  61785. },
  61786. },
  61787. [
  61788. {
  61789. name: "Normal",
  61790. height: math.unit(7 + 4/12, "feet"),
  61791. default: true
  61792. },
  61793. ]
  61794. ))
  61795. characterMakers.push(() => makeCharacter(
  61796. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61797. {
  61798. front: {
  61799. height: math.unit(4, "meters"),
  61800. name: "Front",
  61801. image: {
  61802. source: "./media/characters/crocozilla/front.svg",
  61803. extra: 1790/1742,
  61804. bottom: 78/1868
  61805. }
  61806. },
  61807. },
  61808. [
  61809. {
  61810. name: "Normal",
  61811. height: math.unit(4, "meters"),
  61812. default: true
  61813. },
  61814. ]
  61815. ))
  61816. characterMakers.push(() => makeCharacter(
  61817. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61818. {
  61819. front: {
  61820. height: math.unit(1.8, "meters"),
  61821. weight: math.unit(120, "kg"),
  61822. name: "Front",
  61823. image: {
  61824. source: "./media/characters/kurz/front.svg",
  61825. extra: 1960/1824,
  61826. bottom: 41/2001
  61827. }
  61828. },
  61829. back: {
  61830. height: math.unit(1.8, "meters"),
  61831. weight: math.unit(120, "kg"),
  61832. name: "Back",
  61833. image: {
  61834. source: "./media/characters/kurz/back.svg",
  61835. extra: 1906/1787,
  61836. bottom: 60/1966
  61837. }
  61838. },
  61839. frontLewd: {
  61840. height: math.unit(1.8, "meters"),
  61841. weight: math.unit(120, "kg"),
  61842. name: "Front (Lewd)",
  61843. image: {
  61844. source: "./media/characters/kurz/front-lewd.svg",
  61845. extra: 1960/1824,
  61846. bottom: 41/2001
  61847. }
  61848. },
  61849. maw: {
  61850. height: math.unit(0.69, "meters"),
  61851. name: "Maw",
  61852. image: {
  61853. source: "./media/characters/kurz/maw.svg"
  61854. }
  61855. },
  61856. },
  61857. [
  61858. {
  61859. name: "Original Size",
  61860. height: math.unit(1.8, "meters")
  61861. },
  61862. {
  61863. name: "Incognito Size",
  61864. height: math.unit(2.4, "meters"),
  61865. default: true
  61866. },
  61867. {
  61868. name: "Macro",
  61869. height: math.unit(30, "meters")
  61870. },
  61871. {
  61872. name: "Macro+",
  61873. height: math.unit(250, "meters")
  61874. },
  61875. {
  61876. name: "Mega",
  61877. height: math.unit(2, "km")
  61878. },
  61879. {
  61880. name: "Mega+",
  61881. height: math.unit(35, "km")
  61882. },
  61883. {
  61884. name: "Mega++",
  61885. height: math.unit(75, "km")
  61886. },
  61887. {
  61888. name: "Giga",
  61889. height: math.unit(250, "km")
  61890. },
  61891. {
  61892. name: "Terra",
  61893. height: math.unit(15000, "km")
  61894. },
  61895. {
  61896. name: "Terra+",
  61897. height: math.unit(2250000, "km")
  61898. },
  61899. ]
  61900. ))
  61901. characterMakers.push(() => makeCharacter(
  61902. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61903. {
  61904. front: {
  61905. height: math.unit(16 + 3/12, "feet"),
  61906. weight: math.unit(3575, "lb"),
  61907. name: "Front",
  61908. image: {
  61909. source: "./media/characters/nikita/front.svg",
  61910. extra: 1064/955,
  61911. bottom: 47/1111
  61912. }
  61913. },
  61914. },
  61915. [
  61916. {
  61917. name: "Normal",
  61918. height: math.unit(16 + 3/12, "feet"),
  61919. default: true
  61920. },
  61921. {
  61922. name: "Big",
  61923. height: math.unit(21, "feet")
  61924. },
  61925. {
  61926. name: "Biggest",
  61927. height: math.unit(50, "feet")
  61928. },
  61929. ]
  61930. ))
  61931. characterMakers.push(() => makeCharacter(
  61932. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61933. {
  61934. front: {
  61935. height: math.unit(1.92, "m"),
  61936. weight: math.unit(76, "kg"),
  61937. name: "Front",
  61938. image: {
  61939. source: "./media/characters/kyara/front.svg",
  61940. extra: 1550/1438,
  61941. bottom: 139/1689
  61942. }
  61943. },
  61944. back: {
  61945. height: math.unit(1.92, "m"),
  61946. weight: math.unit(76, "kg"),
  61947. name: "Back",
  61948. image: {
  61949. source: "./media/characters/kyara/back.svg",
  61950. extra: 1523/1427,
  61951. bottom: 83/1606
  61952. }
  61953. },
  61954. head: {
  61955. height: math.unit(1.22, "feet"),
  61956. name: "Head",
  61957. image: {
  61958. source: "./media/characters/kyara/head.svg"
  61959. }
  61960. },
  61961. maw: {
  61962. height: math.unit(0.73, "feet"),
  61963. name: "Maw",
  61964. image: {
  61965. source: "./media/characters/kyara/maw.svg"
  61966. }
  61967. },
  61968. paws: {
  61969. height: math.unit(0.95, "feet"),
  61970. name: "Paws",
  61971. image: {
  61972. source: "./media/characters/kyara/paws.svg"
  61973. }
  61974. },
  61975. },
  61976. [
  61977. {
  61978. name: "Normal",
  61979. height: math.unit(1.92, "meters"),
  61980. default: true
  61981. },
  61982. {
  61983. name: "Mini Macro",
  61984. height: math.unit(192, "meters")
  61985. },
  61986. {
  61987. name: "Macro",
  61988. height: math.unit(480, "meters")
  61989. },
  61990. {
  61991. name: "Mega Macro",
  61992. height: math.unit(1440, "meters")
  61993. },
  61994. ]
  61995. ))
  61996. characterMakers.push(() => makeCharacter(
  61997. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61998. {
  61999. front: {
  62000. height: math.unit(6, "feet"),
  62001. weight: math.unit(160, "lbs"),
  62002. preyCapacity: math.unit(0.05, "people"),
  62003. name: "Front",
  62004. image: {
  62005. source: "./media/characters/layla-amari/front.svg",
  62006. extra: 1922/1723,
  62007. bottom: 90/2012
  62008. }
  62009. },
  62010. back: {
  62011. height: math.unit(6, "feet"),
  62012. weight: math.unit(160, "lbs"),
  62013. preyCapacity: math.unit(0.05, "people"),
  62014. name: "Back",
  62015. image: {
  62016. source: "./media/characters/layla-amari/back.svg",
  62017. extra: 1917/1718,
  62018. bottom: 50/1967
  62019. }
  62020. },
  62021. frontDressed: {
  62022. height: math.unit(6, "feet"),
  62023. weight: math.unit(160, "lbs"),
  62024. preyCapacity: math.unit(0.05, "people"),
  62025. name: "Front (Dressed)",
  62026. image: {
  62027. source: "./media/characters/layla-amari/front-dressed.svg",
  62028. extra: 1922/1723,
  62029. bottom: 90/2012
  62030. }
  62031. },
  62032. face: {
  62033. height: math.unit(0.93, "feet"),
  62034. name: "Face",
  62035. image: {
  62036. source: "./media/characters/layla-amari/face.svg"
  62037. }
  62038. },
  62039. hand: {
  62040. height: math.unit(0.66 , "feet"),
  62041. name: "Hand",
  62042. image: {
  62043. source: "./media/characters/layla-amari/hand.svg"
  62044. }
  62045. },
  62046. foot: {
  62047. height: math.unit(1, "feet"),
  62048. name: "Foot",
  62049. image: {
  62050. source: "./media/characters/layla-amari/foot.svg"
  62051. }
  62052. },
  62053. necklace: {
  62054. height: math.unit(0.32, "feet"),
  62055. name: "Necklace",
  62056. image: {
  62057. source: "./media/characters/layla-amari/necklace.svg"
  62058. }
  62059. },
  62060. nipple: {
  62061. height: math.unit(0.2, "feet"),
  62062. name: "Nipple",
  62063. image: {
  62064. source: "./media/characters/layla-amari/nipple.svg"
  62065. }
  62066. },
  62067. slit: {
  62068. height: math.unit(0.26, "feet"),
  62069. name: "Slit",
  62070. image: {
  62071. source: "./media/characters/layla-amari/slit.svg"
  62072. }
  62073. },
  62074. },
  62075. [
  62076. {
  62077. name: "Natural",
  62078. height: math.unit(825, "feet"),
  62079. default: true
  62080. },
  62081. {
  62082. name: "Enhanced",
  62083. height: math.unit(8250, "feet")
  62084. },
  62085. {
  62086. name: "Apparent Size",
  62087. height: math.unit(9.04363e+8, "meters")
  62088. },
  62089. ]
  62090. ))
  62091. characterMakers.push(() => makeCharacter(
  62092. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62093. {
  62094. front: {
  62095. height: math.unit(1.3, "meters"),
  62096. name: "Front",
  62097. image: {
  62098. source: "./media/characters/percy/front.svg",
  62099. extra: 1444/1289,
  62100. bottom: 54/1498
  62101. }
  62102. },
  62103. },
  62104. [
  62105. {
  62106. name: "Normal",
  62107. height: math.unit(1.3, "meters"),
  62108. default: true
  62109. },
  62110. ]
  62111. ))
  62112. characterMakers.push(() => makeCharacter(
  62113. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62114. {
  62115. side: {
  62116. height: math.unit(10, "meters"),
  62117. name: "Side",
  62118. image: {
  62119. source: "./media/characters/grev/side.svg",
  62120. extra: 653/266,
  62121. bottom: 77/730
  62122. }
  62123. },
  62124. head: {
  62125. height: math.unit(16.2, "m"),
  62126. name: "Head",
  62127. image: {
  62128. source: "./media/characters/grev/head.svg"
  62129. }
  62130. },
  62131. dick: {
  62132. height: math.unit(2.8135932034, "m"),
  62133. name: "Dick",
  62134. image: {
  62135. source: "./media/characters/grev/dick.svg"
  62136. }
  62137. },
  62138. },
  62139. [
  62140. {
  62141. name: "Friend-Sized",
  62142. height: math.unit(80, "cm")
  62143. },
  62144. {
  62145. name: "Normal",
  62146. height: math.unit(10, "meters"),
  62147. default: true
  62148. },
  62149. {
  62150. name: "Macro",
  62151. height: math.unit(200, "meters")
  62152. },
  62153. ]
  62154. ))
  62155. characterMakers.push(() => makeCharacter(
  62156. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62157. {
  62158. front: {
  62159. height: math.unit(19.75, "feet"),
  62160. weight: math.unit(20000, "lb"),
  62161. name: "Front",
  62162. image: {
  62163. source: "./media/characters/azuuca/front.svg",
  62164. extra: 1593/1511,
  62165. bottom: 55/1648
  62166. }
  62167. },
  62168. },
  62169. [
  62170. {
  62171. name: "Normal",
  62172. height: math.unit(19.75, "feet"),
  62173. default: true
  62174. },
  62175. ]
  62176. ))
  62177. characterMakers.push(() => makeCharacter(
  62178. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62179. {
  62180. front: {
  62181. height: math.unit(15, "feet"),
  62182. weight: math.unit(1500, "lb"),
  62183. name: "Front",
  62184. image: {
  62185. source: "./media/characters/valuria/front.svg",
  62186. extra: 1588/1486,
  62187. bottom: 31/1619
  62188. }
  62189. },
  62190. },
  62191. [
  62192. {
  62193. name: "Normal",
  62194. height: math.unit(15, "feet"),
  62195. default: true
  62196. },
  62197. {
  62198. name: "Small",
  62199. height: math.unit(500, "feet")
  62200. },
  62201. {
  62202. name: "Macro",
  62203. height: math.unit(4000, "feet")
  62204. },
  62205. {
  62206. name: "Mega Macro",
  62207. height: math.unit(2000, "miles")
  62208. },
  62209. {
  62210. name: "Giga Macro",
  62211. height: math.unit(3e6, "miles")
  62212. },
  62213. ]
  62214. ))
  62215. characterMakers.push(() => makeCharacter(
  62216. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62217. {
  62218. front: {
  62219. height: math.unit(3500, "solarradii"),
  62220. name: "Front",
  62221. image: {
  62222. source: "./media/characters/terigaia/front.svg",
  62223. extra: 1531/1451,
  62224. bottom: 98/1629
  62225. }
  62226. },
  62227. },
  62228. [
  62229. {
  62230. name: "Normal",
  62231. height: math.unit(3500, "solarradii"),
  62232. default: true
  62233. },
  62234. ]
  62235. ))
  62236. characterMakers.push(() => makeCharacter(
  62237. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62238. {
  62239. front: {
  62240. height: math.unit(9.34, "feet"),
  62241. weight: math.unit(600, "lb"),
  62242. name: "Front",
  62243. image: {
  62244. source: "./media/characters/blair-blaziken/front.svg",
  62245. extra: 1557/1462,
  62246. bottom: 55/1612
  62247. }
  62248. },
  62249. },
  62250. [
  62251. {
  62252. name: "Normal",
  62253. height: math.unit(9.34, "feet"),
  62254. default: true
  62255. },
  62256. ]
  62257. ))
  62258. characterMakers.push(() => makeCharacter(
  62259. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62260. {
  62261. pistrogre_front: {
  62262. height: math.unit(10, "feet"),
  62263. weight: math.unit(10, "tons"),
  62264. name: "Front",
  62265. image: {
  62266. source: "./media/characters/braxia/pistrogre-front.svg",
  62267. extra: 1531/1334,
  62268. bottom: 114/1645
  62269. },
  62270. form: "pistrogre",
  62271. default: true
  62272. },
  62273. human_front: {
  62274. height: math.unit(10, "feet"),
  62275. weight: math.unit(10, "tons"),
  62276. name: "Front",
  62277. image: {
  62278. source: "./media/characters/braxia/human-front.svg",
  62279. extra: 1574/1501,
  62280. bottom: 37/1611
  62281. },
  62282. form: "human",
  62283. default: true
  62284. },
  62285. },
  62286. [
  62287. {
  62288. name: "Normal",
  62289. height: math.unit(10, "feet"),
  62290. default: true,
  62291. allForms: true
  62292. },
  62293. {
  62294. name: "Macro",
  62295. height: math.unit(1000, "feet"),
  62296. allForms: true
  62297. },
  62298. {
  62299. name: "Mega Macro",
  62300. height: math.unit(100, "miles"),
  62301. allForms: true
  62302. },
  62303. {
  62304. name: "Cosmic",
  62305. height: math.unit(1000000, "lightyears"),
  62306. allForms: true
  62307. },
  62308. {
  62309. name: "ϐѮԆԬӁꭍϞԢ",
  62310. height: math.unit(1000, "multiverses"),
  62311. allForms: true
  62312. },
  62313. ],
  62314. {
  62315. "pistrogre": {
  62316. name: "Pistrogre",
  62317. default: true
  62318. },
  62319. "human": {
  62320. name: "Human",
  62321. },
  62322. }
  62323. ))
  62324. characterMakers.push(() => makeCharacter(
  62325. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62326. {
  62327. front: {
  62328. height: math.unit(6 + 1/12, "feet"),
  62329. weight: math.unit(280, "lb"),
  62330. name: "Front",
  62331. image: {
  62332. source: "./media/characters/kiriga-yato/front.svg",
  62333. extra: 445/394,
  62334. bottom: 11/456
  62335. }
  62336. },
  62337. },
  62338. [
  62339. {
  62340. name: "Descended",
  62341. height: math.unit(3, "feet")
  62342. },
  62343. {
  62344. name: "Average",
  62345. height: math.unit(6 + 1/12, "feet"),
  62346. default: true
  62347. },
  62348. {
  62349. name: "Ascended",
  62350. height: math.unit(9 + 2/12, "feet")
  62351. },
  62352. ]
  62353. ))
  62354. characterMakers.push(() => makeCharacter(
  62355. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62356. {
  62357. front: {
  62358. height: math.unit(6, "feet"),
  62359. weight: math.unit(150, "lb"),
  62360. name: "Front",
  62361. image: {
  62362. source: "./media/characters/kylie/front.svg",
  62363. extra: 1114/1046,
  62364. bottom: 65/1179
  62365. },
  62366. extraAttributes: {
  62367. "hoofSize": {
  62368. name: "Hoof Size",
  62369. power: 2,
  62370. type: "area",
  62371. base: math.unit(0.034, "m^2")
  62372. },
  62373. "footSize": {
  62374. name: "Foot Size",
  62375. power: 2,
  62376. type: "area",
  62377. base: math.unit(0.75, "m^2")
  62378. },
  62379. }
  62380. },
  62381. side: {
  62382. height: math.unit(6, "feet"),
  62383. weight: math.unit(150, "lb"),
  62384. name: "Side",
  62385. image: {
  62386. source: "./media/characters/kylie/side.svg",
  62387. extra: 1178/1110,
  62388. bottom: 21/1199
  62389. },
  62390. extraAttributes: {
  62391. "hoofSize": {
  62392. name: "Hoof Size",
  62393. power: 2,
  62394. type: "area",
  62395. base: math.unit(0.034, "m^2")
  62396. },
  62397. "footSize": {
  62398. name: "Foot Size",
  62399. power: 2,
  62400. type: "area",
  62401. base: math.unit(0.75, "m^2")
  62402. },
  62403. }
  62404. },
  62405. back: {
  62406. height: math.unit(6, "feet"),
  62407. weight: math.unit(150, "lb"),
  62408. name: "Back",
  62409. image: {
  62410. source: "./media/characters/kylie/back.svg",
  62411. extra: 1115/1047,
  62412. bottom: 66/1181
  62413. },
  62414. extraAttributes: {
  62415. "hoofSize": {
  62416. name: "Hoof Size",
  62417. power: 2,
  62418. type: "area",
  62419. base: math.unit(0.034, "m^2")
  62420. },
  62421. "footSize": {
  62422. name: "Foot Size",
  62423. power: 2,
  62424. type: "area",
  62425. base: math.unit(0.75, "m^2")
  62426. },
  62427. }
  62428. },
  62429. head: {
  62430. height: math.unit(1.85, "feet"),
  62431. name: "Head",
  62432. image: {
  62433. source: "./media/characters/kylie/head.svg"
  62434. }
  62435. },
  62436. },
  62437. [
  62438. {
  62439. name: "Normal",
  62440. height: math.unit(90, "meters"),
  62441. default: true
  62442. },
  62443. ]
  62444. ))
  62445. characterMakers.push(() => makeCharacter(
  62446. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62447. {
  62448. front: {
  62449. height: math.unit(245, "feet"),
  62450. weight: math.unit(400000, "lb"),
  62451. name: "Front",
  62452. image: {
  62453. source: "./media/characters/sabado/front.svg",
  62454. extra: 1309/1164,
  62455. bottom: 29/1338
  62456. }
  62457. },
  62458. },
  62459. [
  62460. {
  62461. name: "Normal",
  62462. height: math.unit(245, "feet"),
  62463. default: true
  62464. },
  62465. ]
  62466. ))
  62467. characterMakers.push(() => makeCharacter(
  62468. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62469. {
  62470. shark_front: {
  62471. height: math.unit(2, "meters"),
  62472. weight: math.unit(200, "kg"),
  62473. name: "Front",
  62474. image: {
  62475. source: "./media/characters/zechal/shark-front.svg",
  62476. extra: 969/925,
  62477. bottom: 74/1043
  62478. },
  62479. form: "shark",
  62480. },
  62481. shark_back: {
  62482. height: math.unit(2, "meters"),
  62483. weight: math.unit(200, "kg"),
  62484. name: "Back",
  62485. image: {
  62486. source: "./media/characters/zechal/shark-back.svg",
  62487. extra: 994/949,
  62488. bottom: 176/1170
  62489. },
  62490. form: "shark",
  62491. },
  62492. shark_frontLewd: {
  62493. height: math.unit(2, "meters"),
  62494. weight: math.unit(200, "kg"),
  62495. name: "Front (Lewd)",
  62496. image: {
  62497. source: "./media/characters/zechal/shark-front-lewd.svg",
  62498. extra: 969/925,
  62499. bottom: 74/1043
  62500. },
  62501. form: "shark",
  62502. },
  62503. shark_side: {
  62504. height: math.unit(1.56, "meters"),
  62505. weight: math.unit(200, "kg"),
  62506. name: "Side",
  62507. image: {
  62508. source: "./media/characters/zechal/shark-side.svg"
  62509. },
  62510. form: "shark",
  62511. },
  62512. dragon_front: {
  62513. height: math.unit(2, "meters"),
  62514. weight: math.unit(200, "kg"),
  62515. name: "Front",
  62516. image: {
  62517. source: "./media/characters/zechal/dragon-front.svg",
  62518. extra: 1041/925,
  62519. bottom: 74/1115
  62520. },
  62521. form: "dragon",
  62522. },
  62523. dragon_back: {
  62524. height: math.unit(2, "meters"),
  62525. weight: math.unit(200, "kg"),
  62526. name: "Back",
  62527. image: {
  62528. source: "./media/characters/zechal/dragon-back.svg",
  62529. extra: 1061/949,
  62530. bottom: 176/1237
  62531. },
  62532. form: "dragon",
  62533. },
  62534. dragon_frontLewd: {
  62535. height: math.unit(2, "meters"),
  62536. weight: math.unit(200, "kg"),
  62537. name: "Front (Lewd)",
  62538. image: {
  62539. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62540. extra: 1041/925,
  62541. bottom: 74/1115
  62542. },
  62543. form: "dragon",
  62544. },
  62545. dragon_side: {
  62546. height: math.unit(1.56, "meters"),
  62547. weight: math.unit(200, "kg"),
  62548. name: "Side",
  62549. image: {
  62550. source: "./media/characters/zechal/dragon-side.svg"
  62551. },
  62552. form: "dragon",
  62553. },
  62554. foot: {
  62555. height: math.unit(0.5, "meters"),
  62556. name: "Foot",
  62557. image: {
  62558. source: "./media/characters/zechal/foot.svg"
  62559. }
  62560. },
  62561. sheathFront: {
  62562. height: math.unit(0.45, "meters"),
  62563. name: "Sheath (Front)",
  62564. image: {
  62565. source: "./media/characters/zechal/sheath-front.svg"
  62566. }
  62567. },
  62568. sheathSide: {
  62569. height: math.unit(0.45, "meters"),
  62570. name: "Sheath (Side)",
  62571. image: {
  62572. source: "./media/characters/zechal/sheath-side.svg"
  62573. }
  62574. },
  62575. },
  62576. [
  62577. {
  62578. name: "Incognito",
  62579. height: math.unit(2, "meters"),
  62580. allForms: true
  62581. },
  62582. {
  62583. name: "Small Rampage",
  62584. height: math.unit(25, "meters"),
  62585. allForms: true
  62586. },
  62587. {
  62588. name: "Home Size",
  62589. height: math.unit(250, "meters"),
  62590. allForms: true,
  62591. default: true
  62592. },
  62593. {
  62594. name: "Macro+",
  62595. height: math.unit(700, "meters"),
  62596. allForms: true
  62597. },
  62598. {
  62599. name: "Small Mega",
  62600. height: math.unit(3, "km"),
  62601. allForms: true
  62602. },
  62603. {
  62604. name: "Mega",
  62605. height: math.unit(15, "km"),
  62606. allForms: true
  62607. },
  62608. {
  62609. name: "Giga",
  62610. height: math.unit(300, "km"),
  62611. allForms: true
  62612. },
  62613. {
  62614. name: "Giga+",
  62615. height: math.unit(1750, "km"),
  62616. allForms: true
  62617. },
  62618. {
  62619. name: "Continental",
  62620. height: math.unit(5000, "km"),
  62621. allForms: true
  62622. },
  62623. {
  62624. name: "Terra",
  62625. height: math.unit(20000, "km"),
  62626. allForms: true
  62627. },
  62628. {
  62629. name: "Terra+",
  62630. height: math.unit(300000, "km"),
  62631. allForms: true
  62632. },
  62633. {
  62634. name: "Solar",
  62635. height: math.unit(40000000, "km"),
  62636. allForms: true
  62637. },
  62638. {
  62639. name: "Galactic",
  62640. height: math.unit(810133, "parsecs"),
  62641. allForms: true
  62642. },
  62643. {
  62644. name: "Universal",
  62645. height: math.unit(25, "universes"),
  62646. allForms: true
  62647. },
  62648. ],
  62649. {
  62650. "shark": {
  62651. name: "Shark",
  62652. default: true
  62653. },
  62654. "dragon": {
  62655. name: "Dragon",
  62656. },
  62657. }
  62658. ))
  62659. characterMakers.push(() => makeCharacter(
  62660. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62661. {
  62662. front: {
  62663. height: math.unit(2.2, "meters"),
  62664. weight: math.unit(150, "kg"),
  62665. name: "Front",
  62666. image: {
  62667. source: "./media/characters/sergis/front.svg",
  62668. extra: 1314/1312,
  62669. bottom: 112/1426
  62670. }
  62671. },
  62672. back: {
  62673. height: math.unit(2.2, "meters"),
  62674. weight: math.unit(150, "kg"),
  62675. name: "Back",
  62676. image: {
  62677. source: "./media/characters/sergis/back.svg",
  62678. extra: 1335/1333,
  62679. bottom: 19/1354
  62680. }
  62681. },
  62682. frontLewd: {
  62683. height: math.unit(2.2, "meters"),
  62684. weight: math.unit(150, "kg"),
  62685. name: "Front (Lewd)",
  62686. image: {
  62687. source: "./media/characters/sergis/front-lewd.svg",
  62688. extra: 1314/1312,
  62689. bottom: 112/1426
  62690. }
  62691. },
  62692. frontDressed: {
  62693. height: math.unit(2.2, "meters"),
  62694. weight: math.unit(150, "kg"),
  62695. name: "Front (Dressed)",
  62696. image: {
  62697. source: "./media/characters/sergis/front-dressed.svg",
  62698. extra: 1330/1328,
  62699. bottom: 95/1425
  62700. }
  62701. },
  62702. frontDressedLewd: {
  62703. height: math.unit(2.2, "meters"),
  62704. weight: math.unit(150, "kg"),
  62705. name: "Front (Dressed, Lewd)",
  62706. image: {
  62707. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62708. extra: 1330/1328,
  62709. bottom: 95/1425
  62710. }
  62711. },
  62712. maw: {
  62713. height: math.unit(0.48, "meters"),
  62714. name: "Maw",
  62715. image: {
  62716. source: "./media/characters/sergis/maw.svg"
  62717. }
  62718. },
  62719. sheath: {
  62720. height: math.unit(0.38, "meters"),
  62721. name: "Sheath",
  62722. image: {
  62723. source: "./media/characters/sergis/sheath.svg"
  62724. }
  62725. },
  62726. },
  62727. [
  62728. {
  62729. name: "Incognito Size",
  62730. height: math.unit(2.2, "meters")
  62731. },
  62732. {
  62733. name: "Small Macro",
  62734. height: math.unit(40, "meters")
  62735. },
  62736. {
  62737. name: "Macro",
  62738. height: math.unit(150, "meters")
  62739. },
  62740. {
  62741. name: "Macro+",
  62742. height: math.unit(300, "meters")
  62743. },
  62744. {
  62745. name: "Mega",
  62746. height: math.unit(2.5, "km")
  62747. },
  62748. {
  62749. name: "Mega+",
  62750. height: math.unit(30, "km")
  62751. },
  62752. {
  62753. name: "Home Size",
  62754. height: math.unit(300, "km"),
  62755. default: true
  62756. },
  62757. {
  62758. name: "Giga+",
  62759. height: math.unit(1000, "km")
  62760. },
  62761. {
  62762. name: "Giga++",
  62763. height: math.unit(6000, "km")
  62764. },
  62765. {
  62766. name: "Terra",
  62767. height: math.unit(70000, "km")
  62768. },
  62769. {
  62770. name: "Terra+",
  62771. height: math.unit(200000, "km")
  62772. },
  62773. {
  62774. name: "Galactic",
  62775. height: math.unit(634200, "lightyears")
  62776. },
  62777. ]
  62778. ))
  62779. characterMakers.push(() => makeCharacter(
  62780. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62781. {
  62782. standard: {
  62783. height: math.unit(1 + 5/12, "feet"),
  62784. name: "Standard",
  62785. image: {
  62786. source: "./media/characters/spade/standard.svg",
  62787. extra: 1794/1703,
  62788. bottom: 115/1909
  62789. }
  62790. },
  62791. disguised: {
  62792. height: math.unit(1 + 5/12, "feet"),
  62793. name: "Disguised",
  62794. image: {
  62795. source: "./media/characters/spade/disguised.svg",
  62796. extra: 1794/1700,
  62797. bottom: 98/1892
  62798. }
  62799. },
  62800. },
  62801. [
  62802. {
  62803. name: "Normal",
  62804. height: math.unit(1 + 5/12, "feet"),
  62805. default: true
  62806. },
  62807. ]
  62808. ))
  62809. characterMakers.push(() => makeCharacter(
  62810. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62811. {
  62812. frontNsfw: {
  62813. height: math.unit(5, "meters"),
  62814. weight: math.unit(2000, "kg"),
  62815. preyCapacity: math.unit(5, "people"),
  62816. name: "Front (NSFW)",
  62817. image: {
  62818. source: "./media/characters/zeanlain/front-nsfw.svg",
  62819. extra: 1087/938,
  62820. bottom: 93/1180
  62821. },
  62822. extraAttributes: {
  62823. "wingspan": {
  62824. name: "Wingspan",
  62825. power: 1,
  62826. type: "length",
  62827. base: math.unit(10, "meters")
  62828. },
  62829. "footSize": {
  62830. name: "Foot Size",
  62831. power: 1,
  62832. type: "length",
  62833. base: math.unit(0.68, "meters")
  62834. },
  62835. "cockLength": {
  62836. name: "Cock Length",
  62837. power: 1,
  62838. type: "length",
  62839. base: math.unit(1.69, "meters")
  62840. },
  62841. "ballVolume": {
  62842. name: "Ball Volume",
  62843. power: 3,
  62844. type: "volume",
  62845. base: math.unit(0.028, "m^3")
  62846. },
  62847. }
  62848. },
  62849. front: {
  62850. height: math.unit(5, "meters"),
  62851. weight: math.unit(2000, "kg"),
  62852. preyCapacity: math.unit(3, "people"),
  62853. name: "Front",
  62854. image: {
  62855. source: "./media/characters/zeanlain/front.svg",
  62856. extra: 1087/938,
  62857. bottom: 93/1180
  62858. },
  62859. extraAttributes: {
  62860. "wingspan": {
  62861. name: "Wingspan",
  62862. power: 1,
  62863. type: "length",
  62864. base: math.unit(10, "meters")
  62865. },
  62866. "footSize": {
  62867. name: "Foot Size",
  62868. power: 1,
  62869. type: "length",
  62870. base: math.unit(0.68, "meters")
  62871. },
  62872. }
  62873. },
  62874. dick: {
  62875. height: math.unit(5.15, "feet"),
  62876. name: "Dick",
  62877. image: {
  62878. source: "./media/characters/zeanlain/dick.svg"
  62879. }
  62880. },
  62881. },
  62882. [
  62883. {
  62884. name: "Normal",
  62885. height: math.unit(5, "meters"),
  62886. default: true
  62887. },
  62888. ]
  62889. ))
  62890. characterMakers.push(() => makeCharacter(
  62891. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62892. {
  62893. front: {
  62894. height: math.unit(10, "meters"),
  62895. weight: math.unit(250000, "kg"),
  62896. name: "Front",
  62897. image: {
  62898. source: "./media/characters/airamis/front.svg",
  62899. extra: 865/835,
  62900. bottom: 13/878
  62901. }
  62902. },
  62903. },
  62904. [
  62905. {
  62906. name: "Normal",
  62907. height: math.unit(10, "meters"),
  62908. default: true
  62909. },
  62910. ]
  62911. ))
  62912. characterMakers.push(() => makeCharacter(
  62913. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62914. {
  62915. front: {
  62916. height: math.unit(3 + 3/12, "feet"),
  62917. weight: math.unit(75, "lb"),
  62918. name: "Front",
  62919. image: {
  62920. source: "./media/characters/corra-tourmaline/front.svg",
  62921. extra: 1037/864,
  62922. bottom: 39/1076
  62923. }
  62924. },
  62925. back: {
  62926. height: math.unit(3 + 3/12, "feet"),
  62927. weight: math.unit(75, "lb"),
  62928. name: "Back",
  62929. image: {
  62930. source: "./media/characters/corra-tourmaline/back.svg",
  62931. extra: 1022/849,
  62932. bottom: 26/1048
  62933. }
  62934. },
  62935. dressed: {
  62936. height: math.unit(3 + 3/12, "feet"),
  62937. weight: math.unit(75, "lb"),
  62938. name: "Dressed",
  62939. image: {
  62940. source: "./media/characters/corra-tourmaline/dressed.svg",
  62941. extra: 1037/864,
  62942. bottom: 39/1076
  62943. }
  62944. },
  62945. beans: {
  62946. height: math.unit(0.37, "feet"),
  62947. name: "Beans",
  62948. image: {
  62949. source: "./media/characters/corra-tourmaline/beans.svg"
  62950. }
  62951. },
  62952. },
  62953. [
  62954. {
  62955. name: "Normal",
  62956. height: math.unit(3 + 3/12, "feet"),
  62957. default: true
  62958. },
  62959. {
  62960. name: "Macro",
  62961. height: math.unit(32, "feet")
  62962. },
  62963. ]
  62964. ))
  62965. characterMakers.push(() => makeCharacter(
  62966. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62967. {
  62968. front: {
  62969. height: math.unit(6 + 2/12, "feet"),
  62970. weight: math.unit(203, "lb"),
  62971. name: "Front",
  62972. image: {
  62973. source: "./media/characters/maki-kawa/front.svg",
  62974. extra: 950/890,
  62975. bottom: 62/1012
  62976. }
  62977. },
  62978. back: {
  62979. height: math.unit(6 + 2/12, "feet"),
  62980. weight: math.unit(203, "lb"),
  62981. name: "Back",
  62982. image: {
  62983. source: "./media/characters/maki-kawa/back.svg",
  62984. extra: 953/878,
  62985. bottom: 49/1002
  62986. }
  62987. },
  62988. frontBarista: {
  62989. height: math.unit(6 + 2/12, "feet"),
  62990. weight: math.unit(203, "lb"),
  62991. name: "Front (Barista)",
  62992. image: {
  62993. source: "./media/characters/maki-kawa/front-barista.svg",
  62994. extra: 943/883,
  62995. bottom: 69/1012
  62996. }
  62997. },
  62998. backBarista: {
  62999. height: math.unit(6 + 2/12, "feet"),
  63000. weight: math.unit(203, "lb"),
  63001. name: "Back (Barista)",
  63002. image: {
  63003. source: "./media/characters/maki-kawa/back-barista.svg",
  63004. extra: 953/878,
  63005. bottom: 49/1002
  63006. }
  63007. },
  63008. frontWrestler: {
  63009. height: math.unit(6 + 2/12, "feet"),
  63010. weight: math.unit(203, "lb"),
  63011. name: "Front (Wrestler)",
  63012. image: {
  63013. source: "./media/characters/maki-kawa/front-wrestler.svg",
  63014. extra: 950/890,
  63015. bottom: 62/1012
  63016. }
  63017. },
  63018. backWrestler: {
  63019. height: math.unit(6 + 2/12, "feet"),
  63020. weight: math.unit(203, "lb"),
  63021. name: "Back (Wrestler)",
  63022. image: {
  63023. source: "./media/characters/maki-kawa/back-wrestler.svg",
  63024. extra: 953/878,
  63025. bottom: 49/1002
  63026. }
  63027. },
  63028. headFront: {
  63029. height: math.unit(1.64, "feet"),
  63030. name: "Head (Front)",
  63031. image: {
  63032. source: "./media/characters/maki-kawa/head-front.svg"
  63033. }
  63034. },
  63035. headSide: {
  63036. height: math.unit(1.59, "feet"),
  63037. name: "Head (Side)",
  63038. image: {
  63039. source: "./media/characters/maki-kawa/head-side.svg"
  63040. }
  63041. },
  63042. paw: {
  63043. height: math.unit(0.9, "feet"),
  63044. name: "Paw",
  63045. image: {
  63046. source: "./media/characters/maki-kawa/paw.svg"
  63047. }
  63048. },
  63049. },
  63050. [
  63051. {
  63052. name: "Normal",
  63053. height: math.unit(6 + 2/12, "feet"),
  63054. default: true
  63055. },
  63056. {
  63057. name: "Macro",
  63058. height: math.unit(617, "feet")
  63059. },
  63060. ]
  63061. ))
  63062. characterMakers.push(() => makeCharacter(
  63063. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  63064. {
  63065. frontNsfw: {
  63066. height: math.unit(10, "feet"),
  63067. weight: math.unit(1500, "lb"),
  63068. name: "Front (NSFW)",
  63069. image: {
  63070. source: "./media/characters/lennox/front-nsfw.svg",
  63071. extra: 1623/1496,
  63072. bottom: 18/1641
  63073. },
  63074. extraAttributes: {
  63075. "cumVolume": {
  63076. name: "Cum Volume",
  63077. power: 3,
  63078. type: "volume",
  63079. base: math.unit(75, "liters")
  63080. },
  63081. }
  63082. },
  63083. backNsfw: {
  63084. height: math.unit(10, "feet"),
  63085. weight: math.unit(1500, "lb"),
  63086. name: "Back (NSFW)",
  63087. image: {
  63088. source: "./media/characters/lennox/back-nsfw.svg",
  63089. extra: 1641/1481,
  63090. bottom: 13/1654
  63091. },
  63092. extraAttributes: {
  63093. "cumVolume": {
  63094. name: "Cum Volume",
  63095. power: 3,
  63096. type: "volume",
  63097. base: math.unit(75, "liters")
  63098. },
  63099. }
  63100. },
  63101. frontSfw: {
  63102. height: math.unit(10, "feet"),
  63103. weight: math.unit(1500, "lb"),
  63104. name: "Front (SFW)",
  63105. image: {
  63106. source: "./media/characters/lennox/front-sfw.svg",
  63107. extra: 1623/1496,
  63108. bottom: 18/1641
  63109. }
  63110. },
  63111. backSfw: {
  63112. height: math.unit(10, "feet"),
  63113. weight: math.unit(1500, "lb"),
  63114. name: "Back (SFW)",
  63115. image: {
  63116. source: "./media/characters/lennox/back-sfw.svg",
  63117. extra: 1641/1481,
  63118. bottom: 13/1654
  63119. }
  63120. },
  63121. maw: {
  63122. height: math.unit(2.94, "feet"),
  63123. name: "Maw",
  63124. image: {
  63125. source: "./media/characters/lennox/maw.svg"
  63126. }
  63127. },
  63128. dick: {
  63129. height: math.unit(0.8323, "meters"),
  63130. weight: math.unit(0.07315728637*1000, "kg"),
  63131. name: "Dick",
  63132. image: {
  63133. source: "./media/characters/lennox/dick.svg"
  63134. },
  63135. extraAttributes: {
  63136. "thickness": {
  63137. name: "Thickness",
  63138. power: 1,
  63139. type: "length",
  63140. base: math.unit(0.330, "meters")
  63141. },
  63142. "length": {
  63143. name: "Length",
  63144. power: 1,
  63145. type: "length",
  63146. base: math.unit(0.8, "meters")
  63147. },
  63148. "cumVolume": {
  63149. name: "Cum Volume",
  63150. power: 3,
  63151. type: "volume",
  63152. base: math.unit(75, "liters")
  63153. },
  63154. }
  63155. },
  63156. },
  63157. [
  63158. {
  63159. name: "Micro",
  63160. height: math.unit(1, "inch")
  63161. },
  63162. {
  63163. name: "Normal",
  63164. height: math.unit(10, "feet"),
  63165. default: true
  63166. },
  63167. {
  63168. name: "Macro",
  63169. height: math.unit(200, "feet")
  63170. },
  63171. ]
  63172. ))
  63173. characterMakers.push(() => makeCharacter(
  63174. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63175. {
  63176. frontDressed: {
  63177. height: math.unit(15 + 7/12, "feet"),
  63178. weight: math.unit(5000, "lb"),
  63179. name: "Front (Dressed)",
  63180. image: {
  63181. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63182. extra: 1136/1023,
  63183. bottom: 51/1187
  63184. }
  63185. },
  63186. backDressed: {
  63187. height: math.unit(15 + 7/12, "feet"),
  63188. weight: math.unit(5000, "lb"),
  63189. name: "Back (Dressed)",
  63190. image: {
  63191. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63192. extra: 2359/2143,
  63193. bottom: 103/2462
  63194. }
  63195. },
  63196. front: {
  63197. height: math.unit(15 + 7/12, "feet"),
  63198. weight: math.unit(5000, "lb"),
  63199. name: "Front",
  63200. image: {
  63201. source: "./media/characters/vyse-iron-thunder/front.svg",
  63202. extra: 1136/1023,
  63203. bottom: 51/1187
  63204. }
  63205. },
  63206. hand: {
  63207. height: math.unit(2.36, "feet"),
  63208. name: "Hand",
  63209. image: {
  63210. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63211. }
  63212. },
  63213. foot: {
  63214. height: math.unit(1.72, "feet"),
  63215. name: "Foot",
  63216. image: {
  63217. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63218. }
  63219. },
  63220. mouth: {
  63221. height: math.unit(2, "feet"),
  63222. name: "Mouth",
  63223. image: {
  63224. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63225. }
  63226. },
  63227. eye: {
  63228. height: math.unit(0.58, "feet"),
  63229. name: "Eye",
  63230. image: {
  63231. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63232. }
  63233. },
  63234. },
  63235. [
  63236. {
  63237. name: "Normal",
  63238. height: math.unit(15 + 7/12, "feet"),
  63239. default: true
  63240. },
  63241. {
  63242. name: "Macro",
  63243. height: math.unit(157, "feet")
  63244. },
  63245. {
  63246. name: "Macro+",
  63247. height: math.unit(1570, "feet")
  63248. },
  63249. {
  63250. name: "Macro++",
  63251. height: math.unit(15700, "feet")
  63252. },
  63253. {
  63254. name: "Macro+++",
  63255. height: math.unit(157000, "feet")
  63256. },
  63257. {
  63258. name: "Macro++++",
  63259. height: math.unit(1570000, "feet")
  63260. },
  63261. ]
  63262. ))
  63263. characterMakers.push(() => makeCharacter(
  63264. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63265. {
  63266. side: {
  63267. height: math.unit(6, "feet"),
  63268. weight: math.unit(115, "lb"),
  63269. name: "Side",
  63270. image: {
  63271. source: "./media/characters/moonbeam/side.svg",
  63272. extra: 839/485,
  63273. bottom: 60/899
  63274. }
  63275. },
  63276. },
  63277. [
  63278. {
  63279. name: "Normal",
  63280. height: math.unit(6, "feet"),
  63281. default: true
  63282. },
  63283. ]
  63284. ))
  63285. characterMakers.push(() => makeCharacter(
  63286. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63287. {
  63288. front: {
  63289. height: math.unit(3500, "miles"),
  63290. weight: math.unit(1659, "petatonnes"),
  63291. name: "Front",
  63292. image: {
  63293. source: "./media/characters/baltica/front.svg",
  63294. extra: 429/428,
  63295. bottom: 41/470
  63296. }
  63297. },
  63298. back: {
  63299. height: math.unit(3500, "miles"),
  63300. weight: math.unit(1659, "petatonnes"),
  63301. name: "Back",
  63302. image: {
  63303. source: "./media/characters/baltica/back.svg",
  63304. extra: 452/451,
  63305. bottom: 8/460
  63306. }
  63307. },
  63308. },
  63309. [
  63310. {
  63311. name: "Gigamacro",
  63312. height: math.unit(3500, "miles"),
  63313. default: true
  63314. },
  63315. ]
  63316. ))
  63317. characterMakers.push(() => makeCharacter(
  63318. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63319. {
  63320. front: {
  63321. height: math.unit(6 + 10/12, "feet"),
  63322. weight: math.unit(200, "lb"),
  63323. name: "Front",
  63324. image: {
  63325. source: "./media/characters/shadow-wolf/front.svg",
  63326. extra: 1931/1760,
  63327. bottom: 88/2019
  63328. }
  63329. },
  63330. },
  63331. [
  63332. {
  63333. name: "Normal",
  63334. height: math.unit(6 + 10/12, "feet"),
  63335. default: true
  63336. },
  63337. ]
  63338. ))
  63339. characterMakers.push(() => makeCharacter(
  63340. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63341. {
  63342. front: {
  63343. height: math.unit(5 + 10/12, "feet"),
  63344. name: "Front",
  63345. image: {
  63346. source: "./media/characters/quincy-praying-mantis/front.svg",
  63347. extra: 1055/891,
  63348. bottom: 92/1147
  63349. }
  63350. },
  63351. soles: {
  63352. height: math.unit(0.85, "feet"),
  63353. name: "Soles",
  63354. image: {
  63355. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63356. extra: 429/324,
  63357. bottom: 89/518
  63358. },
  63359. extraAttributes: {
  63360. "shoeSize": {
  63361. name: "Shoe Size",
  63362. power: 1,
  63363. type: "length",
  63364. base: math.unit(23, "ShoeSizeMensUS"),
  63365. defaultUnit: "ShoeSizeMensUS"
  63366. },
  63367. }
  63368. },
  63369. foot: {
  63370. height: math.unit(0.72, "feet"),
  63371. name: "Foot",
  63372. image: {
  63373. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63374. extra: 349/349,
  63375. bottom: 76/425
  63376. }
  63377. },
  63378. },
  63379. [
  63380. {
  63381. name: "Normal",
  63382. height: math.unit(5 + 10/12, "feet"),
  63383. default: true
  63384. },
  63385. ]
  63386. ))
  63387. characterMakers.push(() => makeCharacter(
  63388. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63389. {
  63390. front: {
  63391. height: math.unit(6, "feet"),
  63392. name: "Front",
  63393. image: {
  63394. source: "./media/characters/christopher-redwood/front.svg",
  63395. extra: 1402/1341,
  63396. bottom: 23/1425
  63397. }
  63398. },
  63399. back: {
  63400. height: math.unit(6, "feet"),
  63401. name: "Back",
  63402. image: {
  63403. source: "./media/characters/christopher-redwood/back.svg",
  63404. extra: 1406/1345,
  63405. bottom: 36/1442
  63406. }
  63407. },
  63408. head: {
  63409. height: math.unit(1.685, "feet"),
  63410. name: "Head",
  63411. image: {
  63412. source: "./media/characters/christopher-redwood/head.svg"
  63413. }
  63414. },
  63415. },
  63416. [
  63417. {
  63418. name: "Normal",
  63419. height: math.unit(6, "feet"),
  63420. default: true
  63421. },
  63422. ]
  63423. ))
  63424. characterMakers.push(() => makeCharacter(
  63425. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63426. {
  63427. front: {
  63428. height: math.unit(1.9, "meters"),
  63429. weight: math.unit(140, "lb"),
  63430. name: "Front",
  63431. image: {
  63432. source: "./media/characters/kara-fox/front.svg",
  63433. extra: 766/711,
  63434. bottom: 41/807
  63435. }
  63436. },
  63437. back: {
  63438. height: math.unit(1.9, "meters"),
  63439. weight: math.unit(140, "lb"),
  63440. name: "Back",
  63441. image: {
  63442. source: "./media/characters/kara-fox/back.svg",
  63443. extra: 766/596,
  63444. bottom: 29/795
  63445. }
  63446. },
  63447. maw: {
  63448. height: math.unit(0.78, "feet"),
  63449. name: "Maw",
  63450. image: {
  63451. source: "./media/characters/kara-fox/maw.svg"
  63452. }
  63453. },
  63454. pawpads: {
  63455. height: math.unit(0.96, "feet"),
  63456. name: "Pawpads",
  63457. image: {
  63458. source: "./media/characters/kara-fox/pawpads.svg"
  63459. }
  63460. },
  63461. },
  63462. [
  63463. {
  63464. name: "Normal",
  63465. height: math.unit(1.9, "meters"),
  63466. default: true
  63467. },
  63468. {
  63469. name: "Giantess",
  63470. height: math.unit(80, "meters")
  63471. },
  63472. ]
  63473. ))
  63474. characterMakers.push(() => makeCharacter(
  63475. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63476. {
  63477. front: {
  63478. height: math.unit(12, "feet"),
  63479. name: "Front",
  63480. image: {
  63481. source: "./media/characters/naomi-espeon/front.svg",
  63482. extra: 892/797,
  63483. bottom: 5/897
  63484. }
  63485. },
  63486. back: {
  63487. height: math.unit(12, "feet"),
  63488. name: "Back",
  63489. image: {
  63490. source: "./media/characters/naomi-espeon/back.svg",
  63491. extra: 890/785,
  63492. bottom: 12/902
  63493. }
  63494. },
  63495. },
  63496. [
  63497. {
  63498. name: "Normal",
  63499. height: math.unit(12, "feet"),
  63500. default: true
  63501. },
  63502. ]
  63503. ))
  63504. characterMakers.push(() => makeCharacter(
  63505. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63506. {
  63507. anthro_front: {
  63508. height: math.unit(8, "feet"),
  63509. weight: math.unit(625, "lb"),
  63510. name: "Front",
  63511. image: {
  63512. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63513. extra: 638/574,
  63514. bottom: 73/711
  63515. },
  63516. form: "anthro",
  63517. default: true
  63518. },
  63519. anthro_back: {
  63520. height: math.unit(8, "feet"),
  63521. weight: math.unit(625, "lb"),
  63522. name: "Back",
  63523. image: {
  63524. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63525. extra: 674/614,
  63526. bottom: 7/681
  63527. },
  63528. form: "anthro",
  63529. },
  63530. taur_side: {
  63531. height: math.unit(16, "feet"),
  63532. weight: math.unit(4.5, "tons"),
  63533. name: "Side",
  63534. image: {
  63535. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63536. extra: 704/646,
  63537. bottom: 132/836
  63538. },
  63539. form: "taur",
  63540. default: true
  63541. },
  63542. },
  63543. [
  63544. {
  63545. name: "Normal",
  63546. height: math.unit(8, "feet"),
  63547. default: true,
  63548. form: "anthro"
  63549. },
  63550. {
  63551. name: "Normal",
  63552. height: math.unit(16, "feet"),
  63553. default: true,
  63554. form: "taur"
  63555. },
  63556. ],
  63557. {
  63558. "anthro": {
  63559. name: "Anthro",
  63560. default: true
  63561. },
  63562. "taur": {
  63563. name: "Taur",
  63564. },
  63565. }
  63566. ))
  63567. characterMakers.push(() => makeCharacter(
  63568. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63569. {
  63570. front: {
  63571. height: math.unit(190, "cm"),
  63572. weight: math.unit(110, "kg"),
  63573. name: "Front",
  63574. image: {
  63575. source: "./media/characters/amelie/front.svg",
  63576. extra: 530/442,
  63577. bottom: 35/565
  63578. }
  63579. },
  63580. },
  63581. [
  63582. {
  63583. name: "Normal",
  63584. height: math.unit(190, "cm"),
  63585. default: true
  63586. },
  63587. ]
  63588. ))
  63589. characterMakers.push(() => makeCharacter(
  63590. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63591. {
  63592. front: {
  63593. height: math.unit(21, "feet"),
  63594. weight: math.unit(30000, "lb"),
  63595. name: "Front",
  63596. image: {
  63597. source: "./media/characters/valence/front.svg",
  63598. extra: 1430/1306,
  63599. bottom: 51/1481
  63600. }
  63601. },
  63602. },
  63603. [
  63604. {
  63605. name: "Normal",
  63606. height: math.unit(21, "feet"),
  63607. default: true
  63608. },
  63609. ]
  63610. ))
  63611. characterMakers.push(() => makeCharacter(
  63612. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63613. {
  63614. front: {
  63615. height: math.unit(5 + 9/12, "feet"),
  63616. weight: math.unit(170, "lb"),
  63617. name: "Front",
  63618. image: {
  63619. source: "./media/characters/aurora-adkins/front.svg",
  63620. extra: 1141/1089,
  63621. bottom: 41/1182
  63622. }
  63623. },
  63624. },
  63625. [
  63626. {
  63627. name: "Tiny",
  63628. height: math.unit(7, "mm")
  63629. },
  63630. {
  63631. name: "Small",
  63632. height: math.unit(3.4, "inches")
  63633. },
  63634. {
  63635. name: "Normal",
  63636. height: math.unit(5 + 9/12, "feet"),
  63637. default: true
  63638. },
  63639. {
  63640. name: "Big",
  63641. height: math.unit(31, "feet")
  63642. },
  63643. {
  63644. name: "Giant",
  63645. height: math.unit(300, "feet")
  63646. },
  63647. ]
  63648. ))
  63649. characterMakers.push(() => makeCharacter(
  63650. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63651. {
  63652. front: {
  63653. height: math.unit(5 + 6/12, "feet"),
  63654. weight: math.unit(210, "lb"),
  63655. name: "Front",
  63656. image: {
  63657. source: "./media/characters/cyber/front.svg",
  63658. extra: 1968/1798,
  63659. bottom: 10/1978
  63660. },
  63661. extraAttributes: {
  63662. "shoeSize": {
  63663. name: "Shoe Size",
  63664. power: 1,
  63665. type: "length",
  63666. base: math.unit(30, "ShoeSizeMensUS")
  63667. },
  63668. }
  63669. },
  63670. },
  63671. [
  63672. {
  63673. name: "Normal",
  63674. height: math.unit(5 + 6/12, "feet"),
  63675. default: true
  63676. },
  63677. ]
  63678. ))
  63679. characterMakers.push(() => makeCharacter(
  63680. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63681. {
  63682. front: {
  63683. height: math.unit(6 + 6/12, "feet"),
  63684. weight: math.unit(140, "lb"),
  63685. name: "Front",
  63686. image: {
  63687. source: "./media/characters/sapphire-wairimea/front.svg",
  63688. extra: 475/458,
  63689. bottom: 14/489
  63690. }
  63691. },
  63692. },
  63693. [
  63694. {
  63695. name: "Normal",
  63696. height: math.unit(6 + 6/12, "feet")
  63697. },
  63698. {
  63699. name: "Macro",
  63700. height: math.unit(132, "feet"),
  63701. default: true
  63702. },
  63703. ]
  63704. ))
  63705. characterMakers.push(() => makeCharacter(
  63706. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63707. {
  63708. front: {
  63709. height: math.unit(1.6, "meters"),
  63710. weight: math.unit(100, "lb"),
  63711. name: "Front",
  63712. image: {
  63713. source: "./media/characters/cirkazi/front.svg",
  63714. extra: 489/477,
  63715. bottom: 0/489
  63716. }
  63717. },
  63718. },
  63719. [
  63720. {
  63721. name: "Normal",
  63722. height: math.unit(1.6, "meters")
  63723. },
  63724. {
  63725. name: "Macro",
  63726. height: math.unit(800, "feet"),
  63727. default: true
  63728. },
  63729. ]
  63730. ))
  63731. characterMakers.push(() => makeCharacter(
  63732. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63733. {
  63734. front: {
  63735. height: math.unit(5 + 10/12, "feet"),
  63736. weight: math.unit(145, "lb"),
  63737. name: "Front",
  63738. image: {
  63739. source: "./media/characters/corrin-cavelli/front.svg",
  63740. extra: 483/464,
  63741. bottom: 6/489
  63742. }
  63743. },
  63744. },
  63745. [
  63746. {
  63747. name: "Human",
  63748. height: math.unit(5 + 10/12, "feet")
  63749. },
  63750. {
  63751. name: "Giant",
  63752. height: math.unit(210, "feet"),
  63753. default: true
  63754. },
  63755. ]
  63756. ))
  63757. characterMakers.push(() => makeCharacter(
  63758. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63759. {
  63760. back: {
  63761. height: math.unit(5 + 6/12, "feet"),
  63762. weight: math.unit(115, "lb"),
  63763. name: "Back",
  63764. image: {
  63765. source: "./media/characters/lori-lopez/back.svg",
  63766. extra: 483/474,
  63767. bottom: 6/489
  63768. }
  63769. },
  63770. },
  63771. [
  63772. {
  63773. name: "Human",
  63774. height: math.unit(5 + 6/12, "feet")
  63775. },
  63776. {
  63777. name: "Macro",
  63778. height: math.unit(198, "feet"),
  63779. default: true
  63780. },
  63781. ]
  63782. ))
  63783. characterMakers.push(() => makeCharacter(
  63784. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63785. {
  63786. front: {
  63787. height: math.unit(6, "feet"),
  63788. weight: math.unit(220, "lb"),
  63789. name: "Front",
  63790. image: {
  63791. source: "./media/characters/sylvia-beauregard/front.svg",
  63792. extra: 483/479,
  63793. bottom: 6/489
  63794. }
  63795. },
  63796. },
  63797. [
  63798. {
  63799. name: "Macro",
  63800. height: math.unit(2071, "feet"),
  63801. default: true
  63802. },
  63803. ]
  63804. ))
  63805. characterMakers.push(() => makeCharacter(
  63806. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63807. {
  63808. back: {
  63809. height: math.unit(5 + 6/12, "feet"),
  63810. weight: math.unit(160, "lb"),
  63811. name: "Back",
  63812. image: {
  63813. source: "./media/characters/akiko-takahashi/back.svg",
  63814. extra: 459/454,
  63815. bottom: 27/486
  63816. }
  63817. },
  63818. },
  63819. [
  63820. {
  63821. name: "Human",
  63822. height: math.unit(5 + 6/12, "feet")
  63823. },
  63824. {
  63825. name: "Macro",
  63826. height: math.unit(198, "feet"),
  63827. default: true
  63828. },
  63829. {
  63830. name: "Megamacro",
  63831. height: math.unit(7128, "feet")
  63832. },
  63833. ]
  63834. ))
  63835. characterMakers.push(() => makeCharacter(
  63836. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63837. {
  63838. front: {
  63839. height: math.unit(6, "feet"),
  63840. weight: math.unit(140, "lb"),
  63841. name: "Front",
  63842. image: {
  63843. source: "./media/characters/velvet-garza/front.svg",
  63844. extra: 480/462,
  63845. bottom: 7/487
  63846. }
  63847. },
  63848. },
  63849. [
  63850. {
  63851. name: "Macro",
  63852. height: math.unit(37, "feet"),
  63853. default: true
  63854. },
  63855. ]
  63856. ))
  63857. characterMakers.push(() => makeCharacter(
  63858. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63859. {
  63860. front: {
  63861. height: math.unit(7 + 6/12, "feet"),
  63862. weight: math.unit(400, "lb"),
  63863. name: "Front",
  63864. image: {
  63865. source: "./media/characters/gaia/front.svg",
  63866. extra: 474/463,
  63867. bottom: 13/487
  63868. }
  63869. },
  63870. },
  63871. [
  63872. {
  63873. name: "MiniMacro",
  63874. height: math.unit(7 + 6/12, "feet")
  63875. },
  63876. {
  63877. name: "GigaMacro",
  63878. height: math.unit(14500, "feet"),
  63879. default: true
  63880. },
  63881. ]
  63882. ))
  63883. characterMakers.push(() => makeCharacter(
  63884. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63885. {
  63886. front: {
  63887. height: math.unit(6, "feet"),
  63888. weight: math.unit(150, "lb"),
  63889. name: "Front",
  63890. image: {
  63891. source: "./media/characters/tim/front.svg",
  63892. extra: 1878/1743,
  63893. bottom: 9/1887
  63894. }
  63895. },
  63896. frontDressed: {
  63897. height: math.unit(6, "feet"),
  63898. weight: math.unit(150, "lb"),
  63899. name: "Front (Dressed)",
  63900. image: {
  63901. source: "./media/characters/tim/front-dressed.svg",
  63902. extra: 1765/1485,
  63903. bottom: 48/1813
  63904. }
  63905. },
  63906. backDressed: {
  63907. height: math.unit(6, "feet"),
  63908. weight: math.unit(150, "lb"),
  63909. name: "Back (Dressed)",
  63910. image: {
  63911. source: "./media/characters/tim/back-dressed.svg",
  63912. extra: 1750/1465,
  63913. bottom: 25/1775
  63914. }
  63915. },
  63916. dick: {
  63917. height: math.unit(1.5, "feet"),
  63918. weight: math.unit(6, "lb"),
  63919. name: "Dick",
  63920. image: {
  63921. source: "./media/characters/tim/dick.svg"
  63922. }
  63923. },
  63924. hand: {
  63925. height: math.unit(0.522, "feet"),
  63926. name: "Hand",
  63927. image: {
  63928. source: "./media/characters/tim/hand.svg"
  63929. }
  63930. },
  63931. palm: {
  63932. height: math.unit(0.48, "feet"),
  63933. name: "Palm",
  63934. image: {
  63935. source: "./media/characters/tim/palm.svg"
  63936. }
  63937. },
  63938. paw: {
  63939. height: math.unit(0.9, "feet"),
  63940. name: "Paw",
  63941. image: {
  63942. source: "./media/characters/tim/paw.svg"
  63943. }
  63944. },
  63945. sole: {
  63946. height: math.unit(0.88, "feet"),
  63947. name: "Sole",
  63948. image: {
  63949. source: "./media/characters/tim/sole.svg"
  63950. }
  63951. },
  63952. },
  63953. [
  63954. {
  63955. name: "Macro",
  63956. height: math.unit(1000, "feet")
  63957. },
  63958. {
  63959. name: "Megamacro",
  63960. height: math.unit(10000, "feet"),
  63961. default: true
  63962. },
  63963. {
  63964. name: "Megamacro+",
  63965. height: math.unit(50000, "feet")
  63966. },
  63967. {
  63968. name: "Gigamacro",
  63969. height: math.unit(150000, "km")
  63970. },
  63971. ]
  63972. ))
  63973. characterMakers.push(() => makeCharacter(
  63974. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63975. {
  63976. front: {
  63977. height: math.unit(5 + 8/12, "feet"),
  63978. weight: math.unit(170, "lb"),
  63979. name: "Front",
  63980. image: {
  63981. source: "./media/characters/abel-delreoux/front.svg",
  63982. extra: 1615/1500,
  63983. bottom: 82/1697
  63984. }
  63985. },
  63986. back: {
  63987. height: math.unit(5 + 8/12, "feet"),
  63988. weight: math.unit(170, "lb"),
  63989. name: "Back",
  63990. image: {
  63991. source: "./media/characters/abel-delreoux/back.svg",
  63992. extra: 1644/1534,
  63993. bottom: 24/1668
  63994. }
  63995. },
  63996. casual: {
  63997. height: math.unit(5 + 8/12, "feet"),
  63998. weight: math.unit(170, "lb"),
  63999. name: "Casual",
  64000. image: {
  64001. source: "./media/characters/abel-delreoux/casual.svg",
  64002. extra: 1716/1598,
  64003. bottom: 29/1745
  64004. }
  64005. },
  64006. sleepy: {
  64007. height: math.unit(5 + 8/12, "feet"),
  64008. weight: math.unit(170, "lb"),
  64009. name: "Sleepy",
  64010. image: {
  64011. source: "./media/characters/abel-delreoux/sleepy.svg",
  64012. extra: 1649/1573,
  64013. bottom: 22/1671
  64014. }
  64015. },
  64016. fem: {
  64017. height: math.unit(5 + 8/12, "feet"),
  64018. weight: math.unit(170, "lb"),
  64019. name: "Fem",
  64020. image: {
  64021. source: "./media/characters/abel-delreoux/fem.svg",
  64022. extra: 1680/1564,
  64023. bottom: 17/1697
  64024. }
  64025. },
  64026. hand: {
  64027. height: math.unit(0.78, "feet"),
  64028. name: "Hand",
  64029. image: {
  64030. source: "./media/characters/abel-delreoux/hand.svg"
  64031. }
  64032. },
  64033. paw: {
  64034. height: math.unit(0.78, "feet"),
  64035. name: "Paw",
  64036. image: {
  64037. source: "./media/characters/abel-delreoux/paw.svg"
  64038. }
  64039. },
  64040. },
  64041. [
  64042. {
  64043. name: "Normal",
  64044. height: math.unit(5 + 8/12, "feet"),
  64045. default: true
  64046. },
  64047. ]
  64048. ))
  64049. characterMakers.push(() => makeCharacter(
  64050. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  64051. {
  64052. front: {
  64053. height: math.unit(6, "feet"),
  64054. weight: math.unit(159, "lb"),
  64055. name: "Front",
  64056. image: {
  64057. source: "./media/characters/meus/front.svg",
  64058. extra: 938/843,
  64059. bottom: 37/975
  64060. }
  64061. },
  64062. back: {
  64063. height: math.unit(6, "feet"),
  64064. weight: math.unit(159, "lb"),
  64065. name: "Back",
  64066. image: {
  64067. source: "./media/characters/meus/back.svg",
  64068. extra: 967/873,
  64069. bottom: 12/979
  64070. }
  64071. },
  64072. },
  64073. [
  64074. {
  64075. name: "Micro",
  64076. height: math.unit(2, "inches")
  64077. },
  64078. {
  64079. name: "Mini",
  64080. height: math.unit(6, "inches")
  64081. },
  64082. {
  64083. name: "Normal",
  64084. height: math.unit(6, "feet"),
  64085. default: true
  64086. },
  64087. {
  64088. name: "Macro",
  64089. height: math.unit(84, "feet")
  64090. },
  64091. ]
  64092. ))
  64093. characterMakers.push(() => makeCharacter(
  64094. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64095. {
  64096. front: {
  64097. height: math.unit(60, "cm"),
  64098. weight: math.unit(18, "kg"),
  64099. name: "Front",
  64100. image: {
  64101. source: "./media/characters/yamato/front.svg",
  64102. extra: 733/688,
  64103. bottom: 29/762
  64104. }
  64105. },
  64106. },
  64107. [
  64108. {
  64109. name: "Micro",
  64110. height: math.unit(6, "cm")
  64111. },
  64112. {
  64113. name: "Normal",
  64114. height: math.unit(60, "cm"),
  64115. default: true
  64116. },
  64117. ]
  64118. ))
  64119. characterMakers.push(() => makeCharacter(
  64120. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64121. {
  64122. front: {
  64123. height: math.unit(9, "feet"),
  64124. weight: math.unit(518, "lb"),
  64125. name: "Front",
  64126. image: {
  64127. source: "./media/characters/barus/front.svg",
  64128. extra: 1877/1795,
  64129. bottom: 55/1932
  64130. }
  64131. },
  64132. },
  64133. [
  64134. {
  64135. name: "Base Height",
  64136. height: math.unit(9, "feet"),
  64137. default: true
  64138. },
  64139. {
  64140. name: "Large",
  64141. height: math.unit(18, "feet")
  64142. },
  64143. {
  64144. name: "Giant",
  64145. height: math.unit(100, "feet")
  64146. },
  64147. {
  64148. name: "Huge",
  64149. height: math.unit(500, "feet")
  64150. },
  64151. {
  64152. name: "Enormous",
  64153. height: math.unit(300, "meters")
  64154. },
  64155. {
  64156. name: "Deity Among Man",
  64157. height: math.unit(3000, "meters")
  64158. },
  64159. ]
  64160. ))
  64161. characterMakers.push(() => makeCharacter(
  64162. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64163. {
  64164. front: {
  64165. height: math.unit(1.7, "meters"),
  64166. name: "Front",
  64167. image: {
  64168. source: "./media/characters/yari/front.svg",
  64169. extra: 1210/1125,
  64170. bottom: 283/1493
  64171. }
  64172. },
  64173. back: {
  64174. height: math.unit(1.7, "meters"),
  64175. name: "Back",
  64176. image: {
  64177. source: "./media/characters/yari/back.svg",
  64178. extra: 1240/1195,
  64179. bottom: 180/1420
  64180. }
  64181. },
  64182. head: {
  64183. height: math.unit(1.26, "feet"),
  64184. name: "Head",
  64185. image: {
  64186. source: "./media/characters/yari/head.svg"
  64187. }
  64188. },
  64189. },
  64190. [
  64191. {
  64192. name: "Nano",
  64193. height: math.unit(0.5, "mm")
  64194. },
  64195. {
  64196. name: "Micro",
  64197. height: math.unit(3, "inches")
  64198. },
  64199. {
  64200. name: "Short",
  64201. height: math.unit(1.5, "meters")
  64202. },
  64203. {
  64204. name: "Norm",
  64205. height: math.unit(1.7, "meters"),
  64206. default: true
  64207. },
  64208. ]
  64209. ))
  64210. characterMakers.push(() => makeCharacter(
  64211. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64212. {
  64213. front: {
  64214. height: math.unit(5 + 2/12, "feet"),
  64215. weight: math.unit(110, "lb"),
  64216. name: "Front",
  64217. image: {
  64218. source: "./media/characters/salem/front.svg",
  64219. extra: 1895/1800,
  64220. bottom: 23/1918
  64221. }
  64222. },
  64223. back: {
  64224. height: math.unit(5 + 2/12, "feet"),
  64225. weight: math.unit(110, "lb"),
  64226. name: "Back",
  64227. image: {
  64228. source: "./media/characters/salem/back.svg",
  64229. extra: 1875/1802,
  64230. bottom: 20/1895
  64231. }
  64232. },
  64233. head: {
  64234. height: math.unit(1, "feet"),
  64235. name: "Head",
  64236. image: {
  64237. source: "./media/characters/salem/head.svg"
  64238. }
  64239. },
  64240. paw: {
  64241. height: math.unit(0.59, "feet"),
  64242. name: "Paw",
  64243. image: {
  64244. source: "./media/characters/salem/paw.svg"
  64245. }
  64246. },
  64247. beans: {
  64248. height: math.unit(0.66, "feet"),
  64249. name: "Beans",
  64250. image: {
  64251. source: "./media/characters/salem/beans.svg"
  64252. }
  64253. },
  64254. eye: {
  64255. height: math.unit(0.224, "feet"),
  64256. name: "Eye",
  64257. image: {
  64258. source: "./media/characters/salem/eye.svg"
  64259. }
  64260. },
  64261. semiferal: {
  64262. height: math.unit(2.3, "feet"),
  64263. name: "Semiferal",
  64264. image: {
  64265. source: "./media/characters/salem/semiferal.svg",
  64266. extra: 914/839,
  64267. bottom: 32/946
  64268. }
  64269. },
  64270. },
  64271. [
  64272. {
  64273. name: "Micro",
  64274. height: math.unit(4, "inches")
  64275. },
  64276. {
  64277. name: "Normal",
  64278. height: math.unit(5 + 2/12, "feet"),
  64279. default: true
  64280. },
  64281. {
  64282. name: "Macro",
  64283. height: math.unit(108, "feet")
  64284. },
  64285. {
  64286. name: "Macro+",
  64287. height: math.unit(1500, "feet")
  64288. },
  64289. ]
  64290. ))
  64291. characterMakers.push(() => makeCharacter(
  64292. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64293. {
  64294. front: {
  64295. height: math.unit(7 + 6/12, "feet"),
  64296. weight: math.unit(600, "kg"),
  64297. preyCapacity: math.unit(10, "people"),
  64298. name: "Front",
  64299. image: {
  64300. source: "./media/characters/kii/front.svg",
  64301. extra: 3296/3087,
  64302. bottom: 130/3426
  64303. }
  64304. },
  64305. },
  64306. [
  64307. {
  64308. name: "Normal",
  64309. height: math.unit(7 + 6/12, "feet"),
  64310. default: true
  64311. },
  64312. ]
  64313. ))
  64314. characterMakers.push(() => makeCharacter(
  64315. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64316. {
  64317. front: {
  64318. height: math.unit(2, "meters"),
  64319. weight: math.unit(200, "lb"),
  64320. name: "Front",
  64321. image: {
  64322. source: "./media/characters/taffy/front.svg",
  64323. extra: 1666/1618,
  64324. bottom: 157/1823
  64325. }
  64326. },
  64327. back: {
  64328. height: math.unit(2, "meters"),
  64329. weight: math.unit(200, "lb"),
  64330. name: "Back",
  64331. image: {
  64332. source: "./media/characters/taffy/back.svg",
  64333. extra: 1635/1583,
  64334. bottom: 153/1788
  64335. }
  64336. },
  64337. },
  64338. [
  64339. {
  64340. name: "Normal",
  64341. height: math.unit(2, "meters"),
  64342. default: true
  64343. },
  64344. ]
  64345. ))
  64346. characterMakers.push(() => makeCharacter(
  64347. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64348. {
  64349. front: {
  64350. height: math.unit(1.55, "meters"),
  64351. weight: math.unit(60, "kg"),
  64352. name: "Front",
  64353. image: {
  64354. source: "./media/characters/barley/front.svg",
  64355. extra: 1520/1340,
  64356. bottom: 47/1567
  64357. }
  64358. },
  64359. back: {
  64360. height: math.unit(1.55, "meters"),
  64361. weight: math.unit(60, "kg"),
  64362. name: "Back",
  64363. image: {
  64364. source: "./media/characters/barley/back.svg",
  64365. extra: 1543/1341,
  64366. bottom: 12/1555
  64367. }
  64368. },
  64369. feet: {
  64370. height: math.unit(2.18, "feet"),
  64371. name: "Feet",
  64372. image: {
  64373. source: "./media/characters/barley/feet.svg"
  64374. }
  64375. },
  64376. },
  64377. [
  64378. {
  64379. name: "Normal",
  64380. height: math.unit(1.55, "meters"),
  64381. default: true
  64382. },
  64383. ]
  64384. ))
  64385. characterMakers.push(() => makeCharacter(
  64386. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64387. {
  64388. dressed: {
  64389. height: math.unit(6, "feet"),
  64390. name: "Dressed",
  64391. image: {
  64392. source: "./media/characters/lydia-lopez/dressed.svg",
  64393. extra: 1319/1277,
  64394. bottom: 90/1409
  64395. }
  64396. },
  64397. nude: {
  64398. height: math.unit(6, "feet"),
  64399. name: "Nude",
  64400. image: {
  64401. source: "./media/characters/lydia-lopez/nude.svg",
  64402. extra: 1319/1277,
  64403. bottom: 90/1409
  64404. }
  64405. },
  64406. },
  64407. [
  64408. {
  64409. name: "Normal",
  64410. height: math.unit(6, "feet"),
  64411. default: true
  64412. },
  64413. {
  64414. name: "Maximum",
  64415. height: math.unit(2101, "feet")
  64416. },
  64417. ]
  64418. ))
  64419. characterMakers.push(() => makeCharacter(
  64420. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64421. {
  64422. front: {
  64423. height: math.unit(5 + 4/12, "feet"),
  64424. weight: math.unit(250, "lb"),
  64425. volume: math.unit(20, "gallons"),
  64426. name: "Front",
  64427. image: {
  64428. source: "./media/characters/kira-slime/front.svg",
  64429. extra: 442/403,
  64430. bottom: 18/460
  64431. }
  64432. },
  64433. frontNsfw: {
  64434. height: math.unit(5 + 4/12, "feet"),
  64435. weight: math.unit(250, "lb"),
  64436. volume: math.unit(20, "gallons"),
  64437. name: "Front (NSFW)",
  64438. image: {
  64439. source: "./media/characters/kira-slime/front-nsfw.svg",
  64440. extra: 442/403,
  64441. bottom: 18/460
  64442. }
  64443. },
  64444. },
  64445. [
  64446. {
  64447. name: "Droplet",
  64448. height: math.unit(0.0464452, "feet")
  64449. },
  64450. {
  64451. name: "Pint",
  64452. height: math.unit(0.9824, "feet")
  64453. },
  64454. {
  64455. name: "Bucket",
  64456. height: math.unit(2.83, "feet")
  64457. },
  64458. {
  64459. name: "Normal",
  64460. height: math.unit(5 + 4/12, "feet"),
  64461. default: true
  64462. },
  64463. {
  64464. name: "Tub",
  64465. height: math.unit(8.46614, "feet")
  64466. },
  64467. {
  64468. name: "Pool",
  64469. height: math.unit(31.1895, "feet")
  64470. },
  64471. {
  64472. name: "Pond",
  64473. height: math.unit(170.349, "feet")
  64474. },
  64475. {
  64476. name: "Lake",
  64477. height: math.unit(289334, "feet")
  64478. },
  64479. {
  64480. name: "Ocean",
  64481. height: math.unit(1.11940e+7, "feet")
  64482. },
  64483. ]
  64484. ))
  64485. characterMakers.push(() => makeCharacter(
  64486. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64487. {
  64488. front: {
  64489. height: math.unit(5 + 6/12, "feet"),
  64490. weight: math.unit(120, "lb"),
  64491. name: "Front",
  64492. image: {
  64493. source: "./media/characters/holiday/front.svg",
  64494. extra: 456/403,
  64495. bottom: 4/460
  64496. }
  64497. },
  64498. back: {
  64499. height: math.unit(5 + 6/12, "feet"),
  64500. weight: math.unit(120, "lb"),
  64501. name: "Back",
  64502. image: {
  64503. source: "./media/characters/holiday/back.svg",
  64504. extra: 450/404,
  64505. bottom: 12/462
  64506. }
  64507. },
  64508. head: {
  64509. height: math.unit(2.3, "feet"),
  64510. name: "Head",
  64511. image: {
  64512. source: "./media/characters/holiday/head.svg"
  64513. }
  64514. },
  64515. scifi_front: {
  64516. height: math.unit(145, "km"),
  64517. name: "Front",
  64518. image: {
  64519. source: "./media/characters/holiday/scifi-front.svg"
  64520. },
  64521. form: "scifi",
  64522. },
  64523. },
  64524. [
  64525. {
  64526. name: "Normal",
  64527. height: math.unit(5 + 6/12, "feet"),
  64528. default: true
  64529. },
  64530. {
  64531. name: "Macro",
  64532. height: math.unit(6574.25, "feet")
  64533. },
  64534. ]
  64535. ))
  64536. characterMakers.push(() => makeCharacter(
  64537. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64538. {
  64539. front: {
  64540. height: math.unit(6 + 2/12, "feet"),
  64541. weight: math.unit(200, "lb"),
  64542. name: "Front",
  64543. image: {
  64544. source: "./media/characters/camina/front.svg",
  64545. extra: 1048/985,
  64546. bottom: 30/1078
  64547. }
  64548. },
  64549. },
  64550. [
  64551. {
  64552. name: "Normal",
  64553. height: math.unit(6 + 2/12, "feet"),
  64554. default: true
  64555. },
  64556. ]
  64557. ))
  64558. characterMakers.push(() => makeCharacter(
  64559. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64560. {
  64561. front: {
  64562. height: math.unit(30, "cm"),
  64563. weight: math.unit(420, "grams"),
  64564. name: "Front",
  64565. image: {
  64566. source: "./media/characters/smuck/front.svg",
  64567. extra: 379/345,
  64568. bottom: 36/415
  64569. }
  64570. },
  64571. },
  64572. [
  64573. {
  64574. name: "Smuck-Sized",
  64575. height: math.unit(30, "cm"),
  64576. default: true
  64577. },
  64578. ]
  64579. ))
  64580. characterMakers.push(() => makeCharacter(
  64581. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64582. {
  64583. frontSfw: {
  64584. height: math.unit(10, "feet"),
  64585. weight: math.unit(1000, "kg"),
  64586. preyCapacity: math.unit(2, "people"),
  64587. name: "Front (SFW)",
  64588. image: {
  64589. source: "./media/characters/bylur/front-sfw.svg",
  64590. extra: 419/343,
  64591. bottom: 3/422
  64592. },
  64593. default: true
  64594. },
  64595. frontSheath: {
  64596. height: math.unit(10, "feet"),
  64597. weight: math.unit(1000, "kg"),
  64598. preyCapacity: math.unit(2, "people"),
  64599. name: "Front (Sheath)",
  64600. image: {
  64601. source: "./media/characters/bylur/front-sheath.svg",
  64602. extra: 419/343,
  64603. bottom: 3/422
  64604. }
  64605. },
  64606. frontErect: {
  64607. height: math.unit(10, "feet"),
  64608. weight: math.unit(1000, "kg"),
  64609. preyCapacity: math.unit(2, "people"),
  64610. name: "Front (Erect)",
  64611. image: {
  64612. source: "./media/characters/bylur/front-erect.svg",
  64613. extra: 419/343,
  64614. bottom: 3/422
  64615. }
  64616. },
  64617. back: {
  64618. height: math.unit(10, "feet"),
  64619. weight: math.unit(1000, "kg"),
  64620. preyCapacity: math.unit(2, "people"),
  64621. name: "Back",
  64622. image: {
  64623. source: "./media/characters/bylur/back.svg",
  64624. extra: 392/315,
  64625. bottom: 3/395
  64626. }
  64627. },
  64628. maw: {
  64629. height: math.unit(3.65, "feet"),
  64630. name: "Maw",
  64631. image: {
  64632. source: "./media/characters/bylur/maw.svg"
  64633. }
  64634. },
  64635. },
  64636. [
  64637. {
  64638. name: "Slightly Human Sized",
  64639. height: math.unit(10, "feet")
  64640. },
  64641. {
  64642. name: "Normal",
  64643. height: math.unit(35, "feet"),
  64644. default: true
  64645. },
  64646. {
  64647. name: "Macro",
  64648. height: math.unit(130, "feet")
  64649. },
  64650. ]
  64651. ))
  64652. characterMakers.push(() => makeCharacter(
  64653. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64654. {
  64655. frontNsfw: {
  64656. height: math.unit(6, "feet"),
  64657. weight: math.unit(250, "lb"),
  64658. preyCapacity: math.unit(0.05, "people"),
  64659. name: "Front (NSFW)",
  64660. image: {
  64661. source: "./media/characters/oarven/front-nsfw.svg",
  64662. extra: 1795/1783,
  64663. bottom: 142/1937
  64664. }
  64665. },
  64666. frontSfw: {
  64667. height: math.unit(6, "feet"),
  64668. weight: math.unit(250, "lb"),
  64669. preyCapacity: math.unit(0.05, "people"),
  64670. name: "Front (SFW)",
  64671. image: {
  64672. source: "./media/characters/oarven/front-sfw.svg",
  64673. extra: 1795/1783,
  64674. bottom: 142/1937
  64675. }
  64676. },
  64677. },
  64678. [
  64679. {
  64680. name: "Megamacro",
  64681. height: math.unit(5, "miles"),
  64682. default: true
  64683. },
  64684. {
  64685. name: "Maximum Height",
  64686. height: math.unit(5, "AUs")
  64687. },
  64688. ]
  64689. ))
  64690. characterMakers.push(() => makeCharacter(
  64691. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64692. {
  64693. side: {
  64694. height: math.unit(1065, "meters"),
  64695. weight: math.unit(1e12, "kg"),
  64696. volume: math.unit(3265000000, "m^3"),
  64697. name: "Side",
  64698. image: {
  64699. source: "./media/characters/solidarity/side.svg"
  64700. }
  64701. },
  64702. front: {
  64703. height: math.unit(1065, "meters"),
  64704. weight: math.unit(3265000000000, "kg"),
  64705. volume: math.unit(3265000000, "m^3"),
  64706. name: "Front",
  64707. image: {
  64708. source: "./media/characters/solidarity/front.svg"
  64709. }
  64710. },
  64711. top: {
  64712. height: math.unit(5823, "meters"),
  64713. weight: math.unit(3265000000000, "kg"),
  64714. volume: math.unit(3265000000, "m^3"),
  64715. name: "Top",
  64716. image: {
  64717. source: "./media/characters/solidarity/top.svg"
  64718. }
  64719. },
  64720. },
  64721. [
  64722. {
  64723. name: "Normal",
  64724. height: math.unit(1065, "meters"),
  64725. default: true
  64726. },
  64727. ]
  64728. ))
  64729. characterMakers.push(() => makeCharacter(
  64730. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64731. {
  64732. side: {
  64733. height: math.unit(18 + 4/12, "feet"),
  64734. weight: math.unit(13000, "kg"),
  64735. name: "Side",
  64736. image: {
  64737. source: "./media/characters/ani'szi/side.svg",
  64738. extra: 468/459,
  64739. bottom: 60/528
  64740. }
  64741. },
  64742. head: {
  64743. height: math.unit(4.8, "feet"),
  64744. name: "Head",
  64745. image: {
  64746. source: "./media/characters/ani'szi/head.svg"
  64747. }
  64748. },
  64749. jaws: {
  64750. height: math.unit(2.25, "feet"),
  64751. name: "Jaws",
  64752. image: {
  64753. source: "./media/characters/ani'szi/jaws.svg"
  64754. }
  64755. },
  64756. bust: {
  64757. height: math.unit(8.9, "feet"),
  64758. name: "Bust",
  64759. image: {
  64760. source: "./media/characters/ani'szi/bust.svg"
  64761. }
  64762. },
  64763. back: {
  64764. height: math.unit(13.53, "feet"),
  64765. name: "Back",
  64766. image: {
  64767. source: "./media/characters/ani'szi/back.svg"
  64768. }
  64769. },
  64770. eye: {
  64771. height: math.unit(0.44, "feet"),
  64772. name: "Eye",
  64773. image: {
  64774. source: "./media/characters/ani'szi/eye.svg"
  64775. }
  64776. },
  64777. },
  64778. [
  64779. {
  64780. name: "Normal",
  64781. height: math.unit(18 + 4/12, "feet"),
  64782. default: true
  64783. },
  64784. ]
  64785. ))
  64786. characterMakers.push(() => makeCharacter(
  64787. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64788. {
  64789. front: {
  64790. height: math.unit(7 + 6/12, "feet"),
  64791. weight: math.unit(300, "lb"),
  64792. name: "Front",
  64793. image: {
  64794. source: "./media/characters/rain/front.svg",
  64795. extra: 2955/2698,
  64796. bottom: 235/3190
  64797. }
  64798. },
  64799. dressed: {
  64800. height: math.unit(7 + 6/12, "feet"),
  64801. weight: math.unit(300, "lb"),
  64802. name: "Dressed",
  64803. image: {
  64804. source: "./media/characters/rain/dressed.svg",
  64805. extra: 2783/2572,
  64806. bottom: 430/3213
  64807. }
  64808. },
  64809. },
  64810. [
  64811. {
  64812. name: "Normal",
  64813. height: math.unit(7 + 6/12, "feet"),
  64814. default: true
  64815. },
  64816. {
  64817. name: "Macro",
  64818. height: math.unit(200, "feet")
  64819. },
  64820. {
  64821. name: "Macro+",
  64822. height: math.unit(500, "feet")
  64823. },
  64824. {
  64825. name: "Megamacro",
  64826. height: math.unit(5, "miles")
  64827. },
  64828. ]
  64829. ))
  64830. characterMakers.push(() => makeCharacter(
  64831. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64832. {
  64833. taur_side: {
  64834. height: math.unit(3, "meters"),
  64835. name: "Side",
  64836. image: {
  64837. source: "./media/characters/anise/taur-side.svg",
  64838. extra: 1833/926,
  64839. bottom: 134/1967
  64840. },
  64841. form: "taur",
  64842. default: true
  64843. },
  64844. feral_side: {
  64845. height: math.unit(3, "meters"),
  64846. name: "Side",
  64847. image: {
  64848. source: "./media/characters/anise/feral-side.svg",
  64849. extra: 681/349,
  64850. bottom: 26/707
  64851. },
  64852. form: "feral"
  64853. },
  64854. },
  64855. [
  64856. {
  64857. name: "Normal",
  64858. height: math.unit(3, "meters"),
  64859. default: true,
  64860. allForms: true
  64861. },
  64862. ],
  64863. {
  64864. "taur": {
  64865. name: "Taur",
  64866. default: true
  64867. },
  64868. "feral": {
  64869. name: "Feral",
  64870. },
  64871. }
  64872. ))
  64873. characterMakers.push(() => makeCharacter(
  64874. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64875. {
  64876. front: {
  64877. height: math.unit(1.9, "meters"),
  64878. weight: math.unit(75, "kg"),
  64879. name: "Front",
  64880. image: {
  64881. source: "./media/characters/sarina/front.svg",
  64882. extra: 1275/1200,
  64883. bottom: 49/1324
  64884. }
  64885. },
  64886. back: {
  64887. height: math.unit(1.9, "meters"),
  64888. weight: math.unit(75, "kg"),
  64889. name: "Back",
  64890. image: {
  64891. source: "./media/characters/sarina/back.svg",
  64892. extra: 1279/1209,
  64893. bottom: 14/1293
  64894. }
  64895. },
  64896. dressed: {
  64897. height: math.unit(1.9, "meters"),
  64898. weight: math.unit(75, "kg"),
  64899. name: "Dressed",
  64900. image: {
  64901. source: "./media/characters/sarina/dressed.svg",
  64902. extra: 1256/1187,
  64903. bottom: 56/1312
  64904. }
  64905. },
  64906. paw: {
  64907. height: math.unit(0.57, "feet"),
  64908. name: "Paw",
  64909. image: {
  64910. source: "./media/characters/sarina/paw.svg"
  64911. }
  64912. },
  64913. toering: {
  64914. height: math.unit(0.27, "feet"),
  64915. name: "Toering",
  64916. image: {
  64917. source: "./media/characters/sarina/toering.svg"
  64918. }
  64919. },
  64920. },
  64921. [
  64922. {
  64923. name: "Incognito",
  64924. height: math.unit(1.9, "meters")
  64925. },
  64926. {
  64927. name: "Home Size",
  64928. height: math.unit(160, "meters"),
  64929. default: true
  64930. },
  64931. {
  64932. name: "Mega",
  64933. height: math.unit(50, "km")
  64934. },
  64935. {
  64936. name: "Small Giga",
  64937. height: math.unit(250, "km")
  64938. },
  64939. {
  64940. name: "Giga (Preferred Size)",
  64941. height: math.unit(3000, "km")
  64942. },
  64943. {
  64944. name: "Terra",
  64945. height: math.unit(40000, "km")
  64946. },
  64947. {
  64948. name: "Terra+",
  64949. height: math.unit(400000, "km")
  64950. },
  64951. {
  64952. name: "Solar",
  64953. height: math.unit(35e6, "km")
  64954. },
  64955. {
  64956. name: "Galactic",
  64957. height: math.unit(648106, "parsecs")
  64958. },
  64959. {
  64960. name: "Universal",
  64961. height: math.unit(7, "universes")
  64962. },
  64963. {
  64964. name: "Universal+",
  64965. height: math.unit(30, "universes")
  64966. },
  64967. ]
  64968. ))
  64969. characterMakers.push(() => makeCharacter(
  64970. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64971. {
  64972. front: {
  64973. height: math.unit(5 + 6/12, "feet"),
  64974. name: "Front",
  64975. image: {
  64976. source: "./media/characters/sifray/front.svg",
  64977. extra: 722/691,
  64978. bottom: 64/786
  64979. }
  64980. },
  64981. },
  64982. [
  64983. {
  64984. name: "Normal",
  64985. height: math.unit(5 + 6/12, "feet"),
  64986. default: true
  64987. },
  64988. ]
  64989. ))
  64990. characterMakers.push(() => makeCharacter(
  64991. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64992. {
  64993. side: {
  64994. height: math.unit(2.64, "feet"),
  64995. weight: math.unit(100, "lb"),
  64996. preyCapacity: math.unit(3, "people"),
  64997. name: "Side",
  64998. image: {
  64999. source: "./media/characters/spots/side.svg",
  65000. extra: 1859/977,
  65001. bottom: 19/1878
  65002. },
  65003. extraAttributes: {
  65004. "preyPerMinute": {
  65005. name: "Prey Per Minute",
  65006. power: 3,
  65007. type: "volume",
  65008. base: math.unit(6, "people"),
  65009. defaultUnit: "people"
  65010. },
  65011. "preyPerDay": {
  65012. name: "Prey Per Day",
  65013. power: 3,
  65014. type: "volume",
  65015. base: math.unit(6 * 60 * 24, "people"),
  65016. defaultUnit: "people"
  65017. },
  65018. }
  65019. },
  65020. },
  65021. [
  65022. {
  65023. name: "Normal",
  65024. height: math.unit(2.64, "feet"),
  65025. default: true
  65026. },
  65027. ]
  65028. ))
  65029. characterMakers.push(() => makeCharacter(
  65030. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  65031. {
  65032. front: {
  65033. height: math.unit(29 + 11/12, "feet"),
  65034. weight: math.unit(40, "tons"),
  65035. name: "Front",
  65036. image: {
  65037. source: "./media/characters/mona/front.svg",
  65038. extra: 1257/1116,
  65039. bottom: 34/1291
  65040. }
  65041. },
  65042. },
  65043. [
  65044. {
  65045. name: "Normal",
  65046. height: math.unit(29 + 11/12, "feet"),
  65047. default: true
  65048. },
  65049. ]
  65050. ))
  65051. characterMakers.push(() => makeCharacter(
  65052. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  65053. {
  65054. front: {
  65055. height: math.unit(15, "feet"),
  65056. weight: math.unit(3000, "kg"),
  65057. preyCapacity: math.unit(5, "people"),
  65058. name: "Front",
  65059. image: {
  65060. source: "./media/characters/frostfire/front.svg",
  65061. extra: 675/558,
  65062. bottom: 73/748
  65063. }
  65064. },
  65065. side: {
  65066. height: math.unit(15, "feet"),
  65067. weight: math.unit(3000, "kg"),
  65068. preyCapacity: math.unit(5, "people"),
  65069. name: "Side",
  65070. image: {
  65071. source: "./media/characters/frostfire/side.svg",
  65072. extra: 687/585,
  65073. bottom: 50/737
  65074. }
  65075. },
  65076. back: {
  65077. height: math.unit(15, "feet"),
  65078. weight: math.unit(3000, "kg"),
  65079. preyCapacity: math.unit(5, "people"),
  65080. name: "Back",
  65081. image: {
  65082. source: "./media/characters/frostfire/back.svg",
  65083. extra: 707/607,
  65084. bottom: 16/723
  65085. }
  65086. },
  65087. head: {
  65088. height: math.unit(9.35, "feet"),
  65089. name: "Head",
  65090. image: {
  65091. source: "./media/characters/frostfire/head.svg"
  65092. }
  65093. },
  65094. maw: {
  65095. height: math.unit(3.32, "feet"),
  65096. name: "Maw",
  65097. image: {
  65098. source: "./media/characters/frostfire/maw.svg"
  65099. }
  65100. },
  65101. hand: {
  65102. height: math.unit(3.7, "feet"),
  65103. name: "Hand",
  65104. image: {
  65105. source: "./media/characters/frostfire/hand.svg"
  65106. }
  65107. },
  65108. paw: {
  65109. height: math.unit(5.8, "feet"),
  65110. name: "Paw",
  65111. image: {
  65112. source: "./media/characters/frostfire/paw.svg"
  65113. }
  65114. },
  65115. },
  65116. [
  65117. {
  65118. name: "Normal",
  65119. height: math.unit(15, "feet"),
  65120. default: true
  65121. },
  65122. ]
  65123. ))
  65124. characterMakers.push(() => makeCharacter(
  65125. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65126. {
  65127. front: {
  65128. height: math.unit(5 + 2/12, "feet"),
  65129. weight: math.unit(122, "lb"),
  65130. name: "Front",
  65131. image: {
  65132. source: "./media/characters/valeroo/front.svg",
  65133. extra: 1789/1534,
  65134. bottom: 66/1855
  65135. }
  65136. },
  65137. back: {
  65138. height: math.unit(5 + 2/12, "feet"),
  65139. weight: math.unit(122, "lb"),
  65140. name: "Back",
  65141. image: {
  65142. source: "./media/characters/valeroo/back.svg",
  65143. extra: 1848/1588,
  65144. bottom: 68/1916
  65145. }
  65146. },
  65147. head: {
  65148. height: math.unit(1.87, "feet"),
  65149. name: "Head",
  65150. image: {
  65151. source: "./media/characters/valeroo/head.svg"
  65152. }
  65153. },
  65154. hand: {
  65155. height: math.unit(0.82, "feet"),
  65156. name: "Hand",
  65157. image: {
  65158. source: "./media/characters/valeroo/hand.svg"
  65159. }
  65160. },
  65161. foot: {
  65162. height: math.unit(2.42, "feet"),
  65163. name: "Foot",
  65164. image: {
  65165. source: "./media/characters/valeroo/foot.svg"
  65166. }
  65167. },
  65168. },
  65169. [
  65170. {
  65171. name: "Normal",
  65172. height: math.unit(5 + 2/12, "feet"),
  65173. default: true
  65174. },
  65175. ]
  65176. ))
  65177. characterMakers.push(() => makeCharacter(
  65178. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65179. {
  65180. front: {
  65181. height: math.unit(11 + 3/12, "feet"),
  65182. name: "Front",
  65183. image: {
  65184. source: "./media/characters/corrin/front.svg",
  65185. extra: 665/597,
  65186. bottom: 74/739
  65187. }
  65188. },
  65189. },
  65190. [
  65191. {
  65192. name: "Standard",
  65193. height: math.unit(11 + 3/12, "feet"),
  65194. default: true
  65195. },
  65196. {
  65197. name: "The Boss",
  65198. height: math.unit(110, "feet")
  65199. },
  65200. {
  65201. name: "Shipbreaker",
  65202. height: math.unit(38, "km")
  65203. },
  65204. ]
  65205. ))
  65206. characterMakers.push(() => makeCharacter(
  65207. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65208. {
  65209. front: {
  65210. height: math.unit(10, "feet"),
  65211. weight: math.unit(1750, "lb"),
  65212. name: "Front",
  65213. image: {
  65214. source: "./media/characters/kiba-ulrich/front.svg",
  65215. extra: 1037/973,
  65216. bottom: 36/1073
  65217. }
  65218. },
  65219. },
  65220. [
  65221. {
  65222. name: "Normal",
  65223. height: math.unit(10, "feet"),
  65224. default: true
  65225. },
  65226. {
  65227. name: "Minimacro",
  65228. height: math.unit(20, "feet")
  65229. },
  65230. {
  65231. name: "Macro",
  65232. height: math.unit(200, "feet")
  65233. },
  65234. {
  65235. name: "Megamacro",
  65236. height: math.unit(22500, "feet")
  65237. },
  65238. {
  65239. name: "Gigamacro",
  65240. height: math.unit(2700, "miles")
  65241. },
  65242. {
  65243. name: "Teramacro",
  65244. height: math.unit(10000, "miles")
  65245. },
  65246. ]
  65247. ))
  65248. characterMakers.push(() => makeCharacter(
  65249. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65250. {
  65251. gryphon_front: {
  65252. height: math.unit(220, "cm"),
  65253. weight: math.unit(160, "kg"),
  65254. name: "Front",
  65255. image: {
  65256. source: "./media/characters/ceanoth/gryphon-front.svg",
  65257. extra: 616/552,
  65258. bottom: 33/649
  65259. },
  65260. form: "gryphon",
  65261. default: true
  65262. },
  65263. },
  65264. [
  65265. {
  65266. name: "Normal",
  65267. height: math.unit(220, "cm"),
  65268. form: "gryphon",
  65269. default: true
  65270. },
  65271. ],
  65272. {
  65273. "gryphon": {
  65274. name: "Grpyhon",
  65275. default: true
  65276. },
  65277. }
  65278. ))
  65279. characterMakers.push(() => makeCharacter(
  65280. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65281. {
  65282. dressed: {
  65283. height: math.unit(2.2 * 0.79, "meters"),
  65284. weight: math.unit(0.5, "tonnes"),
  65285. name: "Dressed",
  65286. image: {
  65287. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65288. extra: 665/315,
  65289. bottom: 106/771
  65290. },
  65291. extraAttributes: {
  65292. "bodyLength": {
  65293. name: "Body Length",
  65294. power: 1,
  65295. type: "length",
  65296. base: math.unit(2.5, "meters")
  65297. },
  65298. "tailLength": {
  65299. name: "Tail Length",
  65300. power: 1,
  65301. type: "length",
  65302. base: math.unit(4.5, "meters")
  65303. },
  65304. "wingspan": {
  65305. name: "Wingspan",
  65306. power: 1,
  65307. type: "length",
  65308. base: math.unit(6, "meters")
  65309. },
  65310. "taurStomachCapacity": {
  65311. name: "Taur Stomach Capacity",
  65312. power: 3,
  65313. type: "volume",
  65314. base: math.unit(4, "people"),
  65315. defaultUnit: "people"
  65316. },
  65317. "anthroStomachCapacity": {
  65318. name: "Anthro Stomach Capacity",
  65319. power: 3,
  65320. type: "volume",
  65321. base: math.unit(1, "people"),
  65322. defaultUnit: "people"
  65323. },
  65324. }
  65325. },
  65326. nude: {
  65327. height: math.unit(2.2 * 0.79, "meters"),
  65328. weight: math.unit(0.5, "tonnes"),
  65329. name: "Nude",
  65330. image: {
  65331. source: "./media/characters/vanadiya-athelya/nude.svg",
  65332. extra: 665/315,
  65333. bottom: 106/771
  65334. },
  65335. extraAttributes: {
  65336. "bodyLength": {
  65337. name: "Body Length",
  65338. power: 1,
  65339. type: "length",
  65340. base: math.unit(2.5, "meters")
  65341. },
  65342. "tailLength": {
  65343. name: "Tail Length",
  65344. power: 1,
  65345. type: "length",
  65346. base: math.unit(4.5, "meters")
  65347. },
  65348. "wingspan": {
  65349. name: "Wingspan",
  65350. power: 1,
  65351. type: "length",
  65352. base: math.unit(6, "meters")
  65353. },
  65354. "taurStomachCapacity": {
  65355. name: "Taur Stomach Capacity",
  65356. power: 3,
  65357. type: "volume",
  65358. base: math.unit(4, "people"),
  65359. defaultUnit: "people"
  65360. },
  65361. "anthroStomachCapacity": {
  65362. name: "Anthro Stomach Capacity",
  65363. power: 3,
  65364. type: "volume",
  65365. base: math.unit(1, "people"),
  65366. defaultUnit: "people"
  65367. },
  65368. }
  65369. },
  65370. },
  65371. [
  65372. {
  65373. name: "Handheld",
  65374. height: math.unit(0.79 * 0.06, "meters")
  65375. },
  65376. {
  65377. name: "Mini",
  65378. height: math.unit(0.79 * 0.7, "meters")
  65379. },
  65380. {
  65381. name: "Short",
  65382. height: math.unit(0.79 * 1.4, "meters")
  65383. },
  65384. {
  65385. name: "Imposing",
  65386. height: math.unit(0.79 * 2.2, "meters"),
  65387. default: true
  65388. },
  65389. {
  65390. name: "Big",
  65391. height: math.unit(0.79 * 3.8, "meters")
  65392. },
  65393. {
  65394. name: "Giant",
  65395. height: math.unit(0.79 * 6.7, "meters")
  65396. },
  65397. {
  65398. name: "Airliner",
  65399. height: math.unit(0.79 * 64, "meters")
  65400. },
  65401. {
  65402. name: "Skyscraper",
  65403. height: math.unit(0.79 * 220, "meters")
  65404. },
  65405. {
  65406. name: "Mountain",
  65407. height: math.unit(0.79 * 3.6, "km")
  65408. },
  65409. {
  65410. name: "Spacescraper",
  65411. height: math.unit(0.79 * 70, "km")
  65412. },
  65413. {
  65414. name: "Continental",
  65415. height: math.unit(0.79 * 1290, "km")
  65416. },
  65417. {
  65418. name: "Moon",
  65419. height: math.unit(0.79 * 32200, "km")
  65420. },
  65421. {
  65422. name: "Planetary",
  65423. height: math.unit(0.79 * 145000, "km")
  65424. },
  65425. {
  65426. name: "Stellar",
  65427. height: math.unit(0.79 * 19e6, "km")
  65428. },
  65429. {
  65430. name: "Solar",
  65431. height: math.unit(0.79 * 40, "AU")
  65432. },
  65433. {
  65434. name: "Intersteller",
  65435. height: math.unit(0.79 * 3, "lightyears")
  65436. },
  65437. {
  65438. name: "Star Cluster",
  65439. height: math.unit(0.79 * 80, "lightyears")
  65440. },
  65441. {
  65442. name: "Ecumenical",
  65443. height: math.unit(0.79 * 2e3, "lightyears")
  65444. },
  65445. {
  65446. name: "Galactic",
  65447. height: math.unit(0.79 * 175000, "lightyears")
  65448. },
  65449. {
  65450. name: "Galaxy Cluster",
  65451. height: math.unit(0.79 * 25e6, "lightyears")
  65452. },
  65453. ]
  65454. ))
  65455. characterMakers.push(() => makeCharacter(
  65456. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65457. {
  65458. front: {
  65459. height: math.unit(6 + 2/12, "feet"),
  65460. weight: math.unit(160, "lb"),
  65461. name: "Front",
  65462. image: {
  65463. source: "./media/characters/yana-amelin/front.svg",
  65464. extra: 1413/1295,
  65465. bottom: 42/1455
  65466. }
  65467. },
  65468. back: {
  65469. height: math.unit(6 + 2/12, "feet"),
  65470. weight: math.unit(160, "lb"),
  65471. name: "Back",
  65472. image: {
  65473. source: "./media/characters/yana-amelin/back.svg",
  65474. extra: 1424/1310,
  65475. bottom: 24/1448
  65476. }
  65477. },
  65478. paws: {
  65479. height: math.unit(1.48, "feet"),
  65480. name: "Paws",
  65481. image: {
  65482. source: "./media/characters/yana-amelin/paws.svg",
  65483. extra: 304/304,
  65484. bottom: 49/353
  65485. }
  65486. },
  65487. },
  65488. [
  65489. {
  65490. name: "Micro",
  65491. height: math.unit(4, "inches")
  65492. },
  65493. {
  65494. name: "Normal",
  65495. height: math.unit(6 + 2/12, "feet"),
  65496. default: true
  65497. },
  65498. {
  65499. name: "Minimacro",
  65500. height: math.unit(20, "feet")
  65501. },
  65502. {
  65503. name: "Macro",
  65504. height: math.unit(70, "feet")
  65505. },
  65506. ]
  65507. ))
  65508. characterMakers.push(() => makeCharacter(
  65509. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65510. {
  65511. frontNsfw: {
  65512. height: math.unit(2.48, "meters"),
  65513. weight: math.unit(112, "kg"),
  65514. name: "Front (NSFW)",
  65515. image: {
  65516. source: "./media/characters/titania/front-nsfw.svg",
  65517. extra: 1302/1232,
  65518. bottom: 90/1392
  65519. }
  65520. },
  65521. backNsfw: {
  65522. height: math.unit(2.48, "meters"),
  65523. weight: math.unit(112, "kg"),
  65524. name: "Back (NSFW)",
  65525. image: {
  65526. source: "./media/characters/titania/back-nsfw.svg",
  65527. extra: 1355/1288,
  65528. bottom: 18/1373
  65529. }
  65530. },
  65531. frontSfw: {
  65532. height: math.unit(2.48, "meters"),
  65533. weight: math.unit(112, "kg"),
  65534. name: "Front (SFW)",
  65535. image: {
  65536. source: "./media/characters/titania/front-sfw.svg",
  65537. extra: 1302/1232,
  65538. bottom: 90/1392
  65539. }
  65540. },
  65541. backSfw: {
  65542. height: math.unit(2.48, "meters"),
  65543. weight: math.unit(112, "kg"),
  65544. name: "Back (SFW)",
  65545. image: {
  65546. source: "./media/characters/titania/back-sfw.svg",
  65547. extra: 1355/1288,
  65548. bottom: 18/1373
  65549. }
  65550. },
  65551. head: {
  65552. height: math.unit(2.06, "feet"),
  65553. name: "Head",
  65554. image: {
  65555. source: "./media/characters/titania/head.svg"
  65556. }
  65557. },
  65558. maw: {
  65559. height: math.unit(0.8, "feet"),
  65560. name: "Maw",
  65561. image: {
  65562. source: "./media/characters/titania/maw.svg"
  65563. }
  65564. },
  65565. foot: {
  65566. height: math.unit(1.65, "feet"),
  65567. name: "Foot",
  65568. image: {
  65569. source: "./media/characters/titania/foot.svg"
  65570. }
  65571. },
  65572. nethers: {
  65573. height: math.unit(1.7, "feet"),
  65574. name: "Nethers",
  65575. image: {
  65576. source: "./media/characters/titania/nethers.svg"
  65577. }
  65578. },
  65579. },
  65580. [
  65581. {
  65582. name: "Normal",
  65583. height: math.unit(2.48, "meters"),
  65584. default: true
  65585. },
  65586. {
  65587. name: "Mini Macro",
  65588. height: math.unit(248, "meters")
  65589. },
  65590. {
  65591. name: "Macro",
  65592. height: math.unit(620, "meters")
  65593. },
  65594. {
  65595. name: "Mega Macro",
  65596. height: math.unit(1860, "meters")
  65597. },
  65598. ]
  65599. ))
  65600. characterMakers.push(() => makeCharacter(
  65601. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65602. {
  65603. front: {
  65604. height: math.unit(5 + 9/12, "feet"),
  65605. weight: math.unit(1500, "lb"),
  65606. name: "Front",
  65607. image: {
  65608. source: "./media/characters/tony-gray/front.svg",
  65609. extra: 700/575,
  65610. bottom: 71/771
  65611. }
  65612. },
  65613. },
  65614. [
  65615. {
  65616. name: "Normal",
  65617. height: math.unit(5 + 9/12, "feet"),
  65618. default: true
  65619. },
  65620. ]
  65621. ))
  65622. characterMakers.push(() => makeCharacter(
  65623. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65624. {
  65625. side: {
  65626. height: math.unit(8 + 2/12, "feet"),
  65627. name: "Side",
  65628. image: {
  65629. source: "./media/characters/kelby/side.svg",
  65630. extra: 804/578,
  65631. bottom: 70/874
  65632. },
  65633. form: "regular",
  65634. default: true
  65635. },
  65636. lounging: {
  65637. height: math.unit(12.41, "feet"),
  65638. name: "Lounging",
  65639. image: {
  65640. source: "./media/characters/kelby/lounging.svg"
  65641. },
  65642. form: "regular"
  65643. },
  65644. maw: {
  65645. height: math.unit(5, "feet"),
  65646. name: "Maw",
  65647. image: {
  65648. source: "./media/characters/kelby/maw.svg"
  65649. },
  65650. form: "regular"
  65651. },
  65652. dick: {
  65653. height: math.unit(2.4, "feet"),
  65654. name: "Dick",
  65655. image: {
  65656. source: "./media/characters/kelby/dick.svg"
  65657. },
  65658. form: "regular"
  65659. },
  65660. slit: {
  65661. height: math.unit(1.2, "feet"),
  65662. name: "Slit",
  65663. image: {
  65664. source: "./media/characters/kelby/slit.svg"
  65665. },
  65666. form: "regular"
  65667. },
  65668. chibi: {
  65669. height: math.unit(5, "feet"),
  65670. name: "Chibi",
  65671. image: {
  65672. source: "./media/characters/kelby/chibi.svg",
  65673. extra: 245/200,
  65674. bottom: 43/288
  65675. },
  65676. form: "chibi",
  65677. default: true
  65678. },
  65679. },
  65680. [
  65681. {
  65682. name: "Normal",
  65683. height: math.unit(8 + 2/12, "feet"),
  65684. default: true,
  65685. form: "regular"
  65686. },
  65687. {
  65688. name: "Normal",
  65689. height: math.unit(5, "feet"),
  65690. default: true,
  65691. form: "chibi"
  65692. },
  65693. ],
  65694. {
  65695. "regular": {
  65696. name: "Regular",
  65697. default: true
  65698. },
  65699. "chibi": {
  65700. name: "Chibi",
  65701. },
  65702. }
  65703. ))
  65704. characterMakers.push(() => makeCharacter(
  65705. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65706. {
  65707. front: {
  65708. height: math.unit(7 + 10/12, "feet"),
  65709. weight: math.unit(300, "lb"),
  65710. name: "Front",
  65711. image: {
  65712. source: "./media/characters/elisa-mitchell/front.svg",
  65713. extra: 2562/2355,
  65714. bottom: 62/2624
  65715. }
  65716. },
  65717. maw: {
  65718. height: math.unit(2.37, "feet"),
  65719. name: "Maw",
  65720. image: {
  65721. source: "./media/characters/elisa-mitchell/maw.svg"
  65722. }
  65723. },
  65724. },
  65725. [
  65726. {
  65727. name: "Normal",
  65728. height: math.unit(7 + 10/12, "feet"),
  65729. default: true
  65730. },
  65731. {
  65732. name: "Macro",
  65733. height: math.unit(1490, "feet"),
  65734. default: true
  65735. },
  65736. ]
  65737. ))
  65738. characterMakers.push(() => makeCharacter(
  65739. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65740. {
  65741. front: {
  65742. height: math.unit(122, "cm"),
  65743. weight: math.unit(40, "lb"),
  65744. name: "Front",
  65745. image: {
  65746. source: "./media/characters/camia-vertigo-zott/front.svg",
  65747. extra: 2112/1902,
  65748. bottom: 21/2133
  65749. }
  65750. },
  65751. },
  65752. [
  65753. {
  65754. name: "Base Height",
  65755. height: math.unit(122, "cm")
  65756. },
  65757. {
  65758. name: "Macro Height",
  65759. height: math.unit(345, "meters"),
  65760. default: true
  65761. },
  65762. ]
  65763. ))
  65764. characterMakers.push(() => makeCharacter(
  65765. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65766. {
  65767. front: {
  65768. height: math.unit(6 + 3/12, "feet"),
  65769. weight: math.unit(180, "lb"),
  65770. name: "Front",
  65771. image: {
  65772. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65773. extra: 2580/2457,
  65774. bottom: 131/2711
  65775. }
  65776. },
  65777. },
  65778. [
  65779. {
  65780. name: "Normal",
  65781. height: math.unit(6 + 3/12, "feet"),
  65782. default: true
  65783. },
  65784. ]
  65785. ))
  65786. characterMakers.push(() => makeCharacter(
  65787. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65788. {
  65789. front: {
  65790. height: math.unit(165, "cm"),
  65791. weight: math.unit(130, "lb"),
  65792. name: "Front",
  65793. image: {
  65794. source: "./media/characters/sleeka/front.svg",
  65795. extra: 1252/1200,
  65796. bottom: 46/1298
  65797. }
  65798. },
  65799. },
  65800. [
  65801. {
  65802. name: "Normal",
  65803. height: math.unit(165, "cm")
  65804. },
  65805. {
  65806. name: "Galactic",
  65807. height: math.unit(5.8e22, "meters"),
  65808. default: true
  65809. },
  65810. {
  65811. name: "Universal",
  65812. height: math.unit(1.02e29, "meters")
  65813. },
  65814. ]
  65815. ))
  65816. characterMakers.push(() => makeCharacter(
  65817. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65818. {
  65819. front: {
  65820. height: math.unit(5 + 11/12, "feet"),
  65821. weight: math.unit(145, "lb"),
  65822. name: "Front",
  65823. image: {
  65824. source: "./media/characters/emily-whitetail/front.svg",
  65825. extra: 2510/2280,
  65826. bottom: 128/2638
  65827. }
  65828. },
  65829. },
  65830. [
  65831. {
  65832. name: "Normal",
  65833. height: math.unit(5 + 11/12, "feet")
  65834. },
  65835. {
  65836. name: "Galactic",
  65837. height: math.unit(6.3e22, "meters"),
  65838. default: true
  65839. },
  65840. {
  65841. name: "Universal",
  65842. height: math.unit(1.12e29, "meters")
  65843. },
  65844. ]
  65845. ))
  65846. characterMakers.push(() => makeCharacter(
  65847. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65848. {
  65849. front: {
  65850. height: math.unit(5 + 4/12, "feet"),
  65851. weight: math.unit(110, "lb"),
  65852. name: "Front",
  65853. image: {
  65854. source: "./media/characters/buck-whitetail/front.svg",
  65855. extra: 2430/2186,
  65856. bottom: 125/2555
  65857. }
  65858. },
  65859. },
  65860. [
  65861. {
  65862. name: "Normal",
  65863. height: math.unit(5 + 4/12, "feet")
  65864. },
  65865. {
  65866. name: "Galactic",
  65867. height: math.unit(5.4e22, "meters"),
  65868. default: true
  65869. },
  65870. {
  65871. name: "Universal",
  65872. height: math.unit(9.6e28, "meters")
  65873. },
  65874. ]
  65875. ))
  65876. characterMakers.push(() => makeCharacter(
  65877. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65878. {
  65879. front: {
  65880. height: math.unit(5 + 3/12, "feet"),
  65881. name: "Front",
  65882. image: {
  65883. source: "./media/characters/zoey-frisk/front.svg",
  65884. extra: 2825/2646,
  65885. bottom: 57/2882
  65886. }
  65887. },
  65888. },
  65889. [
  65890. {
  65891. name: "Normal",
  65892. height: math.unit(5 + 3/12, "feet"),
  65893. default: true
  65894. },
  65895. {
  65896. name: "Macro",
  65897. height: math.unit(800, "feet")
  65898. },
  65899. ]
  65900. ))
  65901. characterMakers.push(() => makeCharacter(
  65902. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65903. {
  65904. front: {
  65905. height: math.unit(210, "cm"),
  65906. weight: math.unit(102, "kg"),
  65907. name: "Front",
  65908. image: {
  65909. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65910. extra: 831/790,
  65911. bottom: 19/850
  65912. }
  65913. },
  65914. },
  65915. [
  65916. {
  65917. name: "Micro",
  65918. height: math.unit(1, "mm")
  65919. },
  65920. {
  65921. name: "Small",
  65922. height: math.unit(1, "cm")
  65923. },
  65924. {
  65925. name: "Short",
  65926. height: math.unit(1, "foot")
  65927. },
  65928. {
  65929. name: "Normal",
  65930. height: math.unit(210, "cm"),
  65931. default: true
  65932. },
  65933. {
  65934. name: "Big",
  65935. height: math.unit(15, "feet")
  65936. },
  65937. {
  65938. name: "Macro",
  65939. height: math.unit(50, "feet")
  65940. },
  65941. ]
  65942. ))
  65943. characterMakers.push(() => makeCharacter(
  65944. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65945. {
  65946. front: {
  65947. height: math.unit(80, "feet"),
  65948. weight: math.unit(410000, "lb"),
  65949. name: "Front",
  65950. image: {
  65951. source: "./media/characters/trouble/front.svg",
  65952. extra: 780/723,
  65953. bottom: 11/791
  65954. },
  65955. extraAttributes: {
  65956. "pawArea": {
  65957. name: "Paw Area",
  65958. power: 2,
  65959. type: "area",
  65960. base: math.unit(49, "feet^2")
  65961. },
  65962. }
  65963. },
  65964. },
  65965. [
  65966. {
  65967. name: "Normal",
  65968. height: math.unit(80, "feet"),
  65969. default: true
  65970. },
  65971. ]
  65972. ))
  65973. characterMakers.push(() => makeCharacter(
  65974. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65975. {
  65976. front: {
  65977. height: math.unit(5 + 7/12, "feet"),
  65978. weight: math.unit(140, "lb"),
  65979. name: "Front",
  65980. image: {
  65981. source: "./media/characters/bastion-aralus/front.svg",
  65982. extra: 1122/1045,
  65983. bottom: 24/1146
  65984. }
  65985. },
  65986. back: {
  65987. height: math.unit(5 + 7/12, "feet"),
  65988. weight: math.unit(140, "lb"),
  65989. name: "Back",
  65990. image: {
  65991. source: "./media/characters/bastion-aralus/back.svg",
  65992. extra: 1158/1078,
  65993. bottom: 39/1197
  65994. }
  65995. },
  65996. dick: {
  65997. height: math.unit(1.16, "feet"),
  65998. name: "Dick",
  65999. image: {
  66000. source: "./media/characters/bastion-aralus/dick.svg"
  66001. }
  66002. },
  66003. },
  66004. [
  66005. {
  66006. name: "Micro",
  66007. height: math.unit(1, "mm")
  66008. },
  66009. {
  66010. name: "Normal",
  66011. height: math.unit(5 + 7/12, "feet"),
  66012. default: true
  66013. },
  66014. {
  66015. name: "Macro",
  66016. height: math.unit(57, "feet")
  66017. },
  66018. ]
  66019. ))
  66020. characterMakers.push(() => makeCharacter(
  66021. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  66022. {
  66023. sona_front: {
  66024. height: math.unit(6, "feet"),
  66025. weight: math.unit(350, "lb"),
  66026. name: "Front",
  66027. image: {
  66028. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  66029. extra: 1099/1005,
  66030. bottom: 22/1121
  66031. },
  66032. form: "sona",
  66033. default: true
  66034. },
  66035. sona_side: {
  66036. height: math.unit(6, "feet"),
  66037. weight: math.unit(350, "lb"),
  66038. name: "Side",
  66039. image: {
  66040. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  66041. extra: 1075/1017,
  66042. bottom: 20/1095
  66043. },
  66044. form: "sona",
  66045. },
  66046. character_front: {
  66047. height: math.unit(6, "feet"),
  66048. weight: math.unit(300, "lb"),
  66049. name: "Front",
  66050. image: {
  66051. source: "./media/characters/midnight-yamikidate/character-front.svg",
  66052. extra: 1099/1005,
  66053. bottom: 22/1121
  66054. },
  66055. form: "character",
  66056. default: true
  66057. },
  66058. character_side: {
  66059. height: math.unit(6, "feet"),
  66060. weight: math.unit(300, "lb"),
  66061. name: "Side",
  66062. image: {
  66063. source: "./media/characters/midnight-yamikidate/character-side.svg",
  66064. extra: 1075/1017,
  66065. bottom: 20/1095
  66066. },
  66067. form: "character",
  66068. },
  66069. },
  66070. [
  66071. {
  66072. name: "Normal",
  66073. height: math.unit(500, "feet"),
  66074. default: true,
  66075. form: "sona"
  66076. },
  66077. {
  66078. name: "Normal",
  66079. height: math.unit(50, "feet"),
  66080. default: true,
  66081. form: "character"
  66082. },
  66083. ],
  66084. {
  66085. "sona": {
  66086. name: "Sona",
  66087. default: true
  66088. },
  66089. "character": {
  66090. name: "Character",
  66091. },
  66092. }
  66093. ))
  66094. characterMakers.push(() => makeCharacter(
  66095. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66096. {
  66097. front: {
  66098. height: math.unit(5 + 4/12, "feet"),
  66099. weight: math.unit(58, "kg"),
  66100. name: "Front",
  66101. image: {
  66102. source: "./media/characters/hood/front.svg",
  66103. extra: 1474/1309,
  66104. bottom: 0/1474
  66105. }
  66106. },
  66107. },
  66108. [
  66109. {
  66110. name: "Normal",
  66111. height: math.unit(5 + 4/12, "feet"),
  66112. default: true
  66113. },
  66114. ]
  66115. ))
  66116. characterMakers.push(() => makeCharacter(
  66117. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66118. {
  66119. front: {
  66120. height: math.unit(8 + 2/12, "feet"),
  66121. name: "Front",
  66122. image: {
  66123. source: "./media/characters/rena/front.svg",
  66124. extra: 1768/1632,
  66125. bottom: 57/1825
  66126. }
  66127. },
  66128. },
  66129. [
  66130. {
  66131. name: "Normal",
  66132. height: math.unit(8 + 2/12, "feet"),
  66133. default: true
  66134. },
  66135. ]
  66136. ))
  66137. characterMakers.push(() => makeCharacter(
  66138. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66139. {
  66140. front: {
  66141. height: math.unit(5 + 3/12, "feet"),
  66142. name: "Front",
  66143. image: {
  66144. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66145. extra: 1209/1159,
  66146. bottom: 33/1242
  66147. }
  66148. },
  66149. maw: {
  66150. height: math.unit(1.75, "feet"),
  66151. name: "Maw",
  66152. image: {
  66153. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66154. }
  66155. },
  66156. },
  66157. [
  66158. {
  66159. name: "Micro",
  66160. height: math.unit(3, "inches")
  66161. },
  66162. {
  66163. name: "Regular",
  66164. height: math.unit(5 + 3/12, "feet"),
  66165. default: true
  66166. },
  66167. {
  66168. name: "Imagined",
  66169. height: math.unit(90, "meters")
  66170. },
  66171. ]
  66172. ))
  66173. characterMakers.push(() => makeCharacter(
  66174. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66175. {
  66176. front: {
  66177. height: math.unit(11.75, "feet"),
  66178. weight: math.unit(4346, "lb"),
  66179. preyCapacity: math.unit(20, "people"),
  66180. name: "Front",
  66181. image: {
  66182. source: "./media/characters/suma-roo/front.svg",
  66183. extra: 1370/1365,
  66184. bottom: 164/1534
  66185. }
  66186. },
  66187. },
  66188. [
  66189. {
  66190. name: "Normal",
  66191. height: math.unit(11.75, "feet"),
  66192. default: true
  66193. },
  66194. ]
  66195. ))
  66196. characterMakers.push(() => makeCharacter(
  66197. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66198. {
  66199. front: {
  66200. height: math.unit(2.35, "meters"),
  66201. weight: math.unit(240, "kg"),
  66202. name: "Front",
  66203. image: {
  66204. source: "./media/characters/hymmanios/front.svg",
  66205. extra: 2032/1994,
  66206. bottom: 194/2226
  66207. }
  66208. },
  66209. },
  66210. [
  66211. {
  66212. name: "Normal",
  66213. height: math.unit(2.35, "meters"),
  66214. default: true
  66215. },
  66216. {
  66217. name: "Macro",
  66218. height: math.unit(75, "meters")
  66219. },
  66220. {
  66221. name: "Mega",
  66222. height: math.unit(1250, "meters")
  66223. },
  66224. {
  66225. name: "Giga",
  66226. height: math.unit(235000, "meters")
  66227. },
  66228. ]
  66229. ))
  66230. characterMakers.push(() => makeCharacter(
  66231. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66232. {
  66233. front: {
  66234. height: math.unit(134, "feet"),
  66235. weight: math.unit(932.635, "tons"),
  66236. name: "Front",
  66237. image: {
  66238. source: "./media/characters/azalea/front.svg",
  66239. extra: 703/687,
  66240. bottom: 75/778
  66241. }
  66242. },
  66243. },
  66244. [
  66245. {
  66246. name: "Normal",
  66247. height: math.unit(134, "feet"),
  66248. default: true
  66249. },
  66250. ]
  66251. ))
  66252. characterMakers.push(() => makeCharacter(
  66253. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66254. {
  66255. front: {
  66256. height: math.unit(6.4, "feet"),
  66257. weight: math.unit(167.5, "lb"),
  66258. name: "Front",
  66259. image: {
  66260. source: "./media/characters/lizzy/front.svg",
  66261. extra: 1916/1791,
  66262. bottom: 103/2019
  66263. }
  66264. },
  66265. back: {
  66266. height: math.unit(6.4, "feet"),
  66267. weight: math.unit(167.5, "lb"),
  66268. name: "Back",
  66269. image: {
  66270. source: "./media/characters/lizzy/back.svg",
  66271. extra: 1995/1856,
  66272. bottom: 11/2006
  66273. }
  66274. },
  66275. },
  66276. [
  66277. {
  66278. name: "Normal",
  66279. height: math.unit(6.4, "feet"),
  66280. default: true
  66281. },
  66282. ]
  66283. ))
  66284. characterMakers.push(() => makeCharacter(
  66285. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66286. {
  66287. front: {
  66288. height: math.unit(66, "inches"),
  66289. name: "Front",
  66290. image: {
  66291. source: "./media/characters/sasha/front.svg",
  66292. extra: 620/571,
  66293. bottom: 33/653
  66294. }
  66295. },
  66296. back: {
  66297. height: math.unit(66, "inches"),
  66298. name: "Back",
  66299. image: {
  66300. source: "./media/characters/sasha/back.svg",
  66301. extra: 615/564,
  66302. bottom: 38/653
  66303. }
  66304. },
  66305. },
  66306. [
  66307. {
  66308. name: "IRL",
  66309. height: math.unit(2, "inches")
  66310. },
  66311. {
  66312. name: "Normal",
  66313. height: math.unit(66, "inches"),
  66314. default: true
  66315. },
  66316. {
  66317. name: "Macro",
  66318. height: math.unit(400, "feet")
  66319. },
  66320. {
  66321. name: "Mega Macro",
  66322. height: math.unit(500000, "feet")
  66323. },
  66324. {
  66325. name: "Giga Macro",
  66326. height: math.unit(50000, "miles")
  66327. },
  66328. ]
  66329. ))
  66330. characterMakers.push(() => makeCharacter(
  66331. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66332. {
  66333. front: {
  66334. height: math.unit(52, "inches"),
  66335. name: "Front",
  66336. image: {
  66337. source: "./media/characters/autumn-avali/front.svg",
  66338. extra: 1031/908,
  66339. bottom: 38/1069
  66340. }
  66341. },
  66342. back: {
  66343. height: math.unit(52, "inches"),
  66344. name: "Back",
  66345. image: {
  66346. source: "./media/characters/autumn-avali/back.svg",
  66347. extra: 1047/923,
  66348. bottom: 11/1058
  66349. }
  66350. },
  66351. maw: {
  66352. height: math.unit(0.59, "feet"),
  66353. name: "Maw",
  66354. image: {
  66355. source: "./media/characters/autumn-avali/maw.svg"
  66356. }
  66357. },
  66358. },
  66359. [
  66360. {
  66361. name: "Normal",
  66362. height: math.unit(52, "inches"),
  66363. default: true
  66364. },
  66365. {
  66366. name: "Big'vali",
  66367. height: math.unit(3.5, "meters")
  66368. },
  66369. {
  66370. name: "Macro",
  66371. height: math.unit(35, "meters")
  66372. },
  66373. {
  66374. name: "Macro+",
  66375. height: math.unit(165, "meters")
  66376. },
  66377. {
  66378. name: "Megamacro",
  66379. height: math.unit(8250, "meters")
  66380. },
  66381. {
  66382. name: "Megamacro+",
  66383. height: math.unit(88000, "meters")
  66384. },
  66385. {
  66386. name: "Gigamacro",
  66387. height: math.unit(1.32, "megameters")
  66388. },
  66389. {
  66390. name: "Planet Cracker",
  66391. height: math.unit(77, "megameters")
  66392. },
  66393. ]
  66394. ))
  66395. characterMakers.push(() => makeCharacter(
  66396. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66397. {
  66398. front: {
  66399. height: math.unit(200, "feet"),
  66400. name: "Front",
  66401. image: {
  66402. source: "./media/characters/sophie/front.svg",
  66403. extra: 710/680,
  66404. bottom: 3/713
  66405. },
  66406. extraAttributes: {
  66407. "milkProduction": {
  66408. name: "Milk Production",
  66409. power: 3,
  66410. type: "volume",
  66411. base: math.unit(27000, "liters")
  66412. },
  66413. }
  66414. },
  66415. },
  66416. [
  66417. {
  66418. name: "Normal",
  66419. height: math.unit(200, "feet"),
  66420. default: true
  66421. },
  66422. ]
  66423. ))
  66424. characterMakers.push(() => makeCharacter(
  66425. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66426. {
  66427. front: {
  66428. height: math.unit(23, "feet"),
  66429. name: "Front",
  66430. image: {
  66431. source: "./media/characters/adelaide-spireborn/front.svg",
  66432. extra: 671/625,
  66433. bottom: 18/689
  66434. }
  66435. },
  66436. maw: {
  66437. height: math.unit(7.8, "feet"),
  66438. name: "Maw",
  66439. image: {
  66440. source: "./media/characters/adelaide-spireborn/maw.svg"
  66441. }
  66442. },
  66443. sword: {
  66444. height: math.unit(13.4, "feet"),
  66445. name: "Sword",
  66446. image: {
  66447. source: "./media/characters/adelaide-spireborn/sword.svg"
  66448. }
  66449. },
  66450. },
  66451. [
  66452. {
  66453. name: "Magically Induced",
  66454. height: math.unit(8.5, "feet")
  66455. },
  66456. {
  66457. name: "Normal",
  66458. height: math.unit(23, "feet"),
  66459. default: true
  66460. },
  66461. ]
  66462. ))
  66463. characterMakers.push(() => makeCharacter(
  66464. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66465. {
  66466. side: {
  66467. height: math.unit(8, "feet"),
  66468. name: "Side",
  66469. image: {
  66470. source: "./media/characters/artemus/side.svg",
  66471. extra: 800/397,
  66472. bottom: 83/883
  66473. }
  66474. },
  66475. front: {
  66476. height: math.unit(8, "feet"),
  66477. name: "Front",
  66478. image: {
  66479. source: "./media/characters/artemus/front.svg",
  66480. extra: 763/348,
  66481. bottom: 89/852
  66482. }
  66483. },
  66484. maw: {
  66485. height: math.unit(5.63, "feet"),
  66486. name: "Maw",
  66487. image: {
  66488. source: "./media/characters/artemus/maw.svg"
  66489. }
  66490. },
  66491. forepaw: {
  66492. height: math.unit(3.13, "feet"),
  66493. name: "Forepaw",
  66494. image: {
  66495. source: "./media/characters/artemus/forepaw.svg"
  66496. }
  66497. },
  66498. hindpaw: {
  66499. height: math.unit(4.85, "feet"),
  66500. name: "Hindpaw",
  66501. image: {
  66502. source: "./media/characters/artemus/hindpaw.svg"
  66503. }
  66504. },
  66505. },
  66506. [
  66507. {
  66508. name: "Normal",
  66509. height: math.unit(8, "feet"),
  66510. default: true
  66511. },
  66512. ]
  66513. ))
  66514. characterMakers.push(() => makeCharacter(
  66515. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66516. {
  66517. front: {
  66518. height: math.unit(4, "feet"),
  66519. name: "Front",
  66520. image: {
  66521. source: "./media/characters/flynn/front.svg",
  66522. extra: 427/404,
  66523. bottom: 14/441
  66524. },
  66525. extraAttributes: {
  66526. "tailLength": {
  66527. name: "Tail Length",
  66528. power: 1,
  66529. type: "length",
  66530. base: math.unit(2.7, "feet")
  66531. },
  66532. }
  66533. },
  66534. frontNsfw: {
  66535. height: math.unit(4, "feet"),
  66536. name: "Front NSFW",
  66537. image: {
  66538. source: "./media/characters/flynn/front-nsfw.svg",
  66539. extra: 427/404,
  66540. bottom: 14/441
  66541. },
  66542. extraAttributes: {
  66543. "tailLength": {
  66544. name: "Tail Length",
  66545. power: 1,
  66546. type: "length",
  66547. base: math.unit(2.7, "feet")
  66548. },
  66549. "dickLength": {
  66550. name: "Dick Length",
  66551. power: 1,
  66552. type: "length",
  66553. base: math.unit(0.7, "feet")
  66554. },
  66555. }
  66556. },
  66557. back: {
  66558. height: math.unit(4, "feet"),
  66559. name: "Back",
  66560. image: {
  66561. source: "./media/characters/flynn/back.svg",
  66562. extra: 420/400,
  66563. bottom: 12/432
  66564. },
  66565. extraAttributes: {
  66566. "tailLength": {
  66567. name: "Tail Length",
  66568. power: 1,
  66569. type: "length",
  66570. base: math.unit(2.7, "feet")
  66571. },
  66572. }
  66573. },
  66574. },
  66575. [
  66576. {
  66577. name: "Normal",
  66578. height: math.unit(4, "feet"),
  66579. default: true
  66580. },
  66581. ]
  66582. ))
  66583. characterMakers.push(() => makeCharacter(
  66584. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66585. {
  66586. frontSfw: {
  66587. height: math.unit(1.9, "meters"),
  66588. name: "Front (SFW)",
  66589. image: {
  66590. source: "./media/characters/orun/front-sfw.svg",
  66591. extra: 1684/1625,
  66592. bottom: 64/1748
  66593. }
  66594. },
  66595. frontNsfw: {
  66596. height: math.unit(1.9, "meters"),
  66597. name: "Front (NSFW)",
  66598. image: {
  66599. source: "./media/characters/orun/front-nsfw.svg",
  66600. extra: 1684/1625,
  66601. bottom: 64/1748
  66602. }
  66603. },
  66604. frontErect: {
  66605. height: math.unit(1.9, "meters"),
  66606. name: "Front (Erect)",
  66607. image: {
  66608. source: "./media/characters/orun/front-erect.svg",
  66609. extra: 1684/1625,
  66610. bottom: 64/1748
  66611. }
  66612. },
  66613. },
  66614. [
  66615. {
  66616. name: "Normal",
  66617. height: math.unit(1.9, "meters"),
  66618. default: true
  66619. },
  66620. {
  66621. name: "Giant",
  66622. height: math.unit(45, "meters")
  66623. },
  66624. {
  66625. name: "Bigger Giant",
  66626. height: math.unit(155, "meters")
  66627. },
  66628. {
  66629. name: "Macro",
  66630. height: math.unit(550, "meters")
  66631. },
  66632. {
  66633. name: "Bigger Macro",
  66634. height: math.unit(1050, "meters")
  66635. },
  66636. {
  66637. name: "Titan",
  66638. height: math.unit(5, "km")
  66639. },
  66640. {
  66641. name: "Bigger Titan",
  66642. height: math.unit(15, "km")
  66643. },
  66644. ]
  66645. ))
  66646. characterMakers.push(() => makeCharacter(
  66647. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66648. {
  66649. clothed: {
  66650. height: math.unit(5 + 6/12, "feet"),
  66651. name: "Clothed",
  66652. image: {
  66653. source: "./media/characters/catherine-busch/clothed.svg",
  66654. extra: 1330/1273,
  66655. bottom: 45/1375
  66656. }
  66657. },
  66658. nude: {
  66659. height: math.unit(5 + 6/12, "feet"),
  66660. name: "Nude",
  66661. image: {
  66662. source: "./media/characters/catherine-busch/nude.svg",
  66663. extra: 1330/1273,
  66664. bottom: 45/1375
  66665. }
  66666. },
  66667. },
  66668. [
  66669. {
  66670. name: "Normal",
  66671. height: math.unit(5 + 6/12, "feet"),
  66672. default: true
  66673. },
  66674. {
  66675. name: "Maximum",
  66676. height: math.unit(1644, "feet")
  66677. },
  66678. ]
  66679. ))
  66680. characterMakers.push(() => makeCharacter(
  66681. { name: "Carter", species: ["cross-fox"], tags: ["anthro"] },
  66682. {
  66683. front: {
  66684. height: math.unit(5 + 4/12, "feet"),
  66685. weight: math.unit(160, "lb"),
  66686. name: "Front",
  66687. image: {
  66688. source: "./media/characters/carter/front.svg",
  66689. extra: 1007/940,
  66690. bottom: 37/1044
  66691. }
  66692. },
  66693. back: {
  66694. height: math.unit(5 + 4/12, "feet"),
  66695. weight: math.unit(160, "lb"),
  66696. name: "Back",
  66697. image: {
  66698. source: "./media/characters/carter/back.svg",
  66699. extra: 1010/941,
  66700. bottom: 25/1035
  66701. }
  66702. },
  66703. frontErect: {
  66704. height: math.unit(5 + 4/12, "feet"),
  66705. weight: math.unit(160, "lb"),
  66706. name: "Front (Erect)",
  66707. image: {
  66708. source: "./media/characters/carter/front-erect.svg",
  66709. extra: 1015/948,
  66710. bottom: 33/1048
  66711. }
  66712. },
  66713. },
  66714. [
  66715. {
  66716. name: "Normal",
  66717. height: math.unit(5 + 4/12, "feet"),
  66718. default: true
  66719. },
  66720. ]
  66721. ))
  66722. characterMakers.push(() => makeCharacter(
  66723. { name: "Yula", species: ["german-shepherd"], tags: ["anthro"] },
  66724. {
  66725. front: {
  66726. height: math.unit(90, "feet"),
  66727. name: "Front",
  66728. image: {
  66729. source: "./media/characters/yula/front.svg",
  66730. extra: 686/641,
  66731. bottom: 5/691
  66732. }
  66733. },
  66734. },
  66735. [
  66736. {
  66737. name: "Normal",
  66738. height: math.unit(90, "feet"),
  66739. default: true
  66740. },
  66741. ]
  66742. ))
  66743. characterMakers.push(() => makeCharacter(
  66744. { name: "Thomas Bakes", species: ["dutch-angel-dragon"], tags: ["anthro"] },
  66745. {
  66746. front: {
  66747. height: math.unit(2.16, "meters"),
  66748. weight: math.unit(275, "kg"),
  66749. name: "Front",
  66750. image: {
  66751. source: "./media/characters/thomas-bakes/front.svg",
  66752. extra: 333/283,
  66753. bottom: 46/379
  66754. },
  66755. extraAttributes: {
  66756. "pawLength": {
  66757. name: "Paw Length",
  66758. power: 1,
  66759. type: "length",
  66760. base: math.unit(35, "cm")
  66761. },
  66762. "pawWidth": {
  66763. name: "Paw Width",
  66764. power: 1,
  66765. type: "length",
  66766. base: math.unit(30, "cm")
  66767. },
  66768. "handLength": {
  66769. name: "Hand Length",
  66770. power: 1,
  66771. type: "length",
  66772. base: math.unit(30, "cm")
  66773. },
  66774. "handWidth": {
  66775. name: "Hand Width",
  66776. power: 1,
  66777. type: "length",
  66778. base: math.unit(25, "cm")
  66779. },
  66780. "preyCapacity": {
  66781. name: "Prey Capacity",
  66782. power: 3,
  66783. type: "volume",
  66784. base: math.unit(40*20*20, "cm^3")
  66785. },
  66786. "swallowSize": {
  66787. name: "Swallow Size",
  66788. power: 1,
  66789. type: "length",
  66790. base: math.unit(13, "cm")
  66791. },
  66792. "energyIntake": {
  66793. name: "Food Intake",
  66794. power: 3,
  66795. type: "energy",
  66796. base: math.unit(3250, "kcal")
  66797. },
  66798. "wingspan": {
  66799. name: "Wingspan",
  66800. power: 1,
  66801. type: "length",
  66802. base: math.unit(3.7, "meters")
  66803. },
  66804. "wingWidth": {
  66805. name: "Wing Width",
  66806. power: 1,
  66807. type: "length",
  66808. base: math.unit(1.7, "meters")
  66809. },
  66810. }
  66811. },
  66812. },
  66813. [
  66814. {
  66815. name: "Normal",
  66816. height: math.unit(2.16, "meters"),
  66817. default: true
  66818. },
  66819. ]
  66820. ))
  66821. characterMakers.push(() => makeCharacter(
  66822. { name: "Rekka", species: ["kaiju", "hyena"], tags: ["anthro"] },
  66823. {
  66824. front: {
  66825. height: math.unit(8 + 6/12, "feet"),
  66826. weight: math.unit(600, "lb"),
  66827. name: "Front",
  66828. image: {
  66829. source: "./media/characters/rekka/front.svg",
  66830. extra: 1814/1672,
  66831. bottom: 92/1906
  66832. }
  66833. },
  66834. back: {
  66835. height: math.unit(8 + 6/12, "feet"),
  66836. weight: math.unit(600, "lb"),
  66837. name: "Back",
  66838. image: {
  66839. source: "./media/characters/rekka/back.svg",
  66840. extra: 1795/1682,
  66841. bottom: 86/1881
  66842. }
  66843. },
  66844. },
  66845. [
  66846. {
  66847. name: "Normal",
  66848. height: math.unit(8 + 6/12, "feet"),
  66849. default: true
  66850. },
  66851. {
  66852. name: "Category 1",
  66853. height: math.unit(30, "feet")
  66854. },
  66855. {
  66856. name: "Category 2",
  66857. height: math.unit(150, "feet")
  66858. },
  66859. {
  66860. name: "Category 3",
  66861. height: math.unit(300, "feet")
  66862. },
  66863. {
  66864. name: "Category 4",
  66865. height: math.unit(550, "feet")
  66866. },
  66867. ]
  66868. ))
  66869. characterMakers.push(() => makeCharacter(
  66870. { name: "Zeke", species: ["german-shepherd"], tags: ["anthro"] },
  66871. {
  66872. front: {
  66873. height: math.unit(5 + 8/12, "feet"),
  66874. weight: math.unit(180, "lb"),
  66875. name: "Front",
  66876. image: {
  66877. source: "./media/characters/zeke/front.svg",
  66878. extra: 452/417,
  66879. bottom: 21/473
  66880. }
  66881. },
  66882. back: {
  66883. height: math.unit(5 + 8/12, "feet"),
  66884. weight: math.unit(180, "lb"),
  66885. name: "Back",
  66886. image: {
  66887. source: "./media/characters/zeke/back.svg",
  66888. extra: 473/444,
  66889. bottom: 8/481
  66890. }
  66891. },
  66892. frontNsfw: {
  66893. height: math.unit(5 + 8/12, "feet"),
  66894. weight: math.unit(180, "lb"),
  66895. name: "Front (NSFW)",
  66896. image: {
  66897. source: "./media/characters/zeke/front-nsfw.svg",
  66898. extra: 452/417,
  66899. bottom: 21/473
  66900. }
  66901. },
  66902. backNsfw: {
  66903. height: math.unit(5 + 8/12, "feet"),
  66904. weight: math.unit(180, "lb"),
  66905. name: "Back (NSFW)",
  66906. image: {
  66907. source: "./media/characters/zeke/back-nsfw.svg",
  66908. extra: 473/444,
  66909. bottom: 8/481
  66910. }
  66911. },
  66912. frontErect: {
  66913. height: math.unit(5 + 8/12, "feet"),
  66914. weight: math.unit(180, "lb"),
  66915. name: "Front (Erect)",
  66916. image: {
  66917. source: "./media/characters/zeke/front-erect.svg",
  66918. extra: 452/417,
  66919. bottom: 21/473
  66920. }
  66921. },
  66922. },
  66923. [
  66924. {
  66925. name: "Normal",
  66926. height: math.unit(5 + 8/12, "feet"),
  66927. default: true
  66928. },
  66929. {
  66930. name: "Macro",
  66931. height: math.unit((5 + 8/12) * 54.6087, "feet")
  66932. },
  66933. {
  66934. name: "Macro+",
  66935. height: math.unit((5 + 8/12) * 121.92, "feet")
  66936. },
  66937. {
  66938. name: "Mega",
  66939. height: math.unit((5 + 8/12) * 796.67, "feet")
  66940. },
  66941. {
  66942. name: "Mega+",
  66943. height: math.unit((5 + 8/12) * 5086.6, "feet")
  66944. },
  66945. ]
  66946. ))
  66947. characterMakers.push(() => makeCharacter(
  66948. { name: "Adalwen", species: ["german-shepherd"], tags: ["anthro"] },
  66949. {
  66950. frontSfw: {
  66951. height: math.unit(2.2, "meters"),
  66952. name: "Front (SFW)",
  66953. image: {
  66954. source: "./media/characters/adalwen/front-sfw.svg",
  66955. extra: 1654/1574,
  66956. bottom: 107/1761
  66957. }
  66958. },
  66959. frontNsfw: {
  66960. height: math.unit(2.2, "meters"),
  66961. name: "Front (NSFW)",
  66962. image: {
  66963. source: "./media/characters/adalwen/front-nsfw.svg",
  66964. extra: 1654/1574,
  66965. bottom: 107/1761
  66966. }
  66967. },
  66968. frontErect: {
  66969. height: math.unit(2.2, "meters"),
  66970. name: "Front (Erect)",
  66971. image: {
  66972. source: "./media/characters/adalwen/front-erect.svg",
  66973. extra: 1654/1574,
  66974. bottom: 107/1761
  66975. }
  66976. },
  66977. },
  66978. [
  66979. {
  66980. name: "Normal",
  66981. height: math.unit(2.2, "meters"),
  66982. default: true
  66983. },
  66984. {
  66985. name: "Giant",
  66986. height: math.unit(55, "meters")
  66987. },
  66988. {
  66989. name: "Bigger Giant",
  66990. height: math.unit(200, "meters")
  66991. },
  66992. {
  66993. name: "Macro",
  66994. height: math.unit(650, "meters")
  66995. },
  66996. {
  66997. name: "Bigger Macro",
  66998. height: math.unit(1300, "meters")
  66999. },
  67000. {
  67001. name: "Titan",
  67002. height: math.unit(5500, "meters")
  67003. },
  67004. {
  67005. name: "Titan 2",
  67006. height: math.unit(17, "km")
  67007. },
  67008. {
  67009. name: "Titan 3",
  67010. height: math.unit(125, "km")
  67011. },
  67012. {
  67013. name: "Titan 4",
  67014. height: math.unit(1500, "km")
  67015. },
  67016. {
  67017. name: "Titan 5",
  67018. height: math.unit(55000, "km")
  67019. },
  67020. ]
  67021. ))
  67022. characterMakers.push(() => makeCharacter(
  67023. { name: "Alexio", species: ["lemur"], tags: ["anthro"] },
  67024. {
  67025. front: {
  67026. height: math.unit(1.91, "meters"),
  67027. weight: math.unit(76, "kg"),
  67028. name: "Front",
  67029. image: {
  67030. source: "./media/characters/alexio/front.svg",
  67031. extra: 1440/1376,
  67032. bottom: 141/1581
  67033. }
  67034. },
  67035. back: {
  67036. height: math.unit(1.91, "meters"),
  67037. weight: math.unit(76, "kg"),
  67038. name: "Back",
  67039. image: {
  67040. source: "./media/characters/alexio/back.svg",
  67041. extra: 1448/1388,
  67042. bottom: 57/1505
  67043. }
  67044. },
  67045. head: {
  67046. height: math.unit(1.17, "feet"),
  67047. name: "Head",
  67048. image: {
  67049. source: "./media/characters/alexio/head.svg"
  67050. }
  67051. },
  67052. maw: {
  67053. height: math.unit(0.6, "feet"),
  67054. name: "Maw",
  67055. image: {
  67056. source: "./media/characters/alexio/maw.svg"
  67057. }
  67058. },
  67059. feet: {
  67060. height: math.unit(1.34, "feet"),
  67061. name: "Feet",
  67062. image: {
  67063. source: "./media/characters/alexio/feet.svg"
  67064. }
  67065. },
  67066. genitals: {
  67067. height: math.unit(1.03, "feet"),
  67068. name: "Genitals",
  67069. image: {
  67070. source: "./media/characters/alexio/genitals.svg"
  67071. }
  67072. },
  67073. },
  67074. [
  67075. {
  67076. name: "Normal",
  67077. height: math.unit(1.91, "meters"),
  67078. default: true
  67079. },
  67080. {
  67081. name: "Minimacro",
  67082. height: math.unit(191, "meters")
  67083. },
  67084. {
  67085. name: "Macro",
  67086. height: math.unit(477.5, "meters")
  67087. },
  67088. {
  67089. name: "Mega Macro",
  67090. height: math.unit(1432.5, "meters")
  67091. },
  67092. ]
  67093. ))
  67094. //characters
  67095. function makeCharacters() {
  67096. const results = [];
  67097. characterMakers.forEach(character => {
  67098. results.push(character());
  67099. });
  67100. return results;
  67101. }