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

65437 строки
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "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. }
  2407. //species
  2408. function getSpeciesInfo(speciesList) {
  2409. let result = new Set();
  2410. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2411. result.add(entry)
  2412. });
  2413. return Array.from(result);
  2414. };
  2415. function getSpeciesInfoHelper(species) {
  2416. if (!speciesData[species]) {
  2417. console.warn(species + " doesn't exist");
  2418. return [];
  2419. }
  2420. if (speciesData[species].parents) {
  2421. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2422. } else {
  2423. return [species];
  2424. }
  2425. }
  2426. characterMakers.push(() => makeCharacter(
  2427. {
  2428. name: "Fen",
  2429. species: ["crux"],
  2430. description: {
  2431. title: "Bio",
  2432. text: "Very furry. Sheds on everything."
  2433. },
  2434. tags: [
  2435. "anthro",
  2436. "goo"
  2437. ]
  2438. },
  2439. {
  2440. front: {
  2441. height: math.unit(12, "feet"),
  2442. weight: math.unit(2400, "lb"),
  2443. preyCapacity: math.unit(1, "people"),
  2444. name: "Front",
  2445. image: {
  2446. source: "./media/characters/fen/front.svg",
  2447. extra: 1804/1562,
  2448. bottom: 205/2009
  2449. },
  2450. extraAttributes: {
  2451. pawSize: {
  2452. name: "Paw Size",
  2453. power: 2,
  2454. type: "area",
  2455. base: math.unit(0.35, "m^2")
  2456. }
  2457. }
  2458. },
  2459. diving: {
  2460. height: math.unit(4.9, "meters"),
  2461. weight: math.unit(2400, "lb"),
  2462. name: "Diving",
  2463. image: {
  2464. source: "./media/characters/fen/diving.svg"
  2465. }
  2466. },
  2467. sleeby: {
  2468. height: math.unit(3.45, "meters"),
  2469. weight: math.unit(2400, "lb"),
  2470. name: "Sleeby",
  2471. image: {
  2472. source: "./media/characters/fen/sleeby.svg"
  2473. }
  2474. },
  2475. goo: {
  2476. height: math.unit(12, "feet"),
  2477. weight: math.unit(3600, "lb"),
  2478. volume: math.unit(1000, "liters"),
  2479. preyCapacity: math.unit(6, "people"),
  2480. name: "Goo",
  2481. image: {
  2482. source: "./media/characters/fen/goo.svg",
  2483. extra: 1307/1071,
  2484. bottom: 134/1441
  2485. }
  2486. },
  2487. horror: {
  2488. height: math.unit(13.6, "feet"),
  2489. weight: math.unit(2400, "lb"),
  2490. preyCapacity: math.unit(1, "people"),
  2491. name: "Horror",
  2492. image: {
  2493. source: "./media/characters/fen/horror.svg",
  2494. extra: 893/797,
  2495. bottom: 0/893
  2496. }
  2497. },
  2498. gooNsfw: {
  2499. height: math.unit(12, "feet"),
  2500. weight: math.unit(3750, "lb"),
  2501. volume: math.unit(1000, "liters"),
  2502. preyCapacity: math.unit(6, "people"),
  2503. name: "Goo (NSFW)",
  2504. image: {
  2505. source: "./media/characters/fen/goo-nsfw.svg",
  2506. extra: 1875/1734,
  2507. bottom: 122/1997
  2508. }
  2509. },
  2510. maw: {
  2511. height: math.unit(5.03, "feet"),
  2512. name: "Maw",
  2513. image: {
  2514. source: "./media/characters/fen/maw.svg"
  2515. }
  2516. },
  2517. gooCeiling: {
  2518. height: math.unit(6.6, "feet"),
  2519. weight: math.unit(3000, "lb"),
  2520. volume: math.unit(1000, "liters"),
  2521. preyCapacity: math.unit(6, "people"),
  2522. name: "Maw (Goo)",
  2523. image: {
  2524. source: "./media/characters/fen/goo-maw.svg"
  2525. }
  2526. },
  2527. paw: {
  2528. height: math.unit(3.77, "feet"),
  2529. name: "Paw",
  2530. image: {
  2531. source: "./media/characters/fen/paw.svg"
  2532. },
  2533. extraAttributes: {
  2534. "toeSize": {
  2535. name: "Toe Size",
  2536. power: 2,
  2537. type: "area",
  2538. base: math.unit(0.02875, "m^2")
  2539. },
  2540. "pawSize": {
  2541. name: "Paw Size",
  2542. power: 2,
  2543. type: "area",
  2544. base: math.unit(0.378, "m^2")
  2545. },
  2546. }
  2547. },
  2548. tail: {
  2549. height: math.unit(12.1, "feet"),
  2550. name: "Tail",
  2551. image: {
  2552. source: "./media/characters/fen/tail.svg"
  2553. }
  2554. },
  2555. tailFull: {
  2556. height: math.unit(12.1, "feet"),
  2557. name: "Full Tail",
  2558. image: {
  2559. source: "./media/characters/fen/tail-full.svg"
  2560. }
  2561. },
  2562. back: {
  2563. height: math.unit(12, "feet"),
  2564. weight: math.unit(2400, "lb"),
  2565. name: "Back",
  2566. image: {
  2567. source: "./media/characters/fen/back.svg",
  2568. },
  2569. info: {
  2570. description: {
  2571. mode: "append",
  2572. text: "\n\nHe is not currently looking at you."
  2573. }
  2574. }
  2575. },
  2576. full: {
  2577. height: math.unit(1.85, "meter"),
  2578. weight: math.unit(3200, "lb"),
  2579. preyCapacity: math.unit(3, "people"),
  2580. name: "Full",
  2581. image: {
  2582. source: "./media/characters/fen/full.svg",
  2583. extra: 1133/859,
  2584. bottom: 145/1278
  2585. },
  2586. info: {
  2587. description: {
  2588. mode: "append",
  2589. text: "\n\nMunch."
  2590. }
  2591. }
  2592. },
  2593. gooLounging: {
  2594. height: math.unit(4.53, "feet"),
  2595. weight: math.unit(3000, "lb"),
  2596. preyCapacity: math.unit(6, "people"),
  2597. name: "Goo (Lounging)",
  2598. image: {
  2599. source: "./media/characters/fen/goo-lounging.svg",
  2600. bottom: 116 / 613
  2601. }
  2602. },
  2603. lounging: {
  2604. height: math.unit(10.52, "feet"),
  2605. weight: math.unit(2400, "lb"),
  2606. name: "Lounging",
  2607. image: {
  2608. source: "./media/characters/fen/lounging.svg"
  2609. }
  2610. },
  2611. },
  2612. [
  2613. {
  2614. name: "Small",
  2615. height: math.unit(2.2428, "meter")
  2616. },
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true,
  2621. },
  2622. {
  2623. name: "Big",
  2624. height: math.unit(20, "feet")
  2625. },
  2626. {
  2627. name: "Minimacro",
  2628. height: math.unit(40, "feet"),
  2629. info: {
  2630. description: {
  2631. mode: "append",
  2632. text: "\n\nTOO DAMN BIG"
  2633. }
  2634. }
  2635. },
  2636. {
  2637. name: "Macro",
  2638. height: math.unit(100, "feet"),
  2639. info: {
  2640. description: {
  2641. mode: "append",
  2642. text: "\n\nTOO DAMN BIG"
  2643. }
  2644. }
  2645. },
  2646. {
  2647. name: "Megamacro",
  2648. height: math.unit(2, "miles")
  2649. },
  2650. {
  2651. name: "Gigamacro",
  2652. height: math.unit(10, "earths")
  2653. },
  2654. ]
  2655. ))
  2656. characterMakers.push(() => makeCharacter(
  2657. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2658. {
  2659. front: {
  2660. height: math.unit(183, "cm"),
  2661. weight: math.unit(80, "kg"),
  2662. name: "Front",
  2663. image: {
  2664. source: "./media/characters/sofia-fluttertail/front.svg",
  2665. bottom: 0.01,
  2666. extra: 2154 / 2081
  2667. }
  2668. },
  2669. frontAlt: {
  2670. height: math.unit(183, "cm"),
  2671. weight: math.unit(80, "kg"),
  2672. name: "Front (alt)",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(183, "cm"),
  2679. weight: math.unit(80, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/sofia-fluttertail/back.svg"
  2683. }
  2684. },
  2685. kneeling: {
  2686. height: math.unit(125, "cm"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Kneeling",
  2689. image: {
  2690. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2691. extra: 1033 / 977,
  2692. bottom: 23.7 / 1057
  2693. }
  2694. },
  2695. maw: {
  2696. height: math.unit(183 / 5, "cm"),
  2697. name: "Maw",
  2698. image: {
  2699. source: "./media/characters/sofia-fluttertail/maw.svg"
  2700. }
  2701. },
  2702. mawcloseup: {
  2703. height: math.unit(183 / 5 * 0.41, "cm"),
  2704. name: "Maw (Closeup)",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(1.17, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/sofia-fluttertail/paws.svg",
  2714. extra: 851 / 851,
  2715. bottom: 17 / 868
  2716. }
  2717. },
  2718. },
  2719. [
  2720. {
  2721. name: "Normal",
  2722. height: math.unit(1.83, "meter")
  2723. },
  2724. {
  2725. name: "Size Thief",
  2726. height: math.unit(18, "feet")
  2727. },
  2728. {
  2729. name: "50 Foot Collie",
  2730. height: math.unit(50, "feet")
  2731. },
  2732. {
  2733. name: "Macro",
  2734. height: math.unit(96, "feet"),
  2735. default: true
  2736. },
  2737. {
  2738. name: "Megamerger",
  2739. height: math.unit(650, "feet")
  2740. },
  2741. ]
  2742. ))
  2743. characterMakers.push(() => makeCharacter(
  2744. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2745. {
  2746. front: {
  2747. height: math.unit(7, "feet"),
  2748. weight: math.unit(100, "kg"),
  2749. name: "Front",
  2750. image: {
  2751. source: "./media/characters/march/front.svg",
  2752. extra: 1992/1851,
  2753. bottom: 39/2031
  2754. }
  2755. },
  2756. foot: {
  2757. height: math.unit(0.9, "feet"),
  2758. name: "Foot",
  2759. image: {
  2760. source: "./media/characters/march/foot.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(7.9, "feet")
  2768. },
  2769. {
  2770. name: "Macro",
  2771. height: math.unit(220, "meters")
  2772. },
  2773. {
  2774. name: "Megamacro",
  2775. height: math.unit(2.98, "km"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Gigamacro",
  2780. height: math.unit(15963, "km")
  2781. },
  2782. {
  2783. name: "Teramacro",
  2784. height: math.unit(2980000000, "km")
  2785. },
  2786. {
  2787. name: "Examacro",
  2788. height: math.unit(250, "parsecs")
  2789. },
  2790. ]
  2791. ))
  2792. characterMakers.push(() => makeCharacter(
  2793. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2794. {
  2795. front: {
  2796. height: math.unit(6, "feet"),
  2797. weight: math.unit(60, "kg"),
  2798. name: "Front",
  2799. image: {
  2800. source: "./media/characters/noir/front.svg",
  2801. extra: 1,
  2802. bottom: 0.032
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(6.6, "feet")
  2810. },
  2811. {
  2812. name: "Macro",
  2813. height: math.unit(500, "feet")
  2814. },
  2815. {
  2816. name: "Megamacro",
  2817. height: math.unit(2.5, "km"),
  2818. default: true
  2819. },
  2820. {
  2821. name: "Gigamacro",
  2822. height: math.unit(22500, "km")
  2823. },
  2824. {
  2825. name: "Teramacro",
  2826. height: math.unit(2500000000, "km")
  2827. },
  2828. {
  2829. name: "Examacro",
  2830. height: math.unit(200, "parsecs")
  2831. },
  2832. ]
  2833. ))
  2834. characterMakers.push(() => makeCharacter(
  2835. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2836. {
  2837. front: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Front",
  2841. image: {
  2842. source: "./media/characters/okuri/front.svg",
  2843. extra: 739/665,
  2844. bottom: 39/778
  2845. }
  2846. },
  2847. back: {
  2848. height: math.unit(7, "feet"),
  2849. weight: math.unit(100, "kg"),
  2850. name: "Back",
  2851. image: {
  2852. source: "./media/characters/okuri/back.svg",
  2853. extra: 734/653,
  2854. bottom: 13/747
  2855. }
  2856. },
  2857. sitting: {
  2858. height: math.unit(2.95, "feet"),
  2859. weight: math.unit(100, "kg"),
  2860. name: "Sitting",
  2861. image: {
  2862. source: "./media/characters/okuri/sitting.svg",
  2863. extra: 370/318,
  2864. bottom: 99/469
  2865. }
  2866. },
  2867. },
  2868. [
  2869. {
  2870. name: "Smallest",
  2871. height: math.unit(5 + 2/12, "feet")
  2872. },
  2873. {
  2874. name: "Smaller",
  2875. height: math.unit(300, "feet")
  2876. },
  2877. {
  2878. name: "Small",
  2879. height: math.unit(1000, "feet")
  2880. },
  2881. {
  2882. name: "Macro",
  2883. height: math.unit(1, "mile")
  2884. },
  2885. {
  2886. name: "Mega Macro (Small)",
  2887. height: math.unit(20, "km")
  2888. },
  2889. {
  2890. name: "Mega Macro (Large)",
  2891. height: math.unit(600, "km")
  2892. },
  2893. {
  2894. name: "Giga Macro",
  2895. height: math.unit(10000, "km")
  2896. },
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(577560, "km"),
  2900. default: true
  2901. },
  2902. {
  2903. name: "Large",
  2904. height: math.unit(4, "galaxies")
  2905. },
  2906. {
  2907. name: "Largest",
  2908. height: math.unit(15, "multiverses")
  2909. },
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2914. {
  2915. front: {
  2916. height: math.unit(7, "feet"),
  2917. weight: math.unit(100, "kg"),
  2918. name: "Front",
  2919. image: {
  2920. source: "./media/characters/manny/front.svg",
  2921. extra: 1,
  2922. bottom: 0.06
  2923. }
  2924. },
  2925. back: {
  2926. height: math.unit(7, "feet"),
  2927. weight: math.unit(100, "kg"),
  2928. name: "Back",
  2929. image: {
  2930. source: "./media/characters/manny/back.svg",
  2931. extra: 1,
  2932. bottom: 0.014
  2933. }
  2934. },
  2935. },
  2936. [
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(7, "feet"),
  2940. },
  2941. {
  2942. name: "Macro",
  2943. height: math.unit(78, "feet"),
  2944. default: true
  2945. },
  2946. {
  2947. name: "Macro+",
  2948. height: math.unit(300, "meters")
  2949. },
  2950. {
  2951. name: "Macro++",
  2952. height: math.unit(2400, "meters")
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(5167, "meters")
  2957. },
  2958. {
  2959. name: "Gigamacro",
  2960. height: math.unit(41769, "miles")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(7, "feet"),
  2969. weight: math.unit(100, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/adake/front-1.svg"
  2973. }
  2974. },
  2975. frontAlt: {
  2976. height: math.unit(7, "feet"),
  2977. weight: math.unit(100, "kg"),
  2978. name: "Front (Alt)",
  2979. image: {
  2980. source: "./media/characters/adake/front-2.svg",
  2981. extra: 1,
  2982. bottom: 0.01
  2983. }
  2984. },
  2985. back: {
  2986. height: math.unit(7, "feet"),
  2987. weight: math.unit(100, "kg"),
  2988. name: "Back",
  2989. image: {
  2990. source: "./media/characters/adake/back.svg",
  2991. }
  2992. },
  2993. kneel: {
  2994. height: math.unit(5.385, "feet"),
  2995. weight: math.unit(100, "kg"),
  2996. name: "Kneeling",
  2997. image: {
  2998. source: "./media/characters/adake/kneel.svg",
  2999. bottom: 0.052
  3000. }
  3001. },
  3002. },
  3003. [
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(7, "feet"),
  3007. },
  3008. {
  3009. name: "Macro",
  3010. height: math.unit(78, "feet"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro+",
  3015. height: math.unit(300, "meters")
  3016. },
  3017. {
  3018. name: "Macro++",
  3019. height: math.unit(2400, "meters")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(5167, "meters")
  3024. },
  3025. {
  3026. name: "Gigamacro",
  3027. height: math.unit(41769, "miles")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(1.65, "meters"),
  3036. weight: math.unit(50, "kg"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/elijah/front.svg",
  3040. extra: 858 / 830,
  3041. bottom: 95.5 / 953.8559
  3042. }
  3043. },
  3044. back: {
  3045. height: math.unit(1.65, "meters"),
  3046. weight: math.unit(50, "kg"),
  3047. name: "Back",
  3048. image: {
  3049. source: "./media/characters/elijah/back.svg",
  3050. extra: 895 / 850,
  3051. bottom: 5.3 / 897.956
  3052. }
  3053. },
  3054. frontNsfw: {
  3055. height: math.unit(1.65, "meters"),
  3056. weight: math.unit(50, "kg"),
  3057. name: "Front (NSFW)",
  3058. image: {
  3059. source: "./media/characters/elijah/front-nsfw.svg",
  3060. extra: 858 / 830,
  3061. bottom: 95.5 / 953.8559
  3062. }
  3063. },
  3064. backNsfw: {
  3065. height: math.unit(1.65, "meters"),
  3066. weight: math.unit(50, "kg"),
  3067. name: "Back (NSFW)",
  3068. image: {
  3069. source: "./media/characters/elijah/back-nsfw.svg",
  3070. extra: 895 / 850,
  3071. bottom: 5.3 / 897.956
  3072. }
  3073. },
  3074. dick: {
  3075. height: math.unit(1, "feet"),
  3076. name: "Dick",
  3077. image: {
  3078. source: "./media/characters/elijah/dick.svg"
  3079. }
  3080. },
  3081. beakOpen: {
  3082. height: math.unit(1.25, "feet"),
  3083. name: "Beak (Open)",
  3084. image: {
  3085. source: "./media/characters/elijah/beak-open.svg"
  3086. }
  3087. },
  3088. beakShut: {
  3089. height: math.unit(1.25, "feet"),
  3090. name: "Beak (Shut)",
  3091. image: {
  3092. source: "./media/characters/elijah/beak-shut.svg"
  3093. }
  3094. },
  3095. footFlexing: {
  3096. height: math.unit(1.61, "feet"),
  3097. name: "Foot (Flexing)",
  3098. image: {
  3099. source: "./media/characters/elijah/foot-flexing.svg"
  3100. }
  3101. },
  3102. footStepping: {
  3103. height: math.unit(1.44, "feet"),
  3104. name: "Foot (Stepping)",
  3105. image: {
  3106. source: "./media/characters/elijah/foot-stepping.svg"
  3107. }
  3108. },
  3109. plantigradeLeg: {
  3110. height: math.unit(2.34, "feet"),
  3111. name: "Plantigrade Leg",
  3112. image: {
  3113. source: "./media/characters/elijah/plantigrade-leg.svg"
  3114. }
  3115. },
  3116. plantigradeFootLeft: {
  3117. height: math.unit(0.9, "feet"),
  3118. name: "Plantigrade Foot (Left)",
  3119. image: {
  3120. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3121. }
  3122. },
  3123. plantigradeFootRight: {
  3124. height: math.unit(0.9, "feet"),
  3125. name: "Plantigrade Foot (Right)",
  3126. image: {
  3127. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3128. }
  3129. },
  3130. },
  3131. [
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(1.65, "meters")
  3135. },
  3136. {
  3137. name: "Macro",
  3138. height: math.unit(55, "meters"),
  3139. default: true
  3140. },
  3141. {
  3142. name: "Macro+",
  3143. height: math.unit(105, "meters")
  3144. },
  3145. ]
  3146. ))
  3147. characterMakers.push(() => makeCharacter(
  3148. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3149. {
  3150. front: {
  3151. height: math.unit(7 + 2/12, "feet"),
  3152. weight: math.unit(320, "kg"),
  3153. preyCapacity: math.unit(0.276549935, "people"),
  3154. name: "Front",
  3155. image: {
  3156. source: "./media/characters/rai/front.svg",
  3157. extra: 1802/1696,
  3158. bottom: 68/1870
  3159. },
  3160. form: "anthro",
  3161. default: true
  3162. },
  3163. frontDressed: {
  3164. height: math.unit(7 + 2/12, "feet"),
  3165. weight: math.unit(320, "kg"),
  3166. preyCapacity: math.unit(0.276549935, "people"),
  3167. name: "Front (Dressed)",
  3168. image: {
  3169. source: "./media/characters/rai/front-dressed.svg",
  3170. extra: 1802/1696,
  3171. bottom: 68/1870
  3172. },
  3173. form: "anthro"
  3174. },
  3175. side: {
  3176. height: math.unit(7 + 2/12, "feet"),
  3177. weight: math.unit(320, "kg"),
  3178. preyCapacity: math.unit(0.276549935, "people"),
  3179. name: "Side",
  3180. image: {
  3181. source: "./media/characters/rai/side.svg",
  3182. extra: 1789/1710,
  3183. bottom: 115/1904
  3184. },
  3185. form: "anthro"
  3186. },
  3187. back: {
  3188. height: math.unit(7 + 2/12, "feet"),
  3189. weight: math.unit(320, "kg"),
  3190. preyCapacity: math.unit(0.276549935, "people"),
  3191. name: "Back",
  3192. image: {
  3193. source: "./media/characters/rai/back.svg",
  3194. extra: 1770/1707,
  3195. bottom: 28/1798
  3196. },
  3197. form: "anthro"
  3198. },
  3199. feral: {
  3200. height: math.unit(9.5, "feet"),
  3201. weight: math.unit(640, "kg"),
  3202. preyCapacity: math.unit(4, "people"),
  3203. name: "Feral",
  3204. image: {
  3205. source: "./media/characters/rai/feral.svg",
  3206. extra: 945/553,
  3207. bottom: 176/1121
  3208. },
  3209. form: "feral",
  3210. default: true
  3211. },
  3212. dragon: {
  3213. height: math.unit(23, "feet"),
  3214. weight: math.unit(50000, "lb"),
  3215. name: "Dragon",
  3216. image: {
  3217. source: "./media/characters/rai/dragon.svg",
  3218. extra: 2498 / 2030,
  3219. bottom: 85.2 / 2584
  3220. },
  3221. form: "dragon",
  3222. default: true
  3223. },
  3224. maw: {
  3225. height: math.unit(1.69, "feet"),
  3226. name: "Maw",
  3227. image: {
  3228. source: "./media/characters/rai/maw.svg"
  3229. },
  3230. form: "anthro"
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Normal",
  3236. height: math.unit(7 + 2/12, "feet"),
  3237. form: "anthro"
  3238. },
  3239. {
  3240. name: "Big",
  3241. height: math.unit(11, "feet"),
  3242. form: "anthro"
  3243. },
  3244. {
  3245. name: "Minimacro",
  3246. height: math.unit(77, "feet"),
  3247. form: "anthro"
  3248. },
  3249. {
  3250. name: "Macro",
  3251. height: math.unit(302, "feet"),
  3252. default: true,
  3253. form: "anthro"
  3254. },
  3255. {
  3256. name: "Normal",
  3257. height: math.unit(9.5, "feet"),
  3258. form: "feral",
  3259. default: true
  3260. },
  3261. {
  3262. name: "Normal",
  3263. height: math.unit(23, "feet"),
  3264. form: "dragon",
  3265. default: true
  3266. }
  3267. ],
  3268. {
  3269. "anthro": {
  3270. name: "Anthro",
  3271. default: true
  3272. },
  3273. "feral": {
  3274. name: "Feral",
  3275. },
  3276. "dragon": {
  3277. name: "Dragon",
  3278. },
  3279. }
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3283. {
  3284. frontDressed: {
  3285. height: math.unit(216, "feet"),
  3286. weight: math.unit(7000000, "lb"),
  3287. preyCapacity: math.unit(1321, "people"),
  3288. name: "Front (Dressed)",
  3289. image: {
  3290. source: "./media/characters/jazzy/front-dressed.svg",
  3291. extra: 2738 / 2651,
  3292. bottom: 41.8 / 2786
  3293. }
  3294. },
  3295. backDressed: {
  3296. height: math.unit(216, "feet"),
  3297. weight: math.unit(7000000, "lb"),
  3298. preyCapacity: math.unit(1321, "people"),
  3299. name: "Back (Dressed)",
  3300. image: {
  3301. source: "./media/characters/jazzy/back-dressed.svg",
  3302. extra: 2775 / 2673,
  3303. bottom: 36.8 / 2817
  3304. }
  3305. },
  3306. front: {
  3307. height: math.unit(216, "feet"),
  3308. weight: math.unit(7000000, "lb"),
  3309. preyCapacity: math.unit(1321, "people"),
  3310. name: "Front",
  3311. image: {
  3312. source: "./media/characters/jazzy/front.svg",
  3313. extra: 2738 / 2651,
  3314. bottom: 41.8 / 2786
  3315. }
  3316. },
  3317. back: {
  3318. height: math.unit(216, "feet"),
  3319. weight: math.unit(7000000, "lb"),
  3320. preyCapacity: math.unit(1321, "people"),
  3321. name: "Back",
  3322. image: {
  3323. source: "./media/characters/jazzy/back.svg",
  3324. extra: 2775 / 2673,
  3325. bottom: 36.8 / 2817
  3326. }
  3327. },
  3328. maw: {
  3329. height: math.unit(20, "feet"),
  3330. name: "Maw",
  3331. image: {
  3332. source: "./media/characters/jazzy/maw.svg"
  3333. }
  3334. },
  3335. paws: {
  3336. height: math.unit(27.5, "feet"),
  3337. name: "Paws",
  3338. image: {
  3339. source: "./media/characters/jazzy/paws.svg"
  3340. }
  3341. },
  3342. eye: {
  3343. height: math.unit(4.4, "feet"),
  3344. name: "Eye",
  3345. image: {
  3346. source: "./media/characters/jazzy/eye.svg"
  3347. }
  3348. },
  3349. droneOffense: {
  3350. height: math.unit(9.5, "inches"),
  3351. name: "Drone (Offense)",
  3352. image: {
  3353. source: "./media/characters/jazzy/drone-offense.svg"
  3354. }
  3355. },
  3356. droneRecon: {
  3357. height: math.unit(9.5, "inches"),
  3358. name: "Drone (Recon)",
  3359. image: {
  3360. source: "./media/characters/jazzy/drone-recon.svg"
  3361. }
  3362. },
  3363. droneDefense: {
  3364. height: math.unit(9.5, "inches"),
  3365. name: "Drone (Defense)",
  3366. image: {
  3367. source: "./media/characters/jazzy/drone-defense.svg"
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Macro",
  3374. height: math.unit(216, "feet"),
  3375. default: true
  3376. },
  3377. ]
  3378. ))
  3379. characterMakers.push(() => makeCharacter(
  3380. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3381. {
  3382. front: {
  3383. height: math.unit(9 + 6/12, "feet"),
  3384. weight: math.unit(700, "lb"),
  3385. name: "Front",
  3386. image: {
  3387. source: "./media/characters/flamm/front.svg",
  3388. extra: 1736/1596,
  3389. bottom: 93/1829
  3390. }
  3391. },
  3392. buff: {
  3393. height: math.unit(9 + 6/12, "feet"),
  3394. weight: math.unit(950, "lb"),
  3395. name: "Buff",
  3396. image: {
  3397. source: "./media/characters/flamm/buff.svg",
  3398. extra: 3018/2874,
  3399. bottom: 221/3239
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Normal",
  3406. height: math.unit(9.5, "feet")
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(200, "feet"),
  3411. default: true
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(5 + 3/12, "feet"),
  3420. weight: math.unit(60, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/zephiro/front.svg",
  3424. extra: 1873/1761,
  3425. bottom: 147/2020
  3426. }
  3427. },
  3428. side: {
  3429. height: math.unit(5 + 3/12, "feet"),
  3430. weight: math.unit(60, "kg"),
  3431. name: "Side",
  3432. image: {
  3433. source: "./media/characters/zephiro/side.svg",
  3434. extra: 1929/1827,
  3435. bottom: 65/1994
  3436. }
  3437. },
  3438. back: {
  3439. height: math.unit(5 + 3/12, "feet"),
  3440. weight: math.unit(60, "kg"),
  3441. name: "Back",
  3442. image: {
  3443. source: "./media/characters/zephiro/back.svg",
  3444. extra: 1926/1816,
  3445. bottom: 41/1967
  3446. }
  3447. },
  3448. hand: {
  3449. height: math.unit(0.68, "feet"),
  3450. name: "Hand",
  3451. image: {
  3452. source: "./media/characters/zephiro/hand.svg"
  3453. }
  3454. },
  3455. paw: {
  3456. height: math.unit(1, "feet"),
  3457. name: "Paw",
  3458. image: {
  3459. source: "./media/characters/zephiro/paw.svg"
  3460. }
  3461. },
  3462. beans: {
  3463. height: math.unit(0.93, "feet"),
  3464. name: "Beans",
  3465. image: {
  3466. source: "./media/characters/zephiro/beans.svg"
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Micro",
  3473. height: math.unit(3, "inches")
  3474. },
  3475. {
  3476. name: "Normal",
  3477. height: math.unit(5 + 3 / 12, "feet"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro",
  3482. height: math.unit(118, "feet")
  3483. },
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(5, "feet"),
  3491. weight: math.unit(90, "kg"),
  3492. preyCapacity: math.unit(14, "people"),
  3493. name: "Front",
  3494. image: {
  3495. source: "./media/characters/fory/front.svg",
  3496. extra: 2862 / 2674,
  3497. bottom: 180 / 3043.8
  3498. },
  3499. form: "weaselbun",
  3500. default: true,
  3501. extraAttributes: {
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.1596, "m^2")
  3507. },
  3508. "pawLength": {
  3509. name: "Paw Length",
  3510. power: 1,
  3511. type: "length",
  3512. base: math.unit(0.7, "m")
  3513. }
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(5, "feet"),
  3518. weight: math.unit(90, "kg"),
  3519. preyCapacity: math.unit(14, "people"),
  3520. name: "Back",
  3521. image: {
  3522. source: "./media/characters/fory/back.svg",
  3523. extra: 1790/1672,
  3524. bottom: 84/1874
  3525. },
  3526. form: "weaselbun",
  3527. extraAttributes: {
  3528. "pawSize": {
  3529. name: "Paw Size",
  3530. power: 2,
  3531. type: "area",
  3532. base: math.unit(0.1596, "m^2")
  3533. },
  3534. "pawLength": {
  3535. name: "Paw Length",
  3536. power: 1,
  3537. type: "length",
  3538. base: math.unit(0.7, "m")
  3539. }
  3540. }
  3541. },
  3542. paw: {
  3543. height: math.unit(2.14, "feet"),
  3544. name: "Paw",
  3545. image: {
  3546. source: "./media/characters/fory/paw.svg"
  3547. },
  3548. form: "weaselbun",
  3549. extraAttributes: {
  3550. "pawSize": {
  3551. name: "Paw Size",
  3552. power: 2,
  3553. type: "area",
  3554. base: math.unit(0.1596, "m^2")
  3555. },
  3556. "pawLength": {
  3557. name: "Paw Length",
  3558. power: 1,
  3559. type: "length",
  3560. base: math.unit(0.48, "m")
  3561. }
  3562. }
  3563. },
  3564. bunBack: {
  3565. height: math.unit(3, "feet"),
  3566. weight: math.unit(20, "kg"),
  3567. preyCapacity: math.unit(3, "people"),
  3568. name: "Back",
  3569. image: {
  3570. source: "./media/characters/fory/bun-back.svg",
  3571. extra: 1749/1564,
  3572. bottom: 246/1995
  3573. },
  3574. form: "bun",
  3575. default: true,
  3576. extraAttributes: {
  3577. "pawSize": {
  3578. name: "Paw Size",
  3579. power: 2,
  3580. type: "area",
  3581. base: math.unit(0.072, "m^2")
  3582. },
  3583. "pawLength": {
  3584. name: "Paw Length",
  3585. power: 1,
  3586. type: "length",
  3587. base: math.unit(0.45, "m")
  3588. }
  3589. }
  3590. },
  3591. },
  3592. [
  3593. {
  3594. name: "Normal",
  3595. height: math.unit(5, "feet"),
  3596. form: "weaselbun"
  3597. },
  3598. {
  3599. name: "Macro",
  3600. height: math.unit(50, "feet"),
  3601. default: true,
  3602. form: "weaselbun"
  3603. },
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(10, "miles"),
  3607. form: "weaselbun"
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(5, "earths"),
  3612. form: "weaselbun"
  3613. },
  3614. {
  3615. name: "Normal",
  3616. height: math.unit(3, "feet"),
  3617. default: true,
  3618. form: "bun"
  3619. },
  3620. {
  3621. name: "Fun-Size",
  3622. height: math.unit(12, "feet"),
  3623. form: "bun"
  3624. },
  3625. {
  3626. name: "Macro",
  3627. height: math.unit(100, "feet"),
  3628. form: "bun"
  3629. },
  3630. {
  3631. name: "Planetary",
  3632. height: math.unit(3, "earths"),
  3633. form: "bun"
  3634. },
  3635. ],
  3636. {
  3637. "weaselbun": {
  3638. name: "Weaselbun",
  3639. default: true
  3640. },
  3641. "bun": {
  3642. name: "Bun",
  3643. },
  3644. }
  3645. ))
  3646. characterMakers.push(() => makeCharacter(
  3647. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3648. {
  3649. front: {
  3650. height: math.unit(7, "feet"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front",
  3653. image: {
  3654. source: "./media/characters/kurrikage/front.svg",
  3655. extra: 1845/1733,
  3656. bottom: 119/1964
  3657. }
  3658. },
  3659. back: {
  3660. height: math.unit(7, "feet"),
  3661. weight: math.unit(90, "kg"),
  3662. name: "Back",
  3663. image: {
  3664. source: "./media/characters/kurrikage/back.svg",
  3665. extra: 1790/1677,
  3666. bottom: 61/1851
  3667. }
  3668. },
  3669. dressed: {
  3670. height: math.unit(7, "feet"),
  3671. weight: math.unit(90, "kg"),
  3672. name: "Dressed",
  3673. image: {
  3674. source: "./media/characters/kurrikage/dressed.svg",
  3675. extra: 1845/1733,
  3676. bottom: 119/1964
  3677. }
  3678. },
  3679. foot: {
  3680. height: math.unit(1.5, "feet"),
  3681. name: "Foot",
  3682. image: {
  3683. source: "./media/characters/kurrikage/foot.svg"
  3684. }
  3685. },
  3686. staff: {
  3687. height: math.unit(6.7, "feet"),
  3688. name: "Staff",
  3689. image: {
  3690. source: "./media/characters/kurrikage/staff.svg"
  3691. }
  3692. },
  3693. peek: {
  3694. height: math.unit(1.05, "feet"),
  3695. name: "Peeking",
  3696. image: {
  3697. source: "./media/characters/kurrikage/peek.svg",
  3698. bottom: 0.08
  3699. }
  3700. },
  3701. },
  3702. [
  3703. {
  3704. name: "Normal",
  3705. height: math.unit(12, "feet"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Big",
  3710. height: math.unit(20, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(500, "feet")
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(20, "miles")
  3719. },
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(75, "kg"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/shingo/front.svg",
  3731. extra: 1900/1825,
  3732. bottom: 82/1982
  3733. }
  3734. },
  3735. side: {
  3736. height: math.unit(6, "feet"),
  3737. weight: math.unit(75, "kg"),
  3738. name: "Side",
  3739. image: {
  3740. source: "./media/characters/shingo/side.svg",
  3741. extra: 1930/1865,
  3742. bottom: 16/1946
  3743. }
  3744. },
  3745. back: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Back",
  3749. image: {
  3750. source: "./media/characters/shingo/back.svg",
  3751. extra: 1922/1852,
  3752. bottom: 16/1938
  3753. }
  3754. },
  3755. frontDressed: {
  3756. height: math.unit(6, "feet"),
  3757. weight: math.unit(150, "lb"),
  3758. name: "Front-dressed",
  3759. image: {
  3760. source: "./media/characters/shingo/front-dressed.svg",
  3761. extra: 1900/1825,
  3762. bottom: 82/1982
  3763. }
  3764. },
  3765. paw: {
  3766. height: math.unit(1.29, "feet"),
  3767. name: "Paw",
  3768. image: {
  3769. source: "./media/characters/shingo/paw.svg"
  3770. }
  3771. },
  3772. hand: {
  3773. height: math.unit(1.07, "feet"),
  3774. name: "Hand",
  3775. image: {
  3776. source: "./media/characters/shingo/hand.svg"
  3777. }
  3778. },
  3779. frontAlt: {
  3780. height: math.unit(6, "feet"),
  3781. weight: math.unit(75, "kg"),
  3782. name: "Front (Alt)",
  3783. image: {
  3784. source: "./media/characters/shingo/front-alt.svg",
  3785. extra: 3511 / 3338,
  3786. bottom: 0.005
  3787. }
  3788. },
  3789. frontAlt2: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Front (Alt 2)",
  3793. image: {
  3794. source: "./media/characters/shingo/front-alt-2.svg",
  3795. extra: 706/681,
  3796. bottom: 11/717
  3797. }
  3798. },
  3799. pawAlt: {
  3800. height: math.unit(1, "feet"),
  3801. name: "Paw (Alt)",
  3802. image: {
  3803. source: "./media/characters/shingo/paw-alt.svg"
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Micro",
  3810. height: math.unit(4, "inches")
  3811. },
  3812. {
  3813. name: "Normal",
  3814. height: math.unit(6, "feet"),
  3815. default: true
  3816. },
  3817. {
  3818. name: "Macro",
  3819. height: math.unit(108, "feet")
  3820. },
  3821. {
  3822. name: "Macro+",
  3823. height: math.unit(1500, "feet")
  3824. },
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3829. {
  3830. side: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(75, "kg"),
  3833. name: "Side",
  3834. image: {
  3835. source: "./media/characters/aigey/side.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(200, "feet"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Megamacro",
  3847. height: math.unit(100, "miles")
  3848. },
  3849. ]
  3850. )
  3851. )
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(13, "feet"),
  3857. weight: math.unit(1036.80, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/natasha/front.svg",
  3861. extra: 1301/1210,
  3862. bottom: 39/1340
  3863. }
  3864. },
  3865. back: {
  3866. height: math.unit(13, "feet"),
  3867. weight: math.unit(1036.80, "kg"),
  3868. name: "Back",
  3869. image: {
  3870. source: "./media/characters/natasha/back.svg",
  3871. extra: 1342/1252,
  3872. bottom: 20/1362
  3873. }
  3874. },
  3875. head: {
  3876. height: math.unit(3.48, "feet"),
  3877. name: "Head",
  3878. image: {
  3879. source: "./media/characters/natasha/head.svg"
  3880. }
  3881. },
  3882. jaws: {
  3883. height: math.unit(3.52, "feet"),
  3884. name: "Jaws",
  3885. image: {
  3886. source: "./media/characters/natasha/jaws.svg"
  3887. }
  3888. },
  3889. paws: {
  3890. height: math.unit(2.7, "feet"),
  3891. name: "Paws",
  3892. image: {
  3893. source: "./media/characters/natasha/paws.svg"
  3894. }
  3895. },
  3896. collar: {
  3897. height: math.unit(0.89, "feet"),
  3898. name: "Collar",
  3899. image: {
  3900. source: "./media/characters/natasha/collar.svg"
  3901. }
  3902. },
  3903. gauge: {
  3904. height: math.unit(0.36, "feet"),
  3905. name: "Gauge",
  3906. image: {
  3907. source: "./media/characters/natasha/gauge.svg"
  3908. }
  3909. },
  3910. },
  3911. [
  3912. {
  3913. name: "Shortstack",
  3914. height: math.unit(3, "feet")
  3915. },
  3916. {
  3917. name: "Normal",
  3918. height: math.unit(13, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Macro",
  3923. height: math.unit(100, "feet")
  3924. },
  3925. {
  3926. name: "Macro+",
  3927. height: math.unit(260, "feet")
  3928. },
  3929. {
  3930. name: "Macro++",
  3931. height: math.unit(1, "mile")
  3932. },
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(6, "feet"),
  3940. weight: math.unit(75, "kg"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/malik/front.svg",
  3944. extra: 1750/1561,
  3945. bottom: 80/1830
  3946. },
  3947. extraAttributes: {
  3948. "toeSize": {
  3949. name: "Toe Size",
  3950. power: 2,
  3951. type: "area",
  3952. base: math.unit(0.0159, "m^2")
  3953. },
  3954. "pawSize": {
  3955. name: "Paw Size",
  3956. power: 2,
  3957. type: "area",
  3958. base: math.unit(0.09834, "m^2")
  3959. },
  3960. }
  3961. },
  3962. side: {
  3963. height: math.unit(6, "feet"),
  3964. weight: math.unit(75, "kg"),
  3965. name: "Side",
  3966. image: {
  3967. source: "./media/characters/malik/side.svg",
  3968. extra: 1802/1685,
  3969. bottom: 42/1844
  3970. },
  3971. extraAttributes: {
  3972. "toeSize": {
  3973. name: "Toe Size",
  3974. power: 2,
  3975. type: "area",
  3976. base: math.unit(0.0159, "m^2")
  3977. },
  3978. "pawSize": {
  3979. name: "Paw Size",
  3980. power: 2,
  3981. type: "area",
  3982. base: math.unit(0.09834, "m^2")
  3983. },
  3984. }
  3985. },
  3986. back: {
  3987. height: math.unit(6, "feet"),
  3988. weight: math.unit(75, "kg"),
  3989. name: "Back",
  3990. image: {
  3991. source: "./media/characters/malik/back.svg",
  3992. extra: 1803/1607,
  3993. bottom: 33/1836
  3994. },
  3995. extraAttributes: {
  3996. "toeSize": {
  3997. name: "Toe Size",
  3998. power: 2,
  3999. type: "area",
  4000. base: math.unit(0.0159, "m^2")
  4001. },
  4002. "pawSize": {
  4003. name: "Paw Size",
  4004. power: 2,
  4005. type: "area",
  4006. base: math.unit(0.09834, "m^2")
  4007. },
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(156, "feet"),
  4015. default: true
  4016. },
  4017. {
  4018. name: "Macro+",
  4019. height: math.unit(1188, "feet")
  4020. },
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(75, "kg"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/sefer/front.svg",
  4032. extra: 848 / 659,
  4033. bottom: 28.3 / 876.442
  4034. }
  4035. },
  4036. back: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(75, "kg"),
  4039. name: "Back",
  4040. image: {
  4041. source: "./media/characters/sefer/back.svg",
  4042. extra: 864 / 695,
  4043. bottom: 10 / 871
  4044. }
  4045. },
  4046. frontDressed: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(75, "kg"),
  4049. name: "Dressed",
  4050. image: {
  4051. source: "./media/characters/sefer/dressed.svg",
  4052. extra: 839 / 653,
  4053. bottom: 37.6 / 878
  4054. }
  4055. },
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(6, "feet"),
  4061. default: true
  4062. },
  4063. {
  4064. name: "Big",
  4065. height: math.unit(8, "meters")
  4066. },
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4071. {
  4072. body: {
  4073. height: math.unit(2.2428, "meter"),
  4074. weight: math.unit(124.738, "kg"),
  4075. name: "Body",
  4076. image: {
  4077. extra: 1225 / 1050,
  4078. source: "./media/characters/north/front.svg"
  4079. }
  4080. }
  4081. },
  4082. [
  4083. {
  4084. name: "Micro",
  4085. height: math.unit(4, "inches")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(63, "meters")
  4090. },
  4091. {
  4092. name: "Megamacro",
  4093. height: math.unit(101, "miles"),
  4094. default: true
  4095. }
  4096. ]
  4097. ))
  4098. characterMakers.push(() => makeCharacter(
  4099. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4100. {
  4101. angled: {
  4102. height: math.unit(4, "meter"),
  4103. weight: math.unit(150, "kg"),
  4104. name: "Angled",
  4105. image: {
  4106. source: "./media/characters/talan/angled-sfw.svg",
  4107. bottom: 29 / 3734
  4108. }
  4109. },
  4110. angledNsfw: {
  4111. height: math.unit(4, "meter"),
  4112. weight: math.unit(150, "kg"),
  4113. name: "Angled (NSFW)",
  4114. image: {
  4115. source: "./media/characters/talan/angled-nsfw.svg",
  4116. bottom: 29 / 3734
  4117. }
  4118. },
  4119. frontNsfw: {
  4120. height: math.unit(4, "meter"),
  4121. weight: math.unit(150, "kg"),
  4122. name: "Front (NSFW)",
  4123. image: {
  4124. source: "./media/characters/talan/front-nsfw.svg",
  4125. bottom: 29 / 3734
  4126. }
  4127. },
  4128. sideNsfw: {
  4129. height: math.unit(4, "meter"),
  4130. weight: math.unit(150, "kg"),
  4131. name: "Side (NSFW)",
  4132. image: {
  4133. source: "./media/characters/talan/side-nsfw.svg",
  4134. bottom: 29 / 3734
  4135. }
  4136. },
  4137. back: {
  4138. height: math.unit(4, "meter"),
  4139. weight: math.unit(150, "kg"),
  4140. name: "Back",
  4141. image: {
  4142. source: "./media/characters/talan/back.svg"
  4143. }
  4144. },
  4145. dickBottom: {
  4146. height: math.unit(0.621, "meter"),
  4147. name: "Dick (Bottom)",
  4148. image: {
  4149. source: "./media/characters/talan/dick-bottom.svg"
  4150. }
  4151. },
  4152. dickTop: {
  4153. height: math.unit(0.621, "meter"),
  4154. name: "Dick (Top)",
  4155. image: {
  4156. source: "./media/characters/talan/dick-top.svg"
  4157. }
  4158. },
  4159. dickSide: {
  4160. height: math.unit(0.305, "meter"),
  4161. name: "Dick (Side)",
  4162. image: {
  4163. source: "./media/characters/talan/dick-side.svg"
  4164. }
  4165. },
  4166. dickFront: {
  4167. height: math.unit(0.305, "meter"),
  4168. name: "Dick (Front)",
  4169. image: {
  4170. source: "./media/characters/talan/dick-front.svg"
  4171. }
  4172. },
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(4, "meters")
  4178. },
  4179. {
  4180. name: "Macro",
  4181. height: math.unit(100, "meters")
  4182. },
  4183. {
  4184. name: "Megamacro",
  4185. height: math.unit(2, "miles"),
  4186. default: true
  4187. },
  4188. {
  4189. name: "Gigamacro",
  4190. height: math.unit(5000, "miles")
  4191. },
  4192. {
  4193. name: "Teramacro",
  4194. height: math.unit(100, "parsecs")
  4195. }
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4200. {
  4201. front: {
  4202. height: math.unit(2, "meter"),
  4203. weight: math.unit(90, "kg"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/gael'rathus/front.svg"
  4207. }
  4208. },
  4209. frontAlt: {
  4210. height: math.unit(2, "meter"),
  4211. weight: math.unit(90, "kg"),
  4212. name: "Front (alt)",
  4213. image: {
  4214. source: "./media/characters/gael'rathus/front-alt.svg"
  4215. }
  4216. },
  4217. frontAlt2: {
  4218. height: math.unit(2, "meter"),
  4219. weight: math.unit(90, "kg"),
  4220. name: "Front (alt 2)",
  4221. image: {
  4222. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4223. }
  4224. }
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(9, "feet"),
  4230. default: true
  4231. },
  4232. {
  4233. name: "Large",
  4234. height: math.unit(25, "feet")
  4235. },
  4236. {
  4237. name: "Macro",
  4238. height: math.unit(0.25, "miles")
  4239. },
  4240. {
  4241. name: "Megamacro",
  4242. height: math.unit(10, "miles")
  4243. }
  4244. ]
  4245. ))
  4246. characterMakers.push(() => makeCharacter(
  4247. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4248. {
  4249. side: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(140, "kg"),
  4252. name: "Side",
  4253. image: {
  4254. source: "./media/characters/sosha/side.svg",
  4255. extra: 1170/1006,
  4256. bottom: 94/1264
  4257. }
  4258. },
  4259. maw: {
  4260. height: math.unit(2.87, "feet"),
  4261. name: "Maw",
  4262. image: {
  4263. source: "./media/characters/sosha/maw.svg",
  4264. extra: 966/865,
  4265. bottom: 0/966
  4266. }
  4267. },
  4268. cooch: {
  4269. height: math.unit(5.6, "feet"),
  4270. name: "Cooch",
  4271. image: {
  4272. source: "./media/characters/sosha/cooch.svg"
  4273. }
  4274. },
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(12, "feet"),
  4280. default: true
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4286. {
  4287. side: {
  4288. height: math.unit(5 + 5 / 12, "feet"),
  4289. weight: math.unit(170, "kg"),
  4290. name: "Side",
  4291. image: {
  4292. source: "./media/characters/runnola/side.svg",
  4293. extra: 741 / 448,
  4294. bottom: 0.05
  4295. }
  4296. },
  4297. },
  4298. [
  4299. {
  4300. name: "Small",
  4301. height: math.unit(3, "feet")
  4302. },
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(5 + 5 / 12, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Big",
  4310. height: math.unit(10, "feet")
  4311. },
  4312. ]
  4313. ))
  4314. characterMakers.push(() => makeCharacter(
  4315. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4316. {
  4317. front: {
  4318. height: math.unit(2, "meter"),
  4319. weight: math.unit(50, "kg"),
  4320. name: "Front",
  4321. image: {
  4322. source: "./media/characters/kurribird/front.svg",
  4323. bottom: 0.015
  4324. }
  4325. },
  4326. frontAlt: {
  4327. height: math.unit(1.5, "meter"),
  4328. weight: math.unit(50, "kg"),
  4329. name: "Front (Alt)",
  4330. image: {
  4331. source: "./media/characters/kurribird/front-alt.svg",
  4332. extra: 1.45
  4333. }
  4334. },
  4335. },
  4336. [
  4337. {
  4338. name: "Normal",
  4339. height: math.unit(7, "feet")
  4340. },
  4341. {
  4342. name: "Big",
  4343. height: math.unit(12, "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(1500, "feet")
  4349. },
  4350. {
  4351. name: "Megamacro",
  4352. height: math.unit(2, "miles")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(2, "meter"),
  4361. weight: math.unit(80, "kg"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/elbial/front.svg",
  4365. extra: 1643 / 1556,
  4366. bottom: 60.2 / 1696
  4367. }
  4368. },
  4369. side: {
  4370. height: math.unit(2, "meter"),
  4371. weight: math.unit(80, "kg"),
  4372. name: "Side",
  4373. image: {
  4374. source: "./media/characters/elbial/side.svg",
  4375. extra: 1601/1528,
  4376. bottom: 97/1698
  4377. }
  4378. },
  4379. back: {
  4380. height: math.unit(2, "meter"),
  4381. weight: math.unit(80, "kg"),
  4382. name: "Back",
  4383. image: {
  4384. source: "./media/characters/elbial/back.svg",
  4385. extra: 1653/1569,
  4386. bottom: 20/1673
  4387. }
  4388. },
  4389. frontDressed: {
  4390. height: math.unit(2, "meter"),
  4391. weight: math.unit(80, "kg"),
  4392. name: "Front (Dressed)",
  4393. image: {
  4394. source: "./media/characters/elbial/front-dressed.svg",
  4395. extra: 1638/1569,
  4396. bottom: 70/1708
  4397. }
  4398. },
  4399. genitals: {
  4400. height: math.unit(2 / 3.367, "meter"),
  4401. name: "Genitals",
  4402. image: {
  4403. source: "./media/characters/elbial/genitals.svg"
  4404. }
  4405. },
  4406. },
  4407. [
  4408. {
  4409. name: "Large",
  4410. height: math.unit(100, "feet")
  4411. },
  4412. {
  4413. name: "Macro",
  4414. height: math.unit(500, "feet"),
  4415. default: true
  4416. },
  4417. {
  4418. name: "Megamacro",
  4419. height: math.unit(10, "miles")
  4420. },
  4421. {
  4422. name: "Gigamacro",
  4423. height: math.unit(25000, "miles")
  4424. },
  4425. {
  4426. name: "Full-Size",
  4427. height: math.unit(8000000, "gigaparsecs")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(2, "meter"),
  4436. weight: math.unit(60, "kg"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/noah/front.svg",
  4440. extra: 1383/1313,
  4441. bottom: 104/1487
  4442. }
  4443. },
  4444. hand: {
  4445. height: math.unit(0.6, "feet"),
  4446. name: "Hand",
  4447. image: {
  4448. source: "./media/characters/noah/hand.svg"
  4449. }
  4450. },
  4451. talons: {
  4452. height: math.unit(1.385, "feet"),
  4453. name: "Talons",
  4454. image: {
  4455. source: "./media/characters/noah/talons.svg"
  4456. }
  4457. },
  4458. beak: {
  4459. height: math.unit(0.43, "feet"),
  4460. name: "Beak",
  4461. image: {
  4462. source: "./media/characters/noah/beak.svg"
  4463. }
  4464. },
  4465. collar: {
  4466. height: math.unit(0.88, "feet"),
  4467. name: "Collar",
  4468. image: {
  4469. source: "./media/characters/noah/collar.svg"
  4470. }
  4471. },
  4472. eyeNarrow: {
  4473. height: math.unit(0.18, "feet"),
  4474. name: "Eye (Narrow)",
  4475. image: {
  4476. source: "./media/characters/noah/eye-narrow.svg"
  4477. }
  4478. },
  4479. eyeNormal: {
  4480. height: math.unit(0.18, "feet"),
  4481. name: "Eye (Normal)",
  4482. image: {
  4483. source: "./media/characters/noah/eye-normal.svg"
  4484. }
  4485. },
  4486. eyeWide: {
  4487. height: math.unit(0.18, "feet"),
  4488. name: "Eye (Wide)",
  4489. image: {
  4490. source: "./media/characters/noah/eye-wide.svg"
  4491. }
  4492. },
  4493. ear: {
  4494. height: math.unit(0.64, "feet"),
  4495. name: "Ear",
  4496. image: {
  4497. source: "./media/characters/noah/ear.svg"
  4498. }
  4499. },
  4500. },
  4501. [
  4502. {
  4503. name: "Large",
  4504. height: math.unit(50, "feet")
  4505. },
  4506. {
  4507. name: "Macro",
  4508. height: math.unit(750, "feet"),
  4509. default: true
  4510. },
  4511. {
  4512. name: "Megamacro",
  4513. height: math.unit(50, "miles")
  4514. },
  4515. {
  4516. name: "Gigamacro",
  4517. height: math.unit(100000, "miles")
  4518. },
  4519. {
  4520. name: "Full-Size",
  4521. height: math.unit(3000000000, "miles")
  4522. }
  4523. ]
  4524. ))
  4525. characterMakers.push(() => makeCharacter(
  4526. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4527. {
  4528. front: {
  4529. height: math.unit(2, "meter"),
  4530. weight: math.unit(80, "kg"),
  4531. name: "Front",
  4532. image: {
  4533. source: "./media/characters/natalya/front.svg"
  4534. }
  4535. },
  4536. back: {
  4537. height: math.unit(2, "meter"),
  4538. weight: math.unit(80, "kg"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/natalya/back.svg"
  4542. }
  4543. }
  4544. },
  4545. [
  4546. {
  4547. name: "Normal",
  4548. height: math.unit(150, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Megamacro",
  4553. height: math.unit(5, "miles")
  4554. },
  4555. {
  4556. name: "Full-Size",
  4557. height: math.unit(600, "kiloparsecs")
  4558. }
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4563. {
  4564. front: {
  4565. height: math.unit(2, "meter"),
  4566. weight: math.unit(50, "kg"),
  4567. name: "Front",
  4568. image: {
  4569. source: "./media/characters/erestrebah/front.svg",
  4570. extra: 1262/1162,
  4571. bottom: 96/1358
  4572. }
  4573. },
  4574. back: {
  4575. height: math.unit(2, "meter"),
  4576. weight: math.unit(50, "kg"),
  4577. name: "Back",
  4578. image: {
  4579. source: "./media/characters/erestrebah/back.svg",
  4580. extra: 1257/1139,
  4581. bottom: 13/1270
  4582. }
  4583. },
  4584. wing: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(50, "kg"),
  4587. name: "Wing",
  4588. image: {
  4589. source: "./media/characters/erestrebah/wing.svg",
  4590. extra: 1262/1162,
  4591. bottom: 96/1358
  4592. }
  4593. },
  4594. mouth: {
  4595. height: math.unit(0.39, "feet"),
  4596. name: "Mouth",
  4597. image: {
  4598. source: "./media/characters/erestrebah/mouth.svg"
  4599. }
  4600. }
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(10, "feet")
  4606. },
  4607. {
  4608. name: "Large",
  4609. height: math.unit(50, "feet"),
  4610. default: true
  4611. },
  4612. {
  4613. name: "Macro",
  4614. height: math.unit(300, "feet")
  4615. },
  4616. {
  4617. name: "Macro+",
  4618. height: math.unit(750, "feet")
  4619. },
  4620. {
  4621. name: "Megamacro",
  4622. height: math.unit(3, "miles")
  4623. }
  4624. ]
  4625. ))
  4626. characterMakers.push(() => makeCharacter(
  4627. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4628. {
  4629. front: {
  4630. height: math.unit(2, "meter"),
  4631. weight: math.unit(80, "kg"),
  4632. name: "Front",
  4633. image: {
  4634. source: "./media/characters/jennifer/front.svg",
  4635. bottom: 0.11,
  4636. extra: 1.16
  4637. }
  4638. },
  4639. frontAlt: {
  4640. height: math.unit(2, "meter"),
  4641. weight: math.unit(80, "kg"),
  4642. name: "Front (Alt)",
  4643. image: {
  4644. source: "./media/characters/jennifer/front-alt.svg"
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Canon Height",
  4651. height: math.unit(120, "feet"),
  4652. default: true
  4653. },
  4654. {
  4655. name: "Macro+",
  4656. height: math.unit(300, "feet")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(20000, "feet")
  4661. }
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(2, "meter"),
  4669. weight: math.unit(50, "kg"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/kalista/front.svg",
  4673. extra: 1314/1145,
  4674. bottom: 101/1415
  4675. }
  4676. },
  4677. back: {
  4678. height: math.unit(2, "meter"),
  4679. weight: math.unit(50, "kg"),
  4680. name: "Back",
  4681. image: {
  4682. source: "./media/characters/kalista/back.svg",
  4683. extra: 1366 / 1156,
  4684. bottom: 33.9 / 1362.78
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Uncomfortably Small",
  4691. height: math.unit(10, "feet")
  4692. },
  4693. {
  4694. name: "Small",
  4695. height: math.unit(30, "feet")
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(100, "feet"),
  4700. default: true
  4701. },
  4702. {
  4703. name: "Macro+",
  4704. height: math.unit(2000, "feet")
  4705. },
  4706. {
  4707. name: "True Form",
  4708. height: math.unit(8924, "miles")
  4709. }
  4710. ]
  4711. ))
  4712. characterMakers.push(() => makeCharacter(
  4713. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4714. {
  4715. front: {
  4716. height: math.unit(2, "meter"),
  4717. weight: math.unit(120, "kg"),
  4718. name: "Front",
  4719. image: {
  4720. source: "./media/characters/ggv/front.svg"
  4721. }
  4722. },
  4723. side: {
  4724. height: math.unit(2, "meter"),
  4725. weight: math.unit(120, "kg"),
  4726. name: "Side",
  4727. image: {
  4728. source: "./media/characters/ggv/side.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Extremely Puny",
  4735. height: math.unit(9 + 5 / 12, "feet")
  4736. },
  4737. {
  4738. name: "Horribly Small",
  4739. height: math.unit(47.7, "miles"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Reasonably Sized",
  4744. height: math.unit(25000, "parsecs")
  4745. },
  4746. {
  4747. name: "Slightly Uncompressed",
  4748. height: math.unit(7.77e31, "parsecs")
  4749. },
  4750. {
  4751. name: "Omniversal",
  4752. height: math.unit(1e300, "meters")
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(2, "meter"),
  4761. weight: math.unit(75, "lb"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/napalm/front.svg"
  4765. }
  4766. },
  4767. back: {
  4768. height: math.unit(2, "meter"),
  4769. weight: math.unit(75, "lb"),
  4770. name: "Back",
  4771. image: {
  4772. source: "./media/characters/napalm/back.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Standard",
  4779. height: math.unit(55, "feet"),
  4780. default: true
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(7 + 5 / 6, "feet"),
  4789. weight: math.unit(325, "lb"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/asana/front.svg",
  4793. extra: 1133 / 1060,
  4794. bottom: 15.2 / 1148.6
  4795. }
  4796. },
  4797. back: {
  4798. height: math.unit(7 + 5 / 6, "feet"),
  4799. weight: math.unit(325, "lb"),
  4800. name: "Back",
  4801. image: {
  4802. source: "./media/characters/asana/back.svg",
  4803. extra: 1114 / 1043,
  4804. bottom: 5 / 1120
  4805. }
  4806. },
  4807. dressedDark: {
  4808. height: math.unit(7 + 5 / 6, "feet"),
  4809. weight: math.unit(325, "lb"),
  4810. name: "Dressed (Dark)",
  4811. image: {
  4812. source: "./media/characters/asana/dressed-dark.svg",
  4813. extra: 1133 / 1060,
  4814. bottom: 15.2 / 1148.6
  4815. }
  4816. },
  4817. dressedLight: {
  4818. height: math.unit(7 + 5 / 6, "feet"),
  4819. weight: math.unit(325, "lb"),
  4820. name: "Dressed (Light)",
  4821. image: {
  4822. source: "./media/characters/asana/dressed-light.svg",
  4823. extra: 1133 / 1060,
  4824. bottom: 15.2 / 1148.6
  4825. }
  4826. },
  4827. },
  4828. [
  4829. {
  4830. name: "Standard",
  4831. height: math.unit(7 + 5 / 6, "feet"),
  4832. default: true
  4833. },
  4834. {
  4835. name: "Large",
  4836. height: math.unit(10, "meters")
  4837. },
  4838. {
  4839. name: "Macro",
  4840. height: math.unit(2500, "meters")
  4841. },
  4842. {
  4843. name: "Megamacro",
  4844. height: math.unit(5e6, "meters")
  4845. },
  4846. {
  4847. name: "Examacro",
  4848. height: math.unit(5e12, "lightyears")
  4849. },
  4850. {
  4851. name: "Max Size",
  4852. height: math.unit(1e31, "lightyears")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(2, "meter"),
  4861. weight: math.unit(60, "kg"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/ebony/front.svg",
  4865. bottom: 0.03,
  4866. extra: 1045 / 810 + 0.03
  4867. }
  4868. },
  4869. side: {
  4870. height: math.unit(2, "meter"),
  4871. weight: math.unit(60, "kg"),
  4872. name: "Side",
  4873. image: {
  4874. source: "./media/characters/ebony/side.svg",
  4875. bottom: 0.03,
  4876. extra: 1045 / 810 + 0.03
  4877. }
  4878. },
  4879. back: {
  4880. height: math.unit(2, "meter"),
  4881. weight: math.unit(60, "kg"),
  4882. name: "Back",
  4883. image: {
  4884. source: "./media/characters/ebony/back.svg",
  4885. bottom: 0.01,
  4886. extra: 1045 / 810 + 0.01
  4887. }
  4888. },
  4889. },
  4890. [
  4891. // TODO check why I did this lol
  4892. {
  4893. name: "Standard",
  4894. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(200, "feet")
  4900. },
  4901. {
  4902. name: "Gigamacro",
  4903. height: math.unit(13000, "km")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(6, "feet"),
  4912. weight: math.unit(175, "lb"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/mountain/front.svg",
  4916. extra: 972 / 955,
  4917. bottom: 64 / 1036.6
  4918. }
  4919. },
  4920. back: {
  4921. height: math.unit(6, "feet"),
  4922. weight: math.unit(175, "lb"),
  4923. name: "Back",
  4924. image: {
  4925. source: "./media/characters/mountain/back.svg",
  4926. extra: 970 / 950,
  4927. bottom: 28.25 / 999
  4928. }
  4929. },
  4930. },
  4931. [
  4932. {
  4933. name: "Large",
  4934. height: math.unit(20, "meters")
  4935. },
  4936. {
  4937. name: "Macro",
  4938. height: math.unit(300, "meters")
  4939. },
  4940. {
  4941. name: "Gigamacro",
  4942. height: math.unit(10000, "km"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Examacro",
  4947. height: math.unit(10e9, "lightyears")
  4948. }
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(8, "feet"),
  4956. weight: math.unit(500, "lb"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/rick/front.svg"
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(8, "feet"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(5, "km")
  4972. }
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(8, "feet"),
  4980. weight: math.unit(120, "lb"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/ona/front.svg"
  4984. }
  4985. },
  4986. frontAlt: {
  4987. height: math.unit(8, "feet"),
  4988. weight: math.unit(120, "lb"),
  4989. name: "Front (Alt)",
  4990. image: {
  4991. source: "./media/characters/ona/front-alt.svg"
  4992. }
  4993. },
  4994. back: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(120, "lb"),
  4997. name: "Back",
  4998. image: {
  4999. source: "./media/characters/ona/back.svg"
  5000. }
  5001. },
  5002. foot: {
  5003. height: math.unit(1.1, "feet"),
  5004. name: "Foot",
  5005. image: {
  5006. source: "./media/characters/ona/foot.svg"
  5007. }
  5008. }
  5009. },
  5010. [
  5011. {
  5012. name: "Megamacro",
  5013. height: math.unit(70, "km"),
  5014. default: true
  5015. },
  5016. {
  5017. name: "Gigamacro",
  5018. height: math.unit(681818, "miles")
  5019. },
  5020. {
  5021. name: "Examacro",
  5022. height: math.unit(3800000, "lightyears")
  5023. },
  5024. ]
  5025. ))
  5026. characterMakers.push(() => makeCharacter(
  5027. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5028. {
  5029. front: {
  5030. height: math.unit(12, "feet"),
  5031. weight: math.unit(3000, "lb"),
  5032. name: "Front",
  5033. image: {
  5034. source: "./media/characters/mech/front.svg",
  5035. extra: 2900 / 2770,
  5036. bottom: 110 / 3010
  5037. }
  5038. },
  5039. back: {
  5040. height: math.unit(12, "feet"),
  5041. weight: math.unit(3000, "lb"),
  5042. name: "Back",
  5043. image: {
  5044. source: "./media/characters/mech/back.svg",
  5045. extra: 3011 / 2890,
  5046. bottom: 94 / 3105
  5047. }
  5048. },
  5049. maw: {
  5050. height: math.unit(3.07, "feet"),
  5051. name: "Maw",
  5052. image: {
  5053. source: "./media/characters/mech/maw.svg"
  5054. }
  5055. },
  5056. head: {
  5057. height: math.unit(3.07, "feet"),
  5058. name: "Head",
  5059. image: {
  5060. source: "./media/characters/mech/head.svg"
  5061. }
  5062. },
  5063. dick: {
  5064. height: math.unit(1.43, "feet"),
  5065. name: "Dick",
  5066. image: {
  5067. source: "./media/characters/mech/dick.svg"
  5068. }
  5069. },
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(12, "feet")
  5075. },
  5076. {
  5077. name: "Macro",
  5078. height: math.unit(300, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro+",
  5083. height: math.unit(1500, "feet")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(1.3, "meter"),
  5092. weight: math.unit(30, "kg"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/gregory/front.svg",
  5096. }
  5097. }
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(1.3, "meter"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(20, "meter")
  5108. }
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5113. {
  5114. front: {
  5115. height: math.unit(2.8, "meter"),
  5116. weight: math.unit(200, "kg"),
  5117. name: "Front",
  5118. image: {
  5119. source: "./media/characters/elory/front.svg",
  5120. }
  5121. }
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(2.8, "meter"),
  5127. default: true
  5128. },
  5129. {
  5130. name: "Macro",
  5131. height: math.unit(38, "meter")
  5132. }
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(470, "feet"),
  5140. weight: math.unit(924, "tons"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/angelpatamon/front.svg",
  5144. }
  5145. }
  5146. },
  5147. [
  5148. {
  5149. name: "Normal",
  5150. height: math.unit(470, "feet"),
  5151. default: true
  5152. },
  5153. {
  5154. name: "Deity Size I",
  5155. height: math.unit(28651.2, "km")
  5156. },
  5157. {
  5158. name: "Deity Size II",
  5159. height: math.unit(171907.2, "km")
  5160. }
  5161. ]
  5162. ))
  5163. characterMakers.push(() => makeCharacter(
  5164. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5165. {
  5166. side: {
  5167. height: math.unit(7.2, "meter"),
  5168. weight: math.unit(8.2, "tons"),
  5169. name: "Side",
  5170. image: {
  5171. source: "./media/characters/cryae/side.svg",
  5172. extra: 3500 / 1500
  5173. }
  5174. }
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(7.2, "meter"),
  5180. default: true
  5181. }
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5186. {
  5187. front: {
  5188. height: math.unit(6, "feet"),
  5189. weight: math.unit(175, "lb"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/xera/front.svg",
  5193. extra: 2377 / 1972,
  5194. bottom: 75.5 / 2452
  5195. }
  5196. },
  5197. side: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(175, "lb"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/xera/side.svg",
  5203. extra: 2345 / 2019,
  5204. bottom: 39.7 / 2384
  5205. }
  5206. },
  5207. back: {
  5208. height: math.unit(6, "feet"),
  5209. weight: math.unit(175, "lb"),
  5210. name: "Back",
  5211. image: {
  5212. source: "./media/characters/xera/back.svg",
  5213. extra: 2095 / 1984,
  5214. bottom: 67 / 2166
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Small",
  5221. height: math.unit(10, "feet")
  5222. },
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(500, "meters"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Macro+",
  5230. height: math.unit(10, "km")
  5231. },
  5232. {
  5233. name: "Gigamacro",
  5234. height: math.unit(25000, "km")
  5235. },
  5236. {
  5237. name: "Teramacro",
  5238. height: math.unit(3e6, "km")
  5239. }
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(175, "lb"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/nebula/front.svg",
  5251. extra: 2566 / 2362,
  5252. bottom: 81 / 2644
  5253. }
  5254. }
  5255. },
  5256. [
  5257. {
  5258. name: "Small",
  5259. height: math.unit(4.5, "meters")
  5260. },
  5261. {
  5262. name: "Macro",
  5263. height: math.unit(1500, "meters"),
  5264. default: true
  5265. },
  5266. {
  5267. name: "Megamacro",
  5268. height: math.unit(150, "km")
  5269. },
  5270. {
  5271. name: "Gigamacro",
  5272. height: math.unit(27000, "km")
  5273. }
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5278. {
  5279. front: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(225, "lb"),
  5282. name: "Front",
  5283. image: {
  5284. source: "./media/characters/abysgar/front.svg",
  5285. extra: 1739/1614,
  5286. bottom: 71/1810
  5287. }
  5288. },
  5289. frontNsfw: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(225, "lb"),
  5292. name: "Front (NSFW)",
  5293. image: {
  5294. source: "./media/characters/abysgar/front-nsfw.svg",
  5295. extra: 1739/1614,
  5296. bottom: 71/1810
  5297. }
  5298. },
  5299. back: {
  5300. height: math.unit(4.6, "feet"),
  5301. weight: math.unit(225, "lb"),
  5302. name: "Back",
  5303. image: {
  5304. source: "./media/characters/abysgar/back.svg",
  5305. extra: 1384/1327,
  5306. bottom: 0/1384
  5307. }
  5308. },
  5309. head: {
  5310. height: math.unit(1.25, "feet"),
  5311. name: "Head",
  5312. image: {
  5313. source: "./media/characters/abysgar/head.svg",
  5314. extra: 669/569,
  5315. bottom: 0/669
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Small",
  5322. height: math.unit(4.5, "meters")
  5323. },
  5324. {
  5325. name: "Macro",
  5326. height: math.unit(1250, "meters"),
  5327. default: true
  5328. },
  5329. {
  5330. name: "Megamacro",
  5331. height: math.unit(125, "km")
  5332. },
  5333. {
  5334. name: "Gigamacro",
  5335. height: math.unit(26000, "km")
  5336. }
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5341. {
  5342. front: {
  5343. height: math.unit(6, "feet"),
  5344. weight: math.unit(180, "lb"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/yakuz/front.svg"
  5348. }
  5349. }
  5350. },
  5351. [
  5352. {
  5353. name: "Small",
  5354. height: math.unit(5, "meters")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(1500, "meters"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Megamacro",
  5363. height: math.unit(200, "km")
  5364. },
  5365. {
  5366. name: "Gigamacro",
  5367. height: math.unit(100000, "km")
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(175, "lb"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/mirova/front.svg",
  5380. extra: 3334 / 3071,
  5381. bottom: 42 / 3375.6
  5382. }
  5383. }
  5384. },
  5385. [
  5386. {
  5387. name: "Small",
  5388. height: math.unit(5, "meters")
  5389. },
  5390. {
  5391. name: "Macro",
  5392. height: math.unit(900, "meters"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Megamacro",
  5397. height: math.unit(135, "km")
  5398. },
  5399. {
  5400. name: "Gigamacro",
  5401. height: math.unit(20000, "km")
  5402. }
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5407. {
  5408. side: {
  5409. height: math.unit(28.35, "feet"),
  5410. weight: math.unit(99.75, "tons"),
  5411. name: "Side",
  5412. image: {
  5413. source: "./media/characters/asana-mech/side.svg",
  5414. extra: 923 / 699,
  5415. bottom: 50 / 975
  5416. }
  5417. },
  5418. chaingun: {
  5419. height: math.unit(7, "feet"),
  5420. weight: math.unit(2400, "lb"),
  5421. name: "Chaingun",
  5422. image: {
  5423. source: "./media/characters/asana-mech/chaingun.svg"
  5424. }
  5425. },
  5426. laser: {
  5427. height: math.unit(7.12, "feet"),
  5428. weight: math.unit(2000, "lb"),
  5429. name: "Laser",
  5430. image: {
  5431. source: "./media/characters/asana-mech/laser.svg"
  5432. }
  5433. },
  5434. },
  5435. [
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(28.35, "feet"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Macro",
  5443. height: math.unit(2500, "feet")
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(25, "miles")
  5448. },
  5449. {
  5450. name: "Examacro",
  5451. height: math.unit(6e8, "lightyears")
  5452. },
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5457. {
  5458. front: {
  5459. height: math.unit(5, "meters"),
  5460. weight: math.unit(1000, "kg"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/asche/front.svg",
  5464. extra: 1258 / 1190,
  5465. bottom: 47 / 1305
  5466. }
  5467. },
  5468. frontUnderwear: {
  5469. height: math.unit(5, "meters"),
  5470. weight: math.unit(1000, "kg"),
  5471. name: "Front (Underwear)",
  5472. image: {
  5473. source: "./media/characters/asche/front-underwear.svg",
  5474. extra: 1258 / 1190,
  5475. bottom: 47 / 1305
  5476. }
  5477. },
  5478. frontDressed: {
  5479. height: math.unit(5, "meters"),
  5480. weight: math.unit(1000, "kg"),
  5481. name: "Front (Dressed)",
  5482. image: {
  5483. source: "./media/characters/asche/front-dressed.svg",
  5484. extra: 1258 / 1190,
  5485. bottom: 47 / 1305
  5486. }
  5487. },
  5488. frontArmor: {
  5489. height: math.unit(5, "meters"),
  5490. weight: math.unit(1000, "kg"),
  5491. name: "Front (Armored)",
  5492. image: {
  5493. source: "./media/characters/asche/front-armored.svg",
  5494. extra: 1374 / 1308,
  5495. bottom: 23 / 1397
  5496. }
  5497. },
  5498. mp724: {
  5499. height: math.unit(0.96, "meters"),
  5500. weight: math.unit(38, "kg"),
  5501. name: "H&K MP724",
  5502. image: {
  5503. source: "./media/characters/asche/h&k-mp724.svg"
  5504. }
  5505. },
  5506. side: {
  5507. height: math.unit(5, "meters"),
  5508. weight: math.unit(1000, "kg"),
  5509. name: "Side",
  5510. image: {
  5511. source: "./media/characters/asche/side.svg",
  5512. extra: 1717 / 1609,
  5513. bottom: 0.005
  5514. }
  5515. },
  5516. back: {
  5517. height: math.unit(5, "meters"),
  5518. weight: math.unit(1000, "kg"),
  5519. name: "Back",
  5520. image: {
  5521. source: "./media/characters/asche/back.svg",
  5522. extra: 1570 / 1501
  5523. }
  5524. },
  5525. },
  5526. [
  5527. {
  5528. name: "DEFCON 5",
  5529. height: math.unit(5, "meters")
  5530. },
  5531. {
  5532. name: "DEFCON 4",
  5533. height: math.unit(500, "meters"),
  5534. default: true
  5535. },
  5536. {
  5537. name: "DEFCON 3",
  5538. height: math.unit(5, "km")
  5539. },
  5540. {
  5541. name: "DEFCON 2",
  5542. height: math.unit(500, "km")
  5543. },
  5544. {
  5545. name: "DEFCON 1",
  5546. height: math.unit(500000, "km")
  5547. },
  5548. {
  5549. name: "DEFCON 0",
  5550. height: math.unit(3, "gigaparsecs")
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(7, "feet"),
  5559. weight: math.unit(92.7, "kg"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/gale/front.svg",
  5563. extra: 977/919,
  5564. bottom: 105/1082
  5565. }
  5566. },
  5567. side: {
  5568. height: math.unit(6.7, "feet"),
  5569. weight: math.unit(92.7, "kg"),
  5570. name: "Side",
  5571. image: {
  5572. source: "./media/characters/gale/side.svg",
  5573. extra: 978/922,
  5574. bottom: 140/1118
  5575. }
  5576. },
  5577. back: {
  5578. height: math.unit(7, "feet"),
  5579. weight: math.unit(92.7, "kg"),
  5580. name: "Back",
  5581. image: {
  5582. source: "./media/characters/gale/back.svg",
  5583. extra: 966/920,
  5584. bottom: 61/1027
  5585. }
  5586. },
  5587. maw: {
  5588. height: math.unit(2.23, "feet"),
  5589. name: "Maw",
  5590. image: {
  5591. source: "./media/characters/gale/maw.svg"
  5592. }
  5593. },
  5594. foot: {
  5595. height: math.unit(2.1, "feet"),
  5596. name: "Foot",
  5597. image: {
  5598. source: "./media/characters/gale/foot.svg"
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(7, "feet")
  5606. },
  5607. {
  5608. name: "Macro",
  5609. height: math.unit(150, "feet"),
  5610. default: true
  5611. },
  5612. {
  5613. name: "Macro+",
  5614. height: math.unit(300, "feet")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(5 + 10/12, "feet"),
  5623. weight: math.unit(67, "kg"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/draylen/front.svg",
  5627. extra: 832/777,
  5628. bottom: 85/917
  5629. }
  5630. }
  5631. },
  5632. [
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(5 + 10/12, "feet")
  5636. },
  5637. {
  5638. name: "Macro",
  5639. height: math.unit(150, "feet"),
  5640. default: true
  5641. }
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(7 + 9 / 12, "feet"),
  5649. weight: math.unit(379, "lbs"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/chez/front.svg"
  5653. }
  5654. },
  5655. side: {
  5656. height: math.unit(7 + 9 / 12, "feet"),
  5657. weight: math.unit(379, "lbs"),
  5658. name: "Side",
  5659. image: {
  5660. source: "./media/characters/chez/side.svg"
  5661. }
  5662. }
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(7 + 9 / 12, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "God King",
  5672. height: math.unit(9750000, "meters")
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(6, "feet"),
  5681. weight: math.unit(275, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/kaylum/front.svg",
  5685. bottom: 0.01,
  5686. extra: 1166 / 1031
  5687. }
  5688. },
  5689. frontWingless: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(275, "lbs"),
  5692. name: "Front (Wingless)",
  5693. image: {
  5694. source: "./media/characters/kaylum/front-wingless.svg",
  5695. bottom: 0.01,
  5696. extra: 1117 / 1031
  5697. }
  5698. }
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(3.05, "meters")
  5704. },
  5705. {
  5706. name: "Master",
  5707. height: math.unit(5.5, "meters")
  5708. },
  5709. {
  5710. name: "Rampage",
  5711. height: math.unit(19, "meters")
  5712. },
  5713. {
  5714. name: "Macro Lite",
  5715. height: math.unit(37, "meters")
  5716. },
  5717. {
  5718. name: "Hyper Predator",
  5719. height: math.unit(61, "meters")
  5720. },
  5721. {
  5722. name: "Macro",
  5723. height: math.unit(138, "meters"),
  5724. default: true
  5725. }
  5726. ]
  5727. ))
  5728. characterMakers.push(() => makeCharacter(
  5729. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5730. {
  5731. front: {
  5732. height: math.unit(5 + 5 / 12, "feet"),
  5733. weight: math.unit(120, "lbs"),
  5734. name: "Front",
  5735. image: {
  5736. source: "./media/characters/geta/front.svg",
  5737. extra: 1003/933,
  5738. bottom: 21/1024
  5739. }
  5740. },
  5741. paw: {
  5742. height: math.unit(0.35, "feet"),
  5743. name: "Paw",
  5744. image: {
  5745. source: "./media/characters/geta/paw.svg"
  5746. }
  5747. },
  5748. },
  5749. [
  5750. {
  5751. name: "Micro",
  5752. height: math.unit(3, "inches"),
  5753. default: true
  5754. },
  5755. {
  5756. name: "Normal",
  5757. height: math.unit(5 + 5 / 12, "feet")
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5763. {
  5764. front: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(300, "lbs"),
  5767. name: "Front",
  5768. image: {
  5769. source: "./media/characters/tyrnn/front.svg"
  5770. }
  5771. }
  5772. },
  5773. [
  5774. {
  5775. name: "Main Height",
  5776. height: math.unit(355, "feet"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Fave. Height",
  5781. height: math.unit(2400, "feet")
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5787. {
  5788. front: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(300, "lbs"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/appledectomy/front.svg"
  5794. }
  5795. }
  5796. },
  5797. [
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(2500, "feet")
  5801. },
  5802. {
  5803. name: "Megamacro",
  5804. height: math.unit(50, "miles"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Gigamacro",
  5809. height: math.unit(5000, "miles")
  5810. },
  5811. {
  5812. name: "Teramacro",
  5813. height: math.unit(250000, "miles")
  5814. },
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(200, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/vulpes/front.svg",
  5826. extra: 573 / 543,
  5827. bottom: 0.033
  5828. }
  5829. },
  5830. side: {
  5831. height: math.unit(6, "feet"),
  5832. weight: math.unit(200, "lbs"),
  5833. name: "Side",
  5834. image: {
  5835. source: "./media/characters/vulpes/side.svg",
  5836. extra: 577 / 549,
  5837. bottom: 11 / 588
  5838. }
  5839. },
  5840. back: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(200, "lbs"),
  5843. name: "Back",
  5844. image: {
  5845. source: "./media/characters/vulpes/back.svg",
  5846. extra: 573 / 549,
  5847. bottom: 20 / 593
  5848. }
  5849. },
  5850. feet: {
  5851. height: math.unit(1.276, "feet"),
  5852. name: "Feet",
  5853. image: {
  5854. source: "./media/characters/vulpes/feet.svg"
  5855. }
  5856. },
  5857. maw: {
  5858. height: math.unit(1.18, "feet"),
  5859. name: "Maw",
  5860. image: {
  5861. source: "./media/characters/vulpes/maw.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Micro",
  5868. height: math.unit(2, "inches")
  5869. },
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(6.3, "feet")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(850, "feet")
  5877. },
  5878. {
  5879. name: "Megamacro",
  5880. height: math.unit(7500, "feet"),
  5881. default: true
  5882. },
  5883. {
  5884. name: "Gigamacro",
  5885. height: math.unit(570000, "miles")
  5886. }
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(210, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/rain-fallen/front.svg"
  5898. }
  5899. },
  5900. side: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(210, "lbs"),
  5903. name: "Side",
  5904. image: {
  5905. source: "./media/characters/rain-fallen/side.svg"
  5906. }
  5907. },
  5908. back: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(210, "lbs"),
  5911. name: "Back",
  5912. image: {
  5913. source: "./media/characters/rain-fallen/back.svg"
  5914. }
  5915. },
  5916. feral: {
  5917. height: math.unit(9, "feet"),
  5918. weight: math.unit(700, "lbs"),
  5919. name: "Feral",
  5920. image: {
  5921. source: "./media/characters/rain-fallen/feral.svg"
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Meddling with Mortals",
  5928. height: math.unit(8 + 8/12, "feet")
  5929. },
  5930. {
  5931. name: "Normal",
  5932. height: math.unit(5, "meter")
  5933. },
  5934. {
  5935. name: "Macro",
  5936. height: math.unit(150, "meter"),
  5937. default: true
  5938. },
  5939. {
  5940. name: "Megamacro",
  5941. height: math.unit(278e6, "meter")
  5942. },
  5943. {
  5944. name: "Gigamacro",
  5945. height: math.unit(2e9, "meter")
  5946. },
  5947. {
  5948. name: "Teramacro",
  5949. height: math.unit(8e12, "meter")
  5950. },
  5951. {
  5952. name: "Devourer",
  5953. height: math.unit(14, "zettameters")
  5954. },
  5955. {
  5956. name: "Scarlet King",
  5957. height: math.unit(18, "yottameters")
  5958. },
  5959. {
  5960. name: "Void",
  5961. height: math.unit(1e88, "yottameters")
  5962. }
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5967. {
  5968. standing: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(180, "lbs"),
  5971. name: "Standing",
  5972. image: {
  5973. source: "./media/characters/zaakira/standing.svg",
  5974. extra: 1599/1504,
  5975. bottom: 39/1638
  5976. }
  5977. },
  5978. laying: {
  5979. height: math.unit(3.3, "feet"),
  5980. weight: math.unit(180, "lbs"),
  5981. name: "Laying",
  5982. image: {
  5983. source: "./media/characters/zaakira/laying.svg"
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(12, "feet")
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(279, "feet"),
  5995. default: true
  5996. }
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6001. {
  6002. femSfw: {
  6003. height: math.unit(8, "feet"),
  6004. weight: math.unit(350, "lb"),
  6005. name: "Fem",
  6006. image: {
  6007. source: "./media/characters/sigvald/fem-sfw.svg",
  6008. extra: 182 / 164,
  6009. bottom: 8.7 / 190.5
  6010. }
  6011. },
  6012. femNsfw: {
  6013. height: math.unit(8, "feet"),
  6014. weight: math.unit(350, "lb"),
  6015. name: "Fem (NSFW)",
  6016. image: {
  6017. source: "./media/characters/sigvald/fem-nsfw.svg",
  6018. extra: 182 / 164,
  6019. bottom: 8.7 / 190.5
  6020. }
  6021. },
  6022. maleNsfw: {
  6023. height: math.unit(8, "feet"),
  6024. weight: math.unit(350, "lb"),
  6025. name: "Male (NSFW)",
  6026. image: {
  6027. source: "./media/characters/sigvald/male-nsfw.svg",
  6028. extra: 182 / 164,
  6029. bottom: 8.7 / 190.5
  6030. }
  6031. },
  6032. hermNsfw: {
  6033. height: math.unit(8, "feet"),
  6034. weight: math.unit(350, "lb"),
  6035. name: "Herm (NSFW)",
  6036. image: {
  6037. source: "./media/characters/sigvald/herm-nsfw.svg",
  6038. extra: 182 / 164,
  6039. bottom: 8.7 / 190.5
  6040. }
  6041. },
  6042. dick: {
  6043. height: math.unit(2.36, "feet"),
  6044. name: "Dick",
  6045. image: {
  6046. source: "./media/characters/sigvald/dick.svg"
  6047. }
  6048. },
  6049. eye: {
  6050. height: math.unit(0.31, "feet"),
  6051. name: "Eye",
  6052. image: {
  6053. source: "./media/characters/sigvald/eye.svg"
  6054. }
  6055. },
  6056. mouth: {
  6057. height: math.unit(0.92, "feet"),
  6058. name: "Mouth",
  6059. image: {
  6060. source: "./media/characters/sigvald/mouth.svg"
  6061. }
  6062. },
  6063. paws: {
  6064. height: math.unit(2.2, "feet"),
  6065. name: "Paws",
  6066. image: {
  6067. source: "./media/characters/sigvald/paws.svg"
  6068. }
  6069. }
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(8, "feet")
  6075. },
  6076. {
  6077. name: "Large",
  6078. height: math.unit(12, "feet")
  6079. },
  6080. {
  6081. name: "Larger",
  6082. height: math.unit(20, "feet")
  6083. },
  6084. {
  6085. name: "Macro",
  6086. height: math.unit(150, "feet")
  6087. },
  6088. {
  6089. name: "Macro+",
  6090. height: math.unit(200, "feet"),
  6091. default: true
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6097. {
  6098. side: {
  6099. height: math.unit(12, "feet"),
  6100. weight: math.unit(2000, "kg"),
  6101. name: "Side",
  6102. image: {
  6103. source: "./media/characters/scott/side.svg",
  6104. extra: 754 / 724,
  6105. bottom: 0.069
  6106. }
  6107. },
  6108. upright: {
  6109. height: math.unit(12, "feet"),
  6110. weight: math.unit(2000, "kg"),
  6111. name: "Upright",
  6112. image: {
  6113. source: "./media/characters/scott/upright.svg",
  6114. extra: 3881 / 3722,
  6115. bottom: 0.05
  6116. }
  6117. },
  6118. },
  6119. [
  6120. {
  6121. name: "Normal",
  6122. height: math.unit(12, "feet"),
  6123. default: true
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6129. {
  6130. side: {
  6131. height: math.unit(8, "meters"),
  6132. weight: math.unit(84755, "lbs"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/tobias/side.svg",
  6136. extra: 1474 / 1096,
  6137. bottom: 38.9 / 1513.1235
  6138. }
  6139. },
  6140. maw: {
  6141. height: math.unit(2.3, "meters"),
  6142. name: "Maw",
  6143. image: {
  6144. source: "./media/characters/tobias/maw.svg"
  6145. }
  6146. },
  6147. burp: {
  6148. height: math.unit(2.85, "meters"),
  6149. name: "Burp",
  6150. image: {
  6151. source: "./media/characters/tobias/burp.svg"
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(8, "meters"),
  6159. default: true
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6165. {
  6166. front: {
  6167. height: math.unit(5.5, "feet"),
  6168. weight: math.unit(400, "lbs"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/kieran/front.svg",
  6172. extra: 2694 / 2364,
  6173. bottom: 217 / 2908
  6174. }
  6175. },
  6176. side: {
  6177. height: math.unit(5.5, "feet"),
  6178. weight: math.unit(400, "lbs"),
  6179. name: "Side",
  6180. image: {
  6181. source: "./media/characters/kieran/side.svg",
  6182. extra: 875 / 777,
  6183. bottom: 84.6 / 959
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(5.5, "feet"),
  6191. default: true
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6197. {
  6198. side: {
  6199. height: math.unit(2, "meters"),
  6200. weight: math.unit(70, "kg"),
  6201. name: "Side",
  6202. image: {
  6203. source: "./media/characters/sanya/side.svg",
  6204. bottom: 0.02,
  6205. extra: 1.02
  6206. }
  6207. },
  6208. },
  6209. [
  6210. {
  6211. name: "Small",
  6212. height: math.unit(2, "meters")
  6213. },
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(3, "meters")
  6217. },
  6218. {
  6219. name: "Macro",
  6220. height: math.unit(16, "meters"),
  6221. default: true
  6222. },
  6223. ]
  6224. ))
  6225. characterMakers.push(() => makeCharacter(
  6226. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6227. {
  6228. front: {
  6229. height: math.unit(2, "meters"),
  6230. weight: math.unit(120, "kg"),
  6231. name: "Front",
  6232. image: {
  6233. source: "./media/characters/miranda/front.svg",
  6234. extra: 195 / 185,
  6235. bottom: 10.9 / 206.5
  6236. }
  6237. },
  6238. back: {
  6239. height: math.unit(2, "meters"),
  6240. weight: math.unit(120, "kg"),
  6241. name: "Back",
  6242. image: {
  6243. source: "./media/characters/miranda/back.svg",
  6244. extra: 201 / 193,
  6245. bottom: 2.3 / 203.7
  6246. }
  6247. },
  6248. },
  6249. [
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(10, "feet"),
  6253. default: true
  6254. }
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "James", species: ["deer"], tags: ["anthro"] },
  6259. {
  6260. side: {
  6261. height: math.unit(2, "meters"),
  6262. weight: math.unit(100, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/james/front.svg",
  6266. extra: 10 / 8.5
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Normal",
  6273. height: math.unit(8.5, "feet"),
  6274. default: true
  6275. }
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6280. {
  6281. side: {
  6282. height: math.unit(9.5, "feet"),
  6283. weight: math.unit(2500, "lbs"),
  6284. name: "Side",
  6285. image: {
  6286. source: "./media/characters/heather/side.svg"
  6287. }
  6288. },
  6289. },
  6290. [
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(9.5, "feet"),
  6294. default: true
  6295. }
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6300. {
  6301. side: {
  6302. height: math.unit(6.5, "feet"),
  6303. weight: math.unit(400, "lbs"),
  6304. name: "Side",
  6305. image: {
  6306. source: "./media/characters/lukas/side.svg",
  6307. extra: 7.25 / 6.5
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Normal",
  6314. height: math.unit(6.5, "feet"),
  6315. default: true
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(5, "feet"),
  6324. weight: math.unit(3000, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/louise/side.svg"
  6328. }
  6329. },
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(5, "feet"),
  6335. default: true
  6336. }
  6337. ]
  6338. ))
  6339. characterMakers.push(() => makeCharacter(
  6340. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6341. {
  6342. side: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(150, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/ramona/side.svg",
  6348. extra: 871/854,
  6349. bottom: 41/912
  6350. }
  6351. },
  6352. },
  6353. [
  6354. {
  6355. name: "Normal",
  6356. height: math.unit(6 + 4/12, "feet")
  6357. },
  6358. {
  6359. name: "Minimacro",
  6360. height: math.unit(5.3, "meters"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(20, "stories")
  6366. },
  6367. {
  6368. name: "Macro+",
  6369. height: math.unit(50, "stories")
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6375. {
  6376. standing: {
  6377. height: math.unit(5.75, "feet"),
  6378. weight: math.unit(160, "lbs"),
  6379. name: "Standing",
  6380. image: {
  6381. source: "./media/characters/deerpuff/standing.svg",
  6382. extra: 682 / 624
  6383. }
  6384. },
  6385. sitting: {
  6386. height: math.unit(5.75 / 1.79, "feet"),
  6387. weight: math.unit(160, "lbs"),
  6388. name: "Sitting",
  6389. image: {
  6390. source: "./media/characters/deerpuff/sitting.svg",
  6391. bottom: 44 / 400,
  6392. extra: 1
  6393. }
  6394. },
  6395. taurLaying: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(400, "lbs"),
  6398. name: "Taur (Laying)",
  6399. image: {
  6400. source: "./media/characters/deerpuff/taur-laying.svg"
  6401. }
  6402. },
  6403. },
  6404. [
  6405. {
  6406. name: "Puffball",
  6407. height: math.unit(6, "inches")
  6408. },
  6409. {
  6410. name: "Normalpuff",
  6411. height: math.unit(5.75, "feet")
  6412. },
  6413. {
  6414. name: "Macropuff",
  6415. height: math.unit(1500, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Megapuff",
  6420. height: math.unit(500, "miles")
  6421. },
  6422. {
  6423. name: "Gigapuff",
  6424. height: math.unit(250000, "miles")
  6425. },
  6426. {
  6427. name: "Omegapuff",
  6428. height: math.unit(1000, "lightyears")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6434. {
  6435. stomping: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(170, "lbs"),
  6438. name: "Stomping",
  6439. image: {
  6440. source: "./media/characters/vivian/stomping.svg"
  6441. }
  6442. },
  6443. sitting: {
  6444. height: math.unit(6 / 1.75, "feet"),
  6445. weight: math.unit(170, "lbs"),
  6446. name: "Sitting",
  6447. image: {
  6448. source: "./media/characters/vivian/sitting.svg",
  6449. bottom: 1 / 6.4,
  6450. extra: 1,
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(7, "feet"),
  6458. default: true
  6459. },
  6460. {
  6461. name: "Macro",
  6462. height: math.unit(10, "stories")
  6463. },
  6464. {
  6465. name: "Macro+",
  6466. height: math.unit(30, "stories")
  6467. },
  6468. {
  6469. name: "Megamacro",
  6470. height: math.unit(10, "miles")
  6471. },
  6472. {
  6473. name: "Megamacro+",
  6474. height: math.unit(2750000, "meters")
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(160, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/prince/front.svg",
  6487. extra: 1938/1682,
  6488. bottom: 45/1983
  6489. }
  6490. },
  6491. back: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(160, "lbs"),
  6494. name: "Back",
  6495. image: {
  6496. source: "./media/characters/prince/back.svg",
  6497. extra: 1955/1726,
  6498. bottom: 6/1961
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(7.75, "feet"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Not cute",
  6510. height: math.unit(17, "feet")
  6511. },
  6512. {
  6513. name: "I said NOT",
  6514. height: math.unit(91, "feet")
  6515. },
  6516. {
  6517. name: "Please stop",
  6518. height: math.unit(560, "feet")
  6519. },
  6520. {
  6521. name: "What have you done",
  6522. height: math.unit(2200, "feet")
  6523. },
  6524. {
  6525. name: "Deer God",
  6526. height: math.unit(3.6, "miles")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6532. {
  6533. standing: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(300, "lbs"),
  6536. name: "Standing",
  6537. image: {
  6538. source: "./media/characters/psymon/standing.svg",
  6539. extra: 1888 / 1810,
  6540. bottom: 0.05
  6541. }
  6542. },
  6543. slithering: {
  6544. height: math.unit(6, "feet"),
  6545. weight: math.unit(300, "lbs"),
  6546. name: "Slithering",
  6547. image: {
  6548. source: "./media/characters/psymon/slithering.svg",
  6549. extra: 1330 / 1224
  6550. }
  6551. },
  6552. slitheringAlt: {
  6553. height: math.unit(6, "feet"),
  6554. weight: math.unit(300, "lbs"),
  6555. name: "Slithering (Alt)",
  6556. image: {
  6557. source: "./media/characters/psymon/slithering-alt.svg",
  6558. extra: 1330 / 1224
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(11.25, "feet"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Large",
  6570. height: math.unit(27, "feet")
  6571. },
  6572. {
  6573. name: "Giant",
  6574. height: math.unit(87, "feet")
  6575. },
  6576. {
  6577. name: "Macro",
  6578. height: math.unit(365, "feet")
  6579. },
  6580. {
  6581. name: "Megamacro",
  6582. height: math.unit(3, "miles")
  6583. },
  6584. {
  6585. name: "World Serpent",
  6586. height: math.unit(8000, "miles")
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(180, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/daimos/front.svg",
  6599. extra: 4160 / 3897,
  6600. bottom: 0.021
  6601. }
  6602. }
  6603. },
  6604. [
  6605. {
  6606. name: "Normal",
  6607. height: math.unit(8, "feet"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Big Dog",
  6612. height: math.unit(22, "feet")
  6613. },
  6614. {
  6615. name: "Macro",
  6616. height: math.unit(127, "feet")
  6617. },
  6618. {
  6619. name: "Megamacro",
  6620. height: math.unit(3600, "feet")
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6626. {
  6627. side: {
  6628. height: math.unit(6, "feet"),
  6629. weight: math.unit(180, "lbs"),
  6630. name: "Side",
  6631. image: {
  6632. source: "./media/characters/blake/side.svg",
  6633. extra: 1212 / 1120,
  6634. bottom: 0.05
  6635. }
  6636. },
  6637. crouched: {
  6638. height: math.unit(6 * 0.57, "feet"),
  6639. weight: math.unit(180, "lbs"),
  6640. name: "Crouched",
  6641. image: {
  6642. source: "./media/characters/blake/crouched.svg",
  6643. extra: 840 / 587,
  6644. bottom: 0.04
  6645. }
  6646. },
  6647. bent: {
  6648. height: math.unit(6 * 0.75, "feet"),
  6649. weight: math.unit(180, "lbs"),
  6650. name: "Bent",
  6651. image: {
  6652. source: "./media/characters/blake/bent.svg",
  6653. extra: 592 / 544,
  6654. bottom: 0.035
  6655. }
  6656. },
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(8 + 1 / 6, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Big Backside",
  6666. height: math.unit(37, "feet")
  6667. },
  6668. {
  6669. name: "Subway Shredder",
  6670. height: math.unit(72, "feet")
  6671. },
  6672. {
  6673. name: "City Carver",
  6674. height: math.unit(1675, "feet")
  6675. },
  6676. {
  6677. name: "Tectonic Tweaker",
  6678. height: math.unit(2300, "miles")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(180, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/guisetto/front.svg",
  6691. extra: 856 / 817,
  6692. bottom: 0.06
  6693. }
  6694. },
  6695. airborne: {
  6696. height: math.unit(6, "feet"),
  6697. weight: math.unit(180, "lbs"),
  6698. name: "Airborne",
  6699. image: {
  6700. source: "./media/characters/guisetto/airborne.svg",
  6701. extra: 584 / 525
  6702. }
  6703. },
  6704. },
  6705. [
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(10 + 11 / 12, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Large",
  6713. height: math.unit(35, "feet")
  6714. },
  6715. {
  6716. name: "Macro",
  6717. height: math.unit(475, "feet")
  6718. },
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6723. {
  6724. front: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(180, "lbs"),
  6727. name: "Front",
  6728. image: {
  6729. source: "./media/characters/luxor/front.svg",
  6730. extra: 2940 / 2152
  6731. }
  6732. },
  6733. back: {
  6734. height: math.unit(6, "feet"),
  6735. weight: math.unit(180, "lbs"),
  6736. name: "Back",
  6737. image: {
  6738. source: "./media/characters/luxor/back.svg",
  6739. extra: 1083 / 960
  6740. }
  6741. },
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(5 + 5 / 6, "feet"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Lamp",
  6751. height: math.unit(50, "feet")
  6752. },
  6753. {
  6754. name: "Lämp",
  6755. height: math.unit(300, "feet")
  6756. },
  6757. {
  6758. name: "The sun is a lamp",
  6759. height: math.unit(250000, "miles")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(50, "lbs"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/huoyan/front.svg"
  6772. }
  6773. },
  6774. side: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(180, "lbs"),
  6777. name: "Side",
  6778. image: {
  6779. source: "./media/characters/huoyan/side.svg"
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Chef",
  6786. height: math.unit(9, "feet")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(65, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Macro",
  6795. height: math.unit(780, "feet")
  6796. },
  6797. {
  6798. name: "Flaming Mountain",
  6799. height: math.unit(4.8, "miles")
  6800. },
  6801. {
  6802. name: "Celestial",
  6803. height: math.unit(765000, "miles")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(5 + 3 / 4, "feet"),
  6812. weight: math.unit(120, "lbs"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/tails/front.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(5 + 3 / 4, "feet"),
  6823. default: true
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(4, "feet"),
  6832. weight: math.unit(50, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/rainy/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Macro",
  6842. height: math.unit(800, "feet"),
  6843. default: true
  6844. }
  6845. ]
  6846. ))
  6847. characterMakers.push(() => makeCharacter(
  6848. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6849. {
  6850. front: {
  6851. height: math.unit(6, "feet"),
  6852. weight: math.unit(150, "lbs"),
  6853. name: "Front",
  6854. image: {
  6855. source: "./media/characters/rainier/front.svg"
  6856. }
  6857. }
  6858. },
  6859. [
  6860. {
  6861. name: "Micro",
  6862. height: math.unit(2, "mm"),
  6863. default: true
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(8 + 4/12, "feet"),
  6872. weight: math.unit(450, "kilograms"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/andy-renard/front.svg",
  6876. extra: 862/809,
  6877. bottom: 85/947
  6878. },
  6879. extraAttributes: {
  6880. "pawSize": {
  6881. name: "Paw Size",
  6882. power: 2,
  6883. type: "area",
  6884. base: math.unit(0.45*0.3, "meters^2")
  6885. },
  6886. "handSize": {
  6887. name: "Hand Size",
  6888. power: 2,
  6889. type: "area",
  6890. base: math.unit(0.4 * 0.3, "meters^2")
  6891. },
  6892. "cockSize": {
  6893. name: "Cock Length",
  6894. power: 1,
  6895. type: "length",
  6896. base: math.unit(0.75, "meters")
  6897. },
  6898. "ballDiameter": {
  6899. name: "Ball Diameter",
  6900. power: 1,
  6901. type: "length",
  6902. base: math.unit(0.3, "meters")
  6903. },
  6904. "ballVolume": {
  6905. name: "Ball Volume",
  6906. power: 3,
  6907. type: "volume",
  6908. base: math.unit(0.01413716694, "meters^3")
  6909. },
  6910. }
  6911. },
  6912. back: {
  6913. height: math.unit(8 + 4/12, "feet"),
  6914. weight: math.unit(450, "kilograms"),
  6915. name: "Back",
  6916. image: {
  6917. source: "./media/characters/andy-renard/back.svg",
  6918. extra: 1112/1033,
  6919. bottom: 64/1176
  6920. },
  6921. extraAttributes: {
  6922. "pawSize": {
  6923. name: "Paw Size",
  6924. power: 2,
  6925. type: "area",
  6926. base: math.unit(0.45*0.3, "meters^2")
  6927. },
  6928. "handSize": {
  6929. name: "Hand Size",
  6930. power: 2,
  6931. type: "area",
  6932. base: math.unit(0.4 * 0.3, "meters^2")
  6933. },
  6934. "cockSize": {
  6935. name: "Cock Length",
  6936. power: 1,
  6937. type: "length",
  6938. base: math.unit(0.75, "meters")
  6939. },
  6940. "ballDiameter": {
  6941. name: "Ball Diameter",
  6942. power: 1,
  6943. type: "length",
  6944. base: math.unit(0.3, "meters")
  6945. },
  6946. "ballVolume": {
  6947. name: "Ball Volume",
  6948. power: 3,
  6949. type: "volume",
  6950. base: math.unit(0.01413716694, "meters^3")
  6951. },
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Tall",
  6958. height: math.unit(6 + 8/12, "feet")
  6959. },
  6960. {
  6961. name: "Very Tall",
  6962. height: math.unit(8 + 4/12, "feet")
  6963. },
  6964. {
  6965. name: "Mini Macro",
  6966. height: math.unit(15, "feet"),
  6967. default: true
  6968. },
  6969. {
  6970. name: "Giant",
  6971. height: math.unit(50, "feet")
  6972. },
  6973. {
  6974. name: "Nice",
  6975. height: math.unit(69, "feet")
  6976. },
  6977. {
  6978. name: "Macro",
  6979. height: math.unit(100, "feet")
  6980. },
  6981. {
  6982. name: "Enormous",
  6983. height: math.unit(500, "feet")
  6984. },
  6985. {
  6986. name: "Gargantuan",
  6987. height: math.unit(1000, "feet")
  6988. },
  6989. {
  6990. name: "Mega",
  6991. height: math.unit(1, "mile")
  6992. },
  6993. {
  6994. name: "Giga",
  6995. height: math.unit(50, "miles")
  6996. },
  6997. {
  6998. name: "Tera",
  6999. height: math.unit(1000, "miles")
  7000. },
  7001. {
  7002. name: "Cosmic",
  7003. height: math.unit(1.5, "galaxies")
  7004. },
  7005. {
  7006. name: "God",
  7007. height: math.unit(1.5, "universes")
  7008. },
  7009. {
  7010. name: "Chief Execute God",
  7011. height: math.unit(1.5, "multiverses")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(210, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/cimmaron/front-sfw.svg",
  7024. extra: 701 / 676,
  7025. bottom: 0.046
  7026. }
  7027. },
  7028. back: {
  7029. height: math.unit(6, "feet"),
  7030. weight: math.unit(210, "lbs"),
  7031. name: "Back",
  7032. image: {
  7033. source: "./media/characters/cimmaron/back-sfw.svg",
  7034. extra: 701 / 676,
  7035. bottom: 0.046
  7036. }
  7037. },
  7038. frontNsfw: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(210, "lbs"),
  7041. name: "Front (NSFW)",
  7042. image: {
  7043. source: "./media/characters/cimmaron/front-nsfw.svg",
  7044. extra: 701 / 676,
  7045. bottom: 0.046
  7046. }
  7047. },
  7048. backNsfw: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(210, "lbs"),
  7051. name: "Back (NSFW)",
  7052. image: {
  7053. source: "./media/characters/cimmaron/back-nsfw.svg",
  7054. extra: 701 / 676,
  7055. bottom: 0.046
  7056. }
  7057. },
  7058. dick: {
  7059. height: math.unit(1.714, "feet"),
  7060. name: "Dick",
  7061. image: {
  7062. source: "./media/characters/cimmaron/dick.svg"
  7063. }
  7064. },
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(6, "feet"),
  7070. default: true
  7071. },
  7072. {
  7073. name: "Macro Mayor",
  7074. height: math.unit(350, "meters")
  7075. },
  7076. ]
  7077. ))
  7078. characterMakers.push(() => makeCharacter(
  7079. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7080. {
  7081. front: {
  7082. height: math.unit(6, "feet"),
  7083. weight: math.unit(200, "lbs"),
  7084. name: "Front",
  7085. image: {
  7086. source: "./media/characters/akari/front.svg",
  7087. extra: 962 / 901,
  7088. bottom: 0.04
  7089. }
  7090. }
  7091. },
  7092. [
  7093. {
  7094. name: "Micro",
  7095. height: math.unit(5, "inches"),
  7096. default: true
  7097. },
  7098. {
  7099. name: "Normal",
  7100. height: math.unit(7, "feet")
  7101. },
  7102. ]
  7103. ))
  7104. characterMakers.push(() => makeCharacter(
  7105. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7106. {
  7107. front: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(140, "lbs"),
  7110. name: "Front",
  7111. image: {
  7112. source: "./media/characters/cynosura/front.svg",
  7113. extra: 437/410,
  7114. bottom: 9/446
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(140, "lbs"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/cynosura/back.svg",
  7123. extra: 1304/1160,
  7124. bottom: 71/1375
  7125. }
  7126. },
  7127. },
  7128. [
  7129. {
  7130. name: "Micro",
  7131. height: math.unit(4, "inches")
  7132. },
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(5.75, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Tall",
  7140. height: math.unit(10, "feet")
  7141. },
  7142. {
  7143. name: "Big",
  7144. height: math.unit(20, "feet")
  7145. },
  7146. {
  7147. name: "Macro",
  7148. height: math.unit(50, "feet")
  7149. },
  7150. ]
  7151. ))
  7152. characterMakers.push(() => makeCharacter(
  7153. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7154. {
  7155. front: {
  7156. height: math.unit(13 + 2/12, "feet"),
  7157. weight: math.unit(800, "kg"),
  7158. name: "Front",
  7159. image: {
  7160. source: "./media/characters/gin/front.svg",
  7161. extra: 1312/1191,
  7162. bottom: 45/1357
  7163. }
  7164. },
  7165. mouth: {
  7166. height: math.unit(2.39 * 1.8, "feet"),
  7167. name: "Mouth",
  7168. image: {
  7169. source: "./media/characters/gin/mouth.svg"
  7170. }
  7171. },
  7172. hand: {
  7173. height: math.unit(1.57 * 2.19, "feet"),
  7174. name: "Hand",
  7175. image: {
  7176. source: "./media/characters/gin/hand.svg"
  7177. }
  7178. },
  7179. foot: {
  7180. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7181. name: "Foot",
  7182. image: {
  7183. source: "./media/characters/gin/foot.svg"
  7184. }
  7185. },
  7186. sole: {
  7187. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7188. name: "Sole",
  7189. image: {
  7190. source: "./media/characters/gin/sole.svg"
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Very Small",
  7197. height: math.unit(13 + 2 / 12, "feet")
  7198. },
  7199. {
  7200. name: "Micro",
  7201. height: math.unit(600, "miles")
  7202. },
  7203. {
  7204. name: "Regular",
  7205. height: math.unit(20, "earths"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Macro",
  7210. height: math.unit(2.2, "solarradii")
  7211. },
  7212. {
  7213. name: "Teramacro",
  7214. height: math.unit(1.2, "galaxies")
  7215. },
  7216. {
  7217. name: "Omegamacro",
  7218. height: math.unit(200, "universes")
  7219. },
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(6 + 1 / 6, "feet"),
  7227. weight: math.unit(178, "lbs"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/guy/front.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(6 + 1 / 6, "feet"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Large",
  7242. height: math.unit(25 + 7 / 12, "feet")
  7243. },
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(60 + 9 / 12, "feet")
  7247. },
  7248. {
  7249. name: "Macro+",
  7250. height: math.unit(246, "feet")
  7251. },
  7252. {
  7253. name: "Macro++",
  7254. height: math.unit(878, "feet")
  7255. }
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(9, "feet"),
  7263. weight: math.unit(800, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/tiberius/front.svg",
  7267. extra: 2295 / 2071
  7268. }
  7269. },
  7270. back: {
  7271. height: math.unit(9, "feet"),
  7272. weight: math.unit(800, "lbs"),
  7273. name: "Back",
  7274. image: {
  7275. source: "./media/characters/tiberius/back.svg",
  7276. extra: 2373 / 2160
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(9, "feet"),
  7284. default: true
  7285. }
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(600, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/surgo/front.svg",
  7297. extra: 3591 / 2227
  7298. }
  7299. },
  7300. back: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(600, "lbs"),
  7303. name: "Back",
  7304. image: {
  7305. source: "./media/characters/surgo/back.svg",
  7306. extra: 3557 / 2228
  7307. }
  7308. },
  7309. laying: {
  7310. height: math.unit(6 * 0.85, "feet"),
  7311. weight: math.unit(600, "lbs"),
  7312. name: "Laying",
  7313. image: {
  7314. source: "./media/characters/surgo/laying.svg"
  7315. }
  7316. },
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6, "feet"),
  7322. default: true
  7323. }
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7328. {
  7329. side: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(150, "lbs"),
  7332. name: "Side",
  7333. image: {
  7334. source: "./media/characters/cibus/side.svg",
  7335. extra: 800 / 400
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Normal",
  7342. height: math.unit(6, "feet"),
  7343. default: true
  7344. }
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7349. {
  7350. front: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(240, "lbs"),
  7353. name: "Front",
  7354. image: {
  7355. source: "./media/characters/nibbles/front.svg"
  7356. }
  7357. },
  7358. side: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(240, "lbs"),
  7361. name: "Side",
  7362. image: {
  7363. source: "./media/characters/nibbles/side.svg"
  7364. }
  7365. },
  7366. },
  7367. [
  7368. {
  7369. name: "Normal",
  7370. height: math.unit(9, "feet"),
  7371. default: true
  7372. }
  7373. ]
  7374. ))
  7375. characterMakers.push(() => makeCharacter(
  7376. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7377. {
  7378. side: {
  7379. height: math.unit(5 + 1 / 6, "feet"),
  7380. weight: math.unit(130, "lbs"),
  7381. name: "Side",
  7382. image: {
  7383. source: "./media/characters/rikky/side.svg",
  7384. extra: 851 / 801
  7385. }
  7386. },
  7387. },
  7388. [
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(5 + 1 / 6, "feet")
  7392. },
  7393. {
  7394. name: "Macro",
  7395. height: math.unit(152, "feet"),
  7396. default: true
  7397. },
  7398. {
  7399. name: "Megamacro",
  7400. height: math.unit(7, "miles")
  7401. }
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7406. {
  7407. side: {
  7408. height: math.unit(370, "cm"),
  7409. weight: math.unit(350, "lbs"),
  7410. name: "Side",
  7411. image: {
  7412. source: "./media/characters/malfressa/side.svg"
  7413. }
  7414. },
  7415. walking: {
  7416. height: math.unit(370, "cm"),
  7417. weight: math.unit(350, "lbs"),
  7418. name: "Walking",
  7419. image: {
  7420. source: "./media/characters/malfressa/walking.svg"
  7421. }
  7422. },
  7423. feral: {
  7424. height: math.unit(2500, "cm"),
  7425. weight: math.unit(100000, "lbs"),
  7426. name: "Feral",
  7427. image: {
  7428. source: "./media/characters/malfressa/feral.svg",
  7429. extra: 2108 / 837,
  7430. bottom: 0.02
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(370, "cm")
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(300, "meters"),
  7442. default: true
  7443. }
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(6, "feet"),
  7451. weight: math.unit(60, "kg"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/jaro/front.svg",
  7455. extra: 845/817,
  7456. bottom: 45/890
  7457. }
  7458. },
  7459. back: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(60, "kg"),
  7462. name: "Back",
  7463. image: {
  7464. source: "./media/characters/jaro/back.svg",
  7465. extra: 847/817,
  7466. bottom: 34/881
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(7, "inches")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(5.5, "feet"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Minimacro",
  7482. height: math.unit(20, "feet")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(200, "meters")
  7487. }
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7492. {
  7493. front: {
  7494. height: math.unit(6, "feet"),
  7495. weight: math.unit(195, "lb"),
  7496. name: "Front",
  7497. image: {
  7498. source: "./media/characters/rogue/front.svg"
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Macro",
  7505. height: math.unit(90, "feet"),
  7506. default: true
  7507. },
  7508. ]
  7509. ))
  7510. characterMakers.push(() => makeCharacter(
  7511. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7512. {
  7513. standing: {
  7514. height: math.unit(5 + 8 / 12, "feet"),
  7515. weight: math.unit(140, "lb"),
  7516. name: "Standing",
  7517. image: {
  7518. source: "./media/characters/piper/standing.svg",
  7519. extra: 1440/1284,
  7520. bottom: 66/1506
  7521. }
  7522. },
  7523. running: {
  7524. height: math.unit(5 + 8 / 12, "feet"),
  7525. weight: math.unit(140, "lb"),
  7526. name: "Running",
  7527. image: {
  7528. source: "./media/characters/piper/running.svg",
  7529. extra: 3948/3655,
  7530. bottom: 0/3948
  7531. }
  7532. },
  7533. sole: {
  7534. height: math.unit(0.81, "feet"),
  7535. weight: math.unit(2, "kg"),
  7536. name: "Sole",
  7537. image: {
  7538. source: "./media/characters/piper/sole.svg"
  7539. }
  7540. },
  7541. nipple: {
  7542. height: math.unit(0.25, "feet"),
  7543. weight: math.unit(1.5, "lb"),
  7544. name: "Nipple",
  7545. image: {
  7546. source: "./media/characters/piper/nipple.svg"
  7547. }
  7548. },
  7549. head: {
  7550. height: math.unit(1.1, "feet"),
  7551. name: "Head",
  7552. image: {
  7553. source: "./media/characters/piper/head.svg"
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Micro",
  7560. height: math.unit(2, "inches")
  7561. },
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(5 + 8 / 12, "feet")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(250, "feet"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Megamacro",
  7573. height: math.unit(7, "miles")
  7574. },
  7575. ]
  7576. ))
  7577. characterMakers.push(() => makeCharacter(
  7578. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7579. {
  7580. front: {
  7581. height: math.unit(6, "feet"),
  7582. weight: math.unit(220, "lb"),
  7583. name: "Front",
  7584. image: {
  7585. source: "./media/characters/gemini/front.svg"
  7586. }
  7587. },
  7588. back: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(220, "lb"),
  7591. name: "Back",
  7592. image: {
  7593. source: "./media/characters/gemini/back.svg"
  7594. }
  7595. },
  7596. kneeling: {
  7597. height: math.unit(6 / 1.5, "feet"),
  7598. weight: math.unit(220, "lb"),
  7599. name: "Kneeling",
  7600. image: {
  7601. source: "./media/characters/gemini/kneeling.svg",
  7602. bottom: 0.02
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(300, "meters"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(6900, "meters")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7620. {
  7621. anthro: {
  7622. height: math.unit(2.35, "meters"),
  7623. weight: math.unit(73, "kg"),
  7624. name: "Anthro",
  7625. image: {
  7626. source: "./media/characters/alicia/anthro.svg",
  7627. extra: 2571 / 2385,
  7628. bottom: 75 / 2648
  7629. }
  7630. },
  7631. paw: {
  7632. height: math.unit(1.32, "feet"),
  7633. name: "Paw",
  7634. image: {
  7635. source: "./media/characters/alicia/paw.svg"
  7636. }
  7637. },
  7638. feral: {
  7639. height: math.unit(1.69, "meters"),
  7640. weight: math.unit(73, "kg"),
  7641. name: "Feral",
  7642. image: {
  7643. source: "./media/characters/alicia/feral.svg",
  7644. extra: 2123 / 1715,
  7645. bottom: 222 / 2349
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(2.35, "meters")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(60, "meters"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(10000, "kilometers")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(7, "feet"),
  7670. weight: math.unit(250, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/archy/front.svg"
  7674. }
  7675. }
  7676. },
  7677. [
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(1, "inch")
  7681. },
  7682. {
  7683. name: "Shorty",
  7684. height: math.unit(5, "feet")
  7685. },
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(7, "feet")
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(600, "meters"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Megamacro",
  7697. height: math.unit(1, "mile")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(1.65, "meters"),
  7706. weight: math.unit(74, "kg"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/berri/front.svg",
  7710. extra: 857 / 837,
  7711. bottom: 18 / 877
  7712. }
  7713. },
  7714. bum: {
  7715. height: math.unit(1.46, "feet"),
  7716. name: "Bum",
  7717. image: {
  7718. source: "./media/characters/berri/bum.svg"
  7719. }
  7720. },
  7721. mouth: {
  7722. height: math.unit(0.44, "feet"),
  7723. name: "Mouth",
  7724. image: {
  7725. source: "./media/characters/berri/mouth.svg"
  7726. }
  7727. },
  7728. paw: {
  7729. height: math.unit(0.826, "feet"),
  7730. name: "Paw",
  7731. image: {
  7732. source: "./media/characters/berri/paw.svg"
  7733. }
  7734. },
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(1.65, "meters")
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(60, "m"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Megamacro",
  7748. height: math.unit(9.213, "km")
  7749. },
  7750. {
  7751. name: "Planet Eater",
  7752. height: math.unit(489, "megameters")
  7753. },
  7754. {
  7755. name: "Teramacro",
  7756. height: math.unit(2471635000000, "meters")
  7757. },
  7758. {
  7759. name: "Examacro",
  7760. height: math.unit(8.0624e+26, "meters")
  7761. }
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(1.72, "meters"),
  7769. weight: math.unit(68, "kg"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/lexi/front.svg"
  7773. }
  7774. }
  7775. },
  7776. [
  7777. {
  7778. name: "Very Smol",
  7779. height: math.unit(10, "mm")
  7780. },
  7781. {
  7782. name: "Micro",
  7783. height: math.unit(6.8, "cm"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(1.72, "m")
  7789. }
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(1.69, "meters"),
  7797. weight: math.unit(68, "kg"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/martin/front.svg",
  7801. extra: 596 / 581
  7802. }
  7803. }
  7804. },
  7805. [
  7806. {
  7807. name: "Micro",
  7808. height: math.unit(6.85, "cm"),
  7809. default: true
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(1.69, "m")
  7814. }
  7815. ]
  7816. ))
  7817. characterMakers.push(() => makeCharacter(
  7818. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7819. {
  7820. front: {
  7821. height: math.unit(1.69, "meters"),
  7822. weight: math.unit(68, "kg"),
  7823. name: "Front",
  7824. image: {
  7825. source: "./media/characters/juno/front.svg"
  7826. }
  7827. }
  7828. },
  7829. [
  7830. {
  7831. name: "Micro",
  7832. height: math.unit(7, "cm")
  7833. },
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(1.89, "m")
  7837. },
  7838. {
  7839. name: "Macro",
  7840. height: math.unit(353, "meters"),
  7841. default: true
  7842. }
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(1.93, "meters"),
  7850. weight: math.unit(83, "kg"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/samantha/front.svg"
  7854. }
  7855. },
  7856. frontClothed: {
  7857. height: math.unit(1.93, "meters"),
  7858. weight: math.unit(83, "kg"),
  7859. name: "Front (Clothed)",
  7860. image: {
  7861. source: "./media/characters/samantha/front-clothed.svg"
  7862. }
  7863. },
  7864. back: {
  7865. height: math.unit(1.93, "meters"),
  7866. weight: math.unit(83, "kg"),
  7867. name: "Back",
  7868. image: {
  7869. source: "./media/characters/samantha/back.svg"
  7870. }
  7871. },
  7872. },
  7873. [
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(1.93, "m")
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(74, "meters"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Macro+",
  7885. height: math.unit(223, "meters"),
  7886. },
  7887. {
  7888. name: "Megamacro",
  7889. height: math.unit(8381, "meters"),
  7890. },
  7891. {
  7892. name: "Megamacro+",
  7893. height: math.unit(12000, "kilometers")
  7894. },
  7895. ]
  7896. ))
  7897. characterMakers.push(() => makeCharacter(
  7898. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7899. {
  7900. front: {
  7901. height: math.unit(1.92, "meters"),
  7902. weight: math.unit(80, "kg"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/dr-clay/front.svg"
  7906. }
  7907. },
  7908. frontClothed: {
  7909. height: math.unit(1.92, "meters"),
  7910. weight: math.unit(80, "kg"),
  7911. name: "Front (Clothed)",
  7912. image: {
  7913. source: "./media/characters/dr-clay/front-clothed.svg"
  7914. }
  7915. }
  7916. },
  7917. [
  7918. {
  7919. name: "Normal",
  7920. height: math.unit(1.92, "m")
  7921. },
  7922. {
  7923. name: "Macro",
  7924. height: math.unit(214, "meters"),
  7925. default: true
  7926. },
  7927. {
  7928. name: "Macro+",
  7929. height: math.unit(12.237, "meters"),
  7930. },
  7931. {
  7932. name: "Megamacro",
  7933. height: math.unit(557, "megameters"),
  7934. },
  7935. {
  7936. name: "Unimaginable",
  7937. height: math.unit(120e9, "lightyears")
  7938. },
  7939. ]
  7940. ))
  7941. characterMakers.push(() => makeCharacter(
  7942. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7943. {
  7944. front: {
  7945. height: math.unit(2, "meters"),
  7946. weight: math.unit(80, "kg"),
  7947. name: "Front",
  7948. image: {
  7949. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7950. }
  7951. }
  7952. },
  7953. [
  7954. {
  7955. name: "Teramacro",
  7956. height: math.unit(500000, "lightyears"),
  7957. default: true
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7963. {
  7964. crux: {
  7965. height: math.unit(2, "meters"),
  7966. weight: math.unit(150, "kg"),
  7967. name: "Crux",
  7968. image: {
  7969. source: "./media/characters/vemus/crux.svg",
  7970. extra: 1074/936,
  7971. bottom: 23/1097
  7972. }
  7973. },
  7974. skunkTanuki: {
  7975. height: math.unit(2, "meters"),
  7976. weight: math.unit(150, "kg"),
  7977. name: "Skunk-Tanuki",
  7978. image: {
  7979. source: "./media/characters/vemus/skunk-tanuki.svg",
  7980. extra: 926/893,
  7981. bottom: 20/946
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(4, "meters"),
  7989. default: true
  7990. },
  7991. {
  7992. name: "Big",
  7993. height: math.unit(8, "meters")
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(100, "meters")
  7998. },
  7999. {
  8000. name: "Macro+",
  8001. height: math.unit(1500, "meters")
  8002. },
  8003. {
  8004. name: "Stellar",
  8005. height: math.unit(14e8, "meters")
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(2, "meters"),
  8014. weight: math.unit(70, "kg"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/beherit/front.svg",
  8018. extra: 1234/1109,
  8019. bottom: 55/1289
  8020. }
  8021. }
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(6, "feet")
  8027. },
  8028. {
  8029. name: "Lorg",
  8030. height: math.unit(25, "feet"),
  8031. default: true
  8032. },
  8033. {
  8034. name: "Lorger",
  8035. height: math.unit(75, "feet")
  8036. },
  8037. {
  8038. name: "Macro",
  8039. height: math.unit(200, "meters")
  8040. },
  8041. ]
  8042. ))
  8043. characterMakers.push(() => makeCharacter(
  8044. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8045. {
  8046. front: {
  8047. height: math.unit(2, "meters"),
  8048. weight: math.unit(150, "kg"),
  8049. name: "Front",
  8050. image: {
  8051. source: "./media/characters/everett/front.svg",
  8052. extra: 1017/866,
  8053. bottom: 86/1103
  8054. }
  8055. },
  8056. paw: {
  8057. height: math.unit(2 / 3.6, "meters"),
  8058. name: "Paw",
  8059. image: {
  8060. source: "./media/characters/everett/paw.svg"
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Normal",
  8067. height: math.unit(15, "feet"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Lorg",
  8072. height: math.unit(70, "feet"),
  8073. default: true
  8074. },
  8075. {
  8076. name: "Lorger",
  8077. height: math.unit(250, "feet")
  8078. },
  8079. {
  8080. name: "Macro",
  8081. height: math.unit(500, "meters")
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8087. {
  8088. front: {
  8089. height: math.unit(2, "meters"),
  8090. weight: math.unit(86, "kg"),
  8091. name: "Front",
  8092. image: {
  8093. source: "./media/characters/rose/front.svg",
  8094. extra: 1785/1636,
  8095. bottom: 30/1815
  8096. },
  8097. form: "liom",
  8098. default: true
  8099. },
  8100. frontSporty: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(86, "kg"),
  8103. name: "Front (Sporty)",
  8104. image: {
  8105. source: "./media/characters/rose/front-sporty.svg",
  8106. extra: 350/335,
  8107. bottom: 10/360
  8108. },
  8109. form: "liom"
  8110. },
  8111. frontAlt: {
  8112. height: math.unit(1.6, "meters"),
  8113. weight: math.unit(86, "kg"),
  8114. name: "Front (Alt)",
  8115. image: {
  8116. source: "./media/characters/rose/front-alt.svg",
  8117. extra: 299/283,
  8118. bottom: 3/302
  8119. },
  8120. form: "liom"
  8121. },
  8122. plush: {
  8123. height: math.unit(2, "meters"),
  8124. weight: math.unit(86/3, "kg"),
  8125. name: "Plush",
  8126. image: {
  8127. source: "./media/characters/rose/plush.svg",
  8128. extra: 361/337,
  8129. bottom: 11/372
  8130. },
  8131. form: "plush",
  8132. default: true
  8133. },
  8134. faeStanding: {
  8135. height: math.unit(10, "cm"),
  8136. weight: math.unit(10, "grams"),
  8137. name: "Standing",
  8138. image: {
  8139. source: "./media/characters/rose/fae-standing.svg",
  8140. extra: 1189/1060,
  8141. bottom: 27/1216
  8142. },
  8143. form: "fae",
  8144. default: true
  8145. },
  8146. faeSitting: {
  8147. height: math.unit(5, "cm"),
  8148. weight: math.unit(10, "grams"),
  8149. name: "Sitting",
  8150. image: {
  8151. source: "./media/characters/rose/fae-sitting.svg",
  8152. extra: 737/577,
  8153. bottom: 356/1093
  8154. },
  8155. form: "fae"
  8156. },
  8157. faePaw: {
  8158. height: math.unit(1.35, "cm"),
  8159. name: "Paw",
  8160. image: {
  8161. source: "./media/characters/rose/fae-paw.svg"
  8162. },
  8163. form: "fae"
  8164. },
  8165. },
  8166. [
  8167. {
  8168. name: "True Micro",
  8169. height: math.unit(9, "cm"),
  8170. form: "liom"
  8171. },
  8172. {
  8173. name: "Micro",
  8174. height: math.unit(16, "cm"),
  8175. form: "liom"
  8176. },
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(1.85, "meters"),
  8180. default: true,
  8181. form: "liom"
  8182. },
  8183. {
  8184. name: "Mini-Macro",
  8185. height: math.unit(5, "meters"),
  8186. form: "liom"
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(15, "meters"),
  8191. form: "liom"
  8192. },
  8193. {
  8194. name: "True Macro",
  8195. height: math.unit(40, "meters"),
  8196. form: "liom"
  8197. },
  8198. {
  8199. name: "City Scale",
  8200. height: math.unit(1, "km"),
  8201. form: "liom"
  8202. },
  8203. {
  8204. name: "Plushie",
  8205. height: math.unit(9, "cm"),
  8206. form: "plush",
  8207. default: true
  8208. },
  8209. {
  8210. name: "Fae",
  8211. height: math.unit(10, "cm"),
  8212. form: "fae",
  8213. default: true
  8214. },
  8215. ],
  8216. {
  8217. "liom": {
  8218. name: "Liom"
  8219. },
  8220. "plush": {
  8221. name: "Plush"
  8222. },
  8223. "fae": {
  8224. name: "Fae Fox",
  8225. default: true
  8226. }
  8227. }
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(2, "meters"),
  8234. weight: math.unit(350, "lbs"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/regal/front.svg"
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(2, "meters"),
  8242. weight: math.unit(350, "lbs"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/regal/back.svg"
  8246. }
  8247. },
  8248. },
  8249. [
  8250. {
  8251. name: "Macro",
  8252. height: math.unit(350, "feet"),
  8253. default: true
  8254. }
  8255. ]
  8256. ))
  8257. characterMakers.push(() => makeCharacter(
  8258. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8259. {
  8260. standing: {
  8261. height: math.unit(4 + 11/12, "feet"),
  8262. weight: math.unit(100, "lb"),
  8263. name: "Standing",
  8264. image: {
  8265. source: "./media/characters/opal/standing.svg",
  8266. extra: 1588/1513,
  8267. bottom: 23/1611
  8268. }
  8269. },
  8270. sitting: {
  8271. height: math.unit(2.3, "feet"),
  8272. weight: math.unit(100, "lb"),
  8273. name: "Sitting",
  8274. image: {
  8275. source: "./media/characters/opal/sitting.svg",
  8276. extra: 1031/892,
  8277. bottom: 142/1173
  8278. }
  8279. },
  8280. hand: {
  8281. height: math.unit(0.59, "feet"),
  8282. name: "Hand",
  8283. image: {
  8284. source: "./media/characters/opal/hand.svg"
  8285. }
  8286. },
  8287. foot: {
  8288. height: math.unit(0.61, "feet"),
  8289. name: "Foot",
  8290. image: {
  8291. source: "./media/characters/opal/foot.svg"
  8292. }
  8293. },
  8294. },
  8295. [
  8296. {
  8297. name: "Small",
  8298. height: math.unit(4 + 11 / 12, "feet")
  8299. },
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(20, "feet"),
  8303. default: true
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(120, "feet")
  8308. },
  8309. {
  8310. name: "Megamacro",
  8311. height: math.unit(80, "miles")
  8312. },
  8313. {
  8314. name: "True Size",
  8315. height: math.unit(100000, "lightyears")
  8316. },
  8317. ]
  8318. ))
  8319. characterMakers.push(() => makeCharacter(
  8320. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8321. {
  8322. front: {
  8323. height: math.unit(6, "feet"),
  8324. weight: math.unit(200, "lbs"),
  8325. name: "Front",
  8326. image: {
  8327. source: "./media/characters/vector-wuff/front.svg"
  8328. }
  8329. }
  8330. },
  8331. [
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(2.8, "meters")
  8335. },
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(450, "meters"),
  8339. default: true
  8340. },
  8341. {
  8342. name: "Megamacro",
  8343. height: math.unit(15, "kilometers")
  8344. }
  8345. ]
  8346. ))
  8347. characterMakers.push(() => makeCharacter(
  8348. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8349. {
  8350. front: {
  8351. height: math.unit(6, "feet"),
  8352. weight: math.unit(256, "lbs"),
  8353. name: "Front",
  8354. image: {
  8355. source: "./media/characters/dannik/front.svg"
  8356. }
  8357. }
  8358. },
  8359. [
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(69.57, "meters"),
  8363. default: true
  8364. },
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(6, "feet"),
  8372. weight: math.unit(120, "lbs"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/azura-saharah/front.svg"
  8376. }
  8377. },
  8378. back: {
  8379. height: math.unit(6, "feet"),
  8380. weight: math.unit(120, "lbs"),
  8381. name: "Back",
  8382. image: {
  8383. source: "./media/characters/azura-saharah/back.svg"
  8384. }
  8385. },
  8386. },
  8387. [
  8388. {
  8389. name: "Macro",
  8390. height: math.unit(100, "feet"),
  8391. default: true
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8397. {
  8398. side: {
  8399. height: math.unit(5 + 4 / 12, "feet"),
  8400. weight: math.unit(163, "lbs"),
  8401. name: "Side",
  8402. image: {
  8403. source: "./media/characters/kennedy/side.svg"
  8404. }
  8405. }
  8406. },
  8407. [
  8408. {
  8409. name: "Standard Doggo",
  8410. height: math.unit(5 + 4 / 12, "feet")
  8411. },
  8412. {
  8413. name: "Big Doggo",
  8414. height: math.unit(25 + 3 / 12, "feet"),
  8415. default: true
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(5 + 5/12, "feet"),
  8424. weight: math.unit(100, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/odios-de-lunar/front.svg",
  8428. extra: 1468/1323,
  8429. bottom: 22/1490
  8430. }
  8431. }
  8432. },
  8433. [
  8434. {
  8435. name: "Micro",
  8436. height: math.unit(3, "inches")
  8437. },
  8438. {
  8439. name: "Normal",
  8440. height: math.unit(5.5, "feet"),
  8441. default: true
  8442. },
  8443. {
  8444. name: "Macro",
  8445. height: math.unit(100, "feet")
  8446. },
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8451. {
  8452. back: {
  8453. height: math.unit(6, "feet"),
  8454. weight: math.unit(220, "lbs"),
  8455. name: "Back",
  8456. image: {
  8457. source: "./media/characters/mandake/back.svg"
  8458. }
  8459. }
  8460. },
  8461. [
  8462. {
  8463. name: "Normal",
  8464. height: math.unit(7, "feet"),
  8465. default: true
  8466. },
  8467. {
  8468. name: "Macro",
  8469. height: math.unit(78, "feet")
  8470. },
  8471. {
  8472. name: "Macro+",
  8473. height: math.unit(300, "meters")
  8474. },
  8475. {
  8476. name: "Macro++",
  8477. height: math.unit(2400, "feet")
  8478. },
  8479. {
  8480. name: "Megamacro",
  8481. height: math.unit(5167, "meters")
  8482. },
  8483. {
  8484. name: "Gigamacro",
  8485. height: math.unit(41769, "miles")
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(120, "lbs"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/yozey/front.svg"
  8498. }
  8499. },
  8500. frontAlt: {
  8501. height: math.unit(6, "feet"),
  8502. weight: math.unit(120, "lbs"),
  8503. name: "Front (Alt)",
  8504. image: {
  8505. source: "./media/characters/yozey/front-alt.svg"
  8506. }
  8507. },
  8508. side: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(120, "lbs"),
  8511. name: "Side",
  8512. image: {
  8513. source: "./media/characters/yozey/side.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(3, "inches"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(6, "feet")
  8526. }
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(103, "lbs"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/valeska-voss/front.svg"
  8538. }
  8539. }
  8540. },
  8541. [
  8542. {
  8543. name: "Mini-Sized Sub",
  8544. height: math.unit(3.1, "inches")
  8545. },
  8546. {
  8547. name: "Mid-Sized Sub",
  8548. height: math.unit(6.2, "inches")
  8549. },
  8550. {
  8551. name: "Full-Sized Sub",
  8552. height: math.unit(9.3, "inches")
  8553. },
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(5 + 2 / 12, "foot"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(160, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/gene-zeta/front.svg",
  8570. extra: 3006 / 2826,
  8571. bottom: 182 / 3188
  8572. }
  8573. }
  8574. },
  8575. [
  8576. {
  8577. name: "Micro",
  8578. height: math.unit(6, "inches")
  8579. },
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(5 + 11 / 12, "foot"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(140, "feet")
  8588. },
  8589. {
  8590. name: "Supercharged",
  8591. height: math.unit(2500, "feet")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(6, "feet"),
  8600. weight: math.unit(350, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/razinox/front.svg",
  8604. extra: 1686 / 1548,
  8605. bottom: 28.2 / 1868
  8606. }
  8607. },
  8608. back: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(350, "lbs"),
  8611. name: "Back",
  8612. image: {
  8613. source: "./media/characters/razinox/back.svg",
  8614. extra: 1660 / 1590,
  8615. bottom: 15 / 1665
  8616. }
  8617. },
  8618. },
  8619. [
  8620. {
  8621. name: "Normal",
  8622. height: math.unit(10 + 8 / 12, "foot")
  8623. },
  8624. {
  8625. name: "Minimacro",
  8626. height: math.unit(15, "foot")
  8627. },
  8628. {
  8629. name: "Macro",
  8630. height: math.unit(60, "foot"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Megamacro",
  8635. height: math.unit(5, "miles")
  8636. },
  8637. {
  8638. name: "Gigamacro",
  8639. height: math.unit(6000, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(6, "feet"),
  8648. weight: math.unit(150, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/cobalt/front.svg"
  8652. }
  8653. }
  8654. },
  8655. [
  8656. {
  8657. name: "Normal",
  8658. height: math.unit(8 + 1 / 12, "foot")
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(111, "foot"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Supracosmic",
  8667. height: math.unit(1e42, "feet")
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(5, "inches"),
  8676. name: "Front",
  8677. image: {
  8678. source: "./media/characters/amanda/front.svg",
  8679. extra: 926/791,
  8680. bottom: 38/964
  8681. }
  8682. },
  8683. back: {
  8684. height: math.unit(5, "inches"),
  8685. name: "Back",
  8686. image: {
  8687. source: "./media/characters/amanda/back.svg",
  8688. extra: 909/805,
  8689. bottom: 43/952
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Micro",
  8696. height: math.unit(5, "inches"),
  8697. default: true
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(2.75, "meters"),
  8706. weight: math.unit(1200, "lb"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/teal/front.svg",
  8710. extra: 2463 / 2320,
  8711. bottom: 166 / 2629
  8712. }
  8713. },
  8714. back: {
  8715. height: math.unit(2.75, "meters"),
  8716. weight: math.unit(1200, "lb"),
  8717. name: "Back",
  8718. image: {
  8719. source: "./media/characters/teal/back.svg",
  8720. extra: 2580 / 2489,
  8721. bottom: 151 / 2731
  8722. }
  8723. },
  8724. sitting: {
  8725. height: math.unit(1.9, "meters"),
  8726. weight: math.unit(1200, "lb"),
  8727. name: "Sitting",
  8728. image: {
  8729. source: "./media/characters/teal/sitting.svg",
  8730. extra: 623 / 590,
  8731. bottom: 121 / 744
  8732. }
  8733. },
  8734. standing: {
  8735. height: math.unit(2.75, "meters"),
  8736. weight: math.unit(1200, "lb"),
  8737. name: "Standing",
  8738. image: {
  8739. source: "./media/characters/teal/standing.svg",
  8740. extra: 923 / 893,
  8741. bottom: 60 / 983
  8742. }
  8743. },
  8744. stretching: {
  8745. height: math.unit(3.65, "meters"),
  8746. weight: math.unit(1200, "lb"),
  8747. name: "Stretching",
  8748. image: {
  8749. source: "./media/characters/teal/stretching.svg",
  8750. extra: 1276 / 1244,
  8751. bottom: 0 / 1276
  8752. }
  8753. },
  8754. legged: {
  8755. height: math.unit(1.3, "meters"),
  8756. weight: math.unit(100, "lb"),
  8757. name: "Legged",
  8758. image: {
  8759. source: "./media/characters/teal/legged.svg",
  8760. extra: 462 / 437,
  8761. bottom: 24 / 486
  8762. }
  8763. },
  8764. naga: {
  8765. height: math.unit(5.4, "meters"),
  8766. weight: math.unit(4000, "lb"),
  8767. name: "Naga",
  8768. image: {
  8769. source: "./media/characters/teal/naga.svg",
  8770. extra: 1902 / 1858,
  8771. bottom: 0 / 1902
  8772. }
  8773. },
  8774. hand: {
  8775. height: math.unit(0.52, "meters"),
  8776. name: "Hand",
  8777. image: {
  8778. source: "./media/characters/teal/hand.svg"
  8779. }
  8780. },
  8781. maw: {
  8782. height: math.unit(0.43, "meters"),
  8783. name: "Maw",
  8784. image: {
  8785. source: "./media/characters/teal/maw.svg"
  8786. }
  8787. },
  8788. slit: {
  8789. height: math.unit(0.25, "meters"),
  8790. name: "Slit",
  8791. image: {
  8792. source: "./media/characters/teal/slit.svg"
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(2.75, "meters"),
  8800. default: true
  8801. },
  8802. {
  8803. name: "Macro",
  8804. height: math.unit(300, "feet")
  8805. },
  8806. {
  8807. name: "Macro+",
  8808. height: math.unit(2000, "feet")
  8809. },
  8810. ]
  8811. ))
  8812. characterMakers.push(() => makeCharacter(
  8813. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8814. {
  8815. frontCat: {
  8816. height: math.unit(6, "feet"),
  8817. weight: math.unit(180, "lbs"),
  8818. name: "Front (Cat)",
  8819. image: {
  8820. source: "./media/characters/ravin-amulet/front-cat.svg"
  8821. }
  8822. },
  8823. frontCatAlt: {
  8824. height: math.unit(6, "feet"),
  8825. weight: math.unit(180, "lbs"),
  8826. name: "Front (Alt, Cat)",
  8827. image: {
  8828. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8829. }
  8830. },
  8831. frontWerewolf: {
  8832. height: math.unit(6 * 1.2, "feet"),
  8833. weight: math.unit(225, "lbs"),
  8834. name: "Front (Werewolf)",
  8835. image: {
  8836. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8837. }
  8838. },
  8839. backWerewolf: {
  8840. height: math.unit(6 * 1.2, "feet"),
  8841. weight: math.unit(225, "lbs"),
  8842. name: "Back (Werewolf)",
  8843. image: {
  8844. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Nano",
  8851. height: math.unit(1, "micrometer")
  8852. },
  8853. {
  8854. name: "Micro",
  8855. height: math.unit(1, "inch")
  8856. },
  8857. {
  8858. name: "Normal",
  8859. height: math.unit(6, "feet"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Macro",
  8864. height: math.unit(60, "feet")
  8865. }
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(6, "feet"),
  8873. weight: math.unit(165, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/fluoresce/front.svg"
  8877. }
  8878. }
  8879. },
  8880. [
  8881. {
  8882. name: "Micro",
  8883. height: math.unit(6, "cm")
  8884. },
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(5 + 7 / 12, "feet"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(56, "feet")
  8893. },
  8894. {
  8895. name: "Megamacro",
  8896. height: math.unit(1.9, "miles")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(9 + 6 / 12, "feet"),
  8905. weight: math.unit(523, "lbs"),
  8906. name: "Side",
  8907. image: {
  8908. source: "./media/characters/aurora/side.svg",
  8909. extra: 474/393,
  8910. bottom: 5/479
  8911. }
  8912. }
  8913. },
  8914. [
  8915. {
  8916. name: "Normal",
  8917. height: math.unit(9 + 6 / 12, "feet")
  8918. },
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(96, "feet"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Macro+",
  8926. height: math.unit(243, "feet")
  8927. },
  8928. ]
  8929. ))
  8930. characterMakers.push(() => makeCharacter(
  8931. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8932. {
  8933. front: {
  8934. height: math.unit(194, "cm"),
  8935. weight: math.unit(90, "kg"),
  8936. name: "Front",
  8937. image: {
  8938. source: "./media/characters/ranek/front.svg",
  8939. extra: 1862/1791,
  8940. bottom: 80/1942
  8941. }
  8942. },
  8943. back: {
  8944. height: math.unit(194, "cm"),
  8945. weight: math.unit(90, "kg"),
  8946. name: "Back",
  8947. image: {
  8948. source: "./media/characters/ranek/back.svg",
  8949. extra: 1853/1787,
  8950. bottom: 74/1927
  8951. }
  8952. },
  8953. feral: {
  8954. height: math.unit(30, "cm"),
  8955. weight: math.unit(1.6, "lbs"),
  8956. name: "Feral",
  8957. image: {
  8958. source: "./media/characters/ranek/feral.svg",
  8959. extra: 990/631,
  8960. bottom: 29/1019
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(194, "cm"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(100, "meters")
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(5 + 6 / 12, "feet"),
  8981. weight: math.unit(153, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/andrew-cooper/front.svg"
  8985. }
  8986. },
  8987. },
  8988. [
  8989. {
  8990. name: "Nano",
  8991. height: math.unit(1, "mm")
  8992. },
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(2, "inches")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(5 + 6 / 12, "feet"),
  9000. default: true
  9001. }
  9002. ]
  9003. ))
  9004. characterMakers.push(() => makeCharacter(
  9005. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9006. {
  9007. front: {
  9008. height: math.unit(6, "feet"),
  9009. weight: math.unit(180, "lbs"),
  9010. name: "Front",
  9011. image: {
  9012. source: "./media/characters/akane-sato/front.svg",
  9013. extra: 1219 / 1140
  9014. }
  9015. },
  9016. back: {
  9017. height: math.unit(6, "feet"),
  9018. weight: math.unit(180, "lbs"),
  9019. name: "Back",
  9020. image: {
  9021. source: "./media/characters/akane-sato/back.svg",
  9022. extra: 1219 / 1170
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(2.5, "meters")
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(250, "meters"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Megamacro",
  9038. height: math.unit(25, "km")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(65, "kg"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/rook/front.svg",
  9051. extra: 960 / 950
  9052. }
  9053. }
  9054. },
  9055. [
  9056. {
  9057. name: "Normal",
  9058. height: math.unit(8.8, "feet")
  9059. },
  9060. {
  9061. name: "Macro",
  9062. height: math.unit(88, "feet"),
  9063. default: true
  9064. },
  9065. {
  9066. name: "Megamacro",
  9067. height: math.unit(8, "miles")
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(12 + 2 / 12, "feet"),
  9076. weight: math.unit(808, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/prodigy/front.svg"
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Normal",
  9086. height: math.unit(12 + 2 / 12, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(143, "feet")
  9092. },
  9093. {
  9094. name: "Macro+",
  9095. height: math.unit(400, "feet")
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9101. {
  9102. front: {
  9103. height: math.unit(6, "feet"),
  9104. weight: math.unit(225, "lbs"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/daniel/front.svg"
  9108. }
  9109. },
  9110. leaning: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(225, "lbs"),
  9113. name: "Leaning",
  9114. image: {
  9115. source: "./media/characters/daniel/leaning.svg"
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Macro",
  9122. height: math.unit(1000, "feet"),
  9123. default: true
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(88, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/chiros/front.svg",
  9136. extra: 306 / 226
  9137. }
  9138. },
  9139. side: {
  9140. height: math.unit(6, "feet"),
  9141. weight: math.unit(88, "lbs"),
  9142. name: "Side",
  9143. image: {
  9144. source: "./media/characters/chiros/side.svg",
  9145. extra: 306 / 226
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Normal",
  9152. height: math.unit(6, "cm"),
  9153. default: true
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9159. {
  9160. front: {
  9161. height: math.unit(6, "feet"),
  9162. weight: math.unit(100, "lbs"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/selka/front.svg",
  9166. extra: 947 / 887
  9167. }
  9168. }
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(5, "cm"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(8 + 3 / 12, "feet"),
  9183. weight: math.unit(424, "lbs"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/verin/front.svg",
  9187. extra: 1845 / 1550
  9188. }
  9189. },
  9190. frontArmored: {
  9191. height: math.unit(8 + 3 / 12, "feet"),
  9192. weight: math.unit(424, "lbs"),
  9193. name: "Front (Armored)",
  9194. image: {
  9195. source: "./media/characters/verin/front-armor.svg",
  9196. extra: 1845 / 1550,
  9197. bottom: 0.01
  9198. }
  9199. },
  9200. back: {
  9201. height: math.unit(8 + 3 / 12, "feet"),
  9202. weight: math.unit(424, "lbs"),
  9203. name: "Back",
  9204. image: {
  9205. source: "./media/characters/verin/back.svg",
  9206. bottom: 0.1,
  9207. extra: 1
  9208. }
  9209. },
  9210. foot: {
  9211. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9212. name: "Foot",
  9213. image: {
  9214. source: "./media/characters/verin/foot.svg"
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(8 + 3 / 12, "feet")
  9222. },
  9223. {
  9224. name: "Minimacro",
  9225. height: math.unit(21, "feet"),
  9226. default: true
  9227. },
  9228. {
  9229. name: "Macro",
  9230. height: math.unit(626, "feet")
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(2.718, "meters"),
  9239. weight: math.unit(150, "lbs"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/sovrim-terraquian/front.svg",
  9243. extra: 1752/1689,
  9244. bottom: 36/1788
  9245. }
  9246. },
  9247. back: {
  9248. height: math.unit(2.718, "meters"),
  9249. weight: math.unit(150, "lbs"),
  9250. name: "Back",
  9251. image: {
  9252. source: "./media/characters/sovrim-terraquian/back.svg",
  9253. extra: 1698/1657,
  9254. bottom: 58/1756
  9255. }
  9256. },
  9257. tongue: {
  9258. height: math.unit(2.865, "feet"),
  9259. name: "Tongue",
  9260. image: {
  9261. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9262. }
  9263. },
  9264. hand: {
  9265. height: math.unit(1.61, "feet"),
  9266. name: "Hand",
  9267. image: {
  9268. source: "./media/characters/sovrim-terraquian/hand.svg"
  9269. }
  9270. },
  9271. foot: {
  9272. height: math.unit(1.05, "feet"),
  9273. name: "Foot",
  9274. image: {
  9275. source: "./media/characters/sovrim-terraquian/foot.svg"
  9276. }
  9277. },
  9278. footAlt: {
  9279. height: math.unit(0.88, "feet"),
  9280. name: "Foot (Alt)",
  9281. image: {
  9282. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Micro",
  9289. height: math.unit(2, "inches")
  9290. },
  9291. {
  9292. name: "Small",
  9293. height: math.unit(1, "meter")
  9294. },
  9295. {
  9296. name: "Normal",
  9297. height: math.unit(Math.E, "meters"),
  9298. default: true
  9299. },
  9300. {
  9301. name: "Macro",
  9302. height: math.unit(20, "meters")
  9303. },
  9304. {
  9305. name: "Macro+",
  9306. height: math.unit(400, "meters")
  9307. },
  9308. ]
  9309. ))
  9310. characterMakers.push(() => makeCharacter(
  9311. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9312. {
  9313. front: {
  9314. height: math.unit(7, "feet"),
  9315. weight: math.unit(489, "lbs"),
  9316. name: "Front",
  9317. image: {
  9318. source: "./media/characters/reece-silvermane/front.svg",
  9319. bottom: 0.02,
  9320. extra: 1
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(1.5, "miles"),
  9328. default: true
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(78, "kg"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/kane/front.svg",
  9341. extra: 978 / 899
  9342. }
  9343. },
  9344. back: {
  9345. height: math.unit(6, "feet"),
  9346. weight: math.unit(78, "kg"),
  9347. name: "Back",
  9348. image: {
  9349. source: "./media/characters/kane/back.svg",
  9350. extra: 1966/1800,
  9351. bottom: 0/1966
  9352. }
  9353. },
  9354. head: {
  9355. height: math.unit(1.4, "feet"),
  9356. name: "Head",
  9357. image: {
  9358. source: "./media/characters/kane/head.svg"
  9359. }
  9360. },
  9361. },
  9362. [
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(2.1, "m"),
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(1, "km"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(6, "feet"),
  9379. weight: math.unit(200, "kg"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/tegon/front.svg",
  9383. bottom: 0.01,
  9384. extra: 1
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Micro",
  9391. height: math.unit(1, "inch")
  9392. },
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(6 + 3 / 12, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Macro",
  9400. height: math.unit(300, "feet")
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(69, "miles")
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9410. {
  9411. side: {
  9412. height: math.unit(6, "feet"),
  9413. weight: math.unit(2304, "lbs"),
  9414. name: "Side",
  9415. image: {
  9416. source: "./media/characters/arcturax/side.svg",
  9417. extra: 790 / 376,
  9418. bottom: 0.01
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(2, "inch")
  9426. },
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(6, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(39, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(7, "miles")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(50, "lbs"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/sentri/front.svg",
  9451. extra: 1750 / 1570,
  9452. bottom: 0.025
  9453. }
  9454. },
  9455. frontAlt: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(50, "lbs"),
  9458. name: "Front (Alt)",
  9459. image: {
  9460. source: "./media/characters/sentri/front-alt.svg",
  9461. extra: 1750 / 1570,
  9462. bottom: 0.025
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(15, "feet"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Macro",
  9474. height: math.unit(2500, "feet")
  9475. }
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(5 + 8 / 12, "feet"),
  9483. weight: math.unit(130, "lbs"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/corvin/front.svg",
  9487. extra: 1803 / 1629
  9488. }
  9489. },
  9490. frontShirt: {
  9491. height: math.unit(5 + 8 / 12, "feet"),
  9492. weight: math.unit(130, "lbs"),
  9493. name: "Front (Shirt)",
  9494. image: {
  9495. source: "./media/characters/corvin/front-shirt.svg",
  9496. extra: 1803 / 1629
  9497. }
  9498. },
  9499. frontPoncho: {
  9500. height: math.unit(5 + 8 / 12, "feet"),
  9501. weight: math.unit(130, "lbs"),
  9502. name: "Front (Poncho)",
  9503. image: {
  9504. source: "./media/characters/corvin/front-poncho.svg",
  9505. extra: 1803 / 1629
  9506. }
  9507. },
  9508. side: {
  9509. height: math.unit(5 + 8 / 12, "feet"),
  9510. weight: math.unit(130, "lbs"),
  9511. name: "Side",
  9512. image: {
  9513. source: "./media/characters/corvin/side.svg",
  9514. extra: 1012 / 945
  9515. }
  9516. },
  9517. back: {
  9518. height: math.unit(5 + 8 / 12, "feet"),
  9519. weight: math.unit(130, "lbs"),
  9520. name: "Back",
  9521. image: {
  9522. source: "./media/characters/corvin/back.svg",
  9523. extra: 1803 / 1629
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Micro",
  9530. height: math.unit(3, "inches")
  9531. },
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(5 + 8 / 12, "feet")
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(300, "feet"),
  9539. default: true
  9540. },
  9541. {
  9542. name: "Megamacro",
  9543. height: math.unit(500, "miles")
  9544. }
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(6, "feet"),
  9552. weight: math.unit(135, "lbs"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/q/front.svg",
  9556. extra: 854 / 752,
  9557. bottom: 0.005
  9558. }
  9559. },
  9560. back: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(130, "lbs"),
  9563. name: "Back",
  9564. image: {
  9565. source: "./media/characters/q/back.svg",
  9566. extra: 854 / 752
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Macro",
  9573. height: math.unit(90, "feet"),
  9574. default: true
  9575. },
  9576. {
  9577. name: "Extra Macro",
  9578. height: math.unit(300, "feet"),
  9579. },
  9580. {
  9581. name: "BIG WALF",
  9582. height: math.unit(750, "feet"),
  9583. },
  9584. ]
  9585. ))
  9586. characterMakers.push(() => makeCharacter(
  9587. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9588. {
  9589. front: {
  9590. height: math.unit(3, "feet"),
  9591. weight: math.unit(28, "lbs"),
  9592. name: "Front",
  9593. image: {
  9594. source: "./media/characters/citrine/front.svg"
  9595. }
  9596. }
  9597. },
  9598. [
  9599. {
  9600. name: "Normal",
  9601. height: math.unit(3, "feet"),
  9602. default: true
  9603. }
  9604. ]
  9605. ))
  9606. characterMakers.push(() => makeCharacter(
  9607. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9608. {
  9609. front: {
  9610. height: math.unit(14, "feet"),
  9611. weight: math.unit(1450, "kg"),
  9612. preyCapacity: math.unit(15, "people"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/aura-starwind/front.svg",
  9616. extra: 1440/1327,
  9617. bottom: 11/1451
  9618. }
  9619. },
  9620. side: {
  9621. height: math.unit(14, "feet"),
  9622. weight: math.unit(1450, "kg"),
  9623. preyCapacity: math.unit(15, "people"),
  9624. name: "Side",
  9625. image: {
  9626. source: "./media/characters/aura-starwind/side.svg",
  9627. extra: 1654 / 1497
  9628. }
  9629. },
  9630. taur: {
  9631. height: math.unit(18, "feet"),
  9632. weight: math.unit(5500, "kg"),
  9633. preyCapacity: math.unit(50, "people"),
  9634. name: "Taur",
  9635. image: {
  9636. source: "./media/characters/aura-starwind/taur.svg",
  9637. extra: 1760 / 1650
  9638. }
  9639. },
  9640. feral: {
  9641. height: math.unit(46, "feet"),
  9642. weight: math.unit(25000, "kg"),
  9643. preyCapacity: math.unit(120, "people"),
  9644. name: "Feral",
  9645. image: {
  9646. source: "./media/characters/aura-starwind/feral.svg"
  9647. }
  9648. },
  9649. },
  9650. [
  9651. {
  9652. name: "Normal",
  9653. height: math.unit(14, "feet"),
  9654. default: true
  9655. },
  9656. {
  9657. name: "Macro",
  9658. height: math.unit(50, "meters")
  9659. },
  9660. {
  9661. name: "Megamacro",
  9662. height: math.unit(5000, "meters")
  9663. },
  9664. {
  9665. name: "Gigamacro",
  9666. height: math.unit(100000, "kilometers")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(2 + 7 / 12, "feet"),
  9675. weight: math.unit(32, "lbs"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/rivet/front.svg",
  9679. extra: 1716 / 1658,
  9680. bottom: 0.03
  9681. }
  9682. },
  9683. foot: {
  9684. height: math.unit(0.551, "feet"),
  9685. name: "Rivet's Foot",
  9686. image: {
  9687. source: "./media/characters/rivet/foot.svg"
  9688. },
  9689. rename: true
  9690. }
  9691. },
  9692. [
  9693. {
  9694. name: "Micro",
  9695. height: math.unit(1.5, "inches"),
  9696. },
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(2 + 7 / 12, "feet"),
  9700. default: true
  9701. },
  9702. {
  9703. name: "Macro",
  9704. height: math.unit(85, "feet")
  9705. },
  9706. {
  9707. name: "Megamacro",
  9708. height: math.unit(2.2, "km")
  9709. }
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9714. {
  9715. front: {
  9716. height: math.unit(5 + 9 / 12, "feet"),
  9717. weight: math.unit(150, "lbs"),
  9718. name: "Front",
  9719. image: {
  9720. source: "./media/characters/coffee/front.svg",
  9721. extra: 946/880,
  9722. bottom: 66/1012
  9723. }
  9724. },
  9725. foot: {
  9726. height: math.unit(1.29, "feet"),
  9727. name: "Foot",
  9728. image: {
  9729. source: "./media/characters/coffee/foot.svg"
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(2, "inches"),
  9737. },
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(5 + 9 / 12, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(800, "feet")
  9746. },
  9747. {
  9748. name: "Megamacro",
  9749. height: math.unit(25, "miles")
  9750. }
  9751. ]
  9752. ))
  9753. characterMakers.push(() => makeCharacter(
  9754. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9755. {
  9756. front: {
  9757. height: math.unit(6, "feet"),
  9758. weight: math.unit(200, "lbs"),
  9759. name: "Front",
  9760. image: {
  9761. source: "./media/characters/chari-gal/front.svg",
  9762. extra: 735/649,
  9763. bottom: 55/790
  9764. },
  9765. form: "normal",
  9766. default: true
  9767. },
  9768. back: {
  9769. height: math.unit(6, "feet"),
  9770. weight: math.unit(200, "lb"),
  9771. name: "Back",
  9772. image: {
  9773. source: "./media/characters/chari-gal/back.svg",
  9774. extra: 762/666,
  9775. bottom: 31/793
  9776. },
  9777. form: "normal"
  9778. },
  9779. mouth: {
  9780. height: math.unit(1.35, "feet"),
  9781. name: "Mouth",
  9782. image: {
  9783. source: "./media/characters/chari-gal/mouth.svg"
  9784. },
  9785. form: "normal"
  9786. },
  9787. gigantamax: {
  9788. height: math.unit(6 * 16, "feet"),
  9789. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9790. name: "Gigantamax",
  9791. image: {
  9792. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9793. extra: 1507/1149,
  9794. bottom: 254/1761
  9795. },
  9796. form: "gigantamax",
  9797. default: true
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(5 + 7 / 12, "feet"),
  9804. form: "normal",
  9805. },
  9806. {
  9807. name: "Macro",
  9808. height: math.unit(200, "feet"),
  9809. default: true,
  9810. form: "normal"
  9811. },
  9812. {
  9813. name: "Normal",
  9814. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9815. form: "gigantamax",
  9816. },
  9817. {
  9818. name: "Macro",
  9819. height: math.unit(16 * 200, "feet"),
  9820. default: true,
  9821. form: "gigantamax"
  9822. },
  9823. ],
  9824. {
  9825. "normal": {
  9826. name: "Normal",
  9827. default: true
  9828. },
  9829. "gigantamax": {
  9830. name: "Gigantamax",
  9831. },
  9832. }
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(6, "feet"),
  9839. weight: math.unit(150, "lbs"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/nova/front.svg",
  9843. extra: 5000 / 4722,
  9844. bottom: 0.02
  9845. }
  9846. }
  9847. },
  9848. [
  9849. {
  9850. name: "Micro-",
  9851. height: math.unit(0.8, "inches")
  9852. },
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(2, "inches"),
  9856. default: true
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9862. {
  9863. koboldFront: {
  9864. height: math.unit(3 + 1 / 12, "feet"),
  9865. weight: math.unit(21.7, "lbs"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/argent/kobold-front.svg",
  9869. extra: 1471 / 1331,
  9870. bottom: 100.8 / 1575.5
  9871. },
  9872. form: "kobold",
  9873. default: true
  9874. },
  9875. dragonFront: {
  9876. height: math.unit(75, "inches"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/argent/dragon-front.svg",
  9880. extra: 1389/1248,
  9881. bottom: 54/1443
  9882. },
  9883. form: "dragon",
  9884. },
  9885. dragonBack: {
  9886. height: math.unit(75, "inches"),
  9887. name: "Back",
  9888. image: {
  9889. source: "./media/characters/argent/dragon-back.svg",
  9890. extra: 1399/1271,
  9891. bottom: 23/1422
  9892. },
  9893. form: "dragon",
  9894. },
  9895. dragonDressed: {
  9896. height: math.unit(75, "inches"),
  9897. name: "Dressed",
  9898. image: {
  9899. source: "./media/characters/argent/dragon-dressed.svg",
  9900. extra: 1350/1215,
  9901. bottom: 26/1376
  9902. },
  9903. form: "dragon"
  9904. },
  9905. dragonHead: {
  9906. height: math.unit(23.5, "inches"),
  9907. name: "Head",
  9908. image: {
  9909. source: "./media/characters/argent/dragon-head.svg"
  9910. },
  9911. form: "dragon",
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(2, "inches"),
  9918. form: "kobold",
  9919. },
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(3 + 1 / 12, "feet"),
  9923. form: "kobold",
  9924. default: true
  9925. },
  9926. {
  9927. name: "Macro",
  9928. height: math.unit(120, "feet"),
  9929. form: "kobold",
  9930. },
  9931. {
  9932. name: "Speck",
  9933. height: math.unit(1, "mm"),
  9934. form: "dragon",
  9935. },
  9936. {
  9937. name: "Tiny",
  9938. height: math.unit(1, "cm"),
  9939. form: "dragon",
  9940. },
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(5, "cm"),
  9944. form: "dragon",
  9945. },
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(75, "inches"),
  9949. form: "dragon",
  9950. default: true
  9951. },
  9952. {
  9953. name: "Extra Tall",
  9954. height: math.unit(9, "feet"),
  9955. form: "dragon",
  9956. },
  9957. {
  9958. name: "Inconvenient",
  9959. height: math.unit(5, "meters"),
  9960. form: "dragon",
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(70, "meters"),
  9965. form: "dragon",
  9966. },
  9967. {
  9968. name: "Macro+",
  9969. height: math.unit(250, "meters"),
  9970. form: "dragon",
  9971. },
  9972. {
  9973. name: "Megamacro",
  9974. height: math.unit(20, "km"),
  9975. form: "dragon",
  9976. },
  9977. {
  9978. name: "Mountainous",
  9979. height: math.unit(100, "km"),
  9980. form: "dragon",
  9981. },
  9982. {
  9983. name: "Continental",
  9984. height: math.unit(2, "megameters"),
  9985. form: "dragon",
  9986. },
  9987. {
  9988. name: "Too Big",
  9989. height: math.unit(900, "megameters"),
  9990. form: "dragon",
  9991. },
  9992. ],
  9993. {
  9994. "kobold": {
  9995. name: "Kobold",
  9996. default: true
  9997. },
  9998. "dragon": {
  9999. name: "Dragon",
  10000. },
  10001. }
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10005. {
  10006. lamp: {
  10007. height: math.unit(7 * 1559 / 989, "feet"),
  10008. name: "Magic Lamp",
  10009. image: {
  10010. source: "./media/characters/mira-al-cul/lamp.svg",
  10011. extra: 1617 / 1559
  10012. }
  10013. },
  10014. front: {
  10015. height: math.unit(7, "feet"),
  10016. name: "Front",
  10017. image: {
  10018. source: "./media/characters/mira-al-cul/front.svg",
  10019. extra: 1044 / 990
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Heavily Restricted",
  10026. height: math.unit(7 * 1559 / 989, "feet")
  10027. },
  10028. {
  10029. name: "Freshly Freed",
  10030. height: math.unit(50 * 1559 / 989, "feet")
  10031. },
  10032. {
  10033. name: "World Encompassing",
  10034. height: math.unit(10000 * 1559 / 989, "miles")
  10035. },
  10036. {
  10037. name: "Galactic",
  10038. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10039. },
  10040. {
  10041. name: "Palmed Universe",
  10042. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Multiversal Matriarch",
  10047. height: math.unit(8.87e10, "yottameters")
  10048. },
  10049. {
  10050. name: "Void Mother",
  10051. height: math.unit(3.14e110, "yottaparsecs")
  10052. },
  10053. {
  10054. name: "Toying with Transcendence",
  10055. height: math.unit(1e307, "meters")
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10061. {
  10062. front: {
  10063. height: math.unit(17 + 1 / 12, "feet"),
  10064. weight: math.unit(476.2 * 5, "lbs"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/kuro-shi-uchū/front.svg",
  10068. extra: 2329 / 1835,
  10069. bottom: 0.02
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Micro",
  10076. height: math.unit(2, "inches")
  10077. },
  10078. {
  10079. name: "Normal",
  10080. height: math.unit(12, "meters")
  10081. },
  10082. {
  10083. name: "Planetary",
  10084. height: math.unit(0.00929, "AU"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Universal",
  10089. height: math.unit(20, "gigaparsecs")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(5 + 2 / 12, "feet"),
  10098. weight: math.unit(120, "lbs"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/katherine/front.svg",
  10102. extra: 2075 / 1969
  10103. }
  10104. },
  10105. dress: {
  10106. height: math.unit(5 + 2 / 12, "feet"),
  10107. weight: math.unit(120, "lbs"),
  10108. name: "Dress",
  10109. image: {
  10110. source: "./media/characters/katherine/dress.svg",
  10111. extra: 2258 / 2064
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Micro",
  10118. height: math.unit(1, "inches"),
  10119. default: true
  10120. },
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(5 + 2 / 12, "feet")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(100, "meters")
  10128. },
  10129. {
  10130. name: "Megamacro",
  10131. height: math.unit(80, "miles")
  10132. },
  10133. ]
  10134. ))
  10135. characterMakers.push(() => makeCharacter(
  10136. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10137. {
  10138. front: {
  10139. height: math.unit(7 + 8 / 12, "feet"),
  10140. weight: math.unit(250, "lbs"),
  10141. name: "Front",
  10142. image: {
  10143. source: "./media/characters/yevis/front.svg",
  10144. extra: 1938 / 1755
  10145. }
  10146. }
  10147. },
  10148. [
  10149. {
  10150. name: "Mortal",
  10151. height: math.unit(7 + 8 / 12, "feet")
  10152. },
  10153. {
  10154. name: "Battle",
  10155. height: math.unit(25 + 11 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Wrath",
  10159. height: math.unit(1654 + 11 / 12, "feet")
  10160. },
  10161. {
  10162. name: "Planet Destroyer",
  10163. height: math.unit(12000, "miles")
  10164. },
  10165. {
  10166. name: "Galaxy Conqueror",
  10167. height: math.unit(1.45, "zettameters"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Universal War",
  10172. height: math.unit(184, "gigaparsecs")
  10173. },
  10174. {
  10175. name: "Eternity War",
  10176. height: math.unit(1.98e55, "yottaparsecs")
  10177. },
  10178. ]
  10179. ))
  10180. characterMakers.push(() => makeCharacter(
  10181. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10182. {
  10183. front: {
  10184. height: math.unit(5 + 8 / 12, "feet"),
  10185. weight: math.unit(63, "kg"),
  10186. name: "Front",
  10187. image: {
  10188. source: "./media/characters/xavier/front.svg",
  10189. extra: 944 / 883
  10190. }
  10191. },
  10192. frontStretch: {
  10193. height: math.unit(5 + 8 / 12, "feet"),
  10194. weight: math.unit(63, "kg"),
  10195. name: "Stretching",
  10196. image: {
  10197. source: "./media/characters/xavier/front-stretch.svg",
  10198. extra: 962 / 820
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(5 + 8 / 12, "feet")
  10206. },
  10207. {
  10208. name: "Macro",
  10209. height: math.unit(100, "meters"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "McLargeHuge",
  10214. height: math.unit(10, "miles")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(5 + 5 / 12, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/joshii/front.svg",
  10227. extra: 765 / 653,
  10228. bottom: 51 / 816
  10229. }
  10230. },
  10231. foot: {
  10232. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10233. name: "Foot",
  10234. image: {
  10235. source: "./media/characters/joshii/foot.svg"
  10236. }
  10237. },
  10238. },
  10239. [
  10240. {
  10241. name: "Micro",
  10242. height: math.unit(2, "inches")
  10243. },
  10244. {
  10245. name: "Normal",
  10246. height: math.unit(5 + 5 / 12, "feet")
  10247. },
  10248. {
  10249. name: "Macro",
  10250. height: math.unit(785, "feet"),
  10251. default: true
  10252. },
  10253. {
  10254. name: "Megamacro",
  10255. height: math.unit(24.5, "miles")
  10256. },
  10257. ]
  10258. ))
  10259. characterMakers.push(() => makeCharacter(
  10260. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10261. {
  10262. front: {
  10263. height: math.unit(6, "feet"),
  10264. weight: math.unit(150, "lb"),
  10265. name: "Front",
  10266. image: {
  10267. source: "./media/characters/goddess-elizabeth/front.svg",
  10268. extra: 1800 / 1525,
  10269. bottom: 0.005
  10270. }
  10271. },
  10272. foot: {
  10273. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10274. name: "Foot",
  10275. image: {
  10276. source: "./media/characters/goddess-elizabeth/foot.svg"
  10277. }
  10278. },
  10279. mouth: {
  10280. height: math.unit(6, "feet"),
  10281. name: "Mouth",
  10282. image: {
  10283. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Micro",
  10290. height: math.unit(12, "feet")
  10291. },
  10292. {
  10293. name: "Normal",
  10294. height: math.unit(80, "miles"),
  10295. default: true
  10296. },
  10297. {
  10298. name: "Macro",
  10299. height: math.unit(15000, "parsecs")
  10300. },
  10301. ]
  10302. ))
  10303. characterMakers.push(() => makeCharacter(
  10304. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10305. {
  10306. front: {
  10307. height: math.unit(5 + 9 / 12, "feet"),
  10308. weight: math.unit(144, "lb"),
  10309. name: "Front",
  10310. image: {
  10311. source: "./media/characters/kara/front.svg"
  10312. }
  10313. },
  10314. feet: {
  10315. height: math.unit(6 / 6.765, "feet"),
  10316. name: "Kara's Feet",
  10317. rename: true,
  10318. image: {
  10319. source: "./media/characters/kara/feet.svg"
  10320. }
  10321. },
  10322. },
  10323. [
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(5 + 9 / 12, "feet")
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(174, "feet"),
  10331. default: true
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10337. {
  10338. front: {
  10339. height: math.unit(18, "feet"),
  10340. weight: math.unit(4050, "lb"),
  10341. name: "Front",
  10342. image: {
  10343. source: "./media/characters/tyrone/front.svg",
  10344. extra: 2405 / 2270,
  10345. bottom: 182 / 2587
  10346. }
  10347. },
  10348. },
  10349. [
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(18, "feet"),
  10353. default: true
  10354. },
  10355. {
  10356. name: "Macro",
  10357. height: math.unit(300, "feet")
  10358. },
  10359. {
  10360. name: "Megamacro",
  10361. height: math.unit(15, "km")
  10362. },
  10363. {
  10364. name: "Gigamacro",
  10365. height: math.unit(500, "km")
  10366. },
  10367. {
  10368. name: "Teramacro",
  10369. height: math.unit(0.5, "gigameters")
  10370. },
  10371. {
  10372. name: "Omnimacro",
  10373. height: math.unit(1e252, "yottauniverse")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(7 + 8 / 12, "feet"),
  10382. weight: math.unit(120, "lb"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/danny/front.svg",
  10386. extra: 1490 / 1350
  10387. }
  10388. },
  10389. back: {
  10390. height: math.unit(7 + 8 / 12, "feet"),
  10391. weight: math.unit(120, "lb"),
  10392. name: "Back",
  10393. image: {
  10394. source: "./media/characters/danny/back.svg",
  10395. extra: 1490 / 1350
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Normal",
  10402. height: math.unit(7 + 8 / 12, "feet"),
  10403. default: true
  10404. },
  10405. ]
  10406. ))
  10407. characterMakers.push(() => makeCharacter(
  10408. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10409. {
  10410. front: {
  10411. height: math.unit(3.5, "inches"),
  10412. weight: math.unit(19, "grams"),
  10413. name: "Front",
  10414. image: {
  10415. source: "./media/characters/mallow/front.svg",
  10416. extra: 471 / 431
  10417. }
  10418. },
  10419. back: {
  10420. height: math.unit(3.5, "inches"),
  10421. weight: math.unit(19, "grams"),
  10422. name: "Back",
  10423. image: {
  10424. source: "./media/characters/mallow/back.svg",
  10425. extra: 471 / 431
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(3.5, "inches"),
  10433. default: true
  10434. },
  10435. ]
  10436. ))
  10437. characterMakers.push(() => makeCharacter(
  10438. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10439. {
  10440. front: {
  10441. height: math.unit(9, "feet"),
  10442. weight: math.unit(230, "kg"),
  10443. name: "Front",
  10444. image: {
  10445. source: "./media/characters/starry-aqua/front.svg"
  10446. }
  10447. },
  10448. back: {
  10449. height: math.unit(9, "feet"),
  10450. weight: math.unit(230, "kg"),
  10451. name: "Back",
  10452. image: {
  10453. source: "./media/characters/starry-aqua/back.svg"
  10454. }
  10455. },
  10456. hand: {
  10457. height: math.unit(9 * 0.1168, "feet"),
  10458. name: "Hand",
  10459. image: {
  10460. source: "./media/characters/starry-aqua/hand.svg"
  10461. }
  10462. },
  10463. foot: {
  10464. height: math.unit(9 * 0.18, "feet"),
  10465. name: "Foot",
  10466. image: {
  10467. source: "./media/characters/starry-aqua/foot.svg"
  10468. }
  10469. }
  10470. },
  10471. [
  10472. {
  10473. name: "Micro",
  10474. height: math.unit(3, "inches")
  10475. },
  10476. {
  10477. name: "Normal",
  10478. height: math.unit(9, "feet")
  10479. },
  10480. {
  10481. name: "Macro",
  10482. height: math.unit(300, "feet"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Megamacro",
  10487. height: math.unit(3200, "feet")
  10488. }
  10489. ]
  10490. ))
  10491. characterMakers.push(() => makeCharacter(
  10492. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10493. {
  10494. front: {
  10495. height: math.unit(15, "feet"),
  10496. weight: math.unit(5026, "lb"),
  10497. name: "Front",
  10498. image: {
  10499. source: "./media/characters/luka-towers/front.svg",
  10500. extra: 1269/1133,
  10501. bottom: 51/1320
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Normal",
  10508. height: math.unit(15, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Minimacro",
  10513. height: math.unit(25, "feet")
  10514. },
  10515. {
  10516. name: "Macro",
  10517. height: math.unit(320, "feet")
  10518. },
  10519. {
  10520. name: "Megamacro",
  10521. height: math.unit(35000, "feet")
  10522. },
  10523. {
  10524. name: "Gigamacro",
  10525. height: math.unit(4000, "miles")
  10526. },
  10527. {
  10528. name: "Teramacro",
  10529. height: math.unit(15000, "miles")
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(6, "feet"),
  10538. weight: math.unit(150, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/natalie-nightring/front.svg",
  10542. extra: 1,
  10543. bottom: 0.06
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Uh Oh",
  10550. height: math.unit(0.1, "mm")
  10551. },
  10552. {
  10553. name: "Small",
  10554. height: math.unit(3, "inches")
  10555. },
  10556. {
  10557. name: "Human Scale",
  10558. height: math.unit(6, "feet")
  10559. },
  10560. {
  10561. name: "Librarian",
  10562. height: math.unit(50, "feet"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Immense",
  10567. height: math.unit(200, "miles")
  10568. },
  10569. ]
  10570. ))
  10571. characterMakers.push(() => makeCharacter(
  10572. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10573. {
  10574. front: {
  10575. height: math.unit(6, "feet"),
  10576. weight: math.unit(180, "lbs"),
  10577. name: "Front",
  10578. image: {
  10579. source: "./media/characters/danni-rosie/front.svg",
  10580. extra: 1260 / 1128,
  10581. bottom: 0.022
  10582. }
  10583. },
  10584. },
  10585. [
  10586. {
  10587. name: "Micro",
  10588. height: math.unit(2, "inches"),
  10589. default: true
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(5 + 9 / 12, "feet"),
  10598. weight: math.unit(220, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/samantha-kruse/front.svg",
  10602. extra: (985 / 935),
  10603. bottom: 0.03
  10604. }
  10605. },
  10606. frontUndressed: {
  10607. height: math.unit(5 + 9 / 12, "feet"),
  10608. weight: math.unit(220, "lb"),
  10609. name: "Front (Undressed)",
  10610. image: {
  10611. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10612. extra: (973 / 923),
  10613. bottom: 0.025
  10614. }
  10615. },
  10616. fat: {
  10617. height: math.unit(5 + 9 / 12, "feet"),
  10618. weight: math.unit(900, "lb"),
  10619. name: "Front (Fat)",
  10620. image: {
  10621. source: "./media/characters/samantha-kruse/fat.svg",
  10622. extra: 2688 / 2561
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(5 + 9 / 12, "feet"),
  10630. default: true
  10631. }
  10632. ]
  10633. ))
  10634. characterMakers.push(() => makeCharacter(
  10635. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10636. {
  10637. back: {
  10638. height: math.unit(5 + 4 / 12, "feet"),
  10639. weight: math.unit(4963, "lb"),
  10640. name: "Back",
  10641. image: {
  10642. source: "./media/characters/amelia-rosie/back.svg",
  10643. extra: 1113 / 963,
  10644. bottom: 0.01
  10645. }
  10646. },
  10647. },
  10648. [
  10649. {
  10650. name: "Level 0",
  10651. height: math.unit(5 + 4 / 12, "feet")
  10652. },
  10653. {
  10654. name: "Level 1",
  10655. height: math.unit(164597, "feet"),
  10656. default: true
  10657. },
  10658. {
  10659. name: "Level 2",
  10660. height: math.unit(956243, "miles")
  10661. },
  10662. {
  10663. name: "Level 3",
  10664. height: math.unit(29421709423, "miles")
  10665. },
  10666. {
  10667. name: "Level 4",
  10668. height: math.unit(154, "lightyears")
  10669. },
  10670. {
  10671. name: "Level 5",
  10672. height: math.unit(4738272, "lightyears")
  10673. },
  10674. {
  10675. name: "Level 6",
  10676. height: math.unit(145787152896, "lightyears")
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(5 + 11 / 12, "feet"),
  10685. weight: math.unit(65, "kg"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/rook-kitara/front.svg",
  10689. extra: 1347 / 1274,
  10690. bottom: 0.005
  10691. }
  10692. },
  10693. },
  10694. [
  10695. {
  10696. name: "Totally Unfair",
  10697. height: math.unit(1.8, "mm")
  10698. },
  10699. {
  10700. name: "Lap Rookie",
  10701. height: math.unit(1.4, "feet")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(5 + 11 / 12, "feet"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "How Did This Happen",
  10710. height: math.unit(80, "miles")
  10711. }
  10712. ]
  10713. ))
  10714. characterMakers.push(() => makeCharacter(
  10715. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10716. {
  10717. front: {
  10718. height: math.unit(7, "feet"),
  10719. weight: math.unit(300, "lb"),
  10720. name: "Front",
  10721. image: {
  10722. source: "./media/characters/pisces/front.svg",
  10723. extra: 2255 / 2115,
  10724. bottom: 0.03
  10725. }
  10726. },
  10727. back: {
  10728. height: math.unit(7, "feet"),
  10729. weight: math.unit(300, "lb"),
  10730. name: "Back",
  10731. image: {
  10732. source: "./media/characters/pisces/back.svg",
  10733. extra: 2146 / 2055,
  10734. bottom: 0.04
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(7, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Swimming Pool",
  10746. height: math.unit(12.2, "meters")
  10747. },
  10748. {
  10749. name: "Olympic Swimming Pool",
  10750. height: math.unit(56.3, "meters")
  10751. },
  10752. {
  10753. name: "Lake Superior",
  10754. height: math.unit(93900, "meters")
  10755. },
  10756. {
  10757. name: "Mediterranean Sea",
  10758. height: math.unit(644457, "meters")
  10759. },
  10760. {
  10761. name: "World's Oceans",
  10762. height: math.unit(4567491, "meters")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(2.3, "meters"),
  10771. weight: math.unit(120, "kg"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/zelas/front.svg"
  10775. }
  10776. },
  10777. side: {
  10778. height: math.unit(2.3, "meters"),
  10779. weight: math.unit(120, "kg"),
  10780. name: "Side",
  10781. image: {
  10782. source: "./media/characters/zelas/side.svg"
  10783. }
  10784. },
  10785. back: {
  10786. height: math.unit(2.3, "meters"),
  10787. weight: math.unit(120, "kg"),
  10788. name: "Back",
  10789. image: {
  10790. source: "./media/characters/zelas/back.svg"
  10791. }
  10792. },
  10793. foot: {
  10794. height: math.unit(1.116, "feet"),
  10795. name: "Foot",
  10796. image: {
  10797. source: "./media/characters/zelas/foot.svg"
  10798. }
  10799. },
  10800. },
  10801. [
  10802. {
  10803. name: "Normal",
  10804. height: math.unit(2.3, "meters")
  10805. },
  10806. {
  10807. name: "Macro",
  10808. height: math.unit(30, "meters"),
  10809. default: true
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(1, "inch"),
  10818. weight: math.unit(0.21, "grams"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/talbot/front.svg",
  10822. extra: 594 / 544
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Micro",
  10829. height: math.unit(1, "inch"),
  10830. default: true
  10831. },
  10832. ]
  10833. ))
  10834. characterMakers.push(() => makeCharacter(
  10835. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10836. {
  10837. front: {
  10838. height: math.unit(3 + 3 / 12, "feet"),
  10839. weight: math.unit(51.8, "lb"),
  10840. name: "Front",
  10841. image: {
  10842. source: "./media/characters/fliss/front.svg",
  10843. extra: 840 / 640
  10844. }
  10845. },
  10846. },
  10847. [
  10848. {
  10849. name: "Teeny Tiny",
  10850. height: math.unit(1, "mm")
  10851. },
  10852. {
  10853. name: "Small",
  10854. height: math.unit(1, "inch"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Standard Sylveon",
  10859. height: math.unit(3 + 3 / 12, "feet")
  10860. },
  10861. {
  10862. name: "Large Nuisance",
  10863. height: math.unit(33, "feet")
  10864. },
  10865. {
  10866. name: "City Filler",
  10867. height: math.unit(3000, "feet")
  10868. },
  10869. {
  10870. name: "New Horizon",
  10871. height: math.unit(6000, "miles")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10877. {
  10878. front: {
  10879. height: math.unit(5, "cm"),
  10880. weight: math.unit(1.94, "g"),
  10881. name: "Front",
  10882. image: {
  10883. source: "./media/characters/fleta/front.svg",
  10884. extra: 835 / 803
  10885. }
  10886. },
  10887. back: {
  10888. height: math.unit(5, "cm"),
  10889. weight: math.unit(1.94, "g"),
  10890. name: "Back",
  10891. image: {
  10892. source: "./media/characters/fleta/back.svg",
  10893. extra: 835 / 803
  10894. }
  10895. },
  10896. },
  10897. [
  10898. {
  10899. name: "Micro",
  10900. height: math.unit(5, "cm"),
  10901. default: true
  10902. },
  10903. ]
  10904. ))
  10905. characterMakers.push(() => makeCharacter(
  10906. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10907. {
  10908. front: {
  10909. height: math.unit(6, "feet"),
  10910. weight: math.unit(225, "lb"),
  10911. name: "Front",
  10912. image: {
  10913. source: "./media/characters/dominic/front.svg",
  10914. extra: 1770 / 1620,
  10915. bottom: 0.025
  10916. }
  10917. },
  10918. back: {
  10919. height: math.unit(6, "feet"),
  10920. weight: math.unit(225, "lb"),
  10921. name: "Back",
  10922. image: {
  10923. source: "./media/characters/dominic/back.svg",
  10924. extra: 1745 / 1620,
  10925. bottom: 0.065
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Nano",
  10932. height: math.unit(0.1, "mm")
  10933. },
  10934. {
  10935. name: "Micro-",
  10936. height: math.unit(1, "mm")
  10937. },
  10938. {
  10939. name: "Micro",
  10940. height: math.unit(4, "inches")
  10941. },
  10942. {
  10943. name: "Normal",
  10944. height: math.unit(6 + 4 / 12, "feet"),
  10945. default: true
  10946. },
  10947. {
  10948. name: "Macro",
  10949. height: math.unit(115, "feet")
  10950. },
  10951. {
  10952. name: "Macro+",
  10953. height: math.unit(955, "feet")
  10954. },
  10955. {
  10956. name: "Megamacro",
  10957. height: math.unit(8990, "feet")
  10958. },
  10959. {
  10960. name: "Gigmacro",
  10961. height: math.unit(9310, "miles")
  10962. },
  10963. {
  10964. name: "Teramacro",
  10965. height: math.unit(1567005010, "miles")
  10966. },
  10967. {
  10968. name: "Examacro",
  10969. height: math.unit(1425, "parsecs")
  10970. },
  10971. ]
  10972. ))
  10973. characterMakers.push(() => makeCharacter(
  10974. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10975. {
  10976. front: {
  10977. height: math.unit(400, "feet"),
  10978. weight: math.unit(44444444, "lb"),
  10979. name: "Front",
  10980. image: {
  10981. source: "./media/characters/major-colonel/front.svg"
  10982. }
  10983. },
  10984. back: {
  10985. height: math.unit(400, "feet"),
  10986. weight: math.unit(44444444, "lb"),
  10987. name: "Back",
  10988. image: {
  10989. source: "./media/characters/major-colonel/back.svg"
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Macro",
  10996. height: math.unit(400, "feet"),
  10997. default: true
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11003. {
  11004. catFront: {
  11005. height: math.unit(6, "feet"),
  11006. weight: math.unit(120, "lb"),
  11007. name: "Front (Cat Side)",
  11008. image: {
  11009. source: "./media/characters/axel-lycan/cat-front.svg",
  11010. extra: 430 / 402,
  11011. bottom: 43 / 472.35
  11012. }
  11013. },
  11014. catBack: {
  11015. height: math.unit(6, "feet"),
  11016. weight: math.unit(120, "lb"),
  11017. name: "Back (Cat Side)",
  11018. image: {
  11019. source: "./media/characters/axel-lycan/cat-back.svg",
  11020. extra: 447 / 419,
  11021. bottom: 23.3 / 469
  11022. }
  11023. },
  11024. wolfFront: {
  11025. height: math.unit(6, "feet"),
  11026. weight: math.unit(120, "lb"),
  11027. name: "Front (Wolf Side)",
  11028. image: {
  11029. source: "./media/characters/axel-lycan/wolf-front.svg",
  11030. extra: 485 / 456,
  11031. bottom: 19 / 504
  11032. }
  11033. },
  11034. wolfBack: {
  11035. height: math.unit(6, "feet"),
  11036. weight: math.unit(120, "lb"),
  11037. name: "Back (Wolf Side)",
  11038. image: {
  11039. source: "./media/characters/axel-lycan/wolf-back.svg",
  11040. extra: 475 / 438,
  11041. bottom: 39.2 / 514
  11042. }
  11043. },
  11044. },
  11045. [
  11046. {
  11047. name: "Macro",
  11048. height: math.unit(1, "km"),
  11049. default: true
  11050. },
  11051. ]
  11052. ))
  11053. characterMakers.push(() => makeCharacter(
  11054. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11055. {
  11056. front: {
  11057. height: math.unit(5 + 9 / 12, "feet"),
  11058. weight: math.unit(175, "lb"),
  11059. name: "Front",
  11060. image: {
  11061. source: "./media/characters/vanrel-hyena/front.svg",
  11062. extra: 1086 / 1010,
  11063. bottom: 0.04
  11064. }
  11065. },
  11066. },
  11067. [
  11068. {
  11069. name: "Normal",
  11070. height: math.unit(5 + 9 / 12, "feet"),
  11071. default: true
  11072. },
  11073. ]
  11074. ))
  11075. characterMakers.push(() => makeCharacter(
  11076. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11077. {
  11078. front: {
  11079. height: math.unit(6, "feet"),
  11080. weight: math.unit(103, "lb"),
  11081. name: "Front",
  11082. image: {
  11083. source: "./media/characters/abbott-absol/front.svg",
  11084. extra: 765/694,
  11085. bottom: 47/812
  11086. }
  11087. },
  11088. },
  11089. [
  11090. {
  11091. name: "Megamicro",
  11092. height: math.unit(0.1, "mm")
  11093. },
  11094. {
  11095. name: "Micro",
  11096. height: math.unit(1, "inch")
  11097. },
  11098. {
  11099. name: "Normal",
  11100. height: math.unit(6, "feet"),
  11101. default: true
  11102. },
  11103. ]
  11104. ))
  11105. characterMakers.push(() => makeCharacter(
  11106. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11107. {
  11108. front: {
  11109. height: math.unit(6, "feet"),
  11110. weight: math.unit(264, "lb"),
  11111. name: "Front",
  11112. image: {
  11113. source: "./media/characters/hector/front.svg",
  11114. extra: 2280 / 2130,
  11115. bottom: 0.07
  11116. }
  11117. },
  11118. },
  11119. [
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(12.25, "foot"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Macro",
  11127. height: math.unit(160, "feet")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11133. {
  11134. front: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(150, "lb"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/sal/front.svg",
  11140. extra: 1846 / 1699,
  11141. bottom: 0.04
  11142. }
  11143. },
  11144. },
  11145. [
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(10, "miles"),
  11149. default: true
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11155. {
  11156. front: {
  11157. height: math.unit(3, "meters"),
  11158. weight: math.unit(450, "kg"),
  11159. name: "front",
  11160. image: {
  11161. source: "./media/characters/ranger/front.svg",
  11162. extra: 2401 / 2243,
  11163. bottom: 0.05
  11164. }
  11165. },
  11166. },
  11167. [
  11168. {
  11169. name: "Normal",
  11170. height: math.unit(3, "meters"),
  11171. default: true
  11172. },
  11173. ]
  11174. ))
  11175. characterMakers.push(() => makeCharacter(
  11176. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11177. {
  11178. front: {
  11179. height: math.unit(14, "feet"),
  11180. weight: math.unit(800, "kg"),
  11181. name: "Front",
  11182. image: {
  11183. source: "./media/characters/theresa/front.svg",
  11184. extra: 3575 / 3346,
  11185. bottom: 0.03
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Normal",
  11192. height: math.unit(14, "feet"),
  11193. default: true
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11199. {
  11200. front: {
  11201. height: math.unit(6, "feet"),
  11202. weight: math.unit(3, "kg"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/ine/front.svg",
  11206. extra: 678 / 539,
  11207. bottom: 0.023
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(2.265, "feet"),
  11215. default: true
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(5, "feet"),
  11224. weight: math.unit(30, "kg"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/vial/front.svg",
  11228. extra: 1365 / 1277,
  11229. bottom: 0.04
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Normal",
  11236. height: math.unit(5, "feet"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11243. {
  11244. side: {
  11245. height: math.unit(3.4, "meters"),
  11246. weight: math.unit(1000, "lb"),
  11247. name: "Side",
  11248. image: {
  11249. source: "./media/characters/rovoska/side.svg",
  11250. extra: 4403 / 1515
  11251. }
  11252. },
  11253. },
  11254. [
  11255. {
  11256. name: "Normal",
  11257. height: math.unit(3.4, "meters"),
  11258. default: true
  11259. },
  11260. ]
  11261. ))
  11262. characterMakers.push(() => makeCharacter(
  11263. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11264. {
  11265. front: {
  11266. height: math.unit(8, "feet"),
  11267. weight: math.unit(315, "lb"),
  11268. name: "Front",
  11269. image: {
  11270. source: "./media/characters/gunner-rotthbauer/front.svg"
  11271. }
  11272. },
  11273. back: {
  11274. height: math.unit(8, "feet"),
  11275. weight: math.unit(315, "lb"),
  11276. name: "Back",
  11277. image: {
  11278. source: "./media/characters/gunner-rotthbauer/back.svg"
  11279. }
  11280. },
  11281. },
  11282. [
  11283. {
  11284. name: "Micro",
  11285. height: math.unit(3.5, "inches")
  11286. },
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(8, "feet"),
  11290. default: true
  11291. },
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(250, "feet")
  11295. },
  11296. {
  11297. name: "Megamacro",
  11298. height: math.unit(1, "AU")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(5 + 5 / 12, "feet"),
  11307. weight: math.unit(140, "lb"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/allatia/front.svg",
  11311. extra: 1227 / 1180,
  11312. bottom: 0.027
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Normal",
  11319. height: math.unit(5 + 5 / 12, "feet")
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(250, "feet"),
  11324. default: true
  11325. },
  11326. {
  11327. name: "Megamacro",
  11328. height: math.unit(8, "miles")
  11329. }
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(120, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/tene/front.svg",
  11341. extra: 814/750,
  11342. bottom: 36/850
  11343. }
  11344. },
  11345. stomping: {
  11346. height: math.unit(2.025, "meters"),
  11347. weight: math.unit(120, "lb"),
  11348. name: "Stomping",
  11349. image: {
  11350. source: "./media/characters/tene/stomping.svg",
  11351. extra: 885/821,
  11352. bottom: 15/900
  11353. }
  11354. },
  11355. sitting: {
  11356. height: math.unit(1, "meter"),
  11357. weight: math.unit(120, "lb"),
  11358. name: "Sitting",
  11359. image: {
  11360. source: "./media/characters/tene/sitting.svg",
  11361. extra: 396/366,
  11362. bottom: 79/475
  11363. }
  11364. },
  11365. smiling: {
  11366. height: math.unit(1.2, "feet"),
  11367. name: "Smiling",
  11368. image: {
  11369. source: "./media/characters/tene/smiling.svg",
  11370. extra: 1364/1071,
  11371. bottom: 0/1364
  11372. }
  11373. },
  11374. smug: {
  11375. height: math.unit(1.3, "feet"),
  11376. name: "Smug",
  11377. image: {
  11378. source: "./media/characters/tene/smug.svg",
  11379. extra: 1323/1082,
  11380. bottom: 0/1323
  11381. }
  11382. },
  11383. feral: {
  11384. height: math.unit(3.9, "feet"),
  11385. weight: math.unit(250, "lb"),
  11386. name: "Feral",
  11387. image: {
  11388. source: "./media/characters/tene/feral.svg",
  11389. extra: 717 / 458,
  11390. bottom: 0.179
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(6, "feet")
  11398. },
  11399. {
  11400. name: "Macro",
  11401. height: math.unit(300, "feet"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(5, "miles")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11412. {
  11413. side: {
  11414. height: math.unit(6, "feet"),
  11415. name: "Side",
  11416. image: {
  11417. source: "./media/characters/evander/side.svg",
  11418. extra: 877 / 477
  11419. }
  11420. },
  11421. },
  11422. [
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(0.83, "meters"),
  11426. default: true
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(12, "feet"),
  11435. weight: math.unit(1000, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11439. extra: 1762 / 1611
  11440. }
  11441. },
  11442. back: {
  11443. height: math.unit(12, "feet"),
  11444. weight: math.unit(1000, "lb"),
  11445. name: "Back",
  11446. image: {
  11447. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11448. extra: 1762 / 1611
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(12, "feet"),
  11456. default: true
  11457. },
  11458. {
  11459. name: "Kaiju",
  11460. height: math.unit(150, "feet")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(6, "feet"),
  11469. weight: math.unit(150, "lb"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/zero-alurus/front.svg"
  11473. }
  11474. },
  11475. back: {
  11476. height: math.unit(6, "feet"),
  11477. weight: math.unit(150, "lb"),
  11478. name: "Back",
  11479. image: {
  11480. source: "./media/characters/zero-alurus/back.svg"
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(5 + 10 / 12, "feet")
  11488. },
  11489. {
  11490. name: "Macro",
  11491. height: math.unit(60, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Macro+",
  11496. height: math.unit(450, "feet")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(200, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/mega-shi/front.svg",
  11509. extra: 1279 / 1250,
  11510. bottom: 0.02
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(200, "lb"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/mega-shi/back.svg",
  11519. extra: 1279 / 1250,
  11520. bottom: 0.02
  11521. }
  11522. },
  11523. },
  11524. [
  11525. {
  11526. name: "Micro",
  11527. height: math.unit(16 + 6 / 12, "feet")
  11528. },
  11529. {
  11530. name: "Third Dimension",
  11531. height: math.unit(40, "meters")
  11532. },
  11533. {
  11534. name: "Normal",
  11535. height: math.unit(660, "feet"),
  11536. default: true
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(10, "miles")
  11541. },
  11542. {
  11543. name: "Planetary Launch",
  11544. height: math.unit(500, "miles")
  11545. },
  11546. {
  11547. name: "Interstellar",
  11548. height: math.unit(1e9, "miles")
  11549. },
  11550. {
  11551. name: "Leaving the Universe",
  11552. height: math.unit(1, "gigaparsec")
  11553. },
  11554. {
  11555. name: "Travelling Universes",
  11556. height: math.unit(30e15, "parsecs")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(5 + 4/12, "feet"),
  11565. weight: math.unit(120, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/odyssey/front.svg",
  11569. extra: 1747/1571,
  11570. bottom: 47/1794
  11571. }
  11572. },
  11573. side: {
  11574. height: math.unit(5.1, "feet"),
  11575. weight: math.unit(120, "lb"),
  11576. name: "Side",
  11577. image: {
  11578. source: "./media/characters/odyssey/side.svg",
  11579. extra: 1847/1619,
  11580. bottom: 47/1894
  11581. }
  11582. },
  11583. lounging: {
  11584. height: math.unit(1.464, "feet"),
  11585. weight: math.unit(120, "lb"),
  11586. name: "Lounging",
  11587. image: {
  11588. source: "./media/characters/odyssey/lounging.svg",
  11589. extra: 1235/837,
  11590. bottom: 551/1786
  11591. }
  11592. },
  11593. },
  11594. [
  11595. {
  11596. name: "Normal",
  11597. height: math.unit(5 + 4 / 12, "feet")
  11598. },
  11599. {
  11600. name: "Macro",
  11601. height: math.unit(1, "km")
  11602. },
  11603. {
  11604. name: "Megamacro",
  11605. height: math.unit(3000, "km")
  11606. },
  11607. {
  11608. name: "Gigamacro",
  11609. height: math.unit(1, "AU"),
  11610. default: true
  11611. },
  11612. {
  11613. name: "Omniversal",
  11614. height: math.unit(100e14, "lightyears")
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(5 + 10/12, "feet"),
  11623. name: "Front",
  11624. image: {
  11625. source: "./media/characters/mekuto/front.svg",
  11626. extra: 875/835,
  11627. bottom: 46/921
  11628. }
  11629. },
  11630. },
  11631. [
  11632. {
  11633. name: "Minimicro",
  11634. height: math.unit(0.2, "inches")
  11635. },
  11636. {
  11637. name: "Micro",
  11638. height: math.unit(1.5, "inches")
  11639. },
  11640. {
  11641. name: "Normal",
  11642. height: math.unit(5 + 10 / 12, "feet"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Minimacro",
  11647. height: math.unit(17 + 9 / 12, "feet")
  11648. },
  11649. {
  11650. name: "Macro",
  11651. height: math.unit(177.5, "feet")
  11652. },
  11653. {
  11654. name: "Megamacro",
  11655. height: math.unit(152, "miles")
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11661. {
  11662. front: {
  11663. height: math.unit(6.5, "inches"),
  11664. weight: math.unit(13, "oz"),
  11665. name: "Front",
  11666. image: {
  11667. source: "./media/characters/dafydd-tomos/front.svg",
  11668. extra: 2990 / 2603,
  11669. bottom: 0.03
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Micro",
  11676. height: math.unit(6.5, "inches"),
  11677. default: true
  11678. },
  11679. ]
  11680. ))
  11681. characterMakers.push(() => makeCharacter(
  11682. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11683. {
  11684. front: {
  11685. height: math.unit(6, "feet"),
  11686. weight: math.unit(150, "lb"),
  11687. name: "Front",
  11688. image: {
  11689. source: "./media/characters/splinter/front.svg",
  11690. extra: 2990 / 2882,
  11691. bottom: 0.04
  11692. }
  11693. },
  11694. back: {
  11695. height: math.unit(6, "feet"),
  11696. weight: math.unit(150, "lb"),
  11697. name: "Back",
  11698. image: {
  11699. source: "./media/characters/splinter/back.svg",
  11700. extra: 2990 / 2882,
  11701. bottom: 0.04
  11702. }
  11703. },
  11704. },
  11705. [
  11706. {
  11707. name: "Normal",
  11708. height: math.unit(6, "feet")
  11709. },
  11710. {
  11711. name: "Macro",
  11712. height: math.unit(230, "meters"),
  11713. default: true
  11714. },
  11715. ]
  11716. ))
  11717. characterMakers.push(() => makeCharacter(
  11718. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11719. {
  11720. front: {
  11721. height: math.unit(4 + 10 / 12, "feet"),
  11722. weight: math.unit(480, "lb"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/snow-gabumon/front.svg",
  11726. extra: 1140 / 963,
  11727. bottom: 0.058
  11728. }
  11729. },
  11730. back: {
  11731. height: math.unit(4 + 10 / 12, "feet"),
  11732. weight: math.unit(480, "lb"),
  11733. name: "Back",
  11734. image: {
  11735. source: "./media/characters/snow-gabumon/back.svg",
  11736. extra: 1115 / 962,
  11737. bottom: 0.041
  11738. }
  11739. },
  11740. frontUndresed: {
  11741. height: math.unit(4 + 10 / 12, "feet"),
  11742. weight: math.unit(480, "lb"),
  11743. name: "Front (Undressed)",
  11744. image: {
  11745. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11746. extra: 1061 / 960,
  11747. bottom: 0.045
  11748. }
  11749. },
  11750. },
  11751. [
  11752. {
  11753. name: "Micro",
  11754. height: math.unit(1, "inch")
  11755. },
  11756. {
  11757. name: "Normal",
  11758. height: math.unit(4 + 10 / 12, "feet"),
  11759. default: true
  11760. },
  11761. {
  11762. name: "Macro",
  11763. height: math.unit(200, "feet")
  11764. },
  11765. {
  11766. name: "Megamacro",
  11767. height: math.unit(120, "miles")
  11768. },
  11769. {
  11770. name: "Gigamacro",
  11771. height: math.unit(9800, "miles")
  11772. },
  11773. ]
  11774. ))
  11775. characterMakers.push(() => makeCharacter(
  11776. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11777. {
  11778. front: {
  11779. height: math.unit(1.7, "meters"),
  11780. weight: math.unit(140, "lb"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/moody/front.svg",
  11784. extra: 3226 / 3007,
  11785. bottom: 0.087
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Micro",
  11792. height: math.unit(1, "mm")
  11793. },
  11794. {
  11795. name: "Normal",
  11796. height: math.unit(1.7, "meters"),
  11797. default: true
  11798. },
  11799. {
  11800. name: "Macro",
  11801. height: math.unit(80, "meters")
  11802. },
  11803. {
  11804. name: "Macro+",
  11805. height: math.unit(500, "meters")
  11806. },
  11807. ]
  11808. ))
  11809. characterMakers.push(() => makeCharacter(
  11810. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11811. {
  11812. front: {
  11813. height: math.unit(6, "feet"),
  11814. weight: math.unit(150, "lb"),
  11815. name: "Front",
  11816. image: {
  11817. source: "./media/characters/zyas/front.svg",
  11818. extra: 1180 / 1120,
  11819. bottom: 0.045
  11820. }
  11821. },
  11822. },
  11823. [
  11824. {
  11825. name: "Normal",
  11826. height: math.unit(10, "feet"),
  11827. default: true
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(500, "feet")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(5, "miles")
  11836. },
  11837. {
  11838. name: "Teramacro",
  11839. height: math.unit(150000, "miles")
  11840. },
  11841. ]
  11842. ))
  11843. characterMakers.push(() => makeCharacter(
  11844. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11845. {
  11846. front: {
  11847. height: math.unit(6, "feet"),
  11848. weight: math.unit(150, "lb"),
  11849. name: "Front",
  11850. image: {
  11851. source: "./media/characters/cuon/front.svg",
  11852. extra: 1390 / 1320,
  11853. bottom: 0.008
  11854. }
  11855. },
  11856. },
  11857. [
  11858. {
  11859. name: "Micro",
  11860. height: math.unit(3, "inches")
  11861. },
  11862. {
  11863. name: "Normal",
  11864. height: math.unit(18 + 9 / 12, "feet"),
  11865. default: true
  11866. },
  11867. {
  11868. name: "Macro",
  11869. height: math.unit(360, "feet")
  11870. },
  11871. {
  11872. name: "Megamacro",
  11873. height: math.unit(360, "miles")
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11879. {
  11880. front: {
  11881. height: math.unit(2.4, "meters"),
  11882. weight: math.unit(70, "kg"),
  11883. name: "Front",
  11884. image: {
  11885. source: "./media/characters/nyanuxk/front.svg",
  11886. extra: 1172 / 1084,
  11887. bottom: 0.065
  11888. }
  11889. },
  11890. side: {
  11891. height: math.unit(2.4, "meters"),
  11892. weight: math.unit(70, "kg"),
  11893. name: "Side",
  11894. image: {
  11895. source: "./media/characters/nyanuxk/side.svg",
  11896. extra: 1190 / 1132,
  11897. bottom: 0.007
  11898. }
  11899. },
  11900. back: {
  11901. height: math.unit(2.4, "meters"),
  11902. weight: math.unit(70, "kg"),
  11903. name: "Back",
  11904. image: {
  11905. source: "./media/characters/nyanuxk/back.svg",
  11906. extra: 1200 / 1141,
  11907. bottom: 0.015
  11908. }
  11909. },
  11910. foot: {
  11911. height: math.unit(0.52, "meters"),
  11912. name: "Foot",
  11913. image: {
  11914. source: "./media/characters/nyanuxk/foot.svg"
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(2, "cm")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(2.4, "meters"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Smaller Macro",
  11930. height: math.unit(120, "meters")
  11931. },
  11932. {
  11933. name: "Bigger Macro",
  11934. height: math.unit(1.2, "km")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(15, "kilometers")
  11939. },
  11940. {
  11941. name: "Gigamacro",
  11942. height: math.unit(2000, "km")
  11943. },
  11944. {
  11945. name: "Teramacro",
  11946. height: math.unit(500000, "km")
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11952. {
  11953. side: {
  11954. height: math.unit(6, "feet"),
  11955. name: "Side",
  11956. image: {
  11957. source: "./media/characters/ailbhe/side.svg",
  11958. extra: 757 / 464,
  11959. bottom: 0.041
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Normal",
  11966. height: math.unit(1.07, "meters"),
  11967. default: true
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(120, "kg"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/zevulfius/front.svg",
  11980. extra: 965 / 903
  11981. }
  11982. },
  11983. side: {
  11984. height: math.unit(6, "feet"),
  11985. weight: math.unit(120, "kg"),
  11986. name: "Side",
  11987. image: {
  11988. source: "./media/characters/zevulfius/side.svg",
  11989. extra: 939 / 900
  11990. }
  11991. },
  11992. back: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(120, "kg"),
  11995. name: "Back",
  11996. image: {
  11997. source: "./media/characters/zevulfius/back.svg",
  11998. extra: 918 / 854,
  11999. bottom: 0.005
  12000. }
  12001. },
  12002. foot: {
  12003. height: math.unit(6 / 3.72, "feet"),
  12004. name: "Foot",
  12005. image: {
  12006. source: "./media/characters/zevulfius/foot.svg"
  12007. }
  12008. },
  12009. },
  12010. [
  12011. {
  12012. name: "Macro",
  12013. height: math.unit(750, "meters")
  12014. },
  12015. {
  12016. name: "Megamacro",
  12017. height: math.unit(20, "km"),
  12018. default: true
  12019. },
  12020. {
  12021. name: "Gigamacro",
  12022. height: math.unit(2000, "km")
  12023. },
  12024. {
  12025. name: "Teramacro",
  12026. height: math.unit(250000, "km")
  12027. },
  12028. ]
  12029. ))
  12030. characterMakers.push(() => makeCharacter(
  12031. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12032. {
  12033. front: {
  12034. height: math.unit(100, "feet"),
  12035. weight: math.unit(350, "kg"),
  12036. name: "Front",
  12037. image: {
  12038. source: "./media/characters/rikes/front.svg",
  12039. extra: 1565 / 1483,
  12040. bottom: 0.017
  12041. }
  12042. },
  12043. },
  12044. [
  12045. {
  12046. name: "Macro",
  12047. height: math.unit(100, "feet"),
  12048. default: true
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12054. {
  12055. front: {
  12056. height: math.unit(8, "feet"),
  12057. weight: math.unit(356, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/adam-silver-mane/front.svg",
  12061. extra: 1036/937,
  12062. bottom: 63/1099
  12063. }
  12064. },
  12065. side: {
  12066. height: math.unit(8, "feet"),
  12067. weight: math.unit(356, "lb"),
  12068. name: "Side",
  12069. image: {
  12070. source: "./media/characters/adam-silver-mane/side.svg",
  12071. extra: 997/901,
  12072. bottom: 59/1056
  12073. }
  12074. },
  12075. frontNsfw: {
  12076. height: math.unit(8, "feet"),
  12077. weight: math.unit(356, "lb"),
  12078. name: "Front (NSFW)",
  12079. image: {
  12080. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12081. extra: 1036/937,
  12082. bottom: 63/1099
  12083. }
  12084. },
  12085. sideNsfw: {
  12086. height: math.unit(8, "feet"),
  12087. weight: math.unit(356, "lb"),
  12088. name: "Side (NSFW)",
  12089. image: {
  12090. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12091. extra: 997/901,
  12092. bottom: 59/1056
  12093. }
  12094. },
  12095. dick: {
  12096. height: math.unit(2.1, "feet"),
  12097. name: "Dick",
  12098. image: {
  12099. source: "./media/characters/adam-silver-mane/dick.svg"
  12100. }
  12101. },
  12102. taur: {
  12103. height: math.unit(16, "feet"),
  12104. weight: math.unit(1500, "kg"),
  12105. name: "Taur",
  12106. image: {
  12107. source: "./media/characters/adam-silver-mane/taur.svg",
  12108. extra: 1713 / 1571,
  12109. bottom: 0.01
  12110. }
  12111. },
  12112. },
  12113. [
  12114. {
  12115. name: "Normal",
  12116. height: math.unit(8, "feet")
  12117. },
  12118. {
  12119. name: "Minimacro",
  12120. height: math.unit(80, "feet")
  12121. },
  12122. {
  12123. name: "MDA",
  12124. height: math.unit(80, "meters")
  12125. },
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(800, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Megamacro",
  12133. height: math.unit(8000, "feet")
  12134. },
  12135. {
  12136. name: "Gigamacro",
  12137. height: math.unit(800, "miles")
  12138. },
  12139. {
  12140. name: "Teramacro",
  12141. height: math.unit(80000, "miles")
  12142. },
  12143. {
  12144. name: "Celestial",
  12145. height: math.unit(8e6, "miles")
  12146. },
  12147. {
  12148. name: "Star Dragon",
  12149. height: math.unit(800000, "parsecs")
  12150. },
  12151. {
  12152. name: "Godly",
  12153. height: math.unit(800, "teraparsecs")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(150, "lb"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/ky'owin/front.svg",
  12166. extra: 3862/3053,
  12167. bottom: 74/3936
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(6 + 8 / 12, "feet")
  12175. },
  12176. {
  12177. name: "Large",
  12178. height: math.unit(68, "feet")
  12179. },
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(132, "feet")
  12183. },
  12184. {
  12185. name: "Macro+",
  12186. height: math.unit(340, "feet")
  12187. },
  12188. {
  12189. name: "Macro++",
  12190. height: math.unit(680, "feet"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Megamacro",
  12195. height: math.unit(1, "mile")
  12196. },
  12197. {
  12198. name: "Megamacro+",
  12199. height: math.unit(10, "miles")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(4, "feet"),
  12208. weight: math.unit(50, "lb"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/mal/front.svg",
  12212. extra: 785 / 724,
  12213. bottom: 0.07
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Micro",
  12220. height: math.unit(4, "inches")
  12221. },
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(4, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(200, "feet")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/jordan-deware/front.svg",
  12242. extra: 1191 / 1012
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Nano",
  12249. height: math.unit(0.01, "mm")
  12250. },
  12251. {
  12252. name: "Minimicro",
  12253. height: math.unit(1, "mm")
  12254. },
  12255. {
  12256. name: "Micro",
  12257. height: math.unit(0.5, "inches")
  12258. },
  12259. {
  12260. name: "Normal",
  12261. height: math.unit(4, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Minimacro",
  12266. height: math.unit(40, "meters")
  12267. },
  12268. {
  12269. name: "Small Macro",
  12270. height: math.unit(400, "meters")
  12271. },
  12272. {
  12273. name: "Macro",
  12274. height: math.unit(4, "miles")
  12275. },
  12276. {
  12277. name: "Megamacro",
  12278. height: math.unit(40, "miles")
  12279. },
  12280. {
  12281. name: "Megamacro+",
  12282. height: math.unit(400, "miles")
  12283. },
  12284. {
  12285. name: "Gigamacro",
  12286. height: math.unit(400000, "miles")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12292. {
  12293. side: {
  12294. height: math.unit(6, "feet"),
  12295. weight: math.unit(150, "lb"),
  12296. name: "Side",
  12297. image: {
  12298. source: "./media/characters/kimiko/side.svg",
  12299. extra: 600 / 358
  12300. }
  12301. },
  12302. },
  12303. [
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(15, "feet"),
  12307. default: true
  12308. },
  12309. {
  12310. name: "Macro",
  12311. height: math.unit(220, "feet")
  12312. },
  12313. {
  12314. name: "Macro+",
  12315. height: math.unit(1450, "feet")
  12316. },
  12317. {
  12318. name: "Megamacro",
  12319. height: math.unit(11500, "feet")
  12320. },
  12321. {
  12322. name: "Gigamacro",
  12323. height: math.unit(9500, "miles")
  12324. },
  12325. {
  12326. name: "Teramacro",
  12327. height: math.unit(2208005005, "miles")
  12328. },
  12329. {
  12330. name: "Examacro",
  12331. height: math.unit(2750, "parsecs")
  12332. },
  12333. {
  12334. name: "Zettamacro",
  12335. height: math.unit(101500, "parsecs")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12341. {
  12342. front: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(70, "kg"),
  12345. name: "Front",
  12346. image: {
  12347. source: "./media/characters/andrew-sleepy/front.svg"
  12348. }
  12349. },
  12350. side: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(70, "kg"),
  12353. name: "Side",
  12354. image: {
  12355. source: "./media/characters/andrew-sleepy/side.svg"
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Micro",
  12362. height: math.unit(1, "mm"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/judio/front.svg",
  12376. extra: 1258 / 1110
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(5 + 6 / 12, "feet")
  12384. },
  12385. {
  12386. name: "Macro",
  12387. height: math.unit(1000, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(10, "miles")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12398. {
  12399. frontDressed: {
  12400. height: math.unit(6, "feet"),
  12401. weight: math.unit(68, "kg"),
  12402. name: "Front (Dressed)",
  12403. image: {
  12404. source: "./media/characters/nomaxice/front-dressed.svg",
  12405. extra: 1137/824,
  12406. bottom: 74/1211
  12407. }
  12408. },
  12409. frontShorts: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(68, "kg"),
  12412. name: "Front (Shorts)",
  12413. image: {
  12414. source: "./media/characters/nomaxice/front-shorts.svg",
  12415. extra: 1137/824,
  12416. bottom: 74/1211
  12417. }
  12418. },
  12419. back: {
  12420. height: math.unit(6, "feet"),
  12421. weight: math.unit(68, "kg"),
  12422. name: "Back",
  12423. image: {
  12424. source: "./media/characters/nomaxice/back.svg",
  12425. extra: 822/786,
  12426. bottom: 39/861
  12427. }
  12428. },
  12429. hand: {
  12430. height: math.unit(0.565, "feet"),
  12431. name: "Hand",
  12432. image: {
  12433. source: "./media/characters/nomaxice/hand.svg"
  12434. }
  12435. },
  12436. foot: {
  12437. height: math.unit(1, "feet"),
  12438. name: "Foot",
  12439. image: {
  12440. source: "./media/characters/nomaxice/foot.svg"
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Micro",
  12447. height: math.unit(8, "cm")
  12448. },
  12449. {
  12450. name: "Norm",
  12451. height: math.unit(1.82, "m")
  12452. },
  12453. {
  12454. name: "Norm+",
  12455. height: math.unit(8.8, "feet"),
  12456. default: true
  12457. },
  12458. {
  12459. name: "Big",
  12460. height: math.unit(8, "meters")
  12461. },
  12462. {
  12463. name: "Macro",
  12464. height: math.unit(18, "meters")
  12465. },
  12466. {
  12467. name: "Macro+",
  12468. height: math.unit(88, "meters")
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(12, "feet"),
  12477. weight: math.unit(1.5, "tons"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/dydros/front.svg",
  12481. extra: 863 / 800,
  12482. bottom: 0.015
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(12, "feet"),
  12487. weight: math.unit(1.5, "tons"),
  12488. name: "Back",
  12489. image: {
  12490. source: "./media/characters/dydros/back.svg",
  12491. extra: 900 / 843,
  12492. bottom: 0.005
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(12, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(100, "kg"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/riggi/front.svg",
  12513. extra: 5787 / 5303
  12514. }
  12515. },
  12516. hyper: {
  12517. height: math.unit(6 * 5 / 3, "feet"),
  12518. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12519. name: "Hyper",
  12520. image: {
  12521. source: "./media/characters/riggi/hyper.svg",
  12522. extra: 3595 / 3485
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Small Macro",
  12529. height: math.unit(50, "feet")
  12530. },
  12531. {
  12532. name: "Default",
  12533. height: math.unit(200, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Loom",
  12538. height: math.unit(10000, "feet")
  12539. },
  12540. {
  12541. name: "Cruising Altitude",
  12542. height: math.unit(30000, "feet")
  12543. },
  12544. {
  12545. name: "Megamacro",
  12546. height: math.unit(100, "miles")
  12547. },
  12548. {
  12549. name: "Continent Sized",
  12550. height: math.unit(2800, "miles")
  12551. },
  12552. {
  12553. name: "Earth Sized",
  12554. height: math.unit(8000, "miles")
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(250, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/alexi/front.svg",
  12567. extra: 3483 / 3291,
  12568. bottom: 0.04
  12569. }
  12570. },
  12571. back: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(250, "lb"),
  12574. name: "Back",
  12575. image: {
  12576. source: "./media/characters/alexi/back.svg",
  12577. extra: 3533 / 3356,
  12578. bottom: 0.021
  12579. }
  12580. },
  12581. frontTransforming: {
  12582. height: math.unit(8.58, "feet"),
  12583. weight: math.unit(1300, "lb"),
  12584. name: "Transforming",
  12585. image: {
  12586. source: "./media/characters/alexi/front-transforming.svg",
  12587. extra: 437 / 409,
  12588. bottom: 19 / 458.66
  12589. }
  12590. },
  12591. frontTransformed: {
  12592. height: math.unit(12.5, "feet"),
  12593. weight: math.unit(4000, "lb"),
  12594. name: "Transformed",
  12595. image: {
  12596. source: "./media/characters/alexi/front-transformed.svg",
  12597. extra: 639 / 614,
  12598. bottom: 30.55 / 671
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(14, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Minimacro",
  12610. height: math.unit(30, "meters")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(500, "meters")
  12615. },
  12616. {
  12617. name: "Megamacro",
  12618. height: math.unit(9000, "km")
  12619. },
  12620. {
  12621. name: "Teramacro",
  12622. height: math.unit(384000, "km")
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(150, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/kayroo/front.svg",
  12635. extra: 1153 / 1038,
  12636. bottom: 0.06
  12637. }
  12638. },
  12639. foot: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Foot",
  12643. image: {
  12644. source: "./media/characters/kayroo/foot.svg"
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Normal",
  12651. height: math.unit(8, "feet"),
  12652. default: true
  12653. },
  12654. {
  12655. name: "Minimacro",
  12656. height: math.unit(250, "feet")
  12657. },
  12658. {
  12659. name: "Macro",
  12660. height: math.unit(2800, "feet")
  12661. },
  12662. {
  12663. name: "Megamacro",
  12664. height: math.unit(5200, "feet")
  12665. },
  12666. {
  12667. name: "Gigamacro",
  12668. height: math.unit(27000, "feet")
  12669. },
  12670. {
  12671. name: "Omega",
  12672. height: math.unit(45000, "feet")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(18, "feet"),
  12681. weight: math.unit(5800, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/rhys/front.svg",
  12685. extra: 3386 / 3090,
  12686. bottom: 0.07
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(18, "feet"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Working Size",
  12698. height: math.unit(200, "feet")
  12699. },
  12700. {
  12701. name: "Demolition Size",
  12702. height: math.unit(2000, "feet")
  12703. },
  12704. {
  12705. name: "Maximum Licensed Size",
  12706. height: math.unit(5, "miles")
  12707. },
  12708. {
  12709. name: "Maximum Observed Size",
  12710. height: math.unit(10, "yottameters")
  12711. },
  12712. ]
  12713. ))
  12714. characterMakers.push(() => makeCharacter(
  12715. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12716. {
  12717. front: {
  12718. height: math.unit(6, "feet"),
  12719. weight: math.unit(250, "lb"),
  12720. name: "Front",
  12721. image: {
  12722. source: "./media/characters/toto/front.svg",
  12723. extra: 527 / 479,
  12724. bottom: 0.05
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Micro",
  12731. height: math.unit(3, "feet")
  12732. },
  12733. {
  12734. name: "Normal",
  12735. height: math.unit(10, "feet")
  12736. },
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(150, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(1200, "feet")
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "King", species: ["lion"], tags: ["anthro"] },
  12750. {
  12751. back: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "lb"),
  12754. name: "Back",
  12755. image: {
  12756. source: "./media/characters/king/back.svg"
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Micro",
  12763. height: math.unit(2, "inches")
  12764. },
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(8, "feet")
  12768. },
  12769. {
  12770. name: "Macro",
  12771. height: math.unit(200, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Megamacro",
  12776. height: math.unit(50, "miles")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(11, "feet"),
  12785. weight: math.unit(1400, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/cordite/front.svg",
  12789. extra: 1919/1827,
  12790. bottom: 40/1959
  12791. }
  12792. },
  12793. side: {
  12794. height: math.unit(11, "feet"),
  12795. weight: math.unit(1400, "lb"),
  12796. name: "Side",
  12797. image: {
  12798. source: "./media/characters/cordite/side.svg",
  12799. extra: 1908/1793,
  12800. bottom: 38/1946
  12801. }
  12802. },
  12803. back: {
  12804. height: math.unit(11, "feet"),
  12805. weight: math.unit(1400, "lb"),
  12806. name: "Back",
  12807. image: {
  12808. source: "./media/characters/cordite/back.svg",
  12809. extra: 1938/1837,
  12810. bottom: 10/1948
  12811. }
  12812. },
  12813. feral: {
  12814. height: math.unit(2, "feet"),
  12815. weight: math.unit(90, "lb"),
  12816. name: "Feral",
  12817. image: {
  12818. source: "./media/characters/cordite/feral.svg",
  12819. extra: 1260 / 755,
  12820. bottom: 0.05
  12821. }
  12822. },
  12823. },
  12824. [
  12825. {
  12826. name: "Normal",
  12827. height: math.unit(11, "feet"),
  12828. default: true
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(150, "lb"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/pianostrong/front.svg",
  12841. extra: 6577 / 6254,
  12842. bottom: 0.02
  12843. }
  12844. },
  12845. side: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Side",
  12849. image: {
  12850. source: "./media/characters/pianostrong/side.svg",
  12851. extra: 6106 / 5730
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(6, "feet"),
  12856. weight: math.unit(150, "lb"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/pianostrong/back.svg",
  12860. extra: 6085 / 5733,
  12861. bottom: 0.01
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Macro",
  12868. height: math.unit(100, "feet")
  12869. },
  12870. {
  12871. name: "Macro+",
  12872. height: math.unit(300, "feet"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Macro++",
  12877. height: math.unit(1000, "feet")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(6, "feet"),
  12886. weight: math.unit(150, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/kona/front.svg",
  12890. extra: 2960 / 2629,
  12891. bottom: 0.005
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(11 + 8 / 12, "feet")
  12899. },
  12900. {
  12901. name: "Macro",
  12902. height: math.unit(850, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Macro+",
  12907. height: math.unit(1.5, "km"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(80, "miles")
  12913. },
  12914. {
  12915. name: "Gigamacro",
  12916. height: math.unit(3500, "miles")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12922. {
  12923. side: {
  12924. height: math.unit(1.9, "meters"),
  12925. weight: math.unit(326, "kg"),
  12926. name: "Side",
  12927. image: {
  12928. source: "./media/characters/levi/side.svg",
  12929. extra: 1704 / 1334,
  12930. bottom: 0.02
  12931. }
  12932. },
  12933. },
  12934. [
  12935. {
  12936. name: "Normal",
  12937. height: math.unit(1.9, "meters"),
  12938. default: true
  12939. },
  12940. {
  12941. name: "Macro",
  12942. height: math.unit(20, "meters")
  12943. },
  12944. {
  12945. name: "Macro+",
  12946. height: math.unit(200, "meters")
  12947. },
  12948. {
  12949. name: "Megamacro",
  12950. height: math.unit(2, "km")
  12951. },
  12952. {
  12953. name: "Megamacro+",
  12954. height: math.unit(20, "km")
  12955. },
  12956. {
  12957. name: "Gigamacro",
  12958. height: math.unit(2500, "km")
  12959. },
  12960. {
  12961. name: "Gigamacro+",
  12962. height: math.unit(120000, "km")
  12963. },
  12964. {
  12965. name: "Teramacro",
  12966. height: math.unit(7.77e6, "km")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6 + 4/12, "feet"),
  12975. weight: math.unit(190, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/bmc/front.svg",
  12979. extra: 1626/1472,
  12980. bottom: 79/1705
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(6 + 4/12, "feet"),
  12985. weight: math.unit(190, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/bmc/back.svg",
  12989. extra: 1640/1479,
  12990. bottom: 45/1685
  12991. }
  12992. },
  12993. frontArmor: {
  12994. height: math.unit(6 + 4/12, "feet"),
  12995. weight: math.unit(190, "lb"),
  12996. name: "Front-armor",
  12997. image: {
  12998. source: "./media/characters/bmc/front-armor.svg",
  12999. extra: 1538/1468,
  13000. bottom: 79/1617
  13001. }
  13002. },
  13003. },
  13004. [
  13005. {
  13006. name: "Human-sized",
  13007. height: math.unit(6 + 4 / 12, "feet")
  13008. },
  13009. {
  13010. name: "Interactive Size",
  13011. height: math.unit(25, "feet")
  13012. },
  13013. {
  13014. name: "Small",
  13015. height: math.unit(250, "feet")
  13016. },
  13017. {
  13018. name: "Normal",
  13019. height: math.unit(1250, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Good Day",
  13024. height: math.unit(88, "miles")
  13025. },
  13026. {
  13027. name: "Largest Measured Size",
  13028. height: math.unit(105.960, "galaxies")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(20, "feet"),
  13037. weight: math.unit(2016, "kg"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/sven-the-kaiju/front.svg",
  13041. extra: 1277/1250,
  13042. bottom: 35/1312
  13043. }
  13044. },
  13045. mouth: {
  13046. height: math.unit(1.85, "feet"),
  13047. name: "Mouth",
  13048. image: {
  13049. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Fairy",
  13056. height: math.unit(6, "inches")
  13057. },
  13058. {
  13059. name: "Normal",
  13060. height: math.unit(20, "feet"),
  13061. default: true
  13062. },
  13063. {
  13064. name: "Rampage",
  13065. height: math.unit(200, "feet")
  13066. },
  13067. {
  13068. name: "Archfey Forest Guardian",
  13069. height: math.unit(1, "mile")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(4, "meters"),
  13078. weight: math.unit(2, "tons"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/marik/front.svg",
  13082. extra: 1057 / 1003,
  13083. bottom: 0.08
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Normal",
  13090. height: math.unit(4, "meters"),
  13091. default: true
  13092. },
  13093. {
  13094. name: "Macro",
  13095. height: math.unit(20, "meters")
  13096. },
  13097. {
  13098. name: "Megamacro",
  13099. height: math.unit(50, "km")
  13100. },
  13101. {
  13102. name: "Gigamacro",
  13103. height: math.unit(100, "km")
  13104. },
  13105. {
  13106. name: "Alpha Macro",
  13107. height: math.unit(7.88e7, "yottameters")
  13108. },
  13109. ]
  13110. ))
  13111. characterMakers.push(() => makeCharacter(
  13112. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13113. {
  13114. front: {
  13115. height: math.unit(6, "feet"),
  13116. weight: math.unit(110, "lb"),
  13117. name: "Front",
  13118. image: {
  13119. source: "./media/characters/mel/front.svg",
  13120. extra: 736 / 617,
  13121. bottom: 0.017
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Pico",
  13128. height: math.unit(3, "pm")
  13129. },
  13130. {
  13131. name: "Nano",
  13132. height: math.unit(3, "nm")
  13133. },
  13134. {
  13135. name: "Micro",
  13136. height: math.unit(0.3, "mm"),
  13137. default: true
  13138. },
  13139. {
  13140. name: "Micro+",
  13141. height: math.unit(3, "mm")
  13142. },
  13143. {
  13144. name: "Normal",
  13145. height: math.unit(5 + 10.5 / 12, "feet")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13151. {
  13152. kaiju: {
  13153. height: math.unit(1.75, "meters"),
  13154. weight: math.unit(55, "kg"),
  13155. name: "Kaiju",
  13156. image: {
  13157. source: "./media/characters/lykonous/kaiju.svg",
  13158. extra: 1055 / 946,
  13159. bottom: 0.135
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Normal",
  13166. height: math.unit(2.5, "meters"),
  13167. default: true
  13168. },
  13169. {
  13170. name: "Kaiju Dragon",
  13171. height: math.unit(60, "meters")
  13172. },
  13173. {
  13174. name: "Mega Kaiju",
  13175. height: math.unit(120, "km")
  13176. },
  13177. {
  13178. name: "Giga Kaiju",
  13179. height: math.unit(200, "megameters")
  13180. },
  13181. {
  13182. name: "Terra Kaiju",
  13183. height: math.unit(400, "gigameters")
  13184. },
  13185. {
  13186. name: "Kaiju Dragon God",
  13187. height: math.unit(13000, "exaparsecs")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(150, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/blü/front.svg",
  13200. extra: 1883 / 1564,
  13201. bottom: 0.031
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(13, "feet"),
  13209. default: true
  13210. },
  13211. {
  13212. name: "Big Boi",
  13213. height: math.unit(150, "meters")
  13214. },
  13215. {
  13216. name: "Mini Stomper",
  13217. height: math.unit(300, "meters")
  13218. },
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(1000, "meters")
  13222. },
  13223. {
  13224. name: "Megamacro",
  13225. height: math.unit(11000, "meters")
  13226. },
  13227. {
  13228. name: "Gigamacro",
  13229. height: math.unit(11000, "km")
  13230. },
  13231. {
  13232. name: "Teramacro",
  13233. height: math.unit(420000, "km")
  13234. },
  13235. {
  13236. name: "Examacro",
  13237. height: math.unit(120, "parsecs")
  13238. },
  13239. {
  13240. name: "God Tho",
  13241. height: math.unit(98000000000, "parsecs")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13247. {
  13248. taurFront: {
  13249. height: math.unit(6, "feet"),
  13250. weight: math.unit(200, "lb"),
  13251. name: "Taur (Front)",
  13252. image: {
  13253. source: "./media/characters/scales/taur-front.svg",
  13254. extra: 1,
  13255. bottom: 0.05
  13256. }
  13257. },
  13258. taurBack: {
  13259. height: math.unit(6, "feet"),
  13260. weight: math.unit(200, "lb"),
  13261. name: "Taur (Back)",
  13262. image: {
  13263. source: "./media/characters/scales/taur-back.svg",
  13264. extra: 1,
  13265. bottom: 0.08
  13266. }
  13267. },
  13268. anthro: {
  13269. height: math.unit(6 * 7 / 12, "feet"),
  13270. weight: math.unit(100, "lb"),
  13271. name: "Anthro",
  13272. image: {
  13273. source: "./media/characters/scales/anthro.svg",
  13274. extra: 1,
  13275. bottom: 0.06
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Normal",
  13282. height: math.unit(12, "feet"),
  13283. default: true
  13284. },
  13285. ]
  13286. ))
  13287. characterMakers.push(() => makeCharacter(
  13288. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13289. {
  13290. front: {
  13291. height: math.unit(6, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Front",
  13294. image: {
  13295. source: "./media/characters/koragos/front.svg",
  13296. extra: 841 / 794,
  13297. bottom: 0.035
  13298. }
  13299. },
  13300. back: {
  13301. height: math.unit(6, "feet"),
  13302. weight: math.unit(150, "lb"),
  13303. name: "Back",
  13304. image: {
  13305. source: "./media/characters/koragos/back.svg",
  13306. extra: 841 / 810,
  13307. bottom: 0.022
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Normal",
  13314. height: math.unit(6 + 11 / 12, "feet"),
  13315. default: true
  13316. },
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(490, "feet")
  13320. },
  13321. {
  13322. name: "Megamacro",
  13323. height: math.unit(10, "miles")
  13324. },
  13325. {
  13326. name: "Gigamacro",
  13327. height: math.unit(50, "miles")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(6, "feet"),
  13336. weight: math.unit(250, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/xylrem/front.svg",
  13340. extra: 3323 / 3050,
  13341. bottom: 0.065
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Micro",
  13348. height: math.unit(4, "feet")
  13349. },
  13350. {
  13351. name: "Normal",
  13352. height: math.unit(16, "feet"),
  13353. default: true
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(2720, "feet")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(25000, "miles")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(8, "feet"),
  13370. weight: math.unit(250, "kg"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/ikideru/front.svg",
  13374. extra: 930 / 870,
  13375. bottom: 0.087
  13376. }
  13377. },
  13378. back: {
  13379. height: math.unit(8, "feet"),
  13380. weight: math.unit(250, "kg"),
  13381. name: "Back",
  13382. image: {
  13383. source: "./media/characters/ikideru/back.svg",
  13384. extra: 919 / 852,
  13385. bottom: 0.055
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Rare",
  13392. height: math.unit(8, "feet"),
  13393. default: true
  13394. },
  13395. {
  13396. name: "Playful Loom",
  13397. height: math.unit(80, "feet")
  13398. },
  13399. {
  13400. name: "City Leaner",
  13401. height: math.unit(230, "feet")
  13402. },
  13403. {
  13404. name: "Megamacro",
  13405. height: math.unit(2500, "feet")
  13406. },
  13407. {
  13408. name: "Gigamacro",
  13409. height: math.unit(26400, "feet")
  13410. },
  13411. {
  13412. name: "Tectonic Shifter",
  13413. height: math.unit(1.7, "megameters")
  13414. },
  13415. {
  13416. name: "Planet Carer",
  13417. height: math.unit(21, "megameters")
  13418. },
  13419. {
  13420. name: "God",
  13421. height: math.unit(11157.22, "parsecs")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(6, "feet"),
  13430. weight: math.unit(120, "lb"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/neo/front.svg"
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Micro",
  13440. height: math.unit(2, "inches"),
  13441. default: true
  13442. },
  13443. {
  13444. name: "Human Size",
  13445. height: math.unit(5 + 8 / 12, "feet")
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(13 + 10 / 12, "feet"),
  13454. weight: math.unit(5320, "lb"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/chauncey-chantz/front.svg",
  13458. extra: 1587 / 1435,
  13459. bottom: 0.02
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Normal",
  13466. height: math.unit(13 + 10 / 12, "feet"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Macro",
  13471. height: math.unit(45, "feet")
  13472. },
  13473. {
  13474. name: "Megamacro",
  13475. height: math.unit(250, "miles")
  13476. },
  13477. {
  13478. name: "Planetary",
  13479. height: math.unit(10000, "miles")
  13480. },
  13481. {
  13482. name: "Galactic",
  13483. height: math.unit(40000, "parsecs")
  13484. },
  13485. {
  13486. name: "Universal",
  13487. height: math.unit(1, "yottameter")
  13488. },
  13489. ]
  13490. ))
  13491. characterMakers.push(() => makeCharacter(
  13492. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13493. {
  13494. front: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Front",
  13498. image: {
  13499. source: "./media/characters/epifox/front.svg",
  13500. extra: 1,
  13501. bottom: 0.075
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Micro",
  13508. height: math.unit(6, "inches")
  13509. },
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(12, "feet"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(3810, "feet")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(500, "miles")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(1.8796, "m"),
  13530. weight: math.unit(230, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/colin-t/front.svg",
  13534. extra: 1272 / 1193,
  13535. bottom: 0.07
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Micro",
  13542. height: math.unit(0.571, "meters")
  13543. },
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(1.8796, "meters"),
  13547. default: true
  13548. },
  13549. {
  13550. name: "Tall",
  13551. height: math.unit(4, "meters")
  13552. },
  13553. {
  13554. name: "Macro",
  13555. height: math.unit(67.241, "meters")
  13556. },
  13557. {
  13558. name: "Megamacro",
  13559. height: math.unit(371.856, "meters")
  13560. },
  13561. {
  13562. name: "Planetary",
  13563. height: math.unit(12631.5689, "km")
  13564. },
  13565. ]
  13566. ))
  13567. characterMakers.push(() => makeCharacter(
  13568. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13569. {
  13570. front: {
  13571. height: math.unit(1.85, "meters"),
  13572. weight: math.unit(80, "kg"),
  13573. name: "Front",
  13574. image: {
  13575. source: "./media/characters/matvei/front.svg",
  13576. extra: 456/447,
  13577. bottom: 8/464
  13578. }
  13579. },
  13580. back: {
  13581. height: math.unit(1.85, "meters"),
  13582. weight: math.unit(80, "kg"),
  13583. name: "Back",
  13584. image: {
  13585. source: "./media/characters/matvei/back.svg",
  13586. extra: 434/427,
  13587. bottom: 11/445
  13588. }
  13589. },
  13590. },
  13591. [
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(1.85, "meters"),
  13595. default: true
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(5 + 9 / 12, "feet"),
  13604. weight: math.unit(70, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/quincy/front.svg",
  13608. extra: 3041 / 2751
  13609. }
  13610. },
  13611. back: {
  13612. height: math.unit(5 + 9 / 12, "feet"),
  13613. weight: math.unit(70, "lb"),
  13614. name: "Back",
  13615. image: {
  13616. source: "./media/characters/quincy/back.svg",
  13617. extra: 3041 / 2751
  13618. }
  13619. },
  13620. flying: {
  13621. height: math.unit(5 + 4 / 12, "feet"),
  13622. weight: math.unit(70, "lb"),
  13623. name: "Flying",
  13624. image: {
  13625. source: "./media/characters/quincy/flying.svg",
  13626. extra: 1044 / 930
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Micro",
  13633. height: math.unit(3, "cm")
  13634. },
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(5 + 9 / 12, "feet")
  13638. },
  13639. {
  13640. name: "Macro",
  13641. height: math.unit(200, "meters"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(1000, "meters")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(3 + 11/12, "feet"),
  13655. weight: math.unit(50, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/vanrel/front.svg",
  13659. extra: 1104/949,
  13660. bottom: 52/1156
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(3 + 11/12, "feet"),
  13665. weight: math.unit(50, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/vanrel/back.svg",
  13669. extra: 1119/976,
  13670. bottom: 37/1156
  13671. }
  13672. },
  13673. tome: {
  13674. height: math.unit(1.35, "feet"),
  13675. weight: math.unit(10, "lb"),
  13676. name: "Vanrel's Tome",
  13677. rename: true,
  13678. image: {
  13679. source: "./media/characters/vanrel/tome.svg"
  13680. }
  13681. },
  13682. beans: {
  13683. height: math.unit(0.89, "feet"),
  13684. name: "Beans",
  13685. image: {
  13686. source: "./media/characters/vanrel/beans.svg"
  13687. }
  13688. },
  13689. },
  13690. [
  13691. {
  13692. name: "Normal",
  13693. height: math.unit(3 + 11/12, "feet"),
  13694. default: true
  13695. },
  13696. ]
  13697. ))
  13698. characterMakers.push(() => makeCharacter(
  13699. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13700. {
  13701. front: {
  13702. height: math.unit(7 + 5 / 12, "feet"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/kuiper-vanrel/front.svg",
  13706. extra: 1219/1169,
  13707. bottom: 69/1288
  13708. }
  13709. },
  13710. back: {
  13711. height: math.unit(7 + 5 / 12, "feet"),
  13712. name: "Back",
  13713. image: {
  13714. source: "./media/characters/kuiper-vanrel/back.svg",
  13715. extra: 1236/1193,
  13716. bottom: 27/1263
  13717. }
  13718. },
  13719. foot: {
  13720. height: math.unit(0.55, "meters"),
  13721. name: "Foot",
  13722. image: {
  13723. source: "./media/characters/kuiper-vanrel/foot.svg",
  13724. }
  13725. },
  13726. battle: {
  13727. height: math.unit(6.824, "feet"),
  13728. name: "Battle",
  13729. image: {
  13730. source: "./media/characters/kuiper-vanrel/battle.svg",
  13731. extra: 1466 / 1327,
  13732. bottom: 29 / 1492.5
  13733. }
  13734. },
  13735. meerkui: {
  13736. height: math.unit(18, "inches"),
  13737. name: "Meerkui",
  13738. image: {
  13739. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13740. extra: 1354/1289,
  13741. bottom: 69/1423
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(7 + 5 / 12, "feet"),
  13749. default: true
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(8 + 5 / 12, "feet"),
  13758. name: "Front",
  13759. image: {
  13760. source: "./media/characters/keset-vanrel/front.svg",
  13761. extra: 1231/1148,
  13762. bottom: 82/1313
  13763. }
  13764. },
  13765. back: {
  13766. height: math.unit(8 + 5 / 12, "feet"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/keset-vanrel/back.svg",
  13770. extra: 1240/1174,
  13771. bottom: 33/1273
  13772. }
  13773. },
  13774. hand: {
  13775. height: math.unit(0.6, "meters"),
  13776. name: "Hand",
  13777. image: {
  13778. source: "./media/characters/keset-vanrel/hand.svg"
  13779. }
  13780. },
  13781. foot: {
  13782. height: math.unit(0.94978, "meters"),
  13783. name: "Foot",
  13784. image: {
  13785. source: "./media/characters/keset-vanrel/foot.svg"
  13786. }
  13787. },
  13788. battle: {
  13789. height: math.unit(7.408, "feet"),
  13790. name: "Battle",
  13791. image: {
  13792. source: "./media/characters/keset-vanrel/battle.svg",
  13793. extra: 1890 / 1386,
  13794. bottom: 73.28 / 1970
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Normal",
  13801. height: math.unit(8 + 5 / 12, "feet"),
  13802. default: true
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/neos/front.svg",
  13815. extra: 1696 / 992,
  13816. bottom: 0.14
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(54, "cm"),
  13824. default: true
  13825. },
  13826. {
  13827. name: "Macro",
  13828. height: math.unit(100, "m")
  13829. },
  13830. {
  13831. name: "Megamacro",
  13832. height: math.unit(10, "km")
  13833. },
  13834. {
  13835. name: "Megamacro+",
  13836. height: math.unit(100, "km")
  13837. },
  13838. {
  13839. name: "Gigamacro",
  13840. height: math.unit(100, "Mm")
  13841. },
  13842. {
  13843. name: "Teramacro",
  13844. height: math.unit(100, "Gm")
  13845. },
  13846. {
  13847. name: "Examacro",
  13848. height: math.unit(100, "Em")
  13849. },
  13850. {
  13851. name: "Godly",
  13852. height: math.unit(10000, "Ym")
  13853. },
  13854. {
  13855. name: "Beyond Godly",
  13856. height: math.unit(25, "multiverses")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13862. {
  13863. fluide_tame: {
  13864. height: math.unit(5, "feet"),
  13865. name: "Tame",
  13866. image: {
  13867. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13868. extra: 1655/1574,
  13869. bottom: 231/1886
  13870. },
  13871. form: "fluide",
  13872. default: true
  13873. },
  13874. fluide_nude: {
  13875. height: math.unit(5, "feet"),
  13876. name: "Nude",
  13877. image: {
  13878. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13879. extra: 1655/1574,
  13880. bottom: 231/1886
  13881. },
  13882. form: "fluide",
  13883. },
  13884. male_tame: {
  13885. height: math.unit(5, "feet"),
  13886. name: "Tame",
  13887. image: {
  13888. source: "./media/characters/sammy-mouse/male-tame.svg",
  13889. extra: 1655/1574,
  13890. bottom: 231/1886
  13891. },
  13892. form: "male",
  13893. default: true
  13894. },
  13895. male_nude: {
  13896. height: math.unit(5, "feet"),
  13897. name: "Nude",
  13898. image: {
  13899. source: "./media/characters/sammy-mouse/male-nude.svg",
  13900. extra: 1655/1574,
  13901. bottom: 231/1886
  13902. },
  13903. form: "male",
  13904. },
  13905. female_nude: {
  13906. height: math.unit(5, "feet"),
  13907. name: "Nude",
  13908. image: {
  13909. source: "./media/characters/sammy-mouse/female-nude.svg",
  13910. extra: 1655/1574,
  13911. bottom: 231/1886
  13912. },
  13913. form: "female",
  13914. default: true
  13915. },
  13916. mouth: {
  13917. height: math.unit(0.32, "feet"),
  13918. name: "Mouth",
  13919. image: {
  13920. source: "./media/characters/sammy-mouse/mouth.svg"
  13921. },
  13922. allForms: true
  13923. },
  13924. paw: {
  13925. height: math.unit(0.42, "feet"),
  13926. name: "Paw",
  13927. image: {
  13928. source: "./media/characters/sammy-mouse/paw.svg"
  13929. },
  13930. allForms: true
  13931. },
  13932. },
  13933. [
  13934. {
  13935. name: "Micro",
  13936. height: math.unit(5, "inches"),
  13937. allForms: true
  13938. },
  13939. {
  13940. name: "Normal",
  13941. height: math.unit(5, "feet"),
  13942. default: true,
  13943. allForms: true
  13944. },
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(60, "feet"),
  13948. allForms: true
  13949. },
  13950. ],
  13951. {
  13952. "fluide": {
  13953. name: "Fluide",
  13954. default: true
  13955. },
  13956. "male": {
  13957. name: "Male",
  13958. },
  13959. "female": {
  13960. name: "Female",
  13961. },
  13962. }
  13963. ))
  13964. characterMakers.push(() => makeCharacter(
  13965. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13966. {
  13967. front: {
  13968. height: math.unit(4, "feet"),
  13969. weight: math.unit(50, "lb"),
  13970. name: "Front",
  13971. image: {
  13972. source: "./media/characters/kole/front.svg",
  13973. extra: 1423 / 1303,
  13974. bottom: 0.025
  13975. }
  13976. },
  13977. back: {
  13978. height: math.unit(4, "feet"),
  13979. weight: math.unit(50, "lb"),
  13980. name: "Back",
  13981. image: {
  13982. source: "./media/characters/kole/back.svg",
  13983. extra: 1426 / 1280,
  13984. bottom: 0.02
  13985. }
  13986. },
  13987. },
  13988. [
  13989. {
  13990. name: "Normal",
  13991. height: math.unit(4, "feet"),
  13992. default: true
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13998. {
  13999. front: {
  14000. height: math.unit(2.5, "feet"),
  14001. weight: math.unit(32, "lb"),
  14002. name: "Front",
  14003. image: {
  14004. source: "./media/characters/rufran/front.svg",
  14005. extra: 1313/885,
  14006. bottom: 94/1407
  14007. }
  14008. },
  14009. side: {
  14010. height: math.unit(2.5, "feet"),
  14011. weight: math.unit(32, "lb"),
  14012. name: "Side",
  14013. image: {
  14014. source: "./media/characters/rufran/side.svg",
  14015. extra: 1109/852,
  14016. bottom: 118/1227
  14017. }
  14018. },
  14019. back: {
  14020. height: math.unit(2.5, "feet"),
  14021. weight: math.unit(32, "lb"),
  14022. name: "Back",
  14023. image: {
  14024. source: "./media/characters/rufran/back.svg",
  14025. extra: 1280/878,
  14026. bottom: 131/1411
  14027. }
  14028. },
  14029. mouth: {
  14030. height: math.unit(1.13, "feet"),
  14031. name: "Mouth",
  14032. image: {
  14033. source: "./media/characters/rufran/mouth.svg"
  14034. }
  14035. },
  14036. foot: {
  14037. height: math.unit(1.33, "feet"),
  14038. name: "Foot",
  14039. image: {
  14040. source: "./media/characters/rufran/foot.svg"
  14041. }
  14042. },
  14043. koboldFront: {
  14044. height: math.unit(2 + 6 / 12, "feet"),
  14045. weight: math.unit(20, "lb"),
  14046. name: "Front (Kobold)",
  14047. image: {
  14048. source: "./media/characters/rufran/kobold-front.svg",
  14049. extra: 2041 / 1839,
  14050. bottom: 0.055
  14051. }
  14052. },
  14053. koboldBack: {
  14054. height: math.unit(2 + 6 / 12, "feet"),
  14055. weight: math.unit(20, "lb"),
  14056. name: "Back (Kobold)",
  14057. image: {
  14058. source: "./media/characters/rufran/kobold-back.svg",
  14059. extra: 2054 / 1839,
  14060. bottom: 0.01
  14061. }
  14062. },
  14063. koboldHand: {
  14064. height: math.unit(0.2166, "meters"),
  14065. name: "Hand (Kobold)",
  14066. image: {
  14067. source: "./media/characters/rufran/kobold-hand.svg"
  14068. }
  14069. },
  14070. koboldFoot: {
  14071. height: math.unit(0.185, "meters"),
  14072. name: "Foot (Kobold)",
  14073. image: {
  14074. source: "./media/characters/rufran/kobold-foot.svg"
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Micro",
  14081. height: math.unit(1, "inch")
  14082. },
  14083. {
  14084. name: "Normal",
  14085. height: math.unit(2 + 6 / 12, "feet"),
  14086. default: true
  14087. },
  14088. {
  14089. name: "Big",
  14090. height: math.unit(60, "feet")
  14091. },
  14092. {
  14093. name: "Macro",
  14094. height: math.unit(325, "feet")
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(0.3, "meters"),
  14103. weight: math.unit(3.5, "kg"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/chip/front.svg",
  14107. extra: 748 / 674
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Micro",
  14114. height: math.unit(1, "inch"),
  14115. default: true
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14121. {
  14122. side: {
  14123. height: math.unit(2.3, "meters"),
  14124. weight: math.unit(3500, "lb"),
  14125. name: "Side",
  14126. image: {
  14127. source: "./media/characters/torvid/side.svg",
  14128. extra: 1972 / 722,
  14129. bottom: 0.035
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(2.3, "meters"),
  14137. default: true
  14138. },
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(2, "meters"),
  14146. weight: math.unit(150.5, "kg"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/susan/front.svg",
  14150. extra: 693 / 635,
  14151. bottom: 0.05
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Megamacro",
  14158. height: math.unit(505, "miles"),
  14159. default: true
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(6, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/raindrops/front.svg",
  14172. extra: 2655 / 2461,
  14173. bottom: 49 / 2705
  14174. }
  14175. },
  14176. back: {
  14177. height: math.unit(6, "feet"),
  14178. weight: math.unit(150, "lb"),
  14179. name: "Back",
  14180. image: {
  14181. source: "./media/characters/raindrops/back.svg",
  14182. extra: 2574 / 2400,
  14183. bottom: 65 / 2634
  14184. }
  14185. },
  14186. },
  14187. [
  14188. {
  14189. name: "Micro",
  14190. height: math.unit(6, "inches")
  14191. },
  14192. {
  14193. name: "Normal",
  14194. height: math.unit(6 + 2 / 12, "feet")
  14195. },
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(131, "feet"),
  14199. default: true
  14200. },
  14201. {
  14202. name: "Megamacro",
  14203. height: math.unit(15, "miles")
  14204. },
  14205. {
  14206. name: "Gigamacro",
  14207. height: math.unit(4000, "miles")
  14208. },
  14209. {
  14210. name: "Teramacro",
  14211. height: math.unit(315000, "miles")
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(2.794, "meters"),
  14220. weight: math.unit(325, "kg"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/tezwa/front.svg",
  14224. extra: 2083 / 1906,
  14225. bottom: 0.031
  14226. }
  14227. },
  14228. foot: {
  14229. height: math.unit(0.687, "meters"),
  14230. name: "Foot",
  14231. image: {
  14232. source: "./media/characters/tezwa/foot.svg"
  14233. }
  14234. },
  14235. },
  14236. [
  14237. {
  14238. name: "Normal",
  14239. height: math.unit(9 + 2 / 12, "feet"),
  14240. default: true
  14241. },
  14242. ]
  14243. ))
  14244. characterMakers.push(() => makeCharacter(
  14245. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14246. {
  14247. front: {
  14248. height: math.unit(58, "feet"),
  14249. weight: math.unit(89000, "lb"),
  14250. name: "Front",
  14251. image: {
  14252. source: "./media/characters/typhus/front.svg",
  14253. extra: 816 / 800,
  14254. bottom: 0.065
  14255. }
  14256. },
  14257. },
  14258. [
  14259. {
  14260. name: "Macro",
  14261. height: math.unit(58, "feet"),
  14262. default: true
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(12, "feet"),
  14271. weight: math.unit(6, "tonnes"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/lyra-von-wulf/front.svg",
  14275. extra: 1,
  14276. bottom: 0.10
  14277. }
  14278. },
  14279. frontMecha: {
  14280. height: math.unit(12, "feet"),
  14281. weight: math.unit(12, "tonnes"),
  14282. name: "Front (Mecha)",
  14283. image: {
  14284. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14285. extra: 1,
  14286. bottom: 0.042
  14287. }
  14288. },
  14289. maw: {
  14290. height: math.unit(2.2, "feet"),
  14291. name: "Maw",
  14292. image: {
  14293. source: "./media/characters/lyra-von-wulf/maw.svg"
  14294. }
  14295. },
  14296. },
  14297. [
  14298. {
  14299. name: "Normal",
  14300. height: math.unit(12, "feet"),
  14301. default: true
  14302. },
  14303. {
  14304. name: "Classic",
  14305. height: math.unit(50, "feet")
  14306. },
  14307. {
  14308. name: "Macro",
  14309. height: math.unit(500, "feet")
  14310. },
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(1, "mile")
  14314. },
  14315. {
  14316. name: "Gigamacro",
  14317. height: math.unit(400, "miles")
  14318. },
  14319. {
  14320. name: "Teramacro",
  14321. height: math.unit(22000, "miles")
  14322. },
  14323. {
  14324. name: "Solarmacro",
  14325. height: math.unit(8600000, "miles")
  14326. },
  14327. {
  14328. name: "Galactic",
  14329. height: math.unit(1057000, "lightyears")
  14330. },
  14331. ]
  14332. ))
  14333. characterMakers.push(() => makeCharacter(
  14334. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14335. {
  14336. front: {
  14337. height: math.unit(6 + 10 / 12, "feet"),
  14338. weight: math.unit(150, "lb"),
  14339. name: "Front",
  14340. image: {
  14341. source: "./media/characters/dixon/front.svg",
  14342. extra: 3361 / 3209,
  14343. bottom: 0.01
  14344. }
  14345. },
  14346. },
  14347. [
  14348. {
  14349. name: "Normal",
  14350. height: math.unit(6 + 10 / 12, "feet"),
  14351. default: true
  14352. },
  14353. {
  14354. name: "Big",
  14355. height: math.unit(12, "meters")
  14356. },
  14357. {
  14358. name: "Macro",
  14359. height: math.unit(500, "meters")
  14360. },
  14361. {
  14362. name: "Megamacro",
  14363. height: math.unit(2, "km")
  14364. },
  14365. ]
  14366. ))
  14367. characterMakers.push(() => makeCharacter(
  14368. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14369. {
  14370. front: {
  14371. height: math.unit(185, "cm"),
  14372. weight: math.unit(68, "kg"),
  14373. name: "Front",
  14374. image: {
  14375. source: "./media/characters/kauko/front.svg",
  14376. extra: 1455 / 1421,
  14377. bottom: 0.03
  14378. }
  14379. },
  14380. back: {
  14381. height: math.unit(185, "cm"),
  14382. weight: math.unit(68, "kg"),
  14383. name: "Back",
  14384. image: {
  14385. source: "./media/characters/kauko/back.svg",
  14386. extra: 1455 / 1421,
  14387. bottom: 0.004
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(185, "cm"),
  14395. default: true
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14401. {
  14402. frontSfw: {
  14403. height: math.unit(5, "meters"),
  14404. weight: math.unit(4250, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/varg/front-sfw.svg",
  14408. extra: 1103/1010,
  14409. bottom: 50/1153
  14410. },
  14411. form: "anthro",
  14412. default: true
  14413. },
  14414. backSfw: {
  14415. height: math.unit(5, "meters"),
  14416. weight: math.unit(4250, "lb"),
  14417. name: "Back",
  14418. image: {
  14419. source: "./media/characters/varg/back-sfw.svg",
  14420. extra: 1038/1022,
  14421. bottom: 36/1074
  14422. },
  14423. form: "anthro"
  14424. },
  14425. frontNsfw: {
  14426. height: math.unit(5, "meters"),
  14427. weight: math.unit(4250, "lb"),
  14428. name: "Front (NSFW)",
  14429. image: {
  14430. source: "./media/characters/varg/front-nsfw.svg",
  14431. extra: 1103/1010,
  14432. bottom: 50/1153
  14433. },
  14434. form: "anthro"
  14435. },
  14436. sheath: {
  14437. height: math.unit(3.8, "feet"),
  14438. weight: math.unit(90, "kilograms"),
  14439. name: "Sheath",
  14440. image: {
  14441. source: "./media/characters/varg/sheath.svg"
  14442. },
  14443. form: "anthro"
  14444. },
  14445. dick: {
  14446. height: math.unit(4.6, "feet"),
  14447. weight: math.unit(451, "kilograms"),
  14448. name: "Dick",
  14449. image: {
  14450. source: "./media/characters/varg/dick.svg"
  14451. },
  14452. form: "anthro"
  14453. },
  14454. feralSfw: {
  14455. height: math.unit(5, "meters"),
  14456. weight: math.unit(100000, "lb"),
  14457. name: "Side",
  14458. image: {
  14459. source: "./media/characters/varg/feral-sfw.svg",
  14460. extra: 1065/511,
  14461. bottom: 211/1276
  14462. },
  14463. form: "feral",
  14464. default: true
  14465. },
  14466. feralNsfw: {
  14467. height: math.unit(5, "meters"),
  14468. weight: math.unit(100000, "lb"),
  14469. name: "Side (NSFW)",
  14470. image: {
  14471. source: "./media/characters/varg/feral-nsfw.svg",
  14472. extra: 1065/511,
  14473. bottom: 211/1276
  14474. },
  14475. form: "feral",
  14476. },
  14477. feralSheath: {
  14478. height: math.unit(9.8, "feet"),
  14479. weight: math.unit(2000, "kilograms"),
  14480. name: "Sheath",
  14481. image: {
  14482. source: "./media/characters/varg/sheath.svg"
  14483. },
  14484. form: "feral"
  14485. },
  14486. feralDick: {
  14487. height: math.unit(13.11, "feet"),
  14488. weight: math.unit(10440, "kilograms"),
  14489. name: "Dick",
  14490. image: {
  14491. source: "./media/characters/varg/dick.svg"
  14492. },
  14493. form: "feral"
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(5, "meters"),
  14500. form: "anthro"
  14501. },
  14502. {
  14503. name: "Macro",
  14504. height: math.unit(200, "meters"),
  14505. form: "anthro"
  14506. },
  14507. {
  14508. name: "Megamacro",
  14509. height: math.unit(20, "kilometers"),
  14510. form: "anthro"
  14511. },
  14512. {
  14513. name: "True Size",
  14514. height: math.unit(211, "km"),
  14515. form: "anthro",
  14516. default: true
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(1000, "km"),
  14521. form: "anthro"
  14522. },
  14523. {
  14524. name: "Gigamacro+",
  14525. height: math.unit(8000, "km"),
  14526. form: "anthro"
  14527. },
  14528. {
  14529. name: "Teramacro",
  14530. height: math.unit(1000000, "km"),
  14531. form: "anthro"
  14532. },
  14533. {
  14534. name: "Normal",
  14535. height: math.unit(5, "meters"),
  14536. form: "feral"
  14537. },
  14538. {
  14539. name: "Macro",
  14540. height: math.unit(200, "meters"),
  14541. form: "feral"
  14542. },
  14543. {
  14544. name: "Megamacro",
  14545. height: math.unit(20, "kilometers"),
  14546. form: "feral"
  14547. },
  14548. {
  14549. name: "True Size",
  14550. height: math.unit(211, "km"),
  14551. form: "feral",
  14552. default: true
  14553. },
  14554. {
  14555. name: "Gigamacro",
  14556. height: math.unit(1000, "km"),
  14557. form: "feral"
  14558. },
  14559. {
  14560. name: "Gigamacro+",
  14561. height: math.unit(8000, "km"),
  14562. form: "feral"
  14563. },
  14564. {
  14565. name: "Teramacro",
  14566. height: math.unit(1000000, "km"),
  14567. form: "feral"
  14568. },
  14569. ],
  14570. {
  14571. "anthro": {
  14572. name: "Anthro",
  14573. default: true
  14574. },
  14575. "feral": {
  14576. name: "Feral",
  14577. },
  14578. }
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(7 + 7 / 12, "feet"),
  14585. weight: math.unit(267, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/dayza/front.svg",
  14589. extra: 1262 / 1200,
  14590. bottom: 0.035
  14591. }
  14592. },
  14593. side: {
  14594. height: math.unit(7 + 7 / 12, "feet"),
  14595. weight: math.unit(267, "lb"),
  14596. name: "Side",
  14597. image: {
  14598. source: "./media/characters/dayza/side.svg",
  14599. extra: 1295 / 1245,
  14600. bottom: 0.05
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(7 + 7 / 12, "feet"),
  14605. weight: math.unit(267, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/dayza/back.svg",
  14609. extra: 1241 / 1170
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(7 + 7 / 12, "feet"),
  14617. default: true
  14618. },
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(155, "feet")
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(6 + 5 / 12, "feet"),
  14630. weight: math.unit(160, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/xanthos/front.svg",
  14634. extra: 1,
  14635. bottom: 0.04
  14636. }
  14637. },
  14638. back: {
  14639. height: math.unit(6 + 5 / 12, "feet"),
  14640. weight: math.unit(160, "lb"),
  14641. name: "Back",
  14642. image: {
  14643. source: "./media/characters/xanthos/back.svg",
  14644. extra: 1,
  14645. bottom: 0.03
  14646. }
  14647. },
  14648. hand: {
  14649. height: math.unit(0.928, "feet"),
  14650. name: "Hand",
  14651. image: {
  14652. source: "./media/characters/xanthos/hand.svg"
  14653. }
  14654. },
  14655. foot: {
  14656. height: math.unit(1.286, "feet"),
  14657. name: "Foot",
  14658. image: {
  14659. source: "./media/characters/xanthos/foot.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(6 + 5 / 12, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Normal+",
  14671. height: math.unit(6, "meters")
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(40, "feet")
  14676. },
  14677. {
  14678. name: "Macro+",
  14679. height: math.unit(200, "meters")
  14680. },
  14681. {
  14682. name: "Megamacro",
  14683. height: math.unit(20, "km")
  14684. },
  14685. {
  14686. name: "Megamacro+",
  14687. height: math.unit(100, "km")
  14688. },
  14689. {
  14690. name: "Gigamacro",
  14691. height: math.unit(200, "megameters")
  14692. },
  14693. {
  14694. name: "Gigamacro+",
  14695. height: math.unit(1.5, "gigameters")
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(6 + 3 / 12, "feet"),
  14704. weight: math.unit(215, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/grynn/front.svg",
  14708. extra: 4627 / 4209,
  14709. bottom: 0.047
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(6, "inches")
  14717. },
  14718. {
  14719. name: "Normal",
  14720. height: math.unit(6 + 3 / 12, "feet"),
  14721. default: true
  14722. },
  14723. {
  14724. name: "Big",
  14725. height: math.unit(104, "feet")
  14726. },
  14727. {
  14728. name: "Macro",
  14729. height: math.unit(944, "feet")
  14730. },
  14731. {
  14732. name: "Macro+",
  14733. height: math.unit(9480, "feet")
  14734. },
  14735. {
  14736. name: "Megamacro",
  14737. height: math.unit(78752, "feet")
  14738. },
  14739. {
  14740. name: "Megamacro+",
  14741. height: math.unit(630128, "feet")
  14742. },
  14743. {
  14744. name: "Megamacro++",
  14745. height: math.unit(3150695, "feet")
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(7 + 5 / 12, "feet"),
  14754. weight: math.unit(450, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/mocha-aura/front.svg",
  14758. extra: 1907 / 1817,
  14759. bottom: 0.04
  14760. }
  14761. },
  14762. back: {
  14763. height: math.unit(7 + 5 / 12, "feet"),
  14764. weight: math.unit(450, "lb"),
  14765. name: "Back",
  14766. image: {
  14767. source: "./media/characters/mocha-aura/back.svg",
  14768. extra: 1900 / 1825,
  14769. bottom: 0.045
  14770. }
  14771. },
  14772. },
  14773. [
  14774. {
  14775. name: "Nano",
  14776. height: math.unit(1, "nm")
  14777. },
  14778. {
  14779. name: "Megamicro",
  14780. height: math.unit(1, "mm")
  14781. },
  14782. {
  14783. name: "Micro",
  14784. height: math.unit(3, "inches")
  14785. },
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(7 + 5 / 12, "feet"),
  14789. default: true
  14790. },
  14791. {
  14792. name: "Macro",
  14793. height: math.unit(30, "feet")
  14794. },
  14795. {
  14796. name: "Megamacro",
  14797. height: math.unit(3500, "feet")
  14798. },
  14799. {
  14800. name: "Teramacro",
  14801. height: math.unit(500000, "miles")
  14802. },
  14803. {
  14804. name: "Petamacro",
  14805. height: math.unit(50000000000000000, "parsecs")
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14811. {
  14812. front: {
  14813. height: math.unit(6, "feet"),
  14814. weight: math.unit(150, "lb"),
  14815. name: "Front",
  14816. image: {
  14817. source: "./media/characters/ilisha-devya/front.svg",
  14818. extra: 1053/1049,
  14819. bottom: 270/1323
  14820. }
  14821. },
  14822. back: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(150, "lb"),
  14825. name: "Back",
  14826. image: {
  14827. source: "./media/characters/ilisha-devya/back.svg",
  14828. extra: 1131/1128,
  14829. bottom: 39/1170
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Macro",
  14836. height: math.unit(500, "feet"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Megamacro",
  14841. height: math.unit(10, "miles")
  14842. },
  14843. {
  14844. name: "Gigamacro",
  14845. height: math.unit(100000, "miles")
  14846. },
  14847. {
  14848. name: "Examacro",
  14849. height: math.unit(1e9, "lightyears")
  14850. },
  14851. {
  14852. name: "Omniversal",
  14853. height: math.unit(1e33, "lightyears")
  14854. },
  14855. {
  14856. name: "Beyond Infinite",
  14857. height: math.unit(1e100, "lightyears")
  14858. },
  14859. ]
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14863. {
  14864. Side: {
  14865. height: math.unit(6, "feet"),
  14866. weight: math.unit(150, "lb"),
  14867. name: "Side",
  14868. image: {
  14869. source: "./media/characters/mira/side.svg",
  14870. extra: 900 / 799,
  14871. bottom: 0.02
  14872. }
  14873. },
  14874. },
  14875. [
  14876. {
  14877. name: "Human Size",
  14878. height: math.unit(6, "feet")
  14879. },
  14880. {
  14881. name: "Macro",
  14882. height: math.unit(100, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Megamacro",
  14887. height: math.unit(10, "miles")
  14888. },
  14889. {
  14890. name: "Gigamacro",
  14891. height: math.unit(25000, "miles")
  14892. },
  14893. {
  14894. name: "Teramacro",
  14895. height: math.unit(300, "AU")
  14896. },
  14897. {
  14898. name: "Full Size",
  14899. height: math.unit(4.5e10, "lightyears")
  14900. },
  14901. ]
  14902. ))
  14903. characterMakers.push(() => makeCharacter(
  14904. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14905. {
  14906. front: {
  14907. height: math.unit(6, "feet"),
  14908. weight: math.unit(150, "lb"),
  14909. name: "Front",
  14910. image: {
  14911. source: "./media/characters/holly/front.svg",
  14912. extra: 639 / 606
  14913. }
  14914. },
  14915. back: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Back",
  14919. image: {
  14920. source: "./media/characters/holly/back.svg",
  14921. extra: 623 / 598
  14922. }
  14923. },
  14924. frontWorking: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front (Working)",
  14928. image: {
  14929. source: "./media/characters/holly/front-working.svg",
  14930. extra: 607 / 577,
  14931. bottom: 0.048
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(12 + 3 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/porter/front.svg",
  14952. extra: 1,
  14953. bottom: 0.01
  14954. }
  14955. },
  14956. frontRobes: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front (Robes)",
  14960. image: {
  14961. source: "./media/characters/porter/front-robes.svg",
  14962. extra: 1.01,
  14963. bottom: 0.01
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Normal",
  14970. height: math.unit(11 + 9 / 12, "feet"),
  14971. default: true
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14977. {
  14978. legendary: {
  14979. height: math.unit(6, "feet"),
  14980. weight: math.unit(150, "lb"),
  14981. name: "Legendary",
  14982. image: {
  14983. source: "./media/characters/lucy/legendary.svg",
  14984. extra: 1355 / 1100,
  14985. bottom: 0.045
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Legendary",
  14992. height: math.unit(86882 * 2, "miles"),
  14993. default: true
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(6, "feet"),
  15002. weight: math.unit(150, "lb"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/drusilla/front.svg",
  15006. extra: 678 / 635,
  15007. bottom: 0.03
  15008. }
  15009. },
  15010. back: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(150, "lb"),
  15013. name: "Back",
  15014. image: {
  15015. source: "./media/characters/drusilla/back.svg",
  15016. extra: 678 / 635,
  15017. bottom: 0.005
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Macro",
  15024. height: math.unit(100, "feet")
  15025. },
  15026. {
  15027. name: "Canon Height",
  15028. height: math.unit(2000, "feet"),
  15029. default: true
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6, "feet"),
  15038. weight: math.unit(180, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/renard-thatch/front.svg",
  15042. extra: 2411 / 2275,
  15043. bottom: 0.01
  15044. }
  15045. },
  15046. frontPosing: {
  15047. height: math.unit(6, "feet"),
  15048. weight: math.unit(180, "lb"),
  15049. name: "Front (Posing)",
  15050. image: {
  15051. source: "./media/characters/renard-thatch/front-posing.svg",
  15052. extra: 2381 / 2261,
  15053. bottom: 0.01
  15054. }
  15055. },
  15056. back: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(180, "lb"),
  15059. name: "Back",
  15060. image: {
  15061. source: "./media/characters/renard-thatch/back.svg",
  15062. extra: 2428 / 2288
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Micro",
  15069. height: math.unit(3, "inches")
  15070. },
  15071. {
  15072. name: "Default",
  15073. height: math.unit(6, "feet"),
  15074. default: true
  15075. },
  15076. {
  15077. name: "Macro",
  15078. height: math.unit(75, "feet")
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(1450, "feet"),
  15087. weight: math.unit(1.21e6, "tons"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/sekvra/front.svg",
  15091. extra: 1193/1190,
  15092. bottom: 78/1271
  15093. }
  15094. },
  15095. side: {
  15096. height: math.unit(1450, "feet"),
  15097. weight: math.unit(1.21e6, "tons"),
  15098. name: "Side",
  15099. image: {
  15100. source: "./media/characters/sekvra/side.svg",
  15101. extra: 1193/1190,
  15102. bottom: 52/1245
  15103. }
  15104. },
  15105. back: {
  15106. height: math.unit(1450, "feet"),
  15107. weight: math.unit(1.21e6, "tons"),
  15108. name: "Back",
  15109. image: {
  15110. source: "./media/characters/sekvra/back.svg",
  15111. extra: 1219/1216,
  15112. bottom: 21/1240
  15113. }
  15114. },
  15115. frontClothed: {
  15116. height: math.unit(1450, "feet"),
  15117. weight: math.unit(1.21e6, "tons"),
  15118. name: "Front (Clothed)",
  15119. image: {
  15120. source: "./media/characters/sekvra/front-clothed.svg",
  15121. extra: 1192/1189,
  15122. bottom: 79/1271
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Macro",
  15129. height: math.unit(1450, "feet"),
  15130. default: true
  15131. },
  15132. {
  15133. name: "Megamacro",
  15134. height: math.unit(15000, "feet")
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/carmine/front.svg",
  15147. extra: 1557/1538,
  15148. bottom: 68/1625
  15149. }
  15150. },
  15151. frontArmor: {
  15152. height: math.unit(6, "feet"),
  15153. weight: math.unit(150, "lb"),
  15154. name: "Front (Armor)",
  15155. image: {
  15156. source: "./media/characters/carmine/front-armor.svg",
  15157. extra: 1549/1530,
  15158. bottom: 82/1631
  15159. }
  15160. },
  15161. mouth: {
  15162. height: math.unit(0.55, "feet"),
  15163. name: "Mouth",
  15164. image: {
  15165. source: "./media/characters/carmine/mouth.svg"
  15166. }
  15167. },
  15168. hand: {
  15169. height: math.unit(1.05, "feet"),
  15170. name: "Hand",
  15171. image: {
  15172. source: "./media/characters/carmine/hand.svg"
  15173. }
  15174. },
  15175. foot: {
  15176. height: math.unit(0.6, "feet"),
  15177. name: "Foot",
  15178. image: {
  15179. source: "./media/characters/carmine/foot.svg"
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Large",
  15186. height: math.unit(1, "mile")
  15187. },
  15188. {
  15189. name: "Huge",
  15190. height: math.unit(40, "miles"),
  15191. default: true
  15192. },
  15193. {
  15194. name: "Colossal",
  15195. height: math.unit(2500, "miles")
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/elyssia/front.svg",
  15208. extra: 2201 / 2035,
  15209. bottom: 0.05
  15210. }
  15211. },
  15212. frontClothed: {
  15213. height: math.unit(6, "feet"),
  15214. weight: math.unit(150, "lb"),
  15215. name: "Front (Clothed)",
  15216. image: {
  15217. source: "./media/characters/elyssia/front-clothed.svg",
  15218. extra: 2201 / 2035,
  15219. bottom: 0.05
  15220. }
  15221. },
  15222. back: {
  15223. height: math.unit(6, "feet"),
  15224. weight: math.unit(150, "lb"),
  15225. name: "Back",
  15226. image: {
  15227. source: "./media/characters/elyssia/back.svg",
  15228. extra: 2201 / 2035,
  15229. bottom: 0.013
  15230. }
  15231. },
  15232. },
  15233. [
  15234. {
  15235. name: "Smaller",
  15236. height: math.unit(150, "feet")
  15237. },
  15238. {
  15239. name: "Standard",
  15240. height: math.unit(1400, "feet"),
  15241. default: true
  15242. },
  15243. {
  15244. name: "Distracted",
  15245. height: math.unit(15000, "feet")
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(7 + 4/12, "feet"),
  15254. weight: math.unit(690, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/geno-maxwell/front.svg",
  15258. extra: 984/856,
  15259. bottom: 87/1071
  15260. }
  15261. },
  15262. back: {
  15263. height: math.unit(7 + 4/12, "feet"),
  15264. weight: math.unit(690, "lb"),
  15265. name: "Back",
  15266. image: {
  15267. source: "./media/characters/geno-maxwell/back.svg",
  15268. extra: 981/854,
  15269. bottom: 57/1038
  15270. }
  15271. },
  15272. frontCostume: {
  15273. height: math.unit(7 + 4/12, "feet"),
  15274. weight: math.unit(690, "lb"),
  15275. name: "Front (Costume)",
  15276. image: {
  15277. source: "./media/characters/geno-maxwell/front-costume.svg",
  15278. extra: 984/856,
  15279. bottom: 87/1071
  15280. }
  15281. },
  15282. backcostume: {
  15283. height: math.unit(7 + 4/12, "feet"),
  15284. weight: math.unit(690, "lb"),
  15285. name: "Back (Costume)",
  15286. image: {
  15287. source: "./media/characters/geno-maxwell/back-costume.svg",
  15288. extra: 981/854,
  15289. bottom: 57/1038
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Micro",
  15296. height: math.unit(3, "inches")
  15297. },
  15298. {
  15299. name: "Normal",
  15300. height: math.unit(7 + 4 / 12, "feet"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Macro",
  15305. height: math.unit(220, "feet")
  15306. },
  15307. {
  15308. name: "Megamacro",
  15309. height: math.unit(11, "miles")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(7 + 4/12, "feet"),
  15318. weight: math.unit(750, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/regena-maxwell/front.svg",
  15322. extra: 984/856,
  15323. bottom: 87/1071
  15324. }
  15325. },
  15326. back: {
  15327. height: math.unit(7 + 4/12, "feet"),
  15328. weight: math.unit(750, "lb"),
  15329. name: "Back",
  15330. image: {
  15331. source: "./media/characters/regena-maxwell/back.svg",
  15332. extra: 981/854,
  15333. bottom: 57/1038
  15334. }
  15335. },
  15336. frontCostume: {
  15337. height: math.unit(7 + 4/12, "feet"),
  15338. weight: math.unit(750, "lb"),
  15339. name: "Front (Costume)",
  15340. image: {
  15341. source: "./media/characters/regena-maxwell/front-costume.svg",
  15342. extra: 984/856,
  15343. bottom: 87/1071
  15344. }
  15345. },
  15346. backcostume: {
  15347. height: math.unit(7 + 4/12, "feet"),
  15348. weight: math.unit(750, "lb"),
  15349. name: "Back (Costume)",
  15350. image: {
  15351. source: "./media/characters/regena-maxwell/back-costume.svg",
  15352. extra: 981/854,
  15353. bottom: 57/1038
  15354. }
  15355. },
  15356. },
  15357. [
  15358. {
  15359. name: "Normal",
  15360. height: math.unit(7 + 4 / 12, "feet"),
  15361. default: true
  15362. },
  15363. {
  15364. name: "Macro",
  15365. height: math.unit(220, "feet")
  15366. },
  15367. {
  15368. name: "Megamacro",
  15369. height: math.unit(11, "miles")
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(6, "feet"),
  15378. weight: math.unit(150, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15382. extra: 860 / 690,
  15383. bottom: 0.03
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(1.7, "meters"),
  15391. default: true
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(6, "feet"),
  15400. weight: math.unit(150, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/quilly/front.svg",
  15404. extra: 890 / 776
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Gigamacro",
  15411. height: math.unit(404090, "miles"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(7 + 8 / 12, "feet"),
  15421. weight: math.unit(350, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/tempest/front.svg",
  15425. extra: 1175 / 1086,
  15426. bottom: 0.02
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(7 + 8 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15440. {
  15441. side: {
  15442. height: math.unit(4 + 5 / 12, "feet"),
  15443. weight: math.unit(80, "lb"),
  15444. name: "Side",
  15445. image: {
  15446. source: "./media/characters/rodger/side.svg",
  15447. extra: 1235 / 1118
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Micro",
  15454. height: math.unit(1, "inch")
  15455. },
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(4 + 5 / 12, "feet"),
  15459. default: true
  15460. },
  15461. {
  15462. name: "Macro",
  15463. height: math.unit(120, "feet")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15469. {
  15470. front: {
  15471. height: math.unit(6, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Front",
  15474. image: {
  15475. source: "./media/characters/danyel/front.svg",
  15476. extra: 1185 / 1123,
  15477. bottom: 0.05
  15478. }
  15479. },
  15480. },
  15481. [
  15482. {
  15483. name: "Shrunken",
  15484. height: math.unit(0.5, "mm")
  15485. },
  15486. {
  15487. name: "Micro",
  15488. height: math.unit(1, "mm"),
  15489. default: true
  15490. },
  15491. {
  15492. name: "Upsized",
  15493. height: math.unit(5 + 5 / 12, "feet")
  15494. },
  15495. ]
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(5 + 6 / 12, "feet"),
  15502. weight: math.unit(200, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/vivian-bijoux/front.svg",
  15506. extra: 1217/1209,
  15507. bottom: 76/1293
  15508. }
  15509. },
  15510. back: {
  15511. height: math.unit(5 + 6 / 12, "feet"),
  15512. weight: math.unit(200, "lb"),
  15513. name: "Back",
  15514. image: {
  15515. source: "./media/characters/vivian-bijoux/back.svg",
  15516. extra: 1214/1208,
  15517. bottom: 51/1265
  15518. }
  15519. },
  15520. dressed: {
  15521. height: math.unit(5 + 6 / 12, "feet"),
  15522. weight: math.unit(200, "lb"),
  15523. name: "Dressed",
  15524. image: {
  15525. source: "./media/characters/vivian-bijoux/dressed.svg",
  15526. extra: 1217/1209,
  15527. bottom: 76/1293
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(5 + 6 / 12, "feet"),
  15535. default: true
  15536. },
  15537. {
  15538. name: "Bad Dream",
  15539. height: math.unit(500, "feet")
  15540. },
  15541. {
  15542. name: "Nightmare",
  15543. height: math.unit(500, "miles")
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6 + 1 / 12, "feet"),
  15552. weight: math.unit(260, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/zeta/front.svg",
  15556. extra: 1968 / 1889,
  15557. bottom: 0.06
  15558. }
  15559. },
  15560. back: {
  15561. height: math.unit(6 + 1 / 12, "feet"),
  15562. weight: math.unit(260, "lb"),
  15563. name: "Back",
  15564. image: {
  15565. source: "./media/characters/zeta/back.svg",
  15566. extra: 1944 / 1858,
  15567. bottom: 0.03
  15568. }
  15569. },
  15570. hand: {
  15571. height: math.unit(1.112, "feet"),
  15572. name: "Hand",
  15573. image: {
  15574. source: "./media/characters/zeta/hand.svg"
  15575. }
  15576. },
  15577. foot: {
  15578. height: math.unit(1.48, "feet"),
  15579. name: "Foot",
  15580. image: {
  15581. source: "./media/characters/zeta/foot.svg"
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Micro",
  15588. height: math.unit(6, "inches")
  15589. },
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(6 + 1 / 12, "feet"),
  15593. default: true
  15594. },
  15595. {
  15596. name: "Macro",
  15597. height: math.unit(20, "feet")
  15598. },
  15599. ]
  15600. ))
  15601. characterMakers.push(() => makeCharacter(
  15602. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15603. {
  15604. front: {
  15605. height: math.unit(6, "feet"),
  15606. weight: math.unit(150, "lb"),
  15607. name: "Front",
  15608. image: {
  15609. source: "./media/characters/jamie-larsen/front.svg",
  15610. extra: 962 / 933,
  15611. bottom: 0.02
  15612. }
  15613. },
  15614. back: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Back",
  15618. image: {
  15619. source: "./media/characters/jamie-larsen/back.svg",
  15620. extra: 997 / 946
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Macro",
  15627. height: math.unit(28 + 7 / 12, "feet"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Macro+",
  15632. height: math.unit(180, "feet")
  15633. },
  15634. {
  15635. name: "Megamacro",
  15636. height: math.unit(10, "miles")
  15637. },
  15638. {
  15639. name: "Gigamacro",
  15640. height: math.unit(200000, "miles")
  15641. },
  15642. ]
  15643. ))
  15644. characterMakers.push(() => makeCharacter(
  15645. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15646. {
  15647. front: {
  15648. height: math.unit(6, "feet"),
  15649. weight: math.unit(120, "lb"),
  15650. name: "Front",
  15651. image: {
  15652. source: "./media/characters/vance/front.svg",
  15653. extra: 1980 / 1890,
  15654. bottom: 0.09
  15655. }
  15656. },
  15657. back: {
  15658. height: math.unit(6, "feet"),
  15659. weight: math.unit(120, "lb"),
  15660. name: "Back",
  15661. image: {
  15662. source: "./media/characters/vance/back.svg",
  15663. extra: 2081 / 1994,
  15664. bottom: 0.014
  15665. }
  15666. },
  15667. hand: {
  15668. height: math.unit(0.88, "feet"),
  15669. name: "Hand",
  15670. image: {
  15671. source: "./media/characters/vance/hand.svg"
  15672. }
  15673. },
  15674. foot: {
  15675. height: math.unit(0.64, "feet"),
  15676. name: "Foot",
  15677. image: {
  15678. source: "./media/characters/vance/foot.svg"
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Small",
  15685. height: math.unit(90, "feet"),
  15686. default: true
  15687. },
  15688. {
  15689. name: "Macro",
  15690. height: math.unit(100, "meters")
  15691. },
  15692. {
  15693. name: "Megamacro",
  15694. height: math.unit(15, "miles")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(6, "feet"),
  15703. weight: math.unit(180, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/xochitl/front.svg",
  15707. extra: 2297 / 2261,
  15708. bottom: 0.065
  15709. }
  15710. },
  15711. back: {
  15712. height: math.unit(6, "feet"),
  15713. weight: math.unit(180, "lb"),
  15714. name: "Back",
  15715. image: {
  15716. source: "./media/characters/xochitl/back.svg",
  15717. extra: 2386 / 2354,
  15718. bottom: 0.01
  15719. }
  15720. },
  15721. foot: {
  15722. height: math.unit(6 / 5 * 1.15, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Foot",
  15725. image: {
  15726. source: "./media/characters/xochitl/foot.svg"
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(80, "feet")
  15734. },
  15735. {
  15736. name: "Macro+",
  15737. height: math.unit(400, "feet"),
  15738. default: true
  15739. },
  15740. {
  15741. name: "Gigamacro",
  15742. height: math.unit(80000, "miles")
  15743. },
  15744. {
  15745. name: "Gigamacro+",
  15746. height: math.unit(400000, "miles")
  15747. },
  15748. {
  15749. name: "Teramacro",
  15750. height: math.unit(300, "AU")
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(6, "feet"),
  15759. weight: math.unit(150, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/vincent/front.svg",
  15763. extra: 1130 / 1080,
  15764. bottom: 0.055
  15765. }
  15766. },
  15767. beak: {
  15768. height: math.unit(6 * 0.1, "feet"),
  15769. name: "Beak",
  15770. image: {
  15771. source: "./media/characters/vincent/beak.svg"
  15772. }
  15773. },
  15774. hand: {
  15775. height: math.unit(6 * 0.85, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Hand",
  15778. image: {
  15779. source: "./media/characters/vincent/hand.svg"
  15780. }
  15781. },
  15782. foot: {
  15783. height: math.unit(6 * 0.19, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Foot",
  15786. image: {
  15787. source: "./media/characters/vincent/foot.svg"
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Base",
  15794. height: math.unit(6 + 5 / 12, "feet"),
  15795. default: true
  15796. },
  15797. {
  15798. name: "Macro",
  15799. height: math.unit(300, "feet")
  15800. },
  15801. {
  15802. name: "Megamacro",
  15803. height: math.unit(2, "miles")
  15804. },
  15805. {
  15806. name: "Gigamacro",
  15807. height: math.unit(1000, "miles")
  15808. },
  15809. ]
  15810. ))
  15811. characterMakers.push(() => makeCharacter(
  15812. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15813. {
  15814. front: {
  15815. height: math.unit(2, "meters"),
  15816. weight: math.unit(500, "kg"),
  15817. name: "Front",
  15818. image: {
  15819. source: "./media/characters/coatl/front.svg",
  15820. extra: 3948 / 3500,
  15821. bottom: 0.082
  15822. }
  15823. },
  15824. },
  15825. [
  15826. {
  15827. name: "Normal",
  15828. height: math.unit(4, "meters")
  15829. },
  15830. {
  15831. name: "Macro",
  15832. height: math.unit(100, "meters"),
  15833. default: true
  15834. },
  15835. {
  15836. name: "Macro+",
  15837. height: math.unit(300, "meters")
  15838. },
  15839. {
  15840. name: "Megamacro",
  15841. height: math.unit(3, "gigameters")
  15842. },
  15843. {
  15844. name: "Megamacro+",
  15845. height: math.unit(300, "terameters")
  15846. },
  15847. {
  15848. name: "Megamacro++",
  15849. height: math.unit(3, "lightyears")
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(6, "feet"),
  15858. weight: math.unit(50, "kg"),
  15859. name: "front",
  15860. image: {
  15861. source: "./media/characters/shiroryu/front.svg",
  15862. extra: 1990 / 1935
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Mortal Mingling",
  15869. height: math.unit(3, "meters")
  15870. },
  15871. {
  15872. name: "Kaiju-ish",
  15873. height: math.unit(250, "meters")
  15874. },
  15875. {
  15876. name: "Somewhat Godly",
  15877. height: math.unit(400, "km"),
  15878. default: true
  15879. },
  15880. {
  15881. name: "Planetary",
  15882. height: math.unit(300, "megameters")
  15883. },
  15884. {
  15885. name: "Galaxy-dwarfing",
  15886. height: math.unit(450, "kiloparsecs")
  15887. },
  15888. {
  15889. name: "Universe Eater",
  15890. height: math.unit(150, "gigaparsecs")
  15891. },
  15892. {
  15893. name: "Almost Immeasurable",
  15894. height: math.unit(1.3e266, "yottaparsecs")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(6, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/umeko/front.svg",
  15907. extra: 1,
  15908. bottom: 0.019
  15909. }
  15910. },
  15911. frontArmored: {
  15912. height: math.unit(6, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Front (Armored)",
  15915. image: {
  15916. source: "./media/characters/umeko/front-armored.svg",
  15917. extra: 1,
  15918. bottom: 0.021
  15919. }
  15920. },
  15921. },
  15922. [
  15923. {
  15924. name: "Macro",
  15925. height: math.unit(220, "feet"),
  15926. default: true
  15927. },
  15928. {
  15929. name: "Guardian Dragon",
  15930. height: math.unit(50, "miles")
  15931. },
  15932. {
  15933. name: "Cosmic",
  15934. height: math.unit(800000, "miles")
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(6, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/cassidy/front.svg",
  15947. extra: 810/808,
  15948. bottom: 41/851
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Canon Height",
  15955. height: math.unit(120, "feet"),
  15956. default: true
  15957. },
  15958. {
  15959. name: "Macro+",
  15960. height: math.unit(400, "feet")
  15961. },
  15962. {
  15963. name: "Macro++",
  15964. height: math.unit(4000, "feet")
  15965. },
  15966. {
  15967. name: "Megamacro",
  15968. height: math.unit(3, "miles")
  15969. },
  15970. ]
  15971. ))
  15972. characterMakers.push(() => makeCharacter(
  15973. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15974. {
  15975. front: {
  15976. height: math.unit(6, "feet"),
  15977. weight: math.unit(150, "lb"),
  15978. name: "Front",
  15979. image: {
  15980. source: "./media/characters/isaac/front.svg",
  15981. extra: 896 / 815,
  15982. bottom: 0.11
  15983. }
  15984. },
  15985. },
  15986. [
  15987. {
  15988. name: "Human Size",
  15989. height: math.unit(8, "feet"),
  15990. default: true
  15991. },
  15992. {
  15993. name: "Macro",
  15994. height: math.unit(400, "feet")
  15995. },
  15996. {
  15997. name: "Megamacro",
  15998. height: math.unit(50, "miles")
  15999. },
  16000. {
  16001. name: "Canon Height",
  16002. height: math.unit(200, "AU")
  16003. },
  16004. ]
  16005. ))
  16006. characterMakers.push(() => makeCharacter(
  16007. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16008. {
  16009. front: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(72, "kg"),
  16012. name: "Front",
  16013. image: {
  16014. source: "./media/characters/sleekit/front.svg",
  16015. extra: 4693 / 4487,
  16016. bottom: 0.012
  16017. }
  16018. },
  16019. },
  16020. [
  16021. {
  16022. name: "Minimum Height",
  16023. height: math.unit(10, "meters")
  16024. },
  16025. {
  16026. name: "Smaller",
  16027. height: math.unit(25, "meters")
  16028. },
  16029. {
  16030. name: "Larger",
  16031. height: math.unit(38, "meters"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Maximum height",
  16036. height: math.unit(100, "meters")
  16037. },
  16038. ]
  16039. ))
  16040. characterMakers.push(() => makeCharacter(
  16041. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16042. {
  16043. front: {
  16044. height: math.unit(6, "feet"),
  16045. weight: math.unit(150, "lb"),
  16046. name: "Front",
  16047. image: {
  16048. source: "./media/characters/nillia/front.svg",
  16049. extra: 719/665,
  16050. bottom: 6/725
  16051. }
  16052. },
  16053. back: {
  16054. height: math.unit(6, "feet"),
  16055. weight: math.unit(150, "lb"),
  16056. name: "Back",
  16057. image: {
  16058. source: "./media/characters/nillia/back.svg",
  16059. extra: 705/651,
  16060. bottom: 5/710
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Canon Height",
  16067. height: math.unit(489, "feet"),
  16068. default: true
  16069. }
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16074. {
  16075. front: {
  16076. height: math.unit(6, "feet"),
  16077. weight: math.unit(150, "lb"),
  16078. name: "Front",
  16079. image: {
  16080. source: "./media/characters/mesmyriza/front.svg",
  16081. extra: 1541/1291,
  16082. bottom: 87/1628
  16083. }
  16084. },
  16085. foot: {
  16086. height: math.unit(6 / (250 / 35), "feet"),
  16087. name: "Foot",
  16088. image: {
  16089. source: "./media/characters/mesmyriza/foot.svg"
  16090. }
  16091. },
  16092. },
  16093. [
  16094. {
  16095. name: "Macro",
  16096. height: math.unit(457, "meters"),
  16097. default: true
  16098. },
  16099. {
  16100. name: "Megamacro",
  16101. height: math.unit(8, "megameters")
  16102. },
  16103. ]
  16104. ))
  16105. characterMakers.push(() => makeCharacter(
  16106. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16107. {
  16108. front: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(250, "lb"),
  16111. name: "Front",
  16112. image: {
  16113. source: "./media/characters/saudade/front.svg",
  16114. extra: 1172 / 1139,
  16115. bottom: 0.035
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Micro",
  16122. height: math.unit(3, "inches")
  16123. },
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(6, "feet"),
  16127. default: true
  16128. },
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(50, "feet")
  16132. },
  16133. {
  16134. name: "Megamacro",
  16135. height: math.unit(2800, "feet")
  16136. },
  16137. ]
  16138. ))
  16139. characterMakers.push(() => makeCharacter(
  16140. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16141. {
  16142. front: {
  16143. height: math.unit(5 + 4 / 12, "feet"),
  16144. weight: math.unit(100, "lb"),
  16145. name: "Front",
  16146. image: {
  16147. source: "./media/characters/keireer/front.svg",
  16148. extra: 716 / 666,
  16149. bottom: 0.05
  16150. }
  16151. },
  16152. },
  16153. [
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(5 + 4 / 12, "feet"),
  16157. default: true
  16158. },
  16159. ]
  16160. ))
  16161. characterMakers.push(() => makeCharacter(
  16162. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16163. {
  16164. front: {
  16165. height: math.unit(5.5, "feet"),
  16166. weight: math.unit(90, "kg"),
  16167. name: "Front",
  16168. image: {
  16169. source: "./media/characters/mirja/front.svg",
  16170. extra: 1452/1262,
  16171. bottom: 67/1519
  16172. }
  16173. },
  16174. frontDressed: {
  16175. height: math.unit(5.5, "feet"),
  16176. weight: math.unit(90, "lb"),
  16177. name: "Front (Dressed)",
  16178. image: {
  16179. source: "./media/characters/mirja/dressed.svg",
  16180. extra: 1452/1262,
  16181. bottom: 67/1519
  16182. }
  16183. },
  16184. back: {
  16185. height: math.unit(6, "feet"),
  16186. weight: math.unit(90, "lb"),
  16187. name: "Back",
  16188. image: {
  16189. source: "./media/characters/mirja/back.svg",
  16190. extra: 1892/1795,
  16191. bottom: 48/1940
  16192. }
  16193. },
  16194. maw: {
  16195. height: math.unit(1.312, "feet"),
  16196. name: "Maw",
  16197. image: {
  16198. source: "./media/characters/mirja/maw.svg"
  16199. }
  16200. },
  16201. paw: {
  16202. height: math.unit(1.15, "feet"),
  16203. name: "Paw",
  16204. image: {
  16205. source: "./media/characters/mirja/paw.svg"
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "\"Incognito\"",
  16212. height: math.unit(3, "meters")
  16213. },
  16214. {
  16215. name: "Strolling Size",
  16216. height: math.unit(15, "km")
  16217. },
  16218. {
  16219. name: "Larger Strolling Size",
  16220. height: math.unit(400, "km")
  16221. },
  16222. {
  16223. name: "Preferred Size",
  16224. height: math.unit(5000, "km"),
  16225. default: true
  16226. },
  16227. {
  16228. name: "True Size",
  16229. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16235. {
  16236. front: {
  16237. height: math.unit(15, "feet"),
  16238. weight: math.unit(880, "kg"),
  16239. name: "Front",
  16240. image: {
  16241. source: "./media/characters/nightraver/front.svg",
  16242. extra: 2444 / 2160,
  16243. bottom: 0.027
  16244. }
  16245. },
  16246. back: {
  16247. height: math.unit(15, "feet"),
  16248. weight: math.unit(880, "kg"),
  16249. name: "Back",
  16250. image: {
  16251. source: "./media/characters/nightraver/back.svg",
  16252. extra: 2309 / 2180,
  16253. bottom: 0.005
  16254. }
  16255. },
  16256. sole: {
  16257. height: math.unit(2.878, "feet"),
  16258. name: "Sole",
  16259. image: {
  16260. source: "./media/characters/nightraver/sole.svg"
  16261. }
  16262. },
  16263. foot: {
  16264. height: math.unit(2.285, "feet"),
  16265. name: "Foot",
  16266. image: {
  16267. source: "./media/characters/nightraver/foot.svg"
  16268. }
  16269. },
  16270. maw: {
  16271. height: math.unit(2.67, "feet"),
  16272. name: "Maw",
  16273. image: {
  16274. source: "./media/characters/nightraver/maw.svg"
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Micro",
  16281. height: math.unit(1, "cm")
  16282. },
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(15, "feet"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Macro",
  16290. height: math.unit(300, "feet")
  16291. },
  16292. {
  16293. name: "Megamacro",
  16294. height: math.unit(300, "miles")
  16295. },
  16296. {
  16297. name: "Gigamacro",
  16298. height: math.unit(10000, "miles")
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16304. {
  16305. side: {
  16306. height: math.unit(2, "inches"),
  16307. weight: math.unit(5, "grams"),
  16308. name: "Side",
  16309. image: {
  16310. source: "./media/characters/arc/side.svg"
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Micro",
  16317. height: math.unit(2, "inches"),
  16318. default: true
  16319. },
  16320. ]
  16321. ))
  16322. characterMakers.push(() => makeCharacter(
  16323. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16324. {
  16325. front: {
  16326. height: math.unit(1.1938, "meters"),
  16327. weight: math.unit(54, "kg"),
  16328. name: "Front",
  16329. image: {
  16330. source: "./media/characters/nebula-shahar/front.svg",
  16331. extra: 1642 / 1436,
  16332. bottom: 0.06
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Megamicro",
  16339. height: math.unit(0.3, "mm")
  16340. },
  16341. {
  16342. name: "Micro",
  16343. height: math.unit(3, "cm")
  16344. },
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(138, "cm"),
  16348. default: true
  16349. },
  16350. {
  16351. name: "Macro",
  16352. height: math.unit(30, "m")
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(5.24, "feet"),
  16361. weight: math.unit(150, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/shayla/front.svg",
  16365. extra: 1512 / 1414,
  16366. bottom: 0.01
  16367. }
  16368. },
  16369. back: {
  16370. height: math.unit(5.24, "feet"),
  16371. weight: math.unit(150, "lb"),
  16372. name: "Back",
  16373. image: {
  16374. source: "./media/characters/shayla/back.svg",
  16375. extra: 1512 / 1414
  16376. }
  16377. },
  16378. hand: {
  16379. height: math.unit(0.7781496062992126, "feet"),
  16380. name: "Hand",
  16381. image: {
  16382. source: "./media/characters/shayla/hand.svg"
  16383. }
  16384. },
  16385. foot: {
  16386. height: math.unit(1.4206036745406823, "feet"),
  16387. name: "Foot",
  16388. image: {
  16389. source: "./media/characters/shayla/foot.svg"
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Micro",
  16396. height: math.unit(0.32, "feet")
  16397. },
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(5.24, "feet"),
  16401. default: true
  16402. },
  16403. {
  16404. name: "Macro",
  16405. height: math.unit(492.12, "feet")
  16406. },
  16407. {
  16408. name: "Megamacro",
  16409. height: math.unit(186.41, "miles")
  16410. },
  16411. ]
  16412. ))
  16413. characterMakers.push(() => makeCharacter(
  16414. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16415. {
  16416. front: {
  16417. height: math.unit(2.2, "m"),
  16418. weight: math.unit(120, "kg"),
  16419. name: "Front",
  16420. image: {
  16421. source: "./media/characters/pia-jr/front.svg",
  16422. extra: 1000 / 970,
  16423. bottom: 0.035
  16424. }
  16425. },
  16426. hand: {
  16427. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16428. name: "Hand",
  16429. image: {
  16430. source: "./media/characters/pia-jr/hand.svg"
  16431. }
  16432. },
  16433. paw: {
  16434. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16435. name: "Paw",
  16436. image: {
  16437. source: "./media/characters/pia-jr/paw.svg"
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Micro",
  16444. height: math.unit(1.2, "cm")
  16445. },
  16446. {
  16447. name: "Normal",
  16448. height: math.unit(2.2, "m"),
  16449. default: true
  16450. },
  16451. {
  16452. name: "Macro",
  16453. height: math.unit(180, "m")
  16454. },
  16455. {
  16456. name: "Megamacro",
  16457. height: math.unit(420, "km")
  16458. },
  16459. ]
  16460. ))
  16461. characterMakers.push(() => makeCharacter(
  16462. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16463. {
  16464. front: {
  16465. height: math.unit(2, "m"),
  16466. weight: math.unit(115, "kg"),
  16467. name: "Front",
  16468. image: {
  16469. source: "./media/characters/pia-sr/front.svg",
  16470. extra: 760 / 730,
  16471. bottom: 0.015
  16472. }
  16473. },
  16474. back: {
  16475. height: math.unit(2, "m"),
  16476. weight: math.unit(115, "kg"),
  16477. name: "Back",
  16478. image: {
  16479. source: "./media/characters/pia-sr/back.svg",
  16480. extra: 760 / 730,
  16481. bottom: 0.01
  16482. }
  16483. },
  16484. hand: {
  16485. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16486. name: "Hand",
  16487. image: {
  16488. source: "./media/characters/pia-sr/hand.svg"
  16489. }
  16490. },
  16491. foot: {
  16492. height: math.unit(1.83, "feet"),
  16493. name: "Foot",
  16494. image: {
  16495. source: "./media/characters/pia-sr/foot.svg"
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Micro",
  16502. height: math.unit(88, "mm")
  16503. },
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(2, "m"),
  16507. default: true
  16508. },
  16509. {
  16510. name: "Macro",
  16511. height: math.unit(200, "m")
  16512. },
  16513. {
  16514. name: "Megamacro",
  16515. height: math.unit(420, "km")
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(8 + 2 / 12, "feet"),
  16524. weight: math.unit(300, "lb"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/kibibyte/front.svg",
  16528. extra: 2221 / 2098,
  16529. bottom: 0.04
  16530. }
  16531. },
  16532. },
  16533. [
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(8 + 2 / 12, "feet"),
  16537. default: true
  16538. },
  16539. {
  16540. name: "Socialable Macro",
  16541. height: math.unit(50, "feet")
  16542. },
  16543. {
  16544. name: "Macro",
  16545. height: math.unit(300, "feet")
  16546. },
  16547. {
  16548. name: "Megamacro",
  16549. height: math.unit(500, "miles")
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(6, "feet"),
  16558. weight: math.unit(150, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/felix/front.svg",
  16562. extra: 762 / 722,
  16563. bottom: 0.02
  16564. }
  16565. },
  16566. frontClothed: {
  16567. height: math.unit(6, "feet"),
  16568. weight: math.unit(150, "lb"),
  16569. name: "Front (Clothed)",
  16570. image: {
  16571. source: "./media/characters/felix/front-clothed.svg",
  16572. extra: 762 / 722,
  16573. bottom: 0.02
  16574. }
  16575. },
  16576. },
  16577. [
  16578. {
  16579. name: "Normal",
  16580. height: math.unit(6 + 8 / 12, "feet"),
  16581. default: true
  16582. },
  16583. {
  16584. name: "Macro",
  16585. height: math.unit(2600, "feet")
  16586. },
  16587. {
  16588. name: "Megamacro",
  16589. height: math.unit(450, "miles")
  16590. },
  16591. ]
  16592. ))
  16593. characterMakers.push(() => makeCharacter(
  16594. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16595. {
  16596. front: {
  16597. height: math.unit(6 + 1 / 12, "feet"),
  16598. weight: math.unit(250, "lb"),
  16599. name: "Front",
  16600. image: {
  16601. source: "./media/characters/tobo/front.svg",
  16602. extra: 608 / 586,
  16603. bottom: 0.023
  16604. }
  16605. },
  16606. back: {
  16607. height: math.unit(6 + 1 / 12, "feet"),
  16608. weight: math.unit(250, "lb"),
  16609. name: "Back",
  16610. image: {
  16611. source: "./media/characters/tobo/back.svg",
  16612. extra: 608 / 586
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Nano",
  16619. height: math.unit(2, "nm")
  16620. },
  16621. {
  16622. name: "Megamicro",
  16623. height: math.unit(0.1, "mm")
  16624. },
  16625. {
  16626. name: "Micro",
  16627. height: math.unit(1, "inch"),
  16628. default: true
  16629. },
  16630. {
  16631. name: "Human-sized",
  16632. height: math.unit(6 + 1 / 12, "feet")
  16633. },
  16634. {
  16635. name: "Macro",
  16636. height: math.unit(250, "feet")
  16637. },
  16638. {
  16639. name: "Megamacro",
  16640. height: math.unit(75, "miles")
  16641. },
  16642. {
  16643. name: "Texas-sized",
  16644. height: math.unit(750, "miles")
  16645. },
  16646. {
  16647. name: "Teramacro",
  16648. height: math.unit(50000, "miles")
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(6, "feet"),
  16657. weight: math.unit(269, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/danny-kapowsky/front.svg",
  16661. extra: 766 / 736,
  16662. bottom: 0.044
  16663. }
  16664. },
  16665. back: {
  16666. height: math.unit(6, "feet"),
  16667. weight: math.unit(269, "lb"),
  16668. name: "Back",
  16669. image: {
  16670. source: "./media/characters/danny-kapowsky/back.svg",
  16671. extra: 797 / 760,
  16672. bottom: 0.025
  16673. }
  16674. },
  16675. },
  16676. [
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(150, "feet"),
  16680. default: true
  16681. },
  16682. {
  16683. name: "Macro+",
  16684. height: math.unit(200, "feet")
  16685. },
  16686. {
  16687. name: "Macro++",
  16688. height: math.unit(300, "feet")
  16689. },
  16690. {
  16691. name: "Macro+++",
  16692. height: math.unit(400, "feet")
  16693. },
  16694. ]
  16695. ))
  16696. characterMakers.push(() => makeCharacter(
  16697. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16698. {
  16699. side: {
  16700. height: math.unit(6, "feet"),
  16701. weight: math.unit(170, "lb"),
  16702. name: "Side",
  16703. image: {
  16704. source: "./media/characters/finn/side.svg",
  16705. extra: 1953 / 1807,
  16706. bottom: 0.057
  16707. }
  16708. },
  16709. },
  16710. [
  16711. {
  16712. name: "Megamacro",
  16713. height: math.unit(14445, "feet"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(5 + 6 / 12, "feet"),
  16723. weight: math.unit(125, "lb"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/roy/front.svg",
  16727. extra: 1,
  16728. bottom: 0.11
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Micro",
  16735. height: math.unit(3, "inches"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(5 + 6 / 12, "feet")
  16741. },
  16742. {
  16743. name: "Lesser Macro",
  16744. height: math.unit(60, "feet")
  16745. },
  16746. {
  16747. name: "Greater Macro",
  16748. height: math.unit(120, "feet")
  16749. },
  16750. ]
  16751. ))
  16752. characterMakers.push(() => makeCharacter(
  16753. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16754. {
  16755. front: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(100, "lb"),
  16758. name: "Front",
  16759. image: {
  16760. source: "./media/characters/aevsivs/front.svg",
  16761. extra: 1,
  16762. bottom: 0.03
  16763. }
  16764. },
  16765. back: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(100, "lb"),
  16768. name: "Back",
  16769. image: {
  16770. source: "./media/characters/aevsivs/back.svg"
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Micro",
  16777. height: math.unit(2, "inches"),
  16778. default: true
  16779. },
  16780. {
  16781. name: "Normal",
  16782. height: math.unit(5, "feet")
  16783. },
  16784. ]
  16785. ))
  16786. characterMakers.push(() => makeCharacter(
  16787. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16788. {
  16789. front: {
  16790. height: math.unit(5 + 7 / 12, "feet"),
  16791. weight: math.unit(159, "lb"),
  16792. name: "Front",
  16793. image: {
  16794. source: "./media/characters/hildegard/front.svg",
  16795. extra: 289 / 269,
  16796. bottom: 7.63 / 297.8
  16797. }
  16798. },
  16799. back: {
  16800. height: math.unit(5 + 7 / 12, "feet"),
  16801. weight: math.unit(159, "lb"),
  16802. name: "Back",
  16803. image: {
  16804. source: "./media/characters/hildegard/back.svg",
  16805. extra: 280 / 260,
  16806. bottom: 2.3 / 282
  16807. }
  16808. },
  16809. },
  16810. [
  16811. {
  16812. name: "Normal",
  16813. height: math.unit(5 + 7 / 12, "feet"),
  16814. default: true
  16815. },
  16816. ]
  16817. ))
  16818. characterMakers.push(() => makeCharacter(
  16819. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16820. {
  16821. bernard: {
  16822. height: math.unit(2 + 7 / 12, "feet"),
  16823. weight: math.unit(66, "lb"),
  16824. name: "Bernard",
  16825. rename: true,
  16826. image: {
  16827. source: "./media/characters/bernard-wilder/bernard.svg",
  16828. extra: 192 / 128,
  16829. bottom: 0.05
  16830. }
  16831. },
  16832. wilder: {
  16833. height: math.unit(5 + 8 / 12, "feet"),
  16834. weight: math.unit(143, "lb"),
  16835. name: "Wilder",
  16836. rename: true,
  16837. image: {
  16838. source: "./media/characters/bernard-wilder/wilder.svg",
  16839. extra: 361 / 312,
  16840. bottom: 0.02
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(2 + 7 / 12, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16854. {
  16855. anthro: {
  16856. height: math.unit(6 + 1 / 12, "feet"),
  16857. weight: math.unit(155, "lb"),
  16858. name: "Anthro",
  16859. image: {
  16860. source: "./media/characters/hearth/anthro.svg",
  16861. extra: 1178/1136,
  16862. bottom: 28/1206
  16863. }
  16864. },
  16865. feral: {
  16866. height: math.unit(3.78, "feet"),
  16867. weight: math.unit(35, "kg"),
  16868. name: "Feral",
  16869. image: {
  16870. source: "./media/characters/hearth/feral.svg",
  16871. extra: 153 / 135,
  16872. bottom: 0.03
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(6 + 1 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(182, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/ingrid/front.svg",
  16893. extra: 294 / 268,
  16894. bottom: 0.027
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(6, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16908. {
  16909. eevee: {
  16910. height: math.unit(2 + 10 / 12, "feet"),
  16911. weight: math.unit(86, "lb"),
  16912. name: "Malgam",
  16913. image: {
  16914. source: "./media/characters/malgam/eevee.svg",
  16915. extra: 952/784,
  16916. bottom: 38/990
  16917. }
  16918. },
  16919. sylveon: {
  16920. height: math.unit(4, "feet"),
  16921. weight: math.unit(101, "lb"),
  16922. name: "Future Malgam",
  16923. rename: true,
  16924. image: {
  16925. source: "./media/characters/malgam/sylveon.svg",
  16926. extra: 371 / 325,
  16927. bottom: 0.015
  16928. }
  16929. },
  16930. gigantamax: {
  16931. height: math.unit(50, "feet"),
  16932. name: "Gigantamax Malgam",
  16933. rename: true,
  16934. image: {
  16935. source: "./media/characters/malgam/gigantamax.svg"
  16936. }
  16937. },
  16938. },
  16939. [
  16940. {
  16941. name: "Normal",
  16942. height: math.unit(2 + 10 / 12, "feet"),
  16943. default: true
  16944. },
  16945. ]
  16946. ))
  16947. characterMakers.push(() => makeCharacter(
  16948. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16949. {
  16950. front: {
  16951. height: math.unit(5 + 11 / 12, "feet"),
  16952. weight: math.unit(188, "lb"),
  16953. name: "Front",
  16954. image: {
  16955. source: "./media/characters/fleur/front.svg",
  16956. extra: 309 / 283,
  16957. bottom: 0.007
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(5 + 11 / 12, "feet"),
  16965. default: true
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16971. {
  16972. front: {
  16973. height: math.unit(5 + 4 / 12, "feet"),
  16974. weight: math.unit(122, "lb"),
  16975. name: "Front",
  16976. image: {
  16977. source: "./media/characters/jude/front.svg",
  16978. extra: 288 / 273,
  16979. bottom: 0.03
  16980. }
  16981. },
  16982. },
  16983. [
  16984. {
  16985. name: "Normal",
  16986. height: math.unit(5 + 4 / 12, "feet"),
  16987. default: true
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16993. {
  16994. front: {
  16995. height: math.unit(5 + 11 / 12, "feet"),
  16996. weight: math.unit(190, "lb"),
  16997. name: "Front",
  16998. image: {
  16999. source: "./media/characters/seara/front.svg",
  17000. extra: 1,
  17001. bottom: 0.05
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5 + 11 / 12, "feet"),
  17009. default: true
  17010. },
  17011. ]
  17012. ))
  17013. characterMakers.push(() => makeCharacter(
  17014. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17015. {
  17016. front: {
  17017. height: math.unit(16 + 5 / 12, "feet"),
  17018. weight: math.unit(524, "lb"),
  17019. name: "Front",
  17020. image: {
  17021. source: "./media/characters/caspian-lugia/front.svg",
  17022. extra: 1,
  17023. bottom: 0.04
  17024. }
  17025. },
  17026. },
  17027. [
  17028. {
  17029. name: "Normal",
  17030. height: math.unit(16 + 5 / 12, "feet"),
  17031. default: true
  17032. },
  17033. ]
  17034. ))
  17035. characterMakers.push(() => makeCharacter(
  17036. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17037. {
  17038. front: {
  17039. height: math.unit(5 + 7 / 12, "feet"),
  17040. weight: math.unit(170, "lb"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/mika/front.svg",
  17044. extra: 1,
  17045. bottom: 0.016
  17046. }
  17047. },
  17048. },
  17049. [
  17050. {
  17051. name: "Normal",
  17052. height: math.unit(5 + 7 / 12, "feet"),
  17053. default: true
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(6 + 2 / 12, "feet"),
  17062. weight: math.unit(268, "lb"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/sol/front.svg",
  17066. extra: 247 / 231,
  17067. bottom: 0.05
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(6 + 2 / 12, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17081. {
  17082. buizel: {
  17083. height: math.unit(2 + 5 / 12, "feet"),
  17084. weight: math.unit(87, "lb"),
  17085. name: "Front",
  17086. image: {
  17087. source: "./media/characters/umiko/buizel.svg",
  17088. extra: 172 / 157,
  17089. bottom: 0.01
  17090. },
  17091. form: "buizel",
  17092. default: true
  17093. },
  17094. floatzel: {
  17095. height: math.unit(5 + 9 / 12, "feet"),
  17096. weight: math.unit(250, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/umiko/floatzel.svg",
  17100. extra: 1076/1006,
  17101. bottom: 15/1091
  17102. },
  17103. form: "floatzel",
  17104. default: true
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(2 + 5 / 12, "feet"),
  17111. form: "buizel",
  17112. default: true
  17113. },
  17114. {
  17115. name: "Normal",
  17116. height: math.unit(5 + 9 / 12, "feet"),
  17117. form: "floatzel",
  17118. default: true
  17119. },
  17120. ],
  17121. {
  17122. "buizel": {
  17123. name: "Buizel"
  17124. },
  17125. "floatzel": {
  17126. name: "Floatzel",
  17127. default: true
  17128. }
  17129. }
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(6 + 2 / 12, "feet"),
  17136. weight: math.unit(146, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/iliac/front.svg",
  17140. extra: 389 / 365,
  17141. bottom: 0.035
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(6 + 2 / 12, "feet"),
  17149. default: true
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(6, "feet"),
  17158. weight: math.unit(170, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/topaz/front.svg",
  17162. extra: 317 / 303,
  17163. bottom: 0.055
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(6, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(5 + 11 / 12, "feet"),
  17180. weight: math.unit(144, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/gabriel/front.svg",
  17184. extra: 285 / 262,
  17185. bottom: 0.004
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Normal",
  17192. height: math.unit(5 + 11 / 12, "feet"),
  17193. default: true
  17194. },
  17195. ]
  17196. ))
  17197. characterMakers.push(() => makeCharacter(
  17198. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17199. {
  17200. side: {
  17201. height: math.unit(6 + 5 / 12, "feet"),
  17202. weight: math.unit(300, "lb"),
  17203. name: "Side",
  17204. image: {
  17205. source: "./media/characters/tempest-suicune/side.svg",
  17206. extra: 195 / 154,
  17207. bottom: 0.04
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(6 + 5 / 12, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(7 + 2 / 12, "feet"),
  17224. weight: math.unit(322, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/vulcan/front.svg",
  17228. extra: 154 / 147,
  17229. bottom: 0.04
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(7 + 2 / 12, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(5 + 10 / 12, "feet"),
  17246. weight: math.unit(264, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/gault/front.svg",
  17250. extra: 161 / 140,
  17251. bottom: 0.028
  17252. }
  17253. },
  17254. },
  17255. [
  17256. {
  17257. name: "Normal",
  17258. height: math.unit(5 + 10 / 12, "feet"),
  17259. default: true
  17260. },
  17261. ]
  17262. ))
  17263. characterMakers.push(() => makeCharacter(
  17264. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17265. {
  17266. front: {
  17267. height: math.unit(6, "feet"),
  17268. weight: math.unit(150, "lb"),
  17269. name: "Front",
  17270. image: {
  17271. source: "./media/characters/shard/front.svg",
  17272. extra: 273 / 238,
  17273. bottom: 0.02
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(3 + 6 / 12, "feet"),
  17281. default: true
  17282. },
  17283. ]
  17284. ))
  17285. characterMakers.push(() => makeCharacter(
  17286. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17287. {
  17288. front: {
  17289. height: math.unit(5 + 11 / 12, "feet"),
  17290. weight: math.unit(146, "lb"),
  17291. name: "Front",
  17292. image: {
  17293. source: "./media/characters/ashe/front.svg",
  17294. extra: 400 / 373,
  17295. bottom: 0.01
  17296. }
  17297. },
  17298. },
  17299. [
  17300. {
  17301. name: "Normal",
  17302. height: math.unit(5 + 11 / 12, "feet"),
  17303. default: true
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17309. {
  17310. front: {
  17311. height: math.unit(5 + 5 / 12, "feet"),
  17312. weight: math.unit(135, "lb"),
  17313. name: "Front",
  17314. image: {
  17315. source: "./media/characters/beatrix/front.svg",
  17316. extra: 392 / 379,
  17317. bottom: 0.01
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(6, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(6 + 2/12, "feet"),
  17334. weight: math.unit(135, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/ignatius/front.svg",
  17338. extra: 1380/1259,
  17339. bottom: 27/1407
  17340. }
  17341. },
  17342. },
  17343. [
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(6 + 2/12, "feet"),
  17347. default: true
  17348. },
  17349. ]
  17350. ))
  17351. characterMakers.push(() => makeCharacter(
  17352. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17353. {
  17354. front: {
  17355. height: math.unit(6 + 2 / 12, "feet"),
  17356. weight: math.unit(138, "lb"),
  17357. name: "Front",
  17358. image: {
  17359. source: "./media/characters/mei-li/front.svg",
  17360. extra: 237 / 229,
  17361. bottom: 0.03
  17362. }
  17363. },
  17364. },
  17365. [
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(6 + 2 / 12, "feet"),
  17369. default: true
  17370. },
  17371. ]
  17372. ))
  17373. characterMakers.push(() => makeCharacter(
  17374. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17375. {
  17376. front: {
  17377. height: math.unit(2 + 4 / 12, "feet"),
  17378. weight: math.unit(62, "lb"),
  17379. name: "Front",
  17380. image: {
  17381. source: "./media/characters/puru/front.svg",
  17382. extra: 206 / 149,
  17383. bottom: 0.06
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Normal",
  17390. height: math.unit(2 + 4 / 12, "feet"),
  17391. default: true
  17392. },
  17393. ]
  17394. ))
  17395. characterMakers.push(() => makeCharacter(
  17396. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17397. {
  17398. anthro: {
  17399. height: math.unit(5 + 8/12, "feet"),
  17400. weight: math.unit(200, "lb"),
  17401. energyNeed: math.unit(2000, "kcal"),
  17402. name: "Anthro",
  17403. image: {
  17404. source: "./media/characters/kee/anthro.svg",
  17405. extra: 3251/3184,
  17406. bottom: 250/3501
  17407. }
  17408. },
  17409. taur: {
  17410. height: math.unit(11, "feet"),
  17411. weight: math.unit(500, "lb"),
  17412. energyNeed: math.unit(5000, "kcal"),
  17413. name: "Taur",
  17414. image: {
  17415. source: "./media/characters/kee/taur.svg",
  17416. extra: 1362/1320,
  17417. bottom: 83/1445
  17418. }
  17419. },
  17420. },
  17421. [
  17422. {
  17423. name: "Normal",
  17424. height: math.unit(5 + 8/12, "feet"),
  17425. default: true
  17426. },
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(35, "feet")
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17435. {
  17436. anthro: {
  17437. height: math.unit(7, "feet"),
  17438. weight: math.unit(190, "lb"),
  17439. name: "Anthro",
  17440. image: {
  17441. source: "./media/characters/cobalt-dracha/anthro.svg",
  17442. extra: 231 / 225,
  17443. bottom: 0.04
  17444. }
  17445. },
  17446. feral: {
  17447. height: math.unit(9 + 7 / 12, "feet"),
  17448. weight: math.unit(294, "lb"),
  17449. name: "Feral",
  17450. image: {
  17451. source: "./media/characters/cobalt-dracha/feral.svg",
  17452. extra: 692 / 633,
  17453. bottom: 0.05
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(7, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17467. {
  17468. fallen: {
  17469. height: math.unit(11 + 8 / 12, "feet"),
  17470. weight: math.unit(485, "lb"),
  17471. name: "Java (Fallen)",
  17472. rename: true,
  17473. image: {
  17474. source: "./media/characters/java/fallen.svg",
  17475. extra: 226 / 208,
  17476. bottom: 0.005
  17477. }
  17478. },
  17479. godkin: {
  17480. height: math.unit(10 + 6 / 12, "feet"),
  17481. weight: math.unit(328, "lb"),
  17482. name: "Java (Godkin)",
  17483. rename: true,
  17484. image: {
  17485. source: "./media/characters/java/godkin.svg",
  17486. extra: 1104/1068,
  17487. bottom: 36/1140
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(11 + 8 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(5 + 9 / 12, "feet"),
  17504. weight: math.unit(170, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/purna/front.svg",
  17508. extra: 239 / 229,
  17509. bottom: 0.01
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(5 + 9 / 12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(5 + 9 / 12, "feet"),
  17526. weight: math.unit(142, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/kuva/front.svg",
  17530. extra: 281 / 271,
  17531. bottom: 0.006
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(5 + 9 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17545. {
  17546. anthro: {
  17547. height: math.unit(9 + 2 / 12, "feet"),
  17548. weight: math.unit(270, "lb"),
  17549. name: "Anthro",
  17550. image: {
  17551. source: "./media/characters/embra/anthro.svg",
  17552. extra: 200 / 187,
  17553. bottom: 0.02
  17554. }
  17555. },
  17556. feral: {
  17557. height: math.unit(18 + 8 / 12, "feet"),
  17558. weight: math.unit(576, "lb"),
  17559. name: "Feral",
  17560. image: {
  17561. source: "./media/characters/embra/feral.svg",
  17562. extra: 152 / 137,
  17563. bottom: 0.037
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(9 + 2 / 12, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17577. {
  17578. anthro: {
  17579. height: math.unit(10 + 9 / 12, "feet"),
  17580. weight: math.unit(224, "lb"),
  17581. name: "Anthro",
  17582. image: {
  17583. source: "./media/characters/grottos/anthro.svg",
  17584. extra: 350 / 332,
  17585. bottom: 0.045
  17586. }
  17587. },
  17588. feral: {
  17589. height: math.unit(20 + 7 / 12, "feet"),
  17590. weight: math.unit(629, "lb"),
  17591. name: "Feral",
  17592. image: {
  17593. source: "./media/characters/grottos/feral.svg",
  17594. extra: 207 / 190,
  17595. bottom: 0.05
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(10 + 9 / 12, "feet"),
  17603. default: true
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17609. {
  17610. anthro: {
  17611. height: math.unit(9 + 6 / 12, "feet"),
  17612. weight: math.unit(298, "lb"),
  17613. name: "Anthro",
  17614. image: {
  17615. source: "./media/characters/frifna/anthro.svg",
  17616. extra: 282 / 269,
  17617. bottom: 0.015
  17618. }
  17619. },
  17620. feral: {
  17621. height: math.unit(16 + 2 / 12, "feet"),
  17622. weight: math.unit(624, "lb"),
  17623. name: "Feral",
  17624. image: {
  17625. source: "./media/characters/frifna/feral.svg"
  17626. }
  17627. },
  17628. },
  17629. [
  17630. {
  17631. name: "Normal",
  17632. height: math.unit(9 + 6 / 12, "feet"),
  17633. default: true
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6 + 2 / 12, "feet"),
  17642. weight: math.unit(168, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/elise/front.svg",
  17646. extra: 276 / 271
  17647. }
  17648. },
  17649. },
  17650. [
  17651. {
  17652. name: "Normal",
  17653. height: math.unit(6 + 2 / 12, "feet"),
  17654. default: true
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(5 + 10 / 12, "feet"),
  17663. weight: math.unit(210, "lb"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/glade/front.svg",
  17667. extra: 258 / 247,
  17668. bottom: 0.008
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(5 + 10 / 12, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(5 + 10 / 12, "feet"),
  17685. weight: math.unit(129, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/rina/front.svg",
  17689. extra: 266 / 255,
  17690. bottom: 0.005
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(5 + 10 / 12, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(6 + 1 / 12, "feet"),
  17707. weight: math.unit(192, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/veronica/front.svg",
  17711. extra: 319 / 309,
  17712. bottom: 0.005
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(6 + 1 / 12, "feet"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(9 + 3 / 12, "feet"),
  17729. weight: math.unit(1100, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/braxton/front.svg",
  17733. extra: 1057 / 984,
  17734. bottom: 0.05
  17735. }
  17736. },
  17737. },
  17738. [
  17739. {
  17740. name: "Normal",
  17741. height: math.unit(9 + 3 / 12, "feet")
  17742. },
  17743. {
  17744. name: "Giant",
  17745. height: math.unit(300, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(700, "feet")
  17751. },
  17752. {
  17753. name: "Megamacro",
  17754. height: math.unit(6000, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(6 + 7 / 12, "feet"),
  17763. weight: math.unit(150, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/blue-feyonics/front.svg",
  17767. extra: 1403 / 1306,
  17768. bottom: 0.047
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(6 + 7 / 12, "feet"),
  17776. default: true
  17777. },
  17778. ]
  17779. ))
  17780. characterMakers.push(() => makeCharacter(
  17781. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17782. {
  17783. front: {
  17784. height: math.unit(1.8, "meters"),
  17785. weight: math.unit(60, "kg"),
  17786. name: "Front",
  17787. image: {
  17788. source: "./media/characters/maxwell/front.svg",
  17789. extra: 2060 / 1873
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Micro",
  17796. height: math.unit(1, "mm")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(1.8, "meter"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Macro",
  17805. height: math.unit(30, "meters")
  17806. },
  17807. {
  17808. name: "Megamacro",
  17809. height: math.unit(10, "km")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(6, "feet"),
  17818. weight: math.unit(150, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/jack/front.svg",
  17822. extra: 1754 / 1640,
  17823. bottom: 0.01
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(80000, "feet"),
  17831. default: true
  17832. },
  17833. {
  17834. name: "Max size",
  17835. height: math.unit(10, "lightyears")
  17836. },
  17837. ]
  17838. ))
  17839. characterMakers.push(() => makeCharacter(
  17840. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17841. {
  17842. urban: {
  17843. height: math.unit(5, "feet"),
  17844. weight: math.unit(240, "lb"),
  17845. name: "Urban",
  17846. image: {
  17847. source: "./media/characters/cafat/urban.svg",
  17848. extra: 1223/1126,
  17849. bottom: 205/1428
  17850. }
  17851. },
  17852. summer: {
  17853. height: math.unit(5, "feet"),
  17854. weight: math.unit(240, "lb"),
  17855. name: "Summer",
  17856. image: {
  17857. source: "./media/characters/cafat/summer.svg",
  17858. extra: 1223/1126,
  17859. bottom: 205/1428
  17860. }
  17861. },
  17862. winter: {
  17863. height: math.unit(5, "feet"),
  17864. weight: math.unit(240, "lb"),
  17865. name: "Winter",
  17866. image: {
  17867. source: "./media/characters/cafat/winter.svg",
  17868. extra: 1223/1126,
  17869. bottom: 205/1428
  17870. }
  17871. },
  17872. lingerie: {
  17873. height: math.unit(5, "feet"),
  17874. weight: math.unit(240, "lb"),
  17875. name: "Lingerie",
  17876. image: {
  17877. source: "./media/characters/cafat/lingerie.svg",
  17878. extra: 1223/1126,
  17879. bottom: 205/1428
  17880. }
  17881. },
  17882. upright: {
  17883. height: math.unit(6.3, "feet"),
  17884. weight: math.unit(240, "lb"),
  17885. name: "Upright",
  17886. image: {
  17887. source: "./media/characters/cafat/upright.svg",
  17888. bottom: 0.01
  17889. }
  17890. },
  17891. uprightFull: {
  17892. height: math.unit(6.3, "feet"),
  17893. weight: math.unit(240, "lb"),
  17894. name: "Upright (Full)",
  17895. image: {
  17896. source: "./media/characters/cafat/upright-full.svg",
  17897. bottom: 0.01
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Small",
  17904. height: math.unit(5, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Large",
  17909. height: math.unit(13, "feet")
  17910. },
  17911. ]
  17912. ))
  17913. characterMakers.push(() => makeCharacter(
  17914. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17915. {
  17916. front: {
  17917. height: math.unit(6, "feet"),
  17918. weight: math.unit(150, "lb"),
  17919. name: "Front",
  17920. image: {
  17921. source: "./media/characters/verin-raharra/front.svg",
  17922. extra: 5019 / 4835,
  17923. bottom: 0.023
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(7 + 5 / 12, "feet"),
  17931. default: true
  17932. },
  17933. {
  17934. name: "Upsized",
  17935. height: math.unit(20, "feet")
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(7, "feet"),
  17944. weight: math.unit(230, "lb"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/nakata/front.svg",
  17948. extra: 1.005,
  17949. bottom: 0.01
  17950. }
  17951. },
  17952. },
  17953. [
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(7, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Big",
  17961. height: math.unit(14, "feet")
  17962. },
  17963. {
  17964. name: "Macro",
  17965. height: math.unit(400, "feet")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17971. {
  17972. front: {
  17973. height: math.unit(4.91, "feet"),
  17974. weight: math.unit(100, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/lily/front.svg",
  17978. extra: 1585 / 1415,
  17979. bottom: 0.02
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(4.91, "feet"),
  17987. default: true
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17993. {
  17994. laying: {
  17995. height: math.unit(4 + 4 / 12, "feet"),
  17996. weight: math.unit(600, "lb"),
  17997. name: "Laying",
  17998. image: {
  17999. source: "./media/characters/sheila/laying.svg",
  18000. extra: 1333 / 1265,
  18001. bottom: 0.16
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(4 + 4 / 12, "feet"),
  18009. default: true
  18010. },
  18011. ]
  18012. ))
  18013. characterMakers.push(() => makeCharacter(
  18014. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18015. {
  18016. front: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(190, "lb"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/sax/front.svg",
  18022. extra: 1187 / 973,
  18023. bottom: 0.042
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Micro",
  18030. height: math.unit(4, "inches"),
  18031. default: true
  18032. },
  18033. ]
  18034. ))
  18035. characterMakers.push(() => makeCharacter(
  18036. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18037. {
  18038. front: {
  18039. height: math.unit(6, "feet"),
  18040. weight: math.unit(150, "lb"),
  18041. name: "Front",
  18042. image: {
  18043. source: "./media/characters/pandora/front.svg",
  18044. extra: 2720 / 2556,
  18045. bottom: 0.015
  18046. }
  18047. },
  18048. back: {
  18049. height: math.unit(6, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Back",
  18052. image: {
  18053. source: "./media/characters/pandora/back.svg",
  18054. extra: 2720 / 2556,
  18055. bottom: 0.01
  18056. }
  18057. },
  18058. beans: {
  18059. height: math.unit(6 / 8, "feet"),
  18060. name: "Beans",
  18061. image: {
  18062. source: "./media/characters/pandora/beans.svg"
  18063. }
  18064. },
  18065. collar: {
  18066. height: math.unit(0.31, "feet"),
  18067. name: "Collar",
  18068. image: {
  18069. source: "./media/characters/pandora/collar.svg"
  18070. }
  18071. },
  18072. skirt: {
  18073. height: math.unit(6, "feet"),
  18074. weight: math.unit(150, "lb"),
  18075. name: "Skirt",
  18076. image: {
  18077. source: "./media/characters/pandora/skirt.svg",
  18078. extra: 1622 / 1525,
  18079. bottom: 0.015
  18080. }
  18081. },
  18082. hoodie: {
  18083. height: math.unit(6, "feet"),
  18084. weight: math.unit(150, "lb"),
  18085. name: "Hoodie",
  18086. image: {
  18087. source: "./media/characters/pandora/hoodie.svg",
  18088. extra: 1622 / 1525,
  18089. bottom: 0.015
  18090. }
  18091. },
  18092. casual: {
  18093. height: math.unit(6, "feet"),
  18094. weight: math.unit(150, "lb"),
  18095. name: "Casual",
  18096. image: {
  18097. source: "./media/characters/pandora/casual.svg",
  18098. extra: 1622 / 1525,
  18099. bottom: 0.015
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Normal",
  18106. height: math.unit(6, "feet")
  18107. },
  18108. {
  18109. name: "Big Steppy",
  18110. height: math.unit(1, "km"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Galactic Steppy",
  18115. height: math.unit(2, "gigameters")
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18121. {
  18122. side: {
  18123. height: math.unit(10, "feet"),
  18124. weight: math.unit(800, "kg"),
  18125. name: "Side",
  18126. image: {
  18127. source: "./media/characters/venio-darcony/side.svg",
  18128. extra: 1373 / 1003,
  18129. bottom: 0.037
  18130. }
  18131. },
  18132. front: {
  18133. height: math.unit(19, "feet"),
  18134. weight: math.unit(800, "kg"),
  18135. name: "Front",
  18136. image: {
  18137. source: "./media/characters/venio-darcony/front.svg"
  18138. }
  18139. },
  18140. back: {
  18141. height: math.unit(19, "feet"),
  18142. weight: math.unit(800, "kg"),
  18143. name: "Back",
  18144. image: {
  18145. source: "./media/characters/venio-darcony/back.svg"
  18146. }
  18147. },
  18148. sideNsfw: {
  18149. height: math.unit(10, "feet"),
  18150. weight: math.unit(800, "kg"),
  18151. name: "Side (NSFW)",
  18152. image: {
  18153. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18154. extra: 1373 / 1003,
  18155. bottom: 0.037
  18156. }
  18157. },
  18158. frontNsfw: {
  18159. height: math.unit(19, "feet"),
  18160. weight: math.unit(800, "kg"),
  18161. name: "Front (NSFW)",
  18162. image: {
  18163. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18164. }
  18165. },
  18166. backNsfw: {
  18167. height: math.unit(19, "feet"),
  18168. weight: math.unit(800, "kg"),
  18169. name: "Back (NSFW)",
  18170. image: {
  18171. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18172. }
  18173. },
  18174. sideArmored: {
  18175. height: math.unit(10, "feet"),
  18176. weight: math.unit(800, "kg"),
  18177. name: "Side (Armored)",
  18178. image: {
  18179. source: "./media/characters/venio-darcony/side-armored.svg",
  18180. extra: 1373 / 1003,
  18181. bottom: 0.037
  18182. }
  18183. },
  18184. frontArmored: {
  18185. height: math.unit(19, "feet"),
  18186. weight: math.unit(900, "kg"),
  18187. name: "Front (Armored)",
  18188. image: {
  18189. source: "./media/characters/venio-darcony/front-armored.svg"
  18190. }
  18191. },
  18192. backArmored: {
  18193. height: math.unit(19, "feet"),
  18194. weight: math.unit(900, "kg"),
  18195. name: "Back (Armored)",
  18196. image: {
  18197. source: "./media/characters/venio-darcony/back-armored.svg"
  18198. }
  18199. },
  18200. sword: {
  18201. height: math.unit(10, "feet"),
  18202. weight: math.unit(50, "lb"),
  18203. name: "Sword",
  18204. image: {
  18205. source: "./media/characters/venio-darcony/sword.svg"
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(10, "feet")
  18213. },
  18214. {
  18215. name: "Macro",
  18216. height: math.unit(130, "feet"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Macro+",
  18221. height: math.unit(240, "feet")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18227. {
  18228. front: {
  18229. height: math.unit(6, "feet"),
  18230. weight: math.unit(150, "lb"),
  18231. name: "Front",
  18232. image: {
  18233. source: "./media/characters/veski/front.svg",
  18234. extra: 1299 / 1225,
  18235. bottom: 0.04
  18236. }
  18237. },
  18238. back: {
  18239. height: math.unit(6, "feet"),
  18240. weight: math.unit(150, "lb"),
  18241. name: "Back",
  18242. image: {
  18243. source: "./media/characters/veski/back.svg",
  18244. extra: 1299 / 1225,
  18245. bottom: 0.008
  18246. }
  18247. },
  18248. maw: {
  18249. height: math.unit(1.5 * 1.21, "feet"),
  18250. name: "Maw",
  18251. image: {
  18252. source: "./media/characters/veski/maw.svg"
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Macro",
  18259. height: math.unit(2, "km"),
  18260. default: true
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(5 + 7 / 12, "feet"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/isabelle/front.svg",
  18272. extra: 2130 / 1976,
  18273. bottom: 0.05
  18274. }
  18275. },
  18276. },
  18277. [
  18278. {
  18279. name: "Supermicro",
  18280. height: math.unit(10, "micrometers")
  18281. },
  18282. {
  18283. name: "Micro",
  18284. height: math.unit(1, "inch")
  18285. },
  18286. {
  18287. name: "Tiny",
  18288. height: math.unit(5, "inches")
  18289. },
  18290. {
  18291. name: "Standard",
  18292. height: math.unit(5 + 7 / 12, "inches")
  18293. },
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(80, "meters"),
  18297. default: true
  18298. },
  18299. {
  18300. name: "Megamacro",
  18301. height: math.unit(250, "meters")
  18302. },
  18303. {
  18304. name: "Gigamacro",
  18305. height: math.unit(5, "km")
  18306. },
  18307. {
  18308. name: "Cosmic",
  18309. height: math.unit(2.5e6, "miles")
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18315. {
  18316. front: {
  18317. height: math.unit(6, "feet"),
  18318. weight: math.unit(150, "lb"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/hanzo/front.svg",
  18322. extra: 374 / 344,
  18323. bottom: 0.02
  18324. }
  18325. },
  18326. },
  18327. [
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(8, "feet"),
  18331. default: true
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(7, "feet"),
  18340. weight: math.unit(130, "lb"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/anna/front.svg",
  18344. extra: 169 / 145,
  18345. bottom: 0.06
  18346. }
  18347. },
  18348. full: {
  18349. height: math.unit(4.96, "feet"),
  18350. weight: math.unit(220, "lb"),
  18351. name: "Full",
  18352. image: {
  18353. source: "./media/characters/anna/full.svg",
  18354. extra: 138 / 114,
  18355. bottom: 0.15
  18356. }
  18357. },
  18358. tongue: {
  18359. height: math.unit(2.53, "feet"),
  18360. name: "Tongue",
  18361. image: {
  18362. source: "./media/characters/anna/tongue.svg"
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(7, "feet"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(7, "feet"),
  18379. weight: math.unit(150, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/ian-corvid/front.svg",
  18383. extra: 150 / 142,
  18384. bottom: 0.02
  18385. }
  18386. },
  18387. back: {
  18388. height: math.unit(7, "feet"),
  18389. weight: math.unit(150, "lb"),
  18390. name: "Back",
  18391. image: {
  18392. source: "./media/characters/ian-corvid/back.svg",
  18393. extra: 150 / 143,
  18394. bottom: 0.01
  18395. }
  18396. },
  18397. stomping: {
  18398. height: math.unit(7, "feet"),
  18399. weight: math.unit(150, "lb"),
  18400. name: "Stomping",
  18401. image: {
  18402. source: "./media/characters/ian-corvid/stomping.svg",
  18403. extra: 76 / 72
  18404. }
  18405. },
  18406. sitting: {
  18407. height: math.unit(7 / 1.8, "feet"),
  18408. weight: math.unit(150, "lb"),
  18409. name: "Sitting",
  18410. image: {
  18411. source: "./media/characters/ian-corvid/sitting.svg",
  18412. extra: 1400 / 1269,
  18413. bottom: 0.15
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Tiny Microw",
  18420. height: math.unit(1, "inch")
  18421. },
  18422. {
  18423. name: "Microw",
  18424. height: math.unit(6, "inches")
  18425. },
  18426. {
  18427. name: "Crow",
  18428. height: math.unit(7 + 1 / 12, "feet"),
  18429. default: true
  18430. },
  18431. {
  18432. name: "Macrow",
  18433. height: math.unit(176, "feet")
  18434. },
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(5 + 7 / 12, "feet"),
  18442. weight: math.unit(147, "lb"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/natalie-kellon/front.svg",
  18446. extra: 1214 / 1141,
  18447. bottom: 0.02
  18448. }
  18449. },
  18450. },
  18451. [
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(1 / 16, "inch")
  18455. },
  18456. {
  18457. name: "Tiny",
  18458. height: math.unit(4, "inches")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(5 + 7 / 12, "feet"),
  18463. default: true
  18464. },
  18465. {
  18466. name: "Amazon",
  18467. height: math.unit(12, "feet")
  18468. },
  18469. {
  18470. name: "Giantess",
  18471. height: math.unit(160, "meters")
  18472. },
  18473. {
  18474. name: "Titaness",
  18475. height: math.unit(800, "meters")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(6, "feet"),
  18484. weight: math.unit(150, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/alluria/front.svg",
  18488. extra: 806 / 738,
  18489. bottom: 0.01
  18490. }
  18491. },
  18492. side: {
  18493. height: math.unit(6, "feet"),
  18494. weight: math.unit(150, "lb"),
  18495. name: "Side",
  18496. image: {
  18497. source: "./media/characters/alluria/side.svg",
  18498. extra: 800 / 750,
  18499. }
  18500. },
  18501. back: {
  18502. height: math.unit(6, "feet"),
  18503. weight: math.unit(150, "lb"),
  18504. name: "Back",
  18505. image: {
  18506. source: "./media/characters/alluria/back.svg",
  18507. extra: 806 / 738,
  18508. }
  18509. },
  18510. frontMaid: {
  18511. height: math.unit(6, "feet"),
  18512. weight: math.unit(150, "lb"),
  18513. name: "Front (Maid)",
  18514. image: {
  18515. source: "./media/characters/alluria/front-maid.svg",
  18516. extra: 806 / 738,
  18517. bottom: 0.01
  18518. }
  18519. },
  18520. sideMaid: {
  18521. height: math.unit(6, "feet"),
  18522. weight: math.unit(150, "lb"),
  18523. name: "Side (Maid)",
  18524. image: {
  18525. source: "./media/characters/alluria/side-maid.svg",
  18526. extra: 800 / 750,
  18527. bottom: 0.005
  18528. }
  18529. },
  18530. backMaid: {
  18531. height: math.unit(6, "feet"),
  18532. weight: math.unit(150, "lb"),
  18533. name: "Back (Maid)",
  18534. image: {
  18535. source: "./media/characters/alluria/back-maid.svg",
  18536. extra: 806 / 738,
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Micro",
  18543. height: math.unit(6, "inches"),
  18544. default: true
  18545. },
  18546. ]
  18547. ))
  18548. characterMakers.push(() => makeCharacter(
  18549. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18550. {
  18551. front: {
  18552. height: math.unit(6, "feet"),
  18553. weight: math.unit(150, "lb"),
  18554. name: "Front",
  18555. image: {
  18556. source: "./media/characters/kyle/front.svg",
  18557. extra: 1069 / 962,
  18558. bottom: 77.228 / 1727.45
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Macro",
  18565. height: math.unit(150, "feet"),
  18566. default: true
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(6, "feet"),
  18575. weight: math.unit(300, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/duncan/front.svg",
  18579. extra: 1650 / 1482,
  18580. bottom: 0.05
  18581. }
  18582. },
  18583. },
  18584. [
  18585. {
  18586. name: "Macro",
  18587. height: math.unit(100, "feet"),
  18588. default: true
  18589. },
  18590. ]
  18591. ))
  18592. characterMakers.push(() => makeCharacter(
  18593. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18594. {
  18595. front: {
  18596. height: math.unit(5 + 4 / 12, "feet"),
  18597. weight: math.unit(220, "lb"),
  18598. name: "Front",
  18599. image: {
  18600. source: "./media/characters/memory/front.svg",
  18601. extra: 3641 / 3545,
  18602. bottom: 0.03
  18603. }
  18604. },
  18605. back: {
  18606. height: math.unit(5 + 4 / 12, "feet"),
  18607. weight: math.unit(220, "lb"),
  18608. name: "Back",
  18609. image: {
  18610. source: "./media/characters/memory/back.svg",
  18611. extra: 3641 / 3545,
  18612. bottom: 0.025
  18613. }
  18614. },
  18615. frontSkirt: {
  18616. height: math.unit(5 + 4 / 12, "feet"),
  18617. weight: math.unit(220, "lb"),
  18618. name: "Front (Skirt)",
  18619. image: {
  18620. source: "./media/characters/memory/front-skirt.svg",
  18621. extra: 3641 / 3545,
  18622. bottom: 0.03
  18623. }
  18624. },
  18625. frontDress: {
  18626. height: math.unit(5 + 4 / 12, "feet"),
  18627. weight: math.unit(220, "lb"),
  18628. name: "Front (Dress)",
  18629. image: {
  18630. source: "./media/characters/memory/front-dress.svg",
  18631. extra: 3641 / 3545,
  18632. bottom: 0.03
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Micro",
  18639. height: math.unit(6, "inches"),
  18640. default: true
  18641. },
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(5 + 4 / 12, "feet")
  18645. },
  18646. ]
  18647. ))
  18648. characterMakers.push(() => makeCharacter(
  18649. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18650. {
  18651. front: {
  18652. height: math.unit(4 + 11 / 12, "feet"),
  18653. weight: math.unit(100, "lb"),
  18654. name: "Front",
  18655. image: {
  18656. source: "./media/characters/luno/front.svg",
  18657. extra: 1535 / 1487,
  18658. bottom: 0.03
  18659. }
  18660. },
  18661. },
  18662. [
  18663. {
  18664. name: "Micro",
  18665. height: math.unit(3, "inches")
  18666. },
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(4 + 11 / 12, "feet"),
  18670. default: true
  18671. },
  18672. {
  18673. name: "Macro",
  18674. height: math.unit(300, "feet")
  18675. },
  18676. {
  18677. name: "Megamacro",
  18678. height: math.unit(700, "miles")
  18679. },
  18680. ]
  18681. ))
  18682. characterMakers.push(() => makeCharacter(
  18683. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18684. {
  18685. front: {
  18686. height: math.unit(6 + 2 / 12, "feet"),
  18687. weight: math.unit(170, "lb"),
  18688. name: "Front",
  18689. image: {
  18690. source: "./media/characters/jamesy/front.svg",
  18691. extra: 440 / 382,
  18692. bottom: 0.005
  18693. }
  18694. },
  18695. },
  18696. [
  18697. {
  18698. name: "Micro",
  18699. height: math.unit(3, "inches")
  18700. },
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(6 + 2 / 12, "feet"),
  18704. default: true
  18705. },
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(300, "feet")
  18709. },
  18710. {
  18711. name: "Megamacro",
  18712. height: math.unit(700, "miles")
  18713. },
  18714. ]
  18715. ))
  18716. characterMakers.push(() => makeCharacter(
  18717. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18718. {
  18719. front: {
  18720. height: math.unit(6, "feet"),
  18721. weight: math.unit(160, "lb"),
  18722. name: "Front",
  18723. image: {
  18724. source: "./media/characters/mark/front.svg",
  18725. extra: 3300 / 3100,
  18726. bottom: 136.42 / 3440.47
  18727. }
  18728. },
  18729. },
  18730. [
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(120, "meters")
  18734. },
  18735. {
  18736. name: "Bigger Macro",
  18737. height: math.unit(350, "meters")
  18738. },
  18739. {
  18740. name: "Megamacro",
  18741. height: math.unit(8, "km"),
  18742. default: true
  18743. },
  18744. {
  18745. name: "Continental",
  18746. height: math.unit(4550, "km")
  18747. },
  18748. {
  18749. name: "Planetary",
  18750. height: math.unit(65000, "km")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(6, "feet"),
  18759. weight: math.unit(400, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/mac/front.svg",
  18763. extra: 1048 / 987.7,
  18764. bottom: 60 / 1107.6,
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Macro",
  18771. height: math.unit(500, "feet"),
  18772. default: true
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18778. {
  18779. front: {
  18780. height: math.unit(5 + 2 / 12, "feet"),
  18781. weight: math.unit(190, "lb"),
  18782. name: "Front",
  18783. image: {
  18784. source: "./media/characters/bari/front.svg",
  18785. extra: 3156 / 2880,
  18786. bottom: 0.03
  18787. }
  18788. },
  18789. back: {
  18790. height: math.unit(5 + 2 / 12, "feet"),
  18791. weight: math.unit(190, "lb"),
  18792. name: "Back",
  18793. image: {
  18794. source: "./media/characters/bari/back.svg",
  18795. extra: 3260 / 2834,
  18796. bottom: 0.025
  18797. }
  18798. },
  18799. frontPlush: {
  18800. height: math.unit(5 + 2 / 12, "feet"),
  18801. weight: math.unit(190, "lb"),
  18802. name: "Front (Plush)",
  18803. image: {
  18804. source: "./media/characters/bari/front-plush.svg",
  18805. extra: 1112 / 1061,
  18806. bottom: 0.002
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Micro",
  18813. height: math.unit(3, "inches")
  18814. },
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(5 + 2 / 12, "feet"),
  18818. default: true
  18819. },
  18820. {
  18821. name: "Macro",
  18822. height: math.unit(20, "feet")
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(6 + 1 / 12, "feet"),
  18831. weight: math.unit(275, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/hunter-misha-raven/front.svg"
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Mortal",
  18841. height: math.unit(6 + 1 / 12, "feet")
  18842. },
  18843. {
  18844. name: "Divine",
  18845. height: math.unit(1.12134e34, "parsecs"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18852. {
  18853. front: {
  18854. height: math.unit(6 + 3 / 12, "feet"),
  18855. weight: math.unit(220, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/max-calore/front.svg",
  18859. extra: 1700 / 1648,
  18860. bottom: 0.01
  18861. }
  18862. },
  18863. back: {
  18864. height: math.unit(6 + 3 / 12, "feet"),
  18865. weight: math.unit(220, "lb"),
  18866. name: "Back",
  18867. image: {
  18868. source: "./media/characters/max-calore/back.svg",
  18869. extra: 1700 / 1648,
  18870. bottom: 0.01
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(6 + 3 / 12, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18884. {
  18885. side: {
  18886. height: math.unit(2 + 8 / 12, "feet"),
  18887. weight: math.unit(99, "lb"),
  18888. name: "Side",
  18889. image: {
  18890. source: "./media/characters/aspen/side.svg",
  18891. extra: 152 / 138,
  18892. bottom: 0.032
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Normal",
  18899. height: math.unit(2 + 8 / 12, "feet"),
  18900. default: true
  18901. },
  18902. ]
  18903. ))
  18904. characterMakers.push(() => makeCharacter(
  18905. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18906. {
  18907. side: {
  18908. height: math.unit(3 + 2 / 12, "feet"),
  18909. weight: math.unit(224, "lb"),
  18910. name: "Side",
  18911. image: {
  18912. source: "./media/characters/sheila-feral-wolf/side.svg",
  18913. extra: 179 / 166,
  18914. bottom: 0.03
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(3 + 2 / 12, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18928. {
  18929. side: {
  18930. height: math.unit(1 + 9 / 12, "feet"),
  18931. weight: math.unit(38, "lb"),
  18932. name: "Side",
  18933. image: {
  18934. source: "./media/characters/michelle/side.svg",
  18935. extra: 147 / 136.7,
  18936. bottom: 0.03
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(1 + 9 / 12, "feet"),
  18944. default: true
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(1.54, "feet"),
  18953. weight: math.unit(50, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/nino/front.svg"
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(1.54, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(1.49, "feet"),
  18973. weight: math.unit(45, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/viola/front.svg"
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(1.49, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(6 + 5 / 12, "feet"),
  18993. weight: math.unit(580, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/atlas/front.svg",
  18997. extra: 298.5 / 290,
  18998. bottom: 0.015
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 5 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19012. {
  19013. side: {
  19014. height: math.unit(15.6, "inches"),
  19015. weight: math.unit(10, "lb"),
  19016. name: "Side",
  19017. image: {
  19018. source: "./media/characters/davy/side.svg",
  19019. extra: 200 / 170,
  19020. bottom: 0.01
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(15.6, "inches"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19034. {
  19035. side: {
  19036. height: math.unit(4 + 8 / 12, "feet"),
  19037. weight: math.unit(166, "lb"),
  19038. name: "Side",
  19039. image: {
  19040. source: "./media/characters/fiona/side.svg",
  19041. extra: 232 / 220,
  19042. bottom: 0.03
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(4 + 8 / 12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19056. {
  19057. front: {
  19058. height: math.unit(26, "inches"),
  19059. weight: math.unit(35, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/lyla/front.svg",
  19063. bottom: 0.1
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(3, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19077. {
  19078. side: {
  19079. height: math.unit(1.8, "feet"),
  19080. weight: math.unit(44, "lb"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/perseus/side.svg",
  19084. bottom: 0.21
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(1.8, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19098. {
  19099. side: {
  19100. height: math.unit(4 + 2 / 12, "feet"),
  19101. weight: math.unit(20, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/remus/side.svg"
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(4 + 2 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(4 + 11 / 12, "feet"),
  19121. weight: math.unit(114, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/raf/front.svg",
  19125. extra: 1504/1339,
  19126. bottom: 26/1530
  19127. }
  19128. },
  19129. side: {
  19130. height: math.unit(4 + 11 / 12, "feet"),
  19131. weight: math.unit(114, "lb"),
  19132. name: "Side",
  19133. image: {
  19134. source: "./media/characters/raf/side.svg",
  19135. extra: 1466/1316,
  19136. bottom: 29/1495
  19137. }
  19138. },
  19139. paw: {
  19140. height: math.unit(1.45, "feet"),
  19141. name: "Paw",
  19142. image: {
  19143. source: "./media/characters/raf/paw.svg"
  19144. },
  19145. extraAttributes: {
  19146. "toeSize": {
  19147. name: "Toe Size",
  19148. power: 2,
  19149. type: "area",
  19150. base: math.unit(0.004, "m^2")
  19151. },
  19152. "padSize": {
  19153. name: "Pad Size",
  19154. power: 2,
  19155. type: "area",
  19156. base: math.unit(0.04, "m^2")
  19157. },
  19158. "footSize": {
  19159. name: "Foot Size",
  19160. power: 2,
  19161. type: "area",
  19162. base: math.unit(0.08, "m^2")
  19163. },
  19164. }
  19165. },
  19166. },
  19167. [
  19168. {
  19169. name: "Micro",
  19170. height: math.unit(2, "inches")
  19171. },
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(4 + 11 / 12, "feet"),
  19175. default: true
  19176. },
  19177. {
  19178. name: "Macro",
  19179. height: math.unit(70, "feet")
  19180. },
  19181. ]
  19182. ))
  19183. characterMakers.push(() => makeCharacter(
  19184. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19185. {
  19186. front: {
  19187. height: math.unit(1.5, "meters"),
  19188. weight: math.unit(68, "kg"),
  19189. name: "Front",
  19190. image: {
  19191. source: "./media/characters/liam-einarr/front.svg",
  19192. extra: 2822 / 2666
  19193. }
  19194. },
  19195. back: {
  19196. height: math.unit(1.5, "meters"),
  19197. weight: math.unit(68, "kg"),
  19198. name: "Back",
  19199. image: {
  19200. source: "./media/characters/liam-einarr/back.svg",
  19201. extra: 2822 / 2666,
  19202. bottom: 0.015
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(1.5, "meters"),
  19210. default: true
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(150, "meters")
  19215. },
  19216. {
  19217. name: "Megamacro",
  19218. height: math.unit(35, "km")
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(6, "feet"),
  19227. weight: math.unit(75, "kg"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/linda/front.svg",
  19231. extra: 930 / 874,
  19232. bottom: 0.004
  19233. }
  19234. },
  19235. },
  19236. [
  19237. {
  19238. name: "Normal",
  19239. height: math.unit(6, "feet"),
  19240. default: true
  19241. },
  19242. ]
  19243. ))
  19244. characterMakers.push(() => makeCharacter(
  19245. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19246. {
  19247. front: {
  19248. height: math.unit(6 + 8 / 12, "feet"),
  19249. weight: math.unit(220, "lb"),
  19250. name: "Front",
  19251. image: {
  19252. source: "./media/characters/caylex/front.svg",
  19253. extra: 821 / 772,
  19254. bottom: 0.07
  19255. }
  19256. },
  19257. back: {
  19258. height: math.unit(6 + 8 / 12, "feet"),
  19259. weight: math.unit(220, "lb"),
  19260. name: "Back",
  19261. image: {
  19262. source: "./media/characters/caylex/back.svg",
  19263. extra: 821 / 772,
  19264. bottom: 0.022
  19265. }
  19266. },
  19267. hand: {
  19268. height: math.unit(1.25, "feet"),
  19269. name: "Hand",
  19270. image: {
  19271. source: "./media/characters/caylex/hand.svg"
  19272. }
  19273. },
  19274. foot: {
  19275. height: math.unit(1.6, "feet"),
  19276. name: "Foot",
  19277. image: {
  19278. source: "./media/characters/caylex/foot.svg"
  19279. }
  19280. },
  19281. armored: {
  19282. height: math.unit(6 + 8 / 12, "feet"),
  19283. weight: math.unit(250, "lb"),
  19284. name: "Armored",
  19285. image: {
  19286. source: "./media/characters/caylex/armored.svg",
  19287. extra: 1420 / 1310,
  19288. bottom: 0.045
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(6 + 8 / 12, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Normal+",
  19300. height: math.unit(12, "feet")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(7 + 6 / 12, "feet"),
  19309. weight: math.unit(288, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/alana/front.svg",
  19313. extra: 679 / 653,
  19314. bottom: 22.5 / 701
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(7 + 6 / 12, "feet")
  19322. },
  19323. {
  19324. name: "Large",
  19325. height: math.unit(50, "feet")
  19326. },
  19327. {
  19328. name: "Macro",
  19329. height: math.unit(100, "feet"),
  19330. default: true
  19331. },
  19332. {
  19333. name: "Macro+",
  19334. height: math.unit(200, "feet")
  19335. },
  19336. ]
  19337. ))
  19338. characterMakers.push(() => makeCharacter(
  19339. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19340. {
  19341. front: {
  19342. height: math.unit(6 + 1 / 12, "feet"),
  19343. weight: math.unit(210, "lb"),
  19344. name: "Front",
  19345. image: {
  19346. source: "./media/characters/hasani/front.svg",
  19347. extra: 244 / 232,
  19348. bottom: 0.01
  19349. }
  19350. },
  19351. back: {
  19352. height: math.unit(6 + 1 / 12, "feet"),
  19353. weight: math.unit(210, "lb"),
  19354. name: "Back",
  19355. image: {
  19356. source: "./media/characters/hasani/back.svg",
  19357. extra: 244 / 232,
  19358. bottom: 0.01
  19359. }
  19360. },
  19361. },
  19362. [
  19363. {
  19364. name: "Normal",
  19365. height: math.unit(6 + 1 / 12, "feet")
  19366. },
  19367. {
  19368. name: "Macro",
  19369. height: math.unit(175, "feet"),
  19370. default: true
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(1.82, "meters"),
  19379. weight: math.unit(140, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/nita/front.svg",
  19383. extra: 2473 / 2363,
  19384. bottom: 0.01
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(1.82, "m")
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(300, "m")
  19396. },
  19397. {
  19398. name: "Mistake Canon",
  19399. height: math.unit(0.5, "miles"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Big Mistake",
  19404. height: math.unit(13, "miles")
  19405. },
  19406. {
  19407. name: "Playing God",
  19408. height: math.unit(2450, "miles")
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(4, "feet"),
  19417. weight: math.unit(120, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/shiriko/front.svg",
  19421. extra: 970/934,
  19422. bottom: 5/975
  19423. }
  19424. },
  19425. },
  19426. [
  19427. {
  19428. name: "Normal",
  19429. height: math.unit(4, "feet"),
  19430. default: true
  19431. },
  19432. ]
  19433. ))
  19434. characterMakers.push(() => makeCharacter(
  19435. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19436. {
  19437. front: {
  19438. height: math.unit(6, "feet"),
  19439. name: "front",
  19440. image: {
  19441. source: "./media/characters/deja/front.svg",
  19442. extra: 926 / 840,
  19443. bottom: 0.07
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Planck Length",
  19450. height: math.unit(1.6e-35, "meters")
  19451. },
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(30.48, "meters"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Universal",
  19459. height: math.unit(8.8e26, "meters")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19465. {
  19466. side: {
  19467. height: math.unit(8, "feet"),
  19468. weight: math.unit(6300, "lb"),
  19469. name: "Side",
  19470. image: {
  19471. source: "./media/characters/anima/side.svg",
  19472. bottom: 0.035
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Normal",
  19479. height: math.unit(8, "feet"),
  19480. default: true
  19481. },
  19482. ]
  19483. ))
  19484. characterMakers.push(() => makeCharacter(
  19485. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19486. {
  19487. front: {
  19488. height: math.unit(8, "feet"),
  19489. weight: math.unit(350, "lb"),
  19490. name: "Front",
  19491. image: {
  19492. source: "./media/characters/bianca/front.svg",
  19493. extra: 234 / 225,
  19494. bottom: 0.03
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(8, "feet"),
  19502. default: true
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(11 + 5/12, "feet"),
  19511. weight: math.unit(1200, "lb"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/adinia/front.svg",
  19515. extra: 1767/1641,
  19516. bottom: 44/1811
  19517. },
  19518. extraAttributes: {
  19519. "energyIntake": {
  19520. name: "Energy Intake",
  19521. power: 3,
  19522. type: "energy",
  19523. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19524. },
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(11 + 5/12, "feet"),
  19529. weight: math.unit(1200, "lb"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/adinia/back.svg",
  19533. extra: 1834/1684,
  19534. bottom: 14/1848
  19535. },
  19536. extraAttributes: {
  19537. "energyIntake": {
  19538. name: "Energy Intake",
  19539. power: 3,
  19540. type: "energy",
  19541. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19542. },
  19543. }
  19544. },
  19545. maw: {
  19546. height: math.unit(3.79, "feet"),
  19547. name: "Maw",
  19548. image: {
  19549. source: "./media/characters/adinia/maw.svg"
  19550. }
  19551. },
  19552. rump: {
  19553. height: math.unit(4.6, "feet"),
  19554. name: "Rump",
  19555. image: {
  19556. source: "./media/characters/adinia/rump.svg"
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(11 + 5 / 12, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(3, "meters"),
  19573. weight: math.unit(200, "kg"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/lykasa/front.svg",
  19577. extra: 1076 / 976,
  19578. bottom: 0.06
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(3, "meters")
  19586. },
  19587. {
  19588. name: "Kaiju",
  19589. height: math.unit(120, "meters"),
  19590. default: true
  19591. },
  19592. {
  19593. name: "Mega Kaiju",
  19594. height: math.unit(240, "km")
  19595. },
  19596. {
  19597. name: "Giga Kaiju",
  19598. height: math.unit(400, "megameters")
  19599. },
  19600. {
  19601. name: "Tera Kaiju",
  19602. height: math.unit(800, "gigameters")
  19603. },
  19604. {
  19605. name: "Kaiju Dragon Goddess",
  19606. height: math.unit(26, "zettaparsecs")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19612. {
  19613. side: {
  19614. height: math.unit(283 / 124 * 6, "feet"),
  19615. weight: math.unit(35000, "lb"),
  19616. name: "Side",
  19617. image: {
  19618. source: "./media/characters/malfaren/side.svg",
  19619. extra: 1310/529,
  19620. bottom: 24/1334
  19621. }
  19622. },
  19623. front: {
  19624. height: math.unit(22.36, "feet"),
  19625. weight: math.unit(35000, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/malfaren/front.svg",
  19629. extra: 1237/1115,
  19630. bottom: 32/1269
  19631. }
  19632. },
  19633. maw: {
  19634. height: math.unit(6.9, "feet"),
  19635. name: "Maw",
  19636. image: {
  19637. source: "./media/characters/malfaren/maw.svg"
  19638. }
  19639. },
  19640. dick: {
  19641. height: math.unit(6.19, "feet"),
  19642. name: "Dick",
  19643. image: {
  19644. source: "./media/characters/malfaren/dick.svg"
  19645. }
  19646. },
  19647. eye: {
  19648. height: math.unit(0.69, "feet"),
  19649. name: "Eye",
  19650. image: {
  19651. source: "./media/characters/malfaren/eye.svg"
  19652. }
  19653. },
  19654. },
  19655. [
  19656. {
  19657. name: "Big",
  19658. height: math.unit(283 / 162 * 6, "feet"),
  19659. },
  19660. {
  19661. name: "Bigger",
  19662. height: math.unit(283 / 124 * 6, "feet")
  19663. },
  19664. {
  19665. name: "Massive",
  19666. height: math.unit(283 / 92 * 6, "feet"),
  19667. default: true
  19668. },
  19669. {
  19670. name: "👀💦",
  19671. height: math.unit(283 / 73 * 6, "feet"),
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(1.7, "m"),
  19680. weight: math.unit(70, "kg"),
  19681. name: "Front",
  19682. image: {
  19683. source: "./media/characters/kernel/front.svg",
  19684. extra: 1960/1821,
  19685. bottom: 17/1977
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Nano",
  19692. height: math.unit(17, "micrometers")
  19693. },
  19694. {
  19695. name: "Micro",
  19696. height: math.unit(1.7, "mm")
  19697. },
  19698. {
  19699. name: "Small",
  19700. height: math.unit(1.7, "cm")
  19701. },
  19702. {
  19703. name: "Normal",
  19704. height: math.unit(1.7, "m"),
  19705. default: true
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19711. {
  19712. front: {
  19713. height: math.unit(1.75, "meters"),
  19714. weight: math.unit(65, "kg"),
  19715. name: "Front",
  19716. image: {
  19717. source: "./media/characters/jayne-folest/front.svg",
  19718. extra: 2115 / 2007,
  19719. bottom: 0.02
  19720. }
  19721. },
  19722. back: {
  19723. height: math.unit(1.75, "meters"),
  19724. weight: math.unit(65, "kg"),
  19725. name: "Back",
  19726. image: {
  19727. source: "./media/characters/jayne-folest/back.svg",
  19728. extra: 2115 / 2007,
  19729. bottom: 0.005
  19730. }
  19731. },
  19732. frontClothed: {
  19733. height: math.unit(1.75, "meters"),
  19734. weight: math.unit(65, "kg"),
  19735. name: "Front (Clothed)",
  19736. image: {
  19737. source: "./media/characters/jayne-folest/front-clothed.svg",
  19738. extra: 2115 / 2007,
  19739. bottom: 0.035
  19740. }
  19741. },
  19742. hand: {
  19743. height: math.unit(1 / 1.260, "feet"),
  19744. name: "Hand",
  19745. image: {
  19746. source: "./media/characters/jayne-folest/hand.svg"
  19747. }
  19748. },
  19749. foot: {
  19750. height: math.unit(1 / 0.918, "feet"),
  19751. name: "Foot",
  19752. image: {
  19753. source: "./media/characters/jayne-folest/foot.svg"
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Micro",
  19760. height: math.unit(4, "cm")
  19761. },
  19762. {
  19763. name: "Normal",
  19764. height: math.unit(1.75, "meters")
  19765. },
  19766. {
  19767. name: "Macro",
  19768. height: math.unit(47.5, "meters"),
  19769. default: true
  19770. },
  19771. ]
  19772. ))
  19773. characterMakers.push(() => makeCharacter(
  19774. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19775. {
  19776. front: {
  19777. height: math.unit(180, "cm"),
  19778. weight: math.unit(70, "kg"),
  19779. name: "Front",
  19780. image: {
  19781. source: "./media/characters/algier/front.svg",
  19782. extra: 596 / 572,
  19783. bottom: 0.04
  19784. }
  19785. },
  19786. back: {
  19787. height: math.unit(180, "cm"),
  19788. weight: math.unit(70, "kg"),
  19789. name: "Back",
  19790. image: {
  19791. source: "./media/characters/algier/back.svg",
  19792. extra: 596 / 572,
  19793. bottom: 0.025
  19794. }
  19795. },
  19796. frontdressed: {
  19797. height: math.unit(180, "cm"),
  19798. weight: math.unit(150, "kg"),
  19799. name: "Front-dressed",
  19800. image: {
  19801. source: "./media/characters/algier/front-dressed.svg",
  19802. extra: 596 / 572,
  19803. bottom: 0.038
  19804. }
  19805. },
  19806. },
  19807. [
  19808. {
  19809. name: "Micro",
  19810. height: math.unit(5, "cm")
  19811. },
  19812. {
  19813. name: "Normal",
  19814. height: math.unit(180, "cm"),
  19815. default: true
  19816. },
  19817. {
  19818. name: "Macro",
  19819. height: math.unit(64, "m")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19825. {
  19826. upright: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(300, "lb"),
  19829. name: "Upright",
  19830. image: {
  19831. source: "./media/characters/pretzel/upright.svg",
  19832. extra: 534 / 522,
  19833. bottom: 0.065
  19834. }
  19835. },
  19836. sprawling: {
  19837. height: math.unit(3.75, "feet"),
  19838. weight: math.unit(300, "lb"),
  19839. name: "Sprawling",
  19840. image: {
  19841. source: "./media/characters/pretzel/sprawling.svg",
  19842. extra: 314 / 281,
  19843. bottom: 0.1
  19844. }
  19845. },
  19846. tongue: {
  19847. height: math.unit(2, "feet"),
  19848. name: "Tongue",
  19849. image: {
  19850. source: "./media/characters/pretzel/tongue.svg"
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Normal",
  19857. height: math.unit(7, "feet"),
  19858. default: true
  19859. },
  19860. {
  19861. name: "Oversized",
  19862. height: math.unit(15, "feet")
  19863. },
  19864. {
  19865. name: "Huge",
  19866. height: math.unit(30, "feet")
  19867. },
  19868. {
  19869. name: "Macro",
  19870. height: math.unit(250, "feet")
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19876. {
  19877. sideFront: {
  19878. height: math.unit(5 + 2 / 12, "feet"),
  19879. weight: math.unit(120, "lb"),
  19880. name: "Front Side",
  19881. image: {
  19882. source: "./media/characters/roxi/side-front.svg",
  19883. extra: 2924 / 2717,
  19884. bottom: 0.08
  19885. }
  19886. },
  19887. sideBack: {
  19888. height: math.unit(5 + 2 / 12, "feet"),
  19889. weight: math.unit(120, "lb"),
  19890. name: "Back Side",
  19891. image: {
  19892. source: "./media/characters/roxi/side-back.svg",
  19893. extra: 2904 / 2693,
  19894. bottom: 0.06
  19895. }
  19896. },
  19897. front: {
  19898. height: math.unit(5 + 2 / 12, "feet"),
  19899. weight: math.unit(120, "lb"),
  19900. name: "Front",
  19901. image: {
  19902. source: "./media/characters/roxi/front.svg",
  19903. extra: 2028 / 1907,
  19904. bottom: 0.01
  19905. }
  19906. },
  19907. frontAlt: {
  19908. height: math.unit(5 + 2 / 12, "feet"),
  19909. weight: math.unit(120, "lb"),
  19910. name: "Front (Alt)",
  19911. image: {
  19912. source: "./media/characters/roxi/front-alt.svg",
  19913. extra: 1828 / 1798,
  19914. bottom: 0.01
  19915. }
  19916. },
  19917. sitting: {
  19918. height: math.unit(2.8, "feet"),
  19919. weight: math.unit(120, "lb"),
  19920. name: "Sitting",
  19921. image: {
  19922. source: "./media/characters/roxi/sitting.svg",
  19923. extra: 2660 / 2462,
  19924. bottom: 0.1
  19925. }
  19926. },
  19927. },
  19928. [
  19929. {
  19930. name: "Normal",
  19931. height: math.unit(5 + 2 / 12, "feet"),
  19932. default: true
  19933. },
  19934. ]
  19935. ))
  19936. characterMakers.push(() => makeCharacter(
  19937. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19938. {
  19939. side: {
  19940. height: math.unit(55, "feet"),
  19941. weight: math.unit(153, "tons"),
  19942. name: "Side",
  19943. image: {
  19944. source: "./media/characters/shadow/side.svg",
  19945. extra: 701 / 628,
  19946. bottom: 0.02
  19947. }
  19948. },
  19949. flying: {
  19950. height: math.unit(145, "feet"),
  19951. weight: math.unit(153, "tons"),
  19952. name: "Flying",
  19953. image: {
  19954. source: "./media/characters/shadow/flying.svg"
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(55, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(6, "feet"),
  19971. weight: math.unit(200, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/marcie/front.svg",
  19975. extra: 960 / 876,
  19976. bottom: 58 / 1017.87
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(1, "mile"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(7, "feet"),
  19993. weight: math.unit(200, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/kachina/front.svg",
  19997. extra: 1290.68 / 1119,
  19998. bottom: 36.5 / 1327.18
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(7, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20012. {
  20013. looking: {
  20014. height: math.unit(2, "meters"),
  20015. weight: math.unit(300, "kg"),
  20016. name: "Looking",
  20017. image: {
  20018. source: "./media/characters/kash/looking.svg",
  20019. extra: 474 / 344,
  20020. bottom: 0.03
  20021. }
  20022. },
  20023. side: {
  20024. height: math.unit(2, "meters"),
  20025. weight: math.unit(300, "kg"),
  20026. name: "Side",
  20027. image: {
  20028. source: "./media/characters/kash/side.svg",
  20029. extra: 302 / 251,
  20030. bottom: 0.03
  20031. }
  20032. },
  20033. front: {
  20034. height: math.unit(2, "meters"),
  20035. weight: math.unit(300, "kg"),
  20036. name: "Front",
  20037. image: {
  20038. source: "./media/characters/kash/front.svg",
  20039. extra: 495 / 360,
  20040. bottom: 0.015
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(2, "meters"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Big",
  20052. height: math.unit(3, "meters")
  20053. },
  20054. {
  20055. name: "Large",
  20056. height: math.unit(5, "meters")
  20057. },
  20058. ]
  20059. ))
  20060. characterMakers.push(() => makeCharacter(
  20061. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20062. {
  20063. feeding: {
  20064. height: math.unit(6.7, "feet"),
  20065. weight: math.unit(350, "lb"),
  20066. name: "Feeding",
  20067. image: {
  20068. source: "./media/characters/lalim/feeding.svg",
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(6.7, "feet"),
  20076. default: true
  20077. },
  20078. ]
  20079. ))
  20080. characterMakers.push(() => makeCharacter(
  20081. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20082. {
  20083. front: {
  20084. height: math.unit(9.5, "feet"),
  20085. weight: math.unit(600, "lb"),
  20086. name: "Front",
  20087. image: {
  20088. source: "./media/characters/de'vout/front.svg",
  20089. extra: 1443 / 1328,
  20090. bottom: 0.025
  20091. }
  20092. },
  20093. back: {
  20094. height: math.unit(9.5, "feet"),
  20095. weight: math.unit(600, "lb"),
  20096. name: "Back",
  20097. image: {
  20098. source: "./media/characters/de'vout/back.svg",
  20099. extra: 1443 / 1328
  20100. }
  20101. },
  20102. frontDressed: {
  20103. height: math.unit(9.5, "feet"),
  20104. weight: math.unit(600, "lb"),
  20105. name: "Front (Dressed",
  20106. image: {
  20107. source: "./media/characters/de'vout/front-dressed.svg",
  20108. extra: 1443 / 1328,
  20109. bottom: 0.025
  20110. }
  20111. },
  20112. backDressed: {
  20113. height: math.unit(9.5, "feet"),
  20114. weight: math.unit(600, "lb"),
  20115. name: "Back (Dressed",
  20116. image: {
  20117. source: "./media/characters/de'vout/back-dressed.svg",
  20118. extra: 1443 / 1328
  20119. }
  20120. },
  20121. },
  20122. [
  20123. {
  20124. name: "Normal",
  20125. height: math.unit(9.5, "feet"),
  20126. default: true
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(8, "feet"),
  20135. weight: math.unit(225, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/talana/front.svg",
  20139. extra: 1410 / 1300,
  20140. bottom: 0.015
  20141. }
  20142. },
  20143. frontDressed: {
  20144. height: math.unit(8, "feet"),
  20145. weight: math.unit(225, "lb"),
  20146. name: "Front (Dressed",
  20147. image: {
  20148. source: "./media/characters/talana/front-dressed.svg",
  20149. extra: 1410 / 1300,
  20150. bottom: 0.015
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(8, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20164. {
  20165. side: {
  20166. height: math.unit(7.2, "feet"),
  20167. weight: math.unit(150, "lb"),
  20168. name: "Side",
  20169. image: {
  20170. source: "./media/characters/xeauvok/side.svg",
  20171. extra: 1975 / 1523,
  20172. bottom: 0.07
  20173. }
  20174. },
  20175. },
  20176. [
  20177. {
  20178. name: "Normal",
  20179. height: math.unit(7.2, "feet"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20186. {
  20187. side: {
  20188. height: math.unit(4, "meters"),
  20189. weight: math.unit(2200, "kg"),
  20190. name: "Side",
  20191. image: {
  20192. source: "./media/characters/zara/side.svg",
  20193. extra: 765/744,
  20194. bottom: 156/921
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Normal",
  20201. height: math.unit(4, "meters"),
  20202. default: true
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20208. {
  20209. side: {
  20210. height: math.unit(6, "feet"),
  20211. weight: math.unit(150, "lb"),
  20212. name: "Side",
  20213. image: {
  20214. source: "./media/characters/richard-dragon/side.svg",
  20215. extra: 845 / 340,
  20216. bottom: 0.017
  20217. }
  20218. },
  20219. maw: {
  20220. height: math.unit(2.97, "feet"),
  20221. name: "Maw",
  20222. image: {
  20223. source: "./media/characters/richard-dragon/maw.svg"
  20224. }
  20225. },
  20226. },
  20227. [
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(4, "feet"),
  20235. weight: math.unit(100, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/richard-smeargle/front.svg",
  20239. extra: 2952 / 2820,
  20240. bottom: 0.028
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Normal",
  20247. height: math.unit(4, "feet"),
  20248. default: true
  20249. },
  20250. {
  20251. name: "Dynamax",
  20252. height: math.unit(20, "meters")
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(6, "feet"),
  20261. weight: math.unit(110, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/klay/front.svg",
  20265. extra: 962 / 883,
  20266. bottom: 0.04
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(6, "feet"),
  20271. weight: math.unit(110, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/klay/back.svg",
  20275. extra: 962 / 883
  20276. }
  20277. },
  20278. beans: {
  20279. height: math.unit(1.15, "feet"),
  20280. name: "Beans",
  20281. image: {
  20282. source: "./media/characters/klay/beans.svg"
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(6, "inches")
  20290. },
  20291. {
  20292. name: "Mini",
  20293. height: math.unit(3, "feet")
  20294. },
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(6, "feet"),
  20298. default: true
  20299. },
  20300. {
  20301. name: "Big",
  20302. height: math.unit(25, "feet")
  20303. },
  20304. {
  20305. name: "Macro",
  20306. height: math.unit(100, "feet")
  20307. },
  20308. {
  20309. name: "Megamacro",
  20310. height: math.unit(400, "feet")
  20311. },
  20312. ]
  20313. ))
  20314. characterMakers.push(() => makeCharacter(
  20315. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20316. {
  20317. front: {
  20318. height: math.unit(6, "feet"),
  20319. weight: math.unit(160, "lb"),
  20320. name: "Front",
  20321. image: {
  20322. source: "./media/characters/marcus/front.svg",
  20323. extra: 734 / 676,
  20324. bottom: 0.03
  20325. }
  20326. },
  20327. },
  20328. [
  20329. {
  20330. name: "Little",
  20331. height: math.unit(6, "feet")
  20332. },
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(110, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(250, "feet")
  20341. },
  20342. {
  20343. name: "Megamacro",
  20344. height: math.unit(1000, "feet")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(7, "feet"),
  20353. weight: math.unit(275, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/claude-delroute/front.svg",
  20357. extra: 902/827,
  20358. bottom: 26/928
  20359. }
  20360. },
  20361. side: {
  20362. height: math.unit(7, "feet"),
  20363. weight: math.unit(275, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/claude-delroute/side.svg",
  20367. extra: 908/853,
  20368. bottom: 16/924
  20369. }
  20370. },
  20371. back: {
  20372. height: math.unit(7, "feet"),
  20373. weight: math.unit(275, "lb"),
  20374. name: "Back",
  20375. image: {
  20376. source: "./media/characters/claude-delroute/back.svg",
  20377. extra: 911/829,
  20378. bottom: 18/929
  20379. }
  20380. },
  20381. maw: {
  20382. height: math.unit(0.6407, "meters"),
  20383. name: "Maw",
  20384. image: {
  20385. source: "./media/characters/claude-delroute/maw.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(7, "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Lorge",
  20397. height: math.unit(20, "feet")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(8 + 4 / 12, "feet"),
  20406. weight: math.unit(600, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/dragonien/front.svg",
  20410. extra: 100 / 94,
  20411. bottom: 3.3 / 103.3445
  20412. }
  20413. },
  20414. back: {
  20415. height: math.unit(8 + 4 / 12, "feet"),
  20416. weight: math.unit(600, "lb"),
  20417. name: "Back",
  20418. image: {
  20419. source: "./media/characters/dragonien/back.svg",
  20420. extra: 776 / 746,
  20421. bottom: 6.4 / 782.0616
  20422. }
  20423. },
  20424. foot: {
  20425. height: math.unit(1.54, "feet"),
  20426. name: "Foot",
  20427. image: {
  20428. source: "./media/characters/dragonien/foot.svg",
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(8 + 4 / 12, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(200, "feet")
  20441. },
  20442. {
  20443. name: "Megamacro",
  20444. height: math.unit(1, "mile")
  20445. },
  20446. {
  20447. name: "Gigamacro",
  20448. height: math.unit(1000, "miles")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(5 + 2 / 12, "feet"),
  20457. weight: math.unit(110, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/desta/front.svg",
  20461. extra: 767 / 726,
  20462. bottom: 11.7 / 779
  20463. }
  20464. },
  20465. back: {
  20466. height: math.unit(5 + 2 / 12, "feet"),
  20467. weight: math.unit(110, "lb"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/desta/back.svg",
  20471. extra: 777 / 728,
  20472. bottom: 6 / 784
  20473. }
  20474. },
  20475. frontAlt: {
  20476. height: math.unit(5 + 2 / 12, "feet"),
  20477. weight: math.unit(110, "lb"),
  20478. name: "Front",
  20479. image: {
  20480. source: "./media/characters/desta/front-alt.svg",
  20481. extra: 1482 / 1417
  20482. }
  20483. },
  20484. side: {
  20485. height: math.unit(5 + 2 / 12, "feet"),
  20486. weight: math.unit(110, "lb"),
  20487. name: "Side",
  20488. image: {
  20489. source: "./media/characters/desta/side.svg",
  20490. extra: 2579 / 2491,
  20491. bottom: 0.053
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Micro",
  20498. height: math.unit(6, "inches")
  20499. },
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(5 + 2 / 12, "feet"),
  20503. default: true
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(62, "feet")
  20508. },
  20509. {
  20510. name: "Megamacro",
  20511. height: math.unit(1800, "feet")
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20517. {
  20518. front: {
  20519. height: math.unit(10, "feet"),
  20520. weight: math.unit(700, "lb"),
  20521. name: "Front",
  20522. image: {
  20523. source: "./media/characters/storm-alystar/front.svg",
  20524. extra: 2112 / 1898,
  20525. bottom: 0.034
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(3.5, "inches")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(10, "feet"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Macro",
  20541. height: math.unit(400, "feet")
  20542. },
  20543. {
  20544. name: "Deific",
  20545. height: math.unit(60, "miles")
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(2.35, "meters"),
  20554. weight: math.unit(119, "kg"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/ilia/front.svg",
  20558. extra: 1285 / 1255,
  20559. bottom: 0.06
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Normal",
  20566. height: math.unit(2.35, "meters")
  20567. },
  20568. {
  20569. name: "Macro",
  20570. height: math.unit(140, "meters"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Megamacro",
  20575. height: math.unit(100, "miles")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(6 + 5 / 12, "feet"),
  20584. weight: math.unit(190, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/kingdead/front.svg",
  20588. extra: 1228 / 1177
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Micro",
  20595. height: math.unit(7, "inches")
  20596. },
  20597. {
  20598. name: "Normal",
  20599. height: math.unit(6 + 5 / 12, "feet")
  20600. },
  20601. {
  20602. name: "Macro",
  20603. height: math.unit(150, "feet"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Megamacro",
  20608. height: math.unit(200, "miles")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(8, "feet"),
  20617. weight: math.unit(600, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/kyrehx/front.svg",
  20621. extra: 1195 / 1095,
  20622. bottom: 0.034
  20623. }
  20624. },
  20625. },
  20626. [
  20627. {
  20628. name: "Micro",
  20629. height: math.unit(2, "inches")
  20630. },
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(8, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Macro",
  20638. height: math.unit(255, "feet")
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20644. {
  20645. front: {
  20646. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20647. weight: math.unit(184, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/xang/front.svg",
  20651. extra: 845 / 755
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20659. default: true
  20660. },
  20661. {
  20662. name: "Macro",
  20663. height: math.unit(0.935 * 146, "feet")
  20664. },
  20665. {
  20666. name: "Megamacro",
  20667. height: math.unit(0.935 * 3, "miles")
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20673. {
  20674. frontDressed: {
  20675. height: math.unit(5 + 7 / 12, "feet"),
  20676. weight: math.unit(140, "lb"),
  20677. name: "Front (Dressed)",
  20678. image: {
  20679. source: "./media/characters/doc-weardno/front-dressed.svg",
  20680. extra: 263 / 234
  20681. }
  20682. },
  20683. backDressed: {
  20684. height: math.unit(5 + 7 / 12, "feet"),
  20685. weight: math.unit(140, "lb"),
  20686. name: "Back (Dressed)",
  20687. image: {
  20688. source: "./media/characters/doc-weardno/back-dressed.svg",
  20689. extra: 266 / 238
  20690. }
  20691. },
  20692. front: {
  20693. height: math.unit(5 + 7 / 12, "feet"),
  20694. weight: math.unit(140, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/doc-weardno/front.svg",
  20698. extra: 254 / 233
  20699. }
  20700. },
  20701. },
  20702. [
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(3, "inches")
  20706. },
  20707. {
  20708. name: "Normal",
  20709. height: math.unit(5 + 7 / 12, "feet"),
  20710. default: true
  20711. },
  20712. {
  20713. name: "Macro",
  20714. height: math.unit(25, "feet")
  20715. },
  20716. {
  20717. name: "Megamacro",
  20718. height: math.unit(2, "miles")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20724. {
  20725. front: {
  20726. height: math.unit(6 + 2 / 12, "feet"),
  20727. weight: math.unit(153, "lb"),
  20728. name: "Front",
  20729. image: {
  20730. source: "./media/characters/seth-whilst/front.svg",
  20731. bottom: 0.07
  20732. }
  20733. },
  20734. },
  20735. [
  20736. {
  20737. name: "Micro",
  20738. height: math.unit(5, "inches")
  20739. },
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(6 + 2 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(3, "inches"),
  20752. weight: math.unit(8, "grams"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/pocket-jabari/front.svg",
  20756. extra: 1024 / 974,
  20757. bottom: 0.039
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Minimicro",
  20764. height: math.unit(8, "mm")
  20765. },
  20766. {
  20767. name: "Micro",
  20768. height: math.unit(3, "inches"),
  20769. default: true
  20770. },
  20771. {
  20772. name: "Normal",
  20773. height: math.unit(3, "feet")
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20779. {
  20780. frontDressed: {
  20781. height: math.unit(15, "feet"),
  20782. weight: math.unit(3280, "lb"),
  20783. name: "Front (Dressed)",
  20784. image: {
  20785. source: "./media/characters/sapphy/front-dressed.svg",
  20786. extra: 1951/1654,
  20787. bottom: 194/2145
  20788. },
  20789. form: "anthro",
  20790. default: true
  20791. },
  20792. backDressed: {
  20793. height: math.unit(15, "feet"),
  20794. weight: math.unit(3280, "lb"),
  20795. name: "Back (Dressed)",
  20796. image: {
  20797. source: "./media/characters/sapphy/back-dressed.svg",
  20798. extra: 2058/1918,
  20799. bottom: 125/2183
  20800. },
  20801. form: "anthro"
  20802. },
  20803. frontNude: {
  20804. height: math.unit(15, "feet"),
  20805. weight: math.unit(3280, "lb"),
  20806. name: "Front (Nude)",
  20807. image: {
  20808. source: "./media/characters/sapphy/front-nude.svg",
  20809. extra: 1951/1654,
  20810. bottom: 194/2145
  20811. },
  20812. form: "anthro"
  20813. },
  20814. backNude: {
  20815. height: math.unit(15, "feet"),
  20816. weight: math.unit(3280, "lb"),
  20817. name: "Back (Nude)",
  20818. image: {
  20819. source: "./media/characters/sapphy/back-nude.svg",
  20820. extra: 2058/1918,
  20821. bottom: 125/2183
  20822. },
  20823. form: "anthro"
  20824. },
  20825. full: {
  20826. height: math.unit(15, "feet"),
  20827. weight: math.unit(3280, "lb"),
  20828. name: "Full",
  20829. image: {
  20830. source: "./media/characters/sapphy/full.svg",
  20831. extra: 1396/1317,
  20832. bottom: 44/1440
  20833. },
  20834. form: "anthro"
  20835. },
  20836. dick: {
  20837. height: math.unit(3.8, "feet"),
  20838. name: "Dick",
  20839. image: {
  20840. source: "./media/characters/sapphy/dick.svg"
  20841. },
  20842. form: "anthro"
  20843. },
  20844. feral: {
  20845. height: math.unit(35, "feet"),
  20846. weight: math.unit(160, "tons"),
  20847. name: "Feral",
  20848. image: {
  20849. source: "./media/characters/sapphy/feral.svg",
  20850. extra: 1050/573,
  20851. bottom: 60/1110
  20852. },
  20853. form: "feral",
  20854. default: true
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(15, "feet"),
  20861. form: "anthro"
  20862. },
  20863. {
  20864. name: "Casual Macro",
  20865. height: math.unit(120, "feet"),
  20866. form: "anthro"
  20867. },
  20868. {
  20869. name: "Macro",
  20870. height: math.unit(2150, "feet"),
  20871. default: true,
  20872. form: "anthro"
  20873. },
  20874. {
  20875. name: "Megamacro",
  20876. height: math.unit(8, "miles"),
  20877. form: "anthro"
  20878. },
  20879. {
  20880. name: "Galaxy Mom",
  20881. height: math.unit(6, "megalightyears"),
  20882. form: "anthro"
  20883. },
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(35, "feet"),
  20887. form: "feral",
  20888. default: true
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(300, "feet"),
  20893. form: "feral"
  20894. },
  20895. {
  20896. name: "Galaxy Mom",
  20897. height: math.unit(10, "megalightyears"),
  20898. form: "feral"
  20899. },
  20900. ],
  20901. {
  20902. "anthro": {
  20903. name: "Anthro",
  20904. default: true
  20905. },
  20906. "feral": {
  20907. name: "Feral"
  20908. }
  20909. }
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20913. {
  20914. hyenaFront: {
  20915. height: math.unit(6, "feet"),
  20916. weight: math.unit(190, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/kiro/hyena-front.svg",
  20920. extra: 927/839,
  20921. bottom: 91/1018
  20922. },
  20923. form: "hyena",
  20924. default: true
  20925. },
  20926. front: {
  20927. height: math.unit(6, "feet"),
  20928. weight: math.unit(170, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/kiro/front.svg",
  20932. extra: 1064 / 1012,
  20933. bottom: 0.052
  20934. },
  20935. form: "folf",
  20936. default: true
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Micro",
  20942. height: math.unit(6, "inches"),
  20943. form: "folf"
  20944. },
  20945. {
  20946. name: "Normal",
  20947. height: math.unit(6, "feet"),
  20948. form: "folf",
  20949. default: true
  20950. },
  20951. {
  20952. name: "Macro",
  20953. height: math.unit(72, "feet"),
  20954. form: "folf"
  20955. },
  20956. {
  20957. name: "Micro",
  20958. height: math.unit(6, "inches"),
  20959. form: "hyena"
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6, "feet"),
  20964. form: "hyena",
  20965. default: true
  20966. },
  20967. {
  20968. name: "Macro",
  20969. height: math.unit(72, "feet"),
  20970. form: "hyena"
  20971. },
  20972. ],
  20973. {
  20974. "hyena": {
  20975. name: "Hyena",
  20976. default: true
  20977. },
  20978. "folf": {
  20979. name: "Folf",
  20980. },
  20981. }
  20982. ))
  20983. characterMakers.push(() => makeCharacter(
  20984. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20985. {
  20986. front: {
  20987. height: math.unit(5 + 9 / 12, "feet"),
  20988. weight: math.unit(175, "lb"),
  20989. name: "Front",
  20990. image: {
  20991. source: "./media/characters/irishfox/front.svg",
  20992. extra: 1912 / 1680,
  20993. bottom: 0.02
  20994. }
  20995. },
  20996. },
  20997. [
  20998. {
  20999. name: "Nano",
  21000. height: math.unit(1, "mm")
  21001. },
  21002. {
  21003. name: "Micro",
  21004. height: math.unit(2, "inches")
  21005. },
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(5 + 9 / 12, "feet"),
  21009. default: true
  21010. },
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(45, "feet")
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(6 + 1 / 12, "feet"),
  21022. weight: math.unit(75, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/aronai-sieyes/front.svg",
  21026. extra: 1532/1450,
  21027. bottom: 42/1574
  21028. }
  21029. },
  21030. side: {
  21031. height: math.unit(6 + 1 / 12, "feet"),
  21032. weight: math.unit(75, "lb"),
  21033. name: "Side",
  21034. image: {
  21035. source: "./media/characters/aronai-sieyes/side.svg",
  21036. extra: 1422/1365,
  21037. bottom: 148/1570
  21038. }
  21039. },
  21040. back: {
  21041. height: math.unit(6 + 1 / 12, "feet"),
  21042. weight: math.unit(75, "lb"),
  21043. name: "Back",
  21044. image: {
  21045. source: "./media/characters/aronai-sieyes/back.svg",
  21046. extra: 1526/1464,
  21047. bottom: 51/1577
  21048. }
  21049. },
  21050. dressed: {
  21051. height: math.unit(6 + 1 / 12, "feet"),
  21052. weight: math.unit(75, "lb"),
  21053. name: "Dressed",
  21054. image: {
  21055. source: "./media/characters/aronai-sieyes/dressed.svg",
  21056. extra: 1559/1483,
  21057. bottom: 39/1598
  21058. }
  21059. },
  21060. slit: {
  21061. height: math.unit(1.3, "feet"),
  21062. name: "Slit",
  21063. image: {
  21064. source: "./media/characters/aronai-sieyes/slit.svg"
  21065. }
  21066. },
  21067. slitSpread: {
  21068. height: math.unit(0.9, "feet"),
  21069. name: "Slit (Spread)",
  21070. image: {
  21071. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21072. }
  21073. },
  21074. rump: {
  21075. height: math.unit(1.3, "feet"),
  21076. name: "Rump",
  21077. image: {
  21078. source: "./media/characters/aronai-sieyes/rump.svg"
  21079. }
  21080. },
  21081. maw: {
  21082. height: math.unit(1.25, "feet"),
  21083. name: "Maw",
  21084. image: {
  21085. source: "./media/characters/aronai-sieyes/maw.svg"
  21086. }
  21087. },
  21088. feral: {
  21089. height: math.unit(18, "feet"),
  21090. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21091. name: "Feral",
  21092. image: {
  21093. source: "./media/characters/aronai-sieyes/feral.svg",
  21094. extra: 1530 / 1240,
  21095. bottom: 0.035
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Micro",
  21102. height: math.unit(2, "inches")
  21103. },
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(6 + 1 / 12, "feet"),
  21107. default: true
  21108. }
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(12, "feet"),
  21116. weight: math.unit(410, "kg"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/xuna/front.svg",
  21120. extra: 2184 / 1980
  21121. }
  21122. },
  21123. side: {
  21124. height: math.unit(12, "feet"),
  21125. weight: math.unit(410, "kg"),
  21126. name: "Side",
  21127. image: {
  21128. source: "./media/characters/xuna/side.svg",
  21129. extra: 2184 / 1980
  21130. }
  21131. },
  21132. back: {
  21133. height: math.unit(12, "feet"),
  21134. weight: math.unit(410, "kg"),
  21135. name: "Back",
  21136. image: {
  21137. source: "./media/characters/xuna/back.svg",
  21138. extra: 2184 / 1980
  21139. }
  21140. },
  21141. },
  21142. [
  21143. {
  21144. name: "Nano glow",
  21145. height: math.unit(10, "nm")
  21146. },
  21147. {
  21148. name: "Micro floof",
  21149. height: math.unit(0.3, "m")
  21150. },
  21151. {
  21152. name: "Huggable softy boi",
  21153. height: math.unit(3.6576, "m"),
  21154. default: true
  21155. },
  21156. {
  21157. name: "Admirable floof",
  21158. height: math.unit(80, "meters")
  21159. },
  21160. {
  21161. name: "Gentle macro",
  21162. height: math.unit(300, "meters")
  21163. },
  21164. {
  21165. name: "Very careful floof",
  21166. height: math.unit(3200, "meters")
  21167. },
  21168. {
  21169. name: "The mega floof",
  21170. height: math.unit(36000, "meters")
  21171. },
  21172. {
  21173. name: "Giga-fur-Wicker",
  21174. height: math.unit(4800000, "meters")
  21175. },
  21176. {
  21177. name: "Licky world",
  21178. height: math.unit(20000000, "meters")
  21179. },
  21180. {
  21181. name: "Floofy cyan sun",
  21182. height: math.unit(1500000000, "meters")
  21183. },
  21184. {
  21185. name: "Milky Wicker",
  21186. height: math.unit(1000000000000000000000, "meters")
  21187. },
  21188. {
  21189. name: "The observing Wicker",
  21190. height: math.unit(999999999999999999999999999, "meters")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(5 + 9 / 12, "feet"),
  21199. weight: math.unit(150, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/arokha-sieyes/front.svg",
  21203. extra: 1425 / 1284,
  21204. bottom: 0.05
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(5 + 9 / 12, "feet")
  21212. },
  21213. {
  21214. name: "Macro",
  21215. height: math.unit(30, "meters"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(6, "feet"),
  21225. weight: math.unit(180, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/arokh-sieyes/front.svg",
  21229. extra: 1830 / 1769,
  21230. bottom: 0.01
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(6, "feet")
  21238. },
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(30, "meters"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21248. {
  21249. side: {
  21250. height: math.unit(13 + 1 / 12, "feet"),
  21251. weight: math.unit(8.5, "tonnes"),
  21252. preyCapacity: math.unit(36, "people"),
  21253. name: "Side",
  21254. image: {
  21255. source: "./media/characters/goldeneye/side.svg",
  21256. extra: 1139/741,
  21257. bottom: 98/1237
  21258. }
  21259. },
  21260. front: {
  21261. height: math.unit(5.1, "feet"),
  21262. weight: math.unit(8.5, "tonnes"),
  21263. preyCapacity: math.unit(36, "people"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/goldeneye/front.svg",
  21267. extra: 635/365,
  21268. bottom: 598/1233
  21269. }
  21270. },
  21271. maw: {
  21272. height: math.unit(6.6, "feet"),
  21273. name: "Maw",
  21274. image: {
  21275. source: "./media/characters/goldeneye/maw.svg"
  21276. }
  21277. },
  21278. headFront: {
  21279. height: math.unit(8, "feet"),
  21280. name: "Head (Front)",
  21281. image: {
  21282. source: "./media/characters/goldeneye/head-front.svg"
  21283. }
  21284. },
  21285. headSide: {
  21286. height: math.unit(6, "feet"),
  21287. name: "Head (Side)",
  21288. image: {
  21289. source: "./media/characters/goldeneye/head-side.svg"
  21290. }
  21291. },
  21292. headBack: {
  21293. height: math.unit(8, "feet"),
  21294. name: "Head (Back)",
  21295. image: {
  21296. source: "./media/characters/goldeneye/head-back.svg"
  21297. }
  21298. },
  21299. paw: {
  21300. height: math.unit(3.4, "feet"),
  21301. name: "Paw",
  21302. image: {
  21303. source: "./media/characters/goldeneye/paw.svg"
  21304. }
  21305. },
  21306. toering: {
  21307. height: math.unit(0.45, "feet"),
  21308. name: "Toering",
  21309. image: {
  21310. source: "./media/characters/goldeneye/toering.svg"
  21311. }
  21312. },
  21313. eyes: {
  21314. height: math.unit(0.5, "feet"),
  21315. name: "Eyes",
  21316. image: {
  21317. source: "./media/characters/goldeneye/eyes.svg"
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(13 + 1 / 12, "feet"),
  21325. default: true
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21331. {
  21332. front: {
  21333. height: math.unit(6 + 1 / 12, "feet"),
  21334. weight: math.unit(210, "lb"),
  21335. name: "Front",
  21336. image: {
  21337. source: "./media/characters/leonardo-lycheborne/front.svg",
  21338. extra: 776/723,
  21339. bottom: 34/810
  21340. }
  21341. },
  21342. side: {
  21343. height: math.unit(6 + 1 / 12, "feet"),
  21344. weight: math.unit(210, "lb"),
  21345. name: "Side",
  21346. image: {
  21347. source: "./media/characters/leonardo-lycheborne/side.svg",
  21348. extra: 780/728,
  21349. bottom: 12/792
  21350. }
  21351. },
  21352. back: {
  21353. height: math.unit(6 + 1 / 12, "feet"),
  21354. weight: math.unit(210, "lb"),
  21355. name: "Back",
  21356. image: {
  21357. source: "./media/characters/leonardo-lycheborne/back.svg",
  21358. extra: 775/721,
  21359. bottom: 17/792
  21360. }
  21361. },
  21362. hand: {
  21363. height: math.unit(1.08, "feet"),
  21364. name: "Hand",
  21365. image: {
  21366. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21367. }
  21368. },
  21369. foot: {
  21370. height: math.unit(1.32, "feet"),
  21371. name: "Foot",
  21372. image: {
  21373. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21374. }
  21375. },
  21376. maw: {
  21377. height: math.unit(1, "feet"),
  21378. name: "Maw",
  21379. image: {
  21380. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21381. }
  21382. },
  21383. were: {
  21384. height: math.unit(20, "feet"),
  21385. weight: math.unit(7800, "lb"),
  21386. name: "Were",
  21387. image: {
  21388. source: "./media/characters/leonardo-lycheborne/were.svg",
  21389. extra: 1224/1165,
  21390. bottom: 72/1296
  21391. }
  21392. },
  21393. feral: {
  21394. height: math.unit(7.5, "feet"),
  21395. weight: math.unit(600, "lb"),
  21396. name: "Feral",
  21397. image: {
  21398. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21399. extra: 797/702,
  21400. bottom: 139/936
  21401. }
  21402. },
  21403. taur: {
  21404. height: math.unit(11, "feet"),
  21405. weight: math.unit(3300, "lb"),
  21406. name: "Taur",
  21407. image: {
  21408. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21409. extra: 1271/1197,
  21410. bottom: 47/1318
  21411. }
  21412. },
  21413. barghest: {
  21414. height: math.unit(11, "feet"),
  21415. weight: math.unit(1300, "lb"),
  21416. name: "Barghest",
  21417. image: {
  21418. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21419. extra: 1291/1204,
  21420. bottom: 37/1328
  21421. }
  21422. },
  21423. dick: {
  21424. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21425. name: "Dick",
  21426. image: {
  21427. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21428. }
  21429. },
  21430. dickWere: {
  21431. height: math.unit((20) / 3.8, "feet"),
  21432. name: "Dick (Were)",
  21433. image: {
  21434. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(6 + 1 / 12, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21448. {
  21449. front: {
  21450. height: math.unit(10, "feet"),
  21451. weight: math.unit(350, "lb"),
  21452. name: "Front",
  21453. image: {
  21454. source: "./media/characters/jet/front.svg",
  21455. extra: 2050 / 1980,
  21456. bottom: 0.013
  21457. }
  21458. },
  21459. back: {
  21460. height: math.unit(10, "feet"),
  21461. weight: math.unit(350, "lb"),
  21462. name: "Back",
  21463. image: {
  21464. source: "./media/characters/jet/back.svg",
  21465. extra: 2050 / 1980,
  21466. bottom: 0.013
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Micro",
  21473. height: math.unit(6, "inches")
  21474. },
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(10, "feet"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Macro",
  21482. height: math.unit(100, "feet")
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(15, "feet"),
  21491. weight: math.unit(2800, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/tanarath/front.svg",
  21495. extra: 2392 / 2220,
  21496. bottom: 0.03
  21497. }
  21498. },
  21499. back: {
  21500. height: math.unit(15, "feet"),
  21501. weight: math.unit(2800, "lb"),
  21502. name: "Back",
  21503. image: {
  21504. source: "./media/characters/tanarath/back.svg",
  21505. extra: 2392 / 2220,
  21506. bottom: 0.03
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Normal",
  21513. height: math.unit(15, "feet"),
  21514. default: true
  21515. },
  21516. ]
  21517. ))
  21518. characterMakers.push(() => makeCharacter(
  21519. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21520. {
  21521. front: {
  21522. height: math.unit(7 + 1 / 12, "feet"),
  21523. weight: math.unit(175, "lb"),
  21524. name: "Front",
  21525. image: {
  21526. source: "./media/characters/patty-cattybatty/front.svg",
  21527. extra: 908 / 874,
  21528. bottom: 0.025
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Micro",
  21535. height: math.unit(1, "inch")
  21536. },
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(7 + 1 / 12, "feet")
  21540. },
  21541. {
  21542. name: "Mini Macro",
  21543. height: math.unit(155, "feet")
  21544. },
  21545. {
  21546. name: "Macro",
  21547. height: math.unit(1077, "feet")
  21548. },
  21549. {
  21550. name: "Mega Macro",
  21551. height: math.unit(47650, "feet"),
  21552. default: true
  21553. },
  21554. {
  21555. name: "Giga Macro",
  21556. height: math.unit(440, "miles")
  21557. },
  21558. {
  21559. name: "Tera Macro",
  21560. height: math.unit(8700, "miles")
  21561. },
  21562. {
  21563. name: "Planetary Macro",
  21564. height: math.unit(32700, "miles")
  21565. },
  21566. {
  21567. name: "Solar Macro",
  21568. height: math.unit(550000, "miles")
  21569. },
  21570. {
  21571. name: "Celestial Macro",
  21572. height: math.unit(2.5, "AU")
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(4 + 5 / 12, "feet"),
  21581. weight: math.unit(90, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/cappu/front.svg",
  21585. extra: 1247 / 1152,
  21586. bottom: 0.012
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Normal",
  21593. height: math.unit(4 + 5 / 12, "feet"),
  21594. default: true
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21600. {
  21601. frontDressed: {
  21602. height: math.unit(70, "cm"),
  21603. weight: math.unit(6, "kg"),
  21604. name: "Front (Dressed)",
  21605. image: {
  21606. source: "./media/characters/sebi/front-dressed.svg",
  21607. extra: 713.5 / 686.5,
  21608. bottom: 0.003
  21609. }
  21610. },
  21611. front: {
  21612. height: math.unit(70, "cm"),
  21613. weight: math.unit(5, "kg"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/sebi/front.svg",
  21617. extra: 713.5 / 686.5,
  21618. bottom: 0.003
  21619. }
  21620. }
  21621. },
  21622. [
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(70, "cm"),
  21626. default: true
  21627. },
  21628. {
  21629. name: "Macro",
  21630. height: math.unit(8, "meters")
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(6, "feet"),
  21639. weight: math.unit(150, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/typhek/front.svg",
  21643. extra: 1948 / 1929,
  21644. bottom: 0.025
  21645. }
  21646. },
  21647. side: {
  21648. height: math.unit(6, "feet"),
  21649. weight: math.unit(150, "lb"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/typhek/side.svg",
  21653. extra: 2034 / 2010,
  21654. bottom: 0.003
  21655. }
  21656. },
  21657. back: {
  21658. height: math.unit(6, "feet"),
  21659. weight: math.unit(150, "lb"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/typhek/back.svg",
  21663. extra: 2005 / 1978,
  21664. bottom: 0.004
  21665. }
  21666. },
  21667. palm: {
  21668. height: math.unit(1.2, "feet"),
  21669. name: "Palm",
  21670. image: {
  21671. source: "./media/characters/typhek/palm.svg"
  21672. }
  21673. },
  21674. fist: {
  21675. height: math.unit(1.1, "feet"),
  21676. name: "Fist",
  21677. image: {
  21678. source: "./media/characters/typhek/fist.svg"
  21679. }
  21680. },
  21681. foot: {
  21682. height: math.unit(1.57, "feet"),
  21683. name: "Foot",
  21684. image: {
  21685. source: "./media/characters/typhek/foot.svg"
  21686. }
  21687. },
  21688. sole: {
  21689. height: math.unit(2.05, "feet"),
  21690. name: "Sole",
  21691. image: {
  21692. source: "./media/characters/typhek/sole.svg"
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Macro",
  21699. height: math.unit(40, "stories"),
  21700. default: true
  21701. },
  21702. {
  21703. name: "Megamacro",
  21704. height: math.unit(1, "mile")
  21705. },
  21706. {
  21707. name: "Gigamacro",
  21708. height: math.unit(4000, "solarradii")
  21709. },
  21710. {
  21711. name: "Universal",
  21712. height: math.unit(1.1, "universes")
  21713. }
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21718. {
  21719. side: {
  21720. height: math.unit(5 + 7 / 12, "feet"),
  21721. weight: math.unit(150, "lb"),
  21722. name: "Side",
  21723. image: {
  21724. source: "./media/characters/kassy/side.svg",
  21725. extra: 1280 / 1225,
  21726. bottom: 0.002
  21727. }
  21728. },
  21729. front: {
  21730. height: math.unit(5 + 7 / 12, "feet"),
  21731. weight: math.unit(150, "lb"),
  21732. name: "Front",
  21733. image: {
  21734. source: "./media/characters/kassy/front.svg",
  21735. extra: 1280 / 1225,
  21736. bottom: 0.025
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 7 / 12, "feet"),
  21741. weight: math.unit(150, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/kassy/back.svg",
  21745. extra: 1280 / 1225,
  21746. bottom: 0.002
  21747. }
  21748. },
  21749. foot: {
  21750. height: math.unit(1.266, "feet"),
  21751. name: "Foot",
  21752. image: {
  21753. source: "./media/characters/kassy/foot.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 7 / 12, "feet")
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(137, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Megamacro",
  21769. height: math.unit(1, "mile")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(6 + 1 / 12, "feet"),
  21778. weight: math.unit(200, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/neil/front.svg",
  21782. extra: 1326 / 1250,
  21783. bottom: 0.023
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(6 + 1 / 12, "feet"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Macro",
  21795. height: math.unit(200, "feet")
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(5 + 9 / 12, "feet"),
  21804. weight: math.unit(190, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/atticus/front.svg",
  21808. extra: 2934 / 2785,
  21809. bottom: 0.025
  21810. }
  21811. },
  21812. },
  21813. [
  21814. {
  21815. name: "Normal",
  21816. height: math.unit(5 + 9 / 12, "feet"),
  21817. default: true
  21818. },
  21819. {
  21820. name: "Macro",
  21821. height: math.unit(180, "feet")
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21827. {
  21828. side: {
  21829. height: math.unit(9, "feet"),
  21830. weight: math.unit(650, "lb"),
  21831. name: "Side",
  21832. image: {
  21833. source: "./media/characters/milo/side.svg",
  21834. extra: 2644 / 2310,
  21835. bottom: 0.032
  21836. }
  21837. },
  21838. },
  21839. [
  21840. {
  21841. name: "Normal",
  21842. height: math.unit(9, "feet"),
  21843. default: true
  21844. },
  21845. {
  21846. name: "Macro",
  21847. height: math.unit(300, "feet")
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21853. {
  21854. side: {
  21855. height: math.unit(8, "meters"),
  21856. weight: math.unit(90000, "kg"),
  21857. name: "Side",
  21858. image: {
  21859. source: "./media/characters/ijzer/side.svg",
  21860. extra: 2756 / 1600,
  21861. bottom: 0.01
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Small",
  21868. height: math.unit(3, "meters")
  21869. },
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(8, "meters"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Normal+",
  21877. height: math.unit(10, "meters")
  21878. },
  21879. {
  21880. name: "Bigger",
  21881. height: math.unit(24, "meters")
  21882. },
  21883. {
  21884. name: "Huge",
  21885. height: math.unit(80, "meters")
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21891. {
  21892. front: {
  21893. height: math.unit(6 + 2 / 12, "feet"),
  21894. weight: math.unit(153, "lb"),
  21895. name: "Front",
  21896. image: {
  21897. source: "./media/characters/luca-cervicum/front.svg",
  21898. extra: 370 / 327,
  21899. bottom: 0.015
  21900. }
  21901. },
  21902. back: {
  21903. height: math.unit(6 + 2 / 12, "feet"),
  21904. weight: math.unit(153, "lb"),
  21905. name: "Back",
  21906. image: {
  21907. source: "./media/characters/luca-cervicum/back.svg",
  21908. extra: 367 / 333,
  21909. bottom: 0.005
  21910. }
  21911. },
  21912. frontGear: {
  21913. height: math.unit(6 + 2 / 12, "feet"),
  21914. weight: math.unit(173, "lb"),
  21915. name: "Front (Gear)",
  21916. image: {
  21917. source: "./media/characters/luca-cervicum/front-gear.svg",
  21918. extra: 377 / 333,
  21919. bottom: 0.006
  21920. }
  21921. },
  21922. },
  21923. [
  21924. {
  21925. name: "Normal",
  21926. height: math.unit(6 + 2 / 12, "feet"),
  21927. default: true
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(6 + 1 / 12, "feet"),
  21936. weight: math.unit(304, "lb"),
  21937. name: "Front",
  21938. image: {
  21939. source: "./media/characters/oliver/front.svg",
  21940. extra: 157 / 143,
  21941. bottom: 0.08
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(6 + 1 / 12, "feet"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(5 + 7 / 12, "feet"),
  21958. weight: math.unit(140, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/shane/front.svg",
  21962. extra: 304 / 289,
  21963. bottom: 0.005
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(5 + 7 / 12, "feet"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(5 + 9 / 12, "feet"),
  21980. weight: math.unit(178, "lb"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/shin/front.svg",
  21984. extra: 159 / 151,
  21985. bottom: 0.015
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Normal",
  21992. height: math.unit(5 + 9 / 12, "feet"),
  21993. default: true
  21994. },
  21995. ]
  21996. ))
  21997. characterMakers.push(() => makeCharacter(
  21998. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21999. {
  22000. front: {
  22001. height: math.unit(5 + 10 / 12, "feet"),
  22002. weight: math.unit(168, "lb"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/xerxes/front.svg",
  22006. extra: 282 / 260,
  22007. bottom: 0.045
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(5 + 10 / 12, "feet"),
  22015. default: true
  22016. },
  22017. ]
  22018. ))
  22019. characterMakers.push(() => makeCharacter(
  22020. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22021. {
  22022. front: {
  22023. height: math.unit(6 + 7 / 12, "feet"),
  22024. weight: math.unit(208, "lb"),
  22025. name: "Front",
  22026. image: {
  22027. source: "./media/characters/chaska/front.svg",
  22028. extra: 332 / 319,
  22029. bottom: 0.015
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(6 + 7 / 12, "feet"),
  22037. default: true
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(5 + 8 / 12, "feet"),
  22046. weight: math.unit(208, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/enuk/front.svg",
  22050. extra: 437 / 406,
  22051. bottom: 0.02
  22052. }
  22053. },
  22054. },
  22055. [
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(5 + 8 / 12, "feet"),
  22059. default: true
  22060. },
  22061. ]
  22062. ))
  22063. characterMakers.push(() => makeCharacter(
  22064. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22065. {
  22066. front: {
  22067. height: math.unit(5 + 10 / 12, "feet"),
  22068. weight: math.unit(252, "lb"),
  22069. name: "Front",
  22070. image: {
  22071. source: "./media/characters/bruun/front.svg",
  22072. extra: 197 / 187,
  22073. bottom: 0.012
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(5 + 10 / 12, "feet"),
  22081. default: true
  22082. },
  22083. ]
  22084. ))
  22085. characterMakers.push(() => makeCharacter(
  22086. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22087. {
  22088. front: {
  22089. height: math.unit(6 + 10 / 12, "feet"),
  22090. weight: math.unit(255, "lb"),
  22091. name: "Front",
  22092. image: {
  22093. source: "./media/characters/alexeev/front.svg",
  22094. extra: 213 / 200,
  22095. bottom: 0.05
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(6 + 10 / 12, "feet"),
  22103. default: true
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(2 + 8 / 12, "feet"),
  22112. weight: math.unit(22, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/evelyn/front.svg",
  22116. extra: 208 / 180
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(2 + 8 / 12, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(5 + 9 / 12, "feet"),
  22133. weight: math.unit(139, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/inca/front.svg",
  22137. extra: 294 / 291,
  22138. bottom: 0.03
  22139. }
  22140. },
  22141. },
  22142. [
  22143. {
  22144. name: "Normal",
  22145. height: math.unit(5 + 9 / 12, "feet"),
  22146. default: true
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(6 + 3 / 12, "feet"),
  22155. weight: math.unit(185, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/mera/front.svg",
  22159. extra: 291 / 277,
  22160. bottom: 0.03
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(6 + 3 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(6 + 7 / 12, "feet"),
  22177. weight: math.unit(160, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/ceres/front.svg",
  22181. extra: 1023 / 950,
  22182. bottom: 0.027
  22183. }
  22184. },
  22185. back: {
  22186. height: math.unit(6 + 7 / 12, "feet"),
  22187. weight: math.unit(160, "lb"),
  22188. name: "Back",
  22189. image: {
  22190. source: "./media/characters/ceres/back.svg",
  22191. extra: 1023 / 950
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(6 + 7 / 12, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(5 + 10 / 12, "feet"),
  22208. weight: math.unit(150, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/kris/front.svg",
  22212. extra: 885 / 803,
  22213. bottom: 0.03
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Normal",
  22220. height: math.unit(5 + 10 / 12, "feet"),
  22221. default: true
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22227. {
  22228. dragon_front: {
  22229. height: math.unit(5, "feet"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/taluthus/dragon-front.svg",
  22233. extra: 1203/1098,
  22234. bottom: 46/1249
  22235. },
  22236. form: "dragon",
  22237. default: true
  22238. },
  22239. dragon_maw: {
  22240. height: math.unit(2.35, "feet"),
  22241. name: "Maw",
  22242. image: {
  22243. source: "./media/characters/taluthus/dragon-maw.svg"
  22244. },
  22245. form: "dragon",
  22246. },
  22247. kitsune_front: {
  22248. height: math.unit(7, "feet"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/taluthus/kitsune-front.svg",
  22252. extra: 900/841,
  22253. bottom: 65/965
  22254. },
  22255. form: "kitsune",
  22256. default: true
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(5, "feet"),
  22263. form: "dragon",
  22264. default: true,
  22265. },
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(7, "feet"),
  22269. form: "kitsune",
  22270. default: true
  22271. },
  22272. {
  22273. name: "Macro",
  22274. height: math.unit(300, "feet"),
  22275. allForms: true
  22276. },
  22277. ],
  22278. {
  22279. "dragon": {
  22280. name: "Dragon",
  22281. default: true
  22282. },
  22283. "kitsune": {
  22284. name: "Kitsune",
  22285. },
  22286. }
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(5 + 9 / 12, "feet"),
  22293. weight: math.unit(145, "lb"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/dawn/front.svg",
  22297. extra: 2094 / 2016,
  22298. bottom: 0.025
  22299. }
  22300. },
  22301. back: {
  22302. height: math.unit(5 + 9 / 12, "feet"),
  22303. weight: math.unit(160, "lb"),
  22304. name: "Back",
  22305. image: {
  22306. source: "./media/characters/dawn/back.svg",
  22307. extra: 2112 / 2080,
  22308. bottom: 0.005
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(6 + 7 / 12, "feet"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22322. {
  22323. anthro: {
  22324. height: math.unit(8 + 3 / 12, "feet"),
  22325. weight: math.unit(450, "lb"),
  22326. name: "Anthro",
  22327. image: {
  22328. source: "./media/characters/arador/anthro.svg",
  22329. extra: 1835 / 1718,
  22330. bottom: 0.025
  22331. }
  22332. },
  22333. feral: {
  22334. height: math.unit(4, "feet"),
  22335. weight: math.unit(200, "lb"),
  22336. name: "Feral",
  22337. image: {
  22338. source: "./media/characters/arador/feral.svg",
  22339. extra: 1683 / 1514,
  22340. bottom: 0.07
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(8 + 3 / 12, "feet")
  22348. },
  22349. {
  22350. name: "Macro",
  22351. height: math.unit(82.5, "feet"),
  22352. default: true
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(5 + 10 / 12, "feet"),
  22361. weight: math.unit(125, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/dharsi/front.svg",
  22365. extra: 716 / 630,
  22366. bottom: 0.035
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Nano",
  22373. height: math.unit(100, "nm")
  22374. },
  22375. {
  22376. name: "Micro",
  22377. height: math.unit(2, "inches")
  22378. },
  22379. {
  22380. name: "Normal",
  22381. height: math.unit(5 + 10 / 12, "feet"),
  22382. default: true
  22383. },
  22384. {
  22385. name: "Macro",
  22386. height: math.unit(1000, "feet")
  22387. },
  22388. {
  22389. name: "Megamacro",
  22390. height: math.unit(10, "miles")
  22391. },
  22392. {
  22393. name: "Gigamacro",
  22394. height: math.unit(3000, "miles")
  22395. },
  22396. {
  22397. name: "Teramacro",
  22398. height: math.unit(500000, "miles")
  22399. },
  22400. {
  22401. name: "Teramacro+",
  22402. height: math.unit(30, "galaxies")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(6, "feet"),
  22411. weight: math.unit(150, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/deathy/front.svg",
  22415. extra: 1552 / 1463,
  22416. bottom: 0.025
  22417. }
  22418. },
  22419. side: {
  22420. height: math.unit(6, "feet"),
  22421. weight: math.unit(150, "lb"),
  22422. name: "Side",
  22423. image: {
  22424. source: "./media/characters/deathy/side.svg",
  22425. extra: 1604 / 1455,
  22426. bottom: 0.025
  22427. }
  22428. },
  22429. back: {
  22430. height: math.unit(6, "feet"),
  22431. weight: math.unit(150, "lb"),
  22432. name: "Back",
  22433. image: {
  22434. source: "./media/characters/deathy/back.svg",
  22435. extra: 1580 / 1463,
  22436. bottom: 0.005
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Micro",
  22443. height: math.unit(5, "millimeters")
  22444. },
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(6 + 5 / 12, "feet"),
  22448. default: true
  22449. },
  22450. ]
  22451. ))
  22452. characterMakers.push(() => makeCharacter(
  22453. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22454. {
  22455. front: {
  22456. height: math.unit(16, "feet"),
  22457. weight: math.unit(4000, "lb"),
  22458. name: "Front",
  22459. image: {
  22460. source: "./media/characters/juniper/front.svg",
  22461. bottom: 0.04
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(16, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(6, "feet"),
  22478. weight: math.unit(150, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/hipster/front.svg",
  22482. extra: 1312 / 1209,
  22483. bottom: 0.025
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(6, "feet"),
  22488. weight: math.unit(150, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/hipster/back.svg",
  22492. extra: 1281 / 1196,
  22493. bottom: 0.01
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Micro",
  22500. height: math.unit(1, "mm")
  22501. },
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(4, "inches"),
  22505. default: true
  22506. },
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(500, "feet")
  22510. },
  22511. {
  22512. name: "Megamacro",
  22513. height: math.unit(1000, "miles")
  22514. },
  22515. ]
  22516. ))
  22517. characterMakers.push(() => makeCharacter(
  22518. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22519. {
  22520. front: {
  22521. height: math.unit(6, "feet"),
  22522. weight: math.unit(150, "lb"),
  22523. name: "Front",
  22524. image: {
  22525. source: "./media/characters/tendirmuldr/front.svg",
  22526. extra: 1878 / 1772,
  22527. bottom: 0.015
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Megamacro",
  22534. height: math.unit(1500, "miles"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22541. {
  22542. front: {
  22543. height: math.unit(14, "feet"),
  22544. weight: math.unit(12000, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/mort/front.svg",
  22548. extra: 365 / 318,
  22549. bottom: 0.01
  22550. }
  22551. },
  22552. side: {
  22553. height: math.unit(14, "feet"),
  22554. weight: math.unit(12000, "lb"),
  22555. name: "Side",
  22556. image: {
  22557. source: "./media/characters/mort/side.svg",
  22558. extra: 365 / 318,
  22559. bottom: 0.052
  22560. },
  22561. default: true
  22562. },
  22563. back: {
  22564. height: math.unit(14, "feet"),
  22565. weight: math.unit(12000, "lb"),
  22566. name: "Back",
  22567. image: {
  22568. source: "./media/characters/mort/back.svg",
  22569. extra: 371 / 332,
  22570. bottom: 0.18
  22571. }
  22572. },
  22573. },
  22574. [
  22575. {
  22576. name: "Normal",
  22577. height: math.unit(14, "feet"),
  22578. default: true
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22584. {
  22585. front: {
  22586. height: math.unit(8, "feet"),
  22587. weight: math.unit(1, "ton"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/lycoa/front.svg",
  22591. extra: 1836/1728,
  22592. bottom: 81/1917
  22593. }
  22594. },
  22595. back: {
  22596. height: math.unit(8, "feet"),
  22597. weight: math.unit(1, "ton"),
  22598. name: "Back",
  22599. image: {
  22600. source: "./media/characters/lycoa/back.svg",
  22601. extra: 1785/1720,
  22602. bottom: 91/1876
  22603. }
  22604. },
  22605. head: {
  22606. height: math.unit(1.6243, "feet"),
  22607. name: "Head",
  22608. image: {
  22609. source: "./media/characters/lycoa/head.svg",
  22610. extra: 1011/782,
  22611. bottom: 0/1011
  22612. }
  22613. },
  22614. tailmaw: {
  22615. height: math.unit(1.9, "feet"),
  22616. name: "Tailmaw",
  22617. image: {
  22618. source: "./media/characters/lycoa/tailmaw.svg"
  22619. }
  22620. },
  22621. tentacles: {
  22622. height: math.unit(2.1, "feet"),
  22623. name: "Tentacles",
  22624. image: {
  22625. source: "./media/characters/lycoa/tentacles.svg"
  22626. }
  22627. },
  22628. dick: {
  22629. height: math.unit(1.73, "feet"),
  22630. name: "Dick",
  22631. image: {
  22632. source: "./media/characters/lycoa/dick.svg"
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Normal",
  22639. height: math.unit(8, "feet"),
  22640. default: true
  22641. },
  22642. {
  22643. name: "Macro",
  22644. height: math.unit(30, "feet")
  22645. },
  22646. ]
  22647. ))
  22648. characterMakers.push(() => makeCharacter(
  22649. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22650. {
  22651. front: {
  22652. height: math.unit(4 + 2 / 12, "feet"),
  22653. weight: math.unit(70, "lb"),
  22654. name: "Front",
  22655. image: {
  22656. source: "./media/characters/naldara/front.svg",
  22657. extra: 1664/1387,
  22658. bottom: 81/1745
  22659. },
  22660. form: "anthro",
  22661. default: true
  22662. },
  22663. naga: {
  22664. height: math.unit(20, "feet"),
  22665. weight: math.unit(15000, "kg"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/naldara/naga.svg",
  22669. extra: 1590/1396,
  22670. bottom: 285/1875
  22671. },
  22672. form: "naga",
  22673. default: true
  22674. },
  22675. },
  22676. [
  22677. {
  22678. name: "Normal",
  22679. height: math.unit(4 + 2 / 12, "feet"),
  22680. form: "anthro",
  22681. default: true
  22682. },
  22683. {
  22684. name: "Normal",
  22685. height: math.unit(20, "feet"),
  22686. form: "naga",
  22687. default: true
  22688. },
  22689. ],
  22690. {
  22691. "anthro": {
  22692. name: "Anthro",
  22693. default: true
  22694. },
  22695. "naga": {
  22696. name: "Naga"
  22697. }
  22698. }
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(13 + 7 / 12, "feet"),
  22705. weight: math.unit(1500, "lb"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/briar/front.svg",
  22709. extra: 1223/1157,
  22710. bottom: 123/1346
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(13 + 7 / 12, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22724. {
  22725. side: {
  22726. height: math.unit(16, "feet"),
  22727. weight: math.unit(500, "lb"),
  22728. name: "Side",
  22729. image: {
  22730. source: "./media/characters/vanguard/side.svg",
  22731. extra: 1022/914,
  22732. bottom: 30/1052
  22733. }
  22734. },
  22735. sideAlt: {
  22736. height: math.unit(10, "feet"),
  22737. weight: math.unit(500, "lb"),
  22738. name: "Side (Alt)",
  22739. image: {
  22740. source: "./media/characters/vanguard/side-alt.svg",
  22741. extra: 502 / 425,
  22742. bottom: 0.087
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(17.71, "feet"),
  22750. default: true
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22756. {
  22757. front: {
  22758. height: math.unit(7.5, "feet"),
  22759. weight: math.unit(2, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/artemis/work-safe-front.svg",
  22763. extra: 1192 / 1075,
  22764. bottom: 0.07
  22765. },
  22766. form: "work-safe",
  22767. default: true
  22768. },
  22769. frontNsfw: {
  22770. height: math.unit(7.5, "feet"),
  22771. weight: math.unit(2, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/artemis/calibrating-front.svg",
  22775. extra: 1192 / 1075,
  22776. bottom: 0.07
  22777. },
  22778. form: "calibrating",
  22779. default: true
  22780. },
  22781. frontNsfwer: {
  22782. height: math.unit(7.5, "feet"),
  22783. weight: math.unit(2, "lb"),
  22784. name: "Front",
  22785. image: {
  22786. source: "./media/characters/artemis/oversize-load-front.svg",
  22787. extra: 1192 / 1075,
  22788. bottom: 0.07
  22789. },
  22790. form: "oversize-load",
  22791. default: true
  22792. },
  22793. side: {
  22794. height: math.unit(7.5, "feet"),
  22795. weight: math.unit(2, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/artemis/work-safe-side.svg",
  22799. extra: 1192 / 1075,
  22800. bottom: 0.07
  22801. },
  22802. form: "work-safe"
  22803. },
  22804. sideNsfw: {
  22805. height: math.unit(7.5, "feet"),
  22806. weight: math.unit(2, "lb"),
  22807. name: "Side",
  22808. image: {
  22809. source: "./media/characters/artemis/calibrating-side.svg",
  22810. extra: 1192 / 1075,
  22811. bottom: 0.07
  22812. },
  22813. form: "calibrating"
  22814. },
  22815. sideNsfwer: {
  22816. height: math.unit(7.5, "feet"),
  22817. weight: math.unit(2, "lb"),
  22818. name: "Side",
  22819. image: {
  22820. source: "./media/characters/artemis/oversize-load-side.svg",
  22821. extra: 1192 / 1075,
  22822. bottom: 0.07
  22823. },
  22824. form: "oversize-load"
  22825. },
  22826. maw: {
  22827. height: math.unit(1.1, "feet"),
  22828. name: "Maw",
  22829. image: {
  22830. source: "./media/characters/artemis/maw.svg"
  22831. },
  22832. form: "work-safe"
  22833. },
  22834. stomach: {
  22835. height: math.unit(0.95, "feet"),
  22836. name: "Stomach",
  22837. image: {
  22838. source: "./media/characters/artemis/stomach.svg"
  22839. },
  22840. form: "work-safe"
  22841. },
  22842. dickCanine: {
  22843. height: math.unit(1, "feet"),
  22844. name: "Dick (Canine)",
  22845. image: {
  22846. source: "./media/characters/artemis/dick-canine.svg"
  22847. },
  22848. form: "calibrating"
  22849. },
  22850. dickEquine: {
  22851. height: math.unit(0.85, "feet"),
  22852. name: "Dick (Equine)",
  22853. image: {
  22854. source: "./media/characters/artemis/dick-equine.svg"
  22855. },
  22856. form: "calibrating"
  22857. },
  22858. dickExotic: {
  22859. height: math.unit(0.85, "feet"),
  22860. name: "Dick (Exotic)",
  22861. image: {
  22862. source: "./media/characters/artemis/dick-exotic.svg"
  22863. },
  22864. form: "calibrating"
  22865. },
  22866. dickCanineBigger: {
  22867. height: math.unit(1 * 1.33, "feet"),
  22868. name: "Dick (Canine)",
  22869. image: {
  22870. source: "./media/characters/artemis/dick-canine.svg"
  22871. },
  22872. form: "oversize-load"
  22873. },
  22874. dickEquineBigger: {
  22875. height: math.unit(0.85 * 1.33, "feet"),
  22876. name: "Dick (Equine)",
  22877. image: {
  22878. source: "./media/characters/artemis/dick-equine.svg"
  22879. },
  22880. form: "oversize-load"
  22881. },
  22882. dickExoticBigger: {
  22883. height: math.unit(0.85 * 1.33, "feet"),
  22884. name: "Dick (Exotic)",
  22885. image: {
  22886. source: "./media/characters/artemis/dick-exotic.svg"
  22887. },
  22888. form: "oversize-load"
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(7.5, "feet"),
  22895. form: "work-safe",
  22896. default: true
  22897. },
  22898. {
  22899. name: "Normal",
  22900. height: math.unit(7.5, "feet"),
  22901. form: "calibrating",
  22902. default: true
  22903. },
  22904. {
  22905. name: "Normal",
  22906. height: math.unit(7.5, "feet"),
  22907. form: "oversize-load",
  22908. default: true
  22909. },
  22910. {
  22911. name: "Enlarged",
  22912. height: math.unit(12, "feet"),
  22913. form: "work-safe",
  22914. },
  22915. {
  22916. name: "Enlarged",
  22917. height: math.unit(12, "feet"),
  22918. form: "calibrating",
  22919. },
  22920. {
  22921. name: "Enlarged",
  22922. height: math.unit(12, "feet"),
  22923. form: "oversize-load",
  22924. },
  22925. ],
  22926. {
  22927. "work-safe": {
  22928. name: "Work-Safe",
  22929. default: true
  22930. },
  22931. "calibrating": {
  22932. name: "Calibrating"
  22933. },
  22934. "oversize-load": {
  22935. name: "Oversize Load"
  22936. }
  22937. }
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22941. {
  22942. front: {
  22943. height: math.unit(5 + 3 / 12, "feet"),
  22944. weight: math.unit(160, "lb"),
  22945. name: "Front",
  22946. image: {
  22947. source: "./media/characters/kira/front.svg",
  22948. extra: 906 / 786,
  22949. bottom: 0.01
  22950. }
  22951. },
  22952. back: {
  22953. height: math.unit(5 + 3 / 12, "feet"),
  22954. weight: math.unit(160, "lb"),
  22955. name: "Back",
  22956. image: {
  22957. source: "./media/characters/kira/back.svg",
  22958. extra: 882 / 757,
  22959. bottom: 0.005
  22960. }
  22961. },
  22962. frontDressed: {
  22963. height: math.unit(5 + 3 / 12, "feet"),
  22964. weight: math.unit(160, "lb"),
  22965. name: "Front (Dressed)",
  22966. image: {
  22967. source: "./media/characters/kira/front-dressed.svg",
  22968. extra: 906 / 786,
  22969. bottom: 0.01
  22970. }
  22971. },
  22972. beans: {
  22973. height: math.unit(0.92, "feet"),
  22974. name: "Beans",
  22975. image: {
  22976. source: "./media/characters/kira/beans.svg"
  22977. }
  22978. },
  22979. },
  22980. [
  22981. {
  22982. name: "Normal",
  22983. height: math.unit(5 + 3 / 12, "feet"),
  22984. default: true
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(5 + 4 / 12, "feet"),
  22993. weight: math.unit(145, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/scramble/front.svg",
  22997. extra: 763 / 727,
  22998. bottom: 0.05
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(5 + 4 / 12, "feet"),
  23003. weight: math.unit(145, "lb"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/scramble/back.svg",
  23007. extra: 826 / 737,
  23008. bottom: 0.002
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(5 + 4 / 12, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23022. {
  23023. side: {
  23024. height: math.unit(6 + 2 / 12, "feet"),
  23025. weight: math.unit(190, "lb"),
  23026. name: "Side",
  23027. image: {
  23028. source: "./media/characters/biscuit/side.svg",
  23029. extra: 858 / 791,
  23030. bottom: 0.044
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(6 + 2 / 12, "feet"),
  23038. default: true
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23044. {
  23045. front: {
  23046. height: math.unit(5 + 2 / 12, "feet"),
  23047. weight: math.unit(120, "lb"),
  23048. name: "Front",
  23049. image: {
  23050. source: "./media/characters/poffin/front.svg",
  23051. extra: 786 / 680,
  23052. bottom: 0.005
  23053. }
  23054. },
  23055. },
  23056. [
  23057. {
  23058. name: "Normal",
  23059. height: math.unit(5 + 2 / 12, "feet"),
  23060. default: true
  23061. },
  23062. ]
  23063. ))
  23064. characterMakers.push(() => makeCharacter(
  23065. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23066. {
  23067. front: {
  23068. height: math.unit(6 + 3 / 12, "feet"),
  23069. weight: math.unit(519, "lb"),
  23070. name: "Front",
  23071. image: {
  23072. source: "./media/characters/dhari/front.svg",
  23073. extra: 1048 / 946,
  23074. bottom: 0.015
  23075. }
  23076. },
  23077. back: {
  23078. height: math.unit(6 + 3 / 12, "feet"),
  23079. weight: math.unit(519, "lb"),
  23080. name: "Back",
  23081. image: {
  23082. source: "./media/characters/dhari/back.svg",
  23083. extra: 1048 / 931,
  23084. bottom: 0.005
  23085. }
  23086. },
  23087. frontDressed: {
  23088. height: math.unit(6 + 3 / 12, "feet"),
  23089. weight: math.unit(519, "lb"),
  23090. name: "Front (Dressed)",
  23091. image: {
  23092. source: "./media/characters/dhari/front-dressed.svg",
  23093. extra: 1713 / 1546,
  23094. bottom: 0.02
  23095. }
  23096. },
  23097. backDressed: {
  23098. height: math.unit(6 + 3 / 12, "feet"),
  23099. weight: math.unit(519, "lb"),
  23100. name: "Back (Dressed)",
  23101. image: {
  23102. source: "./media/characters/dhari/back-dressed.svg",
  23103. extra: 1699 / 1537,
  23104. bottom: 0.01
  23105. }
  23106. },
  23107. maw: {
  23108. height: math.unit(0.95, "feet"),
  23109. name: "Maw",
  23110. image: {
  23111. source: "./media/characters/dhari/maw.svg"
  23112. }
  23113. },
  23114. wereFront: {
  23115. height: math.unit(12 + 8 / 12, "feet"),
  23116. weight: math.unit(4000, "lb"),
  23117. name: "Front (Were)",
  23118. image: {
  23119. source: "./media/characters/dhari/were-front.svg",
  23120. extra: 1065 / 969,
  23121. bottom: 0.015
  23122. }
  23123. },
  23124. wereBack: {
  23125. height: math.unit(12 + 8 / 12, "feet"),
  23126. weight: math.unit(4000, "lb"),
  23127. name: "Back (Were)",
  23128. image: {
  23129. source: "./media/characters/dhari/were-back.svg",
  23130. extra: 1065 / 969,
  23131. bottom: 0.012
  23132. }
  23133. },
  23134. wereMaw: {
  23135. height: math.unit(0.625, "meters"),
  23136. name: "Maw (Were)",
  23137. image: {
  23138. source: "./media/characters/dhari/were-maw.svg"
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(6 + 3 / 12, "feet"),
  23146. default: true
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23152. {
  23153. anthro: {
  23154. height: math.unit(5 + 7 / 12, "feet"),
  23155. weight: math.unit(175, "lb"),
  23156. name: "Anthro",
  23157. image: {
  23158. source: "./media/characters/rena-dyne/anthro.svg",
  23159. extra: 1849 / 1785,
  23160. bottom: 0.005
  23161. }
  23162. },
  23163. taur: {
  23164. height: math.unit(15 + 6 / 12, "feet"),
  23165. weight: math.unit(8000, "lb"),
  23166. name: "Taur",
  23167. image: {
  23168. source: "./media/characters/rena-dyne/taur.svg",
  23169. extra: 2315 / 2234,
  23170. bottom: 0.033
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(5 + 7 / 12, "feet"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(8, "feet"),
  23187. weight: math.unit(600, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/weremeep/front.svg",
  23191. extra: 970/849,
  23192. bottom: 7/977
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(8, "feet"),
  23200. default: true
  23201. },
  23202. {
  23203. name: "Lorg",
  23204. height: math.unit(12, "feet")
  23205. },
  23206. {
  23207. name: "Oh Lawd She Comin'",
  23208. height: math.unit(20, "feet")
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23214. {
  23215. front: {
  23216. height: math.unit(4, "feet"),
  23217. weight: math.unit(90, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/reza/front.svg",
  23221. extra: 1183 / 1111,
  23222. bottom: 0.017
  23223. }
  23224. },
  23225. back: {
  23226. height: math.unit(4, "feet"),
  23227. weight: math.unit(90, "lb"),
  23228. name: "Back",
  23229. image: {
  23230. source: "./media/characters/reza/back.svg",
  23231. extra: 1183 / 1111,
  23232. bottom: 0.01
  23233. }
  23234. },
  23235. drake: {
  23236. height: math.unit(30, "feet"),
  23237. weight: math.unit(246960, "lb"),
  23238. name: "Drake",
  23239. image: {
  23240. source: "./media/characters/reza/drake.svg",
  23241. extra: 2350 / 2024,
  23242. bottom: 60.7 / 2403
  23243. }
  23244. },
  23245. },
  23246. [
  23247. {
  23248. name: "Normal",
  23249. height: math.unit(4, "feet"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23256. {
  23257. side: {
  23258. height: math.unit(15, "feet"),
  23259. weight: math.unit(14, "tons"),
  23260. name: "Side",
  23261. image: {
  23262. source: "./media/characters/athea/side.svg",
  23263. extra: 960 / 540,
  23264. bottom: 0.003
  23265. }
  23266. },
  23267. sitting: {
  23268. height: math.unit(6 * 2.85, "feet"),
  23269. weight: math.unit(14, "tons"),
  23270. name: "Sitting",
  23271. image: {
  23272. source: "./media/characters/athea/sitting.svg",
  23273. extra: 621 / 581,
  23274. bottom: 0.075
  23275. }
  23276. },
  23277. maw: {
  23278. height: math.unit(7.59498031496063, "feet"),
  23279. name: "Maw",
  23280. image: {
  23281. source: "./media/characters/athea/maw.svg"
  23282. }
  23283. },
  23284. },
  23285. [
  23286. {
  23287. name: "Lap Cat",
  23288. height: math.unit(2.5, "feet")
  23289. },
  23290. {
  23291. name: "Minimacro",
  23292. height: math.unit(15, "feet"),
  23293. default: true
  23294. },
  23295. {
  23296. name: "Macro",
  23297. height: math.unit(120, "feet")
  23298. },
  23299. {
  23300. name: "Macro+",
  23301. height: math.unit(640, "feet")
  23302. },
  23303. {
  23304. name: "Colossus",
  23305. height: math.unit(2.2, "miles")
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(8 + 8 / 12, "feet"),
  23314. weight: math.unit(130, "kg"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/seroko/front.svg",
  23318. extra: 1385 / 1280,
  23319. bottom: 0.025
  23320. }
  23321. },
  23322. back: {
  23323. height: math.unit(8 + 8 / 12, "feet"),
  23324. weight: math.unit(130, "kg"),
  23325. name: "Back",
  23326. image: {
  23327. source: "./media/characters/seroko/back.svg",
  23328. extra: 1369 / 1238,
  23329. bottom: 0.018
  23330. }
  23331. },
  23332. frontDressed: {
  23333. height: math.unit(8 + 8 / 12, "feet"),
  23334. weight: math.unit(130, "kg"),
  23335. name: "Front (Dressed)",
  23336. image: {
  23337. source: "./media/characters/seroko/front-dressed.svg",
  23338. extra: 1366 / 1275,
  23339. bottom: 0.03
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(8 + 8 / 12, "feet"),
  23347. default: true
  23348. },
  23349. ]
  23350. ))
  23351. characterMakers.push(() => makeCharacter(
  23352. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23353. {
  23354. front: {
  23355. height: math.unit(5.5, "feet"),
  23356. weight: math.unit(160, "lb"),
  23357. name: "Front",
  23358. image: {
  23359. source: "./media/characters/quatzi/front.svg",
  23360. extra: 2346 / 2242,
  23361. bottom: 0.015
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5.5, "feet"),
  23369. default: true
  23370. },
  23371. {
  23372. name: "Big",
  23373. height: math.unit(7.7, "feet")
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(5 + 11 / 12, "feet"),
  23382. weight: math.unit(180, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/sen/front.svg",
  23386. extra: 1321 / 1254,
  23387. bottom: 0.015
  23388. }
  23389. },
  23390. side: {
  23391. height: math.unit(5 + 11 / 12, "feet"),
  23392. weight: math.unit(180, "lb"),
  23393. name: "Side",
  23394. image: {
  23395. source: "./media/characters/sen/side.svg",
  23396. extra: 1321 / 1254,
  23397. bottom: 0.007
  23398. }
  23399. },
  23400. back: {
  23401. height: math.unit(5 + 11 / 12, "feet"),
  23402. weight: math.unit(180, "lb"),
  23403. name: "Back",
  23404. image: {
  23405. source: "./media/characters/sen/back.svg",
  23406. extra: 1321 / 1254
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(5 + 11 / 12, "feet"),
  23414. default: true
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23420. {
  23421. front: {
  23422. height: math.unit(166.6, "cm"),
  23423. weight: math.unit(66.6, "kg"),
  23424. name: "Front",
  23425. image: {
  23426. source: "./media/characters/fruity/front.svg",
  23427. extra: 1510 / 1386,
  23428. bottom: 0.04
  23429. }
  23430. },
  23431. back: {
  23432. height: math.unit(166.6, "cm"),
  23433. weight: math.unit(66.6, "lb"),
  23434. name: "Back",
  23435. image: {
  23436. source: "./media/characters/fruity/back.svg",
  23437. extra: 1563 / 1435,
  23438. bottom: 0.005
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(166.6, "cm"),
  23446. default: true
  23447. },
  23448. {
  23449. name: "Demonic",
  23450. height: math.unit(166.6, "feet")
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23456. {
  23457. side: {
  23458. height: math.unit(10, "feet"),
  23459. weight: math.unit(500, "lb"),
  23460. name: "Side",
  23461. image: {
  23462. source: "./media/characters/zost/side.svg",
  23463. extra: 2870/2533,
  23464. bottom: 252/3122
  23465. }
  23466. },
  23467. mawFront: {
  23468. height: math.unit(1.08, "meters"),
  23469. name: "Maw (Front)",
  23470. image: {
  23471. source: "./media/characters/zost/maw-front.svg"
  23472. }
  23473. },
  23474. mawSide: {
  23475. height: math.unit(2.66, "feet"),
  23476. name: "Maw (Side)",
  23477. image: {
  23478. source: "./media/characters/zost/maw-side.svg"
  23479. }
  23480. },
  23481. wingspan: {
  23482. height: math.unit(7.4, "feet"),
  23483. name: "Wingspan",
  23484. image: {
  23485. source: "./media/characters/zost/wingspan.svg"
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Normal",
  23492. height: math.unit(10, "feet"),
  23493. default: true
  23494. },
  23495. ]
  23496. ))
  23497. characterMakers.push(() => makeCharacter(
  23498. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23499. {
  23500. front: {
  23501. height: math.unit(5 + 4 / 12, "feet"),
  23502. weight: math.unit(120, "lb"),
  23503. name: "Front",
  23504. image: {
  23505. source: "./media/characters/luci/front.svg",
  23506. extra: 1985 / 1884,
  23507. bottom: 0.04
  23508. }
  23509. },
  23510. back: {
  23511. height: math.unit(5 + 4 / 12, "feet"),
  23512. weight: math.unit(120, "lb"),
  23513. name: "Back",
  23514. image: {
  23515. source: "./media/characters/luci/back.svg",
  23516. extra: 1892 / 1791,
  23517. bottom: 0.002
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Normal",
  23524. height: math.unit(5 + 4 / 12, "feet"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23531. {
  23532. front: {
  23533. height: math.unit(1500, "feet"),
  23534. weight: math.unit(3.8e6, "tons"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/2th/front.svg",
  23538. extra: 3489 / 3350,
  23539. bottom: 0.1
  23540. }
  23541. },
  23542. foot: {
  23543. height: math.unit(461, "feet"),
  23544. name: "Foot",
  23545. image: {
  23546. source: "./media/characters/2th/foot.svg"
  23547. }
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "\"Micro\"",
  23553. height: math.unit(15 + 7 / 12, "feet")
  23554. },
  23555. {
  23556. name: "Normal",
  23557. height: math.unit(1500, "feet"),
  23558. default: true
  23559. },
  23560. {
  23561. name: "Macro",
  23562. height: math.unit(5000, "feet")
  23563. },
  23564. {
  23565. name: "Megamacro",
  23566. height: math.unit(15, "miles")
  23567. },
  23568. {
  23569. name: "Gigamacro",
  23570. height: math.unit(4000, "miles")
  23571. },
  23572. {
  23573. name: "Galactic",
  23574. height: math.unit(50, "AU")
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(5 + 6 / 12, "feet"),
  23583. weight: math.unit(220, "lb"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/amethyst/front.svg",
  23587. extra: 2078 / 2040,
  23588. bottom: 0.045
  23589. }
  23590. },
  23591. back: {
  23592. height: math.unit(5 + 6 / 12, "feet"),
  23593. weight: math.unit(220, "lb"),
  23594. name: "Back",
  23595. image: {
  23596. source: "./media/characters/amethyst/back.svg",
  23597. extra: 2021 / 1989,
  23598. bottom: 0.02
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5 + 6 / 12, "feet"),
  23606. default: true
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(4 + 11 / 12, "feet"),
  23615. weight: math.unit(120, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/yumi-akiyama/front.svg",
  23619. extra: 1327 / 1235,
  23620. bottom: 0.02
  23621. }
  23622. },
  23623. back: {
  23624. height: math.unit(4 + 11 / 12, "feet"),
  23625. weight: math.unit(120, "lb"),
  23626. name: "Back",
  23627. image: {
  23628. source: "./media/characters/yumi-akiyama/back.svg",
  23629. extra: 1287 / 1245,
  23630. bottom: 0.002
  23631. }
  23632. },
  23633. },
  23634. [
  23635. {
  23636. name: "Galactic",
  23637. height: math.unit(50, "galaxies"),
  23638. default: true
  23639. },
  23640. {
  23641. name: "Universal",
  23642. height: math.unit(100, "universes")
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23648. {
  23649. front: {
  23650. height: math.unit(8, "feet"),
  23651. weight: math.unit(500, "lb"),
  23652. name: "Front",
  23653. image: {
  23654. source: "./media/characters/rifter-yrmori/front.svg",
  23655. extra: 1180 / 1125,
  23656. bottom: 0.02
  23657. }
  23658. },
  23659. back: {
  23660. height: math.unit(8, "feet"),
  23661. weight: math.unit(500, "lb"),
  23662. name: "Back",
  23663. image: {
  23664. source: "./media/characters/rifter-yrmori/back.svg",
  23665. extra: 1190 / 1145,
  23666. bottom: 0.001
  23667. }
  23668. },
  23669. wings: {
  23670. height: math.unit(7.75, "feet"),
  23671. weight: math.unit(500, "lb"),
  23672. name: "Wings",
  23673. image: {
  23674. source: "./media/characters/rifter-yrmori/wings.svg",
  23675. extra: 1357 / 1285
  23676. }
  23677. },
  23678. maw: {
  23679. height: math.unit(0.8, "feet"),
  23680. name: "Maw",
  23681. image: {
  23682. source: "./media/characters/rifter-yrmori/maw.svg"
  23683. }
  23684. },
  23685. mawfront: {
  23686. height: math.unit(1.45, "feet"),
  23687. name: "Maw (Front)",
  23688. image: {
  23689. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23690. }
  23691. },
  23692. },
  23693. [
  23694. {
  23695. name: "Normal",
  23696. height: math.unit(8, "feet"),
  23697. default: true
  23698. },
  23699. {
  23700. name: "Macro",
  23701. height: math.unit(42, "meters")
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23707. {
  23708. were: {
  23709. height: math.unit(25 + 6 / 12, "feet"),
  23710. weight: math.unit(10000, "lb"),
  23711. name: "Were",
  23712. image: {
  23713. source: "./media/characters/tahajin/were.svg",
  23714. extra: 801 / 770,
  23715. bottom: 0.042
  23716. }
  23717. },
  23718. aquatic: {
  23719. height: math.unit(6 + 4 / 12, "feet"),
  23720. weight: math.unit(160, "lb"),
  23721. name: "Aquatic",
  23722. image: {
  23723. source: "./media/characters/tahajin/aquatic.svg",
  23724. extra: 572 / 542,
  23725. bottom: 0.04
  23726. }
  23727. },
  23728. chow: {
  23729. height: math.unit(8 + 11 / 12, "feet"),
  23730. weight: math.unit(450, "lb"),
  23731. name: "Chow",
  23732. image: {
  23733. source: "./media/characters/tahajin/chow.svg",
  23734. extra: 660 / 640,
  23735. bottom: 0.015
  23736. }
  23737. },
  23738. demiNaga: {
  23739. height: math.unit(6 + 8 / 12, "feet"),
  23740. weight: math.unit(300, "lb"),
  23741. name: "Demi Naga",
  23742. image: {
  23743. source: "./media/characters/tahajin/demi-naga.svg",
  23744. extra: 643 / 615,
  23745. bottom: 0.1
  23746. }
  23747. },
  23748. data: {
  23749. height: math.unit(5, "inches"),
  23750. weight: math.unit(0.1, "lb"),
  23751. name: "Data",
  23752. image: {
  23753. source: "./media/characters/tahajin/data.svg"
  23754. }
  23755. },
  23756. fluu: {
  23757. height: math.unit(5 + 7 / 12, "feet"),
  23758. weight: math.unit(140, "lb"),
  23759. name: "Fluu",
  23760. image: {
  23761. source: "./media/characters/tahajin/fluu.svg",
  23762. extra: 628 / 592,
  23763. bottom: 0.02
  23764. }
  23765. },
  23766. starWarrior: {
  23767. height: math.unit(4 + 5 / 12, "feet"),
  23768. weight: math.unit(50, "lb"),
  23769. name: "Star Warrior",
  23770. image: {
  23771. source: "./media/characters/tahajin/star-warrior.svg"
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(25 + 6 / 12, "feet"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(8, "feet"),
  23788. weight: math.unit(350, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/gabira/front.svg",
  23792. extra: 1261/1154,
  23793. bottom: 51/1312
  23794. }
  23795. },
  23796. back: {
  23797. height: math.unit(8, "feet"),
  23798. weight: math.unit(350, "lb"),
  23799. name: "Back",
  23800. image: {
  23801. source: "./media/characters/gabira/back.svg",
  23802. extra: 1265/1163,
  23803. bottom: 46/1311
  23804. }
  23805. },
  23806. head: {
  23807. height: math.unit(2.85, "feet"),
  23808. name: "Head",
  23809. image: {
  23810. source: "./media/characters/gabira/head.svg"
  23811. }
  23812. },
  23813. },
  23814. [
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(8, "feet"),
  23818. default: true
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(5 + 3 / 12, "feet"),
  23827. weight: math.unit(137, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/sasha-katraine/front.svg",
  23831. extra: 1745/1694,
  23832. bottom: 37/1782
  23833. }
  23834. },
  23835. back: {
  23836. height: math.unit(5 + 3 / 12, "feet"),
  23837. weight: math.unit(137, "lb"),
  23838. name: "Back",
  23839. image: {
  23840. source: "./media/characters/sasha-katraine/back.svg",
  23841. extra: 1776/1699,
  23842. bottom: 26/1802
  23843. }
  23844. },
  23845. },
  23846. [
  23847. {
  23848. name: "Micro",
  23849. height: math.unit(5, "inches")
  23850. },
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(5 + 3 / 12, "feet"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23860. {
  23861. side: {
  23862. height: math.unit(4, "inches"),
  23863. weight: math.unit(200, "grams"),
  23864. name: "Side",
  23865. image: {
  23866. source: "./media/characters/der/side.svg",
  23867. extra: 719 / 400,
  23868. bottom: 30.6 / 749.9187
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Micro",
  23875. height: math.unit(4, "inches"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23882. {
  23883. side: {
  23884. height: math.unit(30, "meters"),
  23885. weight: math.unit(700, "tonnes"),
  23886. name: "Side",
  23887. image: {
  23888. source: "./media/characters/fixerdragon/side.svg",
  23889. extra: (1293.0514 - 116.03) / 1106.86,
  23890. bottom: 116.03 / 1293.0514
  23891. }
  23892. },
  23893. },
  23894. [
  23895. {
  23896. name: "Planck",
  23897. height: math.unit(1.6e-35, "meters")
  23898. },
  23899. {
  23900. name: "Micro",
  23901. height: math.unit(0.4, "meters")
  23902. },
  23903. {
  23904. name: "Normal",
  23905. height: math.unit(30, "meters"),
  23906. default: true
  23907. },
  23908. {
  23909. name: "Megamacro",
  23910. height: math.unit(1.2, "megameters")
  23911. },
  23912. {
  23913. name: "Teramacro",
  23914. height: math.unit(130, "terameters")
  23915. },
  23916. {
  23917. name: "Yottamacro",
  23918. height: math.unit(6200, "yottameters")
  23919. },
  23920. ]
  23921. ));
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23924. {
  23925. front: {
  23926. height: math.unit(8, "feet"),
  23927. weight: math.unit(250, "lb"),
  23928. name: "Front",
  23929. image: {
  23930. source: "./media/characters/kite/front.svg",
  23931. extra: 2796 / 2659,
  23932. bottom: 0.002
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Normal",
  23939. height: math.unit(8, "feet"),
  23940. default: true
  23941. },
  23942. {
  23943. name: "Macro",
  23944. height: math.unit(360, "feet")
  23945. },
  23946. {
  23947. name: "Megamacro",
  23948. height: math.unit(1500, "feet")
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23954. {
  23955. anthro_front: {
  23956. height: math.unit(5 + 11/12, "feet"),
  23957. weight: math.unit(170, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23961. extra: 1735/1585,
  23962. bottom: 96/1831
  23963. },
  23964. form: "anthro",
  23965. default: true
  23966. },
  23967. anthro_back: {
  23968. height: math.unit(5 + 11/12, "feet"),
  23969. weight: math.unit(170, "lb"),
  23970. name: "Back",
  23971. image: {
  23972. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23973. extra: 1749/1607,
  23974. bottom: 28/1777
  23975. },
  23976. form: "anthro"
  23977. },
  23978. anthro_male: {
  23979. height: math.unit(5 + 11/12, "feet"),
  23980. weight: math.unit(170, "lb"),
  23981. name: "Male",
  23982. image: {
  23983. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23984. extra: 1855/1713,
  23985. bottom: 63/1918
  23986. },
  23987. form: "anthro"
  23988. },
  23989. taur_front: {
  23990. height: math.unit(5 + 7/12, "feet"),
  23991. weight: math.unit(170, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23995. extra: 1151/1059,
  23996. bottom: 356/1507
  23997. },
  23998. form: "taur",
  23999. default: true
  24000. },
  24001. anthro_frontDressed: {
  24002. height: math.unit(5 + 11/12, "feet"),
  24003. weight: math.unit(170, "lb"),
  24004. name: "Front (Dressed)",
  24005. image: {
  24006. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24007. extra: 1735/1585,
  24008. bottom: 96/1831
  24009. },
  24010. form: "anthro"
  24011. },
  24012. anthro_backDressed: {
  24013. height: math.unit(5 + 11/12, "feet"),
  24014. weight: math.unit(170, "lb"),
  24015. name: "Back (Dressed)",
  24016. image: {
  24017. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24018. extra: 1749/1607,
  24019. bottom: 28/1777
  24020. },
  24021. form: "anthro"
  24022. },
  24023. anthro_maleDressed: {
  24024. height: math.unit(5 + 11/12, "feet"),
  24025. weight: math.unit(170, "lb"),
  24026. name: "Male (Dressed)",
  24027. image: {
  24028. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24029. extra: 1855/1713,
  24030. bottom: 63/1918
  24031. },
  24032. form: "anthro"
  24033. },
  24034. taur_frontDressed: {
  24035. height: math.unit(5 + 7/12, "feet"),
  24036. weight: math.unit(170, "lb"),
  24037. name: "Front (Dressed)",
  24038. image: {
  24039. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24040. extra: 1151/1059,
  24041. bottom: 356/1507
  24042. },
  24043. form: "taur"
  24044. },
  24045. maw: {
  24046. height: math.unit(1.46, "feet"),
  24047. name: "Maw",
  24048. image: {
  24049. source: "./media/characters/poojawa-vynar/maw.svg"
  24050. },
  24051. allForms: true
  24052. },
  24053. head: {
  24054. height: math.unit(2.34, "feet"),
  24055. name: "Head",
  24056. image: {
  24057. source: "./media/characters/poojawa-vynar/head.svg"
  24058. },
  24059. allForms: true
  24060. },
  24061. leftPaw: {
  24062. height: math.unit(1.72, "feet"),
  24063. name: "Left Paw",
  24064. image: {
  24065. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24066. },
  24067. allForms: true
  24068. },
  24069. rightPaw: {
  24070. height: math.unit(1.61, "feet"),
  24071. name: "Right Paw",
  24072. image: {
  24073. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24074. },
  24075. allForms: true
  24076. },
  24077. toering: {
  24078. height: math.unit(2.9, "inches"),
  24079. name: "Toering",
  24080. image: {
  24081. source: "./media/characters/poojawa-vynar/toering.svg"
  24082. },
  24083. allForms: true
  24084. },
  24085. shaft: {
  24086. height: math.unit(0.625, "feet"),
  24087. name: "Shaft",
  24088. image: {
  24089. source: "./media/characters/poojawa-vynar/shaft.svg"
  24090. },
  24091. allForms: true
  24092. },
  24093. spade: {
  24094. height: math.unit(0.42, "feet"),
  24095. name: "Spade",
  24096. image: {
  24097. source: "./media/characters/poojawa-vynar/spade.svg"
  24098. },
  24099. allForms: true
  24100. },
  24101. },
  24102. [
  24103. {
  24104. name: "Shortstack",
  24105. height: math.unit(4, "feet"),
  24106. form: "anthro"
  24107. },
  24108. {
  24109. name: "Normal",
  24110. height: math.unit(5 + 11 / 12, "feet"),
  24111. form: "anthro",
  24112. default: true
  24113. },
  24114. {
  24115. name: "Tauric",
  24116. height: math.unit(4, "meters"),
  24117. form: "taur",
  24118. default: true
  24119. },
  24120. ],
  24121. {
  24122. "anthro": {
  24123. name: "Anthro",
  24124. default: true
  24125. },
  24126. "taur": {
  24127. name: "Taur",
  24128. },
  24129. }
  24130. ))
  24131. characterMakers.push(() => makeCharacter(
  24132. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24133. {
  24134. front: {
  24135. height: math.unit(293, "meters"),
  24136. weight: math.unit(70400, "tons"),
  24137. name: "Front",
  24138. image: {
  24139. source: "./media/characters/violette/front.svg",
  24140. extra: 1227 / 1180,
  24141. bottom: 0.005
  24142. }
  24143. },
  24144. back: {
  24145. height: math.unit(293, "meters"),
  24146. weight: math.unit(70400, "tons"),
  24147. name: "Back",
  24148. image: {
  24149. source: "./media/characters/violette/back.svg",
  24150. extra: 1227 / 1180,
  24151. bottom: 0.005
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(293, "meters"),
  24159. default: true
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(1050, "feet"),
  24168. weight: math.unit(200000, "tons"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/alessandra/front.svg",
  24172. extra: 960 / 912,
  24173. bottom: 0.06
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Macro",
  24180. height: math.unit(1050, "feet")
  24181. },
  24182. {
  24183. name: "Macro+",
  24184. height: math.unit(900, "meters"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(5, "feet"),
  24194. weight: math.unit(187, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/person/front.svg",
  24198. extra: 3087 / 2945,
  24199. bottom: 91 / 3181
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Micro",
  24206. height: math.unit(3, "inches")
  24207. },
  24208. {
  24209. name: "Normal",
  24210. height: math.unit(5, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Macro",
  24215. height: math.unit(90, "feet")
  24216. },
  24217. {
  24218. name: "Max Size",
  24219. height: math.unit(280, "feet")
  24220. },
  24221. ]
  24222. ))
  24223. characterMakers.push(() => makeCharacter(
  24224. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24225. {
  24226. front: {
  24227. height: math.unit(4.5, "meters"),
  24228. weight: math.unit(3200, "lb"),
  24229. name: "Front",
  24230. image: {
  24231. source: "./media/characters/ty/front.svg",
  24232. extra: 1038 / 960,
  24233. bottom: 31.156 / 1068
  24234. }
  24235. },
  24236. back: {
  24237. height: math.unit(4.5, "meters"),
  24238. weight: math.unit(3200, "lb"),
  24239. name: "Back",
  24240. image: {
  24241. source: "./media/characters/ty/back.svg",
  24242. extra: 1044 / 966,
  24243. bottom: 7.48 / 1049
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(4.5, "meters"),
  24251. default: true
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24257. {
  24258. front: {
  24259. height: math.unit(5 + 4 / 12, "feet"),
  24260. weight: math.unit(115, "lb"),
  24261. name: "Front",
  24262. image: {
  24263. source: "./media/characters/rocky/front.svg",
  24264. extra: 1012 / 975,
  24265. bottom: 54 / 1066
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Normal",
  24272. height: math.unit(5 + 4 / 12, "feet"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24279. {
  24280. upright: {
  24281. height: math.unit(6, "meters"),
  24282. weight: math.unit(4000, "kg"),
  24283. name: "Upright",
  24284. image: {
  24285. source: "./media/characters/ruin/upright.svg",
  24286. extra: 668 / 661,
  24287. bottom: 42 / 799.8396
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(6, "meters"),
  24295. default: true
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(5, "feet"),
  24304. weight: math.unit(106, "lb"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/robin/front.svg",
  24308. extra: 862 / 799,
  24309. bottom: 42.4 / 914.8856
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(5, "feet"),
  24317. default: true
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24323. {
  24324. side: {
  24325. height: math.unit(3, "feet"),
  24326. weight: math.unit(225, "lb"),
  24327. name: "Side",
  24328. image: {
  24329. source: "./media/characters/saian/side.svg",
  24330. extra: 566 / 356,
  24331. bottom: 79.7 / 643
  24332. }
  24333. },
  24334. maw: {
  24335. height: math.unit(2.85, "feet"),
  24336. name: "Maw",
  24337. image: {
  24338. source: "./media/characters/saian/maw.svg"
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Normal",
  24345. height: math.unit(3, "feet"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24352. {
  24353. side: {
  24354. height: math.unit(8, "feet"),
  24355. weight: math.unit(300, "lb"),
  24356. name: "Side",
  24357. image: {
  24358. source: "./media/characters/equus-silvermane/side.svg",
  24359. extra: 2176 / 2050,
  24360. bottom: 65.7 / 2245
  24361. }
  24362. },
  24363. front: {
  24364. height: math.unit(8, "feet"),
  24365. weight: math.unit(300, "lb"),
  24366. name: "Front",
  24367. image: {
  24368. source: "./media/characters/equus-silvermane/front.svg",
  24369. extra: 4633 / 4400,
  24370. bottom: 71.3 / 4706.915
  24371. }
  24372. },
  24373. sideStepping: {
  24374. height: math.unit(8, "feet"),
  24375. weight: math.unit(300, "lb"),
  24376. name: "Side (Stepping)",
  24377. image: {
  24378. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24379. extra: 1968 / 1860,
  24380. bottom: 16.4 / 1989
  24381. }
  24382. },
  24383. },
  24384. [
  24385. {
  24386. name: "Normal",
  24387. height: math.unit(8, "feet")
  24388. },
  24389. {
  24390. name: "Minimacro",
  24391. height: math.unit(75, "feet"),
  24392. default: true
  24393. },
  24394. {
  24395. name: "Macro",
  24396. height: math.unit(150, "feet")
  24397. },
  24398. {
  24399. name: "Macro+",
  24400. height: math.unit(1000, "feet")
  24401. },
  24402. {
  24403. name: "Megamacro",
  24404. height: math.unit(1, "mile")
  24405. },
  24406. ]
  24407. ))
  24408. characterMakers.push(() => makeCharacter(
  24409. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24410. {
  24411. side: {
  24412. height: math.unit(20, "feet"),
  24413. weight: math.unit(30000, "kg"),
  24414. name: "Side",
  24415. image: {
  24416. source: "./media/characters/windar/side.svg",
  24417. extra: 1491 / 1248,
  24418. bottom: 82.56 / 1568
  24419. }
  24420. },
  24421. },
  24422. [
  24423. {
  24424. name: "Normal",
  24425. height: math.unit(20, "feet"),
  24426. default: true
  24427. },
  24428. ]
  24429. ))
  24430. characterMakers.push(() => makeCharacter(
  24431. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24432. {
  24433. side: {
  24434. height: math.unit(15.66, "feet"),
  24435. weight: math.unit(150, "lb"),
  24436. name: "Side",
  24437. image: {
  24438. source: "./media/characters/melody/side.svg",
  24439. extra: 1097 / 944,
  24440. bottom: 11.8 / 1109
  24441. }
  24442. },
  24443. sideOutfit: {
  24444. height: math.unit(15.66, "feet"),
  24445. weight: math.unit(150, "lb"),
  24446. name: "Side (Outfit)",
  24447. image: {
  24448. source: "./media/characters/melody/side-outfit.svg",
  24449. extra: 1097 / 944,
  24450. bottom: 11.8 / 1109
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(15.66, "feet"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24464. {
  24465. armoredFront: {
  24466. height: math.unit(8, "feet"),
  24467. weight: math.unit(325, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/windera/armored-front.svg",
  24471. extra: 1830/1598,
  24472. bottom: 151/1981
  24473. },
  24474. form: "armored",
  24475. default: true
  24476. },
  24477. macroFront: {
  24478. height: math.unit(70, "feet"),
  24479. weight: math.unit(315453, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/windera/macro-front.svg",
  24483. extra: 963/883,
  24484. bottom: 23/986
  24485. },
  24486. form: "macro",
  24487. default: true
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(8, "feet"),
  24494. default: true,
  24495. form: "armored"
  24496. },
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(70, "feet"),
  24500. default: true,
  24501. form: "macro"
  24502. },
  24503. ],
  24504. {
  24505. "armored": {
  24506. name: "Armored",
  24507. default: true
  24508. },
  24509. "macro": {
  24510. name: "Macro",
  24511. },
  24512. }
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24516. {
  24517. front: {
  24518. height: math.unit(28.75, "feet"),
  24519. weight: math.unit(2000, "kg"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/sonear/front.svg",
  24523. extra: 1041.1 / 964.9,
  24524. bottom: 53.7 / 1096.6
  24525. }
  24526. },
  24527. },
  24528. [
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(28.75, "feet"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24538. {
  24539. side: {
  24540. height: math.unit(25.5, "feet"),
  24541. weight: math.unit(23000, "kg"),
  24542. name: "Side",
  24543. image: {
  24544. source: "./media/characters/kanara/side.svg"
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Normal",
  24551. height: math.unit(25.5, "feet"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24558. {
  24559. side: {
  24560. height: math.unit(10, "feet"),
  24561. weight: math.unit(1000, "kg"),
  24562. name: "Side",
  24563. image: {
  24564. source: "./media/characters/ereus/side.svg",
  24565. extra: 1157 / 959,
  24566. bottom: 153 / 1312.5
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(10, "feet"),
  24574. default: true
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24580. {
  24581. side: {
  24582. height: math.unit(4.5, "feet"),
  24583. weight: math.unit(500, "lb"),
  24584. name: "Side",
  24585. image: {
  24586. source: "./media/characters/e-ter/side.svg",
  24587. extra: 1550 / 1248,
  24588. bottom: 146 / 1694
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(4.5, "feet"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24602. {
  24603. side: {
  24604. height: math.unit(9.7, "feet"),
  24605. weight: math.unit(4000, "kg"),
  24606. name: "Side",
  24607. image: {
  24608. source: "./media/characters/yamie/side.svg"
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(9.7, "feet"),
  24616. default: true
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(50, "feet"),
  24625. weight: math.unit(50000, "kg"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/anders/front.svg",
  24629. extra: 570 / 539,
  24630. bottom: 14.7 / 586.7
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Large",
  24637. height: math.unit(50, "feet")
  24638. },
  24639. {
  24640. name: "Macro",
  24641. height: math.unit(2000, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Megamacro",
  24646. height: math.unit(12, "miles")
  24647. },
  24648. ]
  24649. ))
  24650. characterMakers.push(() => makeCharacter(
  24651. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24652. {
  24653. front: {
  24654. height: math.unit(7 + 2 / 12, "feet"),
  24655. weight: math.unit(300, "lb"),
  24656. name: "Front",
  24657. image: {
  24658. source: "./media/characters/reban/front.svg",
  24659. extra: 1287/1212,
  24660. bottom: 148/1435
  24661. }
  24662. },
  24663. head: {
  24664. height: math.unit(1.95, "feet"),
  24665. name: "Head",
  24666. image: {
  24667. source: "./media/characters/reban/head.svg"
  24668. }
  24669. },
  24670. maw: {
  24671. height: math.unit(0.95, "feet"),
  24672. name: "Maw",
  24673. image: {
  24674. source: "./media/characters/reban/maw.svg"
  24675. }
  24676. },
  24677. foot: {
  24678. height: math.unit(1.65, "feet"),
  24679. name: "Foot",
  24680. image: {
  24681. source: "./media/characters/reban/foot.svg"
  24682. }
  24683. },
  24684. dick: {
  24685. height: math.unit(7 / 5, "feet"),
  24686. name: "Dick",
  24687. image: {
  24688. source: "./media/characters/reban/dick.svg"
  24689. }
  24690. },
  24691. },
  24692. [
  24693. {
  24694. name: "Natural Height",
  24695. height: math.unit(7 + 2 / 12, "feet")
  24696. },
  24697. {
  24698. name: "Macro",
  24699. height: math.unit(500, "feet"),
  24700. default: true
  24701. },
  24702. {
  24703. name: "Canon Height",
  24704. height: math.unit(50, "AU")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(6, "feet"),
  24713. weight: math.unit(150, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/terrance-keayes/front.svg",
  24717. extra: 1.005,
  24718. bottom: 151 / 1615
  24719. }
  24720. },
  24721. side: {
  24722. height: math.unit(6, "feet"),
  24723. weight: math.unit(150, "lb"),
  24724. name: "Side",
  24725. image: {
  24726. source: "./media/characters/terrance-keayes/side.svg",
  24727. extra: 1.005,
  24728. bottom: 129.4 / 1544
  24729. }
  24730. },
  24731. back: {
  24732. height: math.unit(6, "feet"),
  24733. weight: math.unit(150, "lb"),
  24734. name: "Back",
  24735. image: {
  24736. source: "./media/characters/terrance-keayes/back.svg",
  24737. extra: 1.005,
  24738. bottom: 58.4 / 1557.3
  24739. }
  24740. },
  24741. dick: {
  24742. height: math.unit(6 * 0.208, "feet"),
  24743. name: "Dick",
  24744. image: {
  24745. source: "./media/characters/terrance-keayes/dick.svg"
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Canon Height",
  24752. height: math.unit(35, "miles"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(6, "feet"),
  24762. weight: math.unit(150, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/ofelia/front.svg",
  24766. extra: 1130/1117,
  24767. bottom: 91/1221
  24768. }
  24769. },
  24770. back: {
  24771. height: math.unit(6, "feet"),
  24772. weight: math.unit(150, "lb"),
  24773. name: "Back",
  24774. image: {
  24775. source: "./media/characters/ofelia/back.svg",
  24776. extra: 1172/1159,
  24777. bottom: 28/1200
  24778. }
  24779. },
  24780. maw: {
  24781. height: math.unit(1, "feet"),
  24782. name: "Maw",
  24783. image: {
  24784. source: "./media/characters/ofelia/maw.svg"
  24785. }
  24786. },
  24787. foot: {
  24788. height: math.unit(1.949, "feet"),
  24789. name: "Foot",
  24790. image: {
  24791. source: "./media/characters/ofelia/foot.svg"
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Canon Height",
  24798. height: math.unit(2000, "miles"),
  24799. default: true
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24805. {
  24806. front: {
  24807. height: math.unit(6, "feet"),
  24808. weight: math.unit(150, "lb"),
  24809. name: "Front",
  24810. image: {
  24811. source: "./media/characters/samuel/front.svg",
  24812. extra: 265 / 258,
  24813. bottom: 2 / 266.1566
  24814. }
  24815. },
  24816. },
  24817. [
  24818. {
  24819. name: "Macro",
  24820. height: math.unit(100, "feet"),
  24821. default: true
  24822. },
  24823. {
  24824. name: "Full Size",
  24825. height: math.unit(1000, "miles")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24831. {
  24832. front: {
  24833. height: math.unit(6, "feet"),
  24834. weight: math.unit(300, "lb"),
  24835. name: "Front",
  24836. image: {
  24837. source: "./media/characters/beishir-kiel/front.svg",
  24838. extra: 569 / 547,
  24839. bottom: 41.9 / 609
  24840. }
  24841. },
  24842. maw: {
  24843. height: math.unit(6 * 0.202, "feet"),
  24844. name: "Maw",
  24845. image: {
  24846. source: "./media/characters/beishir-kiel/maw.svg"
  24847. }
  24848. },
  24849. },
  24850. [
  24851. {
  24852. name: "Macro",
  24853. height: math.unit(300, "feet"),
  24854. default: true
  24855. },
  24856. ]
  24857. ))
  24858. characterMakers.push(() => makeCharacter(
  24859. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24860. {
  24861. front: {
  24862. height: math.unit(5 + 7/12, "feet"),
  24863. weight: math.unit(120, "lb"),
  24864. name: "Front",
  24865. image: {
  24866. source: "./media/characters/logan-grey/front.svg",
  24867. extra: 1836/1738,
  24868. bottom: 108/1944
  24869. }
  24870. },
  24871. back: {
  24872. height: math.unit(5 + 7/12, "feet"),
  24873. weight: math.unit(120, "lb"),
  24874. name: "Back",
  24875. image: {
  24876. source: "./media/characters/logan-grey/back.svg",
  24877. extra: 1880/1794,
  24878. bottom: 24/1904
  24879. }
  24880. },
  24881. frontSfw: {
  24882. height: math.unit(5 + 7/12, "feet"),
  24883. weight: math.unit(120, "lb"),
  24884. name: "Front (SFW)",
  24885. image: {
  24886. source: "./media/characters/logan-grey/front-sfw.svg",
  24887. extra: 1836/1738,
  24888. bottom: 108/1944
  24889. }
  24890. },
  24891. backSfw: {
  24892. height: math.unit(5 + 7/12, "feet"),
  24893. weight: math.unit(120, "lb"),
  24894. name: "Back (SFW)",
  24895. image: {
  24896. source: "./media/characters/logan-grey/back-sfw.svg",
  24897. extra: 1880/1794,
  24898. bottom: 24/1904
  24899. }
  24900. },
  24901. hands: {
  24902. height: math.unit(0.84, "feet"),
  24903. name: "Hands",
  24904. image: {
  24905. source: "./media/characters/logan-grey/hands.svg"
  24906. }
  24907. },
  24908. paws: {
  24909. height: math.unit(0.72, "feet"),
  24910. name: "Paws",
  24911. image: {
  24912. source: "./media/characters/logan-grey/paws.svg"
  24913. }
  24914. },
  24915. cock: {
  24916. height: math.unit(1.45, "feet"),
  24917. name: "Cock",
  24918. image: {
  24919. source: "./media/characters/logan-grey/cock.svg"
  24920. }
  24921. },
  24922. cockAlt: {
  24923. height: math.unit(1.437, "feet"),
  24924. name: "Cock (alt)",
  24925. image: {
  24926. source: "./media/characters/logan-grey/cock-alt.svg"
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(5 + 8 / 12, "feet")
  24934. },
  24935. {
  24936. name: "The 500 Foot Femboy",
  24937. height: math.unit(500, "feet"),
  24938. default: true
  24939. },
  24940. {
  24941. name: "Megmacro",
  24942. height: math.unit(20, "miles")
  24943. },
  24944. ]
  24945. ))
  24946. characterMakers.push(() => makeCharacter(
  24947. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24948. {
  24949. front: {
  24950. height: math.unit(8 + 2 / 12, "feet"),
  24951. weight: math.unit(275, "lb"),
  24952. name: "Front",
  24953. image: {
  24954. source: "./media/characters/draganta/front.svg",
  24955. extra: 1177 / 1135,
  24956. bottom: 33.46 / 1212.1
  24957. }
  24958. },
  24959. },
  24960. [
  24961. {
  24962. name: "Normal",
  24963. height: math.unit(8 + 6 / 12, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Macro",
  24968. height: math.unit(150, "feet")
  24969. },
  24970. {
  24971. name: "Megamacro",
  24972. height: math.unit(1000, "miles")
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24978. {
  24979. front: {
  24980. height: math.unit(1.72, "m"),
  24981. weight: math.unit(80, "lb"),
  24982. name: "Front",
  24983. image: {
  24984. source: "./media/characters/voski/front.svg",
  24985. extra: 2076.22 / 2022.4,
  24986. bottom: 102.7 / 2177.3866
  24987. }
  24988. },
  24989. frontFlaccid: {
  24990. height: math.unit(1.72, "m"),
  24991. weight: math.unit(80, "lb"),
  24992. name: "Front (Flaccid)",
  24993. image: {
  24994. source: "./media/characters/voski/front-flaccid.svg",
  24995. extra: 2076.22 / 2022.4,
  24996. bottom: 102.7 / 2177.3866
  24997. }
  24998. },
  24999. frontErect: {
  25000. height: math.unit(1.72, "m"),
  25001. weight: math.unit(80, "lb"),
  25002. name: "Front (Erect)",
  25003. image: {
  25004. source: "./media/characters/voski/front-erect.svg",
  25005. extra: 2076.22 / 2022.4,
  25006. bottom: 102.7 / 2177.3866
  25007. }
  25008. },
  25009. back: {
  25010. height: math.unit(1.72, "m"),
  25011. weight: math.unit(80, "lb"),
  25012. name: "Back",
  25013. image: {
  25014. source: "./media/characters/voski/back.svg",
  25015. extra: 2104 / 2051,
  25016. bottom: 10.45 / 2113.63
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(1.72, "m")
  25024. },
  25025. {
  25026. name: "Macro",
  25027. height: math.unit(55, "m"),
  25028. default: true
  25029. },
  25030. {
  25031. name: "Macro+",
  25032. height: math.unit(300, "m")
  25033. },
  25034. {
  25035. name: "Macro++",
  25036. height: math.unit(700, "m")
  25037. },
  25038. {
  25039. name: "Macro+++",
  25040. height: math.unit(4500, "m")
  25041. },
  25042. {
  25043. name: "Macro++++",
  25044. height: math.unit(45, "km")
  25045. },
  25046. {
  25047. name: "Macro+++++",
  25048. height: math.unit(1220, "km")
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25054. {
  25055. front: {
  25056. height: math.unit(2.3, "m"),
  25057. weight: math.unit(304, "kg"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/icowom-lee/front.svg",
  25061. extra: 985 / 955,
  25062. bottom: 25.4 / 1012
  25063. }
  25064. },
  25065. fronttentacles: {
  25066. height: math.unit(2.3, "m"),
  25067. weight: math.unit(304, "kg"),
  25068. name: "Front-tentacles",
  25069. image: {
  25070. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25071. extra: 985 / 955,
  25072. bottom: 25.4 / 1012
  25073. }
  25074. },
  25075. back: {
  25076. height: math.unit(2.3, "m"),
  25077. weight: math.unit(304, "kg"),
  25078. name: "Back",
  25079. image: {
  25080. source: "./media/characters/icowom-lee/back.svg",
  25081. extra: 975 / 954,
  25082. bottom: 9.5 / 985
  25083. }
  25084. },
  25085. backtentacles: {
  25086. height: math.unit(2.3, "m"),
  25087. weight: math.unit(304, "kg"),
  25088. name: "Back-tentacles",
  25089. image: {
  25090. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25091. extra: 975 / 954,
  25092. bottom: 9.5 / 985
  25093. }
  25094. },
  25095. frontDressed: {
  25096. height: math.unit(2.3, "m"),
  25097. weight: math.unit(304, "kg"),
  25098. name: "Front (Dressed)",
  25099. image: {
  25100. source: "./media/characters/icowom-lee/front-dressed.svg",
  25101. extra: 3076 / 2933,
  25102. bottom: 51.4 / 3125.1889
  25103. }
  25104. },
  25105. rump: {
  25106. height: math.unit(0.776, "meters"),
  25107. name: "Rump",
  25108. image: {
  25109. source: "./media/characters/icowom-lee/rump.svg"
  25110. }
  25111. },
  25112. genitals: {
  25113. height: math.unit(0.78, "meters"),
  25114. name: "Genitals",
  25115. image: {
  25116. source: "./media/characters/icowom-lee/genitals.svg"
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Normal",
  25123. height: math.unit(2.3, "meters"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Macro",
  25128. height: math.unit(94, "meters"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(22, "meters"),
  25138. weight: math.unit(21000, "kg"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/shock-diamond/front.svg",
  25142. extra: 2204 / 2053,
  25143. bottom: 65 / 2239.47
  25144. }
  25145. },
  25146. frontNude: {
  25147. height: math.unit(22, "meters"),
  25148. weight: math.unit(21000, "kg"),
  25149. name: "Front (Nude)",
  25150. image: {
  25151. source: "./media/characters/shock-diamond/front-nude.svg",
  25152. extra: 2514 / 2285,
  25153. bottom: 13 / 2527.56
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(3, "meters")
  25161. },
  25162. {
  25163. name: "Macro",
  25164. height: math.unit(22, "meters"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25171. {
  25172. front: {
  25173. height: math.unit(5 + 4/12, "feet"),
  25174. weight: math.unit(125, "lb"),
  25175. name: "Front",
  25176. image: {
  25177. source: "./media/characters/rory/front.svg",
  25178. extra: 1790/1681,
  25179. bottom: 66/1856
  25180. },
  25181. form: "normal",
  25182. default: true
  25183. },
  25184. back: {
  25185. height: math.unit(5 + 4/12, "feet"),
  25186. weight: math.unit(125, "lb"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/rory/back.svg",
  25190. extra: 1805/1690,
  25191. bottom: 56/1861
  25192. },
  25193. form: "normal"
  25194. },
  25195. frontDressed: {
  25196. height: math.unit(5 + 4/12, "feet"),
  25197. weight: math.unit(125, "lb"),
  25198. name: "Front (Dressed)",
  25199. image: {
  25200. source: "./media/characters/rory/front-dressed.svg",
  25201. extra: 1790/1681,
  25202. bottom: 66/1856
  25203. },
  25204. form: "normal"
  25205. },
  25206. backDressed: {
  25207. height: math.unit(5 + 4/12, "feet"),
  25208. weight: math.unit(125, "lb"),
  25209. name: "Back (Dressed)",
  25210. image: {
  25211. source: "./media/characters/rory/back-dressed.svg",
  25212. extra: 1805/1690,
  25213. bottom: 56/1861
  25214. },
  25215. form: "normal"
  25216. },
  25217. frontNsfw: {
  25218. height: math.unit(5 + 4/12, "feet"),
  25219. weight: math.unit(125, "lb"),
  25220. name: "Front (NSFW)",
  25221. image: {
  25222. source: "./media/characters/rory/front-nsfw.svg",
  25223. extra: 1790/1681,
  25224. bottom: 66/1856
  25225. },
  25226. form: "normal"
  25227. },
  25228. backNsfw: {
  25229. height: math.unit(5 + 4/12, "feet"),
  25230. weight: math.unit(125, "lb"),
  25231. name: "Back (NSFW)",
  25232. image: {
  25233. source: "./media/characters/rory/back-nsfw.svg",
  25234. extra: 1805/1690,
  25235. bottom: 56/1861
  25236. },
  25237. form: "normal"
  25238. },
  25239. dick: {
  25240. height: math.unit(0.8, "feet"),
  25241. name: "Dick",
  25242. image: {
  25243. source: "./media/characters/rory/dick.svg"
  25244. },
  25245. form: "normal"
  25246. },
  25247. thicc_front: {
  25248. height: math.unit(5 + 4/12, "feet"),
  25249. weight: math.unit(195, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/rory/thicc-front.svg",
  25253. extra: 1220/1100,
  25254. bottom: 103/1323
  25255. },
  25256. form: "thicc",
  25257. default: true
  25258. },
  25259. thicc_back: {
  25260. height: math.unit(5 + 4/12, "feet"),
  25261. weight: math.unit(195, "lb"),
  25262. name: "Back",
  25263. image: {
  25264. source: "./media/characters/rory/thicc-back.svg",
  25265. extra: 1166/1086,
  25266. bottom: 35/1201
  25267. },
  25268. form: "thicc"
  25269. },
  25270. },
  25271. [
  25272. {
  25273. name: "Micro",
  25274. height: math.unit(3, "inches"),
  25275. allForms: true
  25276. },
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(5 + 4/12, "feet"),
  25280. allForms: true,
  25281. default: true
  25282. },
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(90, "feet"),
  25286. allForms: true
  25287. },
  25288. {
  25289. name: "Supercharged",
  25290. height: math.unit(270, "feet"),
  25291. allForms: true
  25292. },
  25293. ],
  25294. {
  25295. "normal": {
  25296. name: "Normal",
  25297. default: true
  25298. },
  25299. "thicc": {
  25300. name: "Thicc",
  25301. },
  25302. }
  25303. ))
  25304. characterMakers.push(() => makeCharacter(
  25305. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25306. {
  25307. front: {
  25308. height: math.unit(5 + 9 / 12, "feet"),
  25309. weight: math.unit(190, "lb"),
  25310. name: "Front",
  25311. image: {
  25312. source: "./media/characters/sprisk/front.svg",
  25313. extra: 1225 / 1180,
  25314. bottom: 42.7 / 1266.4
  25315. }
  25316. },
  25317. frontNsfw: {
  25318. height: math.unit(5 + 9 / 12, "feet"),
  25319. weight: math.unit(190, "lb"),
  25320. name: "Front (NSFW)",
  25321. image: {
  25322. source: "./media/characters/sprisk/front-nsfw.svg",
  25323. extra: 1225 / 1180,
  25324. bottom: 42.7 / 1266.4
  25325. }
  25326. },
  25327. back: {
  25328. height: math.unit(5 + 9 / 12, "feet"),
  25329. weight: math.unit(190, "lb"),
  25330. name: "Back",
  25331. image: {
  25332. source: "./media/characters/sprisk/back.svg",
  25333. extra: 1247 / 1200,
  25334. bottom: 5.6 / 1253.04
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Tiny",
  25341. height: math.unit(2, "inches")
  25342. },
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(5 + 9 / 12, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Mini Macro",
  25350. height: math.unit(18, "feet")
  25351. },
  25352. {
  25353. name: "Macro",
  25354. height: math.unit(100, "feet")
  25355. },
  25356. {
  25357. name: "MACRO",
  25358. height: math.unit(50, "miles")
  25359. },
  25360. {
  25361. name: "M A C R O",
  25362. height: math.unit(300, "miles")
  25363. },
  25364. ]
  25365. ))
  25366. characterMakers.push(() => makeCharacter(
  25367. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25368. {
  25369. side: {
  25370. height: math.unit(15.6, "meters"),
  25371. weight: math.unit(700000, "kg"),
  25372. name: "Side",
  25373. image: {
  25374. source: "./media/characters/bunsen/side.svg",
  25375. extra: 1644 / 358
  25376. }
  25377. },
  25378. foot: {
  25379. height: math.unit(1.611 * 1644 / 358, "meter"),
  25380. name: "Foot",
  25381. image: {
  25382. source: "./media/characters/bunsen/foot.svg"
  25383. }
  25384. },
  25385. },
  25386. [
  25387. {
  25388. name: "Small",
  25389. height: math.unit(10, "feet")
  25390. },
  25391. {
  25392. name: "Normal",
  25393. height: math.unit(15.6, "meters"),
  25394. default: true
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(4 + 11 / 12, "feet"),
  25403. weight: math.unit(140, "lb"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/sesh/front.svg",
  25407. extra: 3420 / 3231,
  25408. bottom: 72 / 3949.5
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(4 + 11 / 12, "feet")
  25416. },
  25417. {
  25418. name: "Grown",
  25419. height: math.unit(15, "feet"),
  25420. default: true
  25421. },
  25422. {
  25423. name: "Macro",
  25424. height: math.unit(1500, "feet")
  25425. },
  25426. {
  25427. name: "Megamacro",
  25428. height: math.unit(30, "miles")
  25429. },
  25430. {
  25431. name: "Continental",
  25432. height: math.unit(3000, "miles")
  25433. },
  25434. {
  25435. name: "Gravity Mass",
  25436. height: math.unit(300000, "miles")
  25437. },
  25438. {
  25439. name: "Planet Buster",
  25440. height: math.unit(30000000, "miles")
  25441. },
  25442. {
  25443. name: "Big",
  25444. height: math.unit(3000000000, "miles")
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(9, "feet"),
  25453. weight: math.unit(350, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/pepper/front.svg",
  25457. extra: 1448 / 1312,
  25458. bottom: 9.4 / 1457.88
  25459. }
  25460. },
  25461. back: {
  25462. height: math.unit(9, "feet"),
  25463. weight: math.unit(350, "lb"),
  25464. name: "Back",
  25465. image: {
  25466. source: "./media/characters/pepper/back.svg",
  25467. extra: 1423 / 1300,
  25468. bottom: 4.6 / 1429
  25469. }
  25470. },
  25471. maw: {
  25472. height: math.unit(0.932, "feet"),
  25473. name: "Maw",
  25474. image: {
  25475. source: "./media/characters/pepper/maw.svg"
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Normal",
  25482. height: math.unit(9, "feet"),
  25483. default: true
  25484. },
  25485. ]
  25486. ))
  25487. characterMakers.push(() => makeCharacter(
  25488. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25489. {
  25490. front: {
  25491. height: math.unit(6, "feet"),
  25492. weight: math.unit(150, "lb"),
  25493. name: "Front",
  25494. image: {
  25495. source: "./media/characters/maelstrom/front.svg",
  25496. extra: 2100 / 1883,
  25497. bottom: 94 / 2196.7
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Less Kaiju",
  25504. height: math.unit(200, "feet")
  25505. },
  25506. {
  25507. name: "Kaiju",
  25508. height: math.unit(400, "feet"),
  25509. default: true
  25510. },
  25511. {
  25512. name: "Kaiju-er",
  25513. height: math.unit(600, "feet")
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(6 + 5 / 12, "feet"),
  25522. weight: math.unit(180, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/lexir/front.svg",
  25526. extra: 180 / 172,
  25527. bottom: 12 / 192
  25528. }
  25529. },
  25530. back: {
  25531. height: math.unit(6 + 5 / 12, "feet"),
  25532. weight: math.unit(180, "lb"),
  25533. name: "Back",
  25534. image: {
  25535. source: "./media/characters/lexir/back.svg",
  25536. extra: 1273/1201,
  25537. bottom: 39/1312
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Very Smal",
  25544. height: math.unit(1, "nm")
  25545. },
  25546. {
  25547. name: "Normal",
  25548. height: math.unit(6 + 5 / 12, "feet"),
  25549. default: true
  25550. },
  25551. {
  25552. name: "Macro",
  25553. height: math.unit(1, "mile")
  25554. },
  25555. {
  25556. name: "Megamacro",
  25557. height: math.unit(50, "miles")
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(1.5, "meters"),
  25566. weight: math.unit(100, "lb"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/maksio/front.svg",
  25570. extra: 1549 / 1531,
  25571. bottom: 123.7 / 1674.5429
  25572. }
  25573. },
  25574. back: {
  25575. height: math.unit(1.5, "meters"),
  25576. weight: math.unit(100, "lb"),
  25577. name: "Back",
  25578. image: {
  25579. source: "./media/characters/maksio/back.svg",
  25580. extra: 1541 / 1509,
  25581. bottom: 97 / 1639
  25582. }
  25583. },
  25584. hand: {
  25585. height: math.unit(0.621, "feet"),
  25586. name: "Hand",
  25587. image: {
  25588. source: "./media/characters/maksio/hand.svg"
  25589. }
  25590. },
  25591. foot: {
  25592. height: math.unit(1.611, "feet"),
  25593. name: "Foot",
  25594. image: {
  25595. source: "./media/characters/maksio/foot.svg"
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Shrunken",
  25602. height: math.unit(10, "cm")
  25603. },
  25604. {
  25605. name: "Normal",
  25606. height: math.unit(150, "cm"),
  25607. default: true
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(100, "feet"),
  25616. name: "Front",
  25617. image: {
  25618. source: "./media/characters/erza-bear/front.svg",
  25619. extra: 2449 / 2390,
  25620. bottom: 46 / 2494
  25621. }
  25622. },
  25623. back: {
  25624. height: math.unit(100, "feet"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/erza-bear/back.svg",
  25628. extra: 2489 / 2430,
  25629. bottom: 85.4 / 2480
  25630. }
  25631. },
  25632. tail: {
  25633. height: math.unit(42, "feet"),
  25634. name: "Tail",
  25635. image: {
  25636. source: "./media/characters/erza-bear/tail.svg"
  25637. }
  25638. },
  25639. tongue: {
  25640. height: math.unit(8, "feet"),
  25641. name: "Tongue",
  25642. image: {
  25643. source: "./media/characters/erza-bear/tongue.svg"
  25644. }
  25645. },
  25646. dick: {
  25647. height: math.unit(10.5, "feet"),
  25648. name: "Dick",
  25649. image: {
  25650. source: "./media/characters/erza-bear/dick.svg"
  25651. }
  25652. },
  25653. dickVertical: {
  25654. height: math.unit(16.9, "feet"),
  25655. name: "Dick (Vertical)",
  25656. image: {
  25657. source: "./media/characters/erza-bear/dick-vertical.svg"
  25658. }
  25659. },
  25660. },
  25661. [
  25662. {
  25663. name: "Macro",
  25664. height: math.unit(100, "feet"),
  25665. default: true
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(172, "cm"),
  25674. weight: math.unit(73, "kg"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/violet-flor/front.svg",
  25678. extra: 1530 / 1442,
  25679. bottom: 61.9 / 1588.8
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(180, "cm"),
  25684. weight: math.unit(73, "kg"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/violet-flor/back.svg",
  25688. extra: 1692 / 1630,
  25689. bottom: 20 / 1712
  25690. }
  25691. },
  25692. },
  25693. [
  25694. {
  25695. name: "Normal",
  25696. height: math.unit(172, "cm"),
  25697. default: true
  25698. },
  25699. ]
  25700. ))
  25701. characterMakers.push(() => makeCharacter(
  25702. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25703. {
  25704. front: {
  25705. height: math.unit(6, "feet"),
  25706. weight: math.unit(220, "lb"),
  25707. name: "Front",
  25708. image: {
  25709. source: "./media/characters/lynn-rhea/front.svg",
  25710. extra: 310 / 273
  25711. }
  25712. },
  25713. back: {
  25714. height: math.unit(6, "feet"),
  25715. weight: math.unit(220, "lb"),
  25716. name: "Back",
  25717. image: {
  25718. source: "./media/characters/lynn-rhea/back.svg",
  25719. extra: 310 / 273
  25720. }
  25721. },
  25722. dicks: {
  25723. height: math.unit(0.9, "feet"),
  25724. name: "Dicks",
  25725. image: {
  25726. source: "./media/characters/lynn-rhea/dicks.svg"
  25727. }
  25728. },
  25729. slit: {
  25730. height: math.unit(0.4, "feet"),
  25731. name: "Slit",
  25732. image: {
  25733. source: "./media/characters/lynn-rhea/slit.svg"
  25734. }
  25735. },
  25736. },
  25737. [
  25738. {
  25739. name: "Micro",
  25740. height: math.unit(1, "inch")
  25741. },
  25742. {
  25743. name: "Macro",
  25744. height: math.unit(60, "feet"),
  25745. default: true
  25746. },
  25747. {
  25748. name: "Megamacro",
  25749. height: math.unit(2, "miles")
  25750. },
  25751. {
  25752. name: "Gigamacro",
  25753. height: math.unit(3, "earths")
  25754. },
  25755. {
  25756. name: "Galactic",
  25757. height: math.unit(0.8, "galaxies")
  25758. },
  25759. ]
  25760. ))
  25761. characterMakers.push(() => makeCharacter(
  25762. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25763. {
  25764. front: {
  25765. height: math.unit(1600, "feet"),
  25766. weight: math.unit(85758785169, "kg"),
  25767. name: "Front",
  25768. image: {
  25769. source: "./media/characters/valathos/front.svg",
  25770. extra: 1451 / 1339
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(1600, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(7 + 5 / 12, "feet"),
  25787. weight: math.unit(300, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/azula/front.svg",
  25791. extra: 3208 / 2880,
  25792. bottom: 80.2 / 3277
  25793. }
  25794. },
  25795. back: {
  25796. height: math.unit(7 + 5 / 12, "feet"),
  25797. weight: math.unit(300, "lb"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/azula/back.svg",
  25801. extra: 3169 / 2822,
  25802. bottom: 150.6 / 3321
  25803. }
  25804. },
  25805. },
  25806. [
  25807. {
  25808. name: "Normal",
  25809. height: math.unit(7 + 5 / 12, "feet"),
  25810. default: true
  25811. },
  25812. {
  25813. name: "Big",
  25814. height: math.unit(20, "feet")
  25815. },
  25816. ]
  25817. ))
  25818. characterMakers.push(() => makeCharacter(
  25819. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25820. {
  25821. front: {
  25822. height: math.unit(5 + 1 / 12, "feet"),
  25823. weight: math.unit(110, "lb"),
  25824. name: "Front",
  25825. image: {
  25826. source: "./media/characters/rupert/front.svg",
  25827. extra: 1549 / 1495,
  25828. bottom: 54.2 / 1604.4
  25829. }
  25830. },
  25831. },
  25832. [
  25833. {
  25834. name: "Normal",
  25835. height: math.unit(5 + 1 / 12, "feet"),
  25836. default: true
  25837. },
  25838. ]
  25839. ))
  25840. characterMakers.push(() => makeCharacter(
  25841. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25842. {
  25843. front: {
  25844. height: math.unit(8 + 4 / 12, "feet"),
  25845. weight: math.unit(350, "lb"),
  25846. name: "Front",
  25847. image: {
  25848. source: "./media/characters/sheera-castellar/front.svg",
  25849. extra: 1957 / 1894,
  25850. bottom: 26.97 / 1975.017
  25851. }
  25852. },
  25853. side: {
  25854. height: math.unit(8 + 4 / 12, "feet"),
  25855. weight: math.unit(350, "lb"),
  25856. name: "Side",
  25857. image: {
  25858. source: "./media/characters/sheera-castellar/side.svg",
  25859. extra: 1957 / 1894
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(8 + 4 / 12, "feet"),
  25864. weight: math.unit(350, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/sheera-castellar/back.svg",
  25868. extra: 1957 / 1894
  25869. }
  25870. },
  25871. angled: {
  25872. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25873. weight: math.unit(350, "lb"),
  25874. name: "Angled",
  25875. image: {
  25876. source: "./media/characters/sheera-castellar/angled.svg",
  25877. extra: 1807 / 1707,
  25878. bottom: 68 / 1875
  25879. }
  25880. },
  25881. genitals: {
  25882. height: math.unit(2.2, "feet"),
  25883. name: "Genitals",
  25884. image: {
  25885. source: "./media/characters/sheera-castellar/genitals.svg"
  25886. }
  25887. },
  25888. taur: {
  25889. height: math.unit(10 + 6/12, "feet"),
  25890. name: "Taur",
  25891. image: {
  25892. source: "./media/characters/sheera-castellar/taur.svg",
  25893. extra: 2017/1909,
  25894. bottom: 185/2202
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Normal",
  25901. height: math.unit(8 + 4 / 12, "feet")
  25902. },
  25903. {
  25904. name: "Macro",
  25905. height: math.unit(150, "feet"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Macro+",
  25910. height: math.unit(800, "feet")
  25911. },
  25912. ]
  25913. ))
  25914. characterMakers.push(() => makeCharacter(
  25915. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25916. {
  25917. front: {
  25918. height: math.unit(6, "feet"),
  25919. weight: math.unit(150, "lb"),
  25920. name: "Front",
  25921. image: {
  25922. source: "./media/characters/jaipur/front.svg",
  25923. extra: 3860 / 3731,
  25924. bottom: 287 / 4140
  25925. }
  25926. },
  25927. back: {
  25928. height: math.unit(6, "feet"),
  25929. weight: math.unit(150, "lb"),
  25930. name: "Back",
  25931. image: {
  25932. source: "./media/characters/jaipur/back.svg",
  25933. extra: 1637/1561,
  25934. bottom: 154/1791
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(1.85, "meters"),
  25942. default: true
  25943. },
  25944. {
  25945. name: "Macro",
  25946. height: math.unit(150, "meters")
  25947. },
  25948. {
  25949. name: "Macro+",
  25950. height: math.unit(0.5, "miles")
  25951. },
  25952. {
  25953. name: "Macro++",
  25954. height: math.unit(2.5, "miles")
  25955. },
  25956. {
  25957. name: "Macro+++",
  25958. height: math.unit(12, "miles")
  25959. },
  25960. {
  25961. name: "Macro++++",
  25962. height: math.unit(120, "miles")
  25963. },
  25964. {
  25965. name: "Macro+++++",
  25966. height: math.unit(1200, "miles")
  25967. },
  25968. ]
  25969. ))
  25970. characterMakers.push(() => makeCharacter(
  25971. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25972. {
  25973. front: {
  25974. height: math.unit(6, "feet"),
  25975. weight: math.unit(150, "lb"),
  25976. name: "Front",
  25977. image: {
  25978. source: "./media/characters/sheila-wolf/front.svg",
  25979. extra: 1931 / 1808,
  25980. bottom: 29.5 / 1960
  25981. }
  25982. },
  25983. dick: {
  25984. height: math.unit(1.464, "feet"),
  25985. name: "Dick",
  25986. image: {
  25987. source: "./media/characters/sheila-wolf/dick.svg"
  25988. }
  25989. },
  25990. muzzle: {
  25991. height: math.unit(0.513, "feet"),
  25992. name: "Muzzle",
  25993. image: {
  25994. source: "./media/characters/sheila-wolf/muzzle.svg"
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Macro",
  26001. height: math.unit(70, "feet"),
  26002. default: true
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26008. {
  26009. front: {
  26010. height: math.unit(32, "meters"),
  26011. weight: math.unit(300000, "kg"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/almor/front.svg",
  26015. extra: 1408 / 1322,
  26016. bottom: 94.6 / 1506.5
  26017. }
  26018. },
  26019. },
  26020. [
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(32, "meters"),
  26024. default: true
  26025. },
  26026. ]
  26027. ))
  26028. characterMakers.push(() => makeCharacter(
  26029. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26030. {
  26031. front: {
  26032. height: math.unit(7, "feet"),
  26033. weight: math.unit(200, "lb"),
  26034. name: "Front",
  26035. image: {
  26036. source: "./media/characters/silver/front.svg",
  26037. extra: 472.1 / 450.5,
  26038. bottom: 26.5 / 499.424
  26039. }
  26040. },
  26041. },
  26042. [
  26043. {
  26044. name: "Normal",
  26045. height: math.unit(7, "feet"),
  26046. default: true
  26047. },
  26048. {
  26049. name: "Macro",
  26050. height: math.unit(800, "feet")
  26051. },
  26052. {
  26053. name: "Megamacro",
  26054. height: math.unit(250, "miles")
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26060. {
  26061. front: {
  26062. height: math.unit(6, "feet"),
  26063. weight: math.unit(150, "lb"),
  26064. name: "Front",
  26065. image: {
  26066. source: "./media/characters/pliskin/front.svg",
  26067. extra: 1469 / 1359,
  26068. bottom: 70 / 1540
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Micro",
  26075. height: math.unit(3, "inches")
  26076. },
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(5 + 11 / 12, "feet"),
  26080. default: true
  26081. },
  26082. {
  26083. name: "Macro",
  26084. height: math.unit(120, "feet")
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(6, "feet"),
  26093. weight: math.unit(150, "lb"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/sammy/front.svg",
  26097. extra: 1193 / 1089,
  26098. bottom: 30.5 / 1226
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Macro",
  26105. height: math.unit(1700, "feet"),
  26106. default: true
  26107. },
  26108. {
  26109. name: "Examacro",
  26110. height: math.unit(2.5e9, "lightyears")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(21, "meters"),
  26119. weight: math.unit(12, "tonnes"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/kuru/front.svg",
  26123. extra: 4301 / 3785,
  26124. bottom: 371.3 / 4691
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Macro",
  26131. height: math.unit(21, "meters"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(23, "meters"),
  26141. weight: math.unit(12.2, "tonnes"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/rakka/front.svg",
  26145. extra: 4670 / 4169,
  26146. bottom: 301 / 4968.7
  26147. }
  26148. },
  26149. },
  26150. [
  26151. {
  26152. name: "Macro",
  26153. height: math.unit(23, "meters"),
  26154. default: true
  26155. },
  26156. ]
  26157. ))
  26158. characterMakers.push(() => makeCharacter(
  26159. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26160. {
  26161. front: {
  26162. height: math.unit(6, "feet"),
  26163. weight: math.unit(150, "lb"),
  26164. name: "Front",
  26165. image: {
  26166. source: "./media/characters/rhys-feline/front.svg",
  26167. extra: 2488 / 2308,
  26168. bottom: 35.67 / 2519.19
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Really Small",
  26175. height: math.unit(1, "nm")
  26176. },
  26177. {
  26178. name: "Micro",
  26179. height: math.unit(4, "inches")
  26180. },
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(4 + 10 / 12, "feet"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Macro",
  26188. height: math.unit(100, "feet")
  26189. },
  26190. {
  26191. name: "Megamacto",
  26192. height: math.unit(50, "miles")
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26198. {
  26199. side: {
  26200. height: math.unit(30, "feet"),
  26201. weight: math.unit(35000, "kg"),
  26202. name: "Side",
  26203. image: {
  26204. source: "./media/characters/alydar/side.svg",
  26205. extra: 234 / 222,
  26206. bottom: 6.5 / 241
  26207. }
  26208. },
  26209. front: {
  26210. height: math.unit(30, "feet"),
  26211. weight: math.unit(35000, "kg"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/alydar/front.svg",
  26215. extra: 223.37 / 210.2,
  26216. bottom: 22.3 / 246.76
  26217. }
  26218. },
  26219. top: {
  26220. height: math.unit(64.54, "feet"),
  26221. weight: math.unit(35000, "kg"),
  26222. name: "Top",
  26223. image: {
  26224. source: "./media/characters/alydar/top.svg"
  26225. }
  26226. },
  26227. anthro: {
  26228. height: math.unit(30, "feet"),
  26229. weight: math.unit(9000, "kg"),
  26230. name: "Anthro",
  26231. image: {
  26232. source: "./media/characters/alydar/anthro.svg",
  26233. extra: 432 / 421,
  26234. bottom: 7.18 / 440
  26235. }
  26236. },
  26237. maw: {
  26238. height: math.unit(11.693, "feet"),
  26239. name: "Maw",
  26240. image: {
  26241. source: "./media/characters/alydar/maw.svg"
  26242. }
  26243. },
  26244. head: {
  26245. height: math.unit(11.693, "feet"),
  26246. name: "Head",
  26247. image: {
  26248. source: "./media/characters/alydar/head.svg"
  26249. }
  26250. },
  26251. headAlt: {
  26252. height: math.unit(12.861, "feet"),
  26253. name: "Head (Alt)",
  26254. image: {
  26255. source: "./media/characters/alydar/head-alt.svg"
  26256. }
  26257. },
  26258. wing: {
  26259. height: math.unit(20.712, "feet"),
  26260. name: "Wing",
  26261. image: {
  26262. source: "./media/characters/alydar/wing.svg"
  26263. }
  26264. },
  26265. wingFeather: {
  26266. height: math.unit(9.662, "feet"),
  26267. name: "Wing Feather",
  26268. image: {
  26269. source: "./media/characters/alydar/wing-feather.svg"
  26270. }
  26271. },
  26272. countourFeather: {
  26273. height: math.unit(4.154, "feet"),
  26274. name: "Contour Feather",
  26275. image: {
  26276. source: "./media/characters/alydar/contour-feather.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Diplomatic",
  26283. height: math.unit(13, "feet"),
  26284. default: true
  26285. },
  26286. {
  26287. name: "Small",
  26288. height: math.unit(30, "feet")
  26289. },
  26290. {
  26291. name: "Normal",
  26292. height: math.unit(95, "feet"),
  26293. default: true
  26294. },
  26295. {
  26296. name: "Large",
  26297. height: math.unit(285, "feet")
  26298. },
  26299. {
  26300. name: "Incomprehensible",
  26301. height: math.unit(450, "megameters")
  26302. },
  26303. ]
  26304. ))
  26305. characterMakers.push(() => makeCharacter(
  26306. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26307. {
  26308. side: {
  26309. height: math.unit(11, "feet"),
  26310. weight: math.unit(1750, "kg"),
  26311. name: "Side",
  26312. image: {
  26313. source: "./media/characters/selicia/side.svg",
  26314. extra: 440 / 396,
  26315. bottom: 24.8 / 465.979
  26316. }
  26317. },
  26318. maw: {
  26319. height: math.unit(4.665, "feet"),
  26320. name: "Maw",
  26321. image: {
  26322. source: "./media/characters/selicia/maw.svg"
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(11, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26336. {
  26337. side: {
  26338. height: math.unit(2 + 6 / 12, "feet"),
  26339. weight: math.unit(30, "lb"),
  26340. name: "Side",
  26341. image: {
  26342. source: "./media/characters/layla/side.svg",
  26343. extra: 244 / 188,
  26344. bottom: 18.2 / 262.1
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(2 + 6 / 12, "feet"),
  26349. weight: math.unit(30, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/layla/back.svg",
  26353. extra: 308 / 241.5,
  26354. bottom: 8.9 / 316.8
  26355. }
  26356. },
  26357. cumming: {
  26358. height: math.unit(2 + 6 / 12, "feet"),
  26359. weight: math.unit(30, "lb"),
  26360. name: "Cumming",
  26361. image: {
  26362. source: "./media/characters/layla/cumming.svg",
  26363. extra: 342 / 279,
  26364. bottom: 595 / 938
  26365. }
  26366. },
  26367. dickFlaccid: {
  26368. height: math.unit(2.595, "feet"),
  26369. name: "Flaccid Genitals",
  26370. image: {
  26371. source: "./media/characters/layla/dick-flaccid.svg"
  26372. }
  26373. },
  26374. dickErect: {
  26375. height: math.unit(2.359, "feet"),
  26376. name: "Erect Genitals",
  26377. image: {
  26378. source: "./media/characters/layla/dick-erect.svg"
  26379. }
  26380. },
  26381. dragon: {
  26382. height: math.unit(40, "feet"),
  26383. name: "Dragon",
  26384. image: {
  26385. source: "./media/characters/layla/dragon.svg",
  26386. extra: 610/535,
  26387. bottom: 367/977
  26388. }
  26389. },
  26390. taur: {
  26391. height: math.unit(30, "feet"),
  26392. name: "Taur",
  26393. image: {
  26394. source: "./media/characters/layla/taur.svg",
  26395. extra: 1268/1199,
  26396. bottom: 112/1380
  26397. }
  26398. },
  26399. },
  26400. [
  26401. {
  26402. name: "Micro",
  26403. height: math.unit(1, "inch")
  26404. },
  26405. {
  26406. name: "Small",
  26407. height: math.unit(1, "foot")
  26408. },
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(2 + 6 / 12, "feet"),
  26412. default: true
  26413. },
  26414. {
  26415. name: "Macro",
  26416. height: math.unit(200, "feet")
  26417. },
  26418. {
  26419. name: "Megamacro",
  26420. height: math.unit(1000, "miles")
  26421. },
  26422. {
  26423. name: "Planetary",
  26424. height: math.unit(8000, "miles")
  26425. },
  26426. {
  26427. name: "True Layla",
  26428. height: math.unit(200000 * 7, "multiverses")
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26434. {
  26435. back: {
  26436. height: math.unit(10.5, "feet"),
  26437. weight: math.unit(800, "lb"),
  26438. name: "Back",
  26439. image: {
  26440. source: "./media/characters/knox/back.svg",
  26441. extra: 1486 / 1089,
  26442. bottom: 107 / 1601.4
  26443. }
  26444. },
  26445. side: {
  26446. height: math.unit(10.5, "feet"),
  26447. weight: math.unit(800, "lb"),
  26448. name: "Side",
  26449. image: {
  26450. source: "./media/characters/knox/side.svg",
  26451. extra: 244 / 218,
  26452. bottom: 14 / 260
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Compact",
  26459. height: math.unit(10.5, "feet"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Dynamax",
  26464. height: math.unit(210, "feet")
  26465. },
  26466. {
  26467. name: "Full Macro",
  26468. height: math.unit(850, "feet")
  26469. },
  26470. ]
  26471. ))
  26472. characterMakers.push(() => makeCharacter(
  26473. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26474. {
  26475. front: {
  26476. height: math.unit(28, "feet"),
  26477. weight: math.unit(10500, "lb"),
  26478. name: "Front",
  26479. image: {
  26480. source: "./media/characters/kayda/front.svg",
  26481. extra: 1536 / 1428,
  26482. bottom: 68.7 / 1603
  26483. }
  26484. },
  26485. back: {
  26486. height: math.unit(28, "feet"),
  26487. weight: math.unit(10500, "lb"),
  26488. name: "Back",
  26489. image: {
  26490. source: "./media/characters/kayda/back.svg",
  26491. extra: 1557 / 1464,
  26492. bottom: 39.5 / 1597.49
  26493. }
  26494. },
  26495. dick: {
  26496. height: math.unit(3.858, "feet"),
  26497. name: "Dick",
  26498. image: {
  26499. source: "./media/characters/kayda/dick.svg"
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Macro",
  26506. height: math.unit(28, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(10 + 11 / 12, "feet"),
  26516. weight: math.unit(1400, "lb"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/brian/front.svg",
  26520. extra: 737 / 692,
  26521. bottom: 55.4 / 785
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(10 + 11 / 12, "feet"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26535. {
  26536. front: {
  26537. height: math.unit(5 + 8 / 12, "feet"),
  26538. weight: math.unit(140, "lb"),
  26539. name: "Front",
  26540. image: {
  26541. source: "./media/characters/khemri/front.svg",
  26542. extra: 4780 / 4059,
  26543. bottom: 80.1 / 4859.25
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Micro",
  26550. height: math.unit(6, "inches")
  26551. },
  26552. {
  26553. name: "Normal",
  26554. height: math.unit(5 + 8 / 12, "feet"),
  26555. default: true
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26561. {
  26562. front: {
  26563. height: math.unit(13, "feet"),
  26564. weight: math.unit(1700, "lb"),
  26565. name: "Front",
  26566. image: {
  26567. source: "./media/characters/felix-braveheart/front.svg",
  26568. extra: 1222 / 1157,
  26569. bottom: 53.2 / 1280
  26570. }
  26571. },
  26572. back: {
  26573. height: math.unit(13, "feet"),
  26574. weight: math.unit(1700, "lb"),
  26575. name: "Back",
  26576. image: {
  26577. source: "./media/characters/felix-braveheart/back.svg",
  26578. extra: 1277 / 1203,
  26579. bottom: 50.2 / 1327
  26580. }
  26581. },
  26582. feral: {
  26583. height: math.unit(6, "feet"),
  26584. weight: math.unit(400, "lb"),
  26585. name: "Feral",
  26586. image: {
  26587. source: "./media/characters/felix-braveheart/feral.svg",
  26588. extra: 682 / 625,
  26589. bottom: 6.9 / 688
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(13, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26603. {
  26604. side: {
  26605. height: math.unit(5 + 11 / 12, "feet"),
  26606. weight: math.unit(1400, "lb"),
  26607. name: "Side",
  26608. image: {
  26609. source: "./media/characters/shadow-blade/side.svg",
  26610. extra: 1726 / 1267,
  26611. bottom: 58.4 / 1785
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(5 + 11 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(1 + 6 / 12, "feet"),
  26628. weight: math.unit(25, "lb"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/karla-halldor/front.svg",
  26632. extra: 1459 / 1383,
  26633. bottom: 12 / 1472
  26634. }
  26635. },
  26636. },
  26637. [
  26638. {
  26639. name: "Normal",
  26640. height: math.unit(1 + 6 / 12, "feet"),
  26641. default: true
  26642. },
  26643. ]
  26644. ))
  26645. characterMakers.push(() => makeCharacter(
  26646. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26647. {
  26648. front: {
  26649. height: math.unit(6 + 2 / 12, "feet"),
  26650. weight: math.unit(160, "lb"),
  26651. name: "Front",
  26652. image: {
  26653. source: "./media/characters/ariam/front.svg",
  26654. extra: 1073/976,
  26655. bottom: 52/1125
  26656. }
  26657. },
  26658. back: {
  26659. height: math.unit(6 + 2/12, "feet"),
  26660. weight: math.unit(160, "lb"),
  26661. name: "Back",
  26662. image: {
  26663. source: "./media/characters/ariam/back.svg",
  26664. extra: 1103/1023,
  26665. bottom: 9/1112
  26666. }
  26667. },
  26668. dressed: {
  26669. height: math.unit(6 + 2/12, "feet"),
  26670. weight: math.unit(160, "lb"),
  26671. name: "Dressed",
  26672. image: {
  26673. source: "./media/characters/ariam/dressed.svg",
  26674. extra: 1099/1009,
  26675. bottom: 25/1124
  26676. }
  26677. },
  26678. squatting: {
  26679. height: math.unit(4.1, "feet"),
  26680. weight: math.unit(160, "lb"),
  26681. name: "Squatting",
  26682. image: {
  26683. source: "./media/characters/ariam/squatting.svg",
  26684. extra: 2617 / 2112,
  26685. bottom: 61.2 / 2681,
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(6 + 2 / 12, "feet"),
  26693. default: true
  26694. },
  26695. {
  26696. name: "Normal+",
  26697. height: math.unit(4, "meters")
  26698. },
  26699. {
  26700. name: "Macro",
  26701. height: math.unit(50, "meters")
  26702. },
  26703. {
  26704. name: "Macro+",
  26705. height: math.unit(100, "meters")
  26706. },
  26707. {
  26708. name: "Megamacro",
  26709. height: math.unit(20, "km")
  26710. },
  26711. {
  26712. name: "Caretaker",
  26713. height: math.unit(444, "megameters")
  26714. },
  26715. ]
  26716. ))
  26717. characterMakers.push(() => makeCharacter(
  26718. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26719. {
  26720. front: {
  26721. height: math.unit(1.67, "meters"),
  26722. weight: math.unit(140, "lb"),
  26723. name: "Front",
  26724. image: {
  26725. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26726. extra: 438 / 410,
  26727. bottom: 0.75 / 439
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Shrunken",
  26734. height: math.unit(7.6, "cm")
  26735. },
  26736. {
  26737. name: "Human Scale",
  26738. height: math.unit(1.67, "meters")
  26739. },
  26740. {
  26741. name: "Wolxi Scale",
  26742. height: math.unit(36.7, "meters"),
  26743. default: true
  26744. },
  26745. ]
  26746. ))
  26747. characterMakers.push(() => makeCharacter(
  26748. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26749. {
  26750. front: {
  26751. height: math.unit(1.73, "meters"),
  26752. weight: math.unit(240, "lb"),
  26753. name: "Front",
  26754. image: {
  26755. source: "./media/characters/izue-two-mothers/front.svg",
  26756. extra: 469 / 437,
  26757. bottom: 1.24 / 470.6
  26758. }
  26759. },
  26760. },
  26761. [
  26762. {
  26763. name: "Shrunken",
  26764. height: math.unit(7.86, "cm")
  26765. },
  26766. {
  26767. name: "Human Scale",
  26768. height: math.unit(1.73, "meters")
  26769. },
  26770. {
  26771. name: "Wolxi Scale",
  26772. height: math.unit(38, "meters"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(1.55, "meters"),
  26782. weight: math.unit(120, "lb"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/teeku-love-shack/front.svg",
  26786. extra: 387 / 362,
  26787. bottom: 1.51 / 388
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Shrunken",
  26794. height: math.unit(7, "cm")
  26795. },
  26796. {
  26797. name: "Human Scale",
  26798. height: math.unit(1.55, "meters")
  26799. },
  26800. {
  26801. name: "Wolxi Scale",
  26802. height: math.unit(34.1, "meters"),
  26803. default: true
  26804. },
  26805. ]
  26806. ))
  26807. characterMakers.push(() => makeCharacter(
  26808. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26809. {
  26810. front: {
  26811. height: math.unit(1.83, "meters"),
  26812. weight: math.unit(135, "lb"),
  26813. name: "Front",
  26814. image: {
  26815. source: "./media/characters/dejma-the-red/front.svg",
  26816. extra: 480 / 458,
  26817. bottom: 1.8 / 482
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Shrunken",
  26824. height: math.unit(8.3, "cm")
  26825. },
  26826. {
  26827. name: "Human Scale",
  26828. height: math.unit(1.83, "meters")
  26829. },
  26830. {
  26831. name: "Wolxi Scale",
  26832. height: math.unit(40, "meters"),
  26833. default: true
  26834. },
  26835. ]
  26836. ))
  26837. characterMakers.push(() => makeCharacter(
  26838. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26839. {
  26840. front: {
  26841. height: math.unit(1.78, "meters"),
  26842. weight: math.unit(65, "kg"),
  26843. name: "Front",
  26844. image: {
  26845. source: "./media/characters/aki/front.svg",
  26846. extra: 452 / 415
  26847. }
  26848. },
  26849. frontNsfw: {
  26850. height: math.unit(1.78, "meters"),
  26851. weight: math.unit(65, "kg"),
  26852. name: "Front (NSFW)",
  26853. image: {
  26854. source: "./media/characters/aki/front-nsfw.svg",
  26855. extra: 452 / 415
  26856. }
  26857. },
  26858. back: {
  26859. height: math.unit(1.78, "meters"),
  26860. weight: math.unit(65, "kg"),
  26861. name: "Back",
  26862. image: {
  26863. source: "./media/characters/aki/back.svg",
  26864. extra: 452 / 415
  26865. }
  26866. },
  26867. rump: {
  26868. height: math.unit(2.05, "feet"),
  26869. name: "Rump",
  26870. image: {
  26871. source: "./media/characters/aki/rump.svg"
  26872. }
  26873. },
  26874. dick: {
  26875. height: math.unit(0.95, "feet"),
  26876. name: "Dick",
  26877. image: {
  26878. source: "./media/characters/aki/dick.svg"
  26879. }
  26880. },
  26881. },
  26882. [
  26883. {
  26884. name: "Micro",
  26885. height: math.unit(15, "cm")
  26886. },
  26887. {
  26888. name: "Normal",
  26889. height: math.unit(178, "cm"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Macro",
  26894. height: math.unit(214, "m")
  26895. },
  26896. {
  26897. name: "Macro+",
  26898. height: math.unit(534, "m")
  26899. },
  26900. ]
  26901. ))
  26902. characterMakers.push(() => makeCharacter(
  26903. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26904. {
  26905. front: {
  26906. height: math.unit(5 + 5 / 12, "feet"),
  26907. weight: math.unit(120, "lb"),
  26908. name: "Front",
  26909. image: {
  26910. source: "./media/characters/ari/front.svg",
  26911. extra: 1550/1471,
  26912. bottom: 39/1589
  26913. }
  26914. },
  26915. },
  26916. [
  26917. {
  26918. name: "Normal",
  26919. height: math.unit(5 + 5 / 12, "feet")
  26920. },
  26921. {
  26922. name: "Macro",
  26923. height: math.unit(100, "feet"),
  26924. default: true
  26925. },
  26926. {
  26927. name: "Megamacro",
  26928. height: math.unit(100, "miles")
  26929. },
  26930. {
  26931. name: "Gigamacro",
  26932. height: math.unit(80000, "miles")
  26933. },
  26934. ]
  26935. ))
  26936. characterMakers.push(() => makeCharacter(
  26937. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26938. {
  26939. side: {
  26940. height: math.unit(9, "feet"),
  26941. weight: math.unit(400, "kg"),
  26942. name: "Side",
  26943. image: {
  26944. source: "./media/characters/bolt/side.svg",
  26945. extra: 1126 / 896,
  26946. bottom: 60 / 1187.3,
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Micro",
  26953. height: math.unit(5, "inches")
  26954. },
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(9, "feet"),
  26958. default: true
  26959. },
  26960. {
  26961. name: "Macro",
  26962. height: math.unit(700, "feet")
  26963. },
  26964. {
  26965. name: "Max Size",
  26966. height: math.unit(1.52e22, "yottameters")
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26972. {
  26973. front: {
  26974. height: math.unit(4.3, "meters"),
  26975. weight: math.unit(3, "tons"),
  26976. name: "Front",
  26977. image: {
  26978. source: "./media/characters/draekon-sylviar/front.svg",
  26979. extra: 2072/1512,
  26980. bottom: 74/2146
  26981. }
  26982. },
  26983. back: {
  26984. height: math.unit(4.3, "meters"),
  26985. weight: math.unit(3, "tons"),
  26986. name: "Back",
  26987. image: {
  26988. source: "./media/characters/draekon-sylviar/back.svg",
  26989. extra: 1639/1483,
  26990. bottom: 41/1680
  26991. }
  26992. },
  26993. feral: {
  26994. height: math.unit(1.15, "meters"),
  26995. weight: math.unit(3, "tons"),
  26996. name: "Feral",
  26997. image: {
  26998. source: "./media/characters/draekon-sylviar/feral.svg",
  26999. extra: 1033/395,
  27000. bottom: 130/1163
  27001. }
  27002. },
  27003. maw: {
  27004. height: math.unit(1.3, "meters"),
  27005. name: "Maw",
  27006. image: {
  27007. source: "./media/characters/draekon-sylviar/maw.svg"
  27008. }
  27009. },
  27010. mawSeparated: {
  27011. height: math.unit(1.53, "meters"),
  27012. name: "Separated Maw",
  27013. image: {
  27014. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27015. }
  27016. },
  27017. tail: {
  27018. height: math.unit(1.15, "meters"),
  27019. name: "Tail",
  27020. image: {
  27021. source: "./media/characters/draekon-sylviar/tail.svg"
  27022. }
  27023. },
  27024. tailDick: {
  27025. height: math.unit(1.15, "meters"),
  27026. name: "Tail (Dick)",
  27027. image: {
  27028. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27029. }
  27030. },
  27031. tailDickSeparated: {
  27032. height: math.unit(1.19, "meters"),
  27033. name: "Tail (Separated Dick)",
  27034. image: {
  27035. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27036. }
  27037. },
  27038. slit: {
  27039. height: math.unit(1, "meters"),
  27040. name: "Slit",
  27041. image: {
  27042. source: "./media/characters/draekon-sylviar/slit.svg"
  27043. }
  27044. },
  27045. dick: {
  27046. height: math.unit(1.15, "meters"),
  27047. name: "Dick",
  27048. image: {
  27049. source: "./media/characters/draekon-sylviar/dick.svg"
  27050. }
  27051. },
  27052. dickSeparated: {
  27053. height: math.unit(1.1, "meters"),
  27054. name: "Separated Dick",
  27055. image: {
  27056. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27057. }
  27058. },
  27059. sheath: {
  27060. height: math.unit(1.15, "meters"),
  27061. name: "Sheath",
  27062. image: {
  27063. source: "./media/characters/draekon-sylviar/sheath.svg"
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Small",
  27070. height: math.unit(4.53 / 2, "meters"),
  27071. default: true
  27072. },
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(4.53, "meters"),
  27076. default: true
  27077. },
  27078. {
  27079. name: "Large",
  27080. height: math.unit(4.53 * 2, "meters"),
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(6 + 2 / 12, "feet"),
  27089. weight: math.unit(180, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/brawler/front.svg",
  27093. extra: 3301 / 3027,
  27094. bottom: 138 / 3439
  27095. }
  27096. },
  27097. },
  27098. [
  27099. {
  27100. name: "Normal",
  27101. height: math.unit(6 + 2 / 12, "feet"),
  27102. default: true
  27103. },
  27104. ]
  27105. ))
  27106. characterMakers.push(() => makeCharacter(
  27107. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27108. {
  27109. front: {
  27110. height: math.unit(11, "feet"),
  27111. weight: math.unit(1000, "lb"),
  27112. name: "Front",
  27113. image: {
  27114. source: "./media/characters/alex/front.svg",
  27115. bottom: 44.5 / 620
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Micro",
  27122. height: math.unit(5, "inches")
  27123. },
  27124. {
  27125. name: "Normal",
  27126. height: math.unit(11, "feet"),
  27127. default: true
  27128. },
  27129. {
  27130. name: "Macro",
  27131. height: math.unit(9.5e9, "feet")
  27132. },
  27133. {
  27134. name: "Max Size",
  27135. height: math.unit(1.4e283, "yottameters")
  27136. },
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27141. {
  27142. female: {
  27143. height: math.unit(29.9, "m"),
  27144. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27145. name: "Female",
  27146. image: {
  27147. source: "./media/characters/zenari/female.svg",
  27148. extra: 3281.6 / 3217,
  27149. bottom: 72.2 / 3353
  27150. }
  27151. },
  27152. male: {
  27153. height: math.unit(27.7, "m"),
  27154. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27155. name: "Male",
  27156. image: {
  27157. source: "./media/characters/zenari/male.svg",
  27158. extra: 3008 / 2991,
  27159. bottom: 54.6 / 3069
  27160. }
  27161. },
  27162. },
  27163. [
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(29.7, "meters"),
  27167. default: true
  27168. },
  27169. ]
  27170. ))
  27171. characterMakers.push(() => makeCharacter(
  27172. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27173. {
  27174. female: {
  27175. height: math.unit(23.8, "m"),
  27176. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27177. name: "Female",
  27178. image: {
  27179. source: "./media/characters/mactarian/female.svg",
  27180. extra: 2662 / 2569,
  27181. bottom: 73 / 2736
  27182. }
  27183. },
  27184. male: {
  27185. height: math.unit(23.8, "m"),
  27186. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27187. name: "Male",
  27188. image: {
  27189. source: "./media/characters/mactarian/male.svg",
  27190. extra: 2673 / 2600,
  27191. bottom: 76 / 2750
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Macro",
  27198. height: math.unit(23.8, "meters"),
  27199. default: true
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27205. {
  27206. female: {
  27207. height: math.unit(19.3, "m"),
  27208. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27209. name: "Female",
  27210. image: {
  27211. source: "./media/characters/umok/female.svg",
  27212. extra: 2186 / 2078,
  27213. bottom: 87 / 2277
  27214. }
  27215. },
  27216. male: {
  27217. height: math.unit(19.5, "m"),
  27218. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27219. name: "Male",
  27220. image: {
  27221. source: "./media/characters/umok/male.svg",
  27222. extra: 2233 / 2140,
  27223. bottom: 24.4 / 2258
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Macro",
  27230. height: math.unit(19.3, "meters"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27237. {
  27238. female: {
  27239. height: math.unit(26.15, "m"),
  27240. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27241. name: "Female",
  27242. image: {
  27243. source: "./media/characters/joraxian/female.svg",
  27244. extra: 2912 / 2824,
  27245. bottom: 36 / 2956
  27246. }
  27247. },
  27248. male: {
  27249. height: math.unit(25.4, "m"),
  27250. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27251. name: "Male",
  27252. image: {
  27253. source: "./media/characters/joraxian/male.svg",
  27254. extra: 2877 / 2721,
  27255. bottom: 82 / 2967
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Macro",
  27262. height: math.unit(26.15, "meters"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27269. {
  27270. female: {
  27271. height: math.unit(21.6, "m"),
  27272. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27273. name: "Female",
  27274. image: {
  27275. source: "./media/characters/sthara/female.svg",
  27276. extra: 2516 / 2347,
  27277. bottom: 21.5 / 2537
  27278. }
  27279. },
  27280. male: {
  27281. height: math.unit(24, "m"),
  27282. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27283. name: "Male",
  27284. image: {
  27285. source: "./media/characters/sthara/male.svg",
  27286. extra: 2732 / 2607,
  27287. bottom: 23 / 2732
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Macro",
  27294. height: math.unit(21.6, "meters"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27301. {
  27302. front: {
  27303. height: math.unit(6 + 4 / 12, "feet"),
  27304. weight: math.unit(175, "lb"),
  27305. name: "Front",
  27306. image: {
  27307. source: "./media/characters/luka-bryzant/front.svg",
  27308. extra: 311 / 289,
  27309. bottom: 4 / 315
  27310. }
  27311. },
  27312. back: {
  27313. height: math.unit(6 + 4 / 12, "feet"),
  27314. weight: math.unit(175, "lb"),
  27315. name: "Back",
  27316. image: {
  27317. source: "./media/characters/luka-bryzant/back.svg",
  27318. extra: 311 / 289,
  27319. bottom: 3.8 / 313.7
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Micro",
  27326. height: math.unit(10, "inches")
  27327. },
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(6 + 4 / 12, "feet"),
  27331. default: true
  27332. },
  27333. {
  27334. name: "Large",
  27335. height: math.unit(12, "feet")
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27341. {
  27342. front: {
  27343. height: math.unit(5 + 7 / 12, "feet"),
  27344. weight: math.unit(185, "lb"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/aman-aquila/front.svg",
  27348. extra: 1013 / 976,
  27349. bottom: 45.6 / 1057
  27350. }
  27351. },
  27352. side: {
  27353. height: math.unit(5 + 7 / 12, "feet"),
  27354. weight: math.unit(185, "lb"),
  27355. name: "Side",
  27356. image: {
  27357. source: "./media/characters/aman-aquila/side.svg",
  27358. extra: 1054 / 1011,
  27359. bottom: 15 / 1070
  27360. }
  27361. },
  27362. back: {
  27363. height: math.unit(5 + 7 / 12, "feet"),
  27364. weight: math.unit(185, "lb"),
  27365. name: "Back",
  27366. image: {
  27367. source: "./media/characters/aman-aquila/back.svg",
  27368. extra: 1026 / 970,
  27369. bottom: 12 / 1039
  27370. }
  27371. },
  27372. head: {
  27373. height: math.unit(1.211, "feet"),
  27374. name: "Head",
  27375. image: {
  27376. source: "./media/characters/aman-aquila/head.svg",
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Minimicro",
  27383. height: math.unit(0.057, "inches")
  27384. },
  27385. {
  27386. name: "Micro",
  27387. height: math.unit(7, "inches")
  27388. },
  27389. {
  27390. name: "Mini",
  27391. height: math.unit(3 + 7 / 12, "feet")
  27392. },
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(5 + 7 / 12, "feet"),
  27396. default: true
  27397. },
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(157 + 7 / 12, "feet")
  27401. },
  27402. {
  27403. name: "Megamacro",
  27404. height: math.unit(1557 + 7 / 12, "feet")
  27405. },
  27406. {
  27407. name: "Gigamacro",
  27408. height: math.unit(15557 + 7 / 12, "feet")
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(3 + 2 / 12, "inches"),
  27417. weight: math.unit(0.3, "ounces"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/hiphae/front.svg",
  27421. extra: 1931 / 1683,
  27422. bottom: 24 / 1955
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(3 + 1 / 2, "inches"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27436. {
  27437. front: {
  27438. height: math.unit(5 + 10 / 12, "feet"),
  27439. weight: math.unit(165, "lb"),
  27440. name: "Front",
  27441. image: {
  27442. source: "./media/characters/nicky/front.svg",
  27443. extra: 3144 / 2886,
  27444. bottom: 45.6 / 3192
  27445. }
  27446. },
  27447. back: {
  27448. height: math.unit(5 + 10 / 12, "feet"),
  27449. weight: math.unit(165, "lb"),
  27450. name: "Back",
  27451. image: {
  27452. source: "./media/characters/nicky/back.svg",
  27453. extra: 3055 / 2804,
  27454. bottom: 28.4 / 3087
  27455. }
  27456. },
  27457. frontclothed: {
  27458. height: math.unit(5 + 10 / 12, "feet"),
  27459. weight: math.unit(165, "lb"),
  27460. name: "Front-clothed",
  27461. image: {
  27462. source: "./media/characters/nicky/front-clothed.svg",
  27463. extra: 3184.9 / 2926.9,
  27464. bottom: 86.5 / 3239.9
  27465. }
  27466. },
  27467. foot: {
  27468. height: math.unit(1.16, "feet"),
  27469. name: "Foot",
  27470. image: {
  27471. source: "./media/characters/nicky/foot.svg"
  27472. }
  27473. },
  27474. feet: {
  27475. height: math.unit(1.34, "feet"),
  27476. name: "Feet",
  27477. image: {
  27478. source: "./media/characters/nicky/feet.svg"
  27479. }
  27480. },
  27481. maw: {
  27482. height: math.unit(0.9, "feet"),
  27483. name: "Maw",
  27484. image: {
  27485. source: "./media/characters/nicky/maw.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(5 + 10 / 12, "feet"),
  27493. default: true
  27494. },
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(60, "feet")
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit(1, "mile")
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27507. {
  27508. side: {
  27509. height: math.unit(10, "feet"),
  27510. weight: math.unit(600, "lb"),
  27511. name: "Side",
  27512. image: {
  27513. source: "./media/characters/blair/side.svg",
  27514. bottom: 16.6 / 475,
  27515. extra: 458 / 431
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Micro",
  27522. height: math.unit(8, "inches")
  27523. },
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(10, "feet"),
  27527. default: true
  27528. },
  27529. {
  27530. name: "Macro",
  27531. height: math.unit(180, "feet")
  27532. },
  27533. ]
  27534. ))
  27535. characterMakers.push(() => makeCharacter(
  27536. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27537. {
  27538. front: {
  27539. height: math.unit(5 + 4 / 12, "feet"),
  27540. weight: math.unit(125, "lb"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/fisher/front.svg",
  27544. extra: 444 / 390,
  27545. bottom: 2 / 444.8
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Micro",
  27552. height: math.unit(4, "inches")
  27553. },
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(5 + 4 / 12, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(100, "feet")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(6.71, "feet"),
  27570. weight: math.unit(200, "lb"),
  27571. preyCapacity: math.unit(1000000, "people"),
  27572. name: "Front",
  27573. image: {
  27574. source: "./media/characters/gliss/front.svg",
  27575. extra: 2347 / 2231,
  27576. bottom: 113 / 2462
  27577. }
  27578. },
  27579. hammerspaceSize: {
  27580. height: math.unit(6.71 * 717, "feet"),
  27581. weight: math.unit(200, "lb"),
  27582. preyCapacity: math.unit(1000000, "people"),
  27583. name: "Hammerspace Size",
  27584. image: {
  27585. source: "./media/characters/gliss/front.svg",
  27586. extra: 2347 / 2231,
  27587. bottom: 113 / 2462
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(6.71, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27601. {
  27602. side: {
  27603. height: math.unit(1.44, "m"),
  27604. weight: math.unit(80, "kg"),
  27605. name: "Side",
  27606. image: {
  27607. source: "./media/characters/dune-anderson/side.svg",
  27608. bottom: 49 / 1426
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Wolf-sized",
  27615. height: math.unit(1.44, "meters")
  27616. },
  27617. {
  27618. name: "Normal",
  27619. height: math.unit(5.05, "meters"),
  27620. default: true
  27621. },
  27622. {
  27623. name: "Big",
  27624. height: math.unit(14.4, "meters")
  27625. },
  27626. {
  27627. name: "Huge",
  27628. height: math.unit(144, "meters")
  27629. },
  27630. ]
  27631. ))
  27632. characterMakers.push(() => makeCharacter(
  27633. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27634. {
  27635. front: {
  27636. height: math.unit(6, "feet"),
  27637. weight: math.unit(220, "lb"),
  27638. name: "Front",
  27639. image: {
  27640. source: "./media/characters/hind/front.svg",
  27641. extra: 1912/1787,
  27642. bottom: 52/1964
  27643. }
  27644. },
  27645. back: {
  27646. height: math.unit(6, "feet"),
  27647. weight: math.unit(220, "lb"),
  27648. name: "Back",
  27649. image: {
  27650. source: "./media/characters/hind/back.svg",
  27651. extra: 1901/1794,
  27652. bottom: 26/1927
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(6, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27666. {
  27667. front: {
  27668. height: math.unit(2.1, "meters"),
  27669. weight: math.unit(150, "lb"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/tharquench-sizestealer/front.svg",
  27673. extra: 1605/1470,
  27674. bottom: 36/1641
  27675. }
  27676. },
  27677. frontAlt: {
  27678. height: math.unit(2.1, "meters"),
  27679. weight: math.unit(150, "lb"),
  27680. name: "Front (Alt)",
  27681. image: {
  27682. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27683. extra: 2318 / 2063,
  27684. bottom: 93.4 / 2410
  27685. }
  27686. },
  27687. },
  27688. [
  27689. {
  27690. name: "Nano",
  27691. height: math.unit(1, "mm")
  27692. },
  27693. {
  27694. name: "Micro",
  27695. height: math.unit(1, "cm")
  27696. },
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(2.1, "meters"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(7 + 5 / 12, "feet"),
  27709. weight: math.unit(357, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/solex-draconov/front.svg",
  27713. extra: 1993 / 1865,
  27714. bottom: 117 / 2111
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Natural Height",
  27721. height: math.unit(7 + 5 / 12, "feet"),
  27722. default: true
  27723. },
  27724. {
  27725. name: "Macro",
  27726. height: math.unit(350, "feet")
  27727. },
  27728. {
  27729. name: "Macro+",
  27730. height: math.unit(1000, "feet")
  27731. },
  27732. {
  27733. name: "Megamacro",
  27734. height: math.unit(20, "km")
  27735. },
  27736. {
  27737. name: "Megamacro+",
  27738. height: math.unit(1000, "km")
  27739. },
  27740. {
  27741. name: "Gigamacro",
  27742. height: math.unit(2.5, "Gm")
  27743. },
  27744. {
  27745. name: "Teramacro",
  27746. height: math.unit(15, "Tm")
  27747. },
  27748. {
  27749. name: "Galactic",
  27750. height: math.unit(30, "Zm")
  27751. },
  27752. {
  27753. name: "Universal",
  27754. height: math.unit(21000, "Ym")
  27755. },
  27756. {
  27757. name: "Omniversal",
  27758. height: math.unit(9.861e50, "Ym")
  27759. },
  27760. {
  27761. name: "Existential",
  27762. height: math.unit(1e300, "meters")
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27768. {
  27769. side: {
  27770. height: math.unit(25, "feet"),
  27771. weight: math.unit(90000, "lb"),
  27772. name: "Side",
  27773. image: {
  27774. source: "./media/characters/mandarax/side.svg",
  27775. extra: 614 / 332,
  27776. bottom: 55 / 630
  27777. }
  27778. },
  27779. lounging: {
  27780. height: math.unit(15.4, "feet"),
  27781. weight: math.unit(90000, "lb"),
  27782. name: "Lounging",
  27783. image: {
  27784. source: "./media/characters/mandarax/lounging.svg",
  27785. extra: 817/609,
  27786. bottom: 685/1502
  27787. }
  27788. },
  27789. head: {
  27790. height: math.unit(11.4, "feet"),
  27791. name: "Head",
  27792. image: {
  27793. source: "./media/characters/mandarax/head.svg"
  27794. }
  27795. },
  27796. belly: {
  27797. height: math.unit(33, "feet"),
  27798. name: "Belly",
  27799. preyCapacity: math.unit(500, "people"),
  27800. image: {
  27801. source: "./media/characters/mandarax/belly.svg"
  27802. }
  27803. },
  27804. dick: {
  27805. height: math.unit(8.46, "feet"),
  27806. name: "Dick",
  27807. image: {
  27808. source: "./media/characters/mandarax/dick.svg"
  27809. }
  27810. },
  27811. top: {
  27812. height: math.unit(28, "meters"),
  27813. name: "Top",
  27814. image: {
  27815. source: "./media/characters/mandarax/top.svg"
  27816. }
  27817. },
  27818. },
  27819. [
  27820. {
  27821. name: "Normal",
  27822. height: math.unit(25, "feet"),
  27823. default: true
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(5, "feet"),
  27832. weight: math.unit(90, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/pixil/front.svg",
  27836. extra: 2000 / 1618,
  27837. bottom: 12.3 / 2011
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Normal",
  27844. height: math.unit(5, "feet"),
  27845. default: true
  27846. },
  27847. {
  27848. name: "Megamacro",
  27849. height: math.unit(10, "miles"),
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(7 + 2 / 12, "feet"),
  27858. weight: math.unit(200, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/angel/front.svg",
  27862. extra: 1946/1840,
  27863. bottom: 30/1976
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(7 + 2 / 12, "feet"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Macro",
  27875. height: math.unit(1000, "feet")
  27876. },
  27877. {
  27878. name: "Megamacro",
  27879. height: math.unit(2, "miles")
  27880. },
  27881. {
  27882. name: "Gigamacro",
  27883. height: math.unit(20, "earths")
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(5, "feet"),
  27892. weight: math.unit(180, "lb"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/mekana/front.svg",
  27896. extra: 1671 / 1605,
  27897. bottom: 3.5 / 1691
  27898. }
  27899. },
  27900. side: {
  27901. height: math.unit(5, "feet"),
  27902. weight: math.unit(180, "lb"),
  27903. name: "Side",
  27904. image: {
  27905. source: "./media/characters/mekana/side.svg",
  27906. extra: 1671 / 1605,
  27907. bottom: 3.5 / 1691
  27908. }
  27909. },
  27910. back: {
  27911. height: math.unit(5, "feet"),
  27912. weight: math.unit(180, "lb"),
  27913. name: "Back",
  27914. image: {
  27915. source: "./media/characters/mekana/back.svg",
  27916. extra: 1671 / 1605,
  27917. bottom: 3.5 / 1691
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(5, "feet"),
  27925. default: true
  27926. },
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(4 + 6 / 12, "feet"),
  27934. weight: math.unit(80, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/pixie/front.svg",
  27938. extra: 1924 / 1825,
  27939. bottom: 22.4 / 1946
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(4 + 6 / 12, "feet"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Macro",
  27951. height: math.unit(40, "feet")
  27952. },
  27953. ]
  27954. ))
  27955. characterMakers.push(() => makeCharacter(
  27956. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27957. {
  27958. front: {
  27959. height: math.unit(2.1, "meters"),
  27960. weight: math.unit(200, "lb"),
  27961. name: "Front",
  27962. image: {
  27963. source: "./media/characters/the-lascivious/front.svg",
  27964. extra: 1 / 0.893,
  27965. bottom: 3.5 / 573.7
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Human Scale",
  27972. height: math.unit(2.1, "meters")
  27973. },
  27974. {
  27975. name: "Wolxi Scale",
  27976. height: math.unit(46.2, "m"),
  27977. default: true
  27978. },
  27979. {
  27980. name: "Boinker of Buildings",
  27981. height: math.unit(10, "km")
  27982. },
  27983. {
  27984. name: "Shagger of Skyscrapers",
  27985. height: math.unit(40, "km")
  27986. },
  27987. {
  27988. name: "Banger of Boroughs",
  27989. height: math.unit(4000, "km")
  27990. },
  27991. {
  27992. name: "Screwer of States",
  27993. height: math.unit(100000, "km")
  27994. },
  27995. {
  27996. name: "Pounder of Planets",
  27997. height: math.unit(2000000, "km")
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28003. {
  28004. front: {
  28005. height: math.unit(6, "feet"),
  28006. weight: math.unit(150, "lb"),
  28007. name: "Front",
  28008. image: {
  28009. source: "./media/characters/aj/front.svg",
  28010. extra: 2039 / 1562,
  28011. bottom: 40 / 2079
  28012. }
  28013. },
  28014. },
  28015. [
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(11 + 6 / 12, "feet"),
  28019. default: true
  28020. },
  28021. {
  28022. name: "Megamacro",
  28023. height: math.unit(60, "megameters")
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28029. {
  28030. side: {
  28031. height: math.unit(31 + 8 / 12, "feet"),
  28032. weight: math.unit(75000, "kg"),
  28033. name: "Side",
  28034. image: {
  28035. source: "./media/characters/koros/side.svg",
  28036. extra: 1442 / 1297,
  28037. bottom: 122.7 / 1562
  28038. }
  28039. },
  28040. dicksKingsCrown: {
  28041. height: math.unit(6, "feet"),
  28042. name: "Dicks (King's Crown)",
  28043. image: {
  28044. source: "./media/characters/koros/dicks-kings-crown.svg"
  28045. }
  28046. },
  28047. dicksTailSet: {
  28048. height: math.unit(3, "feet"),
  28049. name: "Dicks (Tail Set)",
  28050. image: {
  28051. source: "./media/characters/koros/dicks-tail-set.svg"
  28052. }
  28053. },
  28054. dickCumming: {
  28055. height: math.unit(7.98, "feet"),
  28056. name: "Dick (Cumming)",
  28057. image: {
  28058. source: "./media/characters/koros/dick-cumming.svg"
  28059. }
  28060. },
  28061. dicksBack: {
  28062. height: math.unit(5.9, "feet"),
  28063. name: "Dicks (Back)",
  28064. image: {
  28065. source: "./media/characters/koros/dicks-back.svg"
  28066. }
  28067. },
  28068. dicksFront: {
  28069. height: math.unit(3.72, "feet"),
  28070. name: "Dicks (Front)",
  28071. image: {
  28072. source: "./media/characters/koros/dicks-front.svg"
  28073. }
  28074. },
  28075. dicksPeeking: {
  28076. height: math.unit(3.0, "feet"),
  28077. name: "Dicks (Peeking)",
  28078. image: {
  28079. source: "./media/characters/koros/dicks-peeking.svg"
  28080. }
  28081. },
  28082. eye: {
  28083. height: math.unit(1.7, "feet"),
  28084. name: "Eye",
  28085. image: {
  28086. source: "./media/characters/koros/eye.svg"
  28087. }
  28088. },
  28089. headFront: {
  28090. height: math.unit(11.69, "feet"),
  28091. name: "Head (Front)",
  28092. image: {
  28093. source: "./media/characters/koros/head-front.svg"
  28094. }
  28095. },
  28096. headSide: {
  28097. height: math.unit(14, "feet"),
  28098. name: "Head (Side)",
  28099. image: {
  28100. source: "./media/characters/koros/head-side.svg"
  28101. }
  28102. },
  28103. leg: {
  28104. height: math.unit(17, "feet"),
  28105. name: "Leg",
  28106. image: {
  28107. source: "./media/characters/koros/leg.svg"
  28108. }
  28109. },
  28110. mawSide: {
  28111. height: math.unit(12.8, "feet"),
  28112. name: "Maw (Side)",
  28113. image: {
  28114. source: "./media/characters/koros/maw-side.svg"
  28115. }
  28116. },
  28117. mawSpitting: {
  28118. height: math.unit(17, "feet"),
  28119. name: "Maw (Spitting)",
  28120. image: {
  28121. source: "./media/characters/koros/maw-spitting.svg"
  28122. }
  28123. },
  28124. slit: {
  28125. height: math.unit(2.8, "feet"),
  28126. name: "Slit",
  28127. image: {
  28128. source: "./media/characters/koros/slit.svg"
  28129. }
  28130. },
  28131. stomach: {
  28132. height: math.unit(6.8, "feet"),
  28133. preyCapacity: math.unit(20, "people"),
  28134. name: "Stomach",
  28135. image: {
  28136. source: "./media/characters/koros/stomach.svg"
  28137. }
  28138. },
  28139. wingspanBottom: {
  28140. height: math.unit(114, "feet"),
  28141. name: "Wingspan (Bottom)",
  28142. image: {
  28143. source: "./media/characters/koros/wingspan-bottom.svg"
  28144. }
  28145. },
  28146. wingspanTop: {
  28147. height: math.unit(104, "feet"),
  28148. name: "Wingspan (Top)",
  28149. image: {
  28150. source: "./media/characters/koros/wingspan-top.svg"
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(31 + 8 / 12, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(18 + 5 / 12, "feet"),
  28167. weight: math.unit(3750, "kg"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/vexx/front.svg",
  28171. extra: 426 / 396,
  28172. bottom: 31.5 / 458
  28173. }
  28174. },
  28175. maw: {
  28176. height: math.unit(6, "feet"),
  28177. name: "Maw",
  28178. image: {
  28179. source: "./media/characters/vexx/maw.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(18 + 5 / 12, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(17 + 6 / 12, "feet"),
  28196. weight: math.unit(150, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/baadra/front.svg",
  28200. extra: 1694/1553,
  28201. bottom: 179/1873
  28202. }
  28203. },
  28204. frontAlt: {
  28205. height: math.unit(17 + 6 / 12, "feet"),
  28206. weight: math.unit(150, "lb"),
  28207. name: "Front (Alt)",
  28208. image: {
  28209. source: "./media/characters/baadra/front-alt.svg",
  28210. extra: 3137 / 2890,
  28211. bottom: 168.4 / 3305
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(17 + 6 / 12, "feet"),
  28216. weight: math.unit(150, "lb"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/baadra/back.svg",
  28220. extra: 3142 / 2890,
  28221. bottom: 220 / 3371
  28222. }
  28223. },
  28224. head: {
  28225. height: math.unit(5.45, "feet"),
  28226. name: "Head",
  28227. image: {
  28228. source: "./media/characters/baadra/head.svg"
  28229. }
  28230. },
  28231. headAngry: {
  28232. height: math.unit(4.95, "feet"),
  28233. name: "Head (Angry)",
  28234. image: {
  28235. source: "./media/characters/baadra/head-angry.svg"
  28236. }
  28237. },
  28238. headOpen: {
  28239. height: math.unit(6, "feet"),
  28240. name: "Head (Open)",
  28241. image: {
  28242. source: "./media/characters/baadra/head-open.svg"
  28243. }
  28244. },
  28245. },
  28246. [
  28247. {
  28248. name: "Normal",
  28249. height: math.unit(17 + 6 / 12, "feet"),
  28250. default: true
  28251. },
  28252. ]
  28253. ))
  28254. characterMakers.push(() => makeCharacter(
  28255. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28256. {
  28257. front: {
  28258. height: math.unit(7 + 3 / 12, "feet"),
  28259. weight: math.unit(180, "lb"),
  28260. name: "Front",
  28261. image: {
  28262. source: "./media/characters/juri/front.svg",
  28263. extra: 1401 / 1237,
  28264. bottom: 18.5 / 1418
  28265. }
  28266. },
  28267. side: {
  28268. height: math.unit(7 + 3 / 12, "feet"),
  28269. weight: math.unit(180, "lb"),
  28270. name: "Side",
  28271. image: {
  28272. source: "./media/characters/juri/side.svg",
  28273. extra: 1424 / 1242,
  28274. bottom: 18.5 / 1447
  28275. }
  28276. },
  28277. sitting: {
  28278. height: math.unit(6, "feet"),
  28279. weight: math.unit(180, "lb"),
  28280. name: "Sitting",
  28281. image: {
  28282. source: "./media/characters/juri/sitting.svg",
  28283. extra: 1270 / 1143,
  28284. bottom: 100 / 1343
  28285. }
  28286. },
  28287. back: {
  28288. height: math.unit(7 + 3 / 12, "feet"),
  28289. weight: math.unit(180, "lb"),
  28290. name: "Back",
  28291. image: {
  28292. source: "./media/characters/juri/back.svg",
  28293. extra: 1377 / 1240,
  28294. bottom: 23.7 / 1405
  28295. }
  28296. },
  28297. maw: {
  28298. height: math.unit(2.8, "feet"),
  28299. name: "Maw",
  28300. image: {
  28301. source: "./media/characters/juri/maw.svg"
  28302. }
  28303. },
  28304. stomach: {
  28305. height: math.unit(0.89, "feet"),
  28306. preyCapacity: math.unit(4, "liters"),
  28307. name: "Stomach",
  28308. image: {
  28309. source: "./media/characters/juri/stomach.svg"
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(7 + 3 / 12, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28323. {
  28324. fox: {
  28325. height: math.unit(5 + 6 / 12, "feet"),
  28326. weight: math.unit(140, "lb"),
  28327. name: "Fox",
  28328. image: {
  28329. source: "./media/characters/maxene-sita/fox.svg",
  28330. extra: 146 / 138,
  28331. bottom: 2.1 / 148.19
  28332. }
  28333. },
  28334. foxLaying: {
  28335. height: math.unit(1.70, "feet"),
  28336. weight: math.unit(140, "lb"),
  28337. name: "Fox (Laying)",
  28338. image: {
  28339. source: "./media/characters/maxene-sita/fox-laying.svg",
  28340. extra: 910 / 572,
  28341. bottom: 71 / 981
  28342. }
  28343. },
  28344. kitsune: {
  28345. height: math.unit(10, "feet"),
  28346. weight: math.unit(800, "lb"),
  28347. name: "Kitsune",
  28348. image: {
  28349. source: "./media/characters/maxene-sita/kitsune.svg",
  28350. extra: 185 / 176,
  28351. bottom: 4.7 / 189.9
  28352. }
  28353. },
  28354. hellhound: {
  28355. height: math.unit(10, "feet"),
  28356. weight: math.unit(700, "lb"),
  28357. name: "Hellhound",
  28358. image: {
  28359. source: "./media/characters/maxene-sita/hellhound.svg",
  28360. extra: 1600 / 1545,
  28361. bottom: 81 / 1681
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(5 + 6 / 12, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28375. {
  28376. front: {
  28377. height: math.unit(3 + 4 / 12, "feet"),
  28378. weight: math.unit(70, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/maia/front.svg",
  28382. extra: 227 / 219.5,
  28383. bottom: 40 / 267
  28384. }
  28385. },
  28386. back: {
  28387. height: math.unit(3 + 4 / 12, "feet"),
  28388. weight: math.unit(70, "lb"),
  28389. name: "Back",
  28390. image: {
  28391. source: "./media/characters/maia/back.svg",
  28392. extra: 237 / 225
  28393. }
  28394. },
  28395. },
  28396. [
  28397. {
  28398. name: "Normal",
  28399. height: math.unit(3 + 4 / 12, "feet"),
  28400. default: true
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(5 + 10 / 12, "feet"),
  28409. weight: math.unit(197, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/jabaro/front.svg",
  28413. extra: 225 / 216,
  28414. bottom: 5.06 / 230
  28415. }
  28416. },
  28417. back: {
  28418. height: math.unit(5 + 10 / 12, "feet"),
  28419. weight: math.unit(197, "lb"),
  28420. name: "Back",
  28421. image: {
  28422. source: "./media/characters/jabaro/back.svg",
  28423. extra: 225 / 219,
  28424. bottom: 1.9 / 227
  28425. }
  28426. },
  28427. },
  28428. [
  28429. {
  28430. name: "Normal",
  28431. height: math.unit(5 + 10 / 12, "feet"),
  28432. default: true
  28433. },
  28434. ]
  28435. ))
  28436. characterMakers.push(() => makeCharacter(
  28437. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28438. {
  28439. front: {
  28440. height: math.unit(5 + 8 / 12, "feet"),
  28441. weight: math.unit(139, "lb"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/risa/front.svg",
  28445. extra: 270 / 260,
  28446. bottom: 11.2 / 282
  28447. }
  28448. },
  28449. back: {
  28450. height: math.unit(5 + 8 / 12, "feet"),
  28451. weight: math.unit(139, "lb"),
  28452. name: "Back",
  28453. image: {
  28454. source: "./media/characters/risa/back.svg",
  28455. extra: 264 / 255,
  28456. bottom: 4 / 268
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Normal",
  28463. height: math.unit(5 + 8 / 12, "feet"),
  28464. default: true
  28465. },
  28466. ]
  28467. ))
  28468. characterMakers.push(() => makeCharacter(
  28469. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28470. {
  28471. front: {
  28472. height: math.unit(2 + 11 / 12, "feet"),
  28473. weight: math.unit(30, "lb"),
  28474. name: "Front",
  28475. image: {
  28476. source: "./media/characters/weatley/front.svg",
  28477. bottom: 10.7 / 414,
  28478. extra: 403.5 / 362
  28479. }
  28480. },
  28481. back: {
  28482. height: math.unit(2 + 11 / 12, "feet"),
  28483. weight: math.unit(30, "lb"),
  28484. name: "Back",
  28485. image: {
  28486. source: "./media/characters/weatley/back.svg",
  28487. bottom: 10.7 / 414,
  28488. extra: 403.5 / 362
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(2 + 11 / 12, "feet"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(5 + 2 / 12, "feet"),
  28505. weight: math.unit(50, "kg"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/mercury-crescent/front.svg",
  28509. extra: 1088 / 1033,
  28510. bottom: 18.9 / 1109
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Normal",
  28517. height: math.unit(5 + 2 / 12, "feet"),
  28518. default: true
  28519. },
  28520. ]
  28521. ))
  28522. characterMakers.push(() => makeCharacter(
  28523. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28524. {
  28525. front: {
  28526. height: math.unit(2, "feet"),
  28527. weight: math.unit(15, "kg"),
  28528. name: "Front",
  28529. image: {
  28530. source: "./media/characters/diamond-jones/front.svg",
  28531. extra: 727/723,
  28532. bottom: 46/773
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Normal",
  28539. height: math.unit(2, "feet"),
  28540. default: true
  28541. },
  28542. ]
  28543. ))
  28544. characterMakers.push(() => makeCharacter(
  28545. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28546. {
  28547. front: {
  28548. height: math.unit(3, "feet"),
  28549. weight: math.unit(30, "kg"),
  28550. name: "Front",
  28551. image: {
  28552. source: "./media/characters/sweet-bit/front.svg",
  28553. extra: 675 / 567,
  28554. bottom: 27.7 / 703
  28555. }
  28556. },
  28557. },
  28558. [
  28559. {
  28560. name: "Normal",
  28561. height: math.unit(3, "feet"),
  28562. default: true
  28563. },
  28564. ]
  28565. ))
  28566. characterMakers.push(() => makeCharacter(
  28567. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28568. {
  28569. side: {
  28570. height: math.unit(9.178, "feet"),
  28571. weight: math.unit(500, "lb"),
  28572. name: "Side",
  28573. image: {
  28574. source: "./media/characters/umbrazen/side.svg",
  28575. extra: 1730 / 1473,
  28576. bottom: 34.6 / 1765
  28577. }
  28578. },
  28579. },
  28580. [
  28581. {
  28582. name: "Normal",
  28583. height: math.unit(9.178, "feet"),
  28584. default: true
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28590. {
  28591. front: {
  28592. height: math.unit(10, "feet"),
  28593. weight: math.unit(750, "lb"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/arlist/front.svg",
  28597. extra: 961 / 778,
  28598. bottom: 6.2 / 986
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Normal",
  28605. height: math.unit(10, "feet"),
  28606. default: true
  28607. },
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(5 + 1 / 12, "feet"),
  28615. weight: math.unit(110, "lb"),
  28616. name: "Front",
  28617. image: {
  28618. source: "./media/characters/aradel/front.svg",
  28619. extra: 324 / 303,
  28620. bottom: 3.6 / 329.4
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Normal",
  28627. height: math.unit(5 + 1 / 12, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28634. {
  28635. dressed: {
  28636. height: math.unit(3 + 8 / 12, "feet"),
  28637. weight: math.unit(50, "lb"),
  28638. name: "Dressed",
  28639. image: {
  28640. source: "./media/characters/serryn/dressed.svg",
  28641. extra: 1792 / 1656,
  28642. bottom: 43.5 / 1840
  28643. }
  28644. },
  28645. nude: {
  28646. height: math.unit(3 + 8 / 12, "feet"),
  28647. weight: math.unit(50, "lb"),
  28648. name: "Nude",
  28649. image: {
  28650. source: "./media/characters/serryn/nude.svg",
  28651. extra: 1792 / 1656,
  28652. bottom: 43.5 / 1840
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(3 + 8 / 12, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(7 + 10 / 12, "feet"),
  28669. weight: math.unit(255, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/xavier-thyme/front.svg",
  28673. extra: 3733 / 3642,
  28674. bottom: 131 / 3869
  28675. }
  28676. },
  28677. frontRaven: {
  28678. height: math.unit(7 + 10 / 12, "feet"),
  28679. weight: math.unit(255, "lb"),
  28680. name: "Front (Raven)",
  28681. image: {
  28682. source: "./media/characters/xavier-thyme/front-raven.svg",
  28683. extra: 4385 / 3642,
  28684. bottom: 131 / 4517
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(7 + 10 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(1.6, "m"),
  28701. weight: math.unit(50, "kg"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/kiki/front.svg",
  28705. extra: 4682 / 3610,
  28706. bottom: 115 / 4777
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Normal",
  28713. height: math.unit(1.6, "meters"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(50, "m"),
  28723. weight: math.unit(500, "tonnes"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/ryoko/front.svg",
  28727. extra: 4632 / 3926,
  28728. bottom: 193 / 4823
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(50, "meters"),
  28736. default: true
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(30, "m"),
  28745. weight: math.unit(22, "tonnes"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/elio/front.svg",
  28749. extra: 4582 / 3720,
  28750. bottom: 236 / 4828
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(30, "meters"),
  28758. default: true
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(6 + 3 / 12, "feet"),
  28767. weight: math.unit(120, "lb"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/azura/front.svg",
  28771. extra: 1149 / 1135,
  28772. bottom: 45 / 1194
  28773. }
  28774. },
  28775. frontClothed: {
  28776. height: math.unit(6 + 3 / 12, "feet"),
  28777. weight: math.unit(120, "lb"),
  28778. name: "Front (Clothed)",
  28779. image: {
  28780. source: "./media/characters/azura/front-clothed.svg",
  28781. extra: 1149 / 1135,
  28782. bottom: 45 / 1194
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(6 + 3 / 12, "feet"),
  28790. default: true
  28791. },
  28792. {
  28793. name: "Macro",
  28794. height: math.unit(20 + 6 / 12, "feet")
  28795. },
  28796. {
  28797. name: "Megamacro",
  28798. height: math.unit(12, "miles")
  28799. },
  28800. {
  28801. name: "Gigamacro",
  28802. height: math.unit(10000, "miles")
  28803. },
  28804. {
  28805. name: "Teramacro",
  28806. height: math.unit(900000, "miles")
  28807. },
  28808. ]
  28809. ))
  28810. characterMakers.push(() => makeCharacter(
  28811. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28812. {
  28813. front: {
  28814. height: math.unit(12, "feet"),
  28815. weight: math.unit(1, "ton"),
  28816. capacity: math.unit(660000, "gallons"),
  28817. name: "Front",
  28818. image: {
  28819. source: "./media/characters/zeus/front.svg",
  28820. extra: 5005 / 4717,
  28821. bottom: 363 / 5388
  28822. }
  28823. },
  28824. },
  28825. [
  28826. {
  28827. name: "Normal",
  28828. height: math.unit(12, "feet")
  28829. },
  28830. {
  28831. name: "Preferred Size",
  28832. height: math.unit(0.5, "miles"),
  28833. default: true
  28834. },
  28835. {
  28836. name: "Giga Horse",
  28837. height: math.unit(300, "miles")
  28838. },
  28839. {
  28840. name: "Riding Planets",
  28841. height: math.unit(30, "megameters")
  28842. },
  28843. {
  28844. name: "Cosmic Giant",
  28845. height: math.unit(3, "zettameters")
  28846. },
  28847. {
  28848. name: "Breeding God",
  28849. height: math.unit(9.92e22, "yottameters")
  28850. },
  28851. ]
  28852. ))
  28853. characterMakers.push(() => makeCharacter(
  28854. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28855. {
  28856. side: {
  28857. height: math.unit(9, "feet"),
  28858. weight: math.unit(1500, "kg"),
  28859. name: "Side",
  28860. image: {
  28861. source: "./media/characters/fang/side.svg",
  28862. extra: 924 / 866,
  28863. bottom: 47.5 / 972.3
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(9, "feet"),
  28871. default: true
  28872. },
  28873. {
  28874. name: "Macro",
  28875. height: math.unit(75 + 6 / 12, "feet")
  28876. },
  28877. {
  28878. name: "Teramacro",
  28879. height: math.unit(50000, "miles")
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(10, "feet"),
  28888. weight: math.unit(2, "tons"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/rekhit/front.svg",
  28892. extra: 2796 / 2590,
  28893. bottom: 225 / 3022
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(10, "feet"),
  28901. default: true
  28902. },
  28903. {
  28904. name: "Macro",
  28905. height: math.unit(500, "feet")
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(7 + 6.451 / 12, "feet"),
  28914. weight: math.unit(310, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/dahlia-verrick/front.svg",
  28918. extra: 1488 / 1365,
  28919. bottom: 6.2 / 1495
  28920. }
  28921. },
  28922. back: {
  28923. height: math.unit(7 + 6.451 / 12, "feet"),
  28924. weight: math.unit(310, "lb"),
  28925. name: "Back",
  28926. image: {
  28927. source: "./media/characters/dahlia-verrick/back.svg",
  28928. extra: 1472 / 1351,
  28929. bottom: 5.28 / 1477
  28930. }
  28931. },
  28932. frontBusiness: {
  28933. height: math.unit(7 + 6.451 / 12, "feet"),
  28934. weight: math.unit(200, "lb"),
  28935. name: "Front (Business)",
  28936. image: {
  28937. source: "./media/characters/dahlia-verrick/front-business.svg",
  28938. extra: 1478 / 1381,
  28939. bottom: 5.5 / 1484
  28940. }
  28941. },
  28942. frontCasual: {
  28943. height: math.unit(7 + 6.451 / 12, "feet"),
  28944. weight: math.unit(200, "lb"),
  28945. name: "Front (Casual)",
  28946. image: {
  28947. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28948. extra: 1478 / 1381,
  28949. bottom: 5.5 / 1484
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Travel-Sized",
  28956. height: math.unit(7.45, "inches")
  28957. },
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(7 + 6.451 / 12, "feet"),
  28961. default: true
  28962. },
  28963. {
  28964. name: "Hitting the Town",
  28965. height: math.unit(37 + 8 / 12, "feet")
  28966. },
  28967. {
  28968. name: "Stomp in the Suburbs",
  28969. height: math.unit(964 + 9.728 / 12, "feet")
  28970. },
  28971. {
  28972. name: "Sit on the City",
  28973. height: math.unit(61747 + 10.592 / 12, "feet")
  28974. },
  28975. {
  28976. name: "Glomp the Globe",
  28977. height: math.unit(252919327 + 4.832 / 12, "feet")
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(6 + 4 / 12, "feet"),
  28986. weight: math.unit(320, "lb"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/balina-mahigan/front.svg",
  28990. extra: 447 / 428,
  28991. bottom: 18 / 466
  28992. }
  28993. },
  28994. back: {
  28995. height: math.unit(6 + 4 / 12, "feet"),
  28996. weight: math.unit(320, "lb"),
  28997. name: "Back",
  28998. image: {
  28999. source: "./media/characters/balina-mahigan/back.svg",
  29000. extra: 445 / 428,
  29001. bottom: 4.07 / 448
  29002. }
  29003. },
  29004. arm: {
  29005. height: math.unit(1.88, "feet"),
  29006. name: "Arm",
  29007. image: {
  29008. source: "./media/characters/balina-mahigan/arm.svg"
  29009. }
  29010. },
  29011. backPort: {
  29012. height: math.unit(0.685, "feet"),
  29013. name: "Back Port",
  29014. image: {
  29015. source: "./media/characters/balina-mahigan/back-port.svg"
  29016. }
  29017. },
  29018. hoofpaw: {
  29019. height: math.unit(1.41, "feet"),
  29020. name: "Hoofpaw",
  29021. image: {
  29022. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29023. }
  29024. },
  29025. leftHandBack: {
  29026. height: math.unit(0.938, "feet"),
  29027. name: "Left Hand (Back)",
  29028. image: {
  29029. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29030. }
  29031. },
  29032. leftHandFront: {
  29033. height: math.unit(0.938, "feet"),
  29034. name: "Left Hand (Front)",
  29035. image: {
  29036. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29037. }
  29038. },
  29039. rightHandBack: {
  29040. height: math.unit(0.95, "feet"),
  29041. name: "Right Hand (Back)",
  29042. image: {
  29043. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29044. }
  29045. },
  29046. rightHandFront: {
  29047. height: math.unit(0.95, "feet"),
  29048. name: "Right Hand (Front)",
  29049. image: {
  29050. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(6 + 4 / 12, "feet"),
  29058. default: true
  29059. },
  29060. ]
  29061. ))
  29062. characterMakers.push(() => makeCharacter(
  29063. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29064. {
  29065. front: {
  29066. height: math.unit(6, "feet"),
  29067. weight: math.unit(320, "lb"),
  29068. name: "Front",
  29069. image: {
  29070. source: "./media/characters/balina-mejeri/front.svg",
  29071. extra: 517 / 488,
  29072. bottom: 44.2 / 561
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Normal",
  29079. height: math.unit(6 + 4 / 12, "feet")
  29080. },
  29081. {
  29082. name: "Business",
  29083. height: math.unit(155, "feet"),
  29084. default: true
  29085. },
  29086. ]
  29087. ))
  29088. characterMakers.push(() => makeCharacter(
  29089. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29090. {
  29091. kneeling: {
  29092. height: math.unit(6 + 4 / 12, "feet"),
  29093. weight: math.unit(300 * 20, "lb"),
  29094. name: "Kneeling",
  29095. image: {
  29096. source: "./media/characters/balbarian/kneeling.svg",
  29097. extra: 922 / 862,
  29098. bottom: 42.4 / 965
  29099. }
  29100. },
  29101. },
  29102. [
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(6 + 4 / 12, "feet")
  29106. },
  29107. {
  29108. name: "Treasured",
  29109. height: math.unit(18 + 9 / 12, "feet"),
  29110. default: true
  29111. },
  29112. {
  29113. name: "Macro",
  29114. height: math.unit(900, "feet")
  29115. },
  29116. ]
  29117. ))
  29118. characterMakers.push(() => makeCharacter(
  29119. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29120. {
  29121. front: {
  29122. height: math.unit(6 + 4 / 12, "feet"),
  29123. weight: math.unit(325, "lb"),
  29124. name: "Front",
  29125. image: {
  29126. source: "./media/characters/balina-amarini/front.svg",
  29127. extra: 415 / 403,
  29128. bottom: 19 / 433.4
  29129. }
  29130. },
  29131. back: {
  29132. height: math.unit(6 + 4 / 12, "feet"),
  29133. weight: math.unit(325, "lb"),
  29134. name: "Back",
  29135. image: {
  29136. source: "./media/characters/balina-amarini/back.svg",
  29137. extra: 415 / 403,
  29138. bottom: 13.5 / 432
  29139. }
  29140. },
  29141. overdrive: {
  29142. height: math.unit(6 + 4 / 12, "feet"),
  29143. weight: math.unit(400, "lb"),
  29144. name: "Overdrive",
  29145. image: {
  29146. source: "./media/characters/balina-amarini/overdrive.svg",
  29147. extra: 269 / 259,
  29148. bottom: 12 / 282
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Boom",
  29155. height: math.unit(9 + 10 / 12, "feet"),
  29156. default: true
  29157. },
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(280, "feet")
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29166. {
  29167. goddess: {
  29168. height: math.unit(600, "feet"),
  29169. weight: math.unit(2000000, "tons"),
  29170. name: "Goddess",
  29171. image: {
  29172. source: "./media/characters/lady-kubwa/goddess.svg",
  29173. extra: 1240.5 / 1223,
  29174. bottom: 22 / 1263
  29175. }
  29176. },
  29177. goddesser: {
  29178. height: math.unit(900, "feet"),
  29179. weight: math.unit(20000000, "lb"),
  29180. name: "Goddess-er",
  29181. image: {
  29182. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29183. extra: 899 / 888,
  29184. bottom: 12.6 / 912
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Macro",
  29191. height: math.unit(600, "feet"),
  29192. default: true
  29193. },
  29194. {
  29195. name: "Megamacro",
  29196. height: math.unit(250, "miles")
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(7 + 7 / 12, "feet"),
  29205. weight: math.unit(250, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/tala-grovehorn/front.svg",
  29209. extra: 2636 / 2525,
  29210. bottom: 147 / 2781
  29211. }
  29212. },
  29213. back: {
  29214. height: math.unit(7 + 7 / 12, "feet"),
  29215. weight: math.unit(250, "lb"),
  29216. name: "Back",
  29217. image: {
  29218. source: "./media/characters/tala-grovehorn/back.svg",
  29219. extra: 2635 / 2539,
  29220. bottom: 100 / 2732.8
  29221. }
  29222. },
  29223. mouth: {
  29224. height: math.unit(1.15, "feet"),
  29225. name: "Mouth",
  29226. image: {
  29227. source: "./media/characters/tala-grovehorn/mouth.svg"
  29228. }
  29229. },
  29230. dick: {
  29231. height: math.unit(2.36, "feet"),
  29232. name: "Dick",
  29233. image: {
  29234. source: "./media/characters/tala-grovehorn/dick.svg"
  29235. }
  29236. },
  29237. slit: {
  29238. height: math.unit(0.61, "feet"),
  29239. name: "Slit",
  29240. image: {
  29241. source: "./media/characters/tala-grovehorn/slit.svg"
  29242. }
  29243. },
  29244. },
  29245. [
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(7 + 7 / 12, "feet"),
  29253. weight: math.unit(225, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/epona/front.svg",
  29257. extra: 2445 / 2290,
  29258. bottom: 251 / 2696
  29259. }
  29260. },
  29261. back: {
  29262. height: math.unit(7 + 7 / 12, "feet"),
  29263. weight: math.unit(225, "lb"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/epona/back.svg",
  29267. extra: 2546 / 2408,
  29268. bottom: 44 / 2589
  29269. }
  29270. },
  29271. genitals: {
  29272. height: math.unit(1.5, "feet"),
  29273. name: "Genitals",
  29274. image: {
  29275. source: "./media/characters/epona/genitals.svg"
  29276. }
  29277. },
  29278. },
  29279. [
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(7 + 7 / 12, "feet"),
  29283. default: true
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(7, "feet"),
  29292. weight: math.unit(518, "lb"),
  29293. name: "Front",
  29294. image: {
  29295. source: "./media/characters/avia-bloodbourn/front.svg",
  29296. extra: 1466 / 1350,
  29297. bottom: 65 / 1527
  29298. }
  29299. },
  29300. },
  29301. [
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(9.35, "feet"),
  29309. weight: math.unit(600, "lb"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/amera/front.svg",
  29313. extra: 891 / 818,
  29314. bottom: 30 / 922.7
  29315. }
  29316. },
  29317. back: {
  29318. height: math.unit(9.35, "feet"),
  29319. weight: math.unit(600, "lb"),
  29320. name: "Back",
  29321. image: {
  29322. source: "./media/characters/amera/back.svg",
  29323. extra: 876 / 824,
  29324. bottom: 6.8 / 884
  29325. }
  29326. },
  29327. dick: {
  29328. height: math.unit(2.14, "feet"),
  29329. name: "Dick",
  29330. image: {
  29331. source: "./media/characters/amera/dick.svg"
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Normal",
  29338. height: math.unit(9.35, "feet"),
  29339. default: true
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29345. {
  29346. kneeling: {
  29347. height: math.unit(3 + 4 / 12, "feet"),
  29348. weight: math.unit(90, "lb"),
  29349. name: "Kneeling",
  29350. image: {
  29351. source: "./media/characters/rosewen/kneeling.svg",
  29352. extra: 1835 / 1571,
  29353. bottom: 27.7 / 1862
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(3 + 4 / 12, "feet"),
  29361. default: true
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(5 + 10 / 12, "feet"),
  29370. weight: math.unit(200, "lb"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/sabah/front.svg",
  29374. extra: 849 / 763,
  29375. bottom: 33.9 / 881
  29376. }
  29377. },
  29378. },
  29379. [
  29380. {
  29381. name: "Normal",
  29382. height: math.unit(5 + 10 / 12, "feet"),
  29383. default: true
  29384. },
  29385. ]
  29386. ))
  29387. characterMakers.push(() => makeCharacter(
  29388. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29389. {
  29390. front: {
  29391. height: math.unit(3 + 5 / 12, "feet"),
  29392. weight: math.unit(40, "kg"),
  29393. name: "Front",
  29394. image: {
  29395. source: "./media/characters/purple-flame/front.svg",
  29396. extra: 1577 / 1412,
  29397. bottom: 97 / 1694
  29398. }
  29399. },
  29400. frontDressed: {
  29401. height: math.unit(3 + 5 / 12, "feet"),
  29402. weight: math.unit(40, "kg"),
  29403. name: "Front (Dressed)",
  29404. image: {
  29405. source: "./media/characters/purple-flame/front-dressed.svg",
  29406. extra: 1577 / 1412,
  29407. bottom: 97 / 1694
  29408. }
  29409. },
  29410. headphones: {
  29411. height: math.unit(0.85, "feet"),
  29412. name: "Headphones",
  29413. image: {
  29414. source: "./media/characters/purple-flame/headphones.svg"
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Really Small",
  29421. height: math.unit(5, "cm")
  29422. },
  29423. {
  29424. name: "Micro",
  29425. height: math.unit(1 + 5 / 12, "feet")
  29426. },
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(3 + 5 / 12, "feet"),
  29430. default: true
  29431. },
  29432. {
  29433. name: "Minimacro",
  29434. height: math.unit(125, "feet")
  29435. },
  29436. {
  29437. name: "Macro",
  29438. height: math.unit(0.5, "miles")
  29439. },
  29440. {
  29441. name: "Megamacro",
  29442. height: math.unit(50, "miles")
  29443. },
  29444. {
  29445. name: "Gigantic",
  29446. height: math.unit(750, "miles")
  29447. },
  29448. {
  29449. name: "Planetary",
  29450. height: math.unit(15000, "miles")
  29451. },
  29452. ]
  29453. ))
  29454. characterMakers.push(() => makeCharacter(
  29455. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29456. {
  29457. front: {
  29458. height: math.unit(14, "feet"),
  29459. weight: math.unit(959, "lb"),
  29460. name: "Front",
  29461. image: {
  29462. source: "./media/characters/arsenal/front.svg",
  29463. extra: 2357 / 2157,
  29464. bottom: 93 / 2458
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Normal",
  29471. height: math.unit(14, "feet"),
  29472. default: true
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(6, "feet"),
  29481. weight: math.unit(150, "lb"),
  29482. name: "Front",
  29483. image: {
  29484. source: "./media/characters/adira/front.svg",
  29485. extra: 1078 / 1029,
  29486. bottom: 87 / 1166
  29487. }
  29488. },
  29489. },
  29490. [
  29491. {
  29492. name: "Micro",
  29493. height: math.unit(4, "inches"),
  29494. default: true
  29495. },
  29496. {
  29497. name: "Macro",
  29498. height: math.unit(50, "feet")
  29499. },
  29500. ]
  29501. ))
  29502. characterMakers.push(() => makeCharacter(
  29503. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29504. {
  29505. front: {
  29506. height: math.unit(16, "feet"),
  29507. weight: math.unit(1000, "lb"),
  29508. name: "Front",
  29509. image: {
  29510. source: "./media/characters/grim/front.svg",
  29511. extra: 622 / 614,
  29512. bottom: 18.1 / 642
  29513. }
  29514. },
  29515. back: {
  29516. height: math.unit(16, "feet"),
  29517. weight: math.unit(1000, "lb"),
  29518. name: "Back",
  29519. image: {
  29520. source: "./media/characters/grim/back.svg",
  29521. extra: 610.6 / 602,
  29522. bottom: 40.8 / 652
  29523. }
  29524. },
  29525. hunched: {
  29526. height: math.unit(9.75, "feet"),
  29527. weight: math.unit(1000, "lb"),
  29528. name: "Hunched",
  29529. image: {
  29530. source: "./media/characters/grim/hunched.svg",
  29531. extra: 304 / 297,
  29532. bottom: 35.4 / 394
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Normal",
  29539. height: math.unit(16, "feet"),
  29540. default: true
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(2.3, "meters"),
  29549. weight: math.unit(300, "lb"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/sinja/front-sfw.svg",
  29553. extra: 1393 / 1294,
  29554. bottom: 70 / 1463
  29555. }
  29556. },
  29557. frontNsfw: {
  29558. height: math.unit(2.3, "meters"),
  29559. weight: math.unit(300, "lb"),
  29560. name: "Front (NSFW)",
  29561. image: {
  29562. source: "./media/characters/sinja/front-nsfw.svg",
  29563. extra: 1393 / 1294,
  29564. bottom: 70 / 1463
  29565. }
  29566. },
  29567. back: {
  29568. height: math.unit(2.3, "meters"),
  29569. weight: math.unit(300, "lb"),
  29570. name: "Back",
  29571. image: {
  29572. source: "./media/characters/sinja/back.svg",
  29573. extra: 1393 / 1294,
  29574. bottom: 70 / 1463
  29575. }
  29576. },
  29577. head: {
  29578. height: math.unit(1.771, "feet"),
  29579. name: "Head",
  29580. image: {
  29581. source: "./media/characters/sinja/head.svg"
  29582. }
  29583. },
  29584. slit: {
  29585. height: math.unit(0.8, "feet"),
  29586. name: "Slit",
  29587. image: {
  29588. source: "./media/characters/sinja/slit.svg"
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(2.3, "meters")
  29596. },
  29597. {
  29598. name: "Macro",
  29599. height: math.unit(91, "meters"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Megamacro",
  29604. height: math.unit(91440, "meters")
  29605. },
  29606. {
  29607. name: "Gigamacro",
  29608. height: math.unit(60960000, "meters")
  29609. },
  29610. {
  29611. name: "Teramacro",
  29612. height: math.unit(9144000000, "meters")
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(1.7, "meters"),
  29621. weight: math.unit(130, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/kyu/front.svg",
  29625. extra: 415 / 395,
  29626. bottom: 5 / 420
  29627. }
  29628. },
  29629. head: {
  29630. height: math.unit(1.75, "feet"),
  29631. name: "Head",
  29632. image: {
  29633. source: "./media/characters/kyu/head.svg"
  29634. }
  29635. },
  29636. foot: {
  29637. height: math.unit(0.81, "feet"),
  29638. name: "Foot",
  29639. image: {
  29640. source: "./media/characters/kyu/foot.svg"
  29641. }
  29642. },
  29643. },
  29644. [
  29645. {
  29646. name: "Normal",
  29647. height: math.unit(1.7, "meters")
  29648. },
  29649. {
  29650. name: "Macro",
  29651. height: math.unit(131, "feet"),
  29652. default: true
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit(91440, "meters")
  29657. },
  29658. {
  29659. name: "Gigamacro",
  29660. height: math.unit(60960000, "meters")
  29661. },
  29662. {
  29663. name: "Teramacro",
  29664. height: math.unit(9144000000, "meters")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29670. {
  29671. front: {
  29672. height: math.unit(7 + 1 / 12, "feet"),
  29673. weight: math.unit(250, "lb"),
  29674. name: "Front",
  29675. image: {
  29676. source: "./media/characters/joey/front.svg",
  29677. extra: 1791 / 1537,
  29678. bottom: 28 / 1816
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Micro",
  29685. height: math.unit(3, "inches")
  29686. },
  29687. {
  29688. name: "Normal",
  29689. height: math.unit(7 + 1 / 12, "feet"),
  29690. default: true
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29696. {
  29697. front: {
  29698. height: math.unit(165, "cm"),
  29699. weight: math.unit(140, "lb"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/sam-evans/front.svg",
  29703. extra: 3417 / 3230,
  29704. bottom: 41.3 / 3417
  29705. }
  29706. },
  29707. frontSixTails: {
  29708. height: math.unit(165, "cm"),
  29709. weight: math.unit(140, "lb"),
  29710. name: "Front-six-tails",
  29711. image: {
  29712. source: "./media/characters/sam-evans/front-six-tails.svg",
  29713. extra: 3417 / 3230,
  29714. bottom: 41.3 / 3417
  29715. }
  29716. },
  29717. back: {
  29718. height: math.unit(165, "cm"),
  29719. weight: math.unit(140, "lb"),
  29720. name: "Back",
  29721. image: {
  29722. source: "./media/characters/sam-evans/back.svg",
  29723. extra: 3227 / 3032,
  29724. bottom: 6.8 / 3234
  29725. }
  29726. },
  29727. face: {
  29728. height: math.unit(0.68, "feet"),
  29729. name: "Face",
  29730. image: {
  29731. source: "./media/characters/sam-evans/face.svg"
  29732. }
  29733. },
  29734. },
  29735. [
  29736. {
  29737. name: "Normal",
  29738. height: math.unit(165, "cm"),
  29739. default: true
  29740. },
  29741. {
  29742. name: "Macro",
  29743. height: math.unit(100, "meters")
  29744. },
  29745. {
  29746. name: "Macro+",
  29747. height: math.unit(800, "meters")
  29748. },
  29749. {
  29750. name: "Macro++",
  29751. height: math.unit(3, "km")
  29752. },
  29753. {
  29754. name: "Macro+++",
  29755. height: math.unit(30, "km")
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(10, "feet"),
  29764. weight: math.unit(750, "lb"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/juliet-a/front.svg",
  29768. extra: 1766 / 1720,
  29769. bottom: 43 / 1809
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(10, "feet"),
  29774. weight: math.unit(750, "lb"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/juliet-a/back.svg",
  29778. extra: 1781 / 1734,
  29779. bottom: 35 / 1810,
  29780. }
  29781. },
  29782. },
  29783. [
  29784. {
  29785. name: "Normal",
  29786. height: math.unit(10, "feet"),
  29787. default: true
  29788. },
  29789. {
  29790. name: "Dragon Form",
  29791. height: math.unit(250, "feet")
  29792. },
  29793. {
  29794. name: "Macro",
  29795. height: math.unit(1000, "feet")
  29796. },
  29797. {
  29798. name: "Megamacro",
  29799. height: math.unit(10000, "feet")
  29800. }
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29805. {
  29806. regular: {
  29807. height: math.unit(7 + 3 / 12, "feet"),
  29808. weight: math.unit(260, "lb"),
  29809. name: "Regular",
  29810. image: {
  29811. source: "./media/characters/wild/regular.svg",
  29812. extra: 97.45 / 92,
  29813. bottom: 6.8 / 104.3
  29814. }
  29815. },
  29816. biggums: {
  29817. height: math.unit(8 + 6 / 12, "feet"),
  29818. weight: math.unit(425, "lb"),
  29819. name: "Biggums",
  29820. image: {
  29821. source: "./media/characters/wild/biggums.svg",
  29822. extra: 97.45 / 92,
  29823. bottom: 7.5 / 132.34
  29824. }
  29825. },
  29826. mawRegular: {
  29827. height: math.unit(1.24, "feet"),
  29828. name: "Maw (Regular)",
  29829. image: {
  29830. source: "./media/characters/wild/maw.svg"
  29831. }
  29832. },
  29833. mawBiggums: {
  29834. height: math.unit(1.47, "feet"),
  29835. name: "Maw (Biggums)",
  29836. image: {
  29837. source: "./media/characters/wild/maw.svg"
  29838. }
  29839. },
  29840. },
  29841. [
  29842. {
  29843. name: "Normal",
  29844. height: math.unit(7 + 3 / 12, "feet"),
  29845. default: true
  29846. },
  29847. ]
  29848. ))
  29849. characterMakers.push(() => makeCharacter(
  29850. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29851. {
  29852. front: {
  29853. height: math.unit(2.5, "meters"),
  29854. weight: math.unit(200, "kg"),
  29855. name: "Front",
  29856. image: {
  29857. source: "./media/characters/vidar/front.svg",
  29858. extra: 2994 / 2795,
  29859. bottom: 56 / 3061
  29860. }
  29861. },
  29862. back: {
  29863. height: math.unit(2.5, "meters"),
  29864. weight: math.unit(200, "kg"),
  29865. name: "Back",
  29866. image: {
  29867. source: "./media/characters/vidar/back.svg",
  29868. extra: 3131 / 2928,
  29869. bottom: 13.5 / 3141.5
  29870. }
  29871. },
  29872. feral: {
  29873. height: math.unit(2.5, "meters"),
  29874. weight: math.unit(2000, "kg"),
  29875. name: "Feral",
  29876. image: {
  29877. source: "./media/characters/vidar/feral.svg",
  29878. extra: 2790 / 1765,
  29879. bottom: 6 / 2796
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Normal",
  29886. height: math.unit(2.5, "meters"),
  29887. default: true
  29888. },
  29889. {
  29890. name: "Macro",
  29891. height: math.unit(100, "meters")
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(5 + 9 / 12, "feet"),
  29900. weight: math.unit(120, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/ash/front.svg",
  29904. extra: 2189 / 1961,
  29905. bottom: 5.2 / 2194
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(5 + 9 / 12, "feet"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(9, "feet"),
  29922. weight: math.unit(10000, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/gygabite/front.svg",
  29926. bottom: 31.7 / 537.8,
  29927. extra: 505 / 370
  29928. }
  29929. },
  29930. },
  29931. [
  29932. {
  29933. name: "Normal",
  29934. height: math.unit(9, "feet"),
  29935. default: true
  29936. },
  29937. ]
  29938. ))
  29939. characterMakers.push(() => makeCharacter(
  29940. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29941. {
  29942. front: {
  29943. height: math.unit(12, "feet"),
  29944. weight: math.unit(4000, "lb"),
  29945. name: "Front",
  29946. image: {
  29947. source: "./media/characters/p0tat0/front.svg",
  29948. extra: 1065 / 921,
  29949. bottom: 55.7 / 1121.25
  29950. }
  29951. },
  29952. },
  29953. [
  29954. {
  29955. name: "Normal",
  29956. height: math.unit(12, "feet"),
  29957. default: true
  29958. },
  29959. ]
  29960. ))
  29961. characterMakers.push(() => makeCharacter(
  29962. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29963. {
  29964. side: {
  29965. height: math.unit(6.5, "feet"),
  29966. weight: math.unit(800, "lb"),
  29967. name: "Side",
  29968. image: {
  29969. source: "./media/characters/dusk/side.svg",
  29970. extra: 615 / 373,
  29971. bottom: 53 / 664
  29972. }
  29973. },
  29974. sitting: {
  29975. height: math.unit(7, "feet"),
  29976. weight: math.unit(800, "lb"),
  29977. name: "Sitting",
  29978. image: {
  29979. source: "./media/characters/dusk/sitting.svg",
  29980. extra: 753 / 425,
  29981. bottom: 33 / 774
  29982. }
  29983. },
  29984. head: {
  29985. height: math.unit(6.1, "feet"),
  29986. name: "Head",
  29987. image: {
  29988. source: "./media/characters/dusk/head.svg"
  29989. }
  29990. },
  29991. },
  29992. [
  29993. {
  29994. name: "Normal",
  29995. height: math.unit(7, "feet"),
  29996. default: true
  29997. },
  29998. ]
  29999. ))
  30000. characterMakers.push(() => makeCharacter(
  30001. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30002. {
  30003. front: {
  30004. height: math.unit(15, "feet"),
  30005. weight: math.unit(7000, "lb"),
  30006. name: "Front",
  30007. image: {
  30008. source: "./media/characters/jay-direwolf/front.svg",
  30009. extra: 1810 / 1732,
  30010. bottom: 66 / 1892
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(15, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(4 + 9 / 12, "feet"),
  30027. weight: math.unit(130, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/anchovie/front.svg",
  30031. extra: 382 / 350,
  30032. bottom: 25 / 409
  30033. }
  30034. },
  30035. back: {
  30036. height: math.unit(4 + 9 / 12, "feet"),
  30037. weight: math.unit(130, "lb"),
  30038. name: "Back",
  30039. image: {
  30040. source: "./media/characters/anchovie/back.svg",
  30041. extra: 385 / 352,
  30042. bottom: 16.6 / 402
  30043. }
  30044. },
  30045. frontDressed: {
  30046. height: math.unit(4 + 9 / 12, "feet"),
  30047. weight: math.unit(130, "lb"),
  30048. name: "Front (Dressed)",
  30049. image: {
  30050. source: "./media/characters/anchovie/front-dressed.svg",
  30051. extra: 382 / 350,
  30052. bottom: 25 / 409
  30053. }
  30054. },
  30055. backDressed: {
  30056. height: math.unit(4 + 9 / 12, "feet"),
  30057. weight: math.unit(130, "lb"),
  30058. name: "Back (Dressed)",
  30059. image: {
  30060. source: "./media/characters/anchovie/back-dressed.svg",
  30061. extra: 385 / 352,
  30062. bottom: 16.6 / 402
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Micro",
  30069. height: math.unit(6.4, "inches")
  30070. },
  30071. {
  30072. name: "Normal",
  30073. height: math.unit(4 + 9 / 12, "feet"),
  30074. default: true
  30075. },
  30076. ]
  30077. ))
  30078. characterMakers.push(() => makeCharacter(
  30079. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30080. {
  30081. front: {
  30082. height: math.unit(2, "meters"),
  30083. weight: math.unit(180, "lb"),
  30084. name: "Front",
  30085. image: {
  30086. source: "./media/characters/acidrenamon/front.svg",
  30087. extra: 987 / 890,
  30088. bottom: 22.8 / 1009
  30089. }
  30090. },
  30091. back: {
  30092. height: math.unit(2, "meters"),
  30093. weight: math.unit(180, "lb"),
  30094. name: "Back",
  30095. image: {
  30096. source: "./media/characters/acidrenamon/back.svg",
  30097. extra: 983 / 891,
  30098. bottom: 8.4 / 992
  30099. }
  30100. },
  30101. head: {
  30102. height: math.unit(1.92, "feet"),
  30103. name: "Head",
  30104. image: {
  30105. source: "./media/characters/acidrenamon/head.svg"
  30106. }
  30107. },
  30108. rump: {
  30109. height: math.unit(1.72, "feet"),
  30110. name: "Rump",
  30111. image: {
  30112. source: "./media/characters/acidrenamon/rump.svg"
  30113. }
  30114. },
  30115. tail: {
  30116. height: math.unit(4.2, "feet"),
  30117. name: "Tail",
  30118. image: {
  30119. source: "./media/characters/acidrenamon/tail.svg"
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(2, "meters"),
  30127. default: true
  30128. },
  30129. {
  30130. name: "Minimacro",
  30131. height: math.unit(7, "meters")
  30132. },
  30133. {
  30134. name: "Macro",
  30135. height: math.unit(200, "meters")
  30136. },
  30137. {
  30138. name: "Gigamacro",
  30139. height: math.unit(0.2, "earths")
  30140. },
  30141. ]
  30142. ))
  30143. characterMakers.push(() => makeCharacter(
  30144. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30145. {
  30146. front: {
  30147. height: math.unit(152, "feet"),
  30148. name: "Front",
  30149. image: {
  30150. source: "./media/characters/kenzie-lee/front.svg",
  30151. extra: 1869/1774,
  30152. bottom: 128/1997
  30153. }
  30154. },
  30155. side: {
  30156. height: math.unit(86, "feet"),
  30157. name: "Side",
  30158. image: {
  30159. source: "./media/characters/kenzie-lee/side.svg",
  30160. extra: 930/815,
  30161. bottom: 177/1107
  30162. }
  30163. },
  30164. paw: {
  30165. height: math.unit(15, "feet"),
  30166. name: "Paw",
  30167. image: {
  30168. source: "./media/characters/kenzie-lee/paw.svg"
  30169. }
  30170. },
  30171. },
  30172. [
  30173. {
  30174. name: "Kenzie Flea",
  30175. height: math.unit(2, "mm"),
  30176. default: true
  30177. },
  30178. {
  30179. name: "Micro",
  30180. height: math.unit(2, "inches")
  30181. },
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(152, "feet")
  30185. },
  30186. {
  30187. name: "Megamacro",
  30188. height: math.unit(7, "miles")
  30189. },
  30190. {
  30191. name: "Gigamacro",
  30192. height: math.unit(8000, "miles")
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(6, "feet"),
  30201. name: "Front",
  30202. image: {
  30203. source: "./media/characters/withers/front.svg",
  30204. extra: 1935/1760,
  30205. bottom: 72/2007
  30206. }
  30207. },
  30208. back: {
  30209. height: math.unit(6, "feet"),
  30210. name: "Back",
  30211. image: {
  30212. source: "./media/characters/withers/back.svg",
  30213. extra: 1944/1792,
  30214. bottom: 12/1956
  30215. }
  30216. },
  30217. dressed: {
  30218. height: math.unit(6, "feet"),
  30219. name: "Dressed",
  30220. image: {
  30221. source: "./media/characters/withers/dressed.svg",
  30222. extra: 1937/1765,
  30223. bottom: 73/2010
  30224. }
  30225. },
  30226. phase1: {
  30227. height: math.unit(1.1, "feet"),
  30228. name: "Phase 1",
  30229. image: {
  30230. source: "./media/characters/withers/phase-1.svg",
  30231. extra: 1885/1232,
  30232. bottom: 0/1885
  30233. }
  30234. },
  30235. phase2: {
  30236. height: math.unit(1.05, "feet"),
  30237. name: "Phase 2",
  30238. image: {
  30239. source: "./media/characters/withers/phase-2.svg",
  30240. extra: 1792/1090,
  30241. bottom: 0/1792
  30242. }
  30243. },
  30244. partyWipe: {
  30245. height: math.unit(1.1, "feet"),
  30246. name: "Party Wipe",
  30247. image: {
  30248. source: "./media/characters/withers/party-wipe.svg",
  30249. extra: 1864/1207,
  30250. bottom: 0/1864
  30251. }
  30252. },
  30253. },
  30254. [
  30255. {
  30256. name: "Macro",
  30257. height: math.unit(167, "feet"),
  30258. default: true
  30259. },
  30260. {
  30261. name: "Megamacro",
  30262. height: math.unit(15, "miles")
  30263. }
  30264. ]
  30265. ))
  30266. characterMakers.push(() => makeCharacter(
  30267. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30268. {
  30269. front: {
  30270. height: math.unit(6 + 7 / 12, "feet"),
  30271. weight: math.unit(250, "lb"),
  30272. name: "Front",
  30273. image: {
  30274. source: "./media/characters/nemoskii/front.svg",
  30275. extra: 2270 / 1734,
  30276. bottom: 86 / 2354
  30277. }
  30278. },
  30279. back: {
  30280. height: math.unit(6 + 7 / 12, "feet"),
  30281. weight: math.unit(250, "lb"),
  30282. name: "Back",
  30283. image: {
  30284. source: "./media/characters/nemoskii/back.svg",
  30285. extra: 1845 / 1788,
  30286. bottom: 10.5 / 1852
  30287. }
  30288. },
  30289. head: {
  30290. height: math.unit(1.31, "feet"),
  30291. name: "Head",
  30292. image: {
  30293. source: "./media/characters/nemoskii/head.svg"
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Micro",
  30300. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30301. },
  30302. {
  30303. name: "Normal",
  30304. height: math.unit(6 + 7 / 12, "feet"),
  30305. default: true
  30306. },
  30307. {
  30308. name: "Macro",
  30309. height: math.unit((6 + 7 / 12) * 150, "feet")
  30310. },
  30311. {
  30312. name: "Macro+",
  30313. height: math.unit((6 + 7 / 12) * 500, "feet")
  30314. },
  30315. {
  30316. name: "Megamacro",
  30317. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30318. },
  30319. ]
  30320. ))
  30321. characterMakers.push(() => makeCharacter(
  30322. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30323. {
  30324. front: {
  30325. height: math.unit(1, "mile"),
  30326. weight: math.unit(265261.9, "lb"),
  30327. name: "Front",
  30328. image: {
  30329. source: "./media/characters/shui/front.svg",
  30330. extra: 1633 / 1564,
  30331. bottom: 91.5 / 1726
  30332. }
  30333. },
  30334. },
  30335. [
  30336. {
  30337. name: "Macro",
  30338. height: math.unit(1, "mile"),
  30339. default: true
  30340. },
  30341. ]
  30342. ))
  30343. characterMakers.push(() => makeCharacter(
  30344. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30345. {
  30346. front: {
  30347. height: math.unit(12 + 6 / 12, "feet"),
  30348. weight: math.unit(1342, "lb"),
  30349. name: "Front",
  30350. image: {
  30351. source: "./media/characters/arokh-takakura/front.svg",
  30352. extra: 1089 / 1043,
  30353. bottom: 77.4 / 1176.7
  30354. }
  30355. },
  30356. back: {
  30357. height: math.unit(12 + 6 / 12, "feet"),
  30358. weight: math.unit(1342, "lb"),
  30359. name: "Back",
  30360. image: {
  30361. source: "./media/characters/arokh-takakura/back.svg",
  30362. extra: 1046 / 1019,
  30363. bottom: 102 / 1150
  30364. }
  30365. },
  30366. },
  30367. [
  30368. {
  30369. name: "Big",
  30370. height: math.unit(12 + 6 / 12, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(5 + 6 / 12, "feet"),
  30380. weight: math.unit(150, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/theo/front.svg",
  30384. extra: 1184 / 1131,
  30385. bottom: 7.4 / 1191
  30386. }
  30387. },
  30388. },
  30389. [
  30390. {
  30391. name: "Micro",
  30392. height: math.unit(5, "inches")
  30393. },
  30394. {
  30395. name: "Normal",
  30396. height: math.unit(5 + 6 / 12, "feet"),
  30397. default: true
  30398. },
  30399. ]
  30400. ))
  30401. characterMakers.push(() => makeCharacter(
  30402. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30403. {
  30404. front: {
  30405. height: math.unit(5 + 9 / 12, "feet"),
  30406. weight: math.unit(130, "lb"),
  30407. name: "Front",
  30408. image: {
  30409. source: "./media/characters/cecelia-swift/front.svg",
  30410. extra: 502 / 484,
  30411. bottom: 23 / 523
  30412. }
  30413. },
  30414. back: {
  30415. height: math.unit(5 + 9 / 12, "feet"),
  30416. weight: math.unit(130, "lb"),
  30417. name: "Back",
  30418. image: {
  30419. source: "./media/characters/cecelia-swift/back.svg",
  30420. extra: 499 / 485,
  30421. bottom: 12 / 511
  30422. }
  30423. },
  30424. head: {
  30425. height: math.unit(0.90, "feet"),
  30426. name: "Head",
  30427. image: {
  30428. source: "./media/characters/cecelia-swift/head.svg"
  30429. }
  30430. },
  30431. rump: {
  30432. height: math.unit(1.75, "feet"),
  30433. name: "Rump",
  30434. image: {
  30435. source: "./media/characters/cecelia-swift/rump.svg"
  30436. }
  30437. },
  30438. },
  30439. [
  30440. {
  30441. name: "Normal",
  30442. height: math.unit(5 + 9 / 12, "feet"),
  30443. default: true
  30444. },
  30445. {
  30446. name: "Big",
  30447. height: math.unit(50, "feet")
  30448. },
  30449. {
  30450. name: "Macro",
  30451. height: math.unit(100, "feet")
  30452. },
  30453. {
  30454. name: "Macro+",
  30455. height: math.unit(500, "feet")
  30456. },
  30457. {
  30458. name: "Macro++",
  30459. height: math.unit(1000, "feet")
  30460. },
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30465. {
  30466. front: {
  30467. height: math.unit(6, "feet"),
  30468. weight: math.unit(150, "lb"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/kaunan/front.svg",
  30472. extra: 2890 / 2523,
  30473. bottom: 49 / 2939
  30474. }
  30475. },
  30476. },
  30477. [
  30478. {
  30479. name: "Macro",
  30480. height: math.unit(150, "feet"),
  30481. default: true
  30482. },
  30483. ]
  30484. ))
  30485. characterMakers.push(() => makeCharacter(
  30486. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30487. {
  30488. dressed: {
  30489. height: math.unit(175, "cm"),
  30490. weight: math.unit(60, "kg"),
  30491. name: "Dressed",
  30492. image: {
  30493. source: "./media/characters/fei/dressed.svg",
  30494. extra: 1402/1278,
  30495. bottom: 27/1429
  30496. }
  30497. },
  30498. nude: {
  30499. height: math.unit(175, "cm"),
  30500. weight: math.unit(60, "kg"),
  30501. name: "Nude",
  30502. image: {
  30503. source: "./media/characters/fei/nude.svg",
  30504. extra: 1402/1278,
  30505. bottom: 27/1429
  30506. }
  30507. },
  30508. heels: {
  30509. height: math.unit(0.466, "feet"),
  30510. name: "Heels",
  30511. image: {
  30512. source: "./media/characters/fei/heels.svg",
  30513. extra: 156/152,
  30514. bottom: 28/184
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Mortal",
  30521. height: math.unit(175, "cm")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(3500, "m")
  30526. },
  30527. {
  30528. name: "Stroll",
  30529. height: math.unit(18.4, "km"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Showoff",
  30534. height: math.unit(175, "km")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(7, "feet"),
  30543. weight: math.unit(1000, "kg"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/edrax/front.svg",
  30547. extra: 2838 / 2550,
  30548. bottom: 130 / 2968
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Small",
  30555. height: math.unit(7, "feet")
  30556. },
  30557. {
  30558. name: "Normal",
  30559. height: math.unit(1500, "meters")
  30560. },
  30561. {
  30562. name: "Mega",
  30563. height: math.unit(12000000, "km"),
  30564. default: true
  30565. },
  30566. {
  30567. name: "Megamacro",
  30568. height: math.unit(10600000, "lightyears")
  30569. },
  30570. {
  30571. name: "Hypermacro",
  30572. height: math.unit(256, "yottameters")
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(10, "feet"),
  30581. weight: math.unit(750, "lb"),
  30582. name: "Front",
  30583. image: {
  30584. source: "./media/characters/clove/front.svg",
  30585. extra: 1918/1751,
  30586. bottom: 52/1970
  30587. }
  30588. },
  30589. back: {
  30590. height: math.unit(10, "feet"),
  30591. weight: math.unit(750, "lb"),
  30592. name: "Back",
  30593. image: {
  30594. source: "./media/characters/clove/back.svg",
  30595. extra: 1912/1747,
  30596. bottom: 50/1962
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Normal",
  30603. height: math.unit(10, "feet"),
  30604. default: true
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(4, "feet"),
  30613. weight: math.unit(50, "lb"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/alex-rabbit/front.svg",
  30617. extra: 507 / 458,
  30618. bottom: 18.5 / 527
  30619. }
  30620. },
  30621. back: {
  30622. height: math.unit(4, "feet"),
  30623. weight: math.unit(50, "lb"),
  30624. name: "Back",
  30625. image: {
  30626. source: "./media/characters/alex-rabbit/back.svg",
  30627. extra: 502 / 460,
  30628. bottom: 18.9 / 521
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(4, "feet"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(1 + 3 / 12, "feet"),
  30645. weight: math.unit(80, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/zander-rose/front.svg",
  30649. extra: 916 / 797,
  30650. bottom: 17 / 933
  30651. }
  30652. },
  30653. back: {
  30654. height: math.unit(1 + 3 / 12, "feet"),
  30655. weight: math.unit(80, "lb"),
  30656. name: "Back",
  30657. image: {
  30658. source: "./media/characters/zander-rose/back.svg",
  30659. extra: 903 / 779,
  30660. bottom: 31 / 934
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(1 + 3 / 12, "feet"),
  30668. default: true
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30674. {
  30675. anthro: {
  30676. height: math.unit(6, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Anthro",
  30679. image: {
  30680. source: "./media/characters/razz/anthro.svg",
  30681. extra: 1437 / 1343,
  30682. bottom: 48 / 1485
  30683. }
  30684. },
  30685. feral: {
  30686. height: math.unit(6, "feet"),
  30687. weight: math.unit(150, "lb"),
  30688. name: "Feral",
  30689. image: {
  30690. source: "./media/characters/razz/feral.svg",
  30691. extra: 2569 / 1385,
  30692. bottom: 95 / 2664
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(6, "feet"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30706. {
  30707. front: {
  30708. height: math.unit(9 + 4 / 12, "feet"),
  30709. weight: math.unit(500, "lb"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/morrigan/front.svg",
  30713. extra: 2707 / 2579,
  30714. bottom: 156 / 2863
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Normal",
  30721. height: math.unit(9 + 4 / 12, "feet"),
  30722. default: true
  30723. },
  30724. ]
  30725. ))
  30726. characterMakers.push(() => makeCharacter(
  30727. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30728. {
  30729. front: {
  30730. height: math.unit(5, "stories"),
  30731. weight: math.unit(4000, "lb"),
  30732. name: "Front",
  30733. image: {
  30734. source: "./media/characters/jenene/front.svg",
  30735. extra: 1780 / 1710,
  30736. bottom: 57 / 1837
  30737. }
  30738. },
  30739. },
  30740. [
  30741. {
  30742. name: "Normal",
  30743. height: math.unit(5, "stories"),
  30744. default: true
  30745. },
  30746. ]
  30747. ))
  30748. characterMakers.push(() => makeCharacter(
  30749. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30750. {
  30751. taurSfw: {
  30752. height: math.unit(10, "meters"),
  30753. weight: math.unit(17500, "kg"),
  30754. name: "Taur",
  30755. image: {
  30756. source: "./media/characters/faey/taur-sfw.svg",
  30757. extra: 1200 / 968,
  30758. bottom: 41 / 1241
  30759. }
  30760. },
  30761. chestmaw: {
  30762. height: math.unit(2.01, "meters"),
  30763. name: "Chestmaw",
  30764. image: {
  30765. source: "./media/characters/faey/chestmaw.svg"
  30766. }
  30767. },
  30768. foot: {
  30769. height: math.unit(2.43, "meters"),
  30770. name: "Foot",
  30771. image: {
  30772. source: "./media/characters/faey/foot.svg"
  30773. }
  30774. },
  30775. jaws: {
  30776. height: math.unit(1.66, "meters"),
  30777. name: "Jaws",
  30778. image: {
  30779. source: "./media/characters/faey/jaws.svg"
  30780. }
  30781. },
  30782. tongues: {
  30783. height: math.unit(2.01, "meters"),
  30784. name: "Tongues",
  30785. image: {
  30786. source: "./media/characters/faey/tongues.svg"
  30787. }
  30788. },
  30789. },
  30790. [
  30791. {
  30792. name: "Small",
  30793. height: math.unit(10, "meters"),
  30794. default: true
  30795. },
  30796. {
  30797. name: "Big",
  30798. height: math.unit(500000, "km")
  30799. },
  30800. ]
  30801. ))
  30802. characterMakers.push(() => makeCharacter(
  30803. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30804. {
  30805. front: {
  30806. height: math.unit(7, "feet"),
  30807. weight: math.unit(275, "lb"),
  30808. name: "Front",
  30809. image: {
  30810. source: "./media/characters/roku/front.svg",
  30811. extra: 903 / 878,
  30812. bottom: 37 / 940
  30813. }
  30814. },
  30815. },
  30816. [
  30817. {
  30818. name: "Normal",
  30819. height: math.unit(7, "feet"),
  30820. default: true
  30821. },
  30822. {
  30823. name: "Macro",
  30824. height: math.unit(500, "feet")
  30825. },
  30826. {
  30827. name: "Megamacro",
  30828. height: math.unit(200, "miles")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(6 + 2 / 12, "feet"),
  30837. weight: math.unit(150, "lb"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/lira/front.svg",
  30841. extra: 1727 / 1605,
  30842. bottom: 26 / 1753
  30843. }
  30844. },
  30845. back: {
  30846. height: math.unit(6 + 2 / 12, "feet"),
  30847. weight: math.unit(150, "lb"),
  30848. name: "Back",
  30849. image: {
  30850. source: "./media/characters/lira/back.svg",
  30851. extra: 1713/1621,
  30852. bottom: 20/1733
  30853. }
  30854. },
  30855. hand: {
  30856. height: math.unit(0.75, "feet"),
  30857. name: "Hand",
  30858. image: {
  30859. source: "./media/characters/lira/hand.svg"
  30860. }
  30861. },
  30862. maw: {
  30863. height: math.unit(0.65, "feet"),
  30864. name: "Maw",
  30865. image: {
  30866. source: "./media/characters/lira/maw.svg"
  30867. }
  30868. },
  30869. pawDigi: {
  30870. height: math.unit(1.6, "feet"),
  30871. name: "Paw Digi",
  30872. image: {
  30873. source: "./media/characters/lira/paw-digi.svg"
  30874. }
  30875. },
  30876. pawPlanti: {
  30877. height: math.unit(1.4, "feet"),
  30878. name: "Paw Planti",
  30879. image: {
  30880. source: "./media/characters/lira/paw-planti.svg"
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(6 + 2 / 12, "feet"),
  30888. default: true
  30889. },
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(100, "feet")
  30893. },
  30894. {
  30895. name: "Macro²",
  30896. height: math.unit(1600, "feet")
  30897. },
  30898. {
  30899. name: "Planetary",
  30900. height: math.unit(20, "earths")
  30901. },
  30902. ]
  30903. ))
  30904. characterMakers.push(() => makeCharacter(
  30905. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30906. {
  30907. front: {
  30908. height: math.unit(6, "feet"),
  30909. weight: math.unit(150, "lb"),
  30910. name: "Front",
  30911. image: {
  30912. source: "./media/characters/hadjet/front.svg",
  30913. extra: 1480 / 1346,
  30914. bottom: 26 / 1506
  30915. }
  30916. },
  30917. frontNsfw: {
  30918. height: math.unit(6, "feet"),
  30919. weight: math.unit(150, "lb"),
  30920. name: "Front (NSFW)",
  30921. image: {
  30922. source: "./media/characters/hadjet/front-nsfw.svg",
  30923. extra: 1440 / 1358,
  30924. bottom: 52 / 1492
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Macro",
  30931. height: math.unit(10, "stories"),
  30932. default: true
  30933. },
  30934. {
  30935. name: "Megamacro",
  30936. height: math.unit(1.5, "miles")
  30937. },
  30938. {
  30939. name: "Megamacro+",
  30940. height: math.unit(5, "miles")
  30941. },
  30942. ]
  30943. ))
  30944. characterMakers.push(() => makeCharacter(
  30945. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30946. {
  30947. side: {
  30948. height: math.unit(106, "feet"),
  30949. weight: math.unit(500, "tonnes"),
  30950. name: "Side",
  30951. image: {
  30952. source: "./media/characters/kodran/side.svg",
  30953. extra: 553 / 480,
  30954. bottom: 33 / 586
  30955. }
  30956. },
  30957. front: {
  30958. height: math.unit(132, "feet"),
  30959. weight: math.unit(500, "tonnes"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/kodran/front.svg",
  30963. extra: 667 / 643,
  30964. bottom: 42 / 709
  30965. }
  30966. },
  30967. flying: {
  30968. height: math.unit(350, "feet"),
  30969. weight: math.unit(500, "tonnes"),
  30970. name: "Flying",
  30971. image: {
  30972. source: "./media/characters/kodran/flying.svg"
  30973. }
  30974. },
  30975. foot: {
  30976. height: math.unit(33, "feet"),
  30977. name: "Foot",
  30978. image: {
  30979. source: "./media/characters/kodran/foot.svg"
  30980. }
  30981. },
  30982. footFront: {
  30983. height: math.unit(19, "feet"),
  30984. name: "Foot (Front)",
  30985. image: {
  30986. source: "./media/characters/kodran/foot-front.svg",
  30987. extra: 261 / 261,
  30988. bottom: 91 / 352
  30989. }
  30990. },
  30991. headFront: {
  30992. height: math.unit(53, "feet"),
  30993. name: "Head (Front)",
  30994. image: {
  30995. source: "./media/characters/kodran/head-front.svg"
  30996. }
  30997. },
  30998. headSide: {
  30999. height: math.unit(65, "feet"),
  31000. name: "Head (Side)",
  31001. image: {
  31002. source: "./media/characters/kodran/head-side.svg"
  31003. }
  31004. },
  31005. throat: {
  31006. height: math.unit(79, "feet"),
  31007. name: "Throat",
  31008. image: {
  31009. source: "./media/characters/kodran/throat.svg"
  31010. }
  31011. },
  31012. },
  31013. [
  31014. {
  31015. name: "Large",
  31016. height: math.unit(106, "feet"),
  31017. default: true
  31018. },
  31019. ]
  31020. ))
  31021. characterMakers.push(() => makeCharacter(
  31022. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31023. {
  31024. side: {
  31025. height: math.unit(11, "feet"),
  31026. weight: math.unit(150, "lb"),
  31027. name: "Side",
  31028. image: {
  31029. source: "./media/characters/pyxaron/side.svg",
  31030. extra: 305 / 195,
  31031. bottom: 17 / 322
  31032. }
  31033. },
  31034. },
  31035. [
  31036. {
  31037. name: "Normal",
  31038. height: math.unit(11, "feet"),
  31039. default: true
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(150, "lb"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/meep/front.svg",
  31052. extra: 88 / 80,
  31053. bottom: 6 / 94
  31054. }
  31055. },
  31056. },
  31057. [
  31058. {
  31059. name: "Fun Sized",
  31060. height: math.unit(2, "inches"),
  31061. default: true
  31062. },
  31063. {
  31064. name: "Friend Sized",
  31065. height: math.unit(8, "inches")
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(15, "feet"),
  31074. weight: math.unit(2500, "lb"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/holly-rabbit/front.svg",
  31078. extra: 1433 / 1233,
  31079. bottom: 125 / 1558
  31080. }
  31081. },
  31082. dick: {
  31083. height: math.unit(4.6, "feet"),
  31084. name: "Dick",
  31085. image: {
  31086. source: "./media/characters/holly-rabbit/dick.svg"
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Normal",
  31093. height: math.unit(15, "feet"),
  31094. default: true
  31095. },
  31096. {
  31097. name: "Macro",
  31098. height: math.unit(250, "feet")
  31099. },
  31100. {
  31101. name: "Macro+",
  31102. height: math.unit(2500, "feet")
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(3.02, "meters"),
  31111. weight: math.unit(500, "kg"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/drena/front.svg",
  31115. extra: 282 / 243,
  31116. bottom: 8 / 290
  31117. }
  31118. },
  31119. side: {
  31120. height: math.unit(3.02, "meters"),
  31121. weight: math.unit(500, "kg"),
  31122. name: "Side",
  31123. image: {
  31124. source: "./media/characters/drena/side.svg",
  31125. extra: 280 / 245,
  31126. bottom: 10 / 290
  31127. }
  31128. },
  31129. back: {
  31130. height: math.unit(3.02, "meters"),
  31131. weight: math.unit(500, "kg"),
  31132. name: "Back",
  31133. image: {
  31134. source: "./media/characters/drena/back.svg",
  31135. extra: 278 / 243,
  31136. bottom: 2 / 280
  31137. }
  31138. },
  31139. foot: {
  31140. height: math.unit(0.75, "meters"),
  31141. name: "Foot",
  31142. image: {
  31143. source: "./media/characters/drena/foot.svg"
  31144. }
  31145. },
  31146. maw: {
  31147. height: math.unit(0.82, "meters"),
  31148. name: "Maw",
  31149. image: {
  31150. source: "./media/characters/drena/maw.svg"
  31151. }
  31152. },
  31153. eating: {
  31154. height: math.unit(0.75, "meters"),
  31155. name: "Eating",
  31156. image: {
  31157. source: "./media/characters/drena/eating.svg"
  31158. }
  31159. },
  31160. rump: {
  31161. height: math.unit(0.93, "meters"),
  31162. name: "Rump",
  31163. image: {
  31164. source: "./media/characters/drena/rump.svg"
  31165. }
  31166. },
  31167. },
  31168. [
  31169. {
  31170. name: "Normal",
  31171. height: math.unit(3.02, "meters"),
  31172. default: true
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(6 + 4 / 12, "feet"),
  31181. weight: math.unit(250, "lb"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/remmyzilla/front.svg",
  31185. extra: 4033 / 3588,
  31186. bottom: 123 / 4156
  31187. }
  31188. },
  31189. back: {
  31190. height: math.unit(6 + 4 / 12, "feet"),
  31191. weight: math.unit(250, "lb"),
  31192. name: "Back",
  31193. image: {
  31194. source: "./media/characters/remmyzilla/back.svg",
  31195. extra: 1696/1602,
  31196. bottom: 63/1759
  31197. }
  31198. },
  31199. paw: {
  31200. height: math.unit(1.73, "feet"),
  31201. name: "Paw",
  31202. image: {
  31203. source: "./media/characters/remmyzilla/paw.svg"
  31204. },
  31205. extraAttributes: {
  31206. "toeSize": {
  31207. name: "Toe Size",
  31208. power: 2,
  31209. type: "area",
  31210. base: math.unit(0.0035, "m^2")
  31211. },
  31212. "padSize": {
  31213. name: "Pad Size",
  31214. power: 2,
  31215. type: "area",
  31216. base: math.unit(0.015, "m^2")
  31217. },
  31218. "pawsize": {
  31219. name: "Paw Size",
  31220. power: 2,
  31221. type: "area",
  31222. base: math.unit(0.072, "m^2")
  31223. },
  31224. }
  31225. },
  31226. maw: {
  31227. height: math.unit(1.73, "feet"),
  31228. name: "Maw",
  31229. image: {
  31230. source: "./media/characters/remmyzilla/maw.svg"
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Normal",
  31237. height: math.unit(6 + 4 / 12, "feet")
  31238. },
  31239. {
  31240. name: "Minimacro",
  31241. height: math.unit(12 + 8 / 12, "feet")
  31242. },
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(640, "feet"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Megamacro",
  31250. height: math.unit(6400, "feet")
  31251. },
  31252. {
  31253. name: "Gigamacro",
  31254. height: math.unit(64000, "miles")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(2.5, "meters"),
  31263. weight: math.unit(300, "lb"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/lawrence/front.svg",
  31267. extra: 357 / 335,
  31268. bottom: 30 / 387
  31269. }
  31270. },
  31271. back: {
  31272. height: math.unit(2.5, "meters"),
  31273. weight: math.unit(300, "lb"),
  31274. name: "Back",
  31275. image: {
  31276. source: "./media/characters/lawrence/back.svg",
  31277. extra: 357 / 338,
  31278. bottom: 16 / 373
  31279. }
  31280. },
  31281. head: {
  31282. height: math.unit(0.9, "meter"),
  31283. name: "Head",
  31284. image: {
  31285. source: "./media/characters/lawrence/head.svg"
  31286. }
  31287. },
  31288. maw: {
  31289. height: math.unit(0.7, "meter"),
  31290. name: "Maw",
  31291. image: {
  31292. source: "./media/characters/lawrence/maw.svg"
  31293. }
  31294. },
  31295. footBottom: {
  31296. height: math.unit(0.5, "meter"),
  31297. name: "Foot (Bottom)",
  31298. image: {
  31299. source: "./media/characters/lawrence/foot-bottom.svg"
  31300. }
  31301. },
  31302. footTop: {
  31303. height: math.unit(0.5, "meter"),
  31304. name: "Foot (Top)",
  31305. image: {
  31306. source: "./media/characters/lawrence/foot-top.svg"
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(2.5, "meters"),
  31314. default: true
  31315. },
  31316. {
  31317. name: "Macro",
  31318. height: math.unit(95, "meters")
  31319. },
  31320. {
  31321. name: "Megamacro",
  31322. height: math.unit(150, "km")
  31323. },
  31324. ]
  31325. ))
  31326. characterMakers.push(() => makeCharacter(
  31327. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31328. {
  31329. front: {
  31330. height: math.unit(4.2, "meters"),
  31331. preyCapacity: math.unit(50, "m^3"),
  31332. weight: math.unit(30, "tonnes"),
  31333. name: "Front",
  31334. image: {
  31335. source: "./media/characters/sydney/front.svg",
  31336. extra: 1177/1129,
  31337. bottom: 197/1374
  31338. },
  31339. extraAttributes: {
  31340. "length": {
  31341. name: "Length",
  31342. power: 1,
  31343. type: "length",
  31344. base: math.unit(21, "meters")
  31345. },
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Normal",
  31352. height: math.unit(4.2, "meters"),
  31353. default: true
  31354. },
  31355. ]
  31356. ))
  31357. characterMakers.push(() => makeCharacter(
  31358. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31359. {
  31360. back: {
  31361. height: math.unit(201, "feet"),
  31362. name: "Back",
  31363. image: {
  31364. source: "./media/characters/jessica/back.svg",
  31365. extra: 273 / 259,
  31366. bottom: 7 / 280
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(201, "feet"),
  31374. default: true
  31375. },
  31376. {
  31377. name: "Megamacro",
  31378. height: math.unit(8, "miles")
  31379. },
  31380. ]
  31381. ))
  31382. characterMakers.push(() => makeCharacter(
  31383. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31384. {
  31385. side: {
  31386. height: math.unit(5.6, "m"),
  31387. weight: math.unit(8000, "kg"),
  31388. name: "Side",
  31389. image: {
  31390. source: "./media/characters/victoria/side.svg",
  31391. extra: 1542/1229,
  31392. bottom: 124/1666
  31393. }
  31394. },
  31395. maw: {
  31396. height: math.unit(7.14, "feet"),
  31397. name: "Maw",
  31398. image: {
  31399. source: "./media/characters/victoria/maw.svg"
  31400. }
  31401. },
  31402. },
  31403. [
  31404. {
  31405. name: "Normal",
  31406. height: math.unit(5.6, "m"),
  31407. default: true
  31408. },
  31409. ]
  31410. ))
  31411. characterMakers.push(() => makeCharacter(
  31412. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31413. {
  31414. front: {
  31415. height: math.unit(5 + 6 / 12, "feet"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/cat/front.svg",
  31419. extra: 1449/1295,
  31420. bottom: 34/1483
  31421. },
  31422. form: "cat",
  31423. default: true
  31424. },
  31425. back: {
  31426. height: math.unit(5 + 6 / 12, "feet"),
  31427. name: "Back",
  31428. image: {
  31429. source: "./media/characters/cat/back.svg",
  31430. extra: 1466/1301,
  31431. bottom: 19/1485
  31432. },
  31433. form: "cat"
  31434. },
  31435. taur: {
  31436. height: math.unit(7, "feet"),
  31437. name: "Taur",
  31438. image: {
  31439. source: "./media/characters/cat/taur.svg",
  31440. extra: 1389/1233,
  31441. bottom: 83/1472
  31442. },
  31443. form: "taur",
  31444. default: true
  31445. },
  31446. lucarioFront: {
  31447. height: math.unit(4, "feet"),
  31448. name: "Lucario (Front)",
  31449. image: {
  31450. source: "./media/characters/cat/lucario-front.svg",
  31451. extra: 1149/1019,
  31452. bottom: 84/1233
  31453. },
  31454. form: "lucario",
  31455. default: true
  31456. },
  31457. lucarioBack: {
  31458. height: math.unit(4, "feet"),
  31459. name: "Lucario (Back)",
  31460. image: {
  31461. source: "./media/characters/cat/lucario-back.svg",
  31462. extra: 1190/1059,
  31463. bottom: 33/1223
  31464. },
  31465. form: "lucario"
  31466. },
  31467. megaLucario: {
  31468. height: math.unit(4, "feet"),
  31469. name: "Mega Lucario",
  31470. image: {
  31471. source: "./media/characters/cat/mega-lucario.svg",
  31472. extra: 1515 / 1319,
  31473. bottom: 63 / 1578
  31474. },
  31475. form: "lucario"
  31476. },
  31477. nickit: {
  31478. height: math.unit(2, "feet"),
  31479. name: "Nickit",
  31480. image: {
  31481. source: "./media/characters/cat/nickit.svg",
  31482. extra: 1980 / 1585,
  31483. bottom: 102 / 2082
  31484. },
  31485. form: "nickit",
  31486. default: true
  31487. },
  31488. lopunnyFront: {
  31489. height: math.unit(5, "feet"),
  31490. name: "Lopunny (Front)",
  31491. image: {
  31492. source: "./media/characters/cat/lopunny-front.svg",
  31493. extra: 1782 / 1469,
  31494. bottom: 38 / 1820
  31495. },
  31496. form: "lopunny",
  31497. default: true
  31498. },
  31499. lopunnyBack: {
  31500. height: math.unit(5, "feet"),
  31501. name: "Lopunny (Back)",
  31502. image: {
  31503. source: "./media/characters/cat/lopunny-back.svg",
  31504. extra: 1660 / 1490,
  31505. bottom: 25 / 1685
  31506. },
  31507. form: "lopunny"
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Really small",
  31513. height: math.unit(1, "nm"),
  31514. allForms: true
  31515. },
  31516. {
  31517. name: "Micro",
  31518. height: math.unit(5, "inches"),
  31519. allForms: true
  31520. },
  31521. {
  31522. name: "Normal",
  31523. height: math.unit(5 + 6 / 12, "feet"),
  31524. default: true,
  31525. form: "cat"
  31526. },
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(7, "feet"),
  31530. default: true,
  31531. form: "taur"
  31532. },
  31533. {
  31534. name: "Normal",
  31535. height: math.unit(4, "feet"),
  31536. default: true,
  31537. form: "lucario"
  31538. },
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(2, "feet"),
  31542. default: true,
  31543. form: "nickit"
  31544. },
  31545. {
  31546. name: "Normal",
  31547. height: math.unit(5, "feet"),
  31548. default: true,
  31549. form: "lopunny"
  31550. },
  31551. {
  31552. name: "Macro",
  31553. height: math.unit(50, "feet"),
  31554. allForms: true
  31555. },
  31556. {
  31557. name: "Macro+",
  31558. height: math.unit(150, "feet"),
  31559. allForms: true
  31560. },
  31561. {
  31562. name: "Megamacro",
  31563. height: math.unit(100, "miles"),
  31564. allForms: true
  31565. },
  31566. ],
  31567. {
  31568. "cat": {
  31569. name: "Cat",
  31570. default: true
  31571. },
  31572. "taur": {
  31573. name: "Taur",
  31574. },
  31575. "lucario": {
  31576. name: "Lucario",
  31577. },
  31578. "nickit": {
  31579. name: "Nickit",
  31580. },
  31581. "lopunny": {
  31582. name: "Lopunny",
  31583. }
  31584. }
  31585. ))
  31586. characterMakers.push(() => makeCharacter(
  31587. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31588. {
  31589. front: {
  31590. height: math.unit(63.4, "meters"),
  31591. weight: math.unit(3.28349e+6, "kilograms"),
  31592. name: "Front",
  31593. image: {
  31594. source: "./media/characters/kirina-violet/front.svg",
  31595. extra: 2812 / 2725,
  31596. bottom: 0 / 2812
  31597. }
  31598. },
  31599. back: {
  31600. height: math.unit(63.4, "meters"),
  31601. weight: math.unit(3.28349e+6, "kilograms"),
  31602. name: "Back",
  31603. image: {
  31604. source: "./media/characters/kirina-violet/back.svg",
  31605. extra: 2812 / 2725,
  31606. bottom: 0 / 2812
  31607. }
  31608. },
  31609. mouth: {
  31610. height: math.unit(4.35, "meters"),
  31611. name: "Mouth",
  31612. image: {
  31613. source: "./media/characters/kirina-violet/mouth.svg"
  31614. }
  31615. },
  31616. paw: {
  31617. height: math.unit(5.6, "meters"),
  31618. name: "Paw",
  31619. image: {
  31620. source: "./media/characters/kirina-violet/paw.svg"
  31621. }
  31622. },
  31623. tail: {
  31624. height: math.unit(18, "meters"),
  31625. name: "Tail",
  31626. image: {
  31627. source: "./media/characters/kirina-violet/tail.svg"
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Macro",
  31634. height: math.unit(63.4, "meters"),
  31635. default: true
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(75, "feet"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/cat-gigachu/front.svg",
  31647. extra: 1239/1027,
  31648. bottom: 32/1271
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(75, "feet"),
  31653. name: "Back",
  31654. image: {
  31655. source: "./media/characters/cat-gigachu/back.svg",
  31656. extra: 1229/1030,
  31657. bottom: 9/1238
  31658. }
  31659. },
  31660. },
  31661. [
  31662. {
  31663. name: "Dynamax",
  31664. height: math.unit(75, "feet"),
  31665. default: true
  31666. },
  31667. ]
  31668. ))
  31669. characterMakers.push(() => makeCharacter(
  31670. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31671. {
  31672. front: {
  31673. height: math.unit(6, "feet"),
  31674. weight: math.unit(150, "lb"),
  31675. name: "Front",
  31676. image: {
  31677. source: "./media/characters/sfaiyan/front.svg",
  31678. extra: 999 / 978,
  31679. bottom: 5 / 1004
  31680. }
  31681. },
  31682. },
  31683. [
  31684. {
  31685. name: "Normal",
  31686. height: math.unit(1.82, "meters")
  31687. },
  31688. {
  31689. name: "Giant",
  31690. height: math.unit(2.27, "km"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(179, "cm"),
  31700. weight: math.unit(100, "kg"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/raunehkeli/front.svg",
  31704. extra: 1934 / 1926,
  31705. bottom: 0 / 1934
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Normal",
  31712. height: math.unit(179, "cm")
  31713. },
  31714. {
  31715. name: "Maximum",
  31716. height: math.unit(575, "meters"),
  31717. default: true
  31718. },
  31719. ]
  31720. ))
  31721. characterMakers.push(() => makeCharacter(
  31722. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31723. {
  31724. front: {
  31725. height: math.unit(6, "feet"),
  31726. weight: math.unit(150, "lb"),
  31727. name: "Front",
  31728. image: {
  31729. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31730. extra: 2625 / 2518,
  31731. bottom: 60 / 2685
  31732. }
  31733. },
  31734. },
  31735. [
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(6 + 2 / 12, "feet")
  31739. },
  31740. {
  31741. name: "Macro",
  31742. height: math.unit(1180, "feet"),
  31743. default: true
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(5 + 6 / 12, "feet"),
  31752. weight: math.unit(108, "lb"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/lilith-zott/front.svg",
  31756. extra: 2510 / 2238,
  31757. bottom: 100 / 2610
  31758. }
  31759. },
  31760. frontDressed: {
  31761. height: math.unit(5 + 6 / 12, "feet"),
  31762. weight: math.unit(108, "lb"),
  31763. name: "Front (Dressed)",
  31764. image: {
  31765. source: "./media/characters/lilith-zott/front-dressed.svg",
  31766. extra: 2510 / 2238,
  31767. bottom: 100 / 2610
  31768. }
  31769. },
  31770. },
  31771. [
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(5 + 6 / 12, "feet")
  31775. },
  31776. {
  31777. name: "Macro",
  31778. height: math.unit(1030, "feet"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(6, "feet"),
  31788. weight: math.unit(150, "lb"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31792. extra: 2567 / 2435,
  31793. bottom: 39 / 2606
  31794. }
  31795. },
  31796. frontSuper: {
  31797. height: math.unit(6, "feet"),
  31798. name: "Front (Super)",
  31799. image: {
  31800. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31801. extra: 2567 / 2435,
  31802. bottom: 39 / 2606
  31803. }
  31804. },
  31805. },
  31806. [
  31807. {
  31808. name: "Normal",
  31809. height: math.unit(5 + 10 / 12, "feet")
  31810. },
  31811. {
  31812. name: "Macro",
  31813. height: math.unit(1100, "feet"),
  31814. default: true
  31815. },
  31816. ]
  31817. ))
  31818. characterMakers.push(() => makeCharacter(
  31819. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31820. {
  31821. front: {
  31822. height: math.unit(100, "miles"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/sona/front.svg",
  31826. extra: 2433 / 2201,
  31827. bottom: 53 / 2486
  31828. }
  31829. },
  31830. foot: {
  31831. height: math.unit(16.1, "miles"),
  31832. name: "Foot",
  31833. image: {
  31834. source: "./media/characters/sona/foot.svg"
  31835. }
  31836. },
  31837. },
  31838. [
  31839. {
  31840. name: "Macro",
  31841. height: math.unit(100, "miles"),
  31842. default: true
  31843. },
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31848. {
  31849. front: {
  31850. height: math.unit(6, "feet"),
  31851. weight: math.unit(150, "lb"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/bailey/front.svg",
  31855. extra: 1778 / 1724,
  31856. bottom: 30 / 1808
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Micro",
  31863. height: math.unit(4, "inches")
  31864. },
  31865. {
  31866. name: "Normal",
  31867. height: math.unit(5 + 5 / 12, "feet"),
  31868. default: true
  31869. },
  31870. {
  31871. name: "Macro",
  31872. height: math.unit(250, "feet")
  31873. },
  31874. {
  31875. name: "Megamacro",
  31876. height: math.unit(100, "miles")
  31877. },
  31878. ]
  31879. ))
  31880. characterMakers.push(() => makeCharacter(
  31881. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31882. {
  31883. front: {
  31884. height: math.unit(5 + 2 / 12, "feet"),
  31885. weight: math.unit(120, "lb"),
  31886. name: "Front",
  31887. image: {
  31888. source: "./media/characters/snaps/front.svg",
  31889. extra: 2370 / 2177,
  31890. bottom: 48 / 2418
  31891. }
  31892. },
  31893. back: {
  31894. height: math.unit(5 + 2 / 12, "feet"),
  31895. weight: math.unit(120, "lb"),
  31896. name: "Back",
  31897. image: {
  31898. source: "./media/characters/snaps/back.svg",
  31899. extra: 2408 / 2258,
  31900. bottom: 15 / 2423
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Micro",
  31907. height: math.unit(9, "inches")
  31908. },
  31909. {
  31910. name: "Normal",
  31911. height: math.unit(5 + 2 / 12, "feet"),
  31912. default: true
  31913. },
  31914. {
  31915. name: "Mini Macro",
  31916. height: math.unit(10, "feet")
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(1.8, "meters"),
  31925. weight: math.unit(85, "kg"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/azteck/front.svg",
  31929. extra: 2815 / 2625,
  31930. bottom: 89 / 2904
  31931. }
  31932. },
  31933. back: {
  31934. height: math.unit(1.8, "meters"),
  31935. weight: math.unit(85, "kg"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/azteck/back.svg",
  31939. extra: 2856 / 2648,
  31940. bottom: 85 / 2941
  31941. }
  31942. },
  31943. frontDressed: {
  31944. height: math.unit(1.8, "meters"),
  31945. weight: math.unit(85, "kg"),
  31946. name: "Front (Dressed)",
  31947. image: {
  31948. source: "./media/characters/azteck/front-dressed.svg",
  31949. extra: 2147 / 2003,
  31950. bottom: 68 / 2215
  31951. }
  31952. },
  31953. head: {
  31954. height: math.unit(0.47, "meters"),
  31955. weight: math.unit(85, "kg"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/azteck/head.svg"
  31959. }
  31960. },
  31961. },
  31962. [
  31963. {
  31964. name: "Bite sized",
  31965. height: math.unit(16, "cm")
  31966. },
  31967. {
  31968. name: "Normal",
  31969. height: math.unit(1.8, "meters"),
  31970. default: true
  31971. },
  31972. ]
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31976. {
  31977. front: {
  31978. height: math.unit(6, "feet"),
  31979. weight: math.unit(150, "lb"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/pidge/front.svg",
  31983. extra: 1936/1820,
  31984. bottom: 0/1936
  31985. }
  31986. },
  31987. back: {
  31988. height: math.unit(6, "feet"),
  31989. weight: math.unit(150, "lb"),
  31990. name: "Back",
  31991. image: {
  31992. source: "./media/characters/pidge/back.svg",
  31993. extra: 1938/1843,
  31994. bottom: 0/1938
  31995. }
  31996. },
  31997. casual: {
  31998. height: math.unit(6, "feet"),
  31999. weight: math.unit(150, "lb"),
  32000. name: "Casual",
  32001. image: {
  32002. source: "./media/characters/pidge/casual.svg",
  32003. extra: 1936/1820,
  32004. bottom: 0/1936
  32005. }
  32006. },
  32007. tech: {
  32008. height: math.unit(6, "feet"),
  32009. weight: math.unit(150, "lb"),
  32010. name: "Tech",
  32011. image: {
  32012. source: "./media/characters/pidge/tech.svg",
  32013. extra: 1802/1682,
  32014. bottom: 0/1802
  32015. }
  32016. },
  32017. head: {
  32018. height: math.unit(1.61, "feet"),
  32019. name: "Head",
  32020. image: {
  32021. source: "./media/characters/pidge/head.svg"
  32022. }
  32023. },
  32024. collar: {
  32025. height: math.unit(0.82, "feet"),
  32026. name: "Collar",
  32027. image: {
  32028. source: "./media/characters/pidge/collar.svg"
  32029. }
  32030. },
  32031. },
  32032. [
  32033. {
  32034. name: "Macro",
  32035. height: math.unit(2, "mile"),
  32036. default: true
  32037. },
  32038. {
  32039. name: "PUPPY",
  32040. height: math.unit(20, "miles")
  32041. },
  32042. ]
  32043. ))
  32044. characterMakers.push(() => makeCharacter(
  32045. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32046. {
  32047. front: {
  32048. height: math.unit(6, "feet"),
  32049. weight: math.unit(150, "lb"),
  32050. name: "Front",
  32051. image: {
  32052. source: "./media/characters/en/front.svg",
  32053. extra: 1697 / 1563,
  32054. bottom: 103 / 1800
  32055. }
  32056. },
  32057. back: {
  32058. height: math.unit(6, "feet"),
  32059. weight: math.unit(150, "lb"),
  32060. name: "Back",
  32061. image: {
  32062. source: "./media/characters/en/back.svg",
  32063. extra: 1700 / 1570,
  32064. bottom: 51 / 1751
  32065. }
  32066. },
  32067. frontDressed: {
  32068. height: math.unit(6, "feet"),
  32069. weight: math.unit(150, "lb"),
  32070. name: "Front (Dressed)",
  32071. image: {
  32072. source: "./media/characters/en/front-dressed.svg",
  32073. extra: 1697 / 1563,
  32074. bottom: 103 / 1800
  32075. }
  32076. },
  32077. backDressed: {
  32078. height: math.unit(6, "feet"),
  32079. weight: math.unit(150, "lb"),
  32080. name: "Back (Dressed)",
  32081. image: {
  32082. source: "./media/characters/en/back-dressed.svg",
  32083. extra: 1700 / 1570,
  32084. bottom: 51 / 1751
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Macro",
  32091. height: math.unit(210, "feet"),
  32092. default: true
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(6, "feet"),
  32101. weight: math.unit(150, "lb"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/haze-orris/front.svg",
  32105. extra: 3975 / 3525,
  32106. bottom: 137 / 4112
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Micro",
  32113. height: math.unit(150, "mm"),
  32114. default: true
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(6, "feet"),
  32123. weight: math.unit(150, "lb"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/casselene-yaro/front.svg",
  32127. extra: 4721 / 4541,
  32128. bottom: 82 / 4803
  32129. }
  32130. },
  32131. back: {
  32132. height: math.unit(6, "feet"),
  32133. weight: math.unit(150, "lb"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/casselene-yaro/back.svg",
  32137. extra: 4569 / 4377,
  32138. bottom: 69 / 4638
  32139. }
  32140. },
  32141. dressed: {
  32142. height: math.unit(6, "feet"),
  32143. weight: math.unit(150, "lb"),
  32144. name: "Dressed",
  32145. image: {
  32146. source: "./media/characters/casselene-yaro/dressed.svg",
  32147. extra: 4721 / 4541,
  32148. bottom: 82 / 4803
  32149. }
  32150. },
  32151. maw: {
  32152. height: math.unit(1, "feet"),
  32153. name: "Maw",
  32154. image: {
  32155. source: "./media/characters/casselene-yaro/maw.svg"
  32156. }
  32157. },
  32158. },
  32159. [
  32160. {
  32161. name: "Macro",
  32162. height: math.unit(190, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(10, "feet"),
  32172. weight: math.unit(15015, "lb"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/platine/front.svg",
  32176. extra: 1741/1650,
  32177. bottom: 84/1825
  32178. }
  32179. },
  32180. side: {
  32181. height: math.unit(10, "feet"),
  32182. weight: math.unit(15015, "lb"),
  32183. name: "Side",
  32184. image: {
  32185. source: "./media/characters/platine/side.svg",
  32186. extra: 1790/1705,
  32187. bottom: 29/1819
  32188. }
  32189. },
  32190. },
  32191. [
  32192. {
  32193. name: "Normal",
  32194. height: math.unit(10, "feet"),
  32195. default: true
  32196. },
  32197. {
  32198. name: "Macro",
  32199. height: math.unit(100, "feet")
  32200. },
  32201. {
  32202. name: "Megamacro",
  32203. height: math.unit(1000, "feet")
  32204. },
  32205. ]
  32206. ))
  32207. characterMakers.push(() => makeCharacter(
  32208. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32209. {
  32210. front: {
  32211. height: math.unit(15 + 5 / 12, "feet"),
  32212. weight: math.unit(4600, "lb"),
  32213. name: "Front",
  32214. image: {
  32215. source: "./media/characters/neapolitan-ananassa/front.svg",
  32216. extra: 2903 / 2736,
  32217. bottom: 0 / 2903
  32218. }
  32219. },
  32220. side: {
  32221. height: math.unit(15 + 5 / 12, "feet"),
  32222. weight: math.unit(4600, "lb"),
  32223. name: "Side",
  32224. image: {
  32225. source: "./media/characters/neapolitan-ananassa/side.svg",
  32226. extra: 2925 / 2719,
  32227. bottom: 0 / 2925
  32228. }
  32229. },
  32230. back: {
  32231. height: math.unit(15 + 5 / 12, "feet"),
  32232. weight: math.unit(4600, "lb"),
  32233. name: "Back",
  32234. image: {
  32235. source: "./media/characters/neapolitan-ananassa/back.svg",
  32236. extra: 2903 / 2736,
  32237. bottom: 0 / 2903
  32238. }
  32239. },
  32240. },
  32241. [
  32242. {
  32243. name: "Normal",
  32244. height: math.unit(15 + 5 / 12, "feet"),
  32245. default: true
  32246. },
  32247. {
  32248. name: "Post-Millenium",
  32249. height: math.unit(35 + 5 / 12, "feet")
  32250. },
  32251. {
  32252. name: "Post-Era",
  32253. height: math.unit(450 + 5 / 12, "feet")
  32254. },
  32255. ]
  32256. ))
  32257. characterMakers.push(() => makeCharacter(
  32258. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32259. {
  32260. front: {
  32261. height: math.unit(300, "meters"),
  32262. weight: math.unit(125000, "tonnes"),
  32263. name: "Front",
  32264. image: {
  32265. source: "./media/characters/pazuzu/front.svg",
  32266. extra: 877 / 794,
  32267. bottom: 47 / 924
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Macro",
  32274. height: math.unit(300, "meters"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32281. {
  32282. side: {
  32283. height: math.unit(10 + 7 / 12, "feet"),
  32284. weight: math.unit(2.5, "tons"),
  32285. name: "Side",
  32286. image: {
  32287. source: "./media/characters/aasha/side.svg",
  32288. extra: 1345 / 1245,
  32289. bottom: 111 / 1456
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(10 + 7 / 12, "feet"),
  32294. weight: math.unit(2.5, "tons"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/aasha/back.svg",
  32298. extra: 1133 / 1057,
  32299. bottom: 257 / 1390
  32300. }
  32301. },
  32302. },
  32303. [
  32304. {
  32305. name: "Normal",
  32306. height: math.unit(10 + 7 / 12, "feet"),
  32307. default: true
  32308. },
  32309. ]
  32310. ))
  32311. characterMakers.push(() => makeCharacter(
  32312. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32313. {
  32314. front: {
  32315. height: math.unit(6 + 3 / 12, "feet"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/nevan/front.svg",
  32319. extra: 704 / 704,
  32320. bottom: 28 / 732
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(6 + 3 / 12, "feet"),
  32325. name: "Back",
  32326. image: {
  32327. source: "./media/characters/nevan/back.svg",
  32328. extra: 714 / 714,
  32329. bottom: 21 / 735
  32330. }
  32331. },
  32332. frontFlaccid: {
  32333. height: math.unit(6 + 3 / 12, "feet"),
  32334. name: "Front (Flaccid)",
  32335. image: {
  32336. source: "./media/characters/nevan/front-flaccid.svg",
  32337. extra: 704 / 704,
  32338. bottom: 28 / 732
  32339. }
  32340. },
  32341. frontErect: {
  32342. height: math.unit(6 + 3 / 12, "feet"),
  32343. name: "Front (Erect)",
  32344. image: {
  32345. source: "./media/characters/nevan/front-erect.svg",
  32346. extra: 704 / 704,
  32347. bottom: 28 / 732
  32348. }
  32349. },
  32350. backFlaccid: {
  32351. height: math.unit(6 + 3 / 12, "feet"),
  32352. name: "Back (Flaccid)",
  32353. image: {
  32354. source: "./media/characters/nevan/back-flaccid.svg",
  32355. extra: 714 / 714,
  32356. bottom: 21 / 735
  32357. }
  32358. },
  32359. },
  32360. [
  32361. {
  32362. name: "Normal",
  32363. height: math.unit(6 + 3 / 12, "feet"),
  32364. default: true
  32365. },
  32366. ]
  32367. ))
  32368. characterMakers.push(() => makeCharacter(
  32369. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32370. {
  32371. front: {
  32372. height: math.unit(4, "feet"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/arhan/front.svg",
  32376. extra: 3368 / 3133,
  32377. bottom: 0 / 3368
  32378. }
  32379. },
  32380. side: {
  32381. height: math.unit(4, "feet"),
  32382. name: "Side",
  32383. image: {
  32384. source: "./media/characters/arhan/side.svg",
  32385. extra: 3347 / 3105,
  32386. bottom: 0 / 3347
  32387. }
  32388. },
  32389. tongue: {
  32390. height: math.unit(1.42, "feet"),
  32391. name: "Tongue",
  32392. image: {
  32393. source: "./media/characters/arhan/tongue.svg"
  32394. }
  32395. },
  32396. head: {
  32397. height: math.unit(0.85, "feet"),
  32398. name: "Head",
  32399. image: {
  32400. source: "./media/characters/arhan/head.svg"
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Normal",
  32407. height: math.unit(4, "feet"),
  32408. default: true
  32409. },
  32410. ]
  32411. ))
  32412. characterMakers.push(() => makeCharacter(
  32413. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32414. {
  32415. front: {
  32416. height: math.unit(5 + 7.5 / 12, "feet"),
  32417. weight: math.unit(120, "lb"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/digi-duncan/front.svg",
  32421. extra: 330 / 326,
  32422. bottom: 16 / 346
  32423. }
  32424. },
  32425. side: {
  32426. height: math.unit(5 + 7.5 / 12, "feet"),
  32427. weight: math.unit(120, "lb"),
  32428. name: "Side",
  32429. image: {
  32430. source: "./media/characters/digi-duncan/side.svg",
  32431. extra: 341 / 337,
  32432. bottom: 1 / 342
  32433. }
  32434. },
  32435. back: {
  32436. height: math.unit(5 + 7.5 / 12, "feet"),
  32437. weight: math.unit(120, "lb"),
  32438. name: "Back",
  32439. image: {
  32440. source: "./media/characters/digi-duncan/back.svg",
  32441. extra: 330 / 326,
  32442. bottom: 12 / 342
  32443. }
  32444. },
  32445. },
  32446. [
  32447. {
  32448. name: "Speck",
  32449. height: math.unit(0.25, "mm")
  32450. },
  32451. {
  32452. name: "Micro",
  32453. height: math.unit(5, "mm")
  32454. },
  32455. {
  32456. name: "Tiny",
  32457. height: math.unit(0.5, "inches"),
  32458. default: true
  32459. },
  32460. {
  32461. name: "Human",
  32462. height: math.unit(5 + 7.5 / 12, "feet")
  32463. },
  32464. {
  32465. name: "Minigiant",
  32466. height: math.unit(8 + 5.25, "feet")
  32467. },
  32468. {
  32469. name: "Giant",
  32470. height: math.unit(2000, "feet")
  32471. },
  32472. {
  32473. name: "Mega",
  32474. height: math.unit(371.1, "miles")
  32475. },
  32476. ]
  32477. ))
  32478. characterMakers.push(() => makeCharacter(
  32479. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32480. {
  32481. front: {
  32482. height: math.unit(2, "meters"),
  32483. weight: math.unit(350, "kg"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32487. extra: 898 / 838,
  32488. bottom: 9 / 907
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Micro",
  32495. height: math.unit(8, "meters")
  32496. },
  32497. {
  32498. name: "Normal",
  32499. height: math.unit(50, "meters"),
  32500. default: true
  32501. },
  32502. {
  32503. name: "Macro",
  32504. height: math.unit(500, "meters")
  32505. },
  32506. ]
  32507. ))
  32508. characterMakers.push(() => makeCharacter(
  32509. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32510. {
  32511. front: {
  32512. height: math.unit(6 + 6 / 12, "feet"),
  32513. name: "Front",
  32514. image: {
  32515. source: "./media/characters/khardesh/front.svg",
  32516. extra: 1788/1596,
  32517. bottom: 66/1854
  32518. }
  32519. },
  32520. back: {
  32521. height: math.unit(6 + 6 / 12, "feet"),
  32522. name: "Back",
  32523. image: {
  32524. source: "./media/characters/khardesh/back.svg",
  32525. extra: 1781/1584,
  32526. bottom: 68/1849
  32527. }
  32528. },
  32529. },
  32530. [
  32531. {
  32532. name: "Normal",
  32533. height: math.unit(6 + 6 / 12, "feet"),
  32534. default: true
  32535. },
  32536. {
  32537. name: "Normal+",
  32538. height: math.unit(4, "meters")
  32539. },
  32540. {
  32541. name: "Macro",
  32542. height: math.unit(50, "meters")
  32543. },
  32544. {
  32545. name: "Macro+",
  32546. height: math.unit(100, "meters")
  32547. },
  32548. {
  32549. name: "Megamacro",
  32550. height: math.unit(20, "km")
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32556. {
  32557. front: {
  32558. height: math.unit(6, "feet"),
  32559. weight: math.unit(150, "lb"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/kosho/front.svg",
  32563. extra: 1847 / 1847,
  32564. bottom: 86 / 1933
  32565. }
  32566. },
  32567. },
  32568. [
  32569. {
  32570. name: "Second-stage micro",
  32571. height: math.unit(0.5, "inches")
  32572. },
  32573. {
  32574. name: "First-stage micro",
  32575. height: math.unit(6, "inches")
  32576. },
  32577. {
  32578. name: "Normal",
  32579. height: math.unit(6, "feet"),
  32580. default: true
  32581. },
  32582. {
  32583. name: "First-stage macro",
  32584. height: math.unit(72, "feet")
  32585. },
  32586. {
  32587. name: "Second-stage macro",
  32588. height: math.unit(864, "feet")
  32589. },
  32590. ]
  32591. ))
  32592. characterMakers.push(() => makeCharacter(
  32593. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32594. {
  32595. normal: {
  32596. height: math.unit(4 + 6 / 12, "feet"),
  32597. name: "Normal",
  32598. image: {
  32599. source: "./media/characters/hydra/normal.svg",
  32600. extra: 2833 / 2634,
  32601. bottom: 68 / 2901
  32602. }
  32603. },
  32604. smol: {
  32605. height: math.unit(0.705, "inches"),
  32606. name: "Smol",
  32607. image: {
  32608. source: "./media/characters/hydra/smol.svg",
  32609. extra: 2715 / 2540,
  32610. bottom: 0 / 2715
  32611. }
  32612. },
  32613. },
  32614. [
  32615. {
  32616. name: "Normal",
  32617. height: math.unit(4 + 6 / 12, "feet"),
  32618. default: true
  32619. }
  32620. ]
  32621. ))
  32622. characterMakers.push(() => makeCharacter(
  32623. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32624. {
  32625. front: {
  32626. height: math.unit(0.6, "cm"),
  32627. name: "Front",
  32628. image: {
  32629. source: "./media/characters/daz/front.svg",
  32630. extra: 1682 / 1164,
  32631. bottom: 42 / 1724
  32632. }
  32633. },
  32634. },
  32635. [
  32636. {
  32637. name: "Normal",
  32638. height: math.unit(0.6, "cm"),
  32639. default: true
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(6, "feet"),
  32648. weight: math.unit(235, "lb"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/theo-pangolin/front.svg",
  32652. extra: 1996 / 1969,
  32653. bottom: 115 / 2111
  32654. }
  32655. },
  32656. back: {
  32657. height: math.unit(6, "feet"),
  32658. weight: math.unit(235, "lb"),
  32659. name: "Back",
  32660. image: {
  32661. source: "./media/characters/theo-pangolin/back.svg",
  32662. extra: 1979 / 1979,
  32663. bottom: 40 / 2019
  32664. }
  32665. },
  32666. feral: {
  32667. height: math.unit(2, "feet"),
  32668. weight: math.unit(30, "lb"),
  32669. name: "Feral",
  32670. image: {
  32671. source: "./media/characters/theo-pangolin/feral.svg",
  32672. extra: 803 / 791,
  32673. bottom: 181 / 984
  32674. }
  32675. },
  32676. footFive: {
  32677. height: math.unit(1.43, "feet"),
  32678. name: "Foot (Five Toes)",
  32679. image: {
  32680. source: "./media/characters/theo-pangolin/foot-five.svg"
  32681. }
  32682. },
  32683. footFour: {
  32684. height: math.unit(1.43, "feet"),
  32685. name: "Foot (Four Toes)",
  32686. image: {
  32687. source: "./media/characters/theo-pangolin/foot-four.svg"
  32688. }
  32689. },
  32690. handFour: {
  32691. height: math.unit(0.81, "feet"),
  32692. name: "Hand (Four Fingers)",
  32693. image: {
  32694. source: "./media/characters/theo-pangolin/hand-four.svg"
  32695. }
  32696. },
  32697. handThree: {
  32698. height: math.unit(0.81, "feet"),
  32699. name: "Hand (Three Fingers)",
  32700. image: {
  32701. source: "./media/characters/theo-pangolin/hand-three.svg"
  32702. }
  32703. },
  32704. headFront: {
  32705. height: math.unit(1.37, "feet"),
  32706. name: "Head (Front)",
  32707. image: {
  32708. source: "./media/characters/theo-pangolin/head-front.svg"
  32709. }
  32710. },
  32711. headSide: {
  32712. height: math.unit(1.43, "feet"),
  32713. name: "Head (Side)",
  32714. image: {
  32715. source: "./media/characters/theo-pangolin/head-side.svg"
  32716. }
  32717. },
  32718. tongue: {
  32719. height: math.unit(2.29, "feet"),
  32720. name: "Tongue",
  32721. image: {
  32722. source: "./media/characters/theo-pangolin/tongue.svg"
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Normal",
  32729. height: math.unit(6, "feet")
  32730. },
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(400, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(6, "inches"),
  32743. weight: math.unit(0.036, "kg"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/renée/front.svg",
  32747. extra: 900 / 886,
  32748. bottom: 8 / 908
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Nano",
  32755. height: math.unit(1, "nm")
  32756. },
  32757. {
  32758. name: "Micro",
  32759. height: math.unit(1, "mm")
  32760. },
  32761. {
  32762. name: "Normal",
  32763. height: math.unit(6, "inches")
  32764. },
  32765. {
  32766. name: "Macro",
  32767. height: math.unit(2000, "feet"),
  32768. default: true
  32769. },
  32770. {
  32771. name: "Megamacro",
  32772. height: math.unit(2, "km")
  32773. },
  32774. {
  32775. name: "Gigamacro",
  32776. height: math.unit(2000, "km")
  32777. },
  32778. {
  32779. name: "Teramacro",
  32780. height: math.unit(250000, "km")
  32781. },
  32782. ]
  32783. ))
  32784. characterMakers.push(() => makeCharacter(
  32785. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32786. {
  32787. front: {
  32788. height: math.unit(4, "meters"),
  32789. weight: math.unit(150, "kg"),
  32790. name: "Front",
  32791. image: {
  32792. source: "./media/characters/caledvwlch/front.svg",
  32793. extra: 1757/1537,
  32794. bottom: 31/1788
  32795. }
  32796. },
  32797. side: {
  32798. height: math.unit(4, "meters"),
  32799. weight: math.unit(150, "kg"),
  32800. name: "Side",
  32801. image: {
  32802. source: "./media/characters/caledvwlch/side.svg",
  32803. extra: 1605 / 1536,
  32804. bottom: 31 / 1636
  32805. }
  32806. },
  32807. back: {
  32808. height: math.unit(4, "meters"),
  32809. weight: math.unit(150, "kg"),
  32810. name: "Back",
  32811. image: {
  32812. source: "./media/characters/caledvwlch/back.svg",
  32813. extra: 1635 / 1565,
  32814. bottom: 27 / 1662
  32815. }
  32816. },
  32817. },
  32818. [
  32819. {
  32820. name: "\"Incognito\"",
  32821. height: math.unit(4, "meters")
  32822. },
  32823. {
  32824. name: "Small rampage",
  32825. height: math.unit(600, "meters")
  32826. },
  32827. {
  32828. name: "Mega",
  32829. height: math.unit(30, "km")
  32830. },
  32831. {
  32832. name: "Home-size",
  32833. height: math.unit(50, "km"),
  32834. default: true
  32835. },
  32836. {
  32837. name: "Giga",
  32838. height: math.unit(300, "km")
  32839. },
  32840. {
  32841. name: "Lounging",
  32842. height: math.unit(11000, "km")
  32843. },
  32844. {
  32845. name: "Planet snacking",
  32846. height: math.unit(2000000, "km")
  32847. },
  32848. ]
  32849. ))
  32850. characterMakers.push(() => makeCharacter(
  32851. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32852. {
  32853. front: {
  32854. height: math.unit(6, "feet"),
  32855. weight: math.unit(215, "lb"),
  32856. name: "Front",
  32857. image: {
  32858. source: "./media/characters/sapphire-svell/front.svg",
  32859. extra: 495 / 455,
  32860. bottom: 20 / 515
  32861. }
  32862. },
  32863. back: {
  32864. height: math.unit(6, "feet"),
  32865. weight: math.unit(216, "lb"),
  32866. name: "Back",
  32867. image: {
  32868. source: "./media/characters/sapphire-svell/back.svg",
  32869. extra: 497 / 477,
  32870. bottom: 7 / 504
  32871. }
  32872. },
  32873. maw: {
  32874. height: math.unit(1.57, "feet"),
  32875. name: "Maw",
  32876. image: {
  32877. source: "./media/characters/sapphire-svell/maw.svg"
  32878. }
  32879. },
  32880. foot: {
  32881. height: math.unit(1.07, "feet"),
  32882. name: "Foot",
  32883. image: {
  32884. source: "./media/characters/sapphire-svell/foot.svg"
  32885. }
  32886. },
  32887. toering: {
  32888. height: math.unit(1.7, "inch"),
  32889. name: "Toering",
  32890. image: {
  32891. source: "./media/characters/sapphire-svell/toering.svg"
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Normal",
  32898. height: math.unit(300, "feet"),
  32899. default: true
  32900. },
  32901. {
  32902. name: "Augmented",
  32903. height: math.unit(1250, "feet")
  32904. },
  32905. {
  32906. name: "Unleashed",
  32907. height: math.unit(3000, "feet")
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32913. {
  32914. side: {
  32915. height: math.unit(2 + 3 / 12, "feet"),
  32916. weight: math.unit(110, "lb"),
  32917. name: "Side",
  32918. image: {
  32919. source: "./media/characters/glitch-flux/side.svg",
  32920. extra: 997 / 805,
  32921. bottom: 20 / 1017
  32922. }
  32923. },
  32924. },
  32925. [
  32926. {
  32927. name: "Normal",
  32928. height: math.unit(2 + 3 / 12, "feet"),
  32929. default: true
  32930. },
  32931. ]
  32932. ))
  32933. characterMakers.push(() => makeCharacter(
  32934. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32935. {
  32936. front: {
  32937. height: math.unit(4, "meters"),
  32938. name: "Front",
  32939. image: {
  32940. source: "./media/characters/mid/front.svg",
  32941. extra: 507 / 476,
  32942. bottom: 17 / 524
  32943. }
  32944. },
  32945. back: {
  32946. height: math.unit(4, "meters"),
  32947. name: "Back",
  32948. image: {
  32949. source: "./media/characters/mid/back.svg",
  32950. extra: 519 / 487,
  32951. bottom: 7 / 526
  32952. }
  32953. },
  32954. stuck: {
  32955. height: math.unit(2.2, "meters"),
  32956. name: "Stuck",
  32957. image: {
  32958. source: "./media/characters/mid/stuck.svg",
  32959. extra: 1951 / 1869,
  32960. bottom: 88 / 2039
  32961. }
  32962. }
  32963. },
  32964. [
  32965. {
  32966. name: "Normal",
  32967. height: math.unit(4, "meters"),
  32968. default: true
  32969. },
  32970. {
  32971. name: "Big",
  32972. height: math.unit(10, "meters")
  32973. },
  32974. {
  32975. name: "Macro",
  32976. height: math.unit(800, "meters")
  32977. },
  32978. {
  32979. name: "Megamacro",
  32980. height: math.unit(100, "km")
  32981. },
  32982. {
  32983. name: "Overgrown",
  32984. height: math.unit(1, "parsec")
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32990. {
  32991. front: {
  32992. height: math.unit(2.5, "meters"),
  32993. weight: math.unit(225, "kg"),
  32994. name: "Front",
  32995. image: {
  32996. source: "./media/characters/iris/front.svg",
  32997. extra: 3348 / 3251,
  32998. bottom: 205 / 3553
  32999. }
  33000. },
  33001. maw: {
  33002. height: math.unit(0.56, "meter"),
  33003. name: "Maw",
  33004. image: {
  33005. source: "./media/characters/iris/maw.svg"
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Mewter cat",
  33012. height: math.unit(1.2, "meters")
  33013. },
  33014. {
  33015. name: "Normal",
  33016. height: math.unit(2.5, "meters"),
  33017. default: true
  33018. },
  33019. {
  33020. name: "Minimacro",
  33021. height: math.unit(18, "feet")
  33022. },
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(140, "feet")
  33026. },
  33027. {
  33028. name: "Macro+",
  33029. height: math.unit(180, "meters")
  33030. },
  33031. {
  33032. name: "Megamacro",
  33033. height: math.unit(2746, "meters")
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33039. {
  33040. front: {
  33041. height: math.unit(6, "feet"),
  33042. weight: math.unit(135, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/axel/front.svg",
  33046. extra: 908 / 908,
  33047. bottom: 58 / 966
  33048. }
  33049. },
  33050. side: {
  33051. height: math.unit(6, "feet"),
  33052. weight: math.unit(135, "lb"),
  33053. name: "Side",
  33054. image: {
  33055. source: "./media/characters/axel/side.svg",
  33056. extra: 958 / 958,
  33057. bottom: 11 / 969
  33058. }
  33059. },
  33060. back: {
  33061. height: math.unit(6, "feet"),
  33062. weight: math.unit(135, "lb"),
  33063. name: "Back",
  33064. image: {
  33065. source: "./media/characters/axel/back.svg",
  33066. extra: 887 / 887,
  33067. bottom: 34 / 921
  33068. }
  33069. },
  33070. head: {
  33071. height: math.unit(1.07, "feet"),
  33072. name: "Head",
  33073. image: {
  33074. source: "./media/characters/axel/head.svg"
  33075. }
  33076. },
  33077. beak: {
  33078. height: math.unit(1.4, "feet"),
  33079. name: "Beak",
  33080. image: {
  33081. source: "./media/characters/axel/beak.svg"
  33082. }
  33083. },
  33084. beakSide: {
  33085. height: math.unit(1.4, "feet"),
  33086. name: "Beak Side",
  33087. image: {
  33088. source: "./media/characters/axel/beak-side.svg"
  33089. }
  33090. },
  33091. sheath: {
  33092. height: math.unit(0.5, "feet"),
  33093. name: "Sheath",
  33094. image: {
  33095. source: "./media/characters/axel/sheath.svg"
  33096. }
  33097. },
  33098. dick: {
  33099. height: math.unit(0.98, "feet"),
  33100. name: "Dick",
  33101. image: {
  33102. source: "./media/characters/axel/dick.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Macro",
  33109. height: math.unit(68, "meters"),
  33110. default: true
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33116. {
  33117. front: {
  33118. height: math.unit(3.5, "meters"),
  33119. weight: math.unit(1200, "kg"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/joanna/front.svg",
  33123. extra: 1596 / 1488,
  33124. bottom: 29 / 1625
  33125. }
  33126. },
  33127. back: {
  33128. height: math.unit(3.5, "meters"),
  33129. weight: math.unit(1200, "kg"),
  33130. name: "Back",
  33131. image: {
  33132. source: "./media/characters/joanna/back.svg",
  33133. extra: 1594 / 1495,
  33134. bottom: 26 / 1620
  33135. }
  33136. },
  33137. frontShorts: {
  33138. height: math.unit(3.5, "meters"),
  33139. weight: math.unit(1200, "kg"),
  33140. name: "Front (Shorts)",
  33141. image: {
  33142. source: "./media/characters/joanna/front-shorts.svg",
  33143. extra: 1596 / 1488,
  33144. bottom: 29 / 1625
  33145. }
  33146. },
  33147. frontBiker: {
  33148. height: math.unit(3.5, "meters"),
  33149. weight: math.unit(1200, "kg"),
  33150. name: "Front (Biker)",
  33151. image: {
  33152. source: "./media/characters/joanna/front-biker.svg",
  33153. extra: 1596 / 1488,
  33154. bottom: 29 / 1625
  33155. }
  33156. },
  33157. backBiker: {
  33158. height: math.unit(3.5, "meters"),
  33159. weight: math.unit(1200, "kg"),
  33160. name: "Back (Biker)",
  33161. image: {
  33162. source: "./media/characters/joanna/back-biker.svg",
  33163. extra: 1594 / 1495,
  33164. bottom: 88 / 1682
  33165. }
  33166. },
  33167. bikeLeft: {
  33168. height: math.unit(2.4, "meters"),
  33169. weight: math.unit(1600, "kg"),
  33170. name: "Bike (Left)",
  33171. image: {
  33172. source: "./media/characters/joanna/bike-left.svg",
  33173. extra: 720 / 720,
  33174. bottom: 8 / 728
  33175. }
  33176. },
  33177. bikeRight: {
  33178. height: math.unit(2.4, "meters"),
  33179. weight: math.unit(1600, "kg"),
  33180. name: "Bike (Right)",
  33181. image: {
  33182. source: "./media/characters/joanna/bike-right.svg",
  33183. extra: 720 / 720,
  33184. bottom: 8 / 728
  33185. }
  33186. },
  33187. },
  33188. [
  33189. {
  33190. name: "Incognito",
  33191. height: math.unit(3.5, "meters")
  33192. },
  33193. {
  33194. name: "Casual Big",
  33195. height: math.unit(200, "meters")
  33196. },
  33197. {
  33198. name: "Macro",
  33199. height: math.unit(600, "meters")
  33200. },
  33201. {
  33202. name: "Original",
  33203. height: math.unit(20, "km"),
  33204. default: true
  33205. },
  33206. {
  33207. name: "Giga",
  33208. height: math.unit(400, "km")
  33209. },
  33210. {
  33211. name: "Lounging",
  33212. height: math.unit(1500, "km")
  33213. },
  33214. {
  33215. name: "Planetary",
  33216. height: math.unit(200000, "km")
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33222. {
  33223. front: {
  33224. height: math.unit(6, "feet"),
  33225. weight: math.unit(150, "lb"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/hugo-sigil/front.svg",
  33229. extra: 522 / 500,
  33230. bottom: 2 / 524
  33231. }
  33232. },
  33233. back: {
  33234. height: math.unit(6, "feet"),
  33235. weight: math.unit(150, "lb"),
  33236. name: "Back",
  33237. image: {
  33238. source: "./media/characters/hugo-sigil/back.svg",
  33239. extra: 519 / 495,
  33240. bottom: 5 / 524
  33241. }
  33242. },
  33243. maw: {
  33244. height: math.unit(1.4, "feet"),
  33245. weight: math.unit(150, "lb"),
  33246. name: "Maw",
  33247. image: {
  33248. source: "./media/characters/hugo-sigil/maw.svg"
  33249. }
  33250. },
  33251. feet: {
  33252. height: math.unit(1.56, "feet"),
  33253. weight: math.unit(150, "lb"),
  33254. name: "Feet",
  33255. image: {
  33256. source: "./media/characters/hugo-sigil/feet.svg",
  33257. extra: 177 / 177,
  33258. bottom: 12 / 189
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6, "feet")
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(200, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(6, "feet"),
  33279. weight: math.unit(150, "lb"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/peri/front.svg",
  33283. extra: 2354 / 2233,
  33284. bottom: 49 / 2403
  33285. }
  33286. },
  33287. },
  33288. [
  33289. {
  33290. name: "Really Small",
  33291. height: math.unit(1, "nm")
  33292. },
  33293. {
  33294. name: "Micro",
  33295. height: math.unit(4, "inches")
  33296. },
  33297. {
  33298. name: "Normal",
  33299. height: math.unit(7, "inches"),
  33300. default: true
  33301. },
  33302. {
  33303. name: "Macro",
  33304. height: math.unit(400, "feet")
  33305. },
  33306. {
  33307. name: "Megamacro",
  33308. height: math.unit(100, "miles")
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33314. {
  33315. frontSlim: {
  33316. height: math.unit(7, "feet"),
  33317. name: "Front (Slim)",
  33318. image: {
  33319. source: "./media/characters/issilora/front-slim.svg",
  33320. extra: 529 / 449,
  33321. bottom: 53 / 582
  33322. }
  33323. },
  33324. sideSlim: {
  33325. height: math.unit(7, "feet"),
  33326. name: "Side (Slim)",
  33327. image: {
  33328. source: "./media/characters/issilora/side-slim.svg",
  33329. extra: 570 / 480,
  33330. bottom: 30 / 600
  33331. }
  33332. },
  33333. backSlim: {
  33334. height: math.unit(7, "feet"),
  33335. name: "Back (Slim)",
  33336. image: {
  33337. source: "./media/characters/issilora/back-slim.svg",
  33338. extra: 537 / 455,
  33339. bottom: 46 / 583
  33340. }
  33341. },
  33342. frontBuff: {
  33343. height: math.unit(7, "feet"),
  33344. name: "Front (Buff)",
  33345. image: {
  33346. source: "./media/characters/issilora/front-buff.svg",
  33347. extra: 2310 / 2035,
  33348. bottom: 335 / 2645
  33349. }
  33350. },
  33351. head: {
  33352. height: math.unit(1.94, "feet"),
  33353. name: "Head",
  33354. image: {
  33355. source: "./media/characters/issilora/head.svg"
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Minimum",
  33362. height: math.unit(7, "feet")
  33363. },
  33364. {
  33365. name: "Comfortable",
  33366. height: math.unit(17, "feet")
  33367. },
  33368. {
  33369. name: "Fun Size",
  33370. height: math.unit(47, "feet")
  33371. },
  33372. {
  33373. name: "Natural Macro",
  33374. height: math.unit(137, "feet"),
  33375. default: true
  33376. },
  33377. {
  33378. name: "Maximum Kaiju",
  33379. height: math.unit(397, "feet")
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33385. {
  33386. front: {
  33387. height: math.unit(50 + 9/12, "feet"),
  33388. weight: math.unit(32.8, "tons"),
  33389. name: "Front",
  33390. image: {
  33391. source: "./media/characters/irb'iiritaahn/front.svg",
  33392. extra: 1878/1826,
  33393. bottom: 326/2204
  33394. }
  33395. },
  33396. back: {
  33397. height: math.unit(50 + 9/12, "feet"),
  33398. weight: math.unit(32.8, "tons"),
  33399. name: "Back",
  33400. image: {
  33401. source: "./media/characters/irb'iiritaahn/back.svg",
  33402. extra: 2052/2018,
  33403. bottom: 152/2204
  33404. }
  33405. },
  33406. head: {
  33407. height: math.unit(12.86, "feet"),
  33408. name: "Head",
  33409. image: {
  33410. source: "./media/characters/irb'iiritaahn/head.svg"
  33411. }
  33412. },
  33413. maw: {
  33414. height: math.unit(9.66, "feet"),
  33415. name: "Maw",
  33416. image: {
  33417. source: "./media/characters/irb'iiritaahn/maw.svg"
  33418. }
  33419. },
  33420. frontDick: {
  33421. height: math.unit(8.78461, "feet"),
  33422. name: "Front Dick",
  33423. image: {
  33424. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33425. }
  33426. },
  33427. rearDick: {
  33428. height: math.unit(8.78461, "feet"),
  33429. name: "Rear Dick",
  33430. image: {
  33431. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33432. }
  33433. },
  33434. rearDickUnfolded: {
  33435. height: math.unit(8.78, "feet"),
  33436. name: "Rear Dick (Unfolded)",
  33437. image: {
  33438. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33439. }
  33440. },
  33441. wings: {
  33442. height: math.unit(43, "feet"),
  33443. name: "Wings",
  33444. image: {
  33445. source: "./media/characters/irb'iiritaahn/wings.svg"
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Macro",
  33452. height: math.unit(50 + 9/12, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(205, "cm"),
  33462. weight: math.unit(102, "kg"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/irbisgreif/front.svg",
  33466. extra: 785/706,
  33467. bottom: 13/798
  33468. }
  33469. },
  33470. back: {
  33471. height: math.unit(205, "cm"),
  33472. weight: math.unit(102, "kg"),
  33473. name: "Back",
  33474. image: {
  33475. source: "./media/characters/irbisgreif/back.svg",
  33476. extra: 713/701,
  33477. bottom: 26/739
  33478. }
  33479. },
  33480. frontDressed: {
  33481. height: math.unit(216, "cm"),
  33482. weight: math.unit(102, "kg"),
  33483. name: "Front-dressed",
  33484. image: {
  33485. source: "./media/characters/irbisgreif/front-dressed.svg",
  33486. extra: 902/776,
  33487. bottom: 14/916
  33488. }
  33489. },
  33490. sideDressed: {
  33491. height: math.unit(195, "cm"),
  33492. weight: math.unit(102, "kg"),
  33493. name: "Side-dressed",
  33494. image: {
  33495. source: "./media/characters/irbisgreif/side-dressed.svg",
  33496. extra: 788/688,
  33497. bottom: 21/809
  33498. }
  33499. },
  33500. backDressed: {
  33501. height: math.unit(216, "cm"),
  33502. weight: math.unit(102, "kg"),
  33503. name: "Back-dressed",
  33504. image: {
  33505. source: "./media/characters/irbisgreif/back-dressed.svg",
  33506. extra: 901/783,
  33507. bottom: 10/911
  33508. }
  33509. },
  33510. dick: {
  33511. height: math.unit(0.49, "feet"),
  33512. name: "Dick",
  33513. image: {
  33514. source: "./media/characters/irbisgreif/dick.svg"
  33515. }
  33516. },
  33517. wingTop: {
  33518. height: math.unit(1.93 , "feet"),
  33519. name: "Wing-top",
  33520. image: {
  33521. source: "./media/characters/irbisgreif/wing-top.svg"
  33522. }
  33523. },
  33524. wingBottom: {
  33525. height: math.unit(1.93 , "feet"),
  33526. name: "Wing-bottom",
  33527. image: {
  33528. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33529. }
  33530. },
  33531. },
  33532. [
  33533. {
  33534. name: "Normal",
  33535. height: math.unit(216, "cm"),
  33536. default: true
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33542. {
  33543. front: {
  33544. height: math.unit(6, "feet"),
  33545. weight: math.unit(150, "lb"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/pride/front.svg",
  33549. extra: 1299/1230,
  33550. bottom: 18/1317
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(7, "feet")
  33558. },
  33559. {
  33560. name: "Mini-macro",
  33561. height: math.unit(11, "feet")
  33562. },
  33563. {
  33564. name: "Macro",
  33565. height: math.unit(15, "meters"),
  33566. default: true
  33567. },
  33568. {
  33569. name: "Macro+",
  33570. height: math.unit(40, "meters")
  33571. },
  33572. ]
  33573. ))
  33574. characterMakers.push(() => makeCharacter(
  33575. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33576. {
  33577. front: {
  33578. height: math.unit(4 + 2 / 12, "feet"),
  33579. weight: math.unit(95, "lb"),
  33580. name: "Front",
  33581. image: {
  33582. source: "./media/characters/vaelophis-nyx/front.svg",
  33583. extra: 2532/2330,
  33584. bottom: 0/2532
  33585. }
  33586. },
  33587. back: {
  33588. height: math.unit(4 + 2 / 12, "feet"),
  33589. weight: math.unit(95, "lb"),
  33590. name: "Back",
  33591. image: {
  33592. source: "./media/characters/vaelophis-nyx/back.svg",
  33593. extra: 2484/2361,
  33594. bottom: 0/2484
  33595. }
  33596. },
  33597. feralSide: {
  33598. height: math.unit(2 + 1/12, "feet"),
  33599. weight: math.unit(20, "lb"),
  33600. name: "Feral (Side)",
  33601. image: {
  33602. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33603. extra: 1721/1581,
  33604. bottom: 70/1791
  33605. }
  33606. },
  33607. feralLazing: {
  33608. height: math.unit(1.08, "feet"),
  33609. weight: math.unit(20, "lb"),
  33610. name: "Feral (Lazing)",
  33611. image: {
  33612. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33613. extra: 822/822,
  33614. bottom: 248/1070
  33615. }
  33616. },
  33617. ear: {
  33618. height: math.unit(0.416, "feet"),
  33619. name: "Ear",
  33620. image: {
  33621. source: "./media/characters/vaelophis-nyx/ear.svg"
  33622. }
  33623. },
  33624. eye: {
  33625. height: math.unit(0.0748, "feet"),
  33626. name: "Eye",
  33627. image: {
  33628. source: "./media/characters/vaelophis-nyx/eye.svg"
  33629. }
  33630. },
  33631. mouth: {
  33632. height: math.unit(0.378, "feet"),
  33633. name: "Mouth",
  33634. image: {
  33635. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33636. }
  33637. },
  33638. spade: {
  33639. height: math.unit(0.55, "feet"),
  33640. name: "Spade",
  33641. image: {
  33642. source: "./media/characters/vaelophis-nyx/spade.svg"
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(4 + 2/12, "feet"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33656. {
  33657. front: {
  33658. height: math.unit(7, "feet"),
  33659. weight: math.unit(231, "lb"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/flux/front.svg",
  33663. extra: 919/871,
  33664. bottom: 0/919
  33665. }
  33666. },
  33667. back: {
  33668. height: math.unit(7, "feet"),
  33669. weight: math.unit(231, "lb"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/flux/back.svg",
  33673. extra: 1040/992,
  33674. bottom: 0/1040
  33675. }
  33676. },
  33677. frontDressed: {
  33678. height: math.unit(7, "feet"),
  33679. weight: math.unit(231, "lb"),
  33680. name: "Front (Dressed)",
  33681. image: {
  33682. source: "./media/characters/flux/front-dressed.svg",
  33683. extra: 919/871,
  33684. bottom: 0/919
  33685. }
  33686. },
  33687. feralSide: {
  33688. height: math.unit(5, "feet"),
  33689. weight: math.unit(150, "lb"),
  33690. name: "Feral (Side)",
  33691. image: {
  33692. source: "./media/characters/flux/feral-side.svg",
  33693. extra: 598/528,
  33694. bottom: 28/626
  33695. }
  33696. },
  33697. head: {
  33698. height: math.unit(1.585, "feet"),
  33699. name: "Head",
  33700. image: {
  33701. source: "./media/characters/flux/head.svg"
  33702. }
  33703. },
  33704. headSide: {
  33705. height: math.unit(1.74, "feet"),
  33706. name: "Head (Side)",
  33707. image: {
  33708. source: "./media/characters/flux/head-side.svg"
  33709. }
  33710. },
  33711. headSideFire: {
  33712. height: math.unit(1.76, "feet"),
  33713. name: "Head (Side, Fire)",
  33714. image: {
  33715. source: "./media/characters/flux/head-side-fire.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal",
  33722. height: math.unit(7, "feet"),
  33723. default: true
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33729. {
  33730. front: {
  33731. height: math.unit(9, "feet"),
  33732. weight: math.unit(1012, "lb"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/ulfra-lupae/front.svg",
  33736. extra: 1083/1011,
  33737. bottom: 67/1150
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Micro",
  33744. height: math.unit(6, "inches")
  33745. },
  33746. {
  33747. name: "Socializing",
  33748. height: math.unit(6 + 5/12, "feet")
  33749. },
  33750. {
  33751. name: "Normal",
  33752. height: math.unit(9, "feet"),
  33753. default: true
  33754. },
  33755. {
  33756. name: "Macro",
  33757. height: math.unit(150, "feet")
  33758. },
  33759. ]
  33760. ))
  33761. characterMakers.push(() => makeCharacter(
  33762. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33763. {
  33764. front: {
  33765. height: math.unit(5 + 2/12, "feet"),
  33766. weight: math.unit(120, "lb"),
  33767. name: "Front",
  33768. image: {
  33769. source: "./media/characters/timber/front.svg",
  33770. extra: 2814/2705,
  33771. bottom: 181/2995
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(5 + 2/12, "feet"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(9, "feet"),
  33788. name: "Front",
  33789. image: {
  33790. source: "./media/characters/nicki/front.svg",
  33791. extra: 1240/990,
  33792. bottom: 45/1285
  33793. },
  33794. form: "anthro",
  33795. default: true
  33796. },
  33797. side: {
  33798. height: math.unit(9, "feet"),
  33799. name: "Side",
  33800. image: {
  33801. source: "./media/characters/nicki/side.svg",
  33802. extra: 1047/973,
  33803. bottom: 61/1108
  33804. },
  33805. form: "anthro"
  33806. },
  33807. back: {
  33808. height: math.unit(9, "feet"),
  33809. name: "Back",
  33810. image: {
  33811. source: "./media/characters/nicki/back.svg",
  33812. extra: 1006/965,
  33813. bottom: 39/1045
  33814. },
  33815. form: "anthro"
  33816. },
  33817. taur: {
  33818. height: math.unit(15, "feet"),
  33819. name: "Taur",
  33820. image: {
  33821. source: "./media/characters/nicki/taur.svg",
  33822. extra: 1592/1347,
  33823. bottom: 0/1592
  33824. },
  33825. form: "taur",
  33826. default: true
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(9, "feet"),
  33833. form: "anthro",
  33834. default: true
  33835. },
  33836. {
  33837. name: "Normal",
  33838. height: math.unit(15, "feet"),
  33839. form: "taur",
  33840. default: true
  33841. }
  33842. ],
  33843. {
  33844. "anthro": {
  33845. name: "Anthro",
  33846. default: true
  33847. },
  33848. "taur": {
  33849. name: "Taur"
  33850. }
  33851. }
  33852. ))
  33853. characterMakers.push(() => makeCharacter(
  33854. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33855. {
  33856. front: {
  33857. height: math.unit(7 + 10/12, "feet"),
  33858. weight: math.unit(3.5, "tons"),
  33859. name: "Front",
  33860. image: {
  33861. source: "./media/characters/lee/front.svg",
  33862. extra: 1773/1615,
  33863. bottom: 86/1859
  33864. }
  33865. },
  33866. hand: {
  33867. height: math.unit(1.78, "feet"),
  33868. name: "Hand",
  33869. image: {
  33870. source: "./media/characters/lee/hand.svg"
  33871. }
  33872. },
  33873. maw: {
  33874. height: math.unit(1.18, "feet"),
  33875. name: "Maw",
  33876. image: {
  33877. source: "./media/characters/lee/maw.svg"
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(7 + 10/12, "feet"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33891. {
  33892. front: {
  33893. height: math.unit(9, "feet"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/guti/front.svg",
  33897. extra: 4551/4355,
  33898. bottom: 123/4674
  33899. }
  33900. },
  33901. tongue: {
  33902. height: math.unit(1, "feet"),
  33903. name: "Tongue",
  33904. image: {
  33905. source: "./media/characters/guti/tongue.svg"
  33906. }
  33907. },
  33908. paw: {
  33909. height: math.unit(1.18, "feet"),
  33910. name: "Paw",
  33911. image: {
  33912. source: "./media/characters/guti/paw.svg"
  33913. }
  33914. },
  33915. },
  33916. [
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(9, "feet"),
  33920. default: true
  33921. },
  33922. ]
  33923. ))
  33924. characterMakers.push(() => makeCharacter(
  33925. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33926. {
  33927. side: {
  33928. height: math.unit(5, "meters"),
  33929. name: "Side",
  33930. image: {
  33931. source: "./media/characters/vesper/side.svg",
  33932. extra: 1605/1518,
  33933. bottom: 0/1605
  33934. }
  33935. },
  33936. },
  33937. [
  33938. {
  33939. name: "Small",
  33940. height: math.unit(5, "meters")
  33941. },
  33942. {
  33943. name: "Sage",
  33944. height: math.unit(100, "meters"),
  33945. default: true
  33946. },
  33947. {
  33948. name: "Fun Size",
  33949. height: math.unit(600, "meters")
  33950. },
  33951. {
  33952. name: "Goddess",
  33953. height: math.unit(20000, "km")
  33954. },
  33955. {
  33956. name: "Maximum",
  33957. height: math.unit(5, "galaxies")
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(6 + 3/12, "feet"),
  33966. weight: math.unit(190, "lb"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/gawain/front.svg",
  33970. extra: 2222/2139,
  33971. bottom: 90/2312
  33972. }
  33973. },
  33974. back: {
  33975. height: math.unit(6 + 3/12, "feet"),
  33976. weight: math.unit(190, "lb"),
  33977. name: "Back",
  33978. image: {
  33979. source: "./media/characters/gawain/back.svg",
  33980. extra: 2199/2111,
  33981. bottom: 73/2272
  33982. }
  33983. },
  33984. },
  33985. [
  33986. {
  33987. name: "Normal",
  33988. height: math.unit(6 + 3/12, "feet"),
  33989. default: true
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33995. {
  33996. side: {
  33997. height: math.unit(3.5, "meters"),
  33998. weight: math.unit(16000, "lb"),
  33999. name: "Side",
  34000. image: {
  34001. source: "./media/characters/dascalti/side.svg",
  34002. extra: 392/273,
  34003. bottom: 47/439
  34004. }
  34005. },
  34006. breath: {
  34007. height: math.unit(7.4, "feet"),
  34008. name: "Breath",
  34009. image: {
  34010. source: "./media/characters/dascalti/breath.svg"
  34011. }
  34012. },
  34013. fed: {
  34014. height: math.unit(3.6, "meters"),
  34015. weight: math.unit(16000, "lb"),
  34016. name: "Fed",
  34017. image: {
  34018. source: "./media/characters/dascalti/fed.svg",
  34019. extra: 1419/820,
  34020. bottom: 95/1514
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(3.5, "meters"),
  34028. default: true
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(3 + 5/12, "feet"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/mauve/front.svg",
  34040. extra: 1126/1033,
  34041. bottom: 65/1191
  34042. }
  34043. },
  34044. side: {
  34045. height: math.unit(3 + 5/12, "feet"),
  34046. name: "Side",
  34047. image: {
  34048. source: "./media/characters/mauve/side.svg",
  34049. extra: 1089/1001,
  34050. bottom: 29/1118
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(3 + 5/12, "feet"),
  34055. name: "Back",
  34056. image: {
  34057. source: "./media/characters/mauve/back.svg",
  34058. extra: 1173/1053,
  34059. bottom: 109/1282
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(3 + 5/12, "feet"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(6 + 3/12, "feet"),
  34076. weight: math.unit(430, "lb"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/carlos/front.svg",
  34080. extra: 1964/1913,
  34081. bottom: 70/2034
  34082. }
  34083. },
  34084. },
  34085. [
  34086. {
  34087. name: "Normal",
  34088. height: math.unit(6 + 3/12, "feet"),
  34089. default: true
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34095. {
  34096. back: {
  34097. height: math.unit(5 + 10/12, "feet"),
  34098. weight: math.unit(200, "lb"),
  34099. name: "Back",
  34100. image: {
  34101. source: "./media/characters/jax/back.svg",
  34102. extra: 764/739,
  34103. bottom: 25/789
  34104. }
  34105. },
  34106. },
  34107. [
  34108. {
  34109. name: "Normal",
  34110. height: math.unit(5 + 10/12, "feet"),
  34111. default: true
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34117. {
  34118. front: {
  34119. height: math.unit(8, "feet"),
  34120. weight: math.unit(250, "lb"),
  34121. name: "Front",
  34122. image: {
  34123. source: "./media/characters/eikthynir/front.svg",
  34124. extra: 1332/1166,
  34125. bottom: 82/1414
  34126. }
  34127. },
  34128. back: {
  34129. height: math.unit(8, "feet"),
  34130. weight: math.unit(250, "lb"),
  34131. name: "Back",
  34132. image: {
  34133. source: "./media/characters/eikthynir/back.svg",
  34134. extra: 1342/1190,
  34135. bottom: 19/1361
  34136. }
  34137. },
  34138. dick: {
  34139. height: math.unit(2.35, "feet"),
  34140. name: "Dick",
  34141. image: {
  34142. source: "./media/characters/eikthynir/dick.svg"
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(8, "feet"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(99, "meters"),
  34159. weight: math.unit(13000, "tons"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/zlmos/front.svg",
  34163. extra: 2202/1992,
  34164. bottom: 315/2517
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Macro",
  34171. height: math.unit(99, "meters"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(6 + 5/12, "feet"),
  34181. name: "Front",
  34182. image: {
  34183. source: "./media/characters/purri/front.svg",
  34184. extra: 1698/1610,
  34185. bottom: 32/1730
  34186. }
  34187. },
  34188. frontAlt: {
  34189. height: math.unit(6 + 5/12, "feet"),
  34190. name: "Front (Alt)",
  34191. image: {
  34192. source: "./media/characters/purri/front-alt.svg",
  34193. extra: 450/420,
  34194. bottom: 26/476
  34195. }
  34196. },
  34197. boots: {
  34198. height: math.unit(5.5, "feet"),
  34199. name: "Boots",
  34200. image: {
  34201. source: "./media/characters/purri/boots.svg",
  34202. extra: 905/853,
  34203. bottom: 18/923
  34204. },
  34205. extraAttributes: {
  34206. "shoeSize": {
  34207. name: "Shoe Size",
  34208. power: 1,
  34209. type: "length",
  34210. base: math.unit(12, "ShoeSizeMensUS")
  34211. },
  34212. "platformHeight": {
  34213. name: "Platform Height",
  34214. power: 1,
  34215. type: "length",
  34216. base: math.unit(2, "inches")
  34217. },
  34218. }
  34219. },
  34220. lying: {
  34221. height: math.unit(2, "feet"),
  34222. name: "Lying",
  34223. image: {
  34224. source: "./media/characters/purri/lying.svg",
  34225. extra: 940/843,
  34226. bottom: 146/1086
  34227. }
  34228. },
  34229. devious: {
  34230. height: math.unit(1.77, "feet"),
  34231. name: "Devious",
  34232. image: {
  34233. source: "./media/characters/purri/devious.svg",
  34234. extra: 1440/1155,
  34235. bottom: 147/1587
  34236. }
  34237. },
  34238. bean: {
  34239. height: math.unit(1.94, "feet"),
  34240. name: "Bean",
  34241. image: {
  34242. source: "./media/characters/purri/bean.svg"
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Micro",
  34249. height: math.unit(1, "mm")
  34250. },
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(6 + 5/12, "feet"),
  34254. default: true
  34255. },
  34256. {
  34257. name: "Macro :3c",
  34258. height: math.unit(2, "miles")
  34259. },
  34260. ]
  34261. ))
  34262. characterMakers.push(() => makeCharacter(
  34263. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34264. {
  34265. front: {
  34266. height: math.unit(6 + 2/12, "feet"),
  34267. weight: math.unit(250, "lb"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/moonlight/front.svg",
  34271. extra: 1044/908,
  34272. bottom: 56/1100
  34273. }
  34274. },
  34275. feral: {
  34276. height: math.unit(3 + 1/12, "feet"),
  34277. weight: math.unit(50, "kg"),
  34278. name: "Feral",
  34279. image: {
  34280. source: "./media/characters/moonlight/feral.svg",
  34281. extra: 3705/2791,
  34282. bottom: 145/3850
  34283. }
  34284. },
  34285. paw: {
  34286. height: math.unit(1, "feet"),
  34287. name: "Paw",
  34288. image: {
  34289. source: "./media/characters/moonlight/paw.svg"
  34290. }
  34291. },
  34292. paws: {
  34293. height: math.unit(0.98, "feet"),
  34294. name: "Paws",
  34295. image: {
  34296. source: "./media/characters/moonlight/paws.svg",
  34297. extra: 939/939,
  34298. bottom: 50/989
  34299. }
  34300. },
  34301. mouth: {
  34302. height: math.unit(0.48, "feet"),
  34303. name: "Mouth",
  34304. image: {
  34305. source: "./media/characters/moonlight/mouth.svg"
  34306. }
  34307. },
  34308. dick: {
  34309. height: math.unit(1.46, "feet"),
  34310. name: "Dick",
  34311. image: {
  34312. source: "./media/characters/moonlight/dick.svg"
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(6 + 2/12, "feet"),
  34320. default: true
  34321. },
  34322. {
  34323. name: "Macro",
  34324. height: math.unit(300, "feet")
  34325. },
  34326. {
  34327. name: "Macro+",
  34328. height: math.unit(1, "mile")
  34329. },
  34330. {
  34331. name: "Mt. Moon",
  34332. height: math.unit(5, "miles")
  34333. },
  34334. {
  34335. name: "Megamacro",
  34336. height: math.unit(15, "miles")
  34337. },
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34342. {
  34343. back: {
  34344. height: math.unit(6, "feet"),
  34345. weight: math.unit(150, "lb"),
  34346. name: "Back",
  34347. image: {
  34348. source: "./media/characters/sylen/back.svg",
  34349. extra: 1335/1273,
  34350. bottom: 107/1442
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Normal",
  34357. height: math.unit(5 + 5/12, "feet")
  34358. },
  34359. {
  34360. name: "Megamacro",
  34361. height: math.unit(3, "miles"),
  34362. default: true
  34363. },
  34364. ]
  34365. ))
  34366. characterMakers.push(() => makeCharacter(
  34367. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34368. {
  34369. front: {
  34370. height: math.unit(6, "feet"),
  34371. weight: math.unit(190, "lb"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/huttser/front.svg",
  34375. extra: 1152/1058,
  34376. bottom: 23/1175
  34377. }
  34378. },
  34379. side: {
  34380. height: math.unit(6, "feet"),
  34381. weight: math.unit(190, "lb"),
  34382. name: "Side",
  34383. image: {
  34384. source: "./media/characters/huttser/side.svg",
  34385. extra: 1174/1065,
  34386. bottom: 18/1192
  34387. }
  34388. },
  34389. back: {
  34390. height: math.unit(6, "feet"),
  34391. weight: math.unit(190, "lb"),
  34392. name: "Back",
  34393. image: {
  34394. source: "./media/characters/huttser/back.svg",
  34395. extra: 1158/1056,
  34396. bottom: 12/1170
  34397. }
  34398. },
  34399. },
  34400. [
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34405. {
  34406. side: {
  34407. height: math.unit(12 + 9/12, "feet"),
  34408. weight: math.unit(15000, "lb"),
  34409. name: "Side",
  34410. image: {
  34411. source: "./media/characters/faan/side.svg",
  34412. extra: 2747/2697,
  34413. bottom: 0/2747
  34414. }
  34415. },
  34416. front: {
  34417. height: math.unit(12 + 9/12, "feet"),
  34418. weight: math.unit(15000, "lb"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/faan/front.svg",
  34422. extra: 607/571,
  34423. bottom: 24/631
  34424. }
  34425. },
  34426. head: {
  34427. height: math.unit(2.85, "feet"),
  34428. name: "Head",
  34429. image: {
  34430. source: "./media/characters/faan/head.svg"
  34431. }
  34432. },
  34433. headAlt: {
  34434. height: math.unit(3.13, "feet"),
  34435. name: "Head-alt",
  34436. image: {
  34437. source: "./media/characters/faan/head-alt.svg"
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Normal",
  34444. height: math.unit(12 + 9/12, "feet"),
  34445. default: true
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34451. {
  34452. front: {
  34453. height: math.unit(6, "feet"),
  34454. weight: math.unit(300, "lb"),
  34455. name: "Front",
  34456. image: {
  34457. source: "./media/characters/tanio/front.svg",
  34458. extra: 711/673,
  34459. bottom: 25/736
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Normal",
  34466. height: math.unit(6, "feet"),
  34467. default: true
  34468. },
  34469. ]
  34470. ))
  34471. characterMakers.push(() => makeCharacter(
  34472. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34473. {
  34474. front: {
  34475. height: math.unit(3, "inches"),
  34476. name: "Front",
  34477. image: {
  34478. source: "./media/characters/noboru/front.svg",
  34479. extra: 1039/932,
  34480. bottom: 18/1057
  34481. }
  34482. },
  34483. },
  34484. [
  34485. {
  34486. name: "Micro",
  34487. height: math.unit(3, "inches"),
  34488. default: true
  34489. },
  34490. ]
  34491. ))
  34492. characterMakers.push(() => makeCharacter(
  34493. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34494. {
  34495. front: {
  34496. height: math.unit(1.85, "meters"),
  34497. weight: math.unit(80, "kg"),
  34498. name: "Front",
  34499. image: {
  34500. source: "./media/characters/daniel-barrett/front.svg",
  34501. extra: 355/337,
  34502. bottom: 9/364
  34503. }
  34504. },
  34505. },
  34506. [
  34507. {
  34508. name: "Pico",
  34509. height: math.unit(0.0433, "mm")
  34510. },
  34511. {
  34512. name: "Nano",
  34513. height: math.unit(1.5, "mm")
  34514. },
  34515. {
  34516. name: "Micro",
  34517. height: math.unit(5.3, "cm"),
  34518. default: true
  34519. },
  34520. {
  34521. name: "Normal",
  34522. height: math.unit(1.85, "meters")
  34523. },
  34524. {
  34525. name: "Macro",
  34526. height: math.unit(64.7, "meters")
  34527. },
  34528. {
  34529. name: "Megamacro",
  34530. height: math.unit(2.26, "km")
  34531. },
  34532. {
  34533. name: "Gigamacro",
  34534. height: math.unit(79, "km")
  34535. },
  34536. {
  34537. name: "Teramacro",
  34538. height: math.unit(2765, "km")
  34539. },
  34540. {
  34541. name: "Petamacro",
  34542. height: math.unit(96678, "km")
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(30, "meters"),
  34551. weight: math.unit(400, "tons"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/zeel/front.svg",
  34555. extra: 2599/2599,
  34556. bottom: 226/2825
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Macro",
  34563. height: math.unit(30, "meters"),
  34564. default: true
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(6 + 7/12, "feet"),
  34573. weight: math.unit(210, "lb"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/tarn/front.svg",
  34577. extra: 3517/3220,
  34578. bottom: 91/3608
  34579. }
  34580. },
  34581. back: {
  34582. height: math.unit(6 + 7/12, "feet"),
  34583. weight: math.unit(210, "lb"),
  34584. name: "Back",
  34585. image: {
  34586. source: "./media/characters/tarn/back.svg",
  34587. extra: 3566/3241,
  34588. bottom: 34/3600
  34589. }
  34590. },
  34591. dick: {
  34592. height: math.unit(1.65, "feet"),
  34593. name: "Dick",
  34594. image: {
  34595. source: "./media/characters/tarn/dick.svg"
  34596. }
  34597. },
  34598. paw: {
  34599. height: math.unit(1.80, "feet"),
  34600. name: "Paw",
  34601. image: {
  34602. source: "./media/characters/tarn/paw.svg"
  34603. }
  34604. },
  34605. tongue: {
  34606. height: math.unit(0.97, "feet"),
  34607. name: "Tongue",
  34608. image: {
  34609. source: "./media/characters/tarn/tongue.svg"
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Micro",
  34616. height: math.unit(4, "inches")
  34617. },
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(6 + 7/12, "feet"),
  34621. default: true
  34622. },
  34623. {
  34624. name: "Macro",
  34625. height: math.unit(300, "feet")
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(5 + 7/12, "feet"),
  34634. weight: math.unit(80, "kg"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34638. extra: 3023/2865,
  34639. bottom: 33/3056
  34640. }
  34641. },
  34642. back: {
  34643. height: math.unit(5 + 7/12, "feet"),
  34644. weight: math.unit(80, "kg"),
  34645. name: "Back",
  34646. image: {
  34647. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34648. extra: 3020/2886,
  34649. bottom: 30/3050
  34650. }
  34651. },
  34652. dick: {
  34653. height: math.unit(0.98, "feet"),
  34654. name: "Dick",
  34655. image: {
  34656. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34657. }
  34658. },
  34659. anatomy: {
  34660. height: math.unit(2.86, "feet"),
  34661. name: "Anatomy",
  34662. image: {
  34663. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Really Small",
  34670. height: math.unit(2, "inches")
  34671. },
  34672. {
  34673. name: "Micro",
  34674. height: math.unit(5.583, "inches")
  34675. },
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(5 + 7/12, "feet"),
  34679. default: true
  34680. },
  34681. {
  34682. name: "Macro",
  34683. height: math.unit(67, "feet")
  34684. },
  34685. {
  34686. name: "Megamacro",
  34687. height: math.unit(134, "feet")
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(9, "feet"),
  34696. weight: math.unit(120, "lb"),
  34697. name: "Front",
  34698. image: {
  34699. source: "./media/characters/sally/front.svg",
  34700. extra: 1506/1349,
  34701. bottom: 66/1572
  34702. }
  34703. },
  34704. },
  34705. [
  34706. {
  34707. name: "Normal",
  34708. height: math.unit(9, "feet"),
  34709. default: true
  34710. },
  34711. ]
  34712. ))
  34713. characterMakers.push(() => makeCharacter(
  34714. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34715. {
  34716. front: {
  34717. height: math.unit(8, "feet"),
  34718. weight: math.unit(900, "lb"),
  34719. name: "Front",
  34720. image: {
  34721. source: "./media/characters/owen/front.svg",
  34722. extra: 1761/1657,
  34723. bottom: 74/1835
  34724. }
  34725. },
  34726. side: {
  34727. height: math.unit(8, "feet"),
  34728. weight: math.unit(900, "lb"),
  34729. name: "Side",
  34730. image: {
  34731. source: "./media/characters/owen/side.svg",
  34732. extra: 1797/1734,
  34733. bottom: 30/1827
  34734. }
  34735. },
  34736. back: {
  34737. height: math.unit(8, "feet"),
  34738. weight: math.unit(900, "lb"),
  34739. name: "Back",
  34740. image: {
  34741. source: "./media/characters/owen/back.svg",
  34742. extra: 1796/1706,
  34743. bottom: 59/1855
  34744. }
  34745. },
  34746. maw: {
  34747. height: math.unit(1.76, "feet"),
  34748. name: "Maw",
  34749. image: {
  34750. source: "./media/characters/owen/maw.svg"
  34751. }
  34752. },
  34753. },
  34754. [
  34755. {
  34756. name: "Normal",
  34757. height: math.unit(8, "feet"),
  34758. default: true
  34759. },
  34760. ]
  34761. ))
  34762. characterMakers.push(() => makeCharacter(
  34763. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34764. {
  34765. front: {
  34766. height: math.unit(4, "feet"),
  34767. weight: math.unit(400, "lb"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/ryth/front.svg",
  34771. extra: 1920/1748,
  34772. bottom: 42/1962
  34773. }
  34774. },
  34775. back: {
  34776. height: math.unit(4, "feet"),
  34777. weight: math.unit(400, "lb"),
  34778. name: "Back",
  34779. image: {
  34780. source: "./media/characters/ryth/back.svg",
  34781. extra: 1897/1690,
  34782. bottom: 89/1986
  34783. }
  34784. },
  34785. mouth: {
  34786. height: math.unit(1.39, "feet"),
  34787. name: "Mouth",
  34788. image: {
  34789. source: "./media/characters/ryth/mouth.svg"
  34790. }
  34791. },
  34792. tailmaw: {
  34793. height: math.unit(1.23, "feet"),
  34794. name: "Tailmaw",
  34795. image: {
  34796. source: "./media/characters/ryth/tailmaw.svg"
  34797. }
  34798. },
  34799. goia: {
  34800. height: math.unit(4, "meters"),
  34801. weight: math.unit(10800, "lb"),
  34802. name: "Goia",
  34803. image: {
  34804. source: "./media/characters/ryth/goia.svg",
  34805. extra: 745/640,
  34806. bottom: 107/852
  34807. }
  34808. },
  34809. goiaFront: {
  34810. height: math.unit(4, "meters"),
  34811. weight: math.unit(10800, "lb"),
  34812. name: "Goia (Front)",
  34813. image: {
  34814. source: "./media/characters/ryth/goia-front.svg",
  34815. extra: 750/586,
  34816. bottom: 114/864
  34817. }
  34818. },
  34819. goiaMaw: {
  34820. height: math.unit(5.55, "feet"),
  34821. name: "Goia Maw",
  34822. image: {
  34823. source: "./media/characters/ryth/goia-maw.svg"
  34824. }
  34825. },
  34826. goiaForepaw: {
  34827. height: math.unit(3.5, "feet"),
  34828. name: "Goia Forepaw",
  34829. image: {
  34830. source: "./media/characters/ryth/goia-forepaw.svg"
  34831. }
  34832. },
  34833. goiaHindpaw: {
  34834. height: math.unit(5.55, "feet"),
  34835. name: "Goia Hindpaw",
  34836. image: {
  34837. source: "./media/characters/ryth/goia-hindpaw.svg"
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(4, "feet"),
  34845. default: true
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34851. {
  34852. front: {
  34853. height: math.unit(7, "feet"),
  34854. weight: math.unit(180, "lb"),
  34855. name: "Front",
  34856. image: {
  34857. source: "./media/characters/necrolance/front.svg",
  34858. extra: 1062/947,
  34859. bottom: 41/1103
  34860. }
  34861. },
  34862. back: {
  34863. height: math.unit(7, "feet"),
  34864. weight: math.unit(180, "lb"),
  34865. name: "Back",
  34866. image: {
  34867. source: "./media/characters/necrolance/back.svg",
  34868. extra: 1045/984,
  34869. bottom: 14/1059
  34870. }
  34871. },
  34872. wing: {
  34873. height: math.unit(2.67, "feet"),
  34874. name: "Wing",
  34875. image: {
  34876. source: "./media/characters/necrolance/wing.svg"
  34877. }
  34878. },
  34879. },
  34880. [
  34881. {
  34882. name: "Normal",
  34883. height: math.unit(7, "feet"),
  34884. default: true
  34885. },
  34886. ]
  34887. ))
  34888. characterMakers.push(() => makeCharacter(
  34889. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34890. {
  34891. front: {
  34892. height: math.unit(76, "meters"),
  34893. weight: math.unit(30000, "tons"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/tyler/front.svg",
  34897. extra: 1640/1640,
  34898. bottom: 114/1754
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Macro",
  34905. height: math.unit(76, "meters"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(4 + 11/12, "feet"),
  34915. weight: math.unit(132, "lb"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/icey/front.svg",
  34919. extra: 2750/2550,
  34920. bottom: 33/2783
  34921. }
  34922. },
  34923. back: {
  34924. height: math.unit(4 + 11/12, "feet"),
  34925. weight: math.unit(132, "lb"),
  34926. name: "Back",
  34927. image: {
  34928. source: "./media/characters/icey/back.svg",
  34929. extra: 2624/2481,
  34930. bottom: 35/2659
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(4 + 11/12, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(100, "feet"),
  34947. weight: math.unit(0, "lb"),
  34948. name: "Front",
  34949. image: {
  34950. source: "./media/characters/smile/front.svg",
  34951. extra: 2983/2912,
  34952. bottom: 162/3145
  34953. }
  34954. },
  34955. back: {
  34956. height: math.unit(100, "feet"),
  34957. weight: math.unit(0, "lb"),
  34958. name: "Back",
  34959. image: {
  34960. source: "./media/characters/smile/back.svg",
  34961. extra: 3143/3031,
  34962. bottom: 91/3234
  34963. }
  34964. },
  34965. head: {
  34966. height: math.unit(26.3, "feet"),
  34967. weight: math.unit(0, "lb"),
  34968. name: "Head",
  34969. image: {
  34970. source: "./media/characters/smile/head.svg"
  34971. }
  34972. },
  34973. collar: {
  34974. height: math.unit(5.3, "feet"),
  34975. weight: math.unit(0, "lb"),
  34976. name: "Collar",
  34977. image: {
  34978. source: "./media/characters/smile/collar.svg"
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Macro",
  34985. height: math.unit(100, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34992. {
  34993. dragon: {
  34994. height: math.unit(26, "feet"),
  34995. weight: math.unit(36, "tons"),
  34996. name: "Dragon",
  34997. image: {
  34998. source: "./media/characters/arimphae/dragon.svg",
  34999. extra: 1574/983,
  35000. bottom: 357/1931
  35001. }
  35002. },
  35003. drake: {
  35004. height: math.unit(9, "feet"),
  35005. weight: math.unit(1.5, "tons"),
  35006. name: "Drake",
  35007. image: {
  35008. source: "./media/characters/arimphae/drake.svg",
  35009. extra: 1120/925,
  35010. bottom: 435/1555
  35011. }
  35012. },
  35013. },
  35014. [
  35015. {
  35016. name: "Small",
  35017. height: math.unit(26*5/9, "feet")
  35018. },
  35019. {
  35020. name: "Normal",
  35021. height: math.unit(26, "feet"),
  35022. default: true
  35023. },
  35024. ]
  35025. ))
  35026. characterMakers.push(() => makeCharacter(
  35027. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35028. {
  35029. front: {
  35030. height: math.unit(8 + 9/12, "feet"),
  35031. name: "Front",
  35032. image: {
  35033. source: "./media/characters/xander/front.svg",
  35034. extra: 1237/974,
  35035. bottom: 94/1331
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(8 + 9/12, "feet"),
  35043. default: true
  35044. },
  35045. {
  35046. name: "Gaze Grabber",
  35047. height: math.unit(13 + 8/12, "feet")
  35048. },
  35049. {
  35050. name: "Jaw Dropper",
  35051. height: math.unit(27, "feet")
  35052. },
  35053. {
  35054. name: "Show Stopper",
  35055. height: math.unit(136, "feet")
  35056. },
  35057. {
  35058. name: "Superstar",
  35059. height: math.unit(1.9e6, "miles")
  35060. },
  35061. ]
  35062. ))
  35063. characterMakers.push(() => makeCharacter(
  35064. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35065. {
  35066. side: {
  35067. height: math.unit(2100, "feet"),
  35068. name: "Side",
  35069. image: {
  35070. source: "./media/characters/osiris/side.svg",
  35071. extra: 1105/939,
  35072. bottom: 167/1272
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Macro",
  35079. height: math.unit(2100, "feet"),
  35080. default: true
  35081. },
  35082. ]
  35083. ))
  35084. characterMakers.push(() => makeCharacter(
  35085. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35086. {
  35087. front: {
  35088. height: math.unit(6 + 8/12, "feet"),
  35089. weight: math.unit(225, "lb"),
  35090. name: "Front",
  35091. image: {
  35092. source: "./media/characters/rhys-londe/front.svg",
  35093. extra: 2258/2141,
  35094. bottom: 188/2446
  35095. }
  35096. },
  35097. back: {
  35098. height: math.unit(6 + 8/12, "feet"),
  35099. weight: math.unit(225, "lb"),
  35100. name: "Back",
  35101. image: {
  35102. source: "./media/characters/rhys-londe/back.svg",
  35103. extra: 2237/2137,
  35104. bottom: 63/2300
  35105. }
  35106. },
  35107. frontNsfw: {
  35108. height: math.unit(6 + 8/12, "feet"),
  35109. weight: math.unit(225, "lb"),
  35110. name: "Front (NSFW)",
  35111. image: {
  35112. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35113. extra: 2258/2141,
  35114. bottom: 188/2446
  35115. }
  35116. },
  35117. backNsfw: {
  35118. height: math.unit(6 + 8/12, "feet"),
  35119. weight: math.unit(225, "lb"),
  35120. name: "Back (NSFW)",
  35121. image: {
  35122. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35123. extra: 2237/2137,
  35124. bottom: 63/2300
  35125. }
  35126. },
  35127. dick: {
  35128. height: math.unit(30, "inches"),
  35129. name: "Dick",
  35130. image: {
  35131. source: "./media/characters/rhys-londe/dick.svg"
  35132. }
  35133. },
  35134. maw: {
  35135. height: math.unit(1.6, "feet"),
  35136. name: "Maw",
  35137. image: {
  35138. source: "./media/characters/rhys-londe/maw.svg"
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(6 + 8/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(3 + 10/12, "feet"),
  35155. weight: math.unit(90, "lb"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/taivas-ensim/front.svg",
  35159. extra: 1327/1216,
  35160. bottom: 96/1423
  35161. }
  35162. },
  35163. back: {
  35164. height: math.unit(3 + 10/12, "feet"),
  35165. weight: math.unit(90, "lb"),
  35166. name: "Back",
  35167. image: {
  35168. source: "./media/characters/taivas-ensim/back.svg",
  35169. extra: 1355/1247,
  35170. bottom: 11/1366
  35171. }
  35172. },
  35173. frontNsfw: {
  35174. height: math.unit(3 + 10/12, "feet"),
  35175. weight: math.unit(90, "lb"),
  35176. name: "Front (NSFW)",
  35177. image: {
  35178. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35179. extra: 1327/1216,
  35180. bottom: 96/1423
  35181. }
  35182. },
  35183. backNsfw: {
  35184. height: math.unit(3 + 10/12, "feet"),
  35185. weight: math.unit(90, "lb"),
  35186. name: "Back (NSFW)",
  35187. image: {
  35188. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35189. extra: 1355/1247,
  35190. bottom: 11/1366
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(3 + 10/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(9 + 6/12, "feet"),
  35207. weight: math.unit(940, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/byliss/front.svg",
  35211. extra: 1327/1290,
  35212. bottom: 82/1409
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(9 + 6/12, "feet"),
  35217. weight: math.unit(940, "lb"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/byliss/back.svg",
  35221. extra: 1376/1349,
  35222. bottom: 9/1385
  35223. }
  35224. },
  35225. frontNsfw: {
  35226. height: math.unit(9 + 6/12, "feet"),
  35227. weight: math.unit(940, "lb"),
  35228. name: "Front (NSFW)",
  35229. image: {
  35230. source: "./media/characters/byliss/front-nsfw.svg",
  35231. extra: 1327/1290,
  35232. bottom: 82/1409
  35233. }
  35234. },
  35235. backNsfw: {
  35236. height: math.unit(9 + 6/12, "feet"),
  35237. weight: math.unit(940, "lb"),
  35238. name: "Back (NSFW)",
  35239. image: {
  35240. source: "./media/characters/byliss/back-nsfw.svg",
  35241. extra: 1376/1349,
  35242. bottom: 9/1385
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(9 + 6/12, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(5 + 2/12, "feet"),
  35259. weight: math.unit(200, "lb"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/noraly/front.svg",
  35263. extra: 4985/4773,
  35264. bottom: 150/5135
  35265. }
  35266. },
  35267. full: {
  35268. height: math.unit(5 + 2/12, "feet"),
  35269. weight: math.unit(164, "lb"),
  35270. name: "Full",
  35271. image: {
  35272. source: "./media/characters/noraly/full.svg",
  35273. extra: 1114/1059,
  35274. bottom: 35/1149
  35275. }
  35276. },
  35277. fuller: {
  35278. height: math.unit(5 + 2/12, "feet"),
  35279. weight: math.unit(230, "lb"),
  35280. name: "Fuller",
  35281. image: {
  35282. source: "./media/characters/noraly/fuller.svg",
  35283. extra: 1114/1059,
  35284. bottom: 35/1149
  35285. }
  35286. },
  35287. fullest: {
  35288. height: math.unit(5 + 2/12, "feet"),
  35289. weight: math.unit(300, "lb"),
  35290. name: "Fullest",
  35291. image: {
  35292. source: "./media/characters/noraly/fullest.svg",
  35293. extra: 1114/1059,
  35294. bottom: 35/1149
  35295. }
  35296. },
  35297. },
  35298. [
  35299. {
  35300. name: "Normal",
  35301. height: math.unit(5 + 2/12, "feet"),
  35302. default: true
  35303. },
  35304. ]
  35305. ))
  35306. characterMakers.push(() => makeCharacter(
  35307. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35308. {
  35309. front: {
  35310. height: math.unit(5 + 2/12, "feet"),
  35311. weight: math.unit(210, "lb"),
  35312. name: "Front",
  35313. image: {
  35314. source: "./media/characters/pera/front.svg",
  35315. extra: 1560/1531,
  35316. bottom: 165/1725
  35317. }
  35318. },
  35319. back: {
  35320. height: math.unit(5 + 2/12, "feet"),
  35321. weight: math.unit(210, "lb"),
  35322. name: "Back",
  35323. image: {
  35324. source: "./media/characters/pera/back.svg",
  35325. extra: 1523/1493,
  35326. bottom: 152/1675
  35327. }
  35328. },
  35329. dick: {
  35330. height: math.unit(2.4, "feet"),
  35331. name: "Dick",
  35332. image: {
  35333. source: "./media/characters/pera/dick.svg"
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(5 + 2/12, "feet"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35347. {
  35348. front: {
  35349. height: math.unit(12, "feet"),
  35350. weight: math.unit(3200, "lb"),
  35351. name: "Front",
  35352. image: {
  35353. source: "./media/characters/julian/front.svg",
  35354. extra: 2962/2701,
  35355. bottom: 184/3146
  35356. }
  35357. },
  35358. maw: {
  35359. height: math.unit(5.35, "feet"),
  35360. name: "Maw",
  35361. image: {
  35362. source: "./media/characters/julian/maw.svg"
  35363. }
  35364. },
  35365. paw: {
  35366. height: math.unit(3.07, "feet"),
  35367. name: "Paw",
  35368. image: {
  35369. source: "./media/characters/julian/paw.svg"
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Default",
  35376. height: math.unit(12, "feet"),
  35377. default: true
  35378. },
  35379. {
  35380. name: "Big",
  35381. height: math.unit(50, "feet")
  35382. },
  35383. {
  35384. name: "Really Big",
  35385. height: math.unit(1, "mile")
  35386. },
  35387. {
  35388. name: "Extremely Big",
  35389. height: math.unit(100, "miles")
  35390. },
  35391. {
  35392. name: "Planet Hugger",
  35393. height: math.unit(200, "megameters")
  35394. },
  35395. {
  35396. name: "Unreasonably Big",
  35397. height: math.unit(1e300, "meters")
  35398. },
  35399. ]
  35400. ))
  35401. characterMakers.push(() => makeCharacter(
  35402. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35403. {
  35404. solgooleo: {
  35405. height: math.unit(4, "meters"),
  35406. weight: math.unit(6000*1.5, "kg"),
  35407. volume: math.unit(6000, "liters"),
  35408. name: "Solgooleo",
  35409. image: {
  35410. source: "./media/characters/pi/solgooleo.svg",
  35411. extra: 388/331,
  35412. bottom: 29/417
  35413. }
  35414. },
  35415. },
  35416. [
  35417. {
  35418. name: "Normal",
  35419. height: math.unit(4, "meters"),
  35420. default: true
  35421. },
  35422. ]
  35423. ))
  35424. characterMakers.push(() => makeCharacter(
  35425. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35426. {
  35427. front: {
  35428. height: math.unit(8, "feet"),
  35429. weight: math.unit(4, "tons"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/shaun/front.svg",
  35433. extra: 503/495,
  35434. bottom: 20/523
  35435. }
  35436. },
  35437. back: {
  35438. height: math.unit(8, "feet"),
  35439. weight: math.unit(4, "tons"),
  35440. name: "Back",
  35441. image: {
  35442. source: "./media/characters/shaun/back.svg",
  35443. extra: 487/480,
  35444. bottom: 20/507
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Lorg",
  35451. height: math.unit(8, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35458. {
  35459. frontAnthro: {
  35460. height: math.unit(7, "feet"),
  35461. name: "Front",
  35462. image: {
  35463. source: "./media/characters/sini/front-anthro.svg",
  35464. extra: 726/678,
  35465. bottom: 35/761
  35466. },
  35467. form: "anthro",
  35468. default: true
  35469. },
  35470. backAnthro: {
  35471. height: math.unit(7, "feet"),
  35472. name: "Back",
  35473. image: {
  35474. source: "./media/characters/sini/back-anthro.svg",
  35475. extra: 743/701,
  35476. bottom: 12/755
  35477. },
  35478. form: "anthro",
  35479. },
  35480. frontAnthroNsfw: {
  35481. height: math.unit(7, "feet"),
  35482. name: "Front (NSFW)",
  35483. image: {
  35484. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35485. extra: 726/678,
  35486. bottom: 35/761
  35487. },
  35488. form: "anthro"
  35489. },
  35490. backAnthroNsfw: {
  35491. height: math.unit(7, "feet"),
  35492. name: "Back (NSFW)",
  35493. image: {
  35494. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35495. extra: 743/701,
  35496. bottom: 12/755
  35497. },
  35498. form: "anthro",
  35499. },
  35500. mawAnthro: {
  35501. height: math.unit(2.14, "feet"),
  35502. name: "Maw",
  35503. image: {
  35504. source: "./media/characters/sini/maw-anthro.svg"
  35505. },
  35506. form: "anthro"
  35507. },
  35508. dick: {
  35509. height: math.unit(1.45, "feet"),
  35510. name: "Dick",
  35511. image: {
  35512. source: "./media/characters/sini/dick-anthro.svg"
  35513. },
  35514. form: "anthro"
  35515. },
  35516. feral: {
  35517. height: math.unit(16, "feet"),
  35518. name: "Feral",
  35519. image: {
  35520. source: "./media/characters/sini/feral.svg",
  35521. extra: 814/605,
  35522. bottom: 11/825
  35523. },
  35524. form: "feral",
  35525. default: true
  35526. },
  35527. feralNsfw: {
  35528. height: math.unit(16, "feet"),
  35529. name: "Feral (NSFW)",
  35530. image: {
  35531. source: "./media/characters/sini/feral-nsfw.svg",
  35532. extra: 814/605,
  35533. bottom: 11/825
  35534. },
  35535. form: "feral"
  35536. },
  35537. mawFeral: {
  35538. height: math.unit(5.66, "feet"),
  35539. name: "Maw",
  35540. image: {
  35541. source: "./media/characters/sini/maw-feral.svg"
  35542. },
  35543. form: "feral",
  35544. },
  35545. pawFeral: {
  35546. height: math.unit(5.17, "feet"),
  35547. name: "Paw",
  35548. image: {
  35549. source: "./media/characters/sini/paw-feral.svg"
  35550. },
  35551. form: "feral",
  35552. },
  35553. rumpFeral: {
  35554. height: math.unit(13.11, "feet"),
  35555. name: "Rump",
  35556. image: {
  35557. source: "./media/characters/sini/rump-feral.svg"
  35558. },
  35559. form: "feral",
  35560. },
  35561. dickFeral: {
  35562. height: math.unit(1, "feet"),
  35563. name: "Dick",
  35564. image: {
  35565. source: "./media/characters/sini/dick-feral.svg"
  35566. },
  35567. form: "feral",
  35568. },
  35569. eyeFeral: {
  35570. height: math.unit(1.23, "feet"),
  35571. name: "Eye",
  35572. image: {
  35573. source: "./media/characters/sini/eye-feral.svg"
  35574. },
  35575. form: "feral",
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Normal",
  35581. height: math.unit(7, "feet"),
  35582. default: true,
  35583. form: "anthro"
  35584. },
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(16, "feet"),
  35588. default: true,
  35589. form: "feral"
  35590. },
  35591. ],
  35592. {
  35593. "anthro": {
  35594. name: "Anthro",
  35595. default: true
  35596. },
  35597. "feral": {
  35598. name: "Feral",
  35599. }
  35600. }
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35604. {
  35605. side: {
  35606. height: math.unit(47.2, "meters"),
  35607. weight: math.unit(10000, "tons"),
  35608. name: "Side",
  35609. image: {
  35610. source: "./media/characters/raylldo/side.svg",
  35611. extra: 2363/642,
  35612. bottom: 221/2584
  35613. }
  35614. },
  35615. top: {
  35616. height: math.unit(240, "meters"),
  35617. weight: math.unit(10000, "tons"),
  35618. name: "Top",
  35619. image: {
  35620. source: "./media/characters/raylldo/top.svg"
  35621. }
  35622. },
  35623. bottom: {
  35624. height: math.unit(240, "meters"),
  35625. weight: math.unit(10000, "tons"),
  35626. name: "Bottom",
  35627. image: {
  35628. source: "./media/characters/raylldo/bottom.svg"
  35629. }
  35630. },
  35631. head: {
  35632. height: math.unit(38.6, "meters"),
  35633. name: "Head",
  35634. image: {
  35635. source: "./media/characters/raylldo/head.svg",
  35636. extra: 1335/1112,
  35637. bottom: 0/1335
  35638. }
  35639. },
  35640. maw: {
  35641. height: math.unit(16.37, "meters"),
  35642. name: "Maw",
  35643. image: {
  35644. source: "./media/characters/raylldo/maw.svg",
  35645. extra: 883/660,
  35646. bottom: 0/883
  35647. },
  35648. extraAttributes: {
  35649. preyCapacity: {
  35650. name: "Capacity",
  35651. power: 3,
  35652. type: "volume",
  35653. base: math.unit(1000, "people")
  35654. },
  35655. tongueSize: {
  35656. name: "Tongue Size",
  35657. power: 2,
  35658. type: "area",
  35659. base: math.unit(21, "m^2")
  35660. }
  35661. }
  35662. },
  35663. forepaw: {
  35664. height: math.unit(18, "meters"),
  35665. name: "Forepaw",
  35666. image: {
  35667. source: "./media/characters/raylldo/forepaw.svg"
  35668. }
  35669. },
  35670. hindpaw: {
  35671. height: math.unit(23, "meters"),
  35672. name: "Hindpaw",
  35673. image: {
  35674. source: "./media/characters/raylldo/hindpaw.svg"
  35675. }
  35676. },
  35677. genitals: {
  35678. height: math.unit(42, "meters"),
  35679. name: "Genitals",
  35680. image: {
  35681. source: "./media/characters/raylldo/genitals.svg"
  35682. }
  35683. },
  35684. },
  35685. [
  35686. {
  35687. name: "Normal",
  35688. height: math.unit(47.2, "meters"),
  35689. default: true
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35695. {
  35696. anthroFront: {
  35697. height: math.unit(9, "feet"),
  35698. weight: math.unit(600, "lb"),
  35699. name: "Anthro (Front)",
  35700. image: {
  35701. source: "./media/characters/glint/anthro-front.svg",
  35702. extra: 1097/1018,
  35703. bottom: 28/1125
  35704. }
  35705. },
  35706. anthroBack: {
  35707. height: math.unit(9, "feet"),
  35708. weight: math.unit(600, "lb"),
  35709. name: "Anthro (Back)",
  35710. image: {
  35711. source: "./media/characters/glint/anthro-back.svg",
  35712. extra: 1154/997,
  35713. bottom: 36/1190
  35714. }
  35715. },
  35716. feral: {
  35717. height: math.unit(11, "feet"),
  35718. weight: math.unit(50000, "lb"),
  35719. name: "Feral",
  35720. image: {
  35721. source: "./media/characters/glint/feral.svg",
  35722. extra: 3035/1585,
  35723. bottom: 1169/4204
  35724. }
  35725. },
  35726. dickAnthro: {
  35727. height: math.unit(0.7, "meters"),
  35728. name: "Dick (Anthro)",
  35729. image: {
  35730. source: "./media/characters/glint/dick-anthro.svg"
  35731. }
  35732. },
  35733. dickFeral: {
  35734. height: math.unit(2.65, "meters"),
  35735. name: "Dick (Feral)",
  35736. image: {
  35737. source: "./media/characters/glint/dick-feral.svg"
  35738. }
  35739. },
  35740. slitHidden: {
  35741. height: math.unit(5.85, "meters"),
  35742. name: "Slit (Hidden)",
  35743. image: {
  35744. source: "./media/characters/glint/slit-hidden.svg"
  35745. }
  35746. },
  35747. slitErect: {
  35748. height: math.unit(5.85, "meters"),
  35749. name: "Slit (Erect)",
  35750. image: {
  35751. source: "./media/characters/glint/slit-erect.svg"
  35752. }
  35753. },
  35754. mawAnthro: {
  35755. height: math.unit(0.63, "meters"),
  35756. name: "Maw (Anthro)",
  35757. image: {
  35758. source: "./media/characters/glint/maw.svg"
  35759. }
  35760. },
  35761. mawFeral: {
  35762. height: math.unit(2.89, "meters"),
  35763. name: "Maw (Feral)",
  35764. image: {
  35765. source: "./media/characters/glint/maw.svg"
  35766. }
  35767. },
  35768. },
  35769. [
  35770. {
  35771. name: "Normal",
  35772. height: math.unit(9, "feet"),
  35773. default: true
  35774. },
  35775. ]
  35776. ))
  35777. characterMakers.push(() => makeCharacter(
  35778. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35779. {
  35780. side: {
  35781. height: math.unit(15, "feet"),
  35782. weight: math.unit(5000, "kg"),
  35783. name: "Side",
  35784. image: {
  35785. source: "./media/characters/kairne/side.svg",
  35786. extra: 979/811,
  35787. bottom: 13/992
  35788. }
  35789. },
  35790. front: {
  35791. height: math.unit(15, "feet"),
  35792. weight: math.unit(5000, "kg"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/kairne/front.svg",
  35796. extra: 908/814,
  35797. bottom: 26/934
  35798. }
  35799. },
  35800. sideNsfw: {
  35801. height: math.unit(15, "feet"),
  35802. weight: math.unit(5000, "kg"),
  35803. name: "Side (NSFW)",
  35804. image: {
  35805. source: "./media/characters/kairne/side-nsfw.svg",
  35806. extra: 979/811,
  35807. bottom: 13/992
  35808. }
  35809. },
  35810. frontNsfw: {
  35811. height: math.unit(15, "feet"),
  35812. weight: math.unit(5000, "kg"),
  35813. name: "Front (NSFW)",
  35814. image: {
  35815. source: "./media/characters/kairne/front-nsfw.svg",
  35816. extra: 908/814,
  35817. bottom: 26/934
  35818. }
  35819. },
  35820. dickCaged: {
  35821. height: math.unit(0.65, "meters"),
  35822. name: "Dick-caged",
  35823. image: {
  35824. source: "./media/characters/kairne/dick-caged.svg"
  35825. }
  35826. },
  35827. dick: {
  35828. height: math.unit(0.79, "meters"),
  35829. name: "Dick",
  35830. image: {
  35831. source: "./media/characters/kairne/dick.svg"
  35832. }
  35833. },
  35834. genitals: {
  35835. height: math.unit(1.29, "meters"),
  35836. name: "Genitals",
  35837. image: {
  35838. source: "./media/characters/kairne/genitals.svg"
  35839. }
  35840. },
  35841. maw: {
  35842. height: math.unit(1.73, "meters"),
  35843. name: "Maw",
  35844. image: {
  35845. source: "./media/characters/kairne/maw.svg"
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(15, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35859. {
  35860. front: {
  35861. height: math.unit(5 + 8/12, "feet"),
  35862. weight: math.unit(139, "lb"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/biscuit-jackal/front.svg",
  35866. extra: 2106/1961,
  35867. bottom: 58/2164
  35868. }
  35869. },
  35870. back: {
  35871. height: math.unit(5 + 8/12, "feet"),
  35872. weight: math.unit(139, "lb"),
  35873. name: "Back",
  35874. image: {
  35875. source: "./media/characters/biscuit-jackal/back.svg",
  35876. extra: 2132/1976,
  35877. bottom: 57/2189
  35878. }
  35879. },
  35880. werejackal: {
  35881. height: math.unit(6 + 3/12, "feet"),
  35882. weight: math.unit(188, "lb"),
  35883. name: "Werejackal",
  35884. image: {
  35885. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35886. extra: 2373/2178,
  35887. bottom: 53/2426
  35888. }
  35889. },
  35890. },
  35891. [
  35892. {
  35893. name: "Normal",
  35894. height: math.unit(5 + 8/12, "feet"),
  35895. default: true
  35896. },
  35897. ]
  35898. ))
  35899. characterMakers.push(() => makeCharacter(
  35900. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35901. {
  35902. front: {
  35903. height: math.unit(140, "cm"),
  35904. weight: math.unit(45, "kg"),
  35905. name: "Front",
  35906. image: {
  35907. source: "./media/characters/tayra-white/front.svg",
  35908. extra: 2229/2192,
  35909. bottom: 75/2304
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Normal",
  35916. height: math.unit(140, "cm"),
  35917. default: true
  35918. },
  35919. ]
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35923. {
  35924. front: {
  35925. height: math.unit(4 + 5/12, "feet"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/scoop/front.svg",
  35929. extra: 1257/1136,
  35930. bottom: 69/1326
  35931. }
  35932. },
  35933. back: {
  35934. height: math.unit(4 + 5/12, "feet"),
  35935. name: "Back",
  35936. image: {
  35937. source: "./media/characters/scoop/back.svg",
  35938. extra: 1321/1152,
  35939. bottom: 32/1353
  35940. }
  35941. },
  35942. maw: {
  35943. height: math.unit(0.68, "feet"),
  35944. name: "Maw",
  35945. image: {
  35946. source: "./media/characters/scoop/maw.svg"
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Really Small",
  35953. height: math.unit(1, "mm")
  35954. },
  35955. {
  35956. name: "Micro",
  35957. height: math.unit(1, "inch")
  35958. },
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(4 + 5/12, "feet"),
  35962. default: true
  35963. },
  35964. {
  35965. name: "Macro",
  35966. height: math.unit(200, "feet")
  35967. },
  35968. {
  35969. name: "Megamacro",
  35970. height: math.unit(3240, "feet")
  35971. },
  35972. {
  35973. name: "Teramacro",
  35974. height: math.unit(2500, "miles")
  35975. },
  35976. ]
  35977. ))
  35978. characterMakers.push(() => makeCharacter(
  35979. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35980. {
  35981. front: {
  35982. height: math.unit(15 + 7/12, "feet"),
  35983. weight: math.unit(1150, "tons"),
  35984. name: "Front",
  35985. image: {
  35986. source: "./media/characters/saphinara/front.svg",
  35987. extra: 1837/1643,
  35988. bottom: 84/1921
  35989. },
  35990. form: "normal",
  35991. default: true
  35992. },
  35993. side: {
  35994. height: math.unit(15 + 7/12, "feet"),
  35995. weight: math.unit(1150, "tons"),
  35996. name: "Side",
  35997. image: {
  35998. source: "./media/characters/saphinara/side.svg",
  35999. extra: 605/547,
  36000. bottom: 6/611
  36001. },
  36002. form: "normal"
  36003. },
  36004. back: {
  36005. height: math.unit(15 + 7/12, "feet"),
  36006. weight: math.unit(1150, "tons"),
  36007. name: "Back",
  36008. image: {
  36009. source: "./media/characters/saphinara/back.svg",
  36010. extra: 591/531,
  36011. bottom: 13/604
  36012. },
  36013. form: "normal"
  36014. },
  36015. frontTail: {
  36016. height: math.unit(15 + 7/12, "feet"),
  36017. weight: math.unit(1150, "tons"),
  36018. name: "Front (Full Tail)",
  36019. image: {
  36020. source: "./media/characters/saphinara/front-tail.svg",
  36021. extra: 2256/1630,
  36022. bottom: 261/2517
  36023. },
  36024. form: "normal"
  36025. },
  36026. insides: {
  36027. height: math.unit(11.92, "feet"),
  36028. name: "Insides",
  36029. image: {
  36030. source: "./media/characters/saphinara/insides.svg"
  36031. },
  36032. form: "normal"
  36033. },
  36034. head: {
  36035. height: math.unit(4.17, "feet"),
  36036. name: "Head",
  36037. image: {
  36038. source: "./media/characters/saphinara/head.svg"
  36039. },
  36040. form: "normal"
  36041. },
  36042. tongue: {
  36043. height: math.unit(4.60, "feet"),
  36044. name: "Tongue",
  36045. image: {
  36046. source: "./media/characters/saphinara/tongue.svg"
  36047. },
  36048. form: "normal"
  36049. },
  36050. headEnraged: {
  36051. height: math.unit(5.55, "feet"),
  36052. name: "Head (Enraged)",
  36053. image: {
  36054. source: "./media/characters/saphinara/head-enraged.svg"
  36055. },
  36056. form: "normal"
  36057. },
  36058. wings: {
  36059. height: math.unit(11.95, "feet"),
  36060. name: "Wings",
  36061. image: {
  36062. source: "./media/characters/saphinara/wings.svg"
  36063. },
  36064. form: "normal"
  36065. },
  36066. feathers: {
  36067. height: math.unit(8.92, "feet"),
  36068. name: "Feathers",
  36069. image: {
  36070. source: "./media/characters/saphinara/feathers.svg"
  36071. },
  36072. form: "normal"
  36073. },
  36074. shackles: {
  36075. height: math.unit(2, "feet"),
  36076. name: "Shackles",
  36077. image: {
  36078. source: "./media/characters/saphinara/shackles.svg"
  36079. },
  36080. form: "normal"
  36081. },
  36082. eyes: {
  36083. height: math.unit(1.331, "feet"),
  36084. name: "Eyes",
  36085. image: {
  36086. source: "./media/characters/saphinara/eyes.svg"
  36087. },
  36088. form: "normal"
  36089. },
  36090. eyesEnraged: {
  36091. height: math.unit(1.331, "feet"),
  36092. name: "Eyes (Enraged)",
  36093. image: {
  36094. source: "./media/characters/saphinara/eyes-enraged.svg"
  36095. },
  36096. form: "normal"
  36097. },
  36098. trueFormSide: {
  36099. height: math.unit(200, "feet"),
  36100. weight: math.unit(1e7, "tons"),
  36101. name: "Side",
  36102. image: {
  36103. source: "./media/characters/saphinara/true-form-side.svg",
  36104. extra: 1399/770,
  36105. bottom: 97/1496
  36106. },
  36107. form: "true-form",
  36108. default: true
  36109. },
  36110. trueFormMaw: {
  36111. height: math.unit(71.5, "feet"),
  36112. name: "Maw",
  36113. image: {
  36114. source: "./media/characters/saphinara/true-form-maw.svg",
  36115. extra: 2302/1453,
  36116. bottom: 0/2302
  36117. },
  36118. form: "true-form"
  36119. },
  36120. meowberusSide: {
  36121. height: math.unit(75, "feet"),
  36122. weight: math.unit(180000, "kg"),
  36123. preyCapacity: math.unit(50000, "people"),
  36124. name: "Side",
  36125. image: {
  36126. source: "./media/characters/saphinara/meowberus-side.svg",
  36127. extra: 1400/711,
  36128. bottom: 126/1526
  36129. },
  36130. form: "meowberus",
  36131. extraAttributes: {
  36132. "pawArea": {
  36133. name: "Paw Size",
  36134. power: 2,
  36135. type: "area",
  36136. base: math.unit(35, "m^2")
  36137. }
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(15 + 7/12, "feet"),
  36145. default: true,
  36146. form: "normal"
  36147. },
  36148. {
  36149. name: "Angry",
  36150. height: math.unit(30 + 6/12, "feet"),
  36151. form: "normal"
  36152. },
  36153. {
  36154. name: "Enraged",
  36155. height: math.unit(102 + 1/12, "feet"),
  36156. form: "normal"
  36157. },
  36158. {
  36159. name: "True",
  36160. height: math.unit(200, "feet"),
  36161. default: true,
  36162. form: "true-form"
  36163. },
  36164. {
  36165. name: "Normal",
  36166. height: math.unit(75, "feet"),
  36167. default: true,
  36168. form: "meowberus"
  36169. },
  36170. ],
  36171. {
  36172. "normal": {
  36173. name: "Normal",
  36174. default: true
  36175. },
  36176. "true-form": {
  36177. name: "True Form"
  36178. },
  36179. "meowberus": {
  36180. name: "Meowberus",
  36181. },
  36182. }
  36183. ))
  36184. characterMakers.push(() => makeCharacter(
  36185. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36186. {
  36187. front: {
  36188. height: math.unit(6 + 8/12, "feet"),
  36189. weight: math.unit(300, "lb"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/jrain/front.svg",
  36193. extra: 3039/2865,
  36194. bottom: 399/3438
  36195. }
  36196. },
  36197. back: {
  36198. height: math.unit(6 + 8/12, "feet"),
  36199. weight: math.unit(300, "lb"),
  36200. name: "Back",
  36201. image: {
  36202. source: "./media/characters/jrain/back.svg",
  36203. extra: 3089/2938,
  36204. bottom: 172/3261
  36205. }
  36206. },
  36207. head: {
  36208. height: math.unit(2.14, "feet"),
  36209. name: "Head",
  36210. image: {
  36211. source: "./media/characters/jrain/head.svg"
  36212. }
  36213. },
  36214. maw: {
  36215. height: math.unit(1.77, "feet"),
  36216. name: "Maw",
  36217. image: {
  36218. source: "./media/characters/jrain/maw.svg"
  36219. }
  36220. },
  36221. leftHand: {
  36222. height: math.unit(1.1, "feet"),
  36223. name: "Left Hand",
  36224. image: {
  36225. source: "./media/characters/jrain/left-hand.svg"
  36226. }
  36227. },
  36228. rightHand: {
  36229. height: math.unit(1.1, "feet"),
  36230. name: "Right Hand",
  36231. image: {
  36232. source: "./media/characters/jrain/right-hand.svg"
  36233. }
  36234. },
  36235. eye: {
  36236. height: math.unit(0.35, "feet"),
  36237. name: "Eye",
  36238. image: {
  36239. source: "./media/characters/jrain/eye.svg"
  36240. }
  36241. },
  36242. },
  36243. [
  36244. {
  36245. name: "Normal",
  36246. height: math.unit(6 + 8/12, "feet"),
  36247. default: true
  36248. },
  36249. {
  36250. name: "Casually Large",
  36251. height: math.unit(25, "feet")
  36252. },
  36253. {
  36254. name: "Giant",
  36255. height: math.unit(100, "feet")
  36256. },
  36257. {
  36258. name: "Kaiju",
  36259. height: math.unit(300, "feet")
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36265. {
  36266. dragon: {
  36267. height: math.unit(5, "meters"),
  36268. name: "Dragon",
  36269. image: {
  36270. source: "./media/characters/sabrina/dragon.svg",
  36271. extra: 3670 / 2365,
  36272. bottom: 333 / 4003
  36273. }
  36274. },
  36275. gryphon: {
  36276. height: math.unit(3, "meters"),
  36277. name: "Gryphon",
  36278. image: {
  36279. source: "./media/characters/sabrina/gryphon.svg",
  36280. extra: 1576 / 945,
  36281. bottom: 71 / 1647
  36282. }
  36283. },
  36284. snake: {
  36285. height: math.unit(12, "meters"),
  36286. name: "Snake",
  36287. image: {
  36288. source: "./media/characters/sabrina/snake.svg",
  36289. extra: 1758 / 1320,
  36290. bottom: 186 / 1944
  36291. }
  36292. },
  36293. collar: {
  36294. height: math.unit(1.86, "meters"),
  36295. name: "Collar",
  36296. image: {
  36297. source: "./media/characters/sabrina/collar.svg"
  36298. }
  36299. },
  36300. eye: {
  36301. height: math.unit(0.53, "meters"),
  36302. name: "Eye",
  36303. image: {
  36304. source: "./media/characters/sabrina/eye.svg"
  36305. }
  36306. },
  36307. foot: {
  36308. height: math.unit(1.86, "meters"),
  36309. name: "Foot",
  36310. image: {
  36311. source: "./media/characters/sabrina/foot.svg"
  36312. }
  36313. },
  36314. hand: {
  36315. height: math.unit(1.32, "meters"),
  36316. name: "Hand",
  36317. image: {
  36318. source: "./media/characters/sabrina/hand.svg"
  36319. }
  36320. },
  36321. head: {
  36322. height: math.unit(2.44, "meters"),
  36323. name: "Head",
  36324. image: {
  36325. source: "./media/characters/sabrina/head.svg"
  36326. }
  36327. },
  36328. headAngry: {
  36329. height: math.unit(2.44, "meters"),
  36330. name: "Head (Angry))",
  36331. image: {
  36332. source: "./media/characters/sabrina/head-angry.svg"
  36333. }
  36334. },
  36335. maw: {
  36336. height: math.unit(1.65, "meters"),
  36337. name: "Maw",
  36338. image: {
  36339. source: "./media/characters/sabrina/maw.svg"
  36340. }
  36341. },
  36342. spikes: {
  36343. height: math.unit(1.69, "meters"),
  36344. name: "Spikes",
  36345. image: {
  36346. source: "./media/characters/sabrina/spikes.svg"
  36347. }
  36348. },
  36349. stomach: {
  36350. height: math.unit(1.15, "meters"),
  36351. name: "Stomach",
  36352. image: {
  36353. source: "./media/characters/sabrina/stomach.svg"
  36354. }
  36355. },
  36356. tongue: {
  36357. height: math.unit(1.27, "meters"),
  36358. name: "Tongue",
  36359. image: {
  36360. source: "./media/characters/sabrina/tongue.svg"
  36361. }
  36362. },
  36363. wingDorsal: {
  36364. height: math.unit(4.85, "meters"),
  36365. name: "Wing (Dorsal)",
  36366. image: {
  36367. source: "./media/characters/sabrina/wing-dorsal.svg"
  36368. }
  36369. },
  36370. wingVentral: {
  36371. height: math.unit(4.85, "meters"),
  36372. name: "Wing (Ventral)",
  36373. image: {
  36374. source: "./media/characters/sabrina/wing-ventral.svg"
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Normal",
  36381. height: math.unit(5, "meters"),
  36382. default: true
  36383. },
  36384. ]
  36385. ))
  36386. characterMakers.push(() => makeCharacter(
  36387. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36388. {
  36389. frontMaid: {
  36390. height: math.unit(5 + 5/12, "feet"),
  36391. weight: math.unit(130, "lb"),
  36392. name: "Front (Maid)",
  36393. image: {
  36394. source: "./media/characters/midnight-tales/front-maid.svg",
  36395. extra: 489/454,
  36396. bottom: 61/550
  36397. }
  36398. },
  36399. frontFormal: {
  36400. height: math.unit(5 + 5/12, "feet"),
  36401. weight: math.unit(130, "lb"),
  36402. name: "Front (Formal)",
  36403. image: {
  36404. source: "./media/characters/midnight-tales/front-formal.svg",
  36405. extra: 489/454,
  36406. bottom: 61/550
  36407. }
  36408. },
  36409. back: {
  36410. height: math.unit(5 + 5/12, "feet"),
  36411. weight: math.unit(130, "lb"),
  36412. name: "Back",
  36413. image: {
  36414. source: "./media/characters/midnight-tales/back.svg",
  36415. extra: 498/456,
  36416. bottom: 33/531
  36417. }
  36418. },
  36419. frontBeast: {
  36420. height: math.unit(40, "feet"),
  36421. weight: math.unit(64000, "lb"),
  36422. name: "Front (Beast)",
  36423. image: {
  36424. source: "./media/characters/midnight-tales/front-beast.svg",
  36425. extra: 927/860,
  36426. bottom: 53/980
  36427. }
  36428. },
  36429. backBeast: {
  36430. height: math.unit(40, "feet"),
  36431. weight: math.unit(64000, "lb"),
  36432. name: "Back (Beast)",
  36433. image: {
  36434. source: "./media/characters/midnight-tales/back-beast.svg",
  36435. extra: 929/855,
  36436. bottom: 16/945
  36437. }
  36438. },
  36439. footBeast: {
  36440. height: math.unit(6.7, "feet"),
  36441. name: "Foot (Beast)",
  36442. image: {
  36443. source: "./media/characters/midnight-tales/foot-beast.svg"
  36444. }
  36445. },
  36446. headBeast: {
  36447. height: math.unit(8, "feet"),
  36448. name: "Head (Beast)",
  36449. image: {
  36450. source: "./media/characters/midnight-tales/head-beast.svg"
  36451. }
  36452. },
  36453. },
  36454. [
  36455. {
  36456. name: "Normal",
  36457. height: math.unit(5 + 5 / 12, "feet"),
  36458. default: true
  36459. },
  36460. {
  36461. name: "Macro",
  36462. height: math.unit(25, "feet")
  36463. },
  36464. ]
  36465. ))
  36466. characterMakers.push(() => makeCharacter(
  36467. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36468. {
  36469. front: {
  36470. height: math.unit(5 + 10/12, "feet"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/argon/front.svg",
  36474. extra: 2009/1935,
  36475. bottom: 118/2127
  36476. }
  36477. },
  36478. back: {
  36479. height: math.unit(5 + 10/12, "feet"),
  36480. name: "Back",
  36481. image: {
  36482. source: "./media/characters/argon/back.svg",
  36483. extra: 2047/1992,
  36484. bottom: 20/2067
  36485. }
  36486. },
  36487. frontDressed: {
  36488. height: math.unit(5 + 10/12, "feet"),
  36489. name: "Front (Dressed)",
  36490. image: {
  36491. source: "./media/characters/argon/front-dressed.svg",
  36492. extra: 2009/1935,
  36493. bottom: 118/2127
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(5 + 10/12, "feet"),
  36501. default: true
  36502. },
  36503. ]
  36504. ))
  36505. characterMakers.push(() => makeCharacter(
  36506. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36507. {
  36508. front: {
  36509. height: math.unit(8 + 6/12, "feet"),
  36510. weight: math.unit(1150, "lb"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/kichi/front.svg",
  36514. extra: 1267/1164,
  36515. bottom: 61/1328
  36516. }
  36517. },
  36518. back: {
  36519. height: math.unit(8 + 6/12, "feet"),
  36520. weight: math.unit(1150, "lb"),
  36521. name: "Back",
  36522. image: {
  36523. source: "./media/characters/kichi/back.svg",
  36524. extra: 1273/1166,
  36525. bottom: 33/1306
  36526. }
  36527. },
  36528. },
  36529. [
  36530. {
  36531. name: "Normal",
  36532. height: math.unit(8 + 6/12, "feet"),
  36533. default: true
  36534. },
  36535. ]
  36536. ))
  36537. characterMakers.push(() => makeCharacter(
  36538. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36539. {
  36540. front: {
  36541. height: math.unit(6, "feet"),
  36542. weight: math.unit(210, "lb"),
  36543. name: "Front",
  36544. image: {
  36545. source: "./media/characters/manetel-greyscale/front.svg",
  36546. extra: 350/312,
  36547. bottom: 8/358
  36548. }
  36549. },
  36550. },
  36551. [
  36552. {
  36553. name: "Micro",
  36554. height: math.unit(2, "inches")
  36555. },
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(6, "feet"),
  36559. default: true
  36560. },
  36561. {
  36562. name: "Minimacro",
  36563. height: math.unit(17, "feet")
  36564. },
  36565. {
  36566. name: "Macro",
  36567. height: math.unit(117, "feet")
  36568. },
  36569. ]
  36570. ))
  36571. characterMakers.push(() => makeCharacter(
  36572. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36573. {
  36574. side: {
  36575. height: math.unit(5 + 1/12, "feet"),
  36576. weight: math.unit(418, "lb"),
  36577. name: "Side",
  36578. image: {
  36579. source: "./media/characters/softpurr/side.svg",
  36580. extra: 1993/1945,
  36581. bottom: 134/2127
  36582. }
  36583. },
  36584. front: {
  36585. height: math.unit(5 + 1/12, "feet"),
  36586. weight: math.unit(418, "lb"),
  36587. name: "Front",
  36588. image: {
  36589. source: "./media/characters/softpurr/front.svg",
  36590. extra: 1950/1856,
  36591. bottom: 174/2124
  36592. }
  36593. },
  36594. paw: {
  36595. height: math.unit(1, "feet"),
  36596. name: "Paw",
  36597. image: {
  36598. source: "./media/characters/softpurr/paw.svg"
  36599. }
  36600. },
  36601. },
  36602. [
  36603. {
  36604. name: "Normal",
  36605. height: math.unit(5 + 1/12, "feet"),
  36606. default: true
  36607. },
  36608. ]
  36609. ))
  36610. characterMakers.push(() => makeCharacter(
  36611. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36612. {
  36613. front: {
  36614. height: math.unit(260, "meters"),
  36615. name: "Front",
  36616. image: {
  36617. source: "./media/characters/anahita/front.svg",
  36618. extra: 665/635,
  36619. bottom: 89/754
  36620. }
  36621. },
  36622. },
  36623. [
  36624. {
  36625. name: "Macro",
  36626. height: math.unit(260, "meters"),
  36627. default: true
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(4 + 10/12, "feet"),
  36636. weight: math.unit(160, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/chip-mouse/front.svg",
  36640. extra: 3528/3408,
  36641. bottom: 0/3528
  36642. }
  36643. },
  36644. frontNsfw: {
  36645. height: math.unit(4 + 10/12, "feet"),
  36646. weight: math.unit(160, "lb"),
  36647. name: "Front (NSFW)",
  36648. image: {
  36649. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36650. extra: 3528/3408,
  36651. bottom: 0/3528
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Normal",
  36658. height: math.unit(4 + 10/12, "feet"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36665. {
  36666. side: {
  36667. height: math.unit(10, "feet"),
  36668. weight: math.unit(14000, "lb"),
  36669. name: "Side",
  36670. image: {
  36671. source: "./media/characters/kremm/side.svg",
  36672. extra: 1390/1053,
  36673. bottom: 90/1480
  36674. }
  36675. },
  36676. gut: {
  36677. height: math.unit(5.8, "feet"),
  36678. name: "Gut",
  36679. image: {
  36680. source: "./media/characters/kremm/gut.svg"
  36681. }
  36682. },
  36683. ass: {
  36684. height: math.unit(6.1, "feet"),
  36685. name: "Ass",
  36686. image: {
  36687. source: "./media/characters/kremm/ass.svg"
  36688. }
  36689. },
  36690. jaws: {
  36691. height: math.unit(2.2, "feet"),
  36692. name: "Jaws",
  36693. image: {
  36694. source: "./media/characters/kremm/jaws.svg"
  36695. }
  36696. },
  36697. dick: {
  36698. height: math.unit(4.26, "feet"),
  36699. name: "Dick",
  36700. image: {
  36701. source: "./media/characters/kremm/dick.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(10, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(30, "stories"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/kai/front.svg",
  36721. extra: 1892/1718,
  36722. bottom: 162/2054
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Macro",
  36729. height: math.unit(30, "stories"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(6 + 4/12, "feet"),
  36739. weight: math.unit(145, "lb"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/sykes/front.svg",
  36743. extra: 1321 / 1187,
  36744. bottom: 66 / 1387
  36745. }
  36746. },
  36747. back: {
  36748. height: math.unit(6 + 4/12, "feet"),
  36749. weight: math.unit(145, "lb"),
  36750. name: "Back",
  36751. image: {
  36752. source: "./media/characters/sykes/back.svg",
  36753. extra: 1326/1181,
  36754. bottom: 31/1357
  36755. }
  36756. },
  36757. traditionalOutfit: {
  36758. height: math.unit(6 + 4/12, "feet"),
  36759. weight: math.unit(145, "lb"),
  36760. name: "Traditional Outfit",
  36761. image: {
  36762. source: "./media/characters/sykes/traditional-outfit.svg",
  36763. extra: 1321 / 1187,
  36764. bottom: 66 / 1387
  36765. }
  36766. },
  36767. adventureOutfit: {
  36768. height: math.unit(6 + 4/12, "feet"),
  36769. weight: math.unit(145, "lb"),
  36770. name: "Adventure Outfit",
  36771. image: {
  36772. source: "./media/characters/sykes/adventure-outfit.svg",
  36773. extra: 1321 / 1187,
  36774. bottom: 66 / 1387
  36775. }
  36776. },
  36777. handLeft: {
  36778. height: math.unit(0.9, "feet"),
  36779. name: "Hand (Left)",
  36780. image: {
  36781. source: "./media/characters/sykes/hand-left.svg"
  36782. }
  36783. },
  36784. handRight: {
  36785. height: math.unit(0.839, "feet"),
  36786. name: "Hand (Right)",
  36787. image: {
  36788. source: "./media/characters/sykes/hand-right.svg"
  36789. }
  36790. },
  36791. leftFoot: {
  36792. height: math.unit(1.2, "feet"),
  36793. name: "Foot (Left)",
  36794. image: {
  36795. source: "./media/characters/sykes/foot-left.svg"
  36796. }
  36797. },
  36798. rightFoot: {
  36799. height: math.unit(1.2, "feet"),
  36800. name: "Foot (Right)",
  36801. image: {
  36802. source: "./media/characters/sykes/foot-right.svg"
  36803. }
  36804. },
  36805. maw: {
  36806. height: math.unit(1.93, "feet"),
  36807. name: "Maw",
  36808. image: {
  36809. source: "./media/characters/sykes/maw.svg"
  36810. }
  36811. },
  36812. teeth: {
  36813. height: math.unit(0.51, "feet"),
  36814. name: "Teeth",
  36815. image: {
  36816. source: "./media/characters/sykes/teeth.svg"
  36817. }
  36818. },
  36819. tongue: {
  36820. height: math.unit(2.13, "feet"),
  36821. name: "Tongue",
  36822. image: {
  36823. source: "./media/characters/sykes/tongue.svg"
  36824. }
  36825. },
  36826. uvula: {
  36827. height: math.unit(0.16, "feet"),
  36828. name: "Uvula",
  36829. image: {
  36830. source: "./media/characters/sykes/uvula.svg"
  36831. }
  36832. },
  36833. collar: {
  36834. height: math.unit(0.287, "feet"),
  36835. name: "Collar",
  36836. image: {
  36837. source: "./media/characters/sykes/collar.svg"
  36838. }
  36839. },
  36840. tail: {
  36841. height: math.unit(3.8, "feet"),
  36842. name: "Tail",
  36843. image: {
  36844. source: "./media/characters/sykes/tail.svg"
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Shrunken",
  36851. height: math.unit(5, "inches")
  36852. },
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(6 + 4 / 12, "feet"),
  36856. default: true
  36857. },
  36858. {
  36859. name: "Big",
  36860. height: math.unit(15, "feet")
  36861. },
  36862. ]
  36863. ))
  36864. characterMakers.push(() => makeCharacter(
  36865. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36866. {
  36867. front: {
  36868. height: math.unit(5 + 8/12, "feet"),
  36869. weight: math.unit(190, "lb"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/oven-otter/front.svg",
  36873. extra: 1809/1740,
  36874. bottom: 181/1990
  36875. }
  36876. },
  36877. back: {
  36878. height: math.unit(5 + 8/12, "feet"),
  36879. weight: math.unit(190, "lb"),
  36880. name: "Back",
  36881. image: {
  36882. source: "./media/characters/oven-otter/back.svg",
  36883. extra: 1709/1635,
  36884. bottom: 118/1827
  36885. }
  36886. },
  36887. hand: {
  36888. height: math.unit(1.07, "feet"),
  36889. name: "Hand",
  36890. image: {
  36891. source: "./media/characters/oven-otter/hand.svg"
  36892. }
  36893. },
  36894. beans: {
  36895. height: math.unit(1.74, "feet"),
  36896. name: "Beans",
  36897. image: {
  36898. source: "./media/characters/oven-otter/beans.svg"
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Micro",
  36905. height: math.unit(0.5, "inches")
  36906. },
  36907. {
  36908. name: "Normal",
  36909. height: math.unit(5 + 8/12, "feet"),
  36910. default: true
  36911. },
  36912. {
  36913. name: "Macro",
  36914. height: math.unit(250, "feet")
  36915. },
  36916. {
  36917. name: "Really High",
  36918. height: math.unit(420, "feet")
  36919. },
  36920. ]
  36921. ))
  36922. characterMakers.push(() => makeCharacter(
  36923. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36924. {
  36925. front: {
  36926. height: math.unit(5, "meters"),
  36927. weight: math.unit(292000000000000, "kg"),
  36928. name: "Front",
  36929. image: {
  36930. source: "./media/characters/devourer/front.svg",
  36931. extra: 1800/1733,
  36932. bottom: 211/2011
  36933. }
  36934. },
  36935. maw: {
  36936. height: math.unit(1.1, "meter"),
  36937. name: "Maw",
  36938. image: {
  36939. source: "./media/characters/devourer/maw.svg"
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Small",
  36946. height: math.unit(3, "meters")
  36947. },
  36948. {
  36949. name: "Large",
  36950. height: math.unit(5, "meters"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36957. {
  36958. front: {
  36959. height: math.unit(6, "feet"),
  36960. weight: math.unit(400, "lb"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/ellarby/front.svg",
  36964. extra: 1909/1763,
  36965. bottom: 80/1989
  36966. }
  36967. },
  36968. back: {
  36969. height: math.unit(6, "feet"),
  36970. weight: math.unit(400, "lb"),
  36971. name: "Back",
  36972. image: {
  36973. source: "./media/characters/ellarby/back.svg",
  36974. extra: 1914/1784,
  36975. bottom: 172/2086
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Mischief",
  36982. height: math.unit(18, "inches")
  36983. },
  36984. {
  36985. name: "Trouble",
  36986. height: math.unit(12, "feet")
  36987. },
  36988. {
  36989. name: "Havoc",
  36990. height: math.unit(200, "feet"),
  36991. default: true
  36992. },
  36993. {
  36994. name: "Pandemonium",
  36995. height: math.unit(1, "mile")
  36996. },
  36997. {
  36998. name: "Catastrophe",
  36999. height: math.unit(100, "miles")
  37000. },
  37001. ]
  37002. ))
  37003. characterMakers.push(() => makeCharacter(
  37004. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37005. {
  37006. front: {
  37007. height: math.unit(4.7, "meters"),
  37008. weight: math.unit(6500, "kg"),
  37009. name: "Front",
  37010. image: {
  37011. source: "./media/characters/vex/front.svg",
  37012. extra: 1288/1140,
  37013. bottom: 100/1388
  37014. }
  37015. },
  37016. },
  37017. [
  37018. {
  37019. name: "Normal",
  37020. height: math.unit(4.7, "meters"),
  37021. default: true
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37027. {
  37028. normal: {
  37029. height: math.unit(6, "feet"),
  37030. weight: math.unit(350, "lb"),
  37031. name: "Normal",
  37032. image: {
  37033. source: "./media/characters/teshy/normal.svg",
  37034. extra: 1795/1735,
  37035. bottom: 16/1811
  37036. }
  37037. },
  37038. monsterFront: {
  37039. height: math.unit(12, "feet"),
  37040. weight: math.unit(4700, "lb"),
  37041. name: "Monster (Front)",
  37042. image: {
  37043. source: "./media/characters/teshy/monster-front.svg",
  37044. extra: 2042/2034,
  37045. bottom: 128/2170
  37046. }
  37047. },
  37048. monsterSide: {
  37049. height: math.unit(12, "feet"),
  37050. weight: math.unit(4700, "lb"),
  37051. name: "Monster (Side)",
  37052. image: {
  37053. source: "./media/characters/teshy/monster-side.svg",
  37054. extra: 2067/2056,
  37055. bottom: 70/2137
  37056. }
  37057. },
  37058. monsterBack: {
  37059. height: math.unit(12, "feet"),
  37060. weight: math.unit(4700, "lb"),
  37061. name: "Monster (Back)",
  37062. image: {
  37063. source: "./media/characters/teshy/monster-back.svg",
  37064. extra: 1921/1914,
  37065. bottom: 171/2092
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(6, "feet"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(6, "feet"),
  37082. name: "Front",
  37083. image: {
  37084. source: "./media/characters/ramey/front.svg",
  37085. extra: 790/787,
  37086. bottom: 27/817
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Normal",
  37093. height: math.unit(6, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(5 + 5/12, "feet"),
  37103. weight: math.unit(120, "lb"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/phirae/front.svg",
  37107. extra: 2491/2436,
  37108. bottom: 38/2529
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(5 + 5/12, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37122. {
  37123. front: {
  37124. height: math.unit(5 + 3/12, "feet"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/stagglas/front.svg",
  37128. extra: 962/882,
  37129. bottom: 53/1015
  37130. }
  37131. },
  37132. feral: {
  37133. height: math.unit(335, "cm"),
  37134. name: "Feral",
  37135. image: {
  37136. source: "./media/characters/stagglas/feral.svg",
  37137. extra: 1732/1090,
  37138. bottom: 48/1780
  37139. }
  37140. },
  37141. },
  37142. [
  37143. {
  37144. name: "Normal",
  37145. height: math.unit(5 + 3/12, "feet"),
  37146. default: true
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37152. {
  37153. front: {
  37154. height: math.unit(5 + 4/12, "feet"),
  37155. weight: math.unit(145, "lb"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/starra/front.svg",
  37159. extra: 1790/1691,
  37160. bottom: 91/1881
  37161. }
  37162. },
  37163. },
  37164. [
  37165. {
  37166. name: "Normal",
  37167. height: math.unit(5 + 4/12, "feet"),
  37168. default: true
  37169. },
  37170. ]
  37171. ))
  37172. characterMakers.push(() => makeCharacter(
  37173. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37174. {
  37175. front: {
  37176. height: math.unit(3.5, "meters"),
  37177. name: "Front",
  37178. image: {
  37179. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37180. extra: 1248/972,
  37181. bottom: 38/1286
  37182. }
  37183. },
  37184. },
  37185. [
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(3.5, "meters"),
  37189. default: true
  37190. },
  37191. ]
  37192. ))
  37193. characterMakers.push(() => makeCharacter(
  37194. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37195. {
  37196. side: {
  37197. height: math.unit(8 + 2/12, "feet"),
  37198. weight: math.unit(1240, "lb"),
  37199. name: "Side",
  37200. image: {
  37201. source: "./media/characters/mika-valentine/side.svg",
  37202. extra: 2670/2501,
  37203. bottom: 250/2920
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(8 + 2/12, "feet"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(7 + 2/12, "feet"),
  37220. name: "Front",
  37221. image: {
  37222. source: "./media/characters/xoltol/front.svg",
  37223. extra: 2212/2124,
  37224. bottom: 84/2296
  37225. }
  37226. },
  37227. side: {
  37228. height: math.unit(7 + 2/12, "feet"),
  37229. name: "Side",
  37230. image: {
  37231. source: "./media/characters/xoltol/side.svg",
  37232. extra: 2273/2197,
  37233. bottom: 26/2299
  37234. }
  37235. },
  37236. hand: {
  37237. height: math.unit(2.5, "feet"),
  37238. name: "Hand",
  37239. image: {
  37240. source: "./media/characters/xoltol/hand.svg"
  37241. }
  37242. },
  37243. },
  37244. [
  37245. {
  37246. name: "Small-ish",
  37247. height: math.unit(5 + 11/12, "feet")
  37248. },
  37249. {
  37250. name: "Normal",
  37251. height: math.unit(7 + 2/12, "feet")
  37252. },
  37253. {
  37254. name: "\"Macro\"",
  37255. height: math.unit(14 + 9/12, "feet"),
  37256. default: true
  37257. },
  37258. {
  37259. name: "Alternate Height",
  37260. height: math.unit(20, "feet")
  37261. },
  37262. {
  37263. name: "Actually Macro",
  37264. height: math.unit(100, "feet")
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(5 + 2/12, "feet"),
  37273. weight: math.unit(75, "kg"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/kotetsu-redwood/front.svg",
  37277. extra: 1053/942,
  37278. bottom: 60/1113
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(5 + 2/12, "feet"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37292. {
  37293. front: {
  37294. height: math.unit(2.4, "meters"),
  37295. weight: math.unit(125, "kg"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/lilith/front.svg",
  37299. extra: 1590/1513,
  37300. bottom: 203/1793
  37301. }
  37302. },
  37303. },
  37304. [
  37305. {
  37306. name: "Humanoid",
  37307. height: math.unit(2.4, "meters")
  37308. },
  37309. {
  37310. name: "Normal",
  37311. height: math.unit(6, "meters"),
  37312. default: true
  37313. },
  37314. {
  37315. name: "Largest",
  37316. height: math.unit(55, "meters")
  37317. },
  37318. ]
  37319. ))
  37320. characterMakers.push(() => makeCharacter(
  37321. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37322. {
  37323. front: {
  37324. height: math.unit(8 + 4/12, "feet"),
  37325. weight: math.unit(535, "lb"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/beh'kah-bolger/front.svg",
  37329. extra: 1660/1603,
  37330. bottom: 37/1697
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(8 + 4/12, "feet"),
  37338. default: true
  37339. },
  37340. {
  37341. name: "Kaiju",
  37342. height: math.unit(250, "feet")
  37343. },
  37344. {
  37345. name: "Still Growing",
  37346. height: math.unit(10, "miles")
  37347. },
  37348. {
  37349. name: "Continental",
  37350. height: math.unit(5000, "miles")
  37351. },
  37352. {
  37353. name: "Final Form",
  37354. height: math.unit(2500000, "miles")
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(7 + 2/12, "feet"),
  37363. weight: math.unit(230, "kg"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/tatyana-milewska/front.svg",
  37367. extra: 1199/1150,
  37368. bottom: 86/1285
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(7 + 2/12, "feet"),
  37376. default: true
  37377. },
  37378. {
  37379. name: "Big",
  37380. height: math.unit(12, "feet")
  37381. },
  37382. {
  37383. name: "Minimacro",
  37384. height: math.unit(20, "feet")
  37385. },
  37386. {
  37387. name: "Macro",
  37388. height: math.unit(120, "feet")
  37389. },
  37390. ]
  37391. ))
  37392. characterMakers.push(() => makeCharacter(
  37393. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37394. {
  37395. front: {
  37396. height: math.unit(7 + 8/12, "feet"),
  37397. weight: math.unit(152, "kg"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/helen-arri/front.svg",
  37401. extra: 440/423,
  37402. bottom: 14/454
  37403. }
  37404. },
  37405. back: {
  37406. height: math.unit(7 + 8/12, "feet"),
  37407. weight: math.unit(152, "kg"),
  37408. name: "Back",
  37409. image: {
  37410. source: "./media/characters/helen-arri/back.svg",
  37411. extra: 443/426,
  37412. bottom: 8/451
  37413. }
  37414. },
  37415. },
  37416. [
  37417. {
  37418. name: "Normal",
  37419. height: math.unit(7 + 8/12, "feet"),
  37420. default: true
  37421. },
  37422. {
  37423. name: "Big",
  37424. height: math.unit(14, "feet")
  37425. },
  37426. {
  37427. name: "Minimacro",
  37428. height: math.unit(24, "feet")
  37429. },
  37430. {
  37431. name: "Macro",
  37432. height: math.unit(140, "feet")
  37433. },
  37434. ]
  37435. ))
  37436. characterMakers.push(() => makeCharacter(
  37437. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37438. {
  37439. front: {
  37440. height: math.unit(6, "meters"),
  37441. name: "Front",
  37442. image: {
  37443. source: "./media/characters/ehanu-rehu/front.svg",
  37444. extra: 1800/1800,
  37445. bottom: 59/1859
  37446. }
  37447. },
  37448. },
  37449. [
  37450. {
  37451. name: "Normal",
  37452. height: math.unit(6, "meters"),
  37453. default: true
  37454. },
  37455. ]
  37456. ))
  37457. characterMakers.push(() => makeCharacter(
  37458. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37459. {
  37460. front: {
  37461. height: math.unit(7 + 3/12, "feet"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/renholder/front.svg",
  37465. extra: 3096/2960,
  37466. bottom: 250/3346
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal Bat",
  37473. height: math.unit(7 + 3/12, "feet"),
  37474. default: true
  37475. },
  37476. {
  37477. name: "Slightly Tall Bat",
  37478. height: math.unit(100, "feet")
  37479. },
  37480. {
  37481. name: "Big Bat",
  37482. height: math.unit(1000, "feet")
  37483. },
  37484. {
  37485. name: "City-Sized Bat",
  37486. height: math.unit(200000, "feet")
  37487. },
  37488. {
  37489. name: "Bigger Bat",
  37490. height: math.unit(10000, "miles")
  37491. },
  37492. {
  37493. name: "Solar Sized Bat",
  37494. height: math.unit(100, "AU")
  37495. },
  37496. {
  37497. name: "Galactic Bat",
  37498. height: math.unit(200000, "lightyears")
  37499. },
  37500. {
  37501. name: "Universally Known Bat",
  37502. height: math.unit(1, "universe")
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 11/12, "feet"),
  37511. weight: math.unit(250, "lb"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/cookiecat/front.svg",
  37515. extra: 893/827,
  37516. bottom: 14/907
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Micro",
  37523. height: math.unit(3, "inches")
  37524. },
  37525. {
  37526. name: "Normal",
  37527. height: math.unit(6 + 11/12, "feet"),
  37528. default: true
  37529. },
  37530. {
  37531. name: "Macro",
  37532. height: math.unit(100, "feet")
  37533. },
  37534. {
  37535. name: "Macro+",
  37536. height: math.unit(404, "feet")
  37537. },
  37538. {
  37539. name: "Megamacro",
  37540. height: math.unit(165, "miles")
  37541. },
  37542. {
  37543. name: "Planetary",
  37544. height: math.unit(4600, "miles")
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(10 + 3/12, "feet"),
  37553. weight: math.unit(1500, "lb"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/tux-kusanagi/front.svg",
  37557. extra: 944/840,
  37558. bottom: 39/983
  37559. }
  37560. },
  37561. back: {
  37562. height: math.unit(10 + 3/12, "feet"),
  37563. weight: math.unit(1500, "lb"),
  37564. name: "Back",
  37565. image: {
  37566. source: "./media/characters/tux-kusanagi/back.svg",
  37567. extra: 941/842,
  37568. bottom: 28/969
  37569. }
  37570. },
  37571. rump: {
  37572. height: math.unit(5.25, "feet"),
  37573. name: "Rump",
  37574. image: {
  37575. source: "./media/characters/tux-kusanagi/rump.svg"
  37576. }
  37577. },
  37578. beak: {
  37579. height: math.unit(1.54, "feet"),
  37580. name: "Beak",
  37581. image: {
  37582. source: "./media/characters/tux-kusanagi/beak.svg"
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Normal",
  37589. height: math.unit(10 + 3/12, "feet"),
  37590. default: true
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(58, "feet"),
  37599. weight: math.unit(200, "tons"),
  37600. name: "Front",
  37601. image: {
  37602. source: "./media/characters/uzarmazari/front.svg",
  37603. extra: 1575/1455,
  37604. bottom: 152/1727
  37605. }
  37606. },
  37607. back: {
  37608. height: math.unit(58, "feet"),
  37609. weight: math.unit(200, "tons"),
  37610. name: "Back",
  37611. image: {
  37612. source: "./media/characters/uzarmazari/back.svg",
  37613. extra: 1585/1510,
  37614. bottom: 157/1742
  37615. }
  37616. },
  37617. head: {
  37618. height: math.unit(26, "feet"),
  37619. name: "Head",
  37620. image: {
  37621. source: "./media/characters/uzarmazari/head.svg"
  37622. }
  37623. },
  37624. },
  37625. [
  37626. {
  37627. name: "Normal",
  37628. height: math.unit(58, "feet"),
  37629. default: true
  37630. },
  37631. ]
  37632. ))
  37633. characterMakers.push(() => makeCharacter(
  37634. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37635. {
  37636. side: {
  37637. height: math.unit(15, "feet"),
  37638. name: "Side",
  37639. image: {
  37640. source: "./media/characters/akitu/side.svg",
  37641. extra: 1421/1321,
  37642. bottom: 157/1578
  37643. }
  37644. },
  37645. front: {
  37646. height: math.unit(15, "feet"),
  37647. name: "Front",
  37648. image: {
  37649. source: "./media/characters/akitu/front.svg",
  37650. extra: 1435/1326,
  37651. bottom: 232/1667
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(15, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(10 + 8/12, "feet"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/azalie-croixland/front.svg",
  37671. extra: 1972/1856,
  37672. bottom: 31/2003
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Original Height",
  37679. height: math.unit(5 + 4/12, "feet")
  37680. },
  37681. {
  37682. name: "Normal Height",
  37683. height: math.unit(10 + 8/12, "feet"),
  37684. default: true
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37690. {
  37691. side: {
  37692. height: math.unit(7 + 1/12, "feet"),
  37693. weight: math.unit(245, "lb"),
  37694. name: "Side",
  37695. image: {
  37696. source: "./media/characters/kavus-kazian/side.svg",
  37697. extra: 349/342,
  37698. bottom: 15/364
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(7 + 1/12, "feet"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37712. {
  37713. normalFront: {
  37714. height: math.unit(5 + 11/12, "feet"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/moonlight-rose/normal-front.svg",
  37718. extra: 1980/1825,
  37719. bottom: 18/1998
  37720. },
  37721. form: "normal",
  37722. default: true
  37723. },
  37724. normalBack: {
  37725. height: math.unit(5 + 11/12, "feet"),
  37726. name: "Back",
  37727. image: {
  37728. source: "./media/characters/moonlight-rose/normal-back.svg",
  37729. extra: 2010/1839,
  37730. bottom: 10/2020
  37731. },
  37732. form: "normal"
  37733. },
  37734. demonFront: {
  37735. height: math.unit(1.5, "earths"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/moonlight-rose/demon.svg",
  37739. extra: 1400/1294,
  37740. bottom: 45/1445
  37741. },
  37742. form: "demon",
  37743. default: true
  37744. },
  37745. terraFront: {
  37746. height: math.unit(1.5, "earths"),
  37747. name: "Front",
  37748. image: {
  37749. source: "./media/characters/moonlight-rose/terra.svg"
  37750. },
  37751. form: "terra",
  37752. default: true
  37753. },
  37754. jupiterFront: {
  37755. height: math.unit(69911*2, "km"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37759. extra: 1367/1286,
  37760. bottom: 55/1422
  37761. },
  37762. form: "jupiter",
  37763. default: true
  37764. },
  37765. neptuneFront: {
  37766. height: math.unit(24622*2, "feet"),
  37767. name: "Front",
  37768. image: {
  37769. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37770. extra: 1851/1712,
  37771. bottom: 0/1851
  37772. },
  37773. form: "neptune",
  37774. default: true
  37775. },
  37776. },
  37777. [
  37778. {
  37779. name: "\"Natural\" Height",
  37780. height: math.unit(5 + 11/12, "feet"),
  37781. form: "normal"
  37782. },
  37783. {
  37784. name: "Smallest comfortable size",
  37785. height: math.unit(40, "meters"),
  37786. form: "normal"
  37787. },
  37788. {
  37789. name: "Common size",
  37790. height: math.unit(50, "km"),
  37791. form: "normal",
  37792. default: true
  37793. },
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(1.5, "earths"),
  37797. form: "demon",
  37798. default: true
  37799. },
  37800. {
  37801. name: "Universal",
  37802. height: math.unit(15, "universes"),
  37803. form: "demon"
  37804. },
  37805. {
  37806. name: "Earth",
  37807. height: math.unit(1.5, "earths"),
  37808. form: "terra",
  37809. default: true
  37810. },
  37811. {
  37812. name: "Super Earth",
  37813. height: math.unit(67.5, "earths"),
  37814. form: "terra"
  37815. },
  37816. {
  37817. name: "Doesn't fit in a solar system...",
  37818. height: math.unit(1, "galaxy"),
  37819. form: "terra"
  37820. },
  37821. {
  37822. name: "Saturn",
  37823. height: math.unit(58232*2, "km"),
  37824. form: "jupiter"
  37825. },
  37826. {
  37827. name: "Jupiter",
  37828. height: math.unit(69911*2, "km"),
  37829. form: "jupiter",
  37830. default: true
  37831. },
  37832. {
  37833. name: "HD 100546 b",
  37834. height: math.unit(482938, "km"),
  37835. form: "jupiter"
  37836. },
  37837. {
  37838. name: "Enceladus",
  37839. height: math.unit(513*2, "km"),
  37840. form: "neptune"
  37841. },
  37842. {
  37843. name: "Europe",
  37844. height: math.unit(1560*2, "km"),
  37845. form: "neptune"
  37846. },
  37847. {
  37848. name: "Neptune",
  37849. height: math.unit(24622*2, "km"),
  37850. form: "neptune",
  37851. default: true
  37852. },
  37853. {
  37854. name: "CoRoT-9b",
  37855. height: math.unit(75067*2, "km"),
  37856. form: "neptune"
  37857. },
  37858. ],
  37859. {
  37860. "normal": {
  37861. name: "Normal",
  37862. default: true
  37863. },
  37864. "demon": {
  37865. name: "Demon"
  37866. },
  37867. "terra": {
  37868. name: "Terra"
  37869. },
  37870. "jupiter": {
  37871. name: "Jupiter"
  37872. },
  37873. "neptune": {
  37874. name: "Neptune"
  37875. }
  37876. }
  37877. ))
  37878. characterMakers.push(() => makeCharacter(
  37879. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37880. {
  37881. front: {
  37882. height: math.unit(16, "feet"),
  37883. weight: math.unit(610, "kg"),
  37884. name: "Front",
  37885. image: {
  37886. source: "./media/characters/huckle/front.svg",
  37887. extra: 1731/1625,
  37888. bottom: 33/1764
  37889. }
  37890. },
  37891. back: {
  37892. height: math.unit(16, "feet"),
  37893. weight: math.unit(610, "kg"),
  37894. name: "Back",
  37895. image: {
  37896. source: "./media/characters/huckle/back.svg",
  37897. extra: 1738/1651,
  37898. bottom: 37/1775
  37899. }
  37900. },
  37901. laughing: {
  37902. height: math.unit(3.75, "feet"),
  37903. name: "Laughing",
  37904. image: {
  37905. source: "./media/characters/huckle/laughing.svg"
  37906. }
  37907. },
  37908. angry: {
  37909. height: math.unit(4.15, "feet"),
  37910. name: "Angry",
  37911. image: {
  37912. source: "./media/characters/huckle/angry.svg"
  37913. }
  37914. },
  37915. },
  37916. [
  37917. {
  37918. name: "Normal",
  37919. height: math.unit(16, "feet"),
  37920. default: true
  37921. },
  37922. {
  37923. name: "Mini Macro",
  37924. height: math.unit(463, "feet")
  37925. },
  37926. {
  37927. name: "Macro",
  37928. height: math.unit(1680, "meters")
  37929. },
  37930. {
  37931. name: "Mega Macro",
  37932. height: math.unit(175, "km")
  37933. },
  37934. {
  37935. name: "Terra Macro",
  37936. height: math.unit(32, "gigameters")
  37937. },
  37938. {
  37939. name: "Multiverse+",
  37940. height: math.unit(2.56e23, "yottameters")
  37941. },
  37942. ]
  37943. ))
  37944. characterMakers.push(() => makeCharacter(
  37945. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37946. {
  37947. front: {
  37948. height: math.unit(6 + 9/12, "feet"),
  37949. weight: math.unit(280, "lb"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/candy/front.svg",
  37953. extra: 234/217,
  37954. bottom: 11/245
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Really Small",
  37961. height: math.unit(0.1, "nm")
  37962. },
  37963. {
  37964. name: "Micro",
  37965. height: math.unit(2, "inches")
  37966. },
  37967. {
  37968. name: "Normal",
  37969. height: math.unit(6 + 9/12, "feet"),
  37970. default: true
  37971. },
  37972. {
  37973. name: "Small Macro",
  37974. height: math.unit(69, "feet")
  37975. },
  37976. {
  37977. name: "Macro",
  37978. height: math.unit(160, "feet")
  37979. },
  37980. {
  37981. name: "Megamacro",
  37982. height: math.unit(22000, "miles")
  37983. },
  37984. {
  37985. name: "Gigamacro",
  37986. height: math.unit(50000, "miles")
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(4, "feet"),
  37995. weight: math.unit(90, "lb"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/joey-mcdonald/front.svg",
  37999. extra: 1059/852,
  38000. bottom: 33/1092
  38001. }
  38002. },
  38003. back: {
  38004. height: math.unit(4, "feet"),
  38005. weight: math.unit(90, "lb"),
  38006. name: "Back",
  38007. image: {
  38008. source: "./media/characters/joey-mcdonald/back.svg",
  38009. extra: 1077/879,
  38010. bottom: 5/1082
  38011. }
  38012. },
  38013. frontKobold: {
  38014. height: math.unit(4, "feet"),
  38015. weight: math.unit(100, "lb"),
  38016. name: "Front-kobold",
  38017. image: {
  38018. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38019. extra: 1480/1367,
  38020. bottom: 0/1480
  38021. }
  38022. },
  38023. backKobold: {
  38024. height: math.unit(4, "feet"),
  38025. weight: math.unit(100, "lb"),
  38026. name: "Back-kobold",
  38027. image: {
  38028. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38029. extra: 1449/1361,
  38030. bottom: 0/1449
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(4, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(12 + 6/12, "feet"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/kass-lockheed/front.svg",
  38050. extra: 354/343,
  38051. bottom: 9/363
  38052. }
  38053. },
  38054. back: {
  38055. height: math.unit(12 + 6/12, "feet"),
  38056. name: "Back",
  38057. image: {
  38058. source: "./media/characters/kass-lockheed/back.svg",
  38059. extra: 364/352,
  38060. bottom: 3/367
  38061. }
  38062. },
  38063. dick: {
  38064. height: math.unit(3.12, "feet"),
  38065. name: "Dick",
  38066. image: {
  38067. source: "./media/characters/kass-lockheed/dick.svg"
  38068. }
  38069. },
  38070. head: {
  38071. height: math.unit(2.6, "feet"),
  38072. name: "Head",
  38073. image: {
  38074. source: "./media/characters/kass-lockheed/head.svg"
  38075. }
  38076. },
  38077. bleh: {
  38078. height: math.unit(2.85, "feet"),
  38079. name: "Bleh",
  38080. image: {
  38081. source: "./media/characters/kass-lockheed/bleh.svg"
  38082. }
  38083. },
  38084. smug: {
  38085. height: math.unit(2.85, "feet"),
  38086. name: "Smug",
  38087. image: {
  38088. source: "./media/characters/kass-lockheed/smug.svg"
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Normal",
  38095. height: math.unit(12 + 6/12, "feet"),
  38096. default: true
  38097. },
  38098. ]
  38099. ))
  38100. characterMakers.push(() => makeCharacter(
  38101. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38102. {
  38103. front: {
  38104. height: math.unit(6 + 2/12, "feet"),
  38105. name: "Front",
  38106. image: {
  38107. source: "./media/characters/taylor/front.svg",
  38108. extra: 639/495,
  38109. bottom: 12/651
  38110. }
  38111. },
  38112. },
  38113. [
  38114. {
  38115. name: "Normal",
  38116. height: math.unit(6 + 2/12, "feet"),
  38117. default: true
  38118. },
  38119. {
  38120. name: "Big",
  38121. height: math.unit(15, "feet")
  38122. },
  38123. {
  38124. name: "Lorg",
  38125. height: math.unit(80, "feet")
  38126. },
  38127. {
  38128. name: "Too Lorg",
  38129. height: math.unit(120, "feet")
  38130. },
  38131. ]
  38132. ))
  38133. characterMakers.push(() => makeCharacter(
  38134. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38135. {
  38136. front: {
  38137. height: math.unit(15, "feet"),
  38138. name: "Front",
  38139. image: {
  38140. source: "./media/characters/kaizer/front.svg",
  38141. extra: 1612/1436,
  38142. bottom: 43/1655
  38143. }
  38144. },
  38145. },
  38146. [
  38147. {
  38148. name: "Normal",
  38149. height: math.unit(15, "feet"),
  38150. default: true
  38151. },
  38152. ]
  38153. ))
  38154. characterMakers.push(() => makeCharacter(
  38155. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38156. {
  38157. front: {
  38158. height: math.unit(2, "feet"),
  38159. weight: math.unit(30, "lb"),
  38160. name: "Front",
  38161. image: {
  38162. source: "./media/characters/sandy/front.svg",
  38163. extra: 1439/1307,
  38164. bottom: 194/1633
  38165. }
  38166. },
  38167. },
  38168. [
  38169. {
  38170. name: "Normal",
  38171. height: math.unit(2, "feet"),
  38172. default: true
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(3, "feet"),
  38181. name: "Front",
  38182. image: {
  38183. source: "./media/characters/mellvi/front.svg",
  38184. extra: 1831/1630,
  38185. bottom: 58/1889
  38186. }
  38187. },
  38188. },
  38189. [
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(3, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(5 + 11/12, "feet"),
  38202. weight: math.unit(200, "lb"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/shirou/front.svg",
  38206. extra: 2491/2383,
  38207. bottom: 189/2680
  38208. }
  38209. },
  38210. back: {
  38211. height: math.unit(5 + 11/12, "feet"),
  38212. weight: math.unit(200, "lb"),
  38213. name: "Back",
  38214. image: {
  38215. source: "./media/characters/shirou/back.svg",
  38216. extra: 2554/2450,
  38217. bottom: 76/2630
  38218. }
  38219. },
  38220. },
  38221. [
  38222. {
  38223. name: "Normal",
  38224. height: math.unit(5 + 11/12, "feet"),
  38225. default: true
  38226. },
  38227. ]
  38228. ))
  38229. characterMakers.push(() => makeCharacter(
  38230. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38231. {
  38232. front: {
  38233. height: math.unit(6 + 3/12, "feet"),
  38234. weight: math.unit(177, "lb"),
  38235. name: "Front",
  38236. image: {
  38237. source: "./media/characters/noryu/front.svg",
  38238. extra: 973/885,
  38239. bottom: 10/983
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(6 + 3/12, "feet"),
  38247. default: true
  38248. },
  38249. ]
  38250. ))
  38251. characterMakers.push(() => makeCharacter(
  38252. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38253. {
  38254. front: {
  38255. height: math.unit(5 + 6/12, "feet"),
  38256. weight: math.unit(170, "lb"),
  38257. name: "Front",
  38258. image: {
  38259. source: "./media/characters/mevolas-rubenido/front.svg",
  38260. extra: 2109/1901,
  38261. bottom: 96/2205
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(5 + 6/12, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38275. {
  38276. front: {
  38277. height: math.unit(100, "feet"),
  38278. name: "Front",
  38279. image: {
  38280. source: "./media/characters/dee/front.svg",
  38281. extra: 2153/2036,
  38282. bottom: 59/2212
  38283. }
  38284. },
  38285. back: {
  38286. height: math.unit(100, "feet"),
  38287. name: "Back",
  38288. image: {
  38289. source: "./media/characters/dee/back.svg",
  38290. extra: 2183/2058,
  38291. bottom: 75/2258
  38292. }
  38293. },
  38294. foot: {
  38295. height: math.unit(19.43, "feet"),
  38296. name: "Foot",
  38297. image: {
  38298. source: "./media/characters/dee/foot.svg"
  38299. }
  38300. },
  38301. hoof: {
  38302. height: math.unit(20.6, "feet"),
  38303. name: "Hoof",
  38304. image: {
  38305. source: "./media/characters/dee/hoof.svg"
  38306. }
  38307. },
  38308. },
  38309. [
  38310. {
  38311. name: "Macro",
  38312. height: math.unit(100, "feet"),
  38313. default: true
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(5 + 6/12, "feet"),
  38322. name: "Front",
  38323. image: {
  38324. source: "./media/characters/teh/front.svg",
  38325. extra: 1002/847,
  38326. bottom: 62/1064
  38327. }
  38328. },
  38329. },
  38330. [
  38331. {
  38332. name: "Normal",
  38333. height: math.unit(5 + 6/12, "feet"),
  38334. default: true
  38335. },
  38336. ]
  38337. ))
  38338. characterMakers.push(() => makeCharacter(
  38339. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38340. {
  38341. side: {
  38342. height: math.unit(6 + 1/12, "feet"),
  38343. weight: math.unit(204, "lb"),
  38344. name: "Side",
  38345. image: {
  38346. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38347. extra: 974/775,
  38348. bottom: 169/1143
  38349. }
  38350. },
  38351. sitting: {
  38352. height: math.unit(6 + 2/12, "feet"),
  38353. weight: math.unit(204, "lb"),
  38354. name: "Sitting",
  38355. image: {
  38356. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38357. extra: 1175/964,
  38358. bottom: 378/1553
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(6 + 1/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(6, "inches"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/tululi/front.svg",
  38378. extra: 1997/1876,
  38379. bottom: 20/2017
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(6, "inches"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(4 + 1/12, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/star/front.svg",
  38399. extra: 1493/1189,
  38400. bottom: 48/1541
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(4 + 1/12, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(6 + 3/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/comet/front.svg",
  38420. extra: 1681/1462,
  38421. bottom: 26/1707
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(6 + 3/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(950, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/vortex/front.svg",
  38441. extra: 1497/1434,
  38442. bottom: 56/1553
  38443. }
  38444. },
  38445. maw: {
  38446. height: math.unit(285, "feet"),
  38447. name: "Maw",
  38448. image: {
  38449. source: "./media/characters/vortex/maw.svg"
  38450. }
  38451. },
  38452. },
  38453. [
  38454. {
  38455. name: "Macro",
  38456. height: math.unit(950, "feet"),
  38457. default: true
  38458. },
  38459. ]
  38460. ))
  38461. characterMakers.push(() => makeCharacter(
  38462. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38463. {
  38464. front: {
  38465. height: math.unit(600, "feet"),
  38466. weight: math.unit(0.02, "grams"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/doodle/front.svg",
  38470. extra: 1578/1413,
  38471. bottom: 37/1615
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Macro",
  38478. height: math.unit(600, "feet"),
  38479. default: true
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(6 + 6/12, "feet"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/jai/front.svg",
  38491. extra: 1645/1534,
  38492. bottom: 115/1760
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(6 + 6/12, "feet"),
  38500. default: true
  38501. },
  38502. ]
  38503. ))
  38504. characterMakers.push(() => makeCharacter(
  38505. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38506. {
  38507. front: {
  38508. height: math.unit(6 + 8/12, "feet"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/pixel/front.svg",
  38512. extra: 1900/1735,
  38513. bottom: 63/1963
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(6 + 8/12, "feet"),
  38521. default: true
  38522. },
  38523. ]
  38524. ))
  38525. characterMakers.push(() => makeCharacter(
  38526. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38527. {
  38528. back: {
  38529. height: math.unit(4 + 1/12, "feet"),
  38530. weight: math.unit(75, "lb"),
  38531. name: "Back",
  38532. image: {
  38533. source: "./media/characters/rhett/back.svg",
  38534. extra: 930/878,
  38535. bottom: 25/955
  38536. }
  38537. },
  38538. front: {
  38539. height: math.unit(4 + 1/12, "feet"),
  38540. weight: math.unit(75, "lb"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/rhett/front.svg",
  38544. extra: 1682/1586,
  38545. bottom: 92/1774
  38546. }
  38547. },
  38548. },
  38549. [
  38550. {
  38551. name: "Micro",
  38552. height: math.unit(8, "inches")
  38553. },
  38554. {
  38555. name: "Tiny",
  38556. height: math.unit(2, "feet")
  38557. },
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(4 + 1/12, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(3 + 3/12, "feet"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/penny/front.svg",
  38573. extra: 1406/1311,
  38574. bottom: 26/1432
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(3 + 3/12, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38588. {
  38589. front: {
  38590. height: math.unit(4 + 11/12, "feet"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/monty/front.svg",
  38594. extra: 1479/1209,
  38595. bottom: 0/1479
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(4 + 11/12, "feet"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(8 + 4/12, "feet"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/sterling/front.svg",
  38615. extra: 1420/1236,
  38616. bottom: 27/1447
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(8 + 4/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(15, "feet"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/marble/front.svg",
  38636. extra: 973/937,
  38637. bottom: 32/1005
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(15, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38651. {
  38652. front: {
  38653. height: math.unit(3, "inches"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/powder/front.svg",
  38657. extra: 1504/1334,
  38658. bottom: 518/2022
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(3, "inches"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(4 + 5/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/joey-raccoon/front.svg",
  38678. extra: 1273/1197,
  38679. bottom: 0/1273
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(4 + 5/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(8 + 4/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/vick/front.svg",
  38699. extra: 2187/2118,
  38700. bottom: 47/2234
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(8 + 4/12, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(5 + 5/12, "feet"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/mitsy/front.svg",
  38720. extra: 1842/1695,
  38721. bottom: 0/1842
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(5 + 5/12, "feet"),
  38729. default: true
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(6 + 3/12, "feet"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/silvy/front.svg",
  38741. extra: 1995/1836,
  38742. bottom: 225/2220
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(6 + 3/12, "feet"),
  38750. default: true
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(3 + 8/12, "feet"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/rodney/front.svg",
  38762. extra: 1956/1747,
  38763. bottom: 31/1987
  38764. }
  38765. },
  38766. frontDressed: {
  38767. height: math.unit(2.9, "feet"),
  38768. name: "Front (Dressed)",
  38769. image: {
  38770. source: "./media/characters/rodney/front-dressed.svg",
  38771. extra: 1382/1241,
  38772. bottom: 385/1767
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(3 + 8/12, "feet"),
  38780. default: true
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38786. {
  38787. front: {
  38788. height: math.unit(5 + 9/12, "feet"),
  38789. weight: math.unit(194, "lbs"),
  38790. name: "Front",
  38791. image: {
  38792. source: "./media/characters/zakail-sudekai/front.svg",
  38793. extra: 2696/2533,
  38794. bottom: 248/2944
  38795. }
  38796. },
  38797. maw: {
  38798. height: math.unit(1.35, "feet"),
  38799. name: "Maw",
  38800. image: {
  38801. source: "./media/characters/zakail-sudekai/maw.svg"
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(5 + 9/12, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(8 + 4/12, "feet"),
  38818. weight: math.unit(1200, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/eleanor/front.svg",
  38822. extra: 1226/1192,
  38823. bottom: 52/1278
  38824. }
  38825. },
  38826. back: {
  38827. height: math.unit(8 + 4/12, "feet"),
  38828. weight: math.unit(1200, "lb"),
  38829. name: "Back",
  38830. image: {
  38831. source: "./media/characters/eleanor/back.svg",
  38832. extra: 1242/1184,
  38833. bottom: 60/1302
  38834. }
  38835. },
  38836. head: {
  38837. height: math.unit(2.62, "feet"),
  38838. name: "Head",
  38839. image: {
  38840. source: "./media/characters/eleanor/head.svg"
  38841. }
  38842. },
  38843. },
  38844. [
  38845. {
  38846. name: "Normal",
  38847. height: math.unit(8 + 4/12, "feet"),
  38848. default: true
  38849. },
  38850. ]
  38851. ))
  38852. characterMakers.push(() => makeCharacter(
  38853. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38854. {
  38855. front: {
  38856. height: math.unit(8 + 4/12, "feet"),
  38857. weight: math.unit(750, "lb"),
  38858. name: "Front",
  38859. image: {
  38860. source: "./media/characters/tanya/front.svg",
  38861. extra: 1749/1615,
  38862. bottom: 33/1782
  38863. }
  38864. },
  38865. },
  38866. [
  38867. {
  38868. name: "Normal",
  38869. height: math.unit(8 + 4/12, "feet"),
  38870. default: true
  38871. },
  38872. ]
  38873. ))
  38874. characterMakers.push(() => makeCharacter(
  38875. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38876. {
  38877. front: {
  38878. height: math.unit(5, "feet"),
  38879. weight: math.unit(225, "lb"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/cindy/front.svg",
  38883. extra: 1320/1250,
  38884. bottom: 42/1362
  38885. }
  38886. },
  38887. frontDressed: {
  38888. height: math.unit(5, "feet"),
  38889. weight: math.unit(225, "lb"),
  38890. name: "Front (Dressed)",
  38891. image: {
  38892. source: "./media/characters/cindy/front-dressed.svg",
  38893. extra: 1320/1250,
  38894. bottom: 42/1362
  38895. }
  38896. },
  38897. back: {
  38898. height: math.unit(5, "feet"),
  38899. weight: math.unit(225, "lb"),
  38900. name: "Back",
  38901. image: {
  38902. source: "./media/characters/cindy/back.svg",
  38903. extra: 1384/1346,
  38904. bottom: 14/1398
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(5, "feet"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(6 + 9/12, "feet"),
  38921. weight: math.unit(440, "lb"),
  38922. name: "Front",
  38923. image: {
  38924. source: "./media/characters/wilbur-owen/front.svg",
  38925. extra: 1575/1448,
  38926. bottom: 72/1647
  38927. }
  38928. },
  38929. back: {
  38930. height: math.unit(6 + 9/12, "feet"),
  38931. weight: math.unit(440, "lb"),
  38932. name: "Back",
  38933. image: {
  38934. source: "./media/characters/wilbur-owen/back.svg",
  38935. extra: 1578/1445,
  38936. bottom: 36/1614
  38937. }
  38938. },
  38939. },
  38940. [
  38941. {
  38942. name: "Normal",
  38943. height: math.unit(6 + 9/12, "feet"),
  38944. default: true
  38945. },
  38946. ]
  38947. ))
  38948. characterMakers.push(() => makeCharacter(
  38949. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38950. {
  38951. front: {
  38952. height: math.unit(6 + 5/12, "feet"),
  38953. weight: math.unit(650, "lb"),
  38954. name: "Front",
  38955. image: {
  38956. source: "./media/characters/keegan/front.svg",
  38957. extra: 2387/2198,
  38958. bottom: 33/2420
  38959. }
  38960. },
  38961. side: {
  38962. height: math.unit(6 + 5/12, "feet"),
  38963. weight: math.unit(650, "lb"),
  38964. name: "Side",
  38965. image: {
  38966. source: "./media/characters/keegan/side.svg",
  38967. extra: 2390/2202,
  38968. bottom: 47/2437
  38969. }
  38970. },
  38971. back: {
  38972. height: math.unit(6 + 5/12, "feet"),
  38973. weight: math.unit(650, "lb"),
  38974. name: "Back",
  38975. image: {
  38976. source: "./media/characters/keegan/back.svg",
  38977. extra: 2418/2268,
  38978. bottom: 15/2433
  38979. }
  38980. },
  38981. frontSfw: {
  38982. height: math.unit(6 + 5/12, "feet"),
  38983. weight: math.unit(650, "lb"),
  38984. name: "Front (SFW)",
  38985. image: {
  38986. source: "./media/characters/keegan/front-sfw.svg",
  38987. extra: 2387/2198,
  38988. bottom: 33/2420
  38989. }
  38990. },
  38991. beans: {
  38992. height: math.unit(1.85, "feet"),
  38993. name: "Beans",
  38994. image: {
  38995. source: "./media/characters/keegan/beans.svg"
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(6 + 5/12, "feet"),
  39003. default: true
  39004. },
  39005. ]
  39006. ))
  39007. characterMakers.push(() => makeCharacter(
  39008. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39009. {
  39010. front: {
  39011. height: math.unit(9, "feet"),
  39012. name: "Front",
  39013. image: {
  39014. source: "./media/characters/colton/front.svg",
  39015. extra: 1589/1326,
  39016. bottom: 139/1728
  39017. }
  39018. },
  39019. },
  39020. [
  39021. {
  39022. name: "Normal",
  39023. height: math.unit(9, "feet"),
  39024. default: true
  39025. },
  39026. ]
  39027. ))
  39028. characterMakers.push(() => makeCharacter(
  39029. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39030. {
  39031. front: {
  39032. height: math.unit(2 + 9/12, "feet"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/bora/front.svg",
  39036. extra: 1265/1250,
  39037. bottom: 24/1289
  39038. }
  39039. },
  39040. },
  39041. [
  39042. {
  39043. name: "Normal",
  39044. height: math.unit(2 + 9/12, "feet"),
  39045. default: true
  39046. },
  39047. ]
  39048. ))
  39049. characterMakers.push(() => makeCharacter(
  39050. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39051. {
  39052. front: {
  39053. height: math.unit(8, "feet"),
  39054. name: "Front",
  39055. image: {
  39056. source: "./media/characters/myu-myu/front.svg",
  39057. extra: 1949/1857,
  39058. bottom: 90/2039
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(8, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Big",
  39070. height: math.unit(15, "feet")
  39071. },
  39072. {
  39073. name: "BIG",
  39074. height: math.unit(25, "feet")
  39075. },
  39076. ]
  39077. ))
  39078. characterMakers.push(() => makeCharacter(
  39079. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39080. {
  39081. side: {
  39082. height: math.unit(7 + 5/12, "feet"),
  39083. weight: math.unit(2800, "lb"),
  39084. name: "Side",
  39085. image: {
  39086. source: "./media/characters/haloren/side.svg",
  39087. extra: 1793/409,
  39088. bottom: 59/1852
  39089. }
  39090. },
  39091. frontPaw: {
  39092. height: math.unit(2.36, "feet"),
  39093. name: "Front paw",
  39094. image: {
  39095. source: "./media/characters/haloren/front-paw.svg"
  39096. }
  39097. },
  39098. hindPaw: {
  39099. height: math.unit(3.18, "feet"),
  39100. name: "Hind paw",
  39101. image: {
  39102. source: "./media/characters/haloren/hind-paw.svg"
  39103. }
  39104. },
  39105. maw: {
  39106. height: math.unit(5.05, "feet"),
  39107. name: "Maw",
  39108. image: {
  39109. source: "./media/characters/haloren/maw.svg"
  39110. }
  39111. },
  39112. dick: {
  39113. height: math.unit(2.90, "feet"),
  39114. name: "Dick",
  39115. image: {
  39116. source: "./media/characters/haloren/dick.svg"
  39117. }
  39118. },
  39119. },
  39120. [
  39121. {
  39122. name: "Normal",
  39123. height: math.unit(7 + 5/12, "feet"),
  39124. default: true
  39125. },
  39126. {
  39127. name: "Enhanced",
  39128. height: math.unit(14 + 3/12, "feet")
  39129. },
  39130. ]
  39131. ))
  39132. characterMakers.push(() => makeCharacter(
  39133. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39134. {
  39135. front: {
  39136. height: math.unit(171, "cm"),
  39137. name: "Front",
  39138. image: {
  39139. source: "./media/characters/kimmy/front.svg",
  39140. extra: 1491/1435,
  39141. bottom: 53/1544
  39142. }
  39143. },
  39144. },
  39145. [
  39146. {
  39147. name: "Small",
  39148. height: math.unit(9, "cm")
  39149. },
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(171, "cm"),
  39153. default: true
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(8, "feet"),
  39162. weight: math.unit(300, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/galeboomer/front.svg",
  39166. extra: 4651/4415,
  39167. bottom: 162/4813
  39168. }
  39169. },
  39170. back: {
  39171. height: math.unit(8, "feet"),
  39172. weight: math.unit(300, "lb"),
  39173. name: "Back",
  39174. image: {
  39175. source: "./media/characters/galeboomer/back.svg",
  39176. extra: 4544/4314,
  39177. bottom: 16/4560
  39178. }
  39179. },
  39180. frontAlt: {
  39181. height: math.unit(8, "feet"),
  39182. weight: math.unit(300, "lb"),
  39183. name: "Front (Alt)",
  39184. image: {
  39185. source: "./media/characters/galeboomer/front-alt.svg",
  39186. extra: 4458/4228,
  39187. bottom: 68/4526
  39188. }
  39189. },
  39190. maw: {
  39191. height: math.unit(1.2, "feet"),
  39192. name: "Maw",
  39193. image: {
  39194. source: "./media/characters/galeboomer/maw.svg"
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Normal",
  39201. height: math.unit(8, "feet"),
  39202. default: true
  39203. },
  39204. ]
  39205. ))
  39206. characterMakers.push(() => makeCharacter(
  39207. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39208. {
  39209. front: {
  39210. height: math.unit(5 + 9/12, "feet"),
  39211. weight: math.unit(120, "lb"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/chyr/front.svg",
  39215. extra: 1323/1254,
  39216. bottom: 63/1386
  39217. }
  39218. },
  39219. back: {
  39220. height: math.unit(5 + 9/12, "feet"),
  39221. weight: math.unit(120, "lb"),
  39222. name: "Back",
  39223. image: {
  39224. source: "./media/characters/chyr/back.svg",
  39225. extra: 1323/1252,
  39226. bottom: 48/1371
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(5 + 9/12, "feet"),
  39234. default: true
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39240. {
  39241. front: {
  39242. height: math.unit(7, "feet"),
  39243. weight: math.unit(310, "lb"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/solarus/front.svg",
  39247. extra: 2415/2021,
  39248. bottom: 103/2518
  39249. }
  39250. },
  39251. back: {
  39252. height: math.unit(7, "feet"),
  39253. weight: math.unit(310, "lb"),
  39254. name: "Back",
  39255. image: {
  39256. source: "./media/characters/solarus/back.svg",
  39257. extra: 2463/2089,
  39258. bottom: 79/2542
  39259. }
  39260. },
  39261. },
  39262. [
  39263. {
  39264. name: "Normal",
  39265. height: math.unit(7, "feet"),
  39266. default: true
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(16, "feet"),
  39275. name: "Front",
  39276. image: {
  39277. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39278. extra: 1844/1780,
  39279. bottom: 58/1902
  39280. }
  39281. },
  39282. winterCoat: {
  39283. height: math.unit(16, "feet"),
  39284. name: "Winter Coat",
  39285. image: {
  39286. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39287. extra: 1807/1775,
  39288. bottom: 69/1876
  39289. }
  39290. },
  39291. },
  39292. [
  39293. {
  39294. name: "Normal",
  39295. height: math.unit(16, "feet"),
  39296. default: true
  39297. },
  39298. {
  39299. name: "Chicago Size",
  39300. height: math.unit(560, "feet")
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(11 + 6/12, "feet"),
  39309. weight: math.unit(1366, "lb"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/lexor/front.svg",
  39313. extra: 1560/1481,
  39314. bottom: 211/1771
  39315. }
  39316. },
  39317. back: {
  39318. height: math.unit(11 + 6/12, "feet"),
  39319. weight: math.unit(1366, "lb"),
  39320. name: "Back",
  39321. image: {
  39322. source: "./media/characters/lexor/back.svg",
  39323. extra: 1614/1533,
  39324. bottom: 76/1690
  39325. }
  39326. },
  39327. maw: {
  39328. height: math.unit(3, "feet"),
  39329. name: "Maw",
  39330. image: {
  39331. source: "./media/characters/lexor/maw.svg"
  39332. }
  39333. },
  39334. dick: {
  39335. height: math.unit(2.59, "feet"),
  39336. name: "Dick",
  39337. image: {
  39338. source: "./media/characters/lexor/dick.svg"
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(11 + 6/12, "feet"),
  39346. default: true
  39347. },
  39348. ]
  39349. ))
  39350. characterMakers.push(() => makeCharacter(
  39351. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39352. {
  39353. front: {
  39354. height: math.unit(5 + 8/12, "feet"),
  39355. name: "Front",
  39356. image: {
  39357. source: "./media/characters/magnum/front.svg",
  39358. extra: 942/855,
  39359. bottom: 26/968
  39360. }
  39361. },
  39362. },
  39363. [
  39364. {
  39365. name: "Normal",
  39366. height: math.unit(5 + 8/12, "feet"),
  39367. default: true
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(18 + 4/12, "feet"),
  39376. weight: math.unit(1500, "kg"),
  39377. name: "Front",
  39378. image: {
  39379. source: "./media/characters/solas-sharpsman/front.svg",
  39380. extra: 1698/1589,
  39381. bottom: 0/1698
  39382. }
  39383. },
  39384. },
  39385. [
  39386. {
  39387. name: "Normal",
  39388. height: math.unit(18 + 4/12, "feet"),
  39389. default: true
  39390. },
  39391. ]
  39392. ))
  39393. characterMakers.push(() => makeCharacter(
  39394. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39395. {
  39396. front: {
  39397. height: math.unit(5 + 5/12, "feet"),
  39398. weight: math.unit(180, "lb"),
  39399. name: "Front",
  39400. image: {
  39401. source: "./media/characters/october/front.svg",
  39402. extra: 1800/1650,
  39403. bottom: 0/1800
  39404. }
  39405. },
  39406. frontNsfw: {
  39407. height: math.unit(5 + 5/12, "feet"),
  39408. weight: math.unit(180, "lb"),
  39409. name: "Front (NSFW)",
  39410. image: {
  39411. source: "./media/characters/october/front-nsfw.svg",
  39412. extra: 1392/1307,
  39413. bottom: 42/1434
  39414. }
  39415. },
  39416. },
  39417. [
  39418. {
  39419. name: "Normal",
  39420. height: math.unit(5 + 5/12, "feet"),
  39421. default: true
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(8 + 6/12, "feet"),
  39430. name: "Front",
  39431. image: {
  39432. source: "./media/characters/essynkardi/front.svg",
  39433. extra: 1541/1457,
  39434. bottom: 47/1588
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(8 + 6/12, "feet"),
  39442. default: true
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(6 + 6/12, "feet"),
  39451. weight: math.unit(7, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/icky/front.svg",
  39455. extra: 813/782,
  39456. bottom: 66/879
  39457. }
  39458. },
  39459. back: {
  39460. height: math.unit(6 + 6/12, "feet"),
  39461. weight: math.unit(7, "lb"),
  39462. name: "Back",
  39463. image: {
  39464. source: "./media/characters/icky/back.svg",
  39465. extra: 754/735,
  39466. bottom: 56/810
  39467. }
  39468. },
  39469. },
  39470. [
  39471. {
  39472. name: "Normal",
  39473. height: math.unit(6 + 6/12, "feet"),
  39474. default: true
  39475. },
  39476. ]
  39477. ))
  39478. characterMakers.push(() => makeCharacter(
  39479. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39480. {
  39481. front: {
  39482. height: math.unit(15, "feet"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/rojas/front.svg",
  39486. extra: 1462/1408,
  39487. bottom: 95/1557
  39488. }
  39489. },
  39490. back: {
  39491. height: math.unit(15, "feet"),
  39492. name: "Back",
  39493. image: {
  39494. source: "./media/characters/rojas/back.svg",
  39495. extra: 1023/954,
  39496. bottom: 28/1051
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Normal",
  39503. height: math.unit(15, "feet"),
  39504. default: true
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39510. {
  39511. frontHuman: {
  39512. height: math.unit(5 + 7/12, "feet"),
  39513. name: "Front (Human)",
  39514. image: {
  39515. source: "./media/characters/alek-dryagan/front-human.svg",
  39516. extra: 1687/1667,
  39517. bottom: 69/1756
  39518. }
  39519. },
  39520. backHuman: {
  39521. height: math.unit(5 + 7/12, "feet"),
  39522. name: "Back (Human)",
  39523. image: {
  39524. source: "./media/characters/alek-dryagan/back-human.svg",
  39525. extra: 1670/1649,
  39526. bottom: 65/1735
  39527. }
  39528. },
  39529. frontDemi: {
  39530. height: math.unit(65, "feet"),
  39531. name: "Front (Demi)",
  39532. image: {
  39533. source: "./media/characters/alek-dryagan/front-demi.svg",
  39534. extra: 1669/1642,
  39535. bottom: 49/1718
  39536. }
  39537. },
  39538. backDemi: {
  39539. height: math.unit(65, "feet"),
  39540. name: "Back (Demi)",
  39541. image: {
  39542. source: "./media/characters/alek-dryagan/back-demi.svg",
  39543. extra: 1658/1637,
  39544. bottom: 40/1698
  39545. }
  39546. },
  39547. mawHuman: {
  39548. height: math.unit(0.3, "feet"),
  39549. name: "Maw (Human)",
  39550. image: {
  39551. source: "./media/characters/alek-dryagan/maw-human.svg"
  39552. }
  39553. },
  39554. mawDemi: {
  39555. height: math.unit(3.8, "feet"),
  39556. name: "Maw (Demi)",
  39557. image: {
  39558. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(5 + 7/12, "feet"),
  39566. default: true
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39572. {
  39573. frontHuman: {
  39574. height: math.unit(5 + 2/12, "feet"),
  39575. name: "Front (Human)",
  39576. image: {
  39577. source: "./media/characters/gen/front-human.svg",
  39578. extra: 1627/1538,
  39579. bottom: 71/1698
  39580. }
  39581. },
  39582. backHuman: {
  39583. height: math.unit(5 + 2/12, "feet"),
  39584. name: "Back (Human)",
  39585. image: {
  39586. source: "./media/characters/gen/back-human.svg",
  39587. extra: 1638/1548,
  39588. bottom: 69/1707
  39589. }
  39590. },
  39591. frontDemi: {
  39592. height: math.unit(5 + 2/12, "feet"),
  39593. name: "Front (Demi)",
  39594. image: {
  39595. source: "./media/characters/gen/front-demi.svg",
  39596. extra: 1627/1538,
  39597. bottom: 71/1698
  39598. }
  39599. },
  39600. backDemi: {
  39601. height: math.unit(5 + 2/12, "feet"),
  39602. name: "Back (Demi)",
  39603. image: {
  39604. source: "./media/characters/gen/back-demi.svg",
  39605. extra: 1638/1548,
  39606. bottom: 69/1707
  39607. }
  39608. },
  39609. },
  39610. [
  39611. {
  39612. name: "Normal",
  39613. height: math.unit(5 + 2/12, "feet"),
  39614. default: true
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39620. {
  39621. frontImp: {
  39622. height: math.unit(1 + 11/12, "feet"),
  39623. name: "Front (Imp)",
  39624. image: {
  39625. source: "./media/characters/max-kobold/front-imp.svg",
  39626. extra: 1238/1134,
  39627. bottom: 81/1319
  39628. }
  39629. },
  39630. backImp: {
  39631. height: math.unit(1 + 11/12, "feet"),
  39632. name: "Back (Imp)",
  39633. image: {
  39634. source: "./media/characters/max-kobold/back-imp.svg",
  39635. extra: 1334/1175,
  39636. bottom: 34/1368
  39637. }
  39638. },
  39639. frontDemi: {
  39640. height: math.unit(5 + 9/12, "feet"),
  39641. name: "Front (Demi)",
  39642. image: {
  39643. source: "./media/characters/max-kobold/front-demi.svg",
  39644. extra: 1715/1685,
  39645. bottom: 54/1769
  39646. }
  39647. },
  39648. backDemi: {
  39649. height: math.unit(5 + 9/12, "feet"),
  39650. name: "Back (Demi)",
  39651. image: {
  39652. source: "./media/characters/max-kobold/back-demi.svg",
  39653. extra: 1752/1729,
  39654. bottom: 41/1793
  39655. }
  39656. },
  39657. handImp: {
  39658. height: math.unit(0.45, "feet"),
  39659. name: "Hand (Imp)",
  39660. image: {
  39661. source: "./media/characters/max-kobold/hand.svg"
  39662. }
  39663. },
  39664. pawImp: {
  39665. height: math.unit(0.46, "feet"),
  39666. name: "Paw (Imp)",
  39667. image: {
  39668. source: "./media/characters/max-kobold/paw.svg"
  39669. }
  39670. },
  39671. handDemi: {
  39672. height: math.unit(0.80, "feet"),
  39673. name: "Hand (Demi)",
  39674. image: {
  39675. source: "./media/characters/max-kobold/hand.svg"
  39676. }
  39677. },
  39678. pawDemi: {
  39679. height: math.unit(1.1, "feet"),
  39680. name: "Paw (Demi)",
  39681. image: {
  39682. source: "./media/characters/max-kobold/paw.svg"
  39683. }
  39684. },
  39685. headImp: {
  39686. height: math.unit(1.33, "feet"),
  39687. name: "Head (Imp)",
  39688. image: {
  39689. source: "./media/characters/max-kobold/head-imp.svg"
  39690. }
  39691. },
  39692. mawImp: {
  39693. height: math.unit(0.75, "feet"),
  39694. name: "Maw (Imp)",
  39695. image: {
  39696. source: "./media/characters/max-kobold/maw-imp.svg"
  39697. }
  39698. },
  39699. mawDemi: {
  39700. height: math.unit(0.42, "feet"),
  39701. name: "Maw (Demi)",
  39702. image: {
  39703. source: "./media/characters/max-kobold/maw-demi.svg"
  39704. }
  39705. },
  39706. },
  39707. [
  39708. {
  39709. name: "Normal",
  39710. height: math.unit(1 + 11/12, "feet"),
  39711. default: true
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(7 + 5/12, "feet"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/carbon/front.svg",
  39723. extra: 1754/1689,
  39724. bottom: 65/1819
  39725. }
  39726. },
  39727. back: {
  39728. height: math.unit(7 + 5/12, "feet"),
  39729. name: "Back",
  39730. image: {
  39731. source: "./media/characters/carbon/back.svg",
  39732. extra: 1762/1695,
  39733. bottom: 24/1786
  39734. }
  39735. },
  39736. frontGigantamax: {
  39737. height: math.unit(150, "feet"),
  39738. name: "Front (Gigantamax)",
  39739. image: {
  39740. source: "./media/characters/carbon/front-gigantamax.svg",
  39741. extra: 1826/1669,
  39742. bottom: 59/1885
  39743. }
  39744. },
  39745. backGigantamax: {
  39746. height: math.unit(150, "feet"),
  39747. name: "Back (Gigantamax)",
  39748. image: {
  39749. source: "./media/characters/carbon/back-gigantamax.svg",
  39750. extra: 1796/1653,
  39751. bottom: 53/1849
  39752. }
  39753. },
  39754. maw: {
  39755. height: math.unit(0.48, "feet"),
  39756. name: "Maw",
  39757. image: {
  39758. source: "./media/characters/carbon/maw.svg"
  39759. }
  39760. },
  39761. mawGigantamax: {
  39762. height: math.unit(7.5, "feet"),
  39763. name: "Maw (Gigantamax)",
  39764. image: {
  39765. source: "./media/characters/carbon/maw-gigantamax.svg"
  39766. }
  39767. },
  39768. },
  39769. [
  39770. {
  39771. name: "Normal",
  39772. height: math.unit(7 + 5/12, "feet"),
  39773. default: true
  39774. },
  39775. ]
  39776. ))
  39777. characterMakers.push(() => makeCharacter(
  39778. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39779. {
  39780. front: {
  39781. height: math.unit(6, "feet"),
  39782. name: "Front",
  39783. image: {
  39784. source: "./media/characters/maverick/front.svg",
  39785. extra: 1672/1661,
  39786. bottom: 85/1757
  39787. }
  39788. },
  39789. back: {
  39790. height: math.unit(6, "feet"),
  39791. name: "Back",
  39792. image: {
  39793. source: "./media/characters/maverick/back.svg",
  39794. extra: 1642/1631,
  39795. bottom: 38/1680
  39796. }
  39797. },
  39798. },
  39799. [
  39800. {
  39801. name: "Normal",
  39802. height: math.unit(6, "feet"),
  39803. default: true
  39804. },
  39805. ]
  39806. ))
  39807. characterMakers.push(() => makeCharacter(
  39808. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39809. {
  39810. front: {
  39811. height: math.unit(15, "feet"),
  39812. weight: math.unit(615, "lb"),
  39813. name: "Front",
  39814. image: {
  39815. source: "./media/characters/grockle/front.svg",
  39816. extra: 1535/1427,
  39817. bottom: 56/1591
  39818. }
  39819. },
  39820. },
  39821. [
  39822. {
  39823. name: "Normal",
  39824. height: math.unit(15, "feet"),
  39825. default: true
  39826. },
  39827. {
  39828. name: "Large",
  39829. height: math.unit(150, "feet")
  39830. },
  39831. {
  39832. name: "Macro",
  39833. height: math.unit(1876, "feet")
  39834. },
  39835. {
  39836. name: "Mega Macro",
  39837. height: math.unit(121940, "feet")
  39838. },
  39839. {
  39840. name: "Giga Macro",
  39841. height: math.unit(750, "km")
  39842. },
  39843. {
  39844. name: "Tera Macro",
  39845. height: math.unit(750000, "km")
  39846. },
  39847. {
  39848. name: "Galactic",
  39849. height: math.unit(1.4e5, "km")
  39850. },
  39851. {
  39852. name: "Godlike",
  39853. height: math.unit(9.8e280, "galaxies")
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(11, "meters"),
  39862. weight: math.unit(20, "tonnes"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/alistair/front.svg",
  39866. extra: 1265/1009,
  39867. bottom: 93/1358
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(11, "meters"),
  39875. default: true
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39881. {
  39882. front: {
  39883. height: math.unit(5 + 8/12, "feet"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/haruka/front.svg",
  39887. extra: 2012/1952,
  39888. bottom: 0/2012
  39889. }
  39890. },
  39891. },
  39892. [
  39893. {
  39894. name: "Normal",
  39895. height: math.unit(5 + 8/12, "feet"),
  39896. default: true
  39897. },
  39898. ]
  39899. ))
  39900. characterMakers.push(() => makeCharacter(
  39901. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39902. {
  39903. back: {
  39904. height: math.unit(9, "feet"),
  39905. name: "Back",
  39906. image: {
  39907. source: "./media/characters/vivian-sylveon/back.svg",
  39908. extra: 1853/1714,
  39909. bottom: 0/1853
  39910. }
  39911. },
  39912. hyper: {
  39913. height: math.unit(5.58, "feet"),
  39914. name: "Hyper",
  39915. preyCapacity: math.unit(2.80616218797, "m^3"),
  39916. image: {
  39917. source: "./media/characters/vivian-sylveon/hyper.svg",
  39918. extra: 999/676,
  39919. bottom: 697/1696
  39920. },
  39921. },
  39922. paw: {
  39923. height: math.unit(1.8, "feet"),
  39924. name: "Paw",
  39925. image: {
  39926. source: "./media/characters/vivian-sylveon/paw.svg"
  39927. }
  39928. },
  39929. danger: {
  39930. height: math.unit(7.5, "feet"),
  39931. name: "DANGER",
  39932. image: {
  39933. source: "./media/characters/vivian-sylveon/danger.svg"
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Normal",
  39940. height: math.unit(9, "feet"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(500, "feet")
  39946. },
  39947. {
  39948. name: "Megamacro",
  39949. height: math.unit(600, "miles")
  39950. },
  39951. {
  39952. name: "Gigamacro",
  39953. height: math.unit(30000, "miles")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39959. {
  39960. anthro: {
  39961. height: math.unit(5 + 10/12, "feet"),
  39962. weight: math.unit(100, "lb"),
  39963. name: "Anthro",
  39964. image: {
  39965. source: "./media/characters/daiki/anthro.svg",
  39966. extra: 1115/1027,
  39967. bottom: 69/1184
  39968. }
  39969. },
  39970. feral: {
  39971. height: math.unit(200, "feet"),
  39972. name: "Feral",
  39973. image: {
  39974. source: "./media/characters/daiki/feral.svg",
  39975. extra: 1256/313,
  39976. bottom: 39/1295
  39977. }
  39978. },
  39979. feralHead: {
  39980. height: math.unit(171, "feet"),
  39981. name: "Feral Head",
  39982. image: {
  39983. source: "./media/characters/daiki/feral-head.svg"
  39984. }
  39985. },
  39986. manaDragon: {
  39987. height: math.unit(170, "meters"),
  39988. name: "Mana-dragon",
  39989. image: {
  39990. source: "./media/characters/daiki/mana-dragon.svg",
  39991. extra: 763/420,
  39992. bottom: 97/860
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(5 + 10/12, "feet"),
  40000. default: true
  40001. },
  40002. ]
  40003. ))
  40004. characterMakers.push(() => makeCharacter(
  40005. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40006. {
  40007. fullyEquippedFront: {
  40008. height: math.unit(3 + 1/12, "feet"),
  40009. weight: math.unit(24, "lb"),
  40010. name: "Fully Equipped (Front)",
  40011. image: {
  40012. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40013. extra: 687/605,
  40014. bottom: 18/705
  40015. }
  40016. },
  40017. fullyEquippedBack: {
  40018. height: math.unit(3 + 1/12, "feet"),
  40019. weight: math.unit(24, "lb"),
  40020. name: "Fully Equipped (Back)",
  40021. image: {
  40022. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40023. extra: 689/590,
  40024. bottom: 18/707
  40025. }
  40026. },
  40027. dailyWear: {
  40028. height: math.unit(3 + 1/12, "feet"),
  40029. weight: math.unit(24, "lb"),
  40030. name: "Daily Wear",
  40031. image: {
  40032. source: "./media/characters/tea-spot/daily-wear.svg",
  40033. extra: 701/620,
  40034. bottom: 21/722
  40035. }
  40036. },
  40037. maidWork: {
  40038. height: math.unit(3 + 1/12, "feet"),
  40039. weight: math.unit(24, "lb"),
  40040. name: "Maid Work",
  40041. image: {
  40042. source: "./media/characters/tea-spot/maid-work.svg",
  40043. extra: 693/609,
  40044. bottom: 15/708
  40045. }
  40046. },
  40047. },
  40048. [
  40049. {
  40050. name: "Normal",
  40051. height: math.unit(3 + 1/12, "feet"),
  40052. default: true
  40053. },
  40054. ]
  40055. ))
  40056. characterMakers.push(() => makeCharacter(
  40057. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40058. {
  40059. front: {
  40060. height: math.unit(175, "cm"),
  40061. weight: math.unit(75, "kg"),
  40062. name: "Front",
  40063. image: {
  40064. source: "./media/characters/chee/front.svg",
  40065. extra: 1796/1740,
  40066. bottom: 40/1836
  40067. }
  40068. },
  40069. },
  40070. [
  40071. {
  40072. name: "Micro-Micro",
  40073. height: math.unit(1, "nm")
  40074. },
  40075. {
  40076. name: "Micro-erst",
  40077. height: math.unit(1, "micrometer")
  40078. },
  40079. {
  40080. name: "Micro-er",
  40081. height: math.unit(1, "cm")
  40082. },
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(175, "cm"),
  40086. default: true
  40087. },
  40088. {
  40089. name: "Macro",
  40090. height: math.unit(100, "m")
  40091. },
  40092. {
  40093. name: "Macro-er",
  40094. height: math.unit(1, "km")
  40095. },
  40096. {
  40097. name: "Macro-erst",
  40098. height: math.unit(10, "km")
  40099. },
  40100. {
  40101. name: "Macro-Macro",
  40102. height: math.unit(100, "km")
  40103. },
  40104. ]
  40105. ))
  40106. characterMakers.push(() => makeCharacter(
  40107. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40108. {
  40109. front: {
  40110. height: math.unit(11 + 9/12, "feet"),
  40111. weight: math.unit(935, "lb"),
  40112. name: "Front",
  40113. image: {
  40114. source: "./media/characters/kingsley/front.svg",
  40115. extra: 1803/1674,
  40116. bottom: 127/1930
  40117. }
  40118. },
  40119. frontNude: {
  40120. height: math.unit(11 + 9/12, "feet"),
  40121. weight: math.unit(935, "lb"),
  40122. name: "Front (Nude)",
  40123. image: {
  40124. source: "./media/characters/kingsley/front-nude.svg",
  40125. extra: 1803/1674,
  40126. bottom: 127/1930
  40127. }
  40128. },
  40129. },
  40130. [
  40131. {
  40132. name: "Normal",
  40133. height: math.unit(11 + 9/12, "feet"),
  40134. default: true
  40135. },
  40136. ]
  40137. ))
  40138. characterMakers.push(() => makeCharacter(
  40139. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40140. {
  40141. side: {
  40142. height: math.unit(9, "feet"),
  40143. name: "Side",
  40144. image: {
  40145. source: "./media/characters/rymel/side.svg",
  40146. extra: 792/469,
  40147. bottom: 121/913
  40148. }
  40149. },
  40150. maw: {
  40151. height: math.unit(2.4, "meters"),
  40152. name: "Maw",
  40153. image: {
  40154. source: "./media/characters/rymel/maw.svg"
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "House Drake",
  40161. height: math.unit(2, "feet")
  40162. },
  40163. {
  40164. name: "Reduced",
  40165. height: math.unit(4.5, "feet")
  40166. },
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(9, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40176. {
  40177. front: {
  40178. height: math.unit(1.74, "meters"),
  40179. weight: math.unit(55, "kg"),
  40180. name: "Front",
  40181. image: {
  40182. source: "./media/characters/rubus/front.svg",
  40183. extra: 1894/1742,
  40184. bottom: 44/1938
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(1.74, "meters"),
  40192. default: true
  40193. },
  40194. ]
  40195. ))
  40196. characterMakers.push(() => makeCharacter(
  40197. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40198. {
  40199. front: {
  40200. height: math.unit(5 + 2/12, "feet"),
  40201. weight: math.unit(112, "lb"),
  40202. name: "Front",
  40203. image: {
  40204. source: "./media/characters/cassie-kingston/front.svg",
  40205. extra: 1438/1390,
  40206. bottom: 47/1485
  40207. }
  40208. },
  40209. },
  40210. [
  40211. {
  40212. name: "Normal",
  40213. height: math.unit(5 + 2/12, "feet"),
  40214. default: true
  40215. },
  40216. {
  40217. name: "Macro",
  40218. height: math.unit(128, "feet")
  40219. },
  40220. {
  40221. name: "Megamacro",
  40222. height: math.unit(2.56, "miles")
  40223. },
  40224. ]
  40225. ))
  40226. characterMakers.push(() => makeCharacter(
  40227. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40228. {
  40229. front: {
  40230. height: math.unit(7, "feet"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/fox/front.svg",
  40234. extra: 1798/1703,
  40235. bottom: 55/1853
  40236. }
  40237. },
  40238. back: {
  40239. height: math.unit(7, "feet"),
  40240. name: "Back",
  40241. image: {
  40242. source: "./media/characters/fox/back.svg",
  40243. extra: 1748/1649,
  40244. bottom: 32/1780
  40245. }
  40246. },
  40247. head: {
  40248. height: math.unit(1.95, "feet"),
  40249. name: "Head",
  40250. image: {
  40251. source: "./media/characters/fox/head.svg"
  40252. }
  40253. },
  40254. dick: {
  40255. height: math.unit(1.33, "feet"),
  40256. name: "Dick",
  40257. image: {
  40258. source: "./media/characters/fox/dick.svg"
  40259. }
  40260. },
  40261. foot: {
  40262. height: math.unit(1, "feet"),
  40263. name: "Foot",
  40264. image: {
  40265. source: "./media/characters/fox/foot.svg"
  40266. }
  40267. },
  40268. paw: {
  40269. height: math.unit(0.92, "feet"),
  40270. name: "Paw",
  40271. image: {
  40272. source: "./media/characters/fox/paw.svg"
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Small",
  40279. height: math.unit(3, "inches")
  40280. },
  40281. {
  40282. name: "\"Realistic\"",
  40283. height: math.unit(7, "feet")
  40284. },
  40285. {
  40286. name: "Normal",
  40287. height: math.unit(150, "feet"),
  40288. default: true
  40289. },
  40290. {
  40291. name: "BIG",
  40292. height: math.unit(1200, "feet")
  40293. },
  40294. {
  40295. name: "👀",
  40296. height: math.unit(5, "miles")
  40297. },
  40298. {
  40299. name: "👀👀👀",
  40300. height: math.unit(64, "miles")
  40301. },
  40302. ]
  40303. ))
  40304. characterMakers.push(() => makeCharacter(
  40305. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40306. {
  40307. front: {
  40308. height: math.unit(625, "feet"),
  40309. name: "Front",
  40310. image: {
  40311. source: "./media/characters/asonja-rossa/front.svg",
  40312. extra: 1833/1686,
  40313. bottom: 24/1857
  40314. }
  40315. },
  40316. back: {
  40317. height: math.unit(625, "feet"),
  40318. name: "Back",
  40319. image: {
  40320. source: "./media/characters/asonja-rossa/back.svg",
  40321. extra: 1852/1753,
  40322. bottom: 26/1878
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Macro",
  40329. height: math.unit(625, "feet"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40336. {
  40337. side: {
  40338. height: math.unit(8, "feet"),
  40339. name: "Side",
  40340. image: {
  40341. source: "./media/characters/rezukii/side.svg",
  40342. extra: 979/542,
  40343. bottom: 87/1066
  40344. }
  40345. },
  40346. sitting: {
  40347. height: math.unit(14.6, "feet"),
  40348. name: "Sitting",
  40349. image: {
  40350. source: "./media/characters/rezukii/sitting.svg",
  40351. extra: 1023/813,
  40352. bottom: 45/1068
  40353. }
  40354. },
  40355. },
  40356. [
  40357. {
  40358. name: "Tiny",
  40359. height: math.unit(2, "feet")
  40360. },
  40361. {
  40362. name: "Smol",
  40363. height: math.unit(4, "feet")
  40364. },
  40365. {
  40366. name: "Normal",
  40367. height: math.unit(8, "feet"),
  40368. default: true
  40369. },
  40370. {
  40371. name: "Big",
  40372. height: math.unit(12, "feet")
  40373. },
  40374. {
  40375. name: "Macro",
  40376. height: math.unit(30, "feet")
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(14, "feet"),
  40385. weight: math.unit(9.5, "tonnes"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/dawnheart/front.svg",
  40389. extra: 2792/2675,
  40390. bottom: 64/2856
  40391. }
  40392. },
  40393. },
  40394. [
  40395. {
  40396. name: "Normal",
  40397. height: math.unit(14, "feet"),
  40398. default: true
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40404. {
  40405. front: {
  40406. height: math.unit(1.7, "m"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/gladi/front.svg",
  40410. extra: 1460/1362,
  40411. bottom: 19/1479
  40412. }
  40413. },
  40414. back: {
  40415. height: math.unit(1.7, "m"),
  40416. name: "Back",
  40417. image: {
  40418. source: "./media/characters/gladi/back.svg",
  40419. extra: 1459/1357,
  40420. bottom: 12/1471
  40421. }
  40422. },
  40423. feral: {
  40424. height: math.unit(2.05, "m"),
  40425. name: "Feral",
  40426. image: {
  40427. source: "./media/characters/gladi/feral.svg",
  40428. extra: 821/557,
  40429. bottom: 91/912
  40430. }
  40431. },
  40432. },
  40433. [
  40434. {
  40435. name: "Shortest",
  40436. height: math.unit(70, "cm")
  40437. },
  40438. {
  40439. name: "Normal",
  40440. height: math.unit(1.7, "m")
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(10, "m"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Tallest",
  40449. height: math.unit(200, "m")
  40450. },
  40451. ]
  40452. ))
  40453. characterMakers.push(() => makeCharacter(
  40454. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40455. {
  40456. front: {
  40457. height: math.unit(5 + 7/12, "feet"),
  40458. weight: math.unit(2, "tons"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/erdno/front.svg",
  40462. extra: 1234/1129,
  40463. bottom: 35/1269
  40464. }
  40465. },
  40466. angled: {
  40467. height: math.unit(5 + 7/12, "feet"),
  40468. weight: math.unit(2, "tons"),
  40469. name: "Angled",
  40470. image: {
  40471. source: "./media/characters/erdno/angled.svg",
  40472. extra: 1185/1139,
  40473. bottom: 36/1221
  40474. }
  40475. },
  40476. side: {
  40477. height: math.unit(5 + 7/12, "feet"),
  40478. weight: math.unit(2, "tons"),
  40479. name: "Side",
  40480. image: {
  40481. source: "./media/characters/erdno/side.svg",
  40482. extra: 1191/1144,
  40483. bottom: 40/1231
  40484. }
  40485. },
  40486. back: {
  40487. height: math.unit(5 + 7/12, "feet"),
  40488. weight: math.unit(2, "tons"),
  40489. name: "Back",
  40490. image: {
  40491. source: "./media/characters/erdno/back.svg",
  40492. extra: 1202/1146,
  40493. bottom: 17/1219
  40494. }
  40495. },
  40496. frontNsfw: {
  40497. height: math.unit(5 + 7/12, "feet"),
  40498. weight: math.unit(2, "tons"),
  40499. name: "Front (NSFW)",
  40500. image: {
  40501. source: "./media/characters/erdno/front-nsfw.svg",
  40502. extra: 1234/1129,
  40503. bottom: 35/1269
  40504. }
  40505. },
  40506. angledNsfw: {
  40507. height: math.unit(5 + 7/12, "feet"),
  40508. weight: math.unit(2, "tons"),
  40509. name: "Angled (NSFW)",
  40510. image: {
  40511. source: "./media/characters/erdno/angled-nsfw.svg",
  40512. extra: 1185/1139,
  40513. bottom: 36/1221
  40514. }
  40515. },
  40516. sideNsfw: {
  40517. height: math.unit(5 + 7/12, "feet"),
  40518. weight: math.unit(2, "tons"),
  40519. name: "Side (NSFW)",
  40520. image: {
  40521. source: "./media/characters/erdno/side-nsfw.svg",
  40522. extra: 1191/1144,
  40523. bottom: 40/1231
  40524. }
  40525. },
  40526. backNsfw: {
  40527. height: math.unit(5 + 7/12, "feet"),
  40528. weight: math.unit(2, "tons"),
  40529. name: "Back (NSFW)",
  40530. image: {
  40531. source: "./media/characters/erdno/back-nsfw.svg",
  40532. extra: 1202/1146,
  40533. bottom: 17/1219
  40534. }
  40535. },
  40536. frontHyper: {
  40537. height: math.unit(5 + 7/12, "feet"),
  40538. weight: math.unit(2, "tons"),
  40539. name: "Front (Hyper)",
  40540. image: {
  40541. source: "./media/characters/erdno/front-hyper.svg",
  40542. extra: 1298/1136,
  40543. bottom: 35/1333
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(5 + 7/12, "feet"),
  40551. default: true
  40552. },
  40553. {
  40554. name: "Big",
  40555. height: math.unit(5.7, "meters")
  40556. },
  40557. {
  40558. name: "Macro",
  40559. height: math.unit(5.7, "kilometers")
  40560. },
  40561. {
  40562. name: "Megamacro",
  40563. height: math.unit(5.7, "earths")
  40564. },
  40565. ]
  40566. ))
  40567. characterMakers.push(() => makeCharacter(
  40568. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40569. {
  40570. front: {
  40571. height: math.unit(5 + 10/12, "feet"),
  40572. weight: math.unit(150, "lb"),
  40573. name: "Front",
  40574. image: {
  40575. source: "./media/characters/jamie/front.svg",
  40576. extra: 1908/1768,
  40577. bottom: 19/1927
  40578. }
  40579. },
  40580. },
  40581. [
  40582. {
  40583. name: "Minimum",
  40584. height: math.unit(2, "cm")
  40585. },
  40586. {
  40587. name: "Micro",
  40588. height: math.unit(3, "inches")
  40589. },
  40590. {
  40591. name: "Normal",
  40592. height: math.unit(5 + 10/12, "feet"),
  40593. default: true
  40594. },
  40595. {
  40596. name: "Macro",
  40597. height: math.unit(150, "feet")
  40598. },
  40599. {
  40600. name: "Megamacro",
  40601. height: math.unit(10000, "m")
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(2, "meters"),
  40610. weight: math.unit(100, "kg"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/shiron/front.svg",
  40614. extra: 2103/1985,
  40615. bottom: 98/2201
  40616. }
  40617. },
  40618. back: {
  40619. height: math.unit(2, "meters"),
  40620. weight: math.unit(100, "kg"),
  40621. name: "Back",
  40622. image: {
  40623. source: "./media/characters/shiron/back.svg",
  40624. extra: 2110/2015,
  40625. bottom: 89/2199
  40626. }
  40627. },
  40628. hand: {
  40629. height: math.unit(0.96, "feet"),
  40630. name: "Hand",
  40631. image: {
  40632. source: "./media/characters/shiron/hand.svg"
  40633. }
  40634. },
  40635. foot: {
  40636. height: math.unit(1.464, "feet"),
  40637. name: "Foot",
  40638. image: {
  40639. source: "./media/characters/shiron/foot.svg"
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(2, "meters")
  40647. },
  40648. {
  40649. name: "Macro",
  40650. height: math.unit(500, "meters"),
  40651. default: true
  40652. },
  40653. {
  40654. name: "Megamacro",
  40655. height: math.unit(20, "km")
  40656. },
  40657. ]
  40658. ))
  40659. characterMakers.push(() => makeCharacter(
  40660. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40661. {
  40662. front: {
  40663. height: math.unit(6, "feet"),
  40664. name: "Front",
  40665. image: {
  40666. source: "./media/characters/sam/front.svg",
  40667. extra: 849/826,
  40668. bottom: 19/868
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(6, "feet"),
  40676. default: true
  40677. },
  40678. ]
  40679. ))
  40680. characterMakers.push(() => makeCharacter(
  40681. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40682. {
  40683. front: {
  40684. height: math.unit(8 + 4/12, "feet"),
  40685. weight: math.unit(122, "kg"),
  40686. name: "Front",
  40687. image: {
  40688. source: "./media/characters/namori-kurogawa/front.svg",
  40689. extra: 1894/1576,
  40690. bottom: 34/1928
  40691. }
  40692. },
  40693. },
  40694. [
  40695. {
  40696. name: "Normal",
  40697. height: math.unit(8 + 4/12, "feet"),
  40698. default: true
  40699. },
  40700. ]
  40701. ))
  40702. characterMakers.push(() => makeCharacter(
  40703. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40704. {
  40705. front: {
  40706. height: math.unit(9, "feet"),
  40707. weight: math.unit(621, "lb"),
  40708. name: "Front",
  40709. image: {
  40710. source: "./media/characters/unmru/front.svg",
  40711. extra: 1853/1747,
  40712. bottom: 73/1926
  40713. }
  40714. },
  40715. side: {
  40716. height: math.unit(9, "feet"),
  40717. weight: math.unit(621, "lb"),
  40718. name: "Side",
  40719. image: {
  40720. source: "./media/characters/unmru/side.svg",
  40721. extra: 1781/1671,
  40722. bottom: 127/1908
  40723. }
  40724. },
  40725. back: {
  40726. height: math.unit(9, "feet"),
  40727. weight: math.unit(621, "lb"),
  40728. name: "Back",
  40729. image: {
  40730. source: "./media/characters/unmru/back.svg",
  40731. extra: 1894/1765,
  40732. bottom: 75/1969
  40733. }
  40734. },
  40735. dick: {
  40736. height: math.unit(3, "feet"),
  40737. weight: math.unit(35, "lb"),
  40738. name: "Dick",
  40739. image: {
  40740. source: "./media/characters/unmru/dick.svg"
  40741. }
  40742. },
  40743. },
  40744. [
  40745. {
  40746. name: "Normal",
  40747. height: math.unit(9, "feet")
  40748. },
  40749. {
  40750. name: "Natural",
  40751. height: math.unit(27, "feet"),
  40752. default: true
  40753. },
  40754. {
  40755. name: "Giant",
  40756. height: math.unit(90, "feet")
  40757. },
  40758. {
  40759. name: "Kaiju",
  40760. height: math.unit(270, "feet")
  40761. },
  40762. {
  40763. name: "Macro",
  40764. height: math.unit(900, "feet")
  40765. },
  40766. {
  40767. name: "Macro+",
  40768. height: math.unit(2700, "feet")
  40769. },
  40770. {
  40771. name: "Megamacro",
  40772. height: math.unit(9000, "feet")
  40773. },
  40774. {
  40775. name: "City-Crushing",
  40776. height: math.unit(27000, "feet")
  40777. },
  40778. {
  40779. name: "Mountain-Mashing",
  40780. height: math.unit(90000, "feet")
  40781. },
  40782. {
  40783. name: "Earth-Eclipsing",
  40784. height: math.unit(2.7e8, "feet")
  40785. },
  40786. {
  40787. name: "Sol-Swallowing",
  40788. height: math.unit(9e10, "feet")
  40789. },
  40790. {
  40791. name: "Majoris-Munching",
  40792. height: math.unit(2.7e13, "feet")
  40793. },
  40794. ]
  40795. ))
  40796. characterMakers.push(() => makeCharacter(
  40797. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40798. {
  40799. front: {
  40800. height: math.unit(1, "inch"),
  40801. name: "Front",
  40802. image: {
  40803. source: "./media/characters/squeaks-mouse/front.svg",
  40804. extra: 352/308,
  40805. bottom: 25/377
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Micro",
  40812. height: math.unit(1, "inch"),
  40813. default: true
  40814. },
  40815. ]
  40816. ))
  40817. characterMakers.push(() => makeCharacter(
  40818. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40819. {
  40820. side: {
  40821. height: math.unit(35, "feet"),
  40822. name: "Side",
  40823. image: {
  40824. source: "./media/characters/sayko/side.svg",
  40825. extra: 1697/1021,
  40826. bottom: 82/1779
  40827. }
  40828. },
  40829. head: {
  40830. height: math.unit(16, "feet"),
  40831. name: "Head",
  40832. image: {
  40833. source: "./media/characters/sayko/head.svg"
  40834. }
  40835. },
  40836. forepaw: {
  40837. height: math.unit(7.85, "feet"),
  40838. name: "Forepaw",
  40839. image: {
  40840. source: "./media/characters/sayko/forepaw.svg"
  40841. }
  40842. },
  40843. hindpaw: {
  40844. height: math.unit(8.8, "feet"),
  40845. name: "Hindpaw",
  40846. image: {
  40847. source: "./media/characters/sayko/hindpaw.svg"
  40848. }
  40849. },
  40850. },
  40851. [
  40852. {
  40853. name: "Normal",
  40854. height: math.unit(35, "feet"),
  40855. default: true
  40856. },
  40857. {
  40858. name: "Colossus",
  40859. height: math.unit(100, "meters")
  40860. },
  40861. {
  40862. name: "\"Small\" Deity",
  40863. height: math.unit(1, "km")
  40864. },
  40865. {
  40866. name: "\"Large\" Deity",
  40867. height: math.unit(15, "km")
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(6, "feet"),
  40876. weight: math.unit(250, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/mukiro/front.svg",
  40880. extra: 1368/1310,
  40881. bottom: 34/1402
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Normal",
  40888. height: math.unit(6, "feet"),
  40889. default: true
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(12 + 4/12, "feet"),
  40898. name: "Front",
  40899. image: {
  40900. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40901. extra: 1346/1311,
  40902. bottom: 65/1411
  40903. }
  40904. },
  40905. },
  40906. [
  40907. {
  40908. name: "Base",
  40909. height: math.unit(12 + 4/12, "feet"),
  40910. default: true
  40911. },
  40912. {
  40913. name: "Macro",
  40914. height: math.unit(150, "feet")
  40915. },
  40916. {
  40917. name: "Mega",
  40918. height: math.unit(2, "miles")
  40919. },
  40920. {
  40921. name: "Demi God",
  40922. height: math.unit(4, "AU")
  40923. },
  40924. {
  40925. name: "God Size",
  40926. height: math.unit(1, "universe")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(3 + 3/12, "feet"),
  40935. weight: math.unit(88, "lb"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/trey/front.svg",
  40939. extra: 1815/1509,
  40940. bottom: 60/1875
  40941. }
  40942. },
  40943. },
  40944. [
  40945. {
  40946. name: "Normal",
  40947. height: math.unit(3 + 3/12, "feet"),
  40948. default: true
  40949. },
  40950. ]
  40951. ))
  40952. characterMakers.push(() => makeCharacter(
  40953. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40954. {
  40955. front: {
  40956. height: math.unit(4, "meters"),
  40957. name: "Front",
  40958. image: {
  40959. source: "./media/characters/adelonda/front.svg",
  40960. extra: 1077/982,
  40961. bottom: 39/1116
  40962. }
  40963. },
  40964. back: {
  40965. height: math.unit(4, "meters"),
  40966. name: "Back",
  40967. image: {
  40968. source: "./media/characters/adelonda/back.svg",
  40969. extra: 1105/1003,
  40970. bottom: 25/1130
  40971. }
  40972. },
  40973. feral: {
  40974. height: math.unit(40/1.5, "meters"),
  40975. name: "Feral",
  40976. image: {
  40977. source: "./media/characters/adelonda/feral.svg",
  40978. extra: 597/271,
  40979. bottom: 387/984
  40980. }
  40981. },
  40982. },
  40983. [
  40984. {
  40985. name: "Normal",
  40986. height: math.unit(4, "meters"),
  40987. default: true
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40993. {
  40994. front: {
  40995. height: math.unit(8 + 4/12, "feet"),
  40996. weight: math.unit(670, "lb"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/acadiel/front.svg",
  41000. extra: 1901/1595,
  41001. bottom: 142/2043
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Normal",
  41008. height: math.unit(8 + 4/12, "feet"),
  41009. default: true
  41010. },
  41011. {
  41012. name: "Macro",
  41013. height: math.unit(200, "feet")
  41014. },
  41015. ]
  41016. ))
  41017. characterMakers.push(() => makeCharacter(
  41018. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41019. {
  41020. front: {
  41021. height: math.unit(6 + 2/12, "feet"),
  41022. weight: math.unit(185, "lb"),
  41023. name: "Front",
  41024. image: {
  41025. source: "./media/characters/kayne-ein/front.svg",
  41026. extra: 1780/1560,
  41027. bottom: 81/1861
  41028. }
  41029. },
  41030. },
  41031. [
  41032. {
  41033. name: "Normal",
  41034. height: math.unit(6 + 2/12, "feet"),
  41035. default: true
  41036. },
  41037. {
  41038. name: "Transformation Stage",
  41039. height: math.unit(15, "feet")
  41040. },
  41041. {
  41042. name: "Macro",
  41043. height: math.unit(150, "feet")
  41044. },
  41045. {
  41046. name: "Earth's Shadow",
  41047. height: math.unit(6200, "miles")
  41048. },
  41049. {
  41050. name: "Universal Demon",
  41051. height: math.unit(28e9, "parsecs")
  41052. },
  41053. {
  41054. name: "Multiverse God",
  41055. height: math.unit(3, "multiverses")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(5 + 5/12, "feet"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/fawn/front.svg",
  41067. extra: 1873/1731,
  41068. bottom: 95/1968
  41069. }
  41070. },
  41071. back: {
  41072. height: math.unit(5 + 5/12, "feet"),
  41073. name: "Back",
  41074. image: {
  41075. source: "./media/characters/fawn/back.svg",
  41076. extra: 1813/1700,
  41077. bottom: 14/1827
  41078. }
  41079. },
  41080. hoof: {
  41081. height: math.unit(1.45, "feet"),
  41082. name: "Hoof",
  41083. image: {
  41084. source: "./media/characters/fawn/hoof.svg"
  41085. }
  41086. },
  41087. },
  41088. [
  41089. {
  41090. name: "Normal",
  41091. height: math.unit(5 + 5/12, "feet"),
  41092. default: true
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(2 + 5/12, "feet"),
  41101. name: "Front",
  41102. image: {
  41103. source: "./media/characters/orion/front.svg",
  41104. extra: 1366/1304,
  41105. bottom: 43/1409
  41106. }
  41107. },
  41108. paw: {
  41109. height: math.unit(0.52, "feet"),
  41110. name: "Paw",
  41111. image: {
  41112. source: "./media/characters/orion/paw.svg"
  41113. }
  41114. },
  41115. },
  41116. [
  41117. {
  41118. name: "Normal",
  41119. height: math.unit(2 + 5/12, "feet"),
  41120. default: true
  41121. },
  41122. ]
  41123. ))
  41124. characterMakers.push(() => makeCharacter(
  41125. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41126. {
  41127. front: {
  41128. height: math.unit(5 + 10/12, "feet"),
  41129. name: "Front",
  41130. image: {
  41131. source: "./media/characters/vera/front.svg",
  41132. extra: 1680/1575,
  41133. bottom: 49/1729
  41134. }
  41135. },
  41136. back: {
  41137. height: math.unit(5 + 10/12, "feet"),
  41138. name: "Back",
  41139. image: {
  41140. source: "./media/characters/vera/back.svg",
  41141. extra: 1700/1588,
  41142. bottom: 18/1718
  41143. }
  41144. },
  41145. arcanine: {
  41146. height: math.unit(6 + 8/12, "feet"),
  41147. name: "Arcanine",
  41148. image: {
  41149. source: "./media/characters/vera/arcanine.svg",
  41150. extra: 1590/1511,
  41151. bottom: 71/1661
  41152. }
  41153. },
  41154. maw: {
  41155. height: math.unit(0.82, "feet"),
  41156. name: "Maw",
  41157. image: {
  41158. source: "./media/characters/vera/maw.svg"
  41159. }
  41160. },
  41161. mawArcanine: {
  41162. height: math.unit(0.97, "feet"),
  41163. name: "Maw (Arcanine)",
  41164. image: {
  41165. source: "./media/characters/vera/maw-arcanine.svg"
  41166. }
  41167. },
  41168. paw: {
  41169. height: math.unit(0.75, "feet"),
  41170. name: "Paw",
  41171. image: {
  41172. source: "./media/characters/vera/paw.svg"
  41173. }
  41174. },
  41175. pawprint: {
  41176. height: math.unit(0.52, "feet"),
  41177. name: "Pawprint",
  41178. image: {
  41179. source: "./media/characters/vera/pawprint.svg"
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Normal",
  41186. height: math.unit(5 + 10/12, "feet"),
  41187. default: true
  41188. },
  41189. {
  41190. name: "Macro",
  41191. height: math.unit(75, "feet")
  41192. },
  41193. ]
  41194. ))
  41195. characterMakers.push(() => makeCharacter(
  41196. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41197. {
  41198. front: {
  41199. height: math.unit(4, "feet"),
  41200. weight: math.unit(40, "lb"),
  41201. name: "Front",
  41202. image: {
  41203. source: "./media/characters/orvan-rabbit/front.svg",
  41204. extra: 1896/1642,
  41205. bottom: 29/1925
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(4, "feet"),
  41213. default: true
  41214. },
  41215. ]
  41216. ))
  41217. characterMakers.push(() => makeCharacter(
  41218. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41219. {
  41220. front: {
  41221. height: math.unit(6, "feet"),
  41222. weight: math.unit(168, "lb"),
  41223. name: "Front",
  41224. image: {
  41225. source: "./media/characters/lisa/front.svg",
  41226. extra: 2065/1867,
  41227. bottom: 46/2111
  41228. }
  41229. },
  41230. back: {
  41231. height: math.unit(6, "feet"),
  41232. weight: math.unit(168, "lb"),
  41233. name: "Back",
  41234. image: {
  41235. source: "./media/characters/lisa/back.svg",
  41236. extra: 1982/1838,
  41237. bottom: 29/2011
  41238. }
  41239. },
  41240. maw: {
  41241. height: math.unit(0.81, "feet"),
  41242. name: "Maw",
  41243. image: {
  41244. source: "./media/characters/lisa/maw.svg"
  41245. }
  41246. },
  41247. paw: {
  41248. height: math.unit(0.9, "feet"),
  41249. name: "Paw",
  41250. image: {
  41251. source: "./media/characters/lisa/paw.svg"
  41252. }
  41253. },
  41254. caribousune: {
  41255. height: math.unit(7 + 2/12, "feet"),
  41256. weight: math.unit(268, "lb"),
  41257. name: "Caribousune",
  41258. image: {
  41259. source: "./media/characters/lisa/caribousune.svg",
  41260. extra: 1843/1633,
  41261. bottom: 29/1872
  41262. }
  41263. },
  41264. frontCaribousune: {
  41265. height: math.unit(7 + 2/12, "feet"),
  41266. weight: math.unit(268, "lb"),
  41267. name: "Front (Caribousune)",
  41268. image: {
  41269. source: "./media/characters/lisa/front-caribousune.svg",
  41270. extra: 1818/1638,
  41271. bottom: 52/1870
  41272. }
  41273. },
  41274. sideCaribousune: {
  41275. height: math.unit(7 + 2/12, "feet"),
  41276. weight: math.unit(268, "lb"),
  41277. name: "Side (Caribousune)",
  41278. image: {
  41279. source: "./media/characters/lisa/side-caribousune.svg",
  41280. extra: 1851/1635,
  41281. bottom: 16/1867
  41282. }
  41283. },
  41284. backCaribousune: {
  41285. height: math.unit(7 + 2/12, "feet"),
  41286. weight: math.unit(268, "lb"),
  41287. name: "Back (Caribousune)",
  41288. image: {
  41289. source: "./media/characters/lisa/back-caribousune.svg",
  41290. extra: 1801/1604,
  41291. bottom: 44/1845
  41292. }
  41293. },
  41294. caribou: {
  41295. height: math.unit(7 + 2/12, "feet"),
  41296. weight: math.unit(268, "lb"),
  41297. name: "Caribou",
  41298. image: {
  41299. source: "./media/characters/lisa/caribou.svg",
  41300. extra: 1843/1633,
  41301. bottom: 29/1872
  41302. }
  41303. },
  41304. frontCaribou: {
  41305. height: math.unit(7 + 2/12, "feet"),
  41306. weight: math.unit(268, "lb"),
  41307. name: "Front (Caribou)",
  41308. image: {
  41309. source: "./media/characters/lisa/front-caribou.svg",
  41310. extra: 1818/1638,
  41311. bottom: 52/1870
  41312. }
  41313. },
  41314. sideCaribou: {
  41315. height: math.unit(7 + 2/12, "feet"),
  41316. weight: math.unit(268, "lb"),
  41317. name: "Side (Caribou)",
  41318. image: {
  41319. source: "./media/characters/lisa/side-caribou.svg",
  41320. extra: 1851/1635,
  41321. bottom: 16/1867
  41322. }
  41323. },
  41324. backCaribou: {
  41325. height: math.unit(7 + 2/12, "feet"),
  41326. weight: math.unit(268, "lb"),
  41327. name: "Back (Caribou)",
  41328. image: {
  41329. source: "./media/characters/lisa/back-caribou.svg",
  41330. extra: 1801/1604,
  41331. bottom: 44/1845
  41332. }
  41333. },
  41334. mawCaribou: {
  41335. height: math.unit(1.45, "feet"),
  41336. name: "Maw (Caribou)",
  41337. image: {
  41338. source: "./media/characters/lisa/maw-caribou.svg"
  41339. }
  41340. },
  41341. mawCaribousune: {
  41342. height: math.unit(1.45, "feet"),
  41343. name: "Maw (Caribousune)",
  41344. image: {
  41345. source: "./media/characters/lisa/maw-caribousune.svg"
  41346. }
  41347. },
  41348. pawCaribousune: {
  41349. height: math.unit(1.61, "feet"),
  41350. name: "Paw (Caribou)",
  41351. image: {
  41352. source: "./media/characters/lisa/paw-caribousune.svg"
  41353. }
  41354. },
  41355. },
  41356. [
  41357. {
  41358. name: "Normal",
  41359. height: math.unit(6, "feet")
  41360. },
  41361. {
  41362. name: "God Size",
  41363. height: math.unit(72, "feet"),
  41364. default: true
  41365. },
  41366. {
  41367. name: "Towering",
  41368. height: math.unit(288, "feet")
  41369. },
  41370. {
  41371. name: "City Size",
  41372. height: math.unit(48384, "feet")
  41373. },
  41374. {
  41375. name: "Continental",
  41376. height: math.unit(4200, "miles")
  41377. },
  41378. {
  41379. name: "Planet Eater",
  41380. height: math.unit(42, "earths")
  41381. },
  41382. {
  41383. name: "Star Swallower",
  41384. height: math.unit(42, "solarradii")
  41385. },
  41386. {
  41387. name: "System Swallower",
  41388. height: math.unit(84000, "AU")
  41389. },
  41390. {
  41391. name: "Galaxy Gobbler",
  41392. height: math.unit(42, "galaxies")
  41393. },
  41394. {
  41395. name: "Universe Devourer",
  41396. height: math.unit(42, "universes")
  41397. },
  41398. {
  41399. name: "Multiverse Muncher",
  41400. height: math.unit(42, "multiverses")
  41401. },
  41402. ]
  41403. ))
  41404. characterMakers.push(() => makeCharacter(
  41405. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41406. {
  41407. front: {
  41408. height: math.unit(36, "feet"),
  41409. name: "Front",
  41410. image: {
  41411. source: "./media/characters/shadow-rat/front.svg",
  41412. extra: 1845/1758,
  41413. bottom: 83/1928
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Macro",
  41420. height: math.unit(36, "feet"),
  41421. default: true
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41427. {
  41428. side: {
  41429. height: math.unit(8, "feet"),
  41430. weight: math.unit(2630, "lb"),
  41431. name: "Side",
  41432. image: {
  41433. source: "./media/characters/torallia/side.svg",
  41434. extra: 2164/2021,
  41435. bottom: 371/2535
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Mortal Interaction",
  41442. height: math.unit(8, "feet")
  41443. },
  41444. {
  41445. name: "Natural",
  41446. height: math.unit(24, "feet"),
  41447. default: true
  41448. },
  41449. {
  41450. name: "Giant",
  41451. height: math.unit(80, "feet")
  41452. },
  41453. {
  41454. name: "Kaiju",
  41455. height: math.unit(240, "feet")
  41456. },
  41457. {
  41458. name: "Macro",
  41459. height: math.unit(800, "feet")
  41460. },
  41461. {
  41462. name: "Macro+",
  41463. height: math.unit(2400, "feet")
  41464. },
  41465. {
  41466. name: "Macro++",
  41467. height: math.unit(8000, "feet")
  41468. },
  41469. {
  41470. name: "City-Crushing",
  41471. height: math.unit(24000, "feet")
  41472. },
  41473. {
  41474. name: "Mountain-Mashing",
  41475. height: math.unit(80000, "feet")
  41476. },
  41477. {
  41478. name: "District Demolisher",
  41479. height: math.unit(240000, "feet")
  41480. },
  41481. {
  41482. name: "Tri-County Terror",
  41483. height: math.unit(800000, "feet")
  41484. },
  41485. {
  41486. name: "State Smasher",
  41487. height: math.unit(2.4e6, "feet")
  41488. },
  41489. {
  41490. name: "Nation Nemesis",
  41491. height: math.unit(8e6, "feet")
  41492. },
  41493. {
  41494. name: "Continent Cracker",
  41495. height: math.unit(2.4e7, "feet")
  41496. },
  41497. {
  41498. name: "Planet-Pillaging",
  41499. height: math.unit(8e7, "feet")
  41500. },
  41501. {
  41502. name: "Earth-Eclipsing",
  41503. height: math.unit(2.4e8, "feet")
  41504. },
  41505. {
  41506. name: "Jovian-Jostling",
  41507. height: math.unit(8e8, "feet")
  41508. },
  41509. {
  41510. name: "Gas Giant Gulper",
  41511. height: math.unit(2.4e9, "feet")
  41512. },
  41513. {
  41514. name: "Astral Annihilator",
  41515. height: math.unit(8e9, "feet")
  41516. },
  41517. {
  41518. name: "Celestial Conqueror",
  41519. height: math.unit(2.4e10, "feet")
  41520. },
  41521. {
  41522. name: "Sol-Swallowing",
  41523. height: math.unit(8e10, "feet")
  41524. },
  41525. {
  41526. name: "Hunter of the Heavens",
  41527. height: math.unit(2.4e13, "feet")
  41528. },
  41529. ]
  41530. ))
  41531. characterMakers.push(() => makeCharacter(
  41532. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41533. {
  41534. front: {
  41535. height: math.unit(10, "feet"),
  41536. weight: math.unit(844, "kilograms"),
  41537. name: "Front",
  41538. image: {
  41539. source: "./media/characters/rebecca-pawlson/front.svg",
  41540. extra: 1196/1099,
  41541. bottom: 81/1277
  41542. },
  41543. extraAttributes: {
  41544. "pawSize": {
  41545. name: "Paw Size",
  41546. power: 2,
  41547. type: "area",
  41548. base: math.unit(0.2 * 0.375, "meters^2")
  41549. },
  41550. "handSize": {
  41551. name: "Hand Size",
  41552. power: 2,
  41553. type: "area",
  41554. base: math.unit(0.2 * 0.35, "meters^2")
  41555. },
  41556. "breastDiameter": {
  41557. name: "Breast Diameter",
  41558. power: 1,
  41559. type: "length",
  41560. base: math.unit(0.5, "meters")
  41561. },
  41562. "breastVolume": {
  41563. name: "Breast Volume",
  41564. power: 3,
  41565. type: "volume",
  41566. base: math.unit(0.065, "m^3")
  41567. },
  41568. "breastMass": {
  41569. name: "Breast Mass",
  41570. power: 3,
  41571. type: "mass",
  41572. base: math.unit(65, "kg")
  41573. },
  41574. "nippleDiameter": {
  41575. name: "Nipple Diameter",
  41576. power: 1,
  41577. type: "length",
  41578. base: math.unit(0.1, "meters")
  41579. },
  41580. }
  41581. },
  41582. back: {
  41583. height: math.unit(10, "feet"),
  41584. weight: math.unit(844, "kilograms"),
  41585. name: "Back",
  41586. image: {
  41587. source: "./media/characters/rebecca-pawlson/back.svg",
  41588. extra: 879/776,
  41589. bottom: 43/922
  41590. },
  41591. extraAttributes: {
  41592. "pawSize": {
  41593. name: "Paw Size",
  41594. power: 2,
  41595. type: "area",
  41596. base: math.unit(0.2 * 0.375, "meters^2")
  41597. },
  41598. "handSize": {
  41599. name: "Hand Size",
  41600. power: 2,
  41601. type: "area",
  41602. base: math.unit(0.2 * 0.35, "meters^2")
  41603. },
  41604. "breastDiameter": {
  41605. name: "Breast Diameter",
  41606. power: 1,
  41607. type: "length",
  41608. base: math.unit(0.5, "meters")
  41609. },
  41610. "breastVolume": {
  41611. name: "Breast Volume",
  41612. power: 3,
  41613. type: "volume",
  41614. base: math.unit(0.065, "m^3")
  41615. },
  41616. "breastMass": {
  41617. name: "Breast Mass",
  41618. power: 3,
  41619. type: "mass",
  41620. base: math.unit(65, "kg")
  41621. },
  41622. "nippleDiameter": {
  41623. name: "Nipple Diameter",
  41624. power: 1,
  41625. type: "length",
  41626. base: math.unit(0.1, "meters")
  41627. },
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Normal",
  41634. height: math.unit(6 + 8/12, "feet")
  41635. },
  41636. {
  41637. name: "Mini Macro",
  41638. height: math.unit(10, "feet"),
  41639. default: true
  41640. },
  41641. {
  41642. name: "Macro",
  41643. height: math.unit(100, "feet")
  41644. },
  41645. {
  41646. name: "Mega Macro",
  41647. height: math.unit(2500, "feet")
  41648. },
  41649. {
  41650. name: "Giga Macro",
  41651. height: math.unit(50, "miles")
  41652. },
  41653. ]
  41654. ))
  41655. characterMakers.push(() => makeCharacter(
  41656. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41657. {
  41658. front: {
  41659. height: math.unit(7 + 6/12, "feet"),
  41660. weight: math.unit(600, "lb"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/moxie-nova/front.svg",
  41664. extra: 1734/1652,
  41665. bottom: 41/1775
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Normal",
  41672. height: math.unit(7 + 6/12, "feet"),
  41673. default: true
  41674. },
  41675. ]
  41676. ))
  41677. characterMakers.push(() => makeCharacter(
  41678. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41679. {
  41680. goat: {
  41681. height: math.unit(4, "feet"),
  41682. weight: math.unit(180, "lb"),
  41683. name: "Goat",
  41684. image: {
  41685. source: "./media/characters/tiffany/goat.svg",
  41686. extra: 1845/1595,
  41687. bottom: 106/1951
  41688. }
  41689. },
  41690. front: {
  41691. height: math.unit(5, "feet"),
  41692. weight: math.unit(150, "lb"),
  41693. name: "Foxcoon",
  41694. image: {
  41695. source: "./media/characters/tiffany/foxcoon.svg",
  41696. extra: 1941/1845,
  41697. bottom: 58/1999
  41698. }
  41699. },
  41700. },
  41701. [
  41702. {
  41703. name: "Normal",
  41704. height: math.unit(5, "feet"),
  41705. default: true
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(8, "feet"),
  41714. weight: math.unit(300, "lb"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/raxinath/front.svg",
  41718. extra: 1407/1309,
  41719. bottom: 39/1446
  41720. }
  41721. },
  41722. back: {
  41723. height: math.unit(8, "feet"),
  41724. weight: math.unit(300, "lb"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/raxinath/back.svg",
  41728. extra: 1405/1315,
  41729. bottom: 9/1414
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Speck",
  41736. height: math.unit(0.5, "nm")
  41737. },
  41738. {
  41739. name: "Micro",
  41740. height: math.unit(3, "inches")
  41741. },
  41742. {
  41743. name: "Kobold",
  41744. height: math.unit(3, "feet")
  41745. },
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(8, "feet"),
  41749. default: true
  41750. },
  41751. {
  41752. name: "Giant",
  41753. height: math.unit(50, "feet")
  41754. },
  41755. {
  41756. name: "Macro",
  41757. height: math.unit(1000, "feet")
  41758. },
  41759. {
  41760. name: "Megamacro",
  41761. height: math.unit(1, "mile")
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(10, "feet"),
  41770. weight: math.unit(1442, "lb"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/mal-dragon/front.svg",
  41774. extra: 1515/1444,
  41775. bottom: 113/1628
  41776. }
  41777. },
  41778. back: {
  41779. height: math.unit(10, "feet"),
  41780. weight: math.unit(1442, "lb"),
  41781. name: "Back",
  41782. image: {
  41783. source: "./media/characters/mal-dragon/back.svg",
  41784. extra: 1527/1434,
  41785. bottom: 25/1552
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Mortal Interaction",
  41792. height: math.unit(10, "feet"),
  41793. default: true
  41794. },
  41795. {
  41796. name: "Large",
  41797. height: math.unit(30, "feet")
  41798. },
  41799. {
  41800. name: "Kaiju",
  41801. height: math.unit(300, "feet")
  41802. },
  41803. {
  41804. name: "Megamacro",
  41805. height: math.unit(10000, "feet")
  41806. },
  41807. {
  41808. name: "Continent Cracker",
  41809. height: math.unit(30000000, "feet")
  41810. },
  41811. {
  41812. name: "Sol-Swallowing",
  41813. height: math.unit(1e11, "feet")
  41814. },
  41815. {
  41816. name: "Light Universal",
  41817. height: math.unit(5, "universes")
  41818. },
  41819. {
  41820. name: "Universe Atoms",
  41821. height: math.unit(1.829e9, "universes")
  41822. },
  41823. {
  41824. name: "Light Multiversal",
  41825. height: math.unit(5, "multiverses")
  41826. },
  41827. {
  41828. name: "Multiverse Atoms",
  41829. height: math.unit(1.829e9, "multiverses")
  41830. },
  41831. {
  41832. name: "Fabric of Time",
  41833. height: math.unit(1e262, "multiverses")
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41839. {
  41840. front: {
  41841. height: math.unit(9, "feet"),
  41842. weight: math.unit(1050, "lb"),
  41843. name: "Front",
  41844. image: {
  41845. source: "./media/characters/tabitha/front.svg",
  41846. extra: 2083/1994,
  41847. bottom: 68/2151
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Baseline",
  41854. height: math.unit(9, "feet"),
  41855. default: true
  41856. },
  41857. {
  41858. name: "Giant",
  41859. height: math.unit(90, "feet")
  41860. },
  41861. {
  41862. name: "Macro",
  41863. height: math.unit(900, "feet")
  41864. },
  41865. {
  41866. name: "Megamacro",
  41867. height: math.unit(9000, "feet")
  41868. },
  41869. {
  41870. name: "City-Crushing",
  41871. height: math.unit(27000, "feet")
  41872. },
  41873. {
  41874. name: "Mountain-Mashing",
  41875. height: math.unit(90000, "feet")
  41876. },
  41877. {
  41878. name: "Nation Nemesis",
  41879. height: math.unit(9e6, "feet")
  41880. },
  41881. {
  41882. name: "Continent Cracker",
  41883. height: math.unit(27e6, "feet")
  41884. },
  41885. {
  41886. name: "Earth-Eclipsing",
  41887. height: math.unit(2.7e8, "feet")
  41888. },
  41889. {
  41890. name: "Gas Giant Gulper",
  41891. height: math.unit(2.7e9, "feet")
  41892. },
  41893. {
  41894. name: "Sol-Swallowing",
  41895. height: math.unit(9e10, "feet")
  41896. },
  41897. {
  41898. name: "Galaxy Gulper",
  41899. height: math.unit(9, "galaxies")
  41900. },
  41901. {
  41902. name: "Cosmos Churner",
  41903. height: math.unit(9, "universes")
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(160, "cm"),
  41912. weight: math.unit(55, "kg"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/tow/front.svg",
  41916. extra: 1751/1722,
  41917. bottom: 74/1825
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Norm",
  41924. height: math.unit(160, "cm")
  41925. },
  41926. {
  41927. name: "Casual",
  41928. height: math.unit(3200, "m"),
  41929. default: true
  41930. },
  41931. {
  41932. name: "Show-Off",
  41933. height: math.unit(160, "km")
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41939. {
  41940. front: {
  41941. height: math.unit(7 + 11/12, "feet"),
  41942. weight: math.unit(342.8, "lb"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/vivian-orca-dragon/front.svg",
  41946. extra: 1890/1865,
  41947. bottom: 28/1918
  41948. }
  41949. },
  41950. },
  41951. [
  41952. {
  41953. name: "Micro",
  41954. height: math.unit(5, "inches")
  41955. },
  41956. {
  41957. name: "Normal",
  41958. height: math.unit(7 + 11/12, "feet"),
  41959. default: true
  41960. },
  41961. {
  41962. name: "Macro",
  41963. height: math.unit(395 + 7/12, "feet")
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41969. {
  41970. side: {
  41971. height: math.unit(10, "feet"),
  41972. weight: math.unit(1442, "lb"),
  41973. name: "Side",
  41974. image: {
  41975. source: "./media/characters/lotherakon/side.svg",
  41976. extra: 1604/1497,
  41977. bottom: 89/1693
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Mortal Interaction",
  41984. height: math.unit(10, "feet")
  41985. },
  41986. {
  41987. name: "Large",
  41988. height: math.unit(30, "feet"),
  41989. default: true
  41990. },
  41991. {
  41992. name: "Giant",
  41993. height: math.unit(100, "feet")
  41994. },
  41995. {
  41996. name: "Kaiju",
  41997. height: math.unit(300, "feet")
  41998. },
  41999. {
  42000. name: "Macro",
  42001. height: math.unit(1000, "feet")
  42002. },
  42003. {
  42004. name: "Macro+",
  42005. height: math.unit(3000, "feet")
  42006. },
  42007. {
  42008. name: "Megamacro",
  42009. height: math.unit(10000, "feet")
  42010. },
  42011. {
  42012. name: "City-Crushing",
  42013. height: math.unit(30000, "feet")
  42014. },
  42015. {
  42016. name: "Continent Cracker",
  42017. height: math.unit(30e6, "feet")
  42018. },
  42019. {
  42020. name: "Earth Eclipsing",
  42021. height: math.unit(3e8, "feet")
  42022. },
  42023. {
  42024. name: "Gas Giant Gulper",
  42025. height: math.unit(3e9, "feet")
  42026. },
  42027. {
  42028. name: "Sol-Swallowing",
  42029. height: math.unit(1e11, "feet")
  42030. },
  42031. {
  42032. name: "System Swallower",
  42033. height: math.unit(3e14, "feet")
  42034. },
  42035. {
  42036. name: "Galaxy Gulper",
  42037. height: math.unit(10, "galaxies")
  42038. },
  42039. {
  42040. name: "Light Universal",
  42041. height: math.unit(5, "universes")
  42042. },
  42043. {
  42044. name: "Universe Palm",
  42045. height: math.unit(20, "universes")
  42046. },
  42047. {
  42048. name: "Light Multiversal",
  42049. height: math.unit(5, "multiverses")
  42050. },
  42051. {
  42052. name: "Multiverse Palm",
  42053. height: math.unit(20, "multiverses")
  42054. },
  42055. {
  42056. name: "Inferno Incarnate",
  42057. height: math.unit(1e7, "multiverses")
  42058. },
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(8, "feet"),
  42066. weight: math.unit(1200, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/malithee/front.svg",
  42070. extra: 1675/1640,
  42071. bottom: 162/1837
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Mortal Interaction",
  42078. height: math.unit(8, "feet"),
  42079. default: true
  42080. },
  42081. {
  42082. name: "Large",
  42083. height: math.unit(24, "feet")
  42084. },
  42085. {
  42086. name: "Kaiju",
  42087. height: math.unit(240, "feet")
  42088. },
  42089. {
  42090. name: "Megamacro",
  42091. height: math.unit(8000, "feet")
  42092. },
  42093. {
  42094. name: "Continent Cracker",
  42095. height: math.unit(24e6, "feet")
  42096. },
  42097. {
  42098. name: "Earth-Eclipsing",
  42099. height: math.unit(2.4e8, "feet")
  42100. },
  42101. {
  42102. name: "Sol-Swallowing",
  42103. height: math.unit(8e10, "feet")
  42104. },
  42105. {
  42106. name: "Galaxy Gulper",
  42107. height: math.unit(8, "galaxies")
  42108. },
  42109. {
  42110. name: "Light Universal",
  42111. height: math.unit(4, "universes")
  42112. },
  42113. {
  42114. name: "Universe Atoms",
  42115. height: math.unit(1.829e9, "universes")
  42116. },
  42117. {
  42118. name: "Light Multiversal",
  42119. height: math.unit(4, "multiverses")
  42120. },
  42121. {
  42122. name: "Multiverse Atoms",
  42123. height: math.unit(1.829e9, "multiverses")
  42124. },
  42125. {
  42126. name: "Nigh-Omnipresence",
  42127. height: math.unit(8e261, "multiverses")
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(10, "feet"),
  42136. weight: math.unit(1500, "lb"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/miles-thestia/front.svg",
  42140. extra: 1812/1727,
  42141. bottom: 86/1898
  42142. }
  42143. },
  42144. back: {
  42145. height: math.unit(10, "feet"),
  42146. weight: math.unit(1500, "lb"),
  42147. name: "Back",
  42148. image: {
  42149. source: "./media/characters/miles-thestia/back.svg",
  42150. extra: 1799/1690,
  42151. bottom: 47/1846
  42152. }
  42153. },
  42154. frontNsfw: {
  42155. height: math.unit(10, "feet"),
  42156. weight: math.unit(1500, "lb"),
  42157. name: "Front (NSFW)",
  42158. image: {
  42159. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42160. extra: 1812/1727,
  42161. bottom: 86/1898
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Mini-Macro",
  42168. height: math.unit(10, "feet"),
  42169. default: true
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(25, "feet"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/titan-s-wulf/front.svg",
  42181. extra: 1560/1484,
  42182. bottom: 76/1636
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Smallest",
  42189. height: math.unit(25, "feet"),
  42190. default: true
  42191. },
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(200, "feet")
  42195. },
  42196. {
  42197. name: "Macro",
  42198. height: math.unit(200000, "feet")
  42199. },
  42200. {
  42201. name: "Multiversal Original",
  42202. height: math.unit(10000, "multiverses")
  42203. },
  42204. ]
  42205. ))
  42206. characterMakers.push(() => makeCharacter(
  42207. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42208. {
  42209. front: {
  42210. height: math.unit(8, "feet"),
  42211. weight: math.unit(553, "lb"),
  42212. name: "Front",
  42213. image: {
  42214. source: "./media/characters/tawendeh/front.svg",
  42215. extra: 2365/2268,
  42216. bottom: 83/2448
  42217. }
  42218. },
  42219. frontClothed: {
  42220. height: math.unit(8, "feet"),
  42221. weight: math.unit(553, "lb"),
  42222. name: "Front (Clothed)",
  42223. image: {
  42224. source: "./media/characters/tawendeh/front-clothed.svg",
  42225. extra: 2365/2268,
  42226. bottom: 83/2448
  42227. }
  42228. },
  42229. back: {
  42230. height: math.unit(8, "feet"),
  42231. weight: math.unit(553, "lb"),
  42232. name: "Back",
  42233. image: {
  42234. source: "./media/characters/tawendeh/back.svg",
  42235. extra: 2397/2294,
  42236. bottom: 42/2439
  42237. }
  42238. },
  42239. },
  42240. [
  42241. {
  42242. name: "Mortal Interaction",
  42243. height: math.unit(8, "feet"),
  42244. default: true
  42245. },
  42246. {
  42247. name: "Giant",
  42248. height: math.unit(80, "feet")
  42249. },
  42250. {
  42251. name: "Macro",
  42252. height: math.unit(800, "feet")
  42253. },
  42254. {
  42255. name: "Megamacro",
  42256. height: math.unit(8000, "feet")
  42257. },
  42258. {
  42259. name: "City-Crushing",
  42260. height: math.unit(24000, "feet")
  42261. },
  42262. {
  42263. name: "Mountain-Mashing",
  42264. height: math.unit(80000, "feet")
  42265. },
  42266. {
  42267. name: "Nation Nemesis",
  42268. height: math.unit(8e6, "feet")
  42269. },
  42270. {
  42271. name: "Continent Cracker",
  42272. height: math.unit(24e6, "feet")
  42273. },
  42274. {
  42275. name: "Earth-Eclipsing",
  42276. height: math.unit(2.4e8, "feet")
  42277. },
  42278. {
  42279. name: "Gas Giant Gulper",
  42280. height: math.unit(2.4e9, "feet")
  42281. },
  42282. {
  42283. name: "Sol-Swallowing",
  42284. height: math.unit(8e10, "feet")
  42285. },
  42286. {
  42287. name: "Galaxy Gulper",
  42288. height: math.unit(8, "galaxies")
  42289. },
  42290. {
  42291. name: "Cosmos Churner",
  42292. height: math.unit(8, "universes")
  42293. },
  42294. {
  42295. name: "Omnipotent Otter",
  42296. height: math.unit(80, "universes")
  42297. },
  42298. ]
  42299. ))
  42300. characterMakers.push(() => makeCharacter(
  42301. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42302. {
  42303. front: {
  42304. height: math.unit(2.6, "meters"),
  42305. weight: math.unit(900, "kg"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/neesha/front.svg",
  42309. extra: 1803/1653,
  42310. bottom: 128/1931
  42311. }
  42312. },
  42313. },
  42314. [
  42315. {
  42316. name: "Normal",
  42317. height: math.unit(2.6, "meters"),
  42318. default: true
  42319. },
  42320. {
  42321. name: "Macro",
  42322. height: math.unit(50, "meters")
  42323. },
  42324. ]
  42325. ))
  42326. characterMakers.push(() => makeCharacter(
  42327. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42328. {
  42329. front: {
  42330. height: math.unit(5, "feet"),
  42331. weight: math.unit(185, "lb"),
  42332. name: "Front",
  42333. image: {
  42334. source: "./media/characters/kyera/front.svg",
  42335. extra: 1875/1790,
  42336. bottom: 96/1971
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(5, "feet"),
  42344. default: true
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(7 + 6/12, "feet"),
  42353. weight: math.unit(540, "lb"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/yuko/front.svg",
  42357. extra: 1282/1222,
  42358. bottom: 101/1383
  42359. }
  42360. },
  42361. frontClothed: {
  42362. height: math.unit(7 + 6/12, "feet"),
  42363. weight: math.unit(540, "lb"),
  42364. name: "Front (Clothed)",
  42365. image: {
  42366. source: "./media/characters/yuko/front-clothed.svg",
  42367. extra: 1282/1222,
  42368. bottom: 101/1383
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(7 + 6/12, "feet"),
  42376. default: true
  42377. },
  42378. {
  42379. name: "Macro",
  42380. height: math.unit(26 + 9/12, "feet")
  42381. },
  42382. {
  42383. name: "Megamacro",
  42384. height: math.unit(300, "feet")
  42385. },
  42386. {
  42387. name: "Gigamacro",
  42388. height: math.unit(5000, "feet")
  42389. },
  42390. {
  42391. name: "Planetary",
  42392. height: math.unit(10000, "miles")
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42398. {
  42399. front: {
  42400. height: math.unit(8 + 2/12, "feet"),
  42401. weight: math.unit(600, "lb"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/deam-nitrel/front.svg",
  42405. extra: 1308/1234,
  42406. bottom: 125/1433
  42407. }
  42408. },
  42409. },
  42410. [
  42411. {
  42412. name: "Normal",
  42413. height: math.unit(8 + 2/12, "feet"),
  42414. default: true
  42415. },
  42416. ]
  42417. ))
  42418. characterMakers.push(() => makeCharacter(
  42419. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42420. {
  42421. front: {
  42422. height: math.unit(6.1, "feet"),
  42423. weight: math.unit(180, "lb"),
  42424. name: "Front",
  42425. image: {
  42426. source: "./media/characters/skyress/front.svg",
  42427. extra: 1045/915,
  42428. bottom: 28/1073
  42429. }
  42430. },
  42431. maw: {
  42432. height: math.unit(1, "feet"),
  42433. name: "Maw",
  42434. image: {
  42435. source: "./media/characters/skyress/maw.svg"
  42436. }
  42437. },
  42438. },
  42439. [
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(6.1, "feet"),
  42443. default: true
  42444. },
  42445. {
  42446. name: "Macro",
  42447. height: math.unit(200, "feet")
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(4 + 2/12, "feet"),
  42456. weight: math.unit(40, "kg"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/amethyst-jones/front.svg",
  42460. extra: 1220/1150,
  42461. bottom: 101/1321
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(4 + 2/12, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42475. {
  42476. front: {
  42477. height: math.unit(1.7, "m"),
  42478. weight: math.unit(135, "lb"),
  42479. name: "Front",
  42480. image: {
  42481. source: "./media/characters/jade/front.svg",
  42482. extra: 1818/1767,
  42483. bottom: 32/1850
  42484. }
  42485. },
  42486. back: {
  42487. height: math.unit(1.7, "m"),
  42488. weight: math.unit(135, "lb"),
  42489. name: "Back",
  42490. image: {
  42491. source: "./media/characters/jade/back.svg",
  42492. extra: 1869/1809,
  42493. bottom: 35/1904
  42494. }
  42495. },
  42496. hand: {
  42497. height: math.unit(0.24, "m"),
  42498. name: "Hand",
  42499. image: {
  42500. source: "./media/characters/jade/hand.svg"
  42501. }
  42502. },
  42503. foot: {
  42504. height: math.unit(0.263, "m"),
  42505. name: "Foot",
  42506. image: {
  42507. source: "./media/characters/jade/foot.svg"
  42508. }
  42509. },
  42510. dick: {
  42511. height: math.unit(0.47, "m"),
  42512. name: "Dick",
  42513. image: {
  42514. source: "./media/characters/jade/dick.svg"
  42515. }
  42516. },
  42517. },
  42518. [
  42519. {
  42520. name: "Micro",
  42521. height: math.unit(22, "cm")
  42522. },
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(1.7, "m"),
  42526. default: true
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(152, "m")
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(100, "miles"),
  42539. weight: math.unit(20000, "tons"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/cookie/front.svg",
  42543. extra: 1125/1070,
  42544. bottom: 30/1155
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Big",
  42551. height: math.unit(50, "feet")
  42552. },
  42553. {
  42554. name: "Macro",
  42555. height: math.unit(100, "miles"),
  42556. default: true
  42557. },
  42558. {
  42559. name: "Megamacro",
  42560. height: math.unit(90000, "miles")
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(6, "feet"),
  42569. weight: math.unit(145, "lb"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/farzian/front.svg",
  42573. extra: 1902/1693,
  42574. bottom: 108/2010
  42575. }
  42576. },
  42577. },
  42578. [
  42579. {
  42580. name: "Macro",
  42581. height: math.unit(500, "feet"),
  42582. default: true
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(3 + 6/12, "feet"),
  42591. weight: math.unit(50, "lb"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/kimberly-tilson/front.svg",
  42595. extra: 1400/1322,
  42596. bottom: 36/1436
  42597. }
  42598. },
  42599. back: {
  42600. height: math.unit(3 + 6/12, "feet"),
  42601. weight: math.unit(50, "lb"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/kimberly-tilson/back.svg",
  42605. extra: 1370/1307,
  42606. bottom: 20/1390
  42607. }
  42608. },
  42609. },
  42610. [
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(3 + 6/12, "feet"),
  42614. default: true
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(350, "meters"),
  42623. weight: math.unit(7.57059e+8, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/harthos/front.svg",
  42627. extra: 455/446,
  42628. bottom: 15/470
  42629. },
  42630. form: "peacekeeper",
  42631. default: true
  42632. },
  42633. allusus_front: {
  42634. height: math.unit(270, "meters"),
  42635. weight: math.unit(3.47550e+8, "lb"),
  42636. name: "Front",
  42637. image: {
  42638. source: "./media/characters/harthos/allusus-front.svg",
  42639. extra: 455/446,
  42640. bottom: 15/470
  42641. },
  42642. form: "allusus",
  42643. },
  42644. },
  42645. [
  42646. {
  42647. name: "Macro",
  42648. height: math.unit(350, "meters"),
  42649. default: true,
  42650. form: "peacekeeper"
  42651. },
  42652. {
  42653. name: "Macro",
  42654. height: math.unit(270, "meters"),
  42655. default: true,
  42656. form: "allusus"
  42657. },
  42658. ],
  42659. {
  42660. "peacekeeper": {
  42661. name: "Peacekeeper",
  42662. default: true
  42663. },
  42664. "allusus": {
  42665. name: "Allusus",
  42666. },
  42667. }
  42668. ))
  42669. characterMakers.push(() => makeCharacter(
  42670. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42671. {
  42672. front: {
  42673. height: math.unit(15, "feet"),
  42674. name: "Front",
  42675. image: {
  42676. source: "./media/characters/hypatia/front.svg",
  42677. extra: 1653/1591,
  42678. bottom: 79/1732
  42679. }
  42680. },
  42681. },
  42682. [
  42683. {
  42684. name: "Normal",
  42685. height: math.unit(15, "feet")
  42686. },
  42687. {
  42688. name: "Small",
  42689. height: math.unit(300, "feet")
  42690. },
  42691. {
  42692. name: "Macro",
  42693. height: math.unit(2500, "feet"),
  42694. default: true
  42695. },
  42696. {
  42697. name: "Mega Macro",
  42698. height: math.unit(1500, "miles")
  42699. },
  42700. {
  42701. name: "Giga Macro",
  42702. height: math.unit(1.5e6, "miles")
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(6, "feet"),
  42711. weight: math.unit(200, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/wulver/front.svg",
  42715. extra: 1724/1632,
  42716. bottom: 130/1854
  42717. }
  42718. },
  42719. frontNsfw: {
  42720. height: math.unit(6, "feet"),
  42721. weight: math.unit(200, "lb"),
  42722. name: "Front (NSFW)",
  42723. image: {
  42724. source: "./media/characters/wulver/front-nsfw.svg",
  42725. extra: 1724/1632,
  42726. bottom: 130/1854
  42727. }
  42728. },
  42729. },
  42730. [
  42731. {
  42732. name: "Human-Sized",
  42733. height: math.unit(6, "feet")
  42734. },
  42735. {
  42736. name: "Normal",
  42737. height: math.unit(4, "meters"),
  42738. default: true
  42739. },
  42740. {
  42741. name: "Large",
  42742. height: math.unit(6, "m")
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42748. {
  42749. front: {
  42750. height: math.unit(7, "feet"),
  42751. name: "Front",
  42752. image: {
  42753. source: "./media/characters/maru/front.svg",
  42754. extra: 1595/1570,
  42755. bottom: 0/1595
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Normal",
  42762. height: math.unit(7, "feet"),
  42763. default: true
  42764. },
  42765. {
  42766. name: "Macro",
  42767. height: math.unit(700, "feet")
  42768. },
  42769. {
  42770. name: "Mega Macro",
  42771. height: math.unit(25, "miles")
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(6, "feet"),
  42780. weight: math.unit(170, "lb"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/xenon/front.svg",
  42784. extra: 1376/1305,
  42785. bottom: 56/1432
  42786. }
  42787. },
  42788. back: {
  42789. height: math.unit(6, "feet"),
  42790. weight: math.unit(170, "lb"),
  42791. name: "Back",
  42792. image: {
  42793. source: "./media/characters/xenon/back.svg",
  42794. extra: 1328/1259,
  42795. bottom: 95/1423
  42796. }
  42797. },
  42798. maw: {
  42799. height: math.unit(0.52, "feet"),
  42800. name: "Maw",
  42801. image: {
  42802. source: "./media/characters/xenon/maw.svg"
  42803. }
  42804. },
  42805. handLeft: {
  42806. height: math.unit(0.82 * 169 / 153, "feet"),
  42807. name: "Hand (Left)",
  42808. image: {
  42809. source: "./media/characters/xenon/hand-left.svg"
  42810. }
  42811. },
  42812. handRight: {
  42813. height: math.unit(0.82, "feet"),
  42814. name: "Hand (Right)",
  42815. image: {
  42816. source: "./media/characters/xenon/hand-right.svg"
  42817. }
  42818. },
  42819. footLeft: {
  42820. height: math.unit(1.13, "feet"),
  42821. name: "Foot (Left)",
  42822. image: {
  42823. source: "./media/characters/xenon/foot-left.svg"
  42824. }
  42825. },
  42826. footRight: {
  42827. height: math.unit(1.13 * 194 / 196, "feet"),
  42828. name: "Foot (Right)",
  42829. image: {
  42830. source: "./media/characters/xenon/foot-right.svg"
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Micro",
  42837. height: math.unit(0.8, "inches")
  42838. },
  42839. {
  42840. name: "Normal",
  42841. height: math.unit(6, "feet")
  42842. },
  42843. {
  42844. name: "Macro",
  42845. height: math.unit(50, "feet"),
  42846. default: true
  42847. },
  42848. {
  42849. name: "Macro+",
  42850. height: math.unit(250, "feet")
  42851. },
  42852. {
  42853. name: "Megamacro",
  42854. height: math.unit(1500, "feet")
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(7 + 5/12, "feet"),
  42863. name: "Front",
  42864. image: {
  42865. source: "./media/characters/zane/front.svg",
  42866. extra: 1260/1203,
  42867. bottom: 94/1354
  42868. }
  42869. },
  42870. back: {
  42871. height: math.unit(5.05, "feet"),
  42872. name: "Back",
  42873. image: {
  42874. source: "./media/characters/zane/back.svg",
  42875. extra: 893/829,
  42876. bottom: 30/923
  42877. }
  42878. },
  42879. werewolf: {
  42880. height: math.unit(11, "feet"),
  42881. name: "Werewolf",
  42882. image: {
  42883. source: "./media/characters/zane/werewolf.svg",
  42884. extra: 1383/1323,
  42885. bottom: 89/1472
  42886. }
  42887. },
  42888. foot: {
  42889. height: math.unit(1.46, "feet"),
  42890. name: "Foot",
  42891. image: {
  42892. source: "./media/characters/zane/foot.svg"
  42893. }
  42894. },
  42895. footFront: {
  42896. height: math.unit(0.784, "feet"),
  42897. name: "Foot (Front)",
  42898. image: {
  42899. source: "./media/characters/zane/foot-front.svg"
  42900. }
  42901. },
  42902. dick: {
  42903. height: math.unit(1.95, "feet"),
  42904. name: "Dick",
  42905. image: {
  42906. source: "./media/characters/zane/dick.svg"
  42907. }
  42908. },
  42909. dickWerewolf: {
  42910. height: math.unit(3.77, "feet"),
  42911. name: "Dick (Werewolf)",
  42912. image: {
  42913. source: "./media/characters/zane/dick.svg"
  42914. }
  42915. },
  42916. },
  42917. [
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(7 + 5/12, "feet"),
  42921. default: true
  42922. },
  42923. ]
  42924. ))
  42925. characterMakers.push(() => makeCharacter(
  42926. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42927. {
  42928. front: {
  42929. height: math.unit(6 + 2/12, "feet"),
  42930. weight: math.unit(284, "lb"),
  42931. name: "Front",
  42932. image: {
  42933. source: "./media/characters/benni-desparque/front.svg",
  42934. extra: 1353/1126,
  42935. bottom: 69/1422
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Civilian",
  42942. height: math.unit(6 + 2/12, "feet")
  42943. },
  42944. {
  42945. name: "Normal",
  42946. height: math.unit(98, "feet"),
  42947. default: true
  42948. },
  42949. {
  42950. name: "Kaiju Fighter",
  42951. height: math.unit(268, "feet")
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(5, "feet"),
  42960. weight: math.unit(105, "lb"),
  42961. name: "Front",
  42962. image: {
  42963. source: "./media/characters/maxine/front.svg",
  42964. extra: 1386/1250,
  42965. bottom: 71/1457
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(5, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(11 + 7/12, "feet"),
  42982. weight: math.unit(9576, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/scaly/front.svg",
  42986. extra: 888/867,
  42987. bottom: 36/924
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(11 + 7/12, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43001. {
  43002. front: {
  43003. height: math.unit(6 + 3/12, "feet"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/saelria/front.svg",
  43007. extra: 1243/1138,
  43008. bottom: 46/1289
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Micro",
  43015. height: math.unit(6, "inches"),
  43016. },
  43017. {
  43018. name: "Normal",
  43019. height: math.unit(6 + 3/12, "feet"),
  43020. default: true
  43021. },
  43022. {
  43023. name: "Macro",
  43024. height: math.unit(25, "feet")
  43025. },
  43026. ]
  43027. ))
  43028. characterMakers.push(() => makeCharacter(
  43029. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43030. {
  43031. front: {
  43032. height: math.unit(80, "meters"),
  43033. weight: math.unit(7000, "tonnes"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/tef/front.svg",
  43037. extra: 2036/1991,
  43038. bottom: 54/2090
  43039. }
  43040. },
  43041. back: {
  43042. height: math.unit(80, "meters"),
  43043. weight: math.unit(7000, "tonnes"),
  43044. name: "Back",
  43045. image: {
  43046. source: "./media/characters/tef/back.svg",
  43047. extra: 2036/1991,
  43048. bottom: 54/2090
  43049. }
  43050. },
  43051. },
  43052. [
  43053. {
  43054. name: "Macro",
  43055. height: math.unit(80, "meters"),
  43056. default: true
  43057. },
  43058. ]
  43059. ))
  43060. characterMakers.push(() => makeCharacter(
  43061. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43062. {
  43063. front: {
  43064. height: math.unit(13, "feet"),
  43065. weight: math.unit(6, "tons"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/rover/front.svg",
  43069. extra: 1233/1156,
  43070. bottom: 50/1283
  43071. }
  43072. },
  43073. back: {
  43074. height: math.unit(13, "feet"),
  43075. weight: math.unit(6, "tons"),
  43076. name: "Back",
  43077. image: {
  43078. source: "./media/characters/rover/back.svg",
  43079. extra: 1327/1258,
  43080. bottom: 39/1366
  43081. }
  43082. },
  43083. },
  43084. [
  43085. {
  43086. name: "Normal",
  43087. height: math.unit(13, "feet"),
  43088. default: true
  43089. },
  43090. {
  43091. name: "Macro",
  43092. height: math.unit(1300, "feet")
  43093. },
  43094. {
  43095. name: "Megamacro",
  43096. height: math.unit(1300, "miles")
  43097. },
  43098. {
  43099. name: "Gigamacro",
  43100. height: math.unit(1300000, "miles")
  43101. },
  43102. ]
  43103. ))
  43104. characterMakers.push(() => makeCharacter(
  43105. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43106. {
  43107. front: {
  43108. height: math.unit(10, "feet"),
  43109. weight: math.unit(500, "lb"),
  43110. name: "Front",
  43111. image: {
  43112. source: "./media/characters/ariz/front.svg",
  43113. extra: 461/450,
  43114. bottom: 16/477
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "MiniMacro",
  43121. height: math.unit(10, "feet"),
  43122. default: true
  43123. },
  43124. ]
  43125. ))
  43126. characterMakers.push(() => makeCharacter(
  43127. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43128. {
  43129. front: {
  43130. height: math.unit(6, "feet"),
  43131. weight: math.unit(140, "lb"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/sigrun/front.svg",
  43135. extra: 1418/1359,
  43136. bottom: 27/1445
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Macro",
  43143. height: math.unit(35, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(6, "feet"),
  43153. weight: math.unit(150, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/numin/front.svg",
  43157. extra: 1433/1388,
  43158. bottom: 12/1445
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Macro",
  43165. height: math.unit(21.5, "km"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43172. {
  43173. front: {
  43174. height: math.unit(6, "feet"),
  43175. weight: math.unit(463, "lb"),
  43176. name: "Front",
  43177. image: {
  43178. source: "./media/characters/melwa/front.svg",
  43179. extra: 1307/1248,
  43180. bottom: 93/1400
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Macro",
  43187. height: math.unit(50, "meters"),
  43188. default: true
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(325, "feet"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/zorkaiju/front.svg",
  43200. extra: 1955/1814,
  43201. bottom: 40/1995
  43202. }
  43203. },
  43204. frontExtended: {
  43205. height: math.unit(325, "feet"),
  43206. name: "Front (Extended)",
  43207. image: {
  43208. source: "./media/characters/zorkaiju/front-extended.svg",
  43209. extra: 1955/1814,
  43210. bottom: 40/1995
  43211. }
  43212. },
  43213. side: {
  43214. height: math.unit(325, "feet"),
  43215. name: "Side",
  43216. image: {
  43217. source: "./media/characters/zorkaiju/side.svg",
  43218. extra: 1495/1396,
  43219. bottom: 17/1512
  43220. }
  43221. },
  43222. sideExtended: {
  43223. height: math.unit(325, "feet"),
  43224. name: "Side (Extended)",
  43225. image: {
  43226. source: "./media/characters/zorkaiju/side-extended.svg",
  43227. extra: 1495/1396,
  43228. bottom: 17/1512
  43229. }
  43230. },
  43231. back: {
  43232. height: math.unit(325, "feet"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/zorkaiju/back.svg",
  43236. extra: 1959/1821,
  43237. bottom: 31/1990
  43238. }
  43239. },
  43240. backExtended: {
  43241. height: math.unit(325, "feet"),
  43242. name: "Back (Extended)",
  43243. image: {
  43244. source: "./media/characters/zorkaiju/back-extended.svg",
  43245. extra: 1959/1821,
  43246. bottom: 31/1990
  43247. }
  43248. },
  43249. hand: {
  43250. height: math.unit(58.4, "feet"),
  43251. name: "Hand",
  43252. image: {
  43253. source: "./media/characters/zorkaiju/hand.svg"
  43254. }
  43255. },
  43256. handExtended: {
  43257. height: math.unit(61.4, "feet"),
  43258. name: "Hand (Extended)",
  43259. image: {
  43260. source: "./media/characters/zorkaiju/hand-extended.svg"
  43261. }
  43262. },
  43263. foot: {
  43264. height: math.unit(95, "feet"),
  43265. name: "Foot",
  43266. image: {
  43267. source: "./media/characters/zorkaiju/foot.svg"
  43268. }
  43269. },
  43270. leftArm: {
  43271. height: math.unit(59, "feet"),
  43272. name: "Left Arm",
  43273. image: {
  43274. source: "./media/characters/zorkaiju/left-arm.svg"
  43275. }
  43276. },
  43277. rightArm: {
  43278. height: math.unit(59, "feet"),
  43279. name: "Right Arm",
  43280. image: {
  43281. source: "./media/characters/zorkaiju/right-arm.svg"
  43282. }
  43283. },
  43284. leftArmExtended: {
  43285. height: math.unit(59 * 1.033546, "feet"),
  43286. name: "Left Arm (Extended)",
  43287. image: {
  43288. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43289. }
  43290. },
  43291. rightArmExtended: {
  43292. height: math.unit(59 * 1.0496, "feet"),
  43293. name: "Right Arm (Extended)",
  43294. image: {
  43295. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43296. }
  43297. },
  43298. tail: {
  43299. height: math.unit(104, "feet"),
  43300. name: "Tail",
  43301. image: {
  43302. source: "./media/characters/zorkaiju/tail.svg"
  43303. }
  43304. },
  43305. tailExtended: {
  43306. height: math.unit(104, "feet"),
  43307. name: "Tail (Extended)",
  43308. image: {
  43309. source: "./media/characters/zorkaiju/tail-extended.svg"
  43310. }
  43311. },
  43312. tailBottom: {
  43313. height: math.unit(104, "feet"),
  43314. name: "Tail Bottom",
  43315. image: {
  43316. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43317. }
  43318. },
  43319. crystal: {
  43320. height: math.unit(27.54, "feet"),
  43321. name: "Crystal",
  43322. image: {
  43323. source: "./media/characters/zorkaiju/crystal.svg"
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Kaiju",
  43330. height: math.unit(325, "feet"),
  43331. default: true
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43337. {
  43338. front: {
  43339. height: math.unit(6 + 1/12, "feet"),
  43340. weight: math.unit(115, "lb"),
  43341. name: "Front",
  43342. image: {
  43343. source: "./media/characters/bailey-belfry/front.svg",
  43344. extra: 1240/1121,
  43345. bottom: 101/1341
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(6 + 1/12, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43359. {
  43360. side: {
  43361. height: math.unit(4, "meters"),
  43362. weight: math.unit(250, "kg"),
  43363. name: "Side",
  43364. image: {
  43365. source: "./media/characters/blacky/side.svg",
  43366. extra: 1027/919,
  43367. bottom: 43/1070
  43368. }
  43369. },
  43370. maw: {
  43371. height: math.unit(1, "meters"),
  43372. name: "Maw",
  43373. image: {
  43374. source: "./media/characters/blacky/maw.svg"
  43375. }
  43376. },
  43377. paw: {
  43378. height: math.unit(1, "meters"),
  43379. name: "Paw",
  43380. image: {
  43381. source: "./media/characters/blacky/paw.svg"
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(4, "meters"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(170, "cm"),
  43398. weight: math.unit(66, "kg"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/thux-ei/front.svg",
  43402. extra: 1109/1011,
  43403. bottom: 8/1117
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(170, "cm"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(5, "feet"),
  43420. weight: math.unit(120, "lb"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/roxanne-voltaire/front.svg",
  43424. extra: 1901/1779,
  43425. bottom: 53/1954
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(5, "feet"),
  43433. default: true
  43434. },
  43435. {
  43436. name: "Giant",
  43437. height: math.unit(50, "feet")
  43438. },
  43439. {
  43440. name: "Titan",
  43441. height: math.unit(500, "feet")
  43442. },
  43443. {
  43444. name: "Macro",
  43445. height: math.unit(5000, "feet")
  43446. },
  43447. {
  43448. name: "Megamacro",
  43449. height: math.unit(50000, "feet")
  43450. },
  43451. {
  43452. name: "Gigamacro",
  43453. height: math.unit(500000, "feet")
  43454. },
  43455. {
  43456. name: "Teramacro",
  43457. height: math.unit(5e6, "feet")
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(6 + 2/12, "feet"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/squeaks/front.svg",
  43469. extra: 1823/1768,
  43470. bottom: 138/1961
  43471. }
  43472. },
  43473. },
  43474. [
  43475. {
  43476. name: "Micro",
  43477. height: math.unit(0.5, "inches")
  43478. },
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(6 + 2/12, "feet"),
  43482. default: true
  43483. },
  43484. {
  43485. name: "Macro",
  43486. height: math.unit(600, "feet")
  43487. },
  43488. ]
  43489. ))
  43490. characterMakers.push(() => makeCharacter(
  43491. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43492. {
  43493. front: {
  43494. height: math.unit(1.72, "meters"),
  43495. name: "Front",
  43496. image: {
  43497. source: "./media/characters/archinger/front.svg",
  43498. extra: 1861/1675,
  43499. bottom: 125/1986
  43500. }
  43501. },
  43502. back: {
  43503. height: math.unit(1.72, "meters"),
  43504. name: "Back",
  43505. image: {
  43506. source: "./media/characters/archinger/back.svg",
  43507. extra: 1844/1701,
  43508. bottom: 104/1948
  43509. }
  43510. },
  43511. cock: {
  43512. height: math.unit(0.59, "feet"),
  43513. name: "Cock",
  43514. image: {
  43515. source: "./media/characters/archinger/cock.svg"
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(1.72, "meters"),
  43523. default: true
  43524. },
  43525. {
  43526. name: "Macro",
  43527. height: math.unit(84, "meters")
  43528. },
  43529. {
  43530. name: "Macro+",
  43531. height: math.unit(112, "meters")
  43532. },
  43533. {
  43534. name: "Macro++",
  43535. height: math.unit(960, "meters")
  43536. },
  43537. {
  43538. name: "Macro+++",
  43539. height: math.unit(4, "km")
  43540. },
  43541. {
  43542. name: "Macro++++",
  43543. height: math.unit(48, "km")
  43544. },
  43545. {
  43546. name: "Macro+++++",
  43547. height: math.unit(4500, "km")
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(5 + 5/12, "feet"),
  43556. name: "Front",
  43557. image: {
  43558. source: "./media/characters/alsnapz/front.svg",
  43559. extra: 1157/1065,
  43560. bottom: 42/1199
  43561. }
  43562. },
  43563. },
  43564. [
  43565. {
  43566. name: "Normal",
  43567. height: math.unit(5 + 5/12, "feet"),
  43568. default: true
  43569. },
  43570. ]
  43571. ))
  43572. characterMakers.push(() => makeCharacter(
  43573. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43574. {
  43575. side: {
  43576. height: math.unit(3.2, "earths"),
  43577. name: "Side",
  43578. image: {
  43579. source: "./media/characters/mag/side.svg",
  43580. extra: 1331/1008,
  43581. bottom: 52/1383
  43582. }
  43583. },
  43584. wing: {
  43585. height: math.unit(1.94, "earths"),
  43586. name: "Wing",
  43587. image: {
  43588. source: "./media/characters/mag/wing.svg"
  43589. }
  43590. },
  43591. dick: {
  43592. height: math.unit(1.8, "earths"),
  43593. name: "Dick",
  43594. image: {
  43595. source: "./media/characters/mag/dick.svg"
  43596. }
  43597. },
  43598. ass: {
  43599. height: math.unit(1.33, "earths"),
  43600. name: "Ass",
  43601. image: {
  43602. source: "./media/characters/mag/ass.svg"
  43603. }
  43604. },
  43605. head: {
  43606. height: math.unit(1.1, "earths"),
  43607. name: "Head",
  43608. image: {
  43609. source: "./media/characters/mag/head.svg"
  43610. }
  43611. },
  43612. maw: {
  43613. height: math.unit(1.62, "earths"),
  43614. name: "Maw",
  43615. image: {
  43616. source: "./media/characters/mag/maw.svg"
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Small",
  43623. height: math.unit(162, "feet")
  43624. },
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(3.2, "earths"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(512, "feet"),
  43637. weight: math.unit(63509, "tonnes"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/vorrel-harroc/front.svg",
  43641. extra: 1075/1063,
  43642. bottom: 62/1137
  43643. }
  43644. },
  43645. },
  43646. [
  43647. {
  43648. name: "Normal",
  43649. height: math.unit(10, "feet")
  43650. },
  43651. {
  43652. name: "Macro",
  43653. height: math.unit(512, "feet"),
  43654. default: true
  43655. },
  43656. {
  43657. name: "Megamacro",
  43658. height: math.unit(256, "miles")
  43659. },
  43660. {
  43661. name: "Gigamacro",
  43662. height: math.unit(4096, "miles")
  43663. },
  43664. ]
  43665. ))
  43666. characterMakers.push(() => makeCharacter(
  43667. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43668. {
  43669. side: {
  43670. height: math.unit(50, "feet"),
  43671. name: "Side",
  43672. image: {
  43673. source: "./media/characters/froimar/side.svg",
  43674. extra: 855/638,
  43675. bottom: 99/954
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Macro",
  43682. height: math.unit(50, "feet"),
  43683. default: true
  43684. },
  43685. ]
  43686. ))
  43687. characterMakers.push(() => makeCharacter(
  43688. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43689. {
  43690. front: {
  43691. height: math.unit(210, "miles"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/timothy/front.svg",
  43695. extra: 1007/943,
  43696. bottom: 62/1069
  43697. }
  43698. },
  43699. frontSkirt: {
  43700. height: math.unit(210, "miles"),
  43701. name: "Front (Skirt)",
  43702. image: {
  43703. source: "./media/characters/timothy/front-skirt.svg",
  43704. extra: 1007/943,
  43705. bottom: 62/1069
  43706. }
  43707. },
  43708. frontCoat: {
  43709. height: math.unit(210, "miles"),
  43710. name: "Front (Coat)",
  43711. image: {
  43712. source: "./media/characters/timothy/front-coat.svg",
  43713. extra: 1007/943,
  43714. bottom: 62/1069
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Macro",
  43721. height: math.unit(210, "miles"),
  43722. default: true
  43723. },
  43724. {
  43725. name: "Megamacro",
  43726. height: math.unit(210000, "miles")
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(188, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/pyotr/front.svg",
  43738. extra: 1912/1826,
  43739. bottom: 18/1930
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Macro",
  43746. height: math.unit(188, "feet"),
  43747. default: true
  43748. },
  43749. {
  43750. name: "Megamacro",
  43751. height: math.unit(8, "miles")
  43752. },
  43753. ]
  43754. ))
  43755. characterMakers.push(() => makeCharacter(
  43756. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43757. {
  43758. side: {
  43759. height: math.unit(10, "feet"),
  43760. weight: math.unit(4500, "lb"),
  43761. name: "Side",
  43762. image: {
  43763. source: "./media/characters/ackart/side.svg",
  43764. extra: 1776/1668,
  43765. bottom: 116/1892
  43766. }
  43767. },
  43768. },
  43769. [
  43770. {
  43771. name: "Normal",
  43772. height: math.unit(10, "feet"),
  43773. default: true
  43774. },
  43775. ]
  43776. ))
  43777. characterMakers.push(() => makeCharacter(
  43778. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43779. {
  43780. side: {
  43781. height: math.unit(21, "feet"),
  43782. name: "Side",
  43783. image: {
  43784. source: "./media/characters/nolow/side.svg",
  43785. extra: 1484/1434,
  43786. bottom: 85/1569
  43787. }
  43788. },
  43789. sideErect: {
  43790. height: math.unit(21, "feet"),
  43791. name: "Side-erect",
  43792. image: {
  43793. source: "./media/characters/nolow/side-erect.svg",
  43794. extra: 1484/1434,
  43795. bottom: 85/1569
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Regular",
  43802. height: math.unit(12, "feet")
  43803. },
  43804. {
  43805. name: "Big Chee",
  43806. height: math.unit(21, "feet"),
  43807. default: true
  43808. },
  43809. ]
  43810. ))
  43811. characterMakers.push(() => makeCharacter(
  43812. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43813. {
  43814. front: {
  43815. height: math.unit(7, "feet"),
  43816. weight: math.unit(250, "lb"),
  43817. name: "Front",
  43818. image: {
  43819. source: "./media/characters/nines/front.svg",
  43820. extra: 1741/1607,
  43821. bottom: 41/1782
  43822. }
  43823. },
  43824. side: {
  43825. height: math.unit(7, "feet"),
  43826. weight: math.unit(250, "lb"),
  43827. name: "Side",
  43828. image: {
  43829. source: "./media/characters/nines/side.svg",
  43830. extra: 1854/1735,
  43831. bottom: 93/1947
  43832. }
  43833. },
  43834. back: {
  43835. height: math.unit(7, "feet"),
  43836. weight: math.unit(250, "lb"),
  43837. name: "Back",
  43838. image: {
  43839. source: "./media/characters/nines/back.svg",
  43840. extra: 1748/1615,
  43841. bottom: 20/1768
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Megamacro",
  43848. height: math.unit(99, "km"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43855. {
  43856. front: {
  43857. height: math.unit(5 + 10/12, "feet"),
  43858. weight: math.unit(210, "lb"),
  43859. name: "Front",
  43860. image: {
  43861. source: "./media/characters/zenith/front.svg",
  43862. extra: 1531/1452,
  43863. bottom: 198/1729
  43864. }
  43865. },
  43866. back: {
  43867. height: math.unit(5 + 10/12, "feet"),
  43868. weight: math.unit(210, "lb"),
  43869. name: "Back",
  43870. image: {
  43871. source: "./media/characters/zenith/back.svg",
  43872. extra: 1571/1487,
  43873. bottom: 75/1646
  43874. }
  43875. },
  43876. },
  43877. [
  43878. {
  43879. name: "Normal",
  43880. height: math.unit(5 + 10/12, "feet"),
  43881. default: true
  43882. }
  43883. ]
  43884. ))
  43885. characterMakers.push(() => makeCharacter(
  43886. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43887. {
  43888. front: {
  43889. height: math.unit(4, "feet"),
  43890. weight: math.unit(60, "lb"),
  43891. name: "Front",
  43892. image: {
  43893. source: "./media/characters/jasper/front.svg",
  43894. extra: 1450/1379,
  43895. bottom: 19/1469
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Normal",
  43902. height: math.unit(4, "feet"),
  43903. default: true
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(6 + 5/12, "feet"),
  43912. weight: math.unit(290, "lb"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/tiberius-thyben/front.svg",
  43916. extra: 757/739,
  43917. bottom: 39/796
  43918. }
  43919. },
  43920. },
  43921. [
  43922. {
  43923. name: "Micro",
  43924. height: math.unit(1.5, "inches")
  43925. },
  43926. {
  43927. name: "Normal",
  43928. height: math.unit(6 + 5/12, "feet"),
  43929. default: true
  43930. },
  43931. {
  43932. name: "Macro",
  43933. height: math.unit(300, "feet")
  43934. },
  43935. ]
  43936. ))
  43937. characterMakers.push(() => makeCharacter(
  43938. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43939. {
  43940. front: {
  43941. height: math.unit(5 + 6/12, "feet"),
  43942. weight: math.unit(60, "kg"),
  43943. name: "Front",
  43944. image: {
  43945. source: "./media/characters/sabre/front.svg",
  43946. extra: 738/671,
  43947. bottom: 27/765
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Teeny",
  43954. height: math.unit(2, "inches")
  43955. },
  43956. {
  43957. name: "Smol",
  43958. height: math.unit(8, "inches")
  43959. },
  43960. {
  43961. name: "Normal",
  43962. height: math.unit(5 + 6/12, "feet"),
  43963. default: true
  43964. },
  43965. {
  43966. name: "Mini-Macro",
  43967. height: math.unit(15, "feet")
  43968. },
  43969. {
  43970. name: "Macro",
  43971. height: math.unit(50, "feet")
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43977. {
  43978. front: {
  43979. height: math.unit(6 + 4/12, "feet"),
  43980. weight: math.unit(170, "lb"),
  43981. name: "Front",
  43982. image: {
  43983. source: "./media/characters/charlie/front.svg",
  43984. extra: 1348/1228,
  43985. bottom: 15/1363
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Macro",
  43992. height: math.unit(1700, "meters"),
  43993. default: true
  43994. },
  43995. {
  43996. name: "MegaMacro",
  43997. height: math.unit(20400, "meters")
  43998. },
  43999. ]
  44000. ))
  44001. characterMakers.push(() => makeCharacter(
  44002. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44003. {
  44004. front: {
  44005. height: math.unit(1.96, "meters"),
  44006. weight: math.unit(220, "lb"),
  44007. name: "Front",
  44008. image: {
  44009. source: "./media/characters/susan-grant/front.svg",
  44010. extra: 482/478,
  44011. bottom: 7/489
  44012. }
  44013. },
  44014. },
  44015. [
  44016. {
  44017. name: "Normal",
  44018. height: math.unit(1.96, "meters"),
  44019. default: true
  44020. },
  44021. {
  44022. name: "Macro",
  44023. height: math.unit(76.2, "meters")
  44024. },
  44025. {
  44026. name: "MegaMacro",
  44027. height: math.unit(305, "meters")
  44028. },
  44029. {
  44030. name: "GigaMacro",
  44031. height: math.unit(1220, "meters")
  44032. },
  44033. {
  44034. name: "SuperMacro",
  44035. height: math.unit(4878, "meters")
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44041. {
  44042. front: {
  44043. height: math.unit(5 + 4/12, "feet"),
  44044. weight: math.unit(110, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/axel-isanov/front.svg",
  44048. extra: 1096/1065,
  44049. bottom: 13/1109
  44050. }
  44051. },
  44052. },
  44053. [
  44054. {
  44055. name: "Normal",
  44056. height: math.unit(5 + 4/12, "feet"),
  44057. default: true
  44058. },
  44059. ]
  44060. ))
  44061. characterMakers.push(() => makeCharacter(
  44062. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44063. {
  44064. front: {
  44065. height: math.unit(9, "feet"),
  44066. weight: math.unit(467, "lb"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/necahual/front.svg",
  44070. extra: 920/873,
  44071. bottom: 26/946
  44072. }
  44073. },
  44074. back: {
  44075. height: math.unit(9, "feet"),
  44076. weight: math.unit(467, "lb"),
  44077. name: "Back",
  44078. image: {
  44079. source: "./media/characters/necahual/back.svg",
  44080. extra: 930/884,
  44081. bottom: 16/946
  44082. }
  44083. },
  44084. frontUnderwear: {
  44085. height: math.unit(9, "feet"),
  44086. weight: math.unit(467, "lb"),
  44087. name: "Front (Underwear)",
  44088. image: {
  44089. source: "./media/characters/necahual/front-underwear.svg",
  44090. extra: 920/873,
  44091. bottom: 26/946
  44092. }
  44093. },
  44094. frontDressed: {
  44095. height: math.unit(9, "feet"),
  44096. weight: math.unit(467, "lb"),
  44097. name: "Front (Dressed)",
  44098. image: {
  44099. source: "./media/characters/necahual/front-dressed.svg",
  44100. extra: 920/873,
  44101. bottom: 26/946
  44102. }
  44103. },
  44104. },
  44105. [
  44106. {
  44107. name: "Comprsesed",
  44108. height: math.unit(9, "feet")
  44109. },
  44110. {
  44111. name: "Natural",
  44112. height: math.unit(15, "feet"),
  44113. default: true
  44114. },
  44115. {
  44116. name: "Boosted",
  44117. height: math.unit(50, "feet")
  44118. },
  44119. {
  44120. name: "Boosted+",
  44121. height: math.unit(150, "feet")
  44122. },
  44123. {
  44124. name: "Max",
  44125. height: math.unit(500, "feet")
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(22 + 1/12, "feet"),
  44134. weight: math.unit(3200, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/theo-acacia/front.svg",
  44138. extra: 1796/1741,
  44139. bottom: 83/1879
  44140. }
  44141. },
  44142. frontUnderwear: {
  44143. height: math.unit(22 + 1/12, "feet"),
  44144. weight: math.unit(3200, "lb"),
  44145. name: "Front (Underwear)",
  44146. image: {
  44147. source: "./media/characters/theo-acacia/front-underwear.svg",
  44148. extra: 1796/1741,
  44149. bottom: 83/1879
  44150. }
  44151. },
  44152. frontNude: {
  44153. height: math.unit(22 + 1/12, "feet"),
  44154. weight: math.unit(3200, "lb"),
  44155. name: "Front (Nude)",
  44156. image: {
  44157. source: "./media/characters/theo-acacia/front-nude.svg",
  44158. extra: 1796/1741,
  44159. bottom: 83/1879
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(22 + 1/12, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44173. {
  44174. front: {
  44175. height: math.unit(20, "feet"),
  44176. name: "Front",
  44177. image: {
  44178. source: "./media/characters/astra/front.svg",
  44179. extra: 1850/1714,
  44180. bottom: 106/1956
  44181. }
  44182. },
  44183. frontUndressed: {
  44184. height: math.unit(20, "feet"),
  44185. name: "Front (Undressed)",
  44186. image: {
  44187. source: "./media/characters/astra/front-undressed.svg",
  44188. extra: 1926/1749,
  44189. bottom: 0/1926
  44190. }
  44191. },
  44192. hand: {
  44193. height: math.unit(1.53, "feet"),
  44194. name: "Hand",
  44195. image: {
  44196. source: "./media/characters/astra/hand.svg"
  44197. }
  44198. },
  44199. paw: {
  44200. height: math.unit(1.53, "feet"),
  44201. name: "Paw",
  44202. image: {
  44203. source: "./media/characters/astra/paw.svg"
  44204. }
  44205. },
  44206. },
  44207. [
  44208. {
  44209. name: "Smallest",
  44210. height: math.unit(20, "feet")
  44211. },
  44212. {
  44213. name: "Normal",
  44214. height: math.unit(1e9, "miles"),
  44215. default: true
  44216. },
  44217. {
  44218. name: "Larger",
  44219. height: math.unit(5, "multiverses")
  44220. },
  44221. {
  44222. name: "Largest",
  44223. height: math.unit(1e9, "multiverses")
  44224. },
  44225. ]
  44226. ))
  44227. characterMakers.push(() => makeCharacter(
  44228. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44229. {
  44230. front: {
  44231. height: math.unit(8, "feet"),
  44232. name: "Front",
  44233. image: {
  44234. source: "./media/characters/breanna/front.svg",
  44235. extra: 1912/1632,
  44236. bottom: 33/1945
  44237. }
  44238. },
  44239. },
  44240. [
  44241. {
  44242. name: "Smallest",
  44243. height: math.unit(8, "feet")
  44244. },
  44245. {
  44246. name: "Normal",
  44247. height: math.unit(1, "mile"),
  44248. default: true
  44249. },
  44250. {
  44251. name: "Maximum",
  44252. height: math.unit(1500000000000, "lightyears")
  44253. },
  44254. ]
  44255. ))
  44256. characterMakers.push(() => makeCharacter(
  44257. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44258. {
  44259. front: {
  44260. height: math.unit(5 + 11/12, "feet"),
  44261. weight: math.unit(155, "lb"),
  44262. name: "Front",
  44263. image: {
  44264. source: "./media/characters/cai/front.svg",
  44265. extra: 1823/1702,
  44266. bottom: 32/1855
  44267. }
  44268. },
  44269. back: {
  44270. height: math.unit(5 + 11/12, "feet"),
  44271. weight: math.unit(155, "lb"),
  44272. name: "Back",
  44273. image: {
  44274. source: "./media/characters/cai/back.svg",
  44275. extra: 1809/1708,
  44276. bottom: 31/1840
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(5 + 11/12, "feet"),
  44284. default: true
  44285. },
  44286. {
  44287. name: "Big",
  44288. height: math.unit(15, "feet")
  44289. },
  44290. {
  44291. name: "Macro",
  44292. height: math.unit(200, "feet")
  44293. },
  44294. ]
  44295. ))
  44296. characterMakers.push(() => makeCharacter(
  44297. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44298. {
  44299. front: {
  44300. height: math.unit(5 + 6/12, "feet"),
  44301. weight: math.unit(160, "lb"),
  44302. name: "Front",
  44303. image: {
  44304. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44305. extra: 1227/1174,
  44306. bottom: 37/1264
  44307. }
  44308. },
  44309. },
  44310. [
  44311. {
  44312. name: "Macro",
  44313. height: math.unit(444, "meters"),
  44314. default: true
  44315. },
  44316. ]
  44317. ))
  44318. characterMakers.push(() => makeCharacter(
  44319. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44320. {
  44321. front: {
  44322. height: math.unit(18 + 7/12, "feet"),
  44323. name: "Front",
  44324. image: {
  44325. source: "./media/characters/rex/front.svg",
  44326. extra: 1941/1807,
  44327. bottom: 66/2007
  44328. }
  44329. },
  44330. back: {
  44331. height: math.unit(18 + 7/12, "feet"),
  44332. name: "Back",
  44333. image: {
  44334. source: "./media/characters/rex/back.svg",
  44335. extra: 1937/1822,
  44336. bottom: 42/1979
  44337. }
  44338. },
  44339. boot: {
  44340. height: math.unit(3.45, "feet"),
  44341. name: "Boot",
  44342. image: {
  44343. source: "./media/characters/rex/boot.svg"
  44344. }
  44345. },
  44346. paw: {
  44347. height: math.unit(4.17, "feet"),
  44348. name: "Paw",
  44349. image: {
  44350. source: "./media/characters/rex/paw.svg"
  44351. }
  44352. },
  44353. head: {
  44354. height: math.unit(6.728, "feet"),
  44355. name: "Head",
  44356. image: {
  44357. source: "./media/characters/rex/head.svg"
  44358. }
  44359. },
  44360. },
  44361. [
  44362. {
  44363. name: "Nano",
  44364. height: math.unit(18 + 7/12, "feet")
  44365. },
  44366. {
  44367. name: "Micro",
  44368. height: math.unit(1.5, "megameters")
  44369. },
  44370. {
  44371. name: "Normal",
  44372. height: math.unit(440, "megameters"),
  44373. default: true
  44374. },
  44375. {
  44376. name: "Macro",
  44377. height: math.unit(2.5, "gigameters")
  44378. },
  44379. {
  44380. name: "Gigamacro",
  44381. height: math.unit(2, "galaxies")
  44382. },
  44383. ]
  44384. ))
  44385. characterMakers.push(() => makeCharacter(
  44386. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44387. {
  44388. side: {
  44389. height: math.unit(32, "feet"),
  44390. weight: math.unit(250000, "lb"),
  44391. name: "Side",
  44392. image: {
  44393. source: "./media/characters/silverwing/side.svg",
  44394. extra: 1100/1019,
  44395. bottom: 204/1304
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Normal",
  44402. height: math.unit(32, "feet"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44409. {
  44410. front: {
  44411. height: math.unit(6 + 6/12, "feet"),
  44412. weight: math.unit(350, "lb"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/tristan-hawthorne/front.svg",
  44416. extra: 1159/1124,
  44417. bottom: 37/1196
  44418. },
  44419. form: "labrador",
  44420. default: true
  44421. },
  44422. skunkFront: {
  44423. height: math.unit(4 + 6/12, "feet"),
  44424. weight: math.unit(120, "lb"),
  44425. name: "Front",
  44426. image: {
  44427. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44428. extra: 1609/1551,
  44429. bottom: 169/1778
  44430. },
  44431. form: "skunk",
  44432. default: true
  44433. },
  44434. },
  44435. [
  44436. {
  44437. name: "Normal",
  44438. height: math.unit(6 + 6/12, "feet"),
  44439. form: "labrador",
  44440. default: true
  44441. },
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(4 + 6/12, "feet"),
  44445. form: "skunk",
  44446. default: true
  44447. },
  44448. ],
  44449. {
  44450. "labrador": {
  44451. name: "Labrador",
  44452. default: true
  44453. },
  44454. "skunk": {
  44455. name: "Skunk"
  44456. }
  44457. }
  44458. ))
  44459. characterMakers.push(() => makeCharacter(
  44460. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44461. {
  44462. front: {
  44463. height: math.unit(5 + 11/12, "feet"),
  44464. weight: math.unit(190, "lb"),
  44465. name: "Front",
  44466. image: {
  44467. source: "./media/characters/mizu/front.svg",
  44468. extra: 1988/1788,
  44469. bottom: 14/2002
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Normal",
  44476. height: math.unit(5 + 11/12, "feet"),
  44477. default: true
  44478. },
  44479. ]
  44480. ))
  44481. characterMakers.push(() => makeCharacter(
  44482. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44483. {
  44484. front: {
  44485. height: math.unit(1.7, "feet"),
  44486. weight: math.unit(50, "lb"),
  44487. name: "Front",
  44488. image: {
  44489. source: "./media/characters/dechroma/front.svg",
  44490. extra: 1095/859,
  44491. bottom: 64/1159
  44492. }
  44493. },
  44494. },
  44495. [
  44496. {
  44497. name: "Normal",
  44498. height: math.unit(1.7, "feet"),
  44499. default: true
  44500. },
  44501. ]
  44502. ))
  44503. characterMakers.push(() => makeCharacter(
  44504. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44505. {
  44506. side: {
  44507. height: math.unit(30, "feet"),
  44508. name: "Side",
  44509. image: {
  44510. source: "./media/characters/veluren-thanazel/side.svg",
  44511. extra: 1611/633,
  44512. bottom: 118/1729
  44513. }
  44514. },
  44515. front: {
  44516. height: math.unit(30, "feet"),
  44517. name: "Front",
  44518. image: {
  44519. source: "./media/characters/veluren-thanazel/front.svg",
  44520. extra: 1486/636,
  44521. bottom: 238/1724
  44522. }
  44523. },
  44524. head: {
  44525. height: math.unit(21.4, "feet"),
  44526. name: "Head",
  44527. image: {
  44528. source: "./media/characters/veluren-thanazel/head.svg"
  44529. }
  44530. },
  44531. genitals: {
  44532. height: math.unit(19.4, "feet"),
  44533. name: "Genitals",
  44534. image: {
  44535. source: "./media/characters/veluren-thanazel/genitals.svg"
  44536. }
  44537. },
  44538. },
  44539. [
  44540. {
  44541. name: "Social",
  44542. height: math.unit(6, "feet")
  44543. },
  44544. {
  44545. name: "Play",
  44546. height: math.unit(12, "feet")
  44547. },
  44548. {
  44549. name: "True",
  44550. height: math.unit(30, "feet"),
  44551. default: true
  44552. },
  44553. ]
  44554. ))
  44555. characterMakers.push(() => makeCharacter(
  44556. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44557. {
  44558. front: {
  44559. height: math.unit(7 + 6/12, "feet"),
  44560. weight: math.unit(500, "kg"),
  44561. name: "Front",
  44562. image: {
  44563. source: "./media/characters/arcturas/front.svg",
  44564. extra: 1700/1500,
  44565. bottom: 145/1845
  44566. }
  44567. },
  44568. },
  44569. [
  44570. {
  44571. name: "Normal",
  44572. height: math.unit(7 + 6/12, "feet"),
  44573. default: true
  44574. },
  44575. ]
  44576. ))
  44577. characterMakers.push(() => makeCharacter(
  44578. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44579. {
  44580. side: {
  44581. height: math.unit(6, "feet"),
  44582. weight: math.unit(2, "tons"),
  44583. name: "Side",
  44584. image: {
  44585. source: "./media/characters/vitaen/side.svg",
  44586. extra: 1157/617,
  44587. bottom: 122/1279
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Normal",
  44594. height: math.unit(6, "feet"),
  44595. default: true
  44596. },
  44597. ]
  44598. ))
  44599. characterMakers.push(() => makeCharacter(
  44600. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44601. {
  44602. front: {
  44603. height: math.unit(19, "feet"),
  44604. name: "Front",
  44605. image: {
  44606. source: "./media/characters/fia-dreamweaver/front.svg",
  44607. extra: 1630/1504,
  44608. bottom: 25/1655
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Normal",
  44615. height: math.unit(19, "feet"),
  44616. default: true
  44617. },
  44618. ]
  44619. ))
  44620. characterMakers.push(() => makeCharacter(
  44621. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44622. {
  44623. front: {
  44624. height: math.unit(5 + 4/12, "feet"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/artan/front.svg",
  44628. extra: 1618/1535,
  44629. bottom: 46/1664
  44630. }
  44631. },
  44632. back: {
  44633. height: math.unit(5 + 4/12, "feet"),
  44634. name: "Back",
  44635. image: {
  44636. source: "./media/characters/artan/back.svg",
  44637. extra: 1618/1543,
  44638. bottom: 31/1649
  44639. }
  44640. },
  44641. },
  44642. [
  44643. {
  44644. name: "Normal",
  44645. height: math.unit(5 + 4/12, "feet"),
  44646. default: true
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44652. {
  44653. side: {
  44654. height: math.unit(182, "cm"),
  44655. weight: math.unit(1000, "lb"),
  44656. name: "Side",
  44657. image: {
  44658. source: "./media/characters/silver-dragon/side.svg",
  44659. extra: 710/287,
  44660. bottom: 88/798
  44661. }
  44662. },
  44663. },
  44664. [
  44665. {
  44666. name: "Normal",
  44667. height: math.unit(182, "cm"),
  44668. default: true
  44669. },
  44670. ]
  44671. ))
  44672. characterMakers.push(() => makeCharacter(
  44673. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44674. {
  44675. side: {
  44676. height: math.unit(6 + 6/12, "feet"),
  44677. weight: math.unit(1.5, "tons"),
  44678. name: "Side",
  44679. image: {
  44680. source: "./media/characters/zephyr/side.svg",
  44681. extra: 1433/586,
  44682. bottom: 109/1542
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Normal",
  44689. height: math.unit(6 + 6/12, "feet"),
  44690. default: true
  44691. },
  44692. ]
  44693. ))
  44694. characterMakers.push(() => makeCharacter(
  44695. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44696. {
  44697. side: {
  44698. height: math.unit(1, "feet"),
  44699. name: "Side",
  44700. image: {
  44701. source: "./media/characters/vixye/side.svg",
  44702. extra: 632/541,
  44703. bottom: 0/632
  44704. }
  44705. },
  44706. },
  44707. [
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(1, "feet"),
  44711. default: true
  44712. },
  44713. {
  44714. name: "True",
  44715. height: math.unit(1e15, "multiverses")
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44721. {
  44722. front: {
  44723. height: math.unit(8 + 2/12, "feet"),
  44724. weight: math.unit(650, "lb"),
  44725. name: "Front",
  44726. image: {
  44727. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44728. extra: 1174/1137,
  44729. bottom: 82/1256
  44730. }
  44731. },
  44732. back: {
  44733. height: math.unit(8 + 2/12, "feet"),
  44734. weight: math.unit(650, "lb"),
  44735. name: "Back",
  44736. image: {
  44737. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44738. extra: 1204/1157,
  44739. bottom: 46/1250
  44740. }
  44741. },
  44742. },
  44743. [
  44744. {
  44745. name: "Wildform",
  44746. height: math.unit(8 + 2/12, "feet"),
  44747. default: true
  44748. },
  44749. ]
  44750. ))
  44751. characterMakers.push(() => makeCharacter(
  44752. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44753. {
  44754. front: {
  44755. height: math.unit(18, "feet"),
  44756. name: "Front",
  44757. image: {
  44758. source: "./media/characters/cyphin/front.svg",
  44759. extra: 970/886,
  44760. bottom: 42/1012
  44761. }
  44762. },
  44763. back: {
  44764. height: math.unit(18, "feet"),
  44765. name: "Back",
  44766. image: {
  44767. source: "./media/characters/cyphin/back.svg",
  44768. extra: 1009/894,
  44769. bottom: 24/1033
  44770. }
  44771. },
  44772. head: {
  44773. height: math.unit(5.05, "feet"),
  44774. name: "Head",
  44775. image: {
  44776. source: "./media/characters/cyphin/head.svg"
  44777. }
  44778. },
  44779. tailbud: {
  44780. height: math.unit(5, "feet"),
  44781. name: "Tailbud",
  44782. image: {
  44783. source: "./media/characters/cyphin/tailbud.svg"
  44784. }
  44785. },
  44786. },
  44787. [
  44788. ]
  44789. ))
  44790. characterMakers.push(() => makeCharacter(
  44791. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44792. {
  44793. side: {
  44794. height: math.unit(10, "feet"),
  44795. weight: math.unit(6, "tons"),
  44796. name: "Side",
  44797. image: {
  44798. source: "./media/characters/raijin/side.svg",
  44799. extra: 1529/613,
  44800. bottom: 337/1866
  44801. }
  44802. },
  44803. },
  44804. [
  44805. {
  44806. name: "Normal",
  44807. height: math.unit(10, "feet"),
  44808. default: true
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44814. {
  44815. side: {
  44816. height: math.unit(9, "feet"),
  44817. name: "Side",
  44818. image: {
  44819. source: "./media/characters/nilghais/side.svg",
  44820. extra: 1047/744,
  44821. bottom: 91/1138
  44822. }
  44823. },
  44824. head: {
  44825. height: math.unit(3.14, "feet"),
  44826. name: "Head",
  44827. image: {
  44828. source: "./media/characters/nilghais/head.svg"
  44829. }
  44830. },
  44831. mouth: {
  44832. height: math.unit(4.6, "feet"),
  44833. name: "Mouth",
  44834. image: {
  44835. source: "./media/characters/nilghais/mouth.svg"
  44836. }
  44837. },
  44838. wings: {
  44839. height: math.unit(24, "feet"),
  44840. name: "Wings",
  44841. image: {
  44842. source: "./media/characters/nilghais/wings.svg"
  44843. }
  44844. },
  44845. ass: {
  44846. height: math.unit(6.12, "feet"),
  44847. name: "Ass",
  44848. image: {
  44849. source: "./media/characters/nilghais/ass.svg"
  44850. }
  44851. },
  44852. },
  44853. [
  44854. {
  44855. name: "Normal",
  44856. height: math.unit(9, "feet"),
  44857. default: true
  44858. },
  44859. ]
  44860. ))
  44861. characterMakers.push(() => makeCharacter(
  44862. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44863. {
  44864. regular: {
  44865. height: math.unit(16 + 2/12, "feet"),
  44866. weight: math.unit(2300, "lb"),
  44867. name: "Regular",
  44868. image: {
  44869. source: "./media/characters/zolgar/regular.svg",
  44870. extra: 1246/1004,
  44871. bottom: 124/1370
  44872. }
  44873. },
  44874. boxers: {
  44875. height: math.unit(16 + 2/12, "feet"),
  44876. weight: math.unit(2300, "lb"),
  44877. name: "Boxers",
  44878. image: {
  44879. source: "./media/characters/zolgar/boxers.svg",
  44880. extra: 1246/1004,
  44881. bottom: 124/1370
  44882. }
  44883. },
  44884. armored: {
  44885. height: math.unit(16 + 2/12, "feet"),
  44886. weight: math.unit(2300, "lb"),
  44887. name: "Armored",
  44888. image: {
  44889. source: "./media/characters/zolgar/armored.svg",
  44890. extra: 1246/1004,
  44891. bottom: 124/1370
  44892. }
  44893. },
  44894. goth: {
  44895. height: math.unit(16 + 2/12, "feet"),
  44896. weight: math.unit(2300, "lb"),
  44897. name: "Goth",
  44898. image: {
  44899. source: "./media/characters/zolgar/goth.svg",
  44900. extra: 1246/1004,
  44901. bottom: 124/1370
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Shrunken Down",
  44908. height: math.unit(9 + 2/12, "feet")
  44909. },
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(16 + 2/12, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(6, "feet"),
  44922. weight: math.unit(168, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/luca/front.svg",
  44926. extra: 841/667,
  44927. bottom: 102/943
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(6, "feet"),
  44935. default: true
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44941. {
  44942. side: {
  44943. height: math.unit(7 + 3/12, "feet"),
  44944. weight: math.unit(312, "lb"),
  44945. name: "Side",
  44946. image: {
  44947. source: "./media/characters/zezo/side.svg",
  44948. extra: 1192/1067,
  44949. bottom: 63/1255
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Normal",
  44956. height: math.unit(7 + 3/12, "feet"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44963. {
  44964. front: {
  44965. height: math.unit(5 + 5/12, "feet"),
  44966. weight: math.unit(170, "lb"),
  44967. name: "Front",
  44968. image: {
  44969. source: "./media/characters/mayso/front.svg",
  44970. extra: 1215/1108,
  44971. bottom: 16/1231
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(5 + 5/12, "feet"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44985. {
  44986. front: {
  44987. height: math.unit(4 + 3/12, "feet"),
  44988. weight: math.unit(80, "lb"),
  44989. name: "Front",
  44990. image: {
  44991. source: "./media/characters/hess/front.svg",
  44992. extra: 1200/1123,
  44993. bottom: 16/1216
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(4 + 3/12, "feet"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45007. {
  45008. front: {
  45009. height: math.unit(1.9, "meters"),
  45010. name: "Front",
  45011. image: {
  45012. source: "./media/characters/ashgar/front.svg",
  45013. extra: 1177/1146,
  45014. bottom: 99/1276
  45015. }
  45016. },
  45017. back: {
  45018. height: math.unit(1.9, "meters"),
  45019. name: "Back",
  45020. image: {
  45021. source: "./media/characters/ashgar/back.svg",
  45022. extra: 1201/1183,
  45023. bottom: 53/1254
  45024. }
  45025. },
  45026. feral: {
  45027. height: math.unit(1.4, "meters"),
  45028. name: "Feral",
  45029. image: {
  45030. source: "./media/characters/ashgar/feral.svg",
  45031. extra: 370/345,
  45032. bottom: 45/415
  45033. }
  45034. },
  45035. },
  45036. [
  45037. {
  45038. name: "Normal",
  45039. height: math.unit(1.9, "meters"),
  45040. default: true
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45046. {
  45047. regular: {
  45048. height: math.unit(6, "feet"),
  45049. weight: math.unit(220, "lb"),
  45050. name: "Regular",
  45051. image: {
  45052. source: "./media/characters/phillip/regular.svg",
  45053. extra: 1373/1277,
  45054. bottom: 75/1448
  45055. }
  45056. },
  45057. dressed: {
  45058. height: math.unit(6, "feet"),
  45059. weight: math.unit(220, "lb"),
  45060. name: "Dressed",
  45061. image: {
  45062. source: "./media/characters/phillip/dressed.svg",
  45063. extra: 1373/1277,
  45064. bottom: 75/1448
  45065. }
  45066. },
  45067. paw: {
  45068. height: math.unit(1.44, "feet"),
  45069. name: "Paw",
  45070. image: {
  45071. source: "./media/characters/phillip/paw.svg"
  45072. }
  45073. },
  45074. },
  45075. [
  45076. {
  45077. name: "Normal",
  45078. height: math.unit(6, "feet"),
  45079. default: true
  45080. },
  45081. ]
  45082. ))
  45083. characterMakers.push(() => makeCharacter(
  45084. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45085. {
  45086. side: {
  45087. height: math.unit(42, "feet"),
  45088. name: "Side",
  45089. image: {
  45090. source: "./media/characters/uvula/side.svg",
  45091. extra: 683/586,
  45092. bottom: 60/743
  45093. }
  45094. },
  45095. front: {
  45096. height: math.unit(42, "feet"),
  45097. name: "Front",
  45098. image: {
  45099. source: "./media/characters/uvula/front.svg",
  45100. extra: 705/613,
  45101. bottom: 54/759
  45102. }
  45103. },
  45104. maw: {
  45105. height: math.unit(23.5, "feet"),
  45106. name: "Maw",
  45107. image: {
  45108. source: "./media/characters/uvula/maw.svg"
  45109. }
  45110. },
  45111. },
  45112. [
  45113. {
  45114. name: "Original Size",
  45115. height: math.unit(14, "inches")
  45116. },
  45117. {
  45118. name: "Human Size",
  45119. height: math.unit(6, "feet")
  45120. },
  45121. {
  45122. name: "Big",
  45123. height: math.unit(42, "feet"),
  45124. default: true
  45125. },
  45126. {
  45127. name: "Bigger",
  45128. height: math.unit(100, "feet")
  45129. },
  45130. ]
  45131. ))
  45132. characterMakers.push(() => makeCharacter(
  45133. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45134. {
  45135. front: {
  45136. height: math.unit(5 + 11/12, "feet"),
  45137. name: "Front",
  45138. image: {
  45139. source: "./media/characters/lannah/front.svg",
  45140. extra: 1208/1113,
  45141. bottom: 97/1305
  45142. }
  45143. },
  45144. },
  45145. [
  45146. {
  45147. name: "Normal",
  45148. height: math.unit(5 + 11/12, "feet"),
  45149. default: true
  45150. },
  45151. ]
  45152. ))
  45153. characterMakers.push(() => makeCharacter(
  45154. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45155. {
  45156. front: {
  45157. height: math.unit(6 + 3/12, "feet"),
  45158. weight: math.unit(3.5, "tons"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/emberflame/front.svg",
  45162. extra: 1198/672,
  45163. bottom: 82/1280
  45164. }
  45165. },
  45166. side: {
  45167. height: math.unit(6 + 3/12, "feet"),
  45168. weight: math.unit(3.5, "tons"),
  45169. name: "Side",
  45170. image: {
  45171. source: "./media/characters/emberflame/side.svg",
  45172. extra: 938/527,
  45173. bottom: 56/994
  45174. }
  45175. },
  45176. },
  45177. [
  45178. {
  45179. name: "Normal",
  45180. height: math.unit(6 + 3/12, "feet"),
  45181. default: true
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45187. {
  45188. side: {
  45189. height: math.unit(17.5, "feet"),
  45190. weight: math.unit(35, "tons"),
  45191. name: "Side",
  45192. image: {
  45193. source: "./media/characters/sophie-ambrose/side.svg",
  45194. extra: 1573/1242,
  45195. bottom: 71/1644
  45196. }
  45197. },
  45198. maw: {
  45199. height: math.unit(7.4, "feet"),
  45200. name: "Maw",
  45201. image: {
  45202. source: "./media/characters/sophie-ambrose/maw.svg"
  45203. }
  45204. },
  45205. },
  45206. [
  45207. {
  45208. name: "Normal",
  45209. height: math.unit(17.5, "feet"),
  45210. default: true
  45211. },
  45212. ]
  45213. ))
  45214. characterMakers.push(() => makeCharacter(
  45215. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45216. {
  45217. front: {
  45218. height: math.unit(280, "feet"),
  45219. weight: math.unit(550, "tons"),
  45220. name: "Front",
  45221. image: {
  45222. source: "./media/characters/king-mugi/front.svg",
  45223. extra: 1102/947,
  45224. bottom: 104/1206
  45225. }
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "King Mugi",
  45231. height: math.unit(280, "feet"),
  45232. default: true
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45238. {
  45239. female: {
  45240. height: math.unit(300, "meters"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/nova-fox/female.svg",
  45244. extra: 664/632,
  45245. bottom: 51/715
  45246. },
  45247. form: "female",
  45248. default: true
  45249. },
  45250. male: {
  45251. height: math.unit(300, "meters"),
  45252. name: "Front",
  45253. image: {
  45254. source: "./media/characters/nova-fox/male.svg",
  45255. extra: 663/631,
  45256. bottom: 30/693
  45257. },
  45258. form: "male",
  45259. default: true
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Macro",
  45265. height: math.unit(300, "meters"),
  45266. default: true,
  45267. allForms: true
  45268. },
  45269. ],
  45270. {
  45271. "female": {
  45272. name: "Female",
  45273. default: true
  45274. },
  45275. "male": {
  45276. name: "Male",
  45277. },
  45278. }
  45279. ))
  45280. characterMakers.push(() => makeCharacter(
  45281. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45282. {
  45283. front: {
  45284. height: math.unit(6 + 3/12, "feet"),
  45285. weight: math.unit(170, "lb"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/sam-bat/front.svg",
  45289. extra: 1601/1411,
  45290. bottom: 125/1726
  45291. }
  45292. },
  45293. back: {
  45294. height: math.unit(6 + 3/12, "feet"),
  45295. weight: math.unit(170, "lb"),
  45296. name: "Back",
  45297. image: {
  45298. source: "./media/characters/sam-bat/back.svg",
  45299. extra: 1577/1405,
  45300. bottom: 58/1635
  45301. }
  45302. },
  45303. },
  45304. [
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(6 + 3/12, "feet"),
  45308. default: true
  45309. },
  45310. ]
  45311. ))
  45312. characterMakers.push(() => makeCharacter(
  45313. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45314. {
  45315. front: {
  45316. height: math.unit(59, "feet"),
  45317. weight: math.unit(40000, "lb"),
  45318. name: "Front",
  45319. image: {
  45320. source: "./media/characters/inari/front.svg",
  45321. extra: 1884/1350,
  45322. bottom: 95/1979
  45323. }
  45324. },
  45325. },
  45326. [
  45327. {
  45328. name: "Gigantamax",
  45329. height: math.unit(59, "feet"),
  45330. default: true
  45331. },
  45332. ]
  45333. ))
  45334. characterMakers.push(() => makeCharacter(
  45335. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45336. {
  45337. front: {
  45338. height: math.unit(5 + 8/12, "feet"),
  45339. name: "Front",
  45340. image: {
  45341. source: "./media/characters/elizabeth/front.svg",
  45342. extra: 1395/1298,
  45343. bottom: 54/1449
  45344. }
  45345. },
  45346. mouth: {
  45347. height: math.unit(1.97, "feet"),
  45348. name: "Mouth",
  45349. image: {
  45350. source: "./media/characters/elizabeth/mouth.svg"
  45351. }
  45352. },
  45353. foot: {
  45354. height: math.unit(1.17, "feet"),
  45355. name: "Foot",
  45356. image: {
  45357. source: "./media/characters/elizabeth/foot.svg"
  45358. }
  45359. },
  45360. },
  45361. [
  45362. {
  45363. name: "Normal",
  45364. height: math.unit(5 + 8/12, "feet"),
  45365. default: true
  45366. },
  45367. {
  45368. name: "Minimacro",
  45369. height: math.unit(18, "feet")
  45370. },
  45371. {
  45372. name: "Macro",
  45373. height: math.unit(180, "feet")
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45379. {
  45380. front: {
  45381. height: math.unit(5 + 2/12, "feet"),
  45382. name: "Front",
  45383. image: {
  45384. source: "./media/characters/october-gossamer/front.svg",
  45385. extra: 505/454,
  45386. bottom: 7/512
  45387. }
  45388. },
  45389. back: {
  45390. height: math.unit(5 + 2/12, "feet"),
  45391. name: "Back",
  45392. image: {
  45393. source: "./media/characters/october-gossamer/back.svg",
  45394. extra: 501/454,
  45395. bottom: 11/512
  45396. }
  45397. },
  45398. },
  45399. [
  45400. {
  45401. name: "Normal",
  45402. height: math.unit(5 + 2/12, "feet"),
  45403. default: true
  45404. },
  45405. ]
  45406. ))
  45407. characterMakers.push(() => makeCharacter(
  45408. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45409. {
  45410. front: {
  45411. height: math.unit(5, "feet"),
  45412. name: "Front",
  45413. image: {
  45414. source: "./media/characters/epiglottis/front.svg",
  45415. extra: 923/849,
  45416. bottom: 17/940
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Original Size",
  45423. height: math.unit(10, "inches")
  45424. },
  45425. {
  45426. name: "Human Size",
  45427. height: math.unit(5, "feet"),
  45428. default: true
  45429. },
  45430. {
  45431. name: "Big",
  45432. height: math.unit(25, "feet")
  45433. },
  45434. {
  45435. name: "Bigger",
  45436. height: math.unit(50, "feet")
  45437. },
  45438. {
  45439. name: "oh lawd",
  45440. height: math.unit(75, "feet")
  45441. },
  45442. ]
  45443. ))
  45444. characterMakers.push(() => makeCharacter(
  45445. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45446. {
  45447. front: {
  45448. height: math.unit(2 + 4/12, "feet"),
  45449. weight: math.unit(60, "lb"),
  45450. name: "Front",
  45451. image: {
  45452. source: "./media/characters/lerm/front.svg",
  45453. extra: 796/790,
  45454. bottom: 79/875
  45455. }
  45456. },
  45457. },
  45458. [
  45459. {
  45460. name: "Normal",
  45461. height: math.unit(2 + 4/12, "feet"),
  45462. default: true
  45463. },
  45464. ]
  45465. ))
  45466. characterMakers.push(() => makeCharacter(
  45467. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45468. {
  45469. front: {
  45470. height: math.unit(5.5, "feet"),
  45471. weight: math.unit(130, "lb"),
  45472. name: "Front",
  45473. image: {
  45474. source: "./media/characters/xena-nebadon/front.svg",
  45475. extra: 1828/1730,
  45476. bottom: 79/1907
  45477. }
  45478. },
  45479. },
  45480. [
  45481. {
  45482. name: "Tiny Puppy",
  45483. height: math.unit(3, "inches")
  45484. },
  45485. {
  45486. name: "Normal",
  45487. height: math.unit(5.5, "feet"),
  45488. default: true
  45489. },
  45490. {
  45491. name: "Lotta Lady",
  45492. height: math.unit(12, "feet")
  45493. },
  45494. {
  45495. name: "Pretty Big",
  45496. height: math.unit(100, "feet")
  45497. },
  45498. {
  45499. name: "Big",
  45500. height: math.unit(500, "feet")
  45501. },
  45502. {
  45503. name: "Skyscraper Toys",
  45504. height: math.unit(2500, "feet")
  45505. },
  45506. {
  45507. name: "Plane Catcher",
  45508. height: math.unit(8, "miles")
  45509. },
  45510. {
  45511. name: "Planet Toys",
  45512. height: math.unit(15, "earths")
  45513. },
  45514. {
  45515. name: "Stardust",
  45516. height: math.unit(0.25, "galaxies")
  45517. },
  45518. {
  45519. name: "Snacks",
  45520. height: math.unit(70, "universes")
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45526. {
  45527. front: {
  45528. height: math.unit(1.6, "meters"),
  45529. weight: math.unit(60, "kg"),
  45530. name: "Front",
  45531. image: {
  45532. source: "./media/characters/bounty/front.svg",
  45533. extra: 1426/1308,
  45534. bottom: 15/1441
  45535. }
  45536. },
  45537. back: {
  45538. height: math.unit(1.6, "meters"),
  45539. weight: math.unit(60, "kg"),
  45540. name: "Back",
  45541. image: {
  45542. source: "./media/characters/bounty/back.svg",
  45543. extra: 1417/1307,
  45544. bottom: 8/1425
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(1.6, "meters"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Macro",
  45556. height: math.unit(300, "meters")
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45562. {
  45563. front: {
  45564. height: math.unit(2 + 8/12, "feet"),
  45565. weight: math.unit(15, "lb"),
  45566. name: "Front",
  45567. image: {
  45568. source: "./media/characters/mochi/front.svg",
  45569. extra: 1022/852,
  45570. bottom: 435/1457
  45571. }
  45572. },
  45573. back: {
  45574. height: math.unit(2 + 8/12, "feet"),
  45575. weight: math.unit(15, "lb"),
  45576. name: "Back",
  45577. image: {
  45578. source: "./media/characters/mochi/back.svg",
  45579. extra: 1335/1119,
  45580. bottom: 39/1374
  45581. }
  45582. },
  45583. bird: {
  45584. height: math.unit(2 + 8/12, "feet"),
  45585. weight: math.unit(15, "lb"),
  45586. name: "Bird",
  45587. image: {
  45588. source: "./media/characters/mochi/bird.svg",
  45589. extra: 1251/1113,
  45590. bottom: 178/1429
  45591. }
  45592. },
  45593. kaiju: {
  45594. height: math.unit(154, "feet"),
  45595. weight: math.unit(1e7, "lb"),
  45596. name: "Kaiju",
  45597. image: {
  45598. source: "./media/characters/mochi/kaiju.svg",
  45599. extra: 460/324,
  45600. bottom: 40/500
  45601. }
  45602. },
  45603. head: {
  45604. height: math.unit(1.21, "feet"),
  45605. name: "Head",
  45606. image: {
  45607. source: "./media/characters/mochi/head.svg"
  45608. }
  45609. },
  45610. alternateTail: {
  45611. height: math.unit(2 + 8/12, "feet"),
  45612. weight: math.unit(45, "lb"),
  45613. name: "Alternate Tail",
  45614. image: {
  45615. source: "./media/characters/mochi/alternate-tail.svg",
  45616. extra: 139/76,
  45617. bottom: 45/184
  45618. }
  45619. },
  45620. },
  45621. [
  45622. {
  45623. name: "Micro",
  45624. height: math.unit(2, "inches")
  45625. },
  45626. {
  45627. name: "Normal",
  45628. height: math.unit(2 + 8/12, "feet"),
  45629. default: true
  45630. },
  45631. {
  45632. name: "Macro",
  45633. height: math.unit(106, "feet")
  45634. },
  45635. ]
  45636. ))
  45637. characterMakers.push(() => makeCharacter(
  45638. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45639. {
  45640. front: {
  45641. height: math.unit(5.67, "feet"),
  45642. weight: math.unit(135, "lb"),
  45643. name: "Front",
  45644. image: {
  45645. source: "./media/characters/sarel/front.svg",
  45646. extra: 865/788,
  45647. bottom: 97/962
  45648. }
  45649. },
  45650. back: {
  45651. height: math.unit(5.67, "feet"),
  45652. weight: math.unit(135, "lb"),
  45653. name: "Back",
  45654. image: {
  45655. source: "./media/characters/sarel/back.svg",
  45656. extra: 857/777,
  45657. bottom: 32/889
  45658. }
  45659. },
  45660. chozoan: {
  45661. height: math.unit(5.67, "feet"),
  45662. weight: math.unit(135, "lb"),
  45663. name: "Chozoan",
  45664. image: {
  45665. source: "./media/characters/sarel/chozoan.svg",
  45666. extra: 865/788,
  45667. bottom: 97/962
  45668. }
  45669. },
  45670. current: {
  45671. height: math.unit(5.67, "feet"),
  45672. weight: math.unit(135, "lb"),
  45673. name: "Current",
  45674. image: {
  45675. source: "./media/characters/sarel/current.svg",
  45676. extra: 865/788,
  45677. bottom: 97/962
  45678. }
  45679. },
  45680. head: {
  45681. height: math.unit(1.77, "feet"),
  45682. name: "Head",
  45683. image: {
  45684. source: "./media/characters/sarel/head.svg"
  45685. }
  45686. },
  45687. claws: {
  45688. height: math.unit(1.8, "feet"),
  45689. name: "Claws",
  45690. image: {
  45691. source: "./media/characters/sarel/claws.svg"
  45692. }
  45693. },
  45694. clawsAlt: {
  45695. height: math.unit(1.8, "feet"),
  45696. name: "Claws-alt",
  45697. image: {
  45698. source: "./media/characters/sarel/claws-alt.svg"
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(5.67, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5500, "feet"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/alyonia/front.svg",
  45718. extra: 1200/1135,
  45719. bottom: 29/1229
  45720. }
  45721. },
  45722. back: {
  45723. height: math.unit(5500, "feet"),
  45724. name: "Back",
  45725. image: {
  45726. source: "./media/characters/alyonia/back.svg",
  45727. extra: 1205/1138,
  45728. bottom: 10/1215
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Small",
  45735. height: math.unit(10, "feet")
  45736. },
  45737. {
  45738. name: "Macro",
  45739. height: math.unit(500, "feet")
  45740. },
  45741. {
  45742. name: "Mega Macro",
  45743. height: math.unit(5500, "feet"),
  45744. default: true
  45745. },
  45746. {
  45747. name: "Mega Macro+",
  45748. height: math.unit(500000, "feet")
  45749. },
  45750. {
  45751. name: "Giga Macro",
  45752. height: math.unit(3000, "miles")
  45753. },
  45754. {
  45755. name: "Tera Macro",
  45756. height: math.unit(2.8e6, "miles")
  45757. },
  45758. {
  45759. name: "Galactic",
  45760. height: math.unit(120000, "lightyears")
  45761. },
  45762. ]
  45763. ))
  45764. characterMakers.push(() => makeCharacter(
  45765. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45766. {
  45767. werewolf: {
  45768. height: math.unit(8, "feet"),
  45769. weight: math.unit(425, "lb"),
  45770. name: "Werewolf",
  45771. image: {
  45772. source: "./media/characters/autumn/werewolf.svg",
  45773. extra: 2154/2031,
  45774. bottom: 160/2314
  45775. }
  45776. },
  45777. human: {
  45778. height: math.unit(5 + 8/12, "feet"),
  45779. weight: math.unit(150, "lb"),
  45780. name: "Human",
  45781. image: {
  45782. source: "./media/characters/autumn/human.svg",
  45783. extra: 1200/1149,
  45784. bottom: 30/1230
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(8, "feet"),
  45792. default: true
  45793. },
  45794. ]
  45795. ))
  45796. characterMakers.push(() => makeCharacter(
  45797. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45798. {
  45799. front: {
  45800. height: math.unit(8 + 5/12, "feet"),
  45801. weight: math.unit(825, "lb"),
  45802. name: "Front",
  45803. image: {
  45804. source: "./media/characters/cobalt-charizard/front.svg",
  45805. extra: 1268/1155,
  45806. bottom: 122/1390
  45807. }
  45808. },
  45809. side: {
  45810. height: math.unit(8 + 5/12, "feet"),
  45811. weight: math.unit(825, "lb"),
  45812. name: "Side",
  45813. image: {
  45814. source: "./media/characters/cobalt-charizard/side.svg",
  45815. extra: 1348/1257,
  45816. bottom: 58/1406
  45817. }
  45818. },
  45819. gMax: {
  45820. height: math.unit(134 + 11/12, "feet"),
  45821. name: "G-Max",
  45822. image: {
  45823. source: "./media/characters/cobalt-charizard/g-max.svg",
  45824. extra: 1835/1541,
  45825. bottom: 151/1986
  45826. }
  45827. },
  45828. },
  45829. [
  45830. {
  45831. name: "Normal",
  45832. height: math.unit(8 + 5/12, "feet"),
  45833. default: true
  45834. },
  45835. ]
  45836. ))
  45837. characterMakers.push(() => makeCharacter(
  45838. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45839. {
  45840. front: {
  45841. height: math.unit(6 + 3/12, "feet"),
  45842. weight: math.unit(210, "lb"),
  45843. name: "Front",
  45844. image: {
  45845. source: "./media/characters/stella/front.svg",
  45846. extra: 3549/3335,
  45847. bottom: 51/3600
  45848. }
  45849. },
  45850. },
  45851. [
  45852. {
  45853. name: "Normal",
  45854. height: math.unit(6 + 3/12, "feet"),
  45855. default: true
  45856. },
  45857. ]
  45858. ))
  45859. characterMakers.push(() => makeCharacter(
  45860. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45861. {
  45862. front: {
  45863. height: math.unit(5, "feet"),
  45864. weight: math.unit(90, "lb"),
  45865. name: "Front",
  45866. image: {
  45867. source: "./media/characters/riley-bishop/front.svg",
  45868. extra: 1450/1428,
  45869. bottom: 152/1602
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(5, "feet"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45883. {
  45884. side: {
  45885. height: math.unit(8 + 2/12, "feet"),
  45886. weight: math.unit(500, "kg"),
  45887. name: "Side",
  45888. image: {
  45889. source: "./media/characters/theo-arcanine/side.svg",
  45890. extra: 1342/1074,
  45891. bottom: 111/1453
  45892. }
  45893. },
  45894. },
  45895. [
  45896. {
  45897. name: "Normal",
  45898. height: math.unit(8 + 2/12, "feet"),
  45899. default: true
  45900. },
  45901. ]
  45902. ))
  45903. characterMakers.push(() => makeCharacter(
  45904. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45905. {
  45906. front: {
  45907. height: math.unit(4, "feet"),
  45908. name: "Front",
  45909. image: {
  45910. source: "./media/characters/kali/front.svg",
  45911. extra: 1074/867,
  45912. bottom: 34/1108
  45913. }
  45914. },
  45915. back: {
  45916. height: math.unit(4, "feet"),
  45917. name: "Back",
  45918. image: {
  45919. source: "./media/characters/kali/back.svg",
  45920. extra: 1068/863,
  45921. bottom: 26/1094
  45922. }
  45923. },
  45924. frontAlt: {
  45925. height: math.unit(4, "feet"),
  45926. name: "Front (Alt)",
  45927. image: {
  45928. source: "./media/characters/kali/front-alt.svg",
  45929. extra: 1921/1357,
  45930. bottom: 70/1991
  45931. }
  45932. },
  45933. },
  45934. [
  45935. {
  45936. name: "Normal",
  45937. height: math.unit(4, "feet"),
  45938. default: true
  45939. },
  45940. {
  45941. name: "Big'vali",
  45942. height: math.unit(11, "feet")
  45943. },
  45944. {
  45945. name: "Macro",
  45946. height: math.unit(32, "meters")
  45947. },
  45948. {
  45949. name: "Macro+",
  45950. height: math.unit(150, "meters")
  45951. },
  45952. {
  45953. name: "Megamacro",
  45954. height: math.unit(7500, "meters")
  45955. },
  45956. {
  45957. name: "Megamacro+",
  45958. height: math.unit(80, "kilometers")
  45959. },
  45960. ]
  45961. ))
  45962. characterMakers.push(() => makeCharacter(
  45963. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45964. {
  45965. side: {
  45966. height: math.unit(5 + 11/12, "feet"),
  45967. weight: math.unit(236, "lb"),
  45968. name: "Side",
  45969. image: {
  45970. source: "./media/characters/gapp/side.svg",
  45971. extra: 775/340,
  45972. bottom: 58/833
  45973. }
  45974. },
  45975. mouth: {
  45976. height: math.unit(2.98, "feet"),
  45977. name: "Mouth",
  45978. image: {
  45979. source: "./media/characters/gapp/mouth.svg"
  45980. }
  45981. },
  45982. },
  45983. [
  45984. {
  45985. name: "Normal",
  45986. height: math.unit(5 + 1/12, "feet"),
  45987. default: true
  45988. },
  45989. ]
  45990. ))
  45991. characterMakers.push(() => makeCharacter(
  45992. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45993. {
  45994. front: {
  45995. height: math.unit(6, "feet"),
  45996. name: "Front",
  45997. image: {
  45998. source: "./media/characters/persephone/front.svg",
  45999. extra: 1895/1717,
  46000. bottom: 96/1991
  46001. }
  46002. },
  46003. back: {
  46004. height: math.unit(6, "feet"),
  46005. name: "Back",
  46006. image: {
  46007. source: "./media/characters/persephone/back.svg",
  46008. extra: 1868/1679,
  46009. bottom: 26/1894
  46010. }
  46011. },
  46012. casual: {
  46013. height: math.unit(6, "feet"),
  46014. name: "Casual",
  46015. image: {
  46016. source: "./media/characters/persephone/casual.svg",
  46017. extra: 1713/1541,
  46018. bottom: 76/1789
  46019. }
  46020. },
  46021. gaming: {
  46022. height: math.unit(3.55, "feet"),
  46023. name: "Gaming",
  46024. image: {
  46025. source: "./media/characters/persephone/gaming.svg",
  46026. extra: 1242/1038,
  46027. bottom: 66/1308
  46028. }
  46029. },
  46030. head: {
  46031. height: math.unit(2.15, "feet"),
  46032. name: "😐",
  46033. image: {
  46034. source: "./media/characters/persephone/head.svg"
  46035. }
  46036. },
  46037. talking: {
  46038. height: math.unit(2.5, "feet"),
  46039. name: "💬",
  46040. image: {
  46041. source: "./media/characters/persephone/talking.svg"
  46042. }
  46043. },
  46044. hmm: {
  46045. height: math.unit(2.28, "feet"),
  46046. name: "🤨",
  46047. image: {
  46048. source: "./media/characters/persephone/hmm.svg"
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Human Size",
  46055. height: math.unit(6, "feet")
  46056. },
  46057. {
  46058. name: "Big Steppy",
  46059. height: math.unit(600, "meters"),
  46060. default: true
  46061. },
  46062. {
  46063. name: "Galaxy Brain",
  46064. height: math.unit(1, "zettameter")
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(1.85, "meters"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/riley-foxthing/front.svg",
  46076. extra: 1495/1354,
  46077. bottom: 122/1617
  46078. }
  46079. },
  46080. frontAlt: {
  46081. height: math.unit(1.85, "meters"),
  46082. name: "Front (Alt)",
  46083. image: {
  46084. source: "./media/characters/riley-foxthing/front-alt.svg",
  46085. extra: 1572/1389,
  46086. bottom: 116/1688
  46087. }
  46088. },
  46089. },
  46090. [
  46091. {
  46092. name: "Normal Sized",
  46093. height: math.unit(1.85, "meters"),
  46094. default: true
  46095. },
  46096. {
  46097. name: "Quite Sizable",
  46098. height: math.unit(5, "meters")
  46099. },
  46100. {
  46101. name: "Rather Large",
  46102. height: math.unit(20, "meters")
  46103. },
  46104. {
  46105. name: "Macro",
  46106. height: math.unit(450, "meters")
  46107. },
  46108. {
  46109. name: "Giga",
  46110. height: math.unit(5, "km")
  46111. },
  46112. ]
  46113. ))
  46114. characterMakers.push(() => makeCharacter(
  46115. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46116. {
  46117. front: {
  46118. height: math.unit(6, "feet"),
  46119. weight: math.unit(200, "lb"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/blizzard/front.svg",
  46123. extra: 1136/990,
  46124. bottom: 136/1272
  46125. }
  46126. },
  46127. back: {
  46128. height: math.unit(6, "feet"),
  46129. weight: math.unit(200, "lb"),
  46130. name: "Back",
  46131. image: {
  46132. source: "./media/characters/blizzard/back.svg",
  46133. extra: 1175/1034,
  46134. bottom: 97/1272
  46135. }
  46136. },
  46137. sitting: {
  46138. height: math.unit(3.725, "feet"),
  46139. weight: math.unit(200, "lb"),
  46140. name: "Sitting",
  46141. image: {
  46142. source: "./media/characters/blizzard/sitting.svg",
  46143. extra: 581/485,
  46144. bottom: 90/671
  46145. }
  46146. },
  46147. frontWizard: {
  46148. height: math.unit(7.9, "feet"),
  46149. weight: math.unit(200, "lb"),
  46150. name: "Front (Wizard)",
  46151. image: {
  46152. source: "./media/characters/blizzard/front-wizard.svg"
  46153. }
  46154. },
  46155. backWizard: {
  46156. height: math.unit(7.9, "feet"),
  46157. weight: math.unit(200, "lb"),
  46158. name: "Back (Wizard)",
  46159. image: {
  46160. source: "./media/characters/blizzard/back-wizard.svg"
  46161. }
  46162. },
  46163. frontNsfw: {
  46164. height: math.unit(6, "feet"),
  46165. weight: math.unit(200, "lb"),
  46166. name: "Front (NSFW)",
  46167. image: {
  46168. source: "./media/characters/blizzard/front-nsfw.svg",
  46169. extra: 1136/990,
  46170. bottom: 136/1272
  46171. }
  46172. },
  46173. backNsfw: {
  46174. height: math.unit(6, "feet"),
  46175. weight: math.unit(200, "lb"),
  46176. name: "Back (NSFW)",
  46177. image: {
  46178. source: "./media/characters/blizzard/back-nsfw.svg",
  46179. extra: 1175/1034,
  46180. bottom: 97/1272
  46181. }
  46182. },
  46183. sittingNsfw: {
  46184. height: math.unit(3.725, "feet"),
  46185. weight: math.unit(200, "lb"),
  46186. name: "Sitting (NSFW)",
  46187. image: {
  46188. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46189. extra: 581/485,
  46190. bottom: 90/671
  46191. }
  46192. },
  46193. wizardFrontNsfw: {
  46194. height: math.unit(7.9, "feet"),
  46195. weight: math.unit(200, "lb"),
  46196. name: "Wizard (Front, NSFW)",
  46197. image: {
  46198. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46199. }
  46200. },
  46201. },
  46202. [
  46203. {
  46204. name: "Normal",
  46205. height: math.unit(6, "feet"),
  46206. default: true
  46207. },
  46208. ]
  46209. ))
  46210. characterMakers.push(() => makeCharacter(
  46211. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46212. {
  46213. front: {
  46214. height: math.unit(5 + 2/12, "feet"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/lumi/front.svg",
  46218. extra: 1328/1268,
  46219. bottom: 103/1431
  46220. }
  46221. },
  46222. back: {
  46223. height: math.unit(5 + 2/12, "feet"),
  46224. name: "Back",
  46225. image: {
  46226. source: "./media/characters/lumi/back.svg",
  46227. extra: 1381/1327,
  46228. bottom: 43/1424
  46229. }
  46230. },
  46231. },
  46232. [
  46233. {
  46234. name: "Normal",
  46235. height: math.unit(5 + 2/12, "feet"),
  46236. default: true
  46237. },
  46238. ]
  46239. ))
  46240. characterMakers.push(() => makeCharacter(
  46241. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46242. {
  46243. front: {
  46244. height: math.unit(5 + 9/12, "feet"),
  46245. name: "Front",
  46246. image: {
  46247. source: "./media/characters/aliya-cotton/front.svg",
  46248. extra: 577/564,
  46249. bottom: 29/606
  46250. }
  46251. },
  46252. },
  46253. [
  46254. {
  46255. name: "Normal",
  46256. height: math.unit(5 + 9/12, "feet"),
  46257. default: true
  46258. },
  46259. ]
  46260. ))
  46261. characterMakers.push(() => makeCharacter(
  46262. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46263. {
  46264. front: {
  46265. height: math.unit(2.7, "meters"),
  46266. weight: math.unit(25000, "lb"),
  46267. name: "Front",
  46268. image: {
  46269. source: "./media/characters/noah-luxray/front.svg",
  46270. extra: 1644/825,
  46271. bottom: 339/1983
  46272. }
  46273. },
  46274. side: {
  46275. height: math.unit(2.97, "meters"),
  46276. weight: math.unit(25000, "lb"),
  46277. name: "Side",
  46278. image: {
  46279. source: "./media/characters/noah-luxray/side.svg",
  46280. extra: 1319/650,
  46281. bottom: 163/1482
  46282. }
  46283. },
  46284. dick: {
  46285. height: math.unit(7.4, "feet"),
  46286. weight: math.unit(2500, "lb"),
  46287. name: "Dick",
  46288. image: {
  46289. source: "./media/characters/noah-luxray/dick.svg"
  46290. }
  46291. },
  46292. dickAlt: {
  46293. height: math.unit(10.83, "feet"),
  46294. weight: math.unit(2500, "lb"),
  46295. name: "Dick-alt",
  46296. image: {
  46297. source: "./media/characters/noah-luxray/dick-alt.svg"
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "BIG",
  46304. height: math.unit(2.7, "meters"),
  46305. default: true
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46311. {
  46312. standing: {
  46313. height: math.unit(183, "cm"),
  46314. weight: math.unit(68, "kg"),
  46315. name: "Standing",
  46316. image: {
  46317. source: "./media/characters/arion/standing.svg",
  46318. extra: 1869/1807,
  46319. bottom: 93/1962
  46320. }
  46321. },
  46322. reclining: {
  46323. height: math.unit(70.5, "cm"),
  46324. weight: math.unit(68, "lb"),
  46325. name: "Reclining",
  46326. image: {
  46327. source: "./media/characters/arion/reclining.svg",
  46328. extra: 937/870,
  46329. bottom: 63/1000
  46330. }
  46331. },
  46332. },
  46333. [
  46334. {
  46335. name: "Colossus Size, Low",
  46336. height: math.unit(33, "meters"),
  46337. default: true
  46338. },
  46339. {
  46340. name: "Colossus Size, Mid",
  46341. height: math.unit(52, "meters")
  46342. },
  46343. {
  46344. name: "Colossus Size, High",
  46345. height: math.unit(60, "meters")
  46346. },
  46347. {
  46348. name: "Titan Size, Low",
  46349. height: math.unit(91, "meters"),
  46350. },
  46351. {
  46352. name: "Titan Size, Mid",
  46353. height: math.unit(122, "meters")
  46354. },
  46355. {
  46356. name: "Titan Size, High",
  46357. height: math.unit(162, "meters")
  46358. },
  46359. ]
  46360. ))
  46361. characterMakers.push(() => makeCharacter(
  46362. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46363. {
  46364. front: {
  46365. height: math.unit(53, "meters"),
  46366. name: "Front",
  46367. image: {
  46368. source: "./media/characters/stellar-marbey/front.svg",
  46369. extra: 1913/1805,
  46370. bottom: 92/2005
  46371. }
  46372. },
  46373. back: {
  46374. height: math.unit(53, "meters"),
  46375. name: "Back",
  46376. image: {
  46377. source: "./media/characters/stellar-marbey/back.svg",
  46378. extra: 1960/1851,
  46379. bottom: 28/1988
  46380. }
  46381. },
  46382. mouth: {
  46383. height: math.unit(3.5, "meters"),
  46384. name: "Mouth",
  46385. image: {
  46386. source: "./media/characters/stellar-marbey/mouth.svg"
  46387. }
  46388. },
  46389. },
  46390. [
  46391. {
  46392. name: "Macro",
  46393. height: math.unit(53, "meters"),
  46394. default: true
  46395. },
  46396. ]
  46397. ))
  46398. characterMakers.push(() => makeCharacter(
  46399. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46400. {
  46401. front: {
  46402. height: math.unit(8 + 1/12, "feet"),
  46403. weight: math.unit(233, "lb"),
  46404. name: "Front",
  46405. image: {
  46406. source: "./media/characters/matsu/front.svg",
  46407. extra: 832/772,
  46408. bottom: 40/872
  46409. }
  46410. },
  46411. back: {
  46412. height: math.unit(8 + 1/12, "feet"),
  46413. weight: math.unit(233, "lb"),
  46414. name: "Back",
  46415. image: {
  46416. source: "./media/characters/matsu/back.svg",
  46417. extra: 839/780,
  46418. bottom: 47/886
  46419. }
  46420. },
  46421. },
  46422. [
  46423. {
  46424. name: "Normal",
  46425. height: math.unit(8 + 1/12, "feet"),
  46426. default: true
  46427. },
  46428. ]
  46429. ))
  46430. characterMakers.push(() => makeCharacter(
  46431. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46432. {
  46433. front: {
  46434. height: math.unit(4, "feet"),
  46435. weight: math.unit(148, "lb"),
  46436. name: "Front",
  46437. image: {
  46438. source: "./media/characters/thiz/front.svg",
  46439. extra: 1913/1748,
  46440. bottom: 62/1975
  46441. }
  46442. },
  46443. },
  46444. [
  46445. {
  46446. name: "Normal",
  46447. height: math.unit(4, "feet"),
  46448. default: true
  46449. },
  46450. ]
  46451. ))
  46452. characterMakers.push(() => makeCharacter(
  46453. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46454. {
  46455. front: {
  46456. height: math.unit(7 + 6/12, "feet"),
  46457. weight: math.unit(267, "lb"),
  46458. name: "Front",
  46459. image: {
  46460. source: "./media/characters/marcel/front.svg",
  46461. extra: 1221/1096,
  46462. bottom: 76/1297
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(7 + 6/12, "feet"),
  46470. default: true
  46471. },
  46472. ]
  46473. ))
  46474. characterMakers.push(() => makeCharacter(
  46475. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46476. {
  46477. side: {
  46478. height: math.unit(42, "meters"),
  46479. name: "Side",
  46480. image: {
  46481. source: "./media/characters/flake/side.svg",
  46482. extra: 1525/1306,
  46483. bottom: 209/1734
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(42, "meters"),
  46491. default: true
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46497. {
  46498. dressed: {
  46499. height: math.unit(6 + 4/12, "feet"),
  46500. weight: math.unit(520, "lb"),
  46501. name: "Dressed",
  46502. image: {
  46503. source: "./media/characters/someonne/dressed.svg",
  46504. extra: 1020/1010,
  46505. bottom: 178/1198
  46506. }
  46507. },
  46508. undressed: {
  46509. height: math.unit(6 + 4/12, "feet"),
  46510. weight: math.unit(520, "lb"),
  46511. name: "Undressed",
  46512. image: {
  46513. source: "./media/characters/someonne/undressed.svg",
  46514. extra: 1019/1014,
  46515. bottom: 169/1188
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(6 + 4/12, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46529. {
  46530. front: {
  46531. height: math.unit(3, "feet"),
  46532. weight: math.unit(30, "lb"),
  46533. name: "Front",
  46534. image: {
  46535. source: "./media/characters/till/front.svg",
  46536. extra: 892/823,
  46537. bottom: 55/947
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(3, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46551. {
  46552. front: {
  46553. height: math.unit(9 + 8/12, "feet"),
  46554. weight: math.unit(800, "lb"),
  46555. name: "Front",
  46556. image: {
  46557. source: "./media/characters/sydney-heki/front.svg",
  46558. extra: 1360/1300,
  46559. bottom: 22/1382
  46560. }
  46561. },
  46562. back: {
  46563. height: math.unit(9 + 8/12, "feet"),
  46564. weight: math.unit(800, "lb"),
  46565. name: "Back",
  46566. image: {
  46567. source: "./media/characters/sydney-heki/back.svg",
  46568. extra: 1356/1293,
  46569. bottom: 12/1368
  46570. }
  46571. },
  46572. frontDressed: {
  46573. height: math.unit(9 + 8/12, "feet"),
  46574. weight: math.unit(800, "lb"),
  46575. name: "Front-dressed",
  46576. image: {
  46577. source: "./media/characters/sydney-heki/front-dressed.svg",
  46578. extra: 1360/1300,
  46579. bottom: 22/1382
  46580. }
  46581. },
  46582. },
  46583. [
  46584. {
  46585. name: "Normal",
  46586. height: math.unit(9 + 8/12, "feet"),
  46587. default: true
  46588. },
  46589. {
  46590. name: "Macro",
  46591. height: math.unit(500, "feet")
  46592. },
  46593. {
  46594. name: "Megamacro",
  46595. height: math.unit(3.6, "miles")
  46596. },
  46597. ]
  46598. ))
  46599. characterMakers.push(() => makeCharacter(
  46600. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46601. {
  46602. front: {
  46603. height: math.unit(200, "cm"),
  46604. weight: math.unit(250, "lb"),
  46605. name: "Front",
  46606. image: {
  46607. source: "./media/characters/fowler-karlsson/front.svg",
  46608. extra: 897/845,
  46609. bottom: 123/1020
  46610. }
  46611. },
  46612. back: {
  46613. height: math.unit(200, "cm"),
  46614. weight: math.unit(250, "lb"),
  46615. name: "Back",
  46616. image: {
  46617. source: "./media/characters/fowler-karlsson/back.svg",
  46618. extra: 999/944,
  46619. bottom: 26/1025
  46620. }
  46621. },
  46622. dick: {
  46623. height: math.unit(1.92, "feet"),
  46624. weight: math.unit(150, "lb"),
  46625. name: "Dick",
  46626. image: {
  46627. source: "./media/characters/fowler-karlsson/dick.svg"
  46628. }
  46629. },
  46630. },
  46631. [
  46632. {
  46633. name: "Normal",
  46634. height: math.unit(200, "cm"),
  46635. default: true
  46636. },
  46637. {
  46638. name: "Smaller Macro",
  46639. height: math.unit(90, "m")
  46640. },
  46641. {
  46642. name: "Macro",
  46643. height: math.unit(150, "m")
  46644. },
  46645. {
  46646. name: "Bigger Macro",
  46647. height: math.unit(300, "m")
  46648. },
  46649. ]
  46650. ))
  46651. characterMakers.push(() => makeCharacter(
  46652. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46653. {
  46654. side: {
  46655. height: math.unit(8 + 2/12, "feet"),
  46656. weight: math.unit(1, "tonne"),
  46657. name: "Side",
  46658. image: {
  46659. source: "./media/characters/rylide/side.svg",
  46660. extra: 1318/1034,
  46661. bottom: 106/1424
  46662. }
  46663. },
  46664. sitting: {
  46665. height: math.unit(303, "cm"),
  46666. weight: math.unit(1, "tonne"),
  46667. name: "Sitting",
  46668. image: {
  46669. source: "./media/characters/rylide/sitting.svg",
  46670. extra: 1303/1103,
  46671. bottom: 36/1339
  46672. }
  46673. },
  46674. },
  46675. [
  46676. {
  46677. name: "Normal",
  46678. height: math.unit(8 + 2/12, "feet"),
  46679. default: true
  46680. },
  46681. ]
  46682. ))
  46683. characterMakers.push(() => makeCharacter(
  46684. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46685. {
  46686. front: {
  46687. height: math.unit(5 + 10/12, "feet"),
  46688. weight: math.unit(160, "lb"),
  46689. name: "Front",
  46690. image: {
  46691. source: "./media/characters/pudask/front.svg",
  46692. extra: 1616/1590,
  46693. bottom: 161/1777
  46694. }
  46695. },
  46696. },
  46697. [
  46698. {
  46699. name: "Ferret Height",
  46700. height: math.unit(2 + 5/12, "feet")
  46701. },
  46702. {
  46703. name: "Canon Height",
  46704. height: math.unit(5 + 10/12, "feet"),
  46705. default: true
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46711. {
  46712. front: {
  46713. height: math.unit(3 + 6/12, "feet"),
  46714. weight: math.unit(60, "lb"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/ramita/front.svg",
  46718. extra: 1402/1232,
  46719. bottom: 62/1464
  46720. }
  46721. },
  46722. dressed: {
  46723. height: math.unit(3 + 6/12, "feet"),
  46724. weight: math.unit(60, "lb"),
  46725. name: "Dressed",
  46726. image: {
  46727. source: "./media/characters/ramita/dressed.svg",
  46728. extra: 1534/1249,
  46729. bottom: 50/1584
  46730. }
  46731. },
  46732. },
  46733. [
  46734. {
  46735. name: "Normal",
  46736. height: math.unit(3 + 6/12, "feet"),
  46737. default: true
  46738. },
  46739. ]
  46740. ))
  46741. characterMakers.push(() => makeCharacter(
  46742. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46743. {
  46744. front: {
  46745. height: math.unit(8, "feet"),
  46746. name: "Front",
  46747. image: {
  46748. source: "./media/characters/ark/front.svg",
  46749. extra: 772/693,
  46750. bottom: 45/817
  46751. }
  46752. },
  46753. },
  46754. [
  46755. {
  46756. name: "Normal",
  46757. height: math.unit(8, "feet"),
  46758. default: true
  46759. },
  46760. ]
  46761. ))
  46762. characterMakers.push(() => makeCharacter(
  46763. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46764. {
  46765. front: {
  46766. height: math.unit(6, "feet"),
  46767. weight: math.unit(250, "lb"),
  46768. volume: math.unit(5/8, "gallons"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/ludwig-horn/front.svg",
  46772. extra: 1782/1635,
  46773. bottom: 96/1878
  46774. }
  46775. },
  46776. back: {
  46777. height: math.unit(6, "feet"),
  46778. weight: math.unit(250, "lb"),
  46779. volume: math.unit(5/8, "gallons"),
  46780. name: "Back",
  46781. image: {
  46782. source: "./media/characters/ludwig-horn/back.svg",
  46783. extra: 1874/1729,
  46784. bottom: 27/1901
  46785. }
  46786. },
  46787. dick: {
  46788. height: math.unit(1.05, "feet"),
  46789. weight: math.unit(15, "lb"),
  46790. volume: math.unit(5/8, "gallons"),
  46791. name: "Dick",
  46792. image: {
  46793. source: "./media/characters/ludwig-horn/dick.svg"
  46794. }
  46795. },
  46796. },
  46797. [
  46798. {
  46799. name: "Small",
  46800. height: math.unit(6, "feet")
  46801. },
  46802. {
  46803. name: "Typical",
  46804. height: math.unit(12, "feet"),
  46805. default: true
  46806. },
  46807. {
  46808. name: "Building",
  46809. height: math.unit(80, "feet")
  46810. },
  46811. {
  46812. name: "Town",
  46813. height: math.unit(800, "feet")
  46814. },
  46815. {
  46816. name: "Kingdom",
  46817. height: math.unit(80000, "feet")
  46818. },
  46819. {
  46820. name: "Planet",
  46821. height: math.unit(8000000, "feet")
  46822. },
  46823. {
  46824. name: "Universe",
  46825. height: math.unit(8000000000, "feet")
  46826. },
  46827. {
  46828. name: "Transcended",
  46829. height: math.unit(8e27, "feet")
  46830. },
  46831. ]
  46832. ))
  46833. characterMakers.push(() => makeCharacter(
  46834. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46835. {
  46836. front: {
  46837. height: math.unit(5, "feet"),
  46838. weight: math.unit(50, "kg"),
  46839. name: "Front",
  46840. image: {
  46841. source: "./media/characters/biot-avery/front.svg",
  46842. extra: 1295/1232,
  46843. bottom: 86/1381
  46844. }
  46845. },
  46846. },
  46847. [
  46848. {
  46849. name: "Normal",
  46850. height: math.unit(5, "feet"),
  46851. default: true
  46852. },
  46853. ]
  46854. ))
  46855. characterMakers.push(() => makeCharacter(
  46856. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46857. {
  46858. front: {
  46859. height: math.unit(6, "feet"),
  46860. name: "Front",
  46861. image: {
  46862. source: "./media/characters/kitsune-kiro/front.svg",
  46863. extra: 1270/1158,
  46864. bottom: 42/1312
  46865. }
  46866. },
  46867. frontAlt: {
  46868. height: math.unit(6, "feet"),
  46869. name: "Front-alt",
  46870. image: {
  46871. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46872. extra: 1130/1081,
  46873. bottom: 36/1166
  46874. }
  46875. },
  46876. },
  46877. [
  46878. {
  46879. name: "Smol",
  46880. height: math.unit(3, "feet")
  46881. },
  46882. {
  46883. name: "Normal",
  46884. height: math.unit(6, "feet"),
  46885. default: true
  46886. },
  46887. ]
  46888. ))
  46889. characterMakers.push(() => makeCharacter(
  46890. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46891. {
  46892. front: {
  46893. height: math.unit(6, "feet"),
  46894. weight: math.unit(125, "lb"),
  46895. name: "Front",
  46896. image: {
  46897. source: "./media/characters/jack-thatcher/front.svg",
  46898. extra: 1474/1370,
  46899. bottom: 26/1500
  46900. }
  46901. },
  46902. back: {
  46903. height: math.unit(6, "feet"),
  46904. weight: math.unit(125, "lb"),
  46905. name: "Back",
  46906. image: {
  46907. source: "./media/characters/jack-thatcher/back.svg",
  46908. extra: 1489/1384,
  46909. bottom: 18/1507
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(6, "feet"),
  46917. default: true
  46918. },
  46919. {
  46920. name: "Macro",
  46921. height: math.unit(75, "feet")
  46922. },
  46923. {
  46924. name: "Macro-er",
  46925. height: math.unit(250, "feet")
  46926. },
  46927. ]
  46928. ))
  46929. characterMakers.push(() => makeCharacter(
  46930. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46931. {
  46932. front: {
  46933. height: math.unit(7, "feet"),
  46934. weight: math.unit(110, "kg"),
  46935. name: "Front",
  46936. image: {
  46937. source: "./media/characters/max-hyper/front.svg",
  46938. extra: 1969/1881,
  46939. bottom: 49/2018
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "Normal",
  46946. height: math.unit(7, "feet"),
  46947. default: true
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46953. {
  46954. front: {
  46955. height: math.unit(5 + 5/12, "feet"),
  46956. weight: math.unit(160, "lb"),
  46957. name: "Front",
  46958. image: {
  46959. source: "./media/characters/spook/front.svg",
  46960. extra: 794/791,
  46961. bottom: 54/848
  46962. }
  46963. },
  46964. back: {
  46965. height: math.unit(5 + 5/12, "feet"),
  46966. weight: math.unit(160, "lb"),
  46967. name: "Back",
  46968. image: {
  46969. source: "./media/characters/spook/back.svg",
  46970. extra: 812/798,
  46971. bottom: 32/844
  46972. }
  46973. },
  46974. },
  46975. [
  46976. {
  46977. name: "Normal",
  46978. height: math.unit(5 + 5/12, "feet"),
  46979. default: true
  46980. },
  46981. ]
  46982. ))
  46983. characterMakers.push(() => makeCharacter(
  46984. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46985. {
  46986. front: {
  46987. height: math.unit(18, "feet"),
  46988. name: "Front",
  46989. image: {
  46990. source: "./media/characters/xeaduulix/front.svg",
  46991. extra: 1380/1166,
  46992. bottom: 110/1490
  46993. }
  46994. },
  46995. back: {
  46996. height: math.unit(18, "feet"),
  46997. name: "Back",
  46998. image: {
  46999. source: "./media/characters/xeaduulix/back.svg",
  47000. extra: 1592/1170,
  47001. bottom: 128/1720
  47002. }
  47003. },
  47004. frontNsfw: {
  47005. height: math.unit(18, "feet"),
  47006. name: "Front (NSFW)",
  47007. image: {
  47008. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47009. extra: 1380/1166,
  47010. bottom: 110/1490
  47011. }
  47012. },
  47013. backNsfw: {
  47014. height: math.unit(18, "feet"),
  47015. name: "Back (NSFW)",
  47016. image: {
  47017. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47018. extra: 1592/1170,
  47019. bottom: 128/1720
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(18, "feet"),
  47027. default: true
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47033. {
  47034. spreadWings: {
  47035. height: math.unit(20, "feet"),
  47036. name: "Spread Wings",
  47037. image: {
  47038. source: "./media/characters/fledge/spread-wings.svg",
  47039. extra: 693/635,
  47040. bottom: 26/719
  47041. }
  47042. },
  47043. front: {
  47044. height: math.unit(20, "feet"),
  47045. name: "Front",
  47046. image: {
  47047. source: "./media/characters/fledge/front.svg",
  47048. extra: 684/637,
  47049. bottom: 18/702
  47050. }
  47051. },
  47052. frontAlt: {
  47053. height: math.unit(20, "feet"),
  47054. name: "Front (Alt)",
  47055. image: {
  47056. source: "./media/characters/fledge/front-alt.svg",
  47057. extra: 708/664,
  47058. bottom: 13/721
  47059. }
  47060. },
  47061. back: {
  47062. height: math.unit(20, "feet"),
  47063. name: "Back",
  47064. image: {
  47065. source: "./media/characters/fledge/back.svg",
  47066. extra: 718/634,
  47067. bottom: 22/740
  47068. }
  47069. },
  47070. head: {
  47071. height: math.unit(5.55, "feet"),
  47072. name: "Head",
  47073. image: {
  47074. source: "./media/characters/fledge/head.svg"
  47075. }
  47076. },
  47077. headAlt: {
  47078. height: math.unit(5.1, "feet"),
  47079. name: "Head (Alt)",
  47080. image: {
  47081. source: "./media/characters/fledge/head-alt.svg"
  47082. }
  47083. },
  47084. },
  47085. [
  47086. {
  47087. name: "Small",
  47088. height: math.unit(6 + 2/12, "feet")
  47089. },
  47090. {
  47091. name: "Big",
  47092. height: math.unit(20, "feet"),
  47093. default: true
  47094. },
  47095. {
  47096. name: "Giant",
  47097. height: math.unit(100, "feet")
  47098. },
  47099. {
  47100. name: "Macro",
  47101. height: math.unit(200, "feet")
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(1, "meter"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/atlas-morenai/front.svg",
  47113. extra: 1275/1043,
  47114. bottom: 19/1294
  47115. }
  47116. },
  47117. back: {
  47118. height: math.unit(1, "meter"),
  47119. name: "Back",
  47120. image: {
  47121. source: "./media/characters/atlas-morenai/back.svg",
  47122. extra: 1141/1001,
  47123. bottom: 25/1166
  47124. }
  47125. },
  47126. },
  47127. [
  47128. {
  47129. name: "Normal",
  47130. height: math.unit(1, "meter"),
  47131. default: true
  47132. },
  47133. {
  47134. name: "Magic-Infused",
  47135. height: math.unit(5, "meters")
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47141. {
  47142. front: {
  47143. height: math.unit(5, "meters"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/cintia/front.svg",
  47147. extra: 1312/1228,
  47148. bottom: 38/1350
  47149. }
  47150. },
  47151. back: {
  47152. height: math.unit(5, "meters"),
  47153. name: "Back",
  47154. image: {
  47155. source: "./media/characters/cintia/back.svg",
  47156. extra: 1260/1166,
  47157. bottom: 98/1358
  47158. }
  47159. },
  47160. frontDick: {
  47161. height: math.unit(5, "meters"),
  47162. name: "Front (Dick)",
  47163. image: {
  47164. source: "./media/characters/cintia/front-dick.svg",
  47165. extra: 1312/1228,
  47166. bottom: 38/1350
  47167. }
  47168. },
  47169. backDick: {
  47170. height: math.unit(5, "meters"),
  47171. name: "Back (Dick)",
  47172. image: {
  47173. source: "./media/characters/cintia/back-dick.svg",
  47174. extra: 1260/1166,
  47175. bottom: 98/1358
  47176. }
  47177. },
  47178. bust: {
  47179. height: math.unit(1.97, "meters"),
  47180. name: "Bust",
  47181. image: {
  47182. source: "./media/characters/cintia/bust.svg",
  47183. extra: 617/565,
  47184. bottom: 0/617
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Normal",
  47191. height: math.unit(5, "meters"),
  47192. default: true
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47198. {
  47199. side: {
  47200. height: math.unit(100, "feet"),
  47201. name: "Side",
  47202. image: {
  47203. source: "./media/characters/denora/side.svg",
  47204. extra: 875/803,
  47205. bottom: 9/884
  47206. }
  47207. },
  47208. },
  47209. [
  47210. {
  47211. name: "Standard",
  47212. height: math.unit(100, "feet"),
  47213. default: true
  47214. },
  47215. {
  47216. name: "Grand",
  47217. height: math.unit(1000, "feet")
  47218. },
  47219. {
  47220. name: "Conquering",
  47221. height: math.unit(10000, "feet")
  47222. },
  47223. ]
  47224. ))
  47225. characterMakers.push(() => makeCharacter(
  47226. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47227. {
  47228. dressed: {
  47229. height: math.unit(8 + 5/12, "feet"),
  47230. weight: math.unit(700, "lb"),
  47231. name: "Dressed",
  47232. image: {
  47233. source: "./media/characters/kiva/dressed.svg",
  47234. extra: 1102/1055,
  47235. bottom: 60/1162
  47236. }
  47237. },
  47238. nude: {
  47239. height: math.unit(8 + 5/12, "feet"),
  47240. weight: math.unit(700, "lb"),
  47241. name: "Nude",
  47242. image: {
  47243. source: "./media/characters/kiva/nude.svg",
  47244. extra: 1102/1055,
  47245. bottom: 60/1162
  47246. }
  47247. },
  47248. },
  47249. [
  47250. {
  47251. name: "Base Height",
  47252. height: math.unit(8 + 5/12, "feet"),
  47253. default: true
  47254. },
  47255. {
  47256. name: "Macro",
  47257. height: math.unit(100, "feet")
  47258. },
  47259. {
  47260. name: "Max",
  47261. height: math.unit(3280, "feet")
  47262. },
  47263. ]
  47264. ))
  47265. characterMakers.push(() => makeCharacter(
  47266. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47267. {
  47268. front: {
  47269. height: math.unit(6 + 8/12, "feet"),
  47270. weight: math.unit(250, "lb"),
  47271. name: "Front",
  47272. image: {
  47273. source: "./media/characters/ztragon/front.svg",
  47274. extra: 1825/1684,
  47275. bottom: 98/1923
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Normal",
  47282. height: math.unit(6 + 8/12, "feet"),
  47283. default: true
  47284. },
  47285. {
  47286. name: "Macro",
  47287. height: math.unit(80, "feet")
  47288. },
  47289. ]
  47290. ))
  47291. characterMakers.push(() => makeCharacter(
  47292. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47293. {
  47294. front: {
  47295. height: math.unit(10.4, "feet"),
  47296. weight: math.unit(2, "tons"),
  47297. name: "Front",
  47298. image: {
  47299. source: "./media/characters/yesenia/front.svg",
  47300. extra: 1479/1474,
  47301. bottom: 233/1712
  47302. }
  47303. },
  47304. },
  47305. [
  47306. {
  47307. name: "Normal",
  47308. height: math.unit(10.4, "feet"),
  47309. default: true
  47310. },
  47311. ]
  47312. ))
  47313. characterMakers.push(() => makeCharacter(
  47314. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47315. {
  47316. normal: {
  47317. height: math.unit(6 + 1/12, "feet"),
  47318. weight: math.unit(180, "lb"),
  47319. name: "Normal",
  47320. image: {
  47321. source: "./media/characters/leanne-lycheborne/normal.svg",
  47322. extra: 1748/1660,
  47323. bottom: 98/1846
  47324. }
  47325. },
  47326. were: {
  47327. height: math.unit(12, "feet"),
  47328. weight: math.unit(1600, "lb"),
  47329. name: "Were",
  47330. image: {
  47331. source: "./media/characters/leanne-lycheborne/were.svg",
  47332. extra: 1485/1432,
  47333. bottom: 66/1551
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(6 + 1/12, "feet"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47347. {
  47348. side: {
  47349. height: math.unit(13, "feet"),
  47350. name: "Side",
  47351. image: {
  47352. source: "./media/characters/kira-tyler/side.svg",
  47353. extra: 693/393,
  47354. bottom: 58/751
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(13, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(10.3, "feet"),
  47371. weight: math.unit(150, "lb"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/blaze/front.svg",
  47375. extra: 1378/1286,
  47376. bottom: 172/1550
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(10.3, "feet"),
  47384. default: true
  47385. },
  47386. ]
  47387. ))
  47388. characterMakers.push(() => makeCharacter(
  47389. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47390. {
  47391. side: {
  47392. height: math.unit(2, "meters"),
  47393. weight: math.unit(400, "kg"),
  47394. name: "Side",
  47395. image: {
  47396. source: "./media/characters/anu/side.svg",
  47397. extra: 506/394,
  47398. bottom: 18/524
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Humanoid",
  47405. height: math.unit(2, "meters")
  47406. },
  47407. {
  47408. name: "Normal",
  47409. height: math.unit(5, "meters"),
  47410. default: true
  47411. },
  47412. ]
  47413. ))
  47414. characterMakers.push(() => makeCharacter(
  47415. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47416. {
  47417. front: {
  47418. height: math.unit(5 + 5/12, "feet"),
  47419. weight: math.unit(170, "lb"),
  47420. name: "Front",
  47421. image: {
  47422. source: "./media/characters/synx-the-lynx/front.svg",
  47423. extra: 1893/1745,
  47424. bottom: 17/1910
  47425. }
  47426. },
  47427. side: {
  47428. height: math.unit(5 + 5/12, "feet"),
  47429. weight: math.unit(170, "lb"),
  47430. name: "Side",
  47431. image: {
  47432. source: "./media/characters/synx-the-lynx/side.svg",
  47433. extra: 1884/1740,
  47434. bottom: 39/1923
  47435. }
  47436. },
  47437. back: {
  47438. height: math.unit(5 + 5/12, "feet"),
  47439. weight: math.unit(170, "lb"),
  47440. name: "Back",
  47441. image: {
  47442. source: "./media/characters/synx-the-lynx/back.svg",
  47443. extra: 1903/1755,
  47444. bottom: 14/1917
  47445. }
  47446. },
  47447. },
  47448. [
  47449. {
  47450. name: "Normal",
  47451. height: math.unit(5 + 5/12, "feet"),
  47452. default: true
  47453. },
  47454. ]
  47455. ))
  47456. characterMakers.push(() => makeCharacter(
  47457. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47458. {
  47459. back: {
  47460. height: math.unit(15, "feet"),
  47461. name: "Back",
  47462. image: {
  47463. source: "./media/characters/nadezda-fex/back.svg",
  47464. extra: 1695/1481,
  47465. bottom: 25/1720
  47466. }
  47467. },
  47468. },
  47469. [
  47470. {
  47471. name: "Normal",
  47472. height: math.unit(15, "feet"),
  47473. default: true
  47474. },
  47475. {
  47476. name: "Macro",
  47477. height: math.unit(2.5, "miles")
  47478. },
  47479. {
  47480. name: "Goddess",
  47481. height: math.unit(2, "multiverses")
  47482. },
  47483. ]
  47484. ))
  47485. characterMakers.push(() => makeCharacter(
  47486. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47487. {
  47488. front: {
  47489. height: math.unit(216, "cm"),
  47490. name: "Front",
  47491. image: {
  47492. source: "./media/characters/lev/front.svg",
  47493. extra: 1728/1670,
  47494. bottom: 82/1810
  47495. }
  47496. },
  47497. back: {
  47498. height: math.unit(216, "cm"),
  47499. name: "Back",
  47500. image: {
  47501. source: "./media/characters/lev/back.svg",
  47502. extra: 1738/1675,
  47503. bottom: 24/1762
  47504. }
  47505. },
  47506. dressed: {
  47507. height: math.unit(216, "cm"),
  47508. name: "Dressed",
  47509. image: {
  47510. source: "./media/characters/lev/dressed.svg",
  47511. extra: 1397/1351,
  47512. bottom: 73/1470
  47513. }
  47514. },
  47515. head: {
  47516. height: math.unit(0.51, "meter"),
  47517. name: "Head",
  47518. image: {
  47519. source: "./media/characters/lev/head.svg"
  47520. }
  47521. },
  47522. },
  47523. [
  47524. {
  47525. name: "Normal",
  47526. height: math.unit(216, "cm"),
  47527. default: true
  47528. },
  47529. {
  47530. name: "Relatively Macro",
  47531. height: math.unit(80, "meters")
  47532. },
  47533. {
  47534. name: "Megamacro",
  47535. height: math.unit(21600, "meters")
  47536. },
  47537. {
  47538. name: "Megamacro+",
  47539. height: math.unit(64800, "meters")
  47540. },
  47541. ]
  47542. ))
  47543. characterMakers.push(() => makeCharacter(
  47544. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47545. {
  47546. front: {
  47547. height: math.unit(2, "meters"),
  47548. weight: math.unit(80, "kg"),
  47549. name: "Front",
  47550. image: {
  47551. source: "./media/characters/moka/front.svg",
  47552. extra: 1337/1255,
  47553. bottom: 58/1395
  47554. }
  47555. },
  47556. },
  47557. [
  47558. {
  47559. name: "Micro",
  47560. height: math.unit(15, "cm")
  47561. },
  47562. {
  47563. name: "Normal",
  47564. height: math.unit(2, "meters"),
  47565. default: true
  47566. },
  47567. {
  47568. name: "Macro",
  47569. height: math.unit(20, "meters"),
  47570. },
  47571. ]
  47572. ))
  47573. characterMakers.push(() => makeCharacter(
  47574. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47575. {
  47576. front: {
  47577. height: math.unit(9, "feet"),
  47578. weight: math.unit(240, "lb"),
  47579. name: "Front",
  47580. image: {
  47581. source: "./media/characters/kuzco/front.svg",
  47582. extra: 1593/1487,
  47583. bottom: 32/1625
  47584. }
  47585. },
  47586. side: {
  47587. height: math.unit(9, "feet"),
  47588. weight: math.unit(240, "lb"),
  47589. name: "Side",
  47590. image: {
  47591. source: "./media/characters/kuzco/side.svg",
  47592. extra: 1575/1485,
  47593. bottom: 30/1605
  47594. }
  47595. },
  47596. back: {
  47597. height: math.unit(9, "feet"),
  47598. weight: math.unit(240, "lb"),
  47599. name: "Back",
  47600. image: {
  47601. source: "./media/characters/kuzco/back.svg",
  47602. extra: 1603/1514,
  47603. bottom: 14/1617
  47604. }
  47605. },
  47606. },
  47607. [
  47608. {
  47609. name: "Normal",
  47610. height: math.unit(9, "feet"),
  47611. default: true
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47617. {
  47618. side: {
  47619. height: math.unit(2, "meters"),
  47620. weight: math.unit(300, "kg"),
  47621. name: "Side",
  47622. image: {
  47623. source: "./media/characters/ceruleus/side.svg",
  47624. extra: 1068/974,
  47625. bottom: 126/1194
  47626. }
  47627. },
  47628. maw: {
  47629. height: math.unit(0.8125, "meter"),
  47630. name: "Maw",
  47631. image: {
  47632. source: "./media/characters/ceruleus/maw.svg"
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(16, "meters"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(9, "feet"),
  47649. weight: math.unit(500, "kg"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/acouya/front.svg",
  47653. extra: 1660/1473,
  47654. bottom: 28/1688
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Normal",
  47661. height: math.unit(9, "feet"),
  47662. default: true
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(5 + 6/12, "feet"),
  47671. weight: math.unit(195, "lb"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/vant/front.svg",
  47675. extra: 1396/1320,
  47676. bottom: 20/1416
  47677. }
  47678. },
  47679. back: {
  47680. height: math.unit(5 + 6/12, "feet"),
  47681. weight: math.unit(195, "lb"),
  47682. name: "Back",
  47683. image: {
  47684. source: "./media/characters/vant/back.svg",
  47685. extra: 1396/1320,
  47686. bottom: 20/1416
  47687. }
  47688. },
  47689. maw: {
  47690. height: math.unit(0.75, "feet"),
  47691. name: "Maw",
  47692. image: {
  47693. source: "./media/characters/vant/maw.svg"
  47694. }
  47695. },
  47696. paw: {
  47697. height: math.unit(1.07, "feet"),
  47698. name: "Paw",
  47699. image: {
  47700. source: "./media/characters/vant/paw.svg"
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Micro",
  47707. height: math.unit(0.25, "inches")
  47708. },
  47709. {
  47710. name: "Normal",
  47711. height: math.unit(5 + 6/12, "feet"),
  47712. default: true
  47713. },
  47714. {
  47715. name: "Macro",
  47716. height: math.unit(75, "feet")
  47717. },
  47718. ]
  47719. ))
  47720. characterMakers.push(() => makeCharacter(
  47721. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47722. {
  47723. front: {
  47724. height: math.unit(30, "meters"),
  47725. weight: math.unit(363, "tons"),
  47726. name: "Front",
  47727. image: {
  47728. source: "./media/characters/ahra/front.svg",
  47729. extra: 1914/1814,
  47730. bottom: 46/1960
  47731. }
  47732. },
  47733. },
  47734. [
  47735. {
  47736. name: "Macro",
  47737. height: math.unit(30, "meters"),
  47738. default: true
  47739. },
  47740. ]
  47741. ))
  47742. characterMakers.push(() => makeCharacter(
  47743. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47744. {
  47745. undressed: {
  47746. height: math.unit(2, "m"),
  47747. weight: math.unit(250, "kg"),
  47748. name: "Undressed",
  47749. image: {
  47750. source: "./media/characters/coriander/undressed.svg",
  47751. extra: 1757/1606,
  47752. bottom: 107/1864
  47753. }
  47754. },
  47755. dressed: {
  47756. height: math.unit(2, "m"),
  47757. weight: math.unit(250, "kg"),
  47758. name: "Dressed",
  47759. image: {
  47760. source: "./media/characters/coriander/dressed.svg",
  47761. extra: 1757/1606,
  47762. bottom: 107/1864
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(4, "meters"),
  47770. default: true
  47771. },
  47772. {
  47773. name: "XL",
  47774. height: math.unit(6, "meters")
  47775. },
  47776. {
  47777. name: "XXL",
  47778. height: math.unit(8, "meters")
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47784. {
  47785. front: {
  47786. height: math.unit(6, "feet"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/syrinx/front.svg",
  47790. extra: 1557/1259,
  47791. bottom: 171/1728
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(6 + 3/12, "feet"),
  47799. default: true
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47805. {
  47806. front: {
  47807. height: math.unit(11 + 6/12, "feet"),
  47808. weight: math.unit(1.5, "tons"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/bor/front.svg",
  47812. extra: 1189/1109,
  47813. bottom: 170/1359
  47814. }
  47815. },
  47816. },
  47817. [
  47818. {
  47819. name: "Normal",
  47820. height: math.unit(11 + 6/12, "feet"),
  47821. default: true
  47822. },
  47823. {
  47824. name: "Macro",
  47825. height: math.unit(32 + 9/12, "feet")
  47826. },
  47827. ]
  47828. ))
  47829. characterMakers.push(() => makeCharacter(
  47830. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47831. {
  47832. anthro: {
  47833. height: math.unit(9, "feet"),
  47834. weight: math.unit(2076, "lb"),
  47835. name: "Anthro",
  47836. image: {
  47837. source: "./media/characters/abacus/anthro.svg",
  47838. extra: 1540/1494,
  47839. bottom: 233/1773
  47840. }
  47841. },
  47842. pigeon: {
  47843. height: math.unit(1, "feet"),
  47844. name: "Pigeon",
  47845. image: {
  47846. source: "./media/characters/abacus/pigeon.svg",
  47847. extra: 528/525,
  47848. bottom: 46/574
  47849. }
  47850. },
  47851. },
  47852. [
  47853. {
  47854. name: "Normal",
  47855. height: math.unit(9, "feet"),
  47856. default: true
  47857. },
  47858. ]
  47859. ))
  47860. characterMakers.push(() => makeCharacter(
  47861. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47862. {
  47863. side: {
  47864. height: math.unit(6, "feet"),
  47865. name: "Side",
  47866. image: {
  47867. source: "./media/characters/delkhan/side.svg",
  47868. extra: 1884/1786,
  47869. bottom: 308/2192
  47870. }
  47871. },
  47872. head: {
  47873. height: math.unit(3.38, "feet"),
  47874. name: "Head",
  47875. image: {
  47876. source: "./media/characters/delkhan/head.svg"
  47877. }
  47878. },
  47879. },
  47880. [
  47881. {
  47882. name: "Normal",
  47883. height: math.unit(72, "feet"),
  47884. default: true
  47885. },
  47886. {
  47887. name: "Giant",
  47888. height: math.unit(172, "feet")
  47889. },
  47890. ]
  47891. ))
  47892. characterMakers.push(() => makeCharacter(
  47893. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47894. {
  47895. standing: {
  47896. height: math.unit(6, "feet"),
  47897. name: "Standing",
  47898. image: {
  47899. source: "./media/characters/euchidat/standing.svg",
  47900. extra: 1612/1553,
  47901. bottom: 116/1728
  47902. }
  47903. },
  47904. leaning: {
  47905. height: math.unit(6, "feet"),
  47906. name: "Leaning",
  47907. image: {
  47908. source: "./media/characters/euchidat/leaning.svg",
  47909. extra: 1719/1674,
  47910. bottom: 27/1746
  47911. }
  47912. },
  47913. },
  47914. [
  47915. {
  47916. name: "Normal",
  47917. height: math.unit(175, "feet"),
  47918. default: true
  47919. },
  47920. {
  47921. name: "Megamacro",
  47922. height: math.unit(190, "miles")
  47923. },
  47924. {
  47925. name: "Gigamacro",
  47926. height: math.unit(190000, "miles")
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47932. {
  47933. front: {
  47934. height: math.unit(6, "feet"),
  47935. weight: math.unit(150, "lb"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/rebecca-stack/front.svg",
  47939. extra: 1256/1201,
  47940. bottom: 18/1274
  47941. }
  47942. },
  47943. },
  47944. [
  47945. {
  47946. name: "Normal",
  47947. height: math.unit(5 + 8/12, "feet"),
  47948. default: true
  47949. },
  47950. {
  47951. name: "Demolitionist",
  47952. height: math.unit(200, "feet")
  47953. },
  47954. {
  47955. name: "Out of Control",
  47956. height: math.unit(2, "miles")
  47957. },
  47958. {
  47959. name: "Giga",
  47960. height: math.unit(7200, "miles")
  47961. },
  47962. ]
  47963. ))
  47964. characterMakers.push(() => makeCharacter(
  47965. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47966. {
  47967. front: {
  47968. height: math.unit(6, "feet"),
  47969. weight: math.unit(150, "lb"),
  47970. name: "Front",
  47971. image: {
  47972. source: "./media/characters/jenny-cartwright/front.svg",
  47973. extra: 1384/1376,
  47974. bottom: 58/1442
  47975. }
  47976. },
  47977. },
  47978. [
  47979. {
  47980. name: "Normal",
  47981. height: math.unit(6 + 7/12, "feet"),
  47982. default: true
  47983. },
  47984. {
  47985. name: "Librarian",
  47986. height: math.unit(55, "feet")
  47987. },
  47988. {
  47989. name: "Sightseer",
  47990. height: math.unit(50, "miles")
  47991. },
  47992. {
  47993. name: "Giga",
  47994. height: math.unit(30000, "miles")
  47995. },
  47996. ]
  47997. ))
  47998. characterMakers.push(() => makeCharacter(
  47999. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48000. {
  48001. nude: {
  48002. height: math.unit(8, "feet"),
  48003. weight: math.unit(225, "lb"),
  48004. name: "Nude",
  48005. image: {
  48006. source: "./media/characters/marvy/nude.svg",
  48007. extra: 1900/1683,
  48008. bottom: 89/1989
  48009. }
  48010. },
  48011. dressed: {
  48012. height: math.unit(8, "feet"),
  48013. weight: math.unit(225, "lb"),
  48014. name: "Dressed",
  48015. image: {
  48016. source: "./media/characters/marvy/dressed.svg",
  48017. extra: 1900/1683,
  48018. bottom: 89/1989
  48019. }
  48020. },
  48021. head: {
  48022. height: math.unit(2.85, "feet"),
  48023. name: "Head",
  48024. image: {
  48025. source: "./media/characters/marvy/head.svg"
  48026. }
  48027. },
  48028. },
  48029. [
  48030. {
  48031. name: "Normal",
  48032. height: math.unit(8, "feet"),
  48033. default: true
  48034. },
  48035. ]
  48036. ))
  48037. characterMakers.push(() => makeCharacter(
  48038. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48039. {
  48040. front: {
  48041. height: math.unit(8, "feet"),
  48042. weight: math.unit(250, "lb"),
  48043. name: "Front",
  48044. image: {
  48045. source: "./media/characters/leah/front.svg",
  48046. extra: 1257/1149,
  48047. bottom: 109/1366
  48048. }
  48049. },
  48050. },
  48051. [
  48052. {
  48053. name: "Normal",
  48054. height: math.unit(8, "feet"),
  48055. default: true
  48056. },
  48057. {
  48058. name: "Minimacro",
  48059. height: math.unit(40, "feet")
  48060. },
  48061. {
  48062. name: "Macro",
  48063. height: math.unit(124, "feet")
  48064. },
  48065. {
  48066. name: "Megamacro",
  48067. height: math.unit(850, "feet")
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48073. {
  48074. side: {
  48075. height: math.unit(13 + 6/12, "feet"),
  48076. weight: math.unit(3200, "lb"),
  48077. name: "Side",
  48078. image: {
  48079. source: "./media/characters/alvir/side.svg",
  48080. extra: 896/589,
  48081. bottom: 26/922
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(13 + 6/12, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(5 + 4/12, "feet"),
  48098. weight: math.unit(236, "lb"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/zaina-khalil/front.svg",
  48102. extra: 1533/1485,
  48103. bottom: 94/1627
  48104. }
  48105. },
  48106. side: {
  48107. height: math.unit(5 + 4/12, "feet"),
  48108. weight: math.unit(236, "lb"),
  48109. name: "Side",
  48110. image: {
  48111. source: "./media/characters/zaina-khalil/side.svg",
  48112. extra: 1537/1498,
  48113. bottom: 66/1603
  48114. }
  48115. },
  48116. back: {
  48117. height: math.unit(5 + 4/12, "feet"),
  48118. weight: math.unit(236, "lb"),
  48119. name: "Back",
  48120. image: {
  48121. source: "./media/characters/zaina-khalil/back.svg",
  48122. extra: 1546/1494,
  48123. bottom: 89/1635
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(5 + 4/12, "feet"),
  48131. default: true
  48132. },
  48133. ]
  48134. ))
  48135. characterMakers.push(() => makeCharacter(
  48136. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48137. {
  48138. side: {
  48139. height: math.unit(12, "feet"),
  48140. weight: math.unit(4000, "lb"),
  48141. name: "Side",
  48142. image: {
  48143. source: "./media/characters/terry/side.svg",
  48144. extra: 1518/1439,
  48145. bottom: 149/1667
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(12, "feet"),
  48153. default: true
  48154. },
  48155. ]
  48156. ))
  48157. characterMakers.push(() => makeCharacter(
  48158. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48159. {
  48160. front: {
  48161. height: math.unit(12, "feet"),
  48162. weight: math.unit(1500, "lb"),
  48163. name: "Front",
  48164. image: {
  48165. source: "./media/characters/kahea/front.svg",
  48166. extra: 1722/1617,
  48167. bottom: 179/1901
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Normal",
  48174. height: math.unit(12, "feet"),
  48175. default: true
  48176. },
  48177. ]
  48178. ))
  48179. characterMakers.push(() => makeCharacter(
  48180. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48181. {
  48182. demonFront: {
  48183. height: math.unit(36, "feet"),
  48184. name: "Front",
  48185. image: {
  48186. source: "./media/characters/alex-xuria/demon-front.svg",
  48187. extra: 1705/1673,
  48188. bottom: 198/1903
  48189. },
  48190. form: "demon",
  48191. default: true
  48192. },
  48193. demonBack: {
  48194. height: math.unit(36, "feet"),
  48195. name: "Back",
  48196. image: {
  48197. source: "./media/characters/alex-xuria/demon-back.svg",
  48198. extra: 1725/1693,
  48199. bottom: 70/1795
  48200. },
  48201. form: "demon"
  48202. },
  48203. demonHead: {
  48204. height: math.unit(2.14, "meters"),
  48205. name: "Head",
  48206. image: {
  48207. source: "./media/characters/alex-xuria/demon-head.svg"
  48208. },
  48209. form: "demon"
  48210. },
  48211. demonHand: {
  48212. height: math.unit(1.61, "meters"),
  48213. name: "Hand",
  48214. image: {
  48215. source: "./media/characters/alex-xuria/demon-hand.svg"
  48216. },
  48217. form: "demon"
  48218. },
  48219. demonPaw: {
  48220. height: math.unit(1.35, "meters"),
  48221. name: "Paw",
  48222. image: {
  48223. source: "./media/characters/alex-xuria/demon-paw.svg"
  48224. },
  48225. form: "demon"
  48226. },
  48227. demonFoot: {
  48228. height: math.unit(2.2, "meters"),
  48229. name: "Foot",
  48230. image: {
  48231. source: "./media/characters/alex-xuria/demon-foot.svg"
  48232. },
  48233. form: "demon"
  48234. },
  48235. demonCock: {
  48236. height: math.unit(1.74, "meters"),
  48237. name: "Cock",
  48238. image: {
  48239. source: "./media/characters/alex-xuria/demon-cock.svg"
  48240. },
  48241. form: "demon"
  48242. },
  48243. demonTailClosed: {
  48244. height: math.unit(1.47, "meters"),
  48245. name: "Tail (Closed)",
  48246. image: {
  48247. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48248. },
  48249. form: "demon"
  48250. },
  48251. demonTailOpen: {
  48252. height: math.unit(2.85, "meters"),
  48253. name: "Tail (Open)",
  48254. image: {
  48255. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48256. },
  48257. form: "demon"
  48258. },
  48259. incubusFront: {
  48260. height: math.unit(12, "feet"),
  48261. name: "Front",
  48262. image: {
  48263. source: "./media/characters/alex-xuria/incubus-front.svg",
  48264. extra: 1754/1677,
  48265. bottom: 125/1879
  48266. },
  48267. form: "incubus",
  48268. default: true
  48269. },
  48270. incubusBack: {
  48271. height: math.unit(12, "feet"),
  48272. name: "Back",
  48273. image: {
  48274. source: "./media/characters/alex-xuria/incubus-back.svg",
  48275. extra: 1702/1647,
  48276. bottom: 30/1732
  48277. },
  48278. form: "incubus"
  48279. },
  48280. incubusHead: {
  48281. height: math.unit(3.45, "feet"),
  48282. name: "Head",
  48283. image: {
  48284. source: "./media/characters/alex-xuria/incubus-head.svg"
  48285. },
  48286. form: "incubus"
  48287. },
  48288. rabbitFront: {
  48289. height: math.unit(6, "feet"),
  48290. name: "Front",
  48291. image: {
  48292. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48293. extra: 1369/1349,
  48294. bottom: 45/1414
  48295. },
  48296. form: "rabbit",
  48297. default: true
  48298. },
  48299. rabbitSide: {
  48300. height: math.unit(6, "feet"),
  48301. name: "Side",
  48302. image: {
  48303. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48304. extra: 1370/1356,
  48305. bottom: 37/1407
  48306. },
  48307. form: "rabbit"
  48308. },
  48309. rabbitBack: {
  48310. height: math.unit(6, "feet"),
  48311. name: "Back",
  48312. image: {
  48313. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48314. extra: 1375/1358,
  48315. bottom: 43/1418
  48316. },
  48317. form: "rabbit"
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(6, "feet"),
  48324. default: true,
  48325. form: "rabbit"
  48326. },
  48327. {
  48328. name: "Incubus",
  48329. height: math.unit(12, "feet"),
  48330. default: true,
  48331. form: "incubus"
  48332. },
  48333. {
  48334. name: "Demon",
  48335. height: math.unit(36, "feet"),
  48336. default: true,
  48337. form: "demon"
  48338. }
  48339. ],
  48340. {
  48341. "demon": {
  48342. name: "Demon",
  48343. default: true
  48344. },
  48345. "incubus": {
  48346. name: "Incubus",
  48347. },
  48348. "rabbit": {
  48349. name: "Rabbit"
  48350. }
  48351. }
  48352. ))
  48353. characterMakers.push(() => makeCharacter(
  48354. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48355. {
  48356. front: {
  48357. height: math.unit(7 + 5/12, "feet"),
  48358. weight: math.unit(510, "lb"),
  48359. name: "Front",
  48360. image: {
  48361. source: "./media/characters/syrup/front.svg",
  48362. extra: 932/916,
  48363. bottom: 26/958
  48364. }
  48365. },
  48366. },
  48367. [
  48368. {
  48369. name: "Normal",
  48370. height: math.unit(7 + 5/12, "feet"),
  48371. default: true
  48372. },
  48373. {
  48374. name: "Big",
  48375. height: math.unit(50, "feet")
  48376. },
  48377. {
  48378. name: "Macro",
  48379. height: math.unit(300, "feet")
  48380. },
  48381. {
  48382. name: "Megamacro",
  48383. height: math.unit(1, "mile")
  48384. },
  48385. ]
  48386. ))
  48387. characterMakers.push(() => makeCharacter(
  48388. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48389. {
  48390. front: {
  48391. height: math.unit(6 + 9/12, "feet"),
  48392. name: "Front",
  48393. image: {
  48394. source: "./media/characters/zeimne/front.svg",
  48395. extra: 1969/1806,
  48396. bottom: 53/2022
  48397. }
  48398. },
  48399. },
  48400. [
  48401. {
  48402. name: "Normal",
  48403. height: math.unit(6 + 9/12, "feet"),
  48404. default: true
  48405. },
  48406. {
  48407. name: "Giant",
  48408. height: math.unit(550, "feet")
  48409. },
  48410. {
  48411. name: "Mega",
  48412. height: math.unit(3, "miles")
  48413. },
  48414. {
  48415. name: "Giga",
  48416. height: math.unit(250, "miles")
  48417. },
  48418. {
  48419. name: "Tera",
  48420. height: math.unit(1, "AU")
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(5 + 2/12, "feet"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/grar/front.svg",
  48432. extra: 1331/1119,
  48433. bottom: 60/1391
  48434. }
  48435. },
  48436. back: {
  48437. height: math.unit(5 + 2/12, "feet"),
  48438. name: "Back",
  48439. image: {
  48440. source: "./media/characters/grar/back.svg",
  48441. extra: 1385/1169,
  48442. bottom: 23/1408
  48443. }
  48444. },
  48445. },
  48446. [
  48447. {
  48448. name: "Normal",
  48449. height: math.unit(5 + 2/12, "feet"),
  48450. default: true
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(13 + 7/12, "feet"),
  48459. weight: math.unit(2200, "lb"),
  48460. name: "Front",
  48461. image: {
  48462. source: "./media/characters/endraya/front.svg",
  48463. extra: 1289/1215,
  48464. bottom: 50/1339
  48465. }
  48466. },
  48467. nude: {
  48468. height: math.unit(13 + 7/12, "feet"),
  48469. weight: math.unit(2200, "lb"),
  48470. name: "Nude",
  48471. image: {
  48472. source: "./media/characters/endraya/nude.svg",
  48473. extra: 1247/1171,
  48474. bottom: 40/1287
  48475. }
  48476. },
  48477. head: {
  48478. height: math.unit(2.6, "feet"),
  48479. name: "Head",
  48480. image: {
  48481. source: "./media/characters/endraya/head.svg"
  48482. }
  48483. },
  48484. slit: {
  48485. height: math.unit(3.4, "feet"),
  48486. name: "Slit",
  48487. image: {
  48488. source: "./media/characters/endraya/slit.svg"
  48489. }
  48490. },
  48491. },
  48492. [
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(13 + 7/12, "feet"),
  48496. default: true
  48497. },
  48498. {
  48499. name: "Macro",
  48500. height: math.unit(200, "feet")
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48506. {
  48507. front: {
  48508. height: math.unit(1.81, "meters"),
  48509. weight: math.unit(69, "kg"),
  48510. name: "Front",
  48511. image: {
  48512. source: "./media/characters/rodryana/front.svg",
  48513. extra: 2002/1921,
  48514. bottom: 53/2055
  48515. }
  48516. },
  48517. back: {
  48518. height: math.unit(1.81, "meters"),
  48519. weight: math.unit(69, "kg"),
  48520. name: "Back",
  48521. image: {
  48522. source: "./media/characters/rodryana/back.svg",
  48523. extra: 1993/1926,
  48524. bottom: 48/2041
  48525. }
  48526. },
  48527. maw: {
  48528. height: math.unit(0.19769417475, "meters"),
  48529. name: "Maw",
  48530. image: {
  48531. source: "./media/characters/rodryana/maw.svg"
  48532. }
  48533. },
  48534. slit: {
  48535. height: math.unit(0.31631067961, "meters"),
  48536. name: "Slit",
  48537. image: {
  48538. source: "./media/characters/rodryana/slit.svg"
  48539. }
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Normal",
  48545. height: math.unit(1.81, "meters")
  48546. },
  48547. {
  48548. name: "Mini Macro",
  48549. height: math.unit(181, "meters")
  48550. },
  48551. {
  48552. name: "Macro",
  48553. height: math.unit(452, "meters"),
  48554. default: true
  48555. },
  48556. {
  48557. name: "Mega Macro",
  48558. height: math.unit(1.375, "km")
  48559. },
  48560. {
  48561. name: "Giga Macro",
  48562. height: math.unit(13.575, "km")
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48568. {
  48569. front: {
  48570. height: math.unit(6, "feet"),
  48571. weight: math.unit(1000, "lb"),
  48572. name: "Front",
  48573. image: {
  48574. source: "./media/characters/asaya/front.svg",
  48575. extra: 1460/1200,
  48576. bottom: 71/1531
  48577. }
  48578. },
  48579. },
  48580. [
  48581. {
  48582. name: "Normal",
  48583. height: math.unit(8, "km"),
  48584. default: true
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48590. {
  48591. front: {
  48592. height: math.unit(3.5, "meters"),
  48593. name: "Front",
  48594. image: {
  48595. source: "./media/characters/sarzu-and-israz/front.svg",
  48596. extra: 1570/1558,
  48597. bottom: 150/1720
  48598. },
  48599. },
  48600. back: {
  48601. height: math.unit(3.5, "meters"),
  48602. name: "Back",
  48603. image: {
  48604. source: "./media/characters/sarzu-and-israz/back.svg",
  48605. extra: 1523/1509,
  48606. bottom: 132/1655
  48607. },
  48608. },
  48609. frontFemale: {
  48610. height: math.unit(3.5, "meters"),
  48611. name: "Front (Female)",
  48612. image: {
  48613. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48614. extra: 1570/1558,
  48615. bottom: 150/1720
  48616. },
  48617. },
  48618. frontHerm: {
  48619. height: math.unit(3.5, "meters"),
  48620. name: "Front (Herm)",
  48621. image: {
  48622. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48623. extra: 1570/1558,
  48624. bottom: 150/1720
  48625. },
  48626. },
  48627. },
  48628. [
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(3.5, "meters"),
  48632. default: true,
  48633. },
  48634. {
  48635. name: "Macro",
  48636. height: math.unit(65.5, "meters"),
  48637. },
  48638. ],
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(6, "feet"),
  48645. weight: math.unit(250, "lb"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/zenimma/front.svg",
  48649. extra: 1346/1320,
  48650. bottom: 58/1404
  48651. }
  48652. },
  48653. back: {
  48654. height: math.unit(6, "feet"),
  48655. weight: math.unit(250, "lb"),
  48656. name: "Back",
  48657. image: {
  48658. source: "./media/characters/zenimma/back.svg",
  48659. extra: 1324/1308,
  48660. bottom: 44/1368
  48661. }
  48662. },
  48663. dick: {
  48664. height: math.unit(1.44, "feet"),
  48665. name: "Dick",
  48666. image: {
  48667. source: "./media/characters/zenimma/dick.svg"
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Canon Height",
  48674. height: math.unit(66, "miles"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48681. {
  48682. nude: {
  48683. height: math.unit(6, "feet"),
  48684. weight: math.unit(150, "lb"),
  48685. name: "Nude",
  48686. image: {
  48687. source: "./media/characters/shavon/nude.svg",
  48688. extra: 1242/1096,
  48689. bottom: 98/1340
  48690. }
  48691. },
  48692. dressed: {
  48693. height: math.unit(6, "feet"),
  48694. weight: math.unit(150, "lb"),
  48695. name: "Dressed",
  48696. image: {
  48697. source: "./media/characters/shavon/dressed.svg",
  48698. extra: 1242/1096,
  48699. bottom: 98/1340
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Macro",
  48706. height: math.unit(255, "feet"),
  48707. default: true
  48708. },
  48709. ]
  48710. ))
  48711. characterMakers.push(() => makeCharacter(
  48712. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48713. {
  48714. front: {
  48715. height: math.unit(6, "feet"),
  48716. name: "Front",
  48717. image: {
  48718. source: "./media/characters/steph/front.svg",
  48719. extra: 1430/1330,
  48720. bottom: 54/1484
  48721. }
  48722. },
  48723. },
  48724. [
  48725. {
  48726. name: "Normal",
  48727. height: math.unit(6, "feet"),
  48728. default: true
  48729. },
  48730. ]
  48731. ))
  48732. characterMakers.push(() => makeCharacter(
  48733. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48734. {
  48735. front: {
  48736. height: math.unit(9, "feet"),
  48737. weight: math.unit(400, "lb"),
  48738. name: "Front",
  48739. image: {
  48740. source: "./media/characters/kil'aman/front.svg",
  48741. extra: 1210/1159,
  48742. bottom: 109/1319
  48743. }
  48744. },
  48745. head: {
  48746. height: math.unit(2.14, "feet"),
  48747. name: "Head",
  48748. image: {
  48749. source: "./media/characters/kil'aman/head.svg"
  48750. }
  48751. },
  48752. maw: {
  48753. height: math.unit(1.21, "feet"),
  48754. name: "Maw",
  48755. image: {
  48756. source: "./media/characters/kil'aman/maw.svg"
  48757. }
  48758. },
  48759. foot: {
  48760. height: math.unit(1.7, "feet"),
  48761. name: "Foot",
  48762. image: {
  48763. source: "./media/characters/kil'aman/foot.svg"
  48764. }
  48765. },
  48766. dick: {
  48767. height: math.unit(2.1, "feet"),
  48768. name: "Dick",
  48769. image: {
  48770. source: "./media/characters/kil'aman/dick.svg"
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(9, "feet")
  48778. },
  48779. {
  48780. name: "Canon Height",
  48781. height: math.unit(10, "miles"),
  48782. default: true
  48783. },
  48784. {
  48785. name: "Maximum",
  48786. height: math.unit(6e9, "miles")
  48787. },
  48788. ]
  48789. ))
  48790. characterMakers.push(() => makeCharacter(
  48791. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48792. {
  48793. front: {
  48794. height: math.unit(90, "feet"),
  48795. weight: math.unit(675000, "lb"),
  48796. name: "Front",
  48797. image: {
  48798. source: "./media/characters/qadan/front.svg",
  48799. extra: 1012/1004,
  48800. bottom: 78/1090
  48801. }
  48802. },
  48803. back: {
  48804. height: math.unit(90, "feet"),
  48805. weight: math.unit(675000, "lb"),
  48806. name: "Back",
  48807. image: {
  48808. source: "./media/characters/qadan/back.svg",
  48809. extra: 1042/1031,
  48810. bottom: 55/1097
  48811. }
  48812. },
  48813. armored: {
  48814. height: math.unit(90, "feet"),
  48815. weight: math.unit(675000, "lb"),
  48816. name: "Armored",
  48817. image: {
  48818. source: "./media/characters/qadan/armored.svg",
  48819. extra: 1047/1037,
  48820. bottom: 48/1095
  48821. }
  48822. },
  48823. },
  48824. [
  48825. {
  48826. name: "Normal",
  48827. height: math.unit(90, "feet"),
  48828. default: true
  48829. },
  48830. ]
  48831. ))
  48832. characterMakers.push(() => makeCharacter(
  48833. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48834. {
  48835. front: {
  48836. height: math.unit(6, "feet"),
  48837. weight: math.unit(225, "lb"),
  48838. name: "Front",
  48839. image: {
  48840. source: "./media/characters/brooke/front.svg",
  48841. extra: 1050/1010,
  48842. bottom: 66/1116
  48843. }
  48844. },
  48845. back: {
  48846. height: math.unit(6, "feet"),
  48847. weight: math.unit(225, "lb"),
  48848. name: "Back",
  48849. image: {
  48850. source: "./media/characters/brooke/back.svg",
  48851. extra: 1053/1013,
  48852. bottom: 41/1094
  48853. }
  48854. },
  48855. dressed: {
  48856. height: math.unit(6, "feet"),
  48857. weight: math.unit(225, "lb"),
  48858. name: "Dressed",
  48859. image: {
  48860. source: "./media/characters/brooke/dressed.svg",
  48861. extra: 1050/1010,
  48862. bottom: 66/1116
  48863. }
  48864. },
  48865. },
  48866. [
  48867. {
  48868. name: "Canon Height",
  48869. height: math.unit(500, "miles"),
  48870. default: true
  48871. },
  48872. ]
  48873. ))
  48874. characterMakers.push(() => makeCharacter(
  48875. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48876. {
  48877. front: {
  48878. height: math.unit(6 + 2/12, "feet"),
  48879. weight: math.unit(210, "lb"),
  48880. name: "Front",
  48881. image: {
  48882. source: "./media/characters/wubs/front.svg",
  48883. extra: 1345/1325,
  48884. bottom: 70/1415
  48885. }
  48886. },
  48887. back: {
  48888. height: math.unit(6 + 2/12, "feet"),
  48889. weight: math.unit(210, "lb"),
  48890. name: "Back",
  48891. image: {
  48892. source: "./media/characters/wubs/back.svg",
  48893. extra: 1296/1275,
  48894. bottom: 58/1354
  48895. }
  48896. },
  48897. },
  48898. [
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(6 + 2/12, "feet"),
  48902. default: true
  48903. },
  48904. {
  48905. name: "Macro",
  48906. height: math.unit(1000, "feet")
  48907. },
  48908. {
  48909. name: "Megamacro",
  48910. height: math.unit(1, "mile")
  48911. },
  48912. ]
  48913. ))
  48914. characterMakers.push(() => makeCharacter(
  48915. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48916. {
  48917. front: {
  48918. height: math.unit(4, "feet"),
  48919. weight: math.unit(120, "lb"),
  48920. name: "Front",
  48921. image: {
  48922. source: "./media/characters/blue/front.svg",
  48923. extra: 1636/1525,
  48924. bottom: 43/1679
  48925. }
  48926. },
  48927. back: {
  48928. height: math.unit(4, "feet"),
  48929. weight: math.unit(120, "lb"),
  48930. name: "Back",
  48931. image: {
  48932. source: "./media/characters/blue/back.svg",
  48933. extra: 1660/1560,
  48934. bottom: 57/1717
  48935. }
  48936. },
  48937. paws: {
  48938. height: math.unit(0.826, "feet"),
  48939. name: "Paws",
  48940. image: {
  48941. source: "./media/characters/blue/paws.svg"
  48942. }
  48943. },
  48944. },
  48945. [
  48946. {
  48947. name: "Micro",
  48948. height: math.unit(3, "inches")
  48949. },
  48950. {
  48951. name: "Normal",
  48952. height: math.unit(4, "feet"),
  48953. default: true
  48954. },
  48955. {
  48956. name: "Femenine Form",
  48957. height: math.unit(14, "feet")
  48958. },
  48959. {
  48960. name: "Werebat Form",
  48961. height: math.unit(18, "feet")
  48962. },
  48963. ]
  48964. ))
  48965. characterMakers.push(() => makeCharacter(
  48966. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48967. {
  48968. female: {
  48969. height: math.unit(7 + 4/12, "feet"),
  48970. weight: math.unit(243, "lb"),
  48971. name: "Female",
  48972. image: {
  48973. source: "./media/characters/kaya/female.svg",
  48974. extra: 975/898,
  48975. bottom: 34/1009
  48976. }
  48977. },
  48978. herm: {
  48979. height: math.unit(7 + 4/12, "feet"),
  48980. weight: math.unit(243, "lb"),
  48981. name: "Herm",
  48982. image: {
  48983. source: "./media/characters/kaya/herm.svg",
  48984. extra: 975/898,
  48985. bottom: 34/1009
  48986. }
  48987. },
  48988. },
  48989. [
  48990. {
  48991. name: "Normal",
  48992. height: math.unit(7 + 4/12, "feet"),
  48993. default: true
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48999. {
  49000. female: {
  49001. height: math.unit(9 + 4/12, "feet"),
  49002. weight: math.unit(398, "lb"),
  49003. name: "Female",
  49004. image: {
  49005. source: "./media/characters/kassandra/female.svg",
  49006. extra: 908/839,
  49007. bottom: 61/969
  49008. }
  49009. },
  49010. intersex: {
  49011. height: math.unit(9 + 4/12, "feet"),
  49012. weight: math.unit(398, "lb"),
  49013. name: "Intersex",
  49014. image: {
  49015. source: "./media/characters/kassandra/intersex.svg",
  49016. extra: 908/839,
  49017. bottom: 61/969
  49018. }
  49019. },
  49020. },
  49021. [
  49022. {
  49023. name: "Normal",
  49024. height: math.unit(9 + 4/12, "feet"),
  49025. default: true
  49026. },
  49027. ]
  49028. ))
  49029. characterMakers.push(() => makeCharacter(
  49030. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49031. {
  49032. front: {
  49033. height: math.unit(3, "meters"),
  49034. name: "Front",
  49035. image: {
  49036. source: "./media/characters/amy/front.svg",
  49037. extra: 1380/1343,
  49038. bottom: 70/1450
  49039. }
  49040. },
  49041. back: {
  49042. height: math.unit(3, "meters"),
  49043. name: "Back",
  49044. image: {
  49045. source: "./media/characters/amy/back.svg",
  49046. extra: 1380/1347,
  49047. bottom: 66/1446
  49048. }
  49049. },
  49050. },
  49051. [
  49052. {
  49053. name: "Normal",
  49054. height: math.unit(3, "meters"),
  49055. default: true
  49056. },
  49057. ]
  49058. ))
  49059. characterMakers.push(() => makeCharacter(
  49060. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49061. {
  49062. side: {
  49063. height: math.unit(47, "cm"),
  49064. weight: math.unit(10.8, "kg"),
  49065. name: "Side",
  49066. image: {
  49067. source: "./media/characters/alphaschakal/side.svg",
  49068. extra: 1058/568,
  49069. bottom: 62/1120
  49070. }
  49071. },
  49072. back: {
  49073. height: math.unit(78, "cm"),
  49074. weight: math.unit(10.8, "kg"),
  49075. name: "Back",
  49076. image: {
  49077. source: "./media/characters/alphaschakal/back.svg",
  49078. extra: 1102/942,
  49079. bottom: 185/1287
  49080. }
  49081. },
  49082. head: {
  49083. height: math.unit(28, "cm"),
  49084. name: "Head",
  49085. image: {
  49086. source: "./media/characters/alphaschakal/head.svg",
  49087. extra: 696/508,
  49088. bottom: 0/696
  49089. }
  49090. },
  49091. paw: {
  49092. height: math.unit(16, "cm"),
  49093. name: "Paw",
  49094. image: {
  49095. source: "./media/characters/alphaschakal/paw.svg"
  49096. }
  49097. },
  49098. },
  49099. [
  49100. {
  49101. name: "Normal",
  49102. height: math.unit(47, "cm"),
  49103. default: true
  49104. },
  49105. {
  49106. name: "Macro",
  49107. height: math.unit(340, "cm")
  49108. },
  49109. ]
  49110. ))
  49111. characterMakers.push(() => makeCharacter(
  49112. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49113. {
  49114. front: {
  49115. height: math.unit(36, "earths"),
  49116. name: "Front",
  49117. image: {
  49118. source: "./media/characters/ecobyss/front.svg",
  49119. extra: 1282/1215,
  49120. bottom: 11/1293
  49121. }
  49122. },
  49123. back: {
  49124. height: math.unit(36, "earths"),
  49125. name: "Back",
  49126. image: {
  49127. source: "./media/characters/ecobyss/back.svg",
  49128. extra: 1291/1222,
  49129. bottom: 8/1299
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Normal",
  49136. height: math.unit(36, "earths"),
  49137. default: true
  49138. },
  49139. ]
  49140. ))
  49141. characterMakers.push(() => makeCharacter(
  49142. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49143. {
  49144. front: {
  49145. height: math.unit(12, "feet"),
  49146. name: "Front",
  49147. image: {
  49148. source: "./media/characters/vasuk/front.svg",
  49149. extra: 1326/1207,
  49150. bottom: 64/1390
  49151. }
  49152. },
  49153. },
  49154. [
  49155. {
  49156. name: "Normal",
  49157. height: math.unit(12, "feet"),
  49158. default: true
  49159. },
  49160. ]
  49161. ))
  49162. characterMakers.push(() => makeCharacter(
  49163. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49164. {
  49165. side: {
  49166. height: math.unit(100, "feet"),
  49167. name: "Side",
  49168. image: {
  49169. source: "./media/characters/linneaus/side.svg",
  49170. extra: 987/807,
  49171. bottom: 47/1034
  49172. }
  49173. },
  49174. },
  49175. [
  49176. {
  49177. name: "Macro",
  49178. height: math.unit(100, "feet"),
  49179. default: true
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49185. {
  49186. front: {
  49187. height: math.unit(8, "feet"),
  49188. weight: math.unit(1200, "lb"),
  49189. name: "Front",
  49190. image: {
  49191. source: "./media/characters/nyterious-daligdig/front.svg",
  49192. extra: 1284/1094,
  49193. bottom: 84/1368
  49194. }
  49195. },
  49196. back: {
  49197. height: math.unit(8, "feet"),
  49198. weight: math.unit(1200, "lb"),
  49199. name: "Back",
  49200. image: {
  49201. source: "./media/characters/nyterious-daligdig/back.svg",
  49202. extra: 1301/1121,
  49203. bottom: 129/1430
  49204. }
  49205. },
  49206. mouth: {
  49207. height: math.unit(1.464, "feet"),
  49208. name: "Mouth",
  49209. image: {
  49210. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49211. }
  49212. },
  49213. },
  49214. [
  49215. {
  49216. name: "Small",
  49217. height: math.unit(8, "feet"),
  49218. default: true
  49219. },
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(15, "feet")
  49223. },
  49224. {
  49225. name: "Macro",
  49226. height: math.unit(90, "feet")
  49227. },
  49228. ]
  49229. ))
  49230. characterMakers.push(() => makeCharacter(
  49231. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49232. {
  49233. front: {
  49234. height: math.unit(7 + 4/12, "feet"),
  49235. weight: math.unit(252, "lb"),
  49236. name: "Front",
  49237. image: {
  49238. source: "./media/characters/bandel/front.svg",
  49239. extra: 1946/1775,
  49240. bottom: 26/1972
  49241. }
  49242. },
  49243. back: {
  49244. height: math.unit(7 + 4/12, "feet"),
  49245. weight: math.unit(252, "lb"),
  49246. name: "Back",
  49247. image: {
  49248. source: "./media/characters/bandel/back.svg",
  49249. extra: 1940/1770,
  49250. bottom: 25/1965
  49251. }
  49252. },
  49253. maw: {
  49254. height: math.unit(2.15, "feet"),
  49255. name: "Maw",
  49256. image: {
  49257. source: "./media/characters/bandel/maw.svg"
  49258. }
  49259. },
  49260. stomach: {
  49261. height: math.unit(1.95, "feet"),
  49262. name: "Stomach",
  49263. image: {
  49264. source: "./media/characters/bandel/stomach.svg"
  49265. }
  49266. },
  49267. },
  49268. [
  49269. {
  49270. name: "Normal",
  49271. height: math.unit(7 + 4/12, "feet"),
  49272. default: true
  49273. },
  49274. ]
  49275. ))
  49276. characterMakers.push(() => makeCharacter(
  49277. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49278. {
  49279. front: {
  49280. height: math.unit(10 + 5/12, "feet"),
  49281. weight: math.unit(773.5, "kg"),
  49282. name: "Front",
  49283. image: {
  49284. source: "./media/characters/zed/front.svg",
  49285. extra: 987/941,
  49286. bottom: 52/1039
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Short",
  49293. height: math.unit(5 + 4/12, "feet")
  49294. },
  49295. {
  49296. name: "Average",
  49297. height: math.unit(10 + 5/12, "feet"),
  49298. default: true
  49299. },
  49300. {
  49301. name: "Mini-Macro",
  49302. height: math.unit(24 + 9/12, "feet")
  49303. },
  49304. {
  49305. name: "Macro",
  49306. height: math.unit(249, "feet")
  49307. },
  49308. {
  49309. name: "Mega-Macro",
  49310. height: math.unit(12490, "feet")
  49311. },
  49312. {
  49313. name: "Giga-Macro",
  49314. height: math.unit(24.9, "miles")
  49315. },
  49316. {
  49317. name: "Tera-Macro",
  49318. height: math.unit(24900, "miles")
  49319. },
  49320. {
  49321. name: "Cosmic Scale",
  49322. height: math.unit(38.9, "lightyears")
  49323. },
  49324. {
  49325. name: "Universal Scale",
  49326. height: math.unit(138e12, "lightyears")
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49332. {
  49333. front: {
  49334. height: math.unit(1561, "inches"),
  49335. name: "Front",
  49336. image: {
  49337. source: "./media/characters/ivan/front.svg",
  49338. extra: 1126/1071,
  49339. bottom: 26/1152
  49340. }
  49341. },
  49342. back: {
  49343. height: math.unit(1561, "inches"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/ivan/back.svg",
  49347. extra: 1134/1079,
  49348. bottom: 30/1164
  49349. }
  49350. },
  49351. },
  49352. [
  49353. {
  49354. name: "Normal",
  49355. height: math.unit(1561, "inches"),
  49356. default: true
  49357. },
  49358. ]
  49359. ))
  49360. characterMakers.push(() => makeCharacter(
  49361. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49362. {
  49363. front: {
  49364. height: math.unit(5 + 7/12, "feet"),
  49365. weight: math.unit(150, "lb"),
  49366. name: "Front",
  49367. image: {
  49368. source: "./media/characters/robin-arctic-hare/front.svg",
  49369. extra: 1148/974,
  49370. bottom: 20/1168
  49371. }
  49372. },
  49373. },
  49374. [
  49375. {
  49376. name: "Normal",
  49377. height: math.unit(5 + 7/12, "feet"),
  49378. default: true
  49379. },
  49380. ]
  49381. ))
  49382. characterMakers.push(() => makeCharacter(
  49383. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49384. {
  49385. side: {
  49386. height: math.unit(5, "feet"),
  49387. name: "Side",
  49388. image: {
  49389. source: "./media/characters/birch/side.svg",
  49390. extra: 985/796,
  49391. bottom: 111/1096
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(5, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49405. {
  49406. front: {
  49407. height: math.unit(4, "feet"),
  49408. name: "Front",
  49409. image: {
  49410. source: "./media/characters/rasp/front.svg",
  49411. extra: 561/478,
  49412. bottom: 74/635
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(4, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(4 + 6/12, "feet"),
  49429. name: "Front",
  49430. image: {
  49431. source: "./media/characters/agatha/front.svg",
  49432. extra: 947/933,
  49433. bottom: 42/989
  49434. }
  49435. },
  49436. back: {
  49437. height: math.unit(4 + 6/12, "feet"),
  49438. name: "Back",
  49439. image: {
  49440. source: "./media/characters/agatha/back.svg",
  49441. extra: 935/922,
  49442. bottom: 48/983
  49443. }
  49444. },
  49445. },
  49446. [
  49447. {
  49448. name: "Normal",
  49449. height: math.unit(4 + 6 /12, "feet"),
  49450. default: true
  49451. },
  49452. {
  49453. name: "Max Size",
  49454. height: math.unit(500, "feet")
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49460. {
  49461. side: {
  49462. height: math.unit(30, "feet"),
  49463. name: "Side",
  49464. image: {
  49465. source: "./media/characters/roggy/side.svg",
  49466. extra: 909/643,
  49467. bottom: 63/972
  49468. }
  49469. },
  49470. lounging: {
  49471. height: math.unit(20, "feet"),
  49472. name: "Lounging",
  49473. image: {
  49474. source: "./media/characters/roggy/lounging.svg",
  49475. extra: 643/479,
  49476. bottom: 145/788
  49477. }
  49478. },
  49479. handpaw: {
  49480. height: math.unit(13.1, "feet"),
  49481. name: "Handpaw",
  49482. image: {
  49483. source: "./media/characters/roggy/handpaw.svg"
  49484. }
  49485. },
  49486. footpaw: {
  49487. height: math.unit(15.8, "feet"),
  49488. name: "Footpaw",
  49489. image: {
  49490. source: "./media/characters/roggy/footpaw.svg"
  49491. }
  49492. },
  49493. },
  49494. [
  49495. {
  49496. name: "Menacing",
  49497. height: math.unit(30, "feet"),
  49498. default: true
  49499. },
  49500. ]
  49501. ))
  49502. characterMakers.push(() => makeCharacter(
  49503. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49504. {
  49505. front: {
  49506. height: math.unit(5 + 7/12, "feet"),
  49507. weight: math.unit(135, "lb"),
  49508. name: "Front",
  49509. image: {
  49510. source: "./media/characters/naomi/front.svg",
  49511. extra: 1209/1154,
  49512. bottom: 129/1338
  49513. }
  49514. },
  49515. back: {
  49516. height: math.unit(5 + 7/12, "feet"),
  49517. weight: math.unit(135, "lb"),
  49518. name: "Back",
  49519. image: {
  49520. source: "./media/characters/naomi/back.svg",
  49521. extra: 1252/1190,
  49522. bottom: 23/1275
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Normal",
  49529. height: math.unit(5 + 7 /12, "feet"),
  49530. default: true
  49531. },
  49532. ]
  49533. ))
  49534. characterMakers.push(() => makeCharacter(
  49535. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49536. {
  49537. side: {
  49538. height: math.unit(35, "meters"),
  49539. name: "Side",
  49540. image: {
  49541. source: "./media/characters/kimpi/side.svg",
  49542. extra: 419/382,
  49543. bottom: 63/482
  49544. }
  49545. },
  49546. hand: {
  49547. height: math.unit(8.96, "meters"),
  49548. name: "Hand",
  49549. image: {
  49550. source: "./media/characters/kimpi/hand.svg"
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Normal",
  49557. height: math.unit(35, "meters"),
  49558. default: true
  49559. },
  49560. ]
  49561. ))
  49562. characterMakers.push(() => makeCharacter(
  49563. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49564. {
  49565. front: {
  49566. height: math.unit(4 + 4/12, "feet"),
  49567. name: "Front",
  49568. image: {
  49569. source: "./media/characters/pepper-purrloin/front.svg",
  49570. extra: 1141/1024,
  49571. bottom: 21/1162
  49572. }
  49573. },
  49574. },
  49575. [
  49576. {
  49577. name: "Normal",
  49578. height: math.unit(4 + 4/12, "feet"),
  49579. default: true
  49580. },
  49581. ]
  49582. ))
  49583. characterMakers.push(() => makeCharacter(
  49584. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49585. {
  49586. front: {
  49587. height: math.unit(6 + 2/12, "feet"),
  49588. name: "Front",
  49589. image: {
  49590. source: "./media/characters/raphael/front.svg",
  49591. extra: 1101/962,
  49592. bottom: 59/1160
  49593. }
  49594. },
  49595. },
  49596. [
  49597. {
  49598. name: "Normal",
  49599. height: math.unit(6 + 2/12, "feet"),
  49600. default: true
  49601. },
  49602. ]
  49603. ))
  49604. characterMakers.push(() => makeCharacter(
  49605. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49606. {
  49607. front: {
  49608. height: math.unit(6, "feet"),
  49609. weight: math.unit(150, "lb"),
  49610. name: "Front",
  49611. image: {
  49612. source: "./media/characters/victor-williams/front.svg",
  49613. extra: 1894/1825,
  49614. bottom: 67/1961
  49615. }
  49616. },
  49617. },
  49618. [
  49619. {
  49620. name: "Normal",
  49621. height: math.unit(6, "feet"),
  49622. default: true
  49623. },
  49624. ]
  49625. ))
  49626. characterMakers.push(() => makeCharacter(
  49627. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49628. {
  49629. front: {
  49630. height: math.unit(5 + 8/12, "feet"),
  49631. weight: math.unit(150, "lb"),
  49632. name: "Front",
  49633. image: {
  49634. source: "./media/characters/rachel/front.svg",
  49635. extra: 1902/1787,
  49636. bottom: 46/1948
  49637. }
  49638. },
  49639. },
  49640. [
  49641. {
  49642. name: "Base Height",
  49643. height: math.unit(5 + 8/12, "feet"),
  49644. default: true
  49645. },
  49646. {
  49647. name: "Macro",
  49648. height: math.unit(200, "feet")
  49649. },
  49650. {
  49651. name: "Mega Macro",
  49652. height: math.unit(1, "mile")
  49653. },
  49654. {
  49655. name: "Giga Macro",
  49656. height: math.unit(1500, "miles")
  49657. },
  49658. {
  49659. name: "Tera Macro",
  49660. height: math.unit(8000, "miles")
  49661. },
  49662. {
  49663. name: "Tera Macro+",
  49664. height: math.unit(2e5, "miles")
  49665. },
  49666. ]
  49667. ))
  49668. characterMakers.push(() => makeCharacter(
  49669. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49670. {
  49671. front: {
  49672. height: math.unit(6.5, "feet"),
  49673. name: "Front",
  49674. image: {
  49675. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49676. extra: 860/819,
  49677. bottom: 307/1167
  49678. }
  49679. },
  49680. back: {
  49681. height: math.unit(6.5, "feet"),
  49682. name: "Back",
  49683. image: {
  49684. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49685. extra: 880/837,
  49686. bottom: 395/1275
  49687. }
  49688. },
  49689. sleeping: {
  49690. height: math.unit(2.79, "feet"),
  49691. name: "Sleeping",
  49692. image: {
  49693. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49694. extra: 465/383,
  49695. bottom: 263/728
  49696. }
  49697. },
  49698. maw: {
  49699. height: math.unit(2.52, "feet"),
  49700. name: "Maw",
  49701. image: {
  49702. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49703. }
  49704. },
  49705. },
  49706. [
  49707. {
  49708. name: "Normal",
  49709. height: math.unit(6.5, "feet"),
  49710. default: true
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(5, "feet"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/nova-nerium/front.svg",
  49722. extra: 1548/1392,
  49723. bottom: 374/1922
  49724. }
  49725. },
  49726. back: {
  49727. height: math.unit(5, "feet"),
  49728. name: "Back",
  49729. image: {
  49730. source: "./media/characters/nova-nerium/back.svg",
  49731. extra: 1658/1468,
  49732. bottom: 257/1915
  49733. }
  49734. },
  49735. },
  49736. [
  49737. {
  49738. name: "Normal",
  49739. height: math.unit(5, "feet"),
  49740. default: true
  49741. },
  49742. ]
  49743. ))
  49744. characterMakers.push(() => makeCharacter(
  49745. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49746. {
  49747. front: {
  49748. height: math.unit(5 + 4/12, "feet"),
  49749. name: "Front",
  49750. image: {
  49751. source: "./media/characters/ashe-pyriph/front.svg",
  49752. extra: 1935/1747,
  49753. bottom: 60/1995
  49754. }
  49755. },
  49756. },
  49757. [
  49758. {
  49759. name: "Normal",
  49760. height: math.unit(5 + 4/12, "feet"),
  49761. default: true
  49762. },
  49763. ]
  49764. ))
  49765. characterMakers.push(() => makeCharacter(
  49766. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49767. {
  49768. front: {
  49769. height: math.unit(8.7, "feet"),
  49770. name: "Front",
  49771. image: {
  49772. source: "./media/characters/flicker-wisp/front.svg",
  49773. extra: 1835/1613,
  49774. bottom: 449/2284
  49775. }
  49776. },
  49777. side: {
  49778. height: math.unit(8.7, "feet"),
  49779. name: "Side",
  49780. image: {
  49781. source: "./media/characters/flicker-wisp/side.svg",
  49782. extra: 1841/1642,
  49783. bottom: 336/2177
  49784. },
  49785. default: true
  49786. },
  49787. maw: {
  49788. height: math.unit(3.35, "feet"),
  49789. name: "Maw",
  49790. image: {
  49791. source: "./media/characters/flicker-wisp/maw.svg",
  49792. extra: 2338/1506,
  49793. bottom: 0/2338
  49794. }
  49795. },
  49796. ovipositor: {
  49797. height: math.unit(4.95, "feet"),
  49798. name: "Ovipositor",
  49799. image: {
  49800. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49801. }
  49802. },
  49803. egg: {
  49804. height: math.unit(0.385, "feet"),
  49805. weight: math.unit(2, "lb"),
  49806. name: "Egg",
  49807. image: {
  49808. source: "./media/characters/flicker-wisp/egg.svg"
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(8.7, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49822. {
  49823. side: {
  49824. height: math.unit(11, "feet"),
  49825. name: "Side",
  49826. image: {
  49827. source: "./media/characters/faefnul/side.svg",
  49828. extra: 1100/1007,
  49829. bottom: 0/1100
  49830. }
  49831. },
  49832. },
  49833. [
  49834. {
  49835. name: "Normal",
  49836. height: math.unit(11, "feet"),
  49837. default: true
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(6 + 2/12, "feet"),
  49846. name: "Front",
  49847. image: {
  49848. source: "./media/characters/shady/front.svg",
  49849. extra: 502/461,
  49850. bottom: 9/511
  49851. }
  49852. },
  49853. kneeling: {
  49854. height: math.unit(4.6, "feet"),
  49855. name: "Kneeling",
  49856. image: {
  49857. source: "./media/characters/shady/kneeling.svg",
  49858. extra: 1328/1219,
  49859. bottom: 117/1445
  49860. }
  49861. },
  49862. maw: {
  49863. height: math.unit(2, "feet"),
  49864. name: "Maw",
  49865. image: {
  49866. source: "./media/characters/shady/maw.svg"
  49867. }
  49868. },
  49869. },
  49870. [
  49871. {
  49872. name: "Nano",
  49873. height: math.unit(1, "mm")
  49874. },
  49875. {
  49876. name: "Micro",
  49877. height: math.unit(12, "mm")
  49878. },
  49879. {
  49880. name: "Tiny",
  49881. height: math.unit(3, "inches")
  49882. },
  49883. {
  49884. name: "Normal",
  49885. height: math.unit(6 + 2/12, "feet"),
  49886. default: true
  49887. },
  49888. {
  49889. name: "Big",
  49890. height: math.unit(15, "feet")
  49891. },
  49892. {
  49893. name: "Macro",
  49894. height: math.unit(150, "feet")
  49895. },
  49896. {
  49897. name: "Titanic",
  49898. height: math.unit(500, "feet")
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(12, "feet"),
  49907. name: "Front",
  49908. image: {
  49909. source: "./media/characters/fenrir/front.svg",
  49910. extra: 968/875,
  49911. bottom: 22/990
  49912. }
  49913. },
  49914. },
  49915. [
  49916. {
  49917. name: "Big",
  49918. height: math.unit(12, "feet"),
  49919. default: true
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49925. {
  49926. front: {
  49927. height: math.unit(5 + 4/12, "feet"),
  49928. name: "Front",
  49929. image: {
  49930. source: "./media/characters/makar/front.svg",
  49931. extra: 1181/1112,
  49932. bottom: 78/1259
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Normal",
  49939. height: math.unit(5 + 4/12, "feet"),
  49940. default: true
  49941. },
  49942. ]
  49943. ))
  49944. characterMakers.push(() => makeCharacter(
  49945. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49946. {
  49947. front: {
  49948. height: math.unit(5 + 7/12, "feet"),
  49949. name: "Front",
  49950. image: {
  49951. source: "./media/characters/callow/front.svg",
  49952. extra: 1482/1304,
  49953. bottom: 23/1505
  49954. }
  49955. },
  49956. back: {
  49957. height: math.unit(5 + 7/12, "feet"),
  49958. name: "Back",
  49959. image: {
  49960. source: "./media/characters/callow/back.svg",
  49961. extra: 1484/1296,
  49962. bottom: 25/1509
  49963. }
  49964. },
  49965. },
  49966. [
  49967. {
  49968. name: "Micro",
  49969. height: math.unit(3, "inches"),
  49970. default: true
  49971. },
  49972. {
  49973. name: "Normal",
  49974. height: math.unit(5 + 7/12, "feet")
  49975. },
  49976. ]
  49977. ))
  49978. characterMakers.push(() => makeCharacter(
  49979. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49980. {
  49981. front: {
  49982. height: math.unit(6 + 2/12, "feet"),
  49983. name: "Front",
  49984. image: {
  49985. source: "./media/characters/natel/front.svg",
  49986. extra: 1833/1692,
  49987. bottom: 166/1999
  49988. }
  49989. },
  49990. },
  49991. [
  49992. {
  49993. name: "Normal",
  49994. height: math.unit(6 + 2/12, "feet"),
  49995. default: true
  49996. },
  49997. ]
  49998. ))
  49999. characterMakers.push(() => makeCharacter(
  50000. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50001. {
  50002. front: {
  50003. height: math.unit(1.75, "meters"),
  50004. name: "Front",
  50005. image: {
  50006. source: "./media/characters/misu/front.svg",
  50007. extra: 1690/1558,
  50008. bottom: 234/1924
  50009. }
  50010. },
  50011. back: {
  50012. height: math.unit(1.75, "meters"),
  50013. name: "Back",
  50014. image: {
  50015. source: "./media/characters/misu/back.svg",
  50016. extra: 1762/1618,
  50017. bottom: 146/1908
  50018. }
  50019. },
  50020. frontNude: {
  50021. height: math.unit(1.75, "meters"),
  50022. name: "Front (Nude)",
  50023. image: {
  50024. source: "./media/characters/misu/front-nude.svg",
  50025. extra: 1690/1558,
  50026. bottom: 234/1924
  50027. }
  50028. },
  50029. backNude: {
  50030. height: math.unit(1.75, "meters"),
  50031. name: "Back (Nude)",
  50032. image: {
  50033. source: "./media/characters/misu/back-nude.svg",
  50034. extra: 1762/1618,
  50035. bottom: 146/1908
  50036. }
  50037. },
  50038. frontErect: {
  50039. height: math.unit(1.75, "meters"),
  50040. name: "Front (Erect)",
  50041. image: {
  50042. source: "./media/characters/misu/front-erect.svg",
  50043. extra: 1690/1558,
  50044. bottom: 234/1924
  50045. }
  50046. },
  50047. maw: {
  50048. height: math.unit(0.47, "meters"),
  50049. name: "Maw",
  50050. image: {
  50051. source: "./media/characters/misu/maw.svg"
  50052. }
  50053. },
  50054. head: {
  50055. height: math.unit(0.35, "meters"),
  50056. name: "Head",
  50057. image: {
  50058. source: "./media/characters/misu/head.svg"
  50059. }
  50060. },
  50061. rear: {
  50062. height: math.unit(0.47, "meters"),
  50063. name: "Rear",
  50064. image: {
  50065. source: "./media/characters/misu/rear.svg"
  50066. }
  50067. },
  50068. },
  50069. [
  50070. {
  50071. name: "Normal",
  50072. height: math.unit(1.75, "meters")
  50073. },
  50074. {
  50075. name: "Not good for the people",
  50076. height: math.unit(42, "meters")
  50077. },
  50078. {
  50079. name: "Not good for the neighborhood",
  50080. height: math.unit(135, "meters")
  50081. },
  50082. {
  50083. name: "Bit bigger problem",
  50084. height: math.unit(380, "meters"),
  50085. default: true
  50086. },
  50087. {
  50088. name: "Not good for the city",
  50089. height: math.unit(1.5, "km")
  50090. },
  50091. {
  50092. name: "Not good for the county",
  50093. height: math.unit(5.5, "km")
  50094. },
  50095. {
  50096. name: "Not good for the state",
  50097. height: math.unit(25, "km")
  50098. },
  50099. {
  50100. name: "Not good for the country",
  50101. height: math.unit(125, "km")
  50102. },
  50103. {
  50104. name: "Not good for the continent",
  50105. height: math.unit(2100, "km")
  50106. },
  50107. {
  50108. name: "Not good for the planet",
  50109. height: math.unit(35000, "km")
  50110. },
  50111. {
  50112. name: "Just no",
  50113. height: math.unit(8.5e18, "km")
  50114. },
  50115. ]
  50116. ))
  50117. characterMakers.push(() => makeCharacter(
  50118. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50119. {
  50120. front: {
  50121. height: math.unit(6.5, "feet"),
  50122. name: "Front",
  50123. image: {
  50124. source: "./media/characters/poppy/front.svg",
  50125. extra: 1878/1812,
  50126. bottom: 43/1921
  50127. }
  50128. },
  50129. feet: {
  50130. height: math.unit(1.06, "feet"),
  50131. name: "Feet",
  50132. image: {
  50133. source: "./media/characters/poppy/feet.svg",
  50134. extra: 1083/1083,
  50135. bottom: 87/1170
  50136. }
  50137. },
  50138. },
  50139. [
  50140. {
  50141. name: "Human",
  50142. height: math.unit(6.5, "feet")
  50143. },
  50144. {
  50145. name: "Default",
  50146. height: math.unit(300, "feet"),
  50147. default: true
  50148. },
  50149. {
  50150. name: "Huge",
  50151. height: math.unit(850, "feet")
  50152. },
  50153. {
  50154. name: "Mega",
  50155. height: math.unit(8000, "feet")
  50156. },
  50157. {
  50158. name: "Giga",
  50159. height: math.unit(300, "miles")
  50160. },
  50161. ]
  50162. ))
  50163. characterMakers.push(() => makeCharacter(
  50164. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50165. {
  50166. bipedal: {
  50167. height: math.unit(7, "feet"),
  50168. name: "Bipedal",
  50169. image: {
  50170. source: "./media/characters/zener/bipedal.svg",
  50171. extra: 874/805,
  50172. bottom: 109/983
  50173. }
  50174. },
  50175. quadrupedal: {
  50176. height: math.unit(4.64, "feet"),
  50177. name: "Quadrupedal",
  50178. image: {
  50179. source: "./media/characters/zener/quadrupedal.svg",
  50180. extra: 638/507,
  50181. bottom: 190/828
  50182. }
  50183. },
  50184. cock: {
  50185. height: math.unit(18, "inches"),
  50186. name: "Cock",
  50187. image: {
  50188. source: "./media/characters/zener/cock.svg"
  50189. }
  50190. },
  50191. },
  50192. [
  50193. {
  50194. name: "Normal",
  50195. height: math.unit(7, "feet"),
  50196. default: true
  50197. },
  50198. ]
  50199. ))
  50200. characterMakers.push(() => makeCharacter(
  50201. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50202. {
  50203. nude: {
  50204. height: math.unit(5 + 6/12, "feet"),
  50205. name: "Nude",
  50206. image: {
  50207. source: "./media/characters/charlie-dog/nude.svg",
  50208. extra: 768/734,
  50209. bottom: 26/794
  50210. }
  50211. },
  50212. dressed: {
  50213. height: math.unit(5 + 6/12, "feet"),
  50214. name: "Dressed",
  50215. image: {
  50216. source: "./media/characters/charlie-dog/dressed.svg",
  50217. extra: 768/734,
  50218. bottom: 26/794
  50219. }
  50220. },
  50221. },
  50222. [
  50223. {
  50224. name: "Normal",
  50225. height: math.unit(5 + 6/12, "feet"),
  50226. default: true
  50227. },
  50228. ]
  50229. ))
  50230. characterMakers.push(() => makeCharacter(
  50231. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50232. {
  50233. front: {
  50234. height: math.unit(6 + 4/12, "feet"),
  50235. name: "Front",
  50236. image: {
  50237. source: "./media/characters/ir'istrasz/front.svg",
  50238. extra: 1014/977,
  50239. bottom: 65/1079
  50240. }
  50241. },
  50242. back: {
  50243. height: math.unit(6 + 4/12, "feet"),
  50244. name: "Back",
  50245. image: {
  50246. source: "./media/characters/ir'istrasz/back.svg",
  50247. extra: 1024/992,
  50248. bottom: 34/1058
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(6 + 4/12, "feet"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50262. {
  50263. front: {
  50264. height: math.unit(5 + 8/12, "feet"),
  50265. name: "Front",
  50266. image: {
  50267. source: "./media/characters/dee-ditto/front.svg",
  50268. extra: 1874/1785,
  50269. bottom: 68/1942
  50270. }
  50271. },
  50272. back: {
  50273. height: math.unit(5 + 8/12, "feet"),
  50274. name: "Back",
  50275. image: {
  50276. source: "./media/characters/dee-ditto/back.svg",
  50277. extra: 1870/1783,
  50278. bottom: 77/1947
  50279. }
  50280. },
  50281. },
  50282. [
  50283. {
  50284. name: "Normal",
  50285. height: math.unit(5 + 8/12, "feet"),
  50286. default: true
  50287. },
  50288. ]
  50289. ))
  50290. characterMakers.push(() => makeCharacter(
  50291. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50292. {
  50293. front: {
  50294. height: math.unit(7 + 6/12, "feet"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/fey/front.svg",
  50298. extra: 995/979,
  50299. bottom: 30/1025
  50300. }
  50301. },
  50302. back: {
  50303. height: math.unit(7 + 6/12, "feet"),
  50304. name: "Back",
  50305. image: {
  50306. source: "./media/characters/fey/back.svg",
  50307. extra: 1079/1008,
  50308. bottom: 5/1084
  50309. }
  50310. },
  50311. dressed: {
  50312. height: math.unit(7 + 6/12, "feet"),
  50313. name: "Dressed",
  50314. image: {
  50315. source: "./media/characters/fey/dressed.svg",
  50316. extra: 995/979,
  50317. bottom: 30/1025
  50318. }
  50319. },
  50320. },
  50321. [
  50322. {
  50323. name: "Normal",
  50324. height: math.unit(7 + 6/12, "feet"),
  50325. default: true
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50331. {
  50332. standing: {
  50333. height: math.unit(17, "feet"),
  50334. name: "Standing",
  50335. image: {
  50336. source: "./media/characters/aster/standing.svg",
  50337. extra: 1798/1598,
  50338. bottom: 117/1915
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Normal",
  50345. height: math.unit(17, "feet"),
  50346. default: true
  50347. },
  50348. {
  50349. name: "Homewrecker",
  50350. height: math.unit(95, "feet")
  50351. },
  50352. {
  50353. name: "Planet Devourer",
  50354. height: math.unit(1008000, "miles")
  50355. },
  50356. ]
  50357. ))
  50358. characterMakers.push(() => makeCharacter(
  50359. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50360. {
  50361. front: {
  50362. height: math.unit(6 + 5/12, "feet"),
  50363. weight: math.unit(265, "lb"),
  50364. name: "Front",
  50365. image: {
  50366. source: "./media/characters/devon-childs/front.svg",
  50367. extra: 1795/1721,
  50368. bottom: 41/1836
  50369. }
  50370. },
  50371. side: {
  50372. height: math.unit(6 + 5/12, "feet"),
  50373. weight: math.unit(265, "lb"),
  50374. name: "Side",
  50375. image: {
  50376. source: "./media/characters/devon-childs/side.svg",
  50377. extra: 1812/1738,
  50378. bottom: 30/1842
  50379. }
  50380. },
  50381. back: {
  50382. height: math.unit(6 + 5/12, "feet"),
  50383. weight: math.unit(265, "lb"),
  50384. name: "Back",
  50385. image: {
  50386. source: "./media/characters/devon-childs/back.svg",
  50387. extra: 1808/1735,
  50388. bottom: 23/1831
  50389. }
  50390. },
  50391. hand: {
  50392. height: math.unit(1.464, "feet"),
  50393. name: "Hand",
  50394. image: {
  50395. source: "./media/characters/devon-childs/hand.svg"
  50396. }
  50397. },
  50398. foot: {
  50399. height: math.unit(1.6, "feet"),
  50400. name: "Foot",
  50401. image: {
  50402. source: "./media/characters/devon-childs/foot.svg"
  50403. }
  50404. },
  50405. },
  50406. [
  50407. {
  50408. name: "Micro",
  50409. height: math.unit(7, "cm")
  50410. },
  50411. {
  50412. name: "Normal",
  50413. height: math.unit(6 + 5/12, "feet"),
  50414. default: true
  50415. },
  50416. {
  50417. name: "Macro",
  50418. height: math.unit(154, "feet")
  50419. },
  50420. ]
  50421. ))
  50422. characterMakers.push(() => makeCharacter(
  50423. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50424. {
  50425. front: {
  50426. height: math.unit(6, "feet"),
  50427. weight: math.unit(180, "lb"),
  50428. name: "Front",
  50429. image: {
  50430. source: "./media/characters/lydemox-vir/front.svg",
  50431. extra: 1632/1435,
  50432. bottom: 58/1690
  50433. }
  50434. },
  50435. frontSFW: {
  50436. height: math.unit(6, "feet"),
  50437. weight: math.unit(180, "lb"),
  50438. name: "Front (SFW)",
  50439. image: {
  50440. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50441. extra: 1632/1435,
  50442. bottom: 58/1690
  50443. }
  50444. },
  50445. back: {
  50446. height: math.unit(6, "feet"),
  50447. weight: math.unit(180, "lb"),
  50448. name: "Back",
  50449. image: {
  50450. source: "./media/characters/lydemox-vir/back.svg",
  50451. extra: 1593/1408,
  50452. bottom: 31/1624
  50453. }
  50454. },
  50455. paw: {
  50456. height: math.unit(1.85, "feet"),
  50457. name: "Paw",
  50458. image: {
  50459. source: "./media/characters/lydemox-vir/paw.svg"
  50460. }
  50461. },
  50462. dick: {
  50463. height: math.unit(1.8, "feet"),
  50464. name: "Dick",
  50465. image: {
  50466. source: "./media/characters/lydemox-vir/dick.svg"
  50467. }
  50468. },
  50469. },
  50470. [
  50471. {
  50472. name: "Macro",
  50473. height: math.unit(100, "feet"),
  50474. default: true
  50475. },
  50476. {
  50477. name: "Teramacro",
  50478. height: math.unit(1, "earth")
  50479. },
  50480. {
  50481. name: "Planetary",
  50482. height: math.unit(20, "earths")
  50483. },
  50484. ]
  50485. ))
  50486. characterMakers.push(() => makeCharacter(
  50487. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50488. {
  50489. front: {
  50490. height: math.unit(15 + 8/12, "feet"),
  50491. weight: math.unit(1237, "kg"),
  50492. name: "Front",
  50493. image: {
  50494. source: "./media/characters/mia/front.svg",
  50495. extra: 1573/1446,
  50496. bottom: 58/1631
  50497. }
  50498. },
  50499. },
  50500. [
  50501. {
  50502. name: "Small",
  50503. height: math.unit(9 + 5/12, "feet")
  50504. },
  50505. {
  50506. name: "Normal",
  50507. height: math.unit(15 + 8/12, "feet"),
  50508. default: true
  50509. },
  50510. ]
  50511. ))
  50512. characterMakers.push(() => makeCharacter(
  50513. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50514. {
  50515. front: {
  50516. height: math.unit(10 + 6/12, "feet"),
  50517. weight: math.unit(1.3, "tons"),
  50518. name: "Front",
  50519. image: {
  50520. source: "./media/characters/mr-graves/front.svg",
  50521. extra: 1779/1695,
  50522. bottom: 198/1977
  50523. }
  50524. },
  50525. },
  50526. [
  50527. {
  50528. name: "Normal",
  50529. height: math.unit(10 + 6 /12, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50536. {
  50537. dressedFront: {
  50538. height: math.unit(5 + 8/12, "feet"),
  50539. weight: math.unit(125, "lb"),
  50540. name: "Dressed (Front)",
  50541. image: {
  50542. source: "./media/characters/jess/dressed-front.svg",
  50543. extra: 1176/1152,
  50544. bottom: 42/1218
  50545. }
  50546. },
  50547. dressedSide: {
  50548. height: math.unit(5 + 8/12, "feet"),
  50549. weight: math.unit(125, "lb"),
  50550. name: "Dressed (Side)",
  50551. image: {
  50552. source: "./media/characters/jess/dressed-side.svg",
  50553. extra: 1204/1190,
  50554. bottom: 6/1210
  50555. }
  50556. },
  50557. nudeFront: {
  50558. height: math.unit(5 + 8/12, "feet"),
  50559. weight: math.unit(125, "lb"),
  50560. name: "Nude (Front)",
  50561. image: {
  50562. source: "./media/characters/jess/nude-front.svg",
  50563. extra: 1176/1152,
  50564. bottom: 42/1218
  50565. }
  50566. },
  50567. nudeSide: {
  50568. height: math.unit(5 + 8/12, "feet"),
  50569. weight: math.unit(125, "lb"),
  50570. name: "Nude (Side)",
  50571. image: {
  50572. source: "./media/characters/jess/nude-side.svg",
  50573. extra: 1204/1190,
  50574. bottom: 6/1210
  50575. }
  50576. },
  50577. organsFront: {
  50578. height: math.unit(2.83799342105, "feet"),
  50579. name: "Organs (Front)",
  50580. image: {
  50581. source: "./media/characters/jess/organs-front.svg"
  50582. }
  50583. },
  50584. organsSide: {
  50585. height: math.unit(2.64225290474, "feet"),
  50586. name: "Organs (Side)",
  50587. image: {
  50588. source: "./media/characters/jess/organs-side.svg"
  50589. }
  50590. },
  50591. digestiveTractFront: {
  50592. height: math.unit(2.8106580871, "feet"),
  50593. name: "Digestive Tract (Front)",
  50594. image: {
  50595. source: "./media/characters/jess/digestive-tract-front.svg"
  50596. }
  50597. },
  50598. digestiveTractSide: {
  50599. height: math.unit(2.54365045014, "feet"),
  50600. name: "Digestive Tract (Side)",
  50601. image: {
  50602. source: "./media/characters/jess/digestive-tract-side.svg"
  50603. }
  50604. },
  50605. respiratorySystemFront: {
  50606. height: math.unit(1.11196233456, "feet"),
  50607. name: "Respiratory System (Front)",
  50608. image: {
  50609. source: "./media/characters/jess/respiratory-system-front.svg"
  50610. }
  50611. },
  50612. respiratorySystemSide: {
  50613. height: math.unit(0.89327966297, "feet"),
  50614. name: "Respiratory System (Side)",
  50615. image: {
  50616. source: "./media/characters/jess/respiratory-system-side.svg"
  50617. }
  50618. },
  50619. urinaryTractFront: {
  50620. height: math.unit(1.16126356186, "feet"),
  50621. name: "Urinary Tract (Front)",
  50622. image: {
  50623. source: "./media/characters/jess/urinary-tract-front.svg"
  50624. }
  50625. },
  50626. urinaryTractSide: {
  50627. height: math.unit(1.20910039627, "feet"),
  50628. name: "Urinary Tract (Side)",
  50629. image: {
  50630. source: "./media/characters/jess/urinary-tract-side.svg"
  50631. }
  50632. },
  50633. reproductiveOrgansFront: {
  50634. height: math.unit(0.48422591566, "feet"),
  50635. name: "Reproductive Organs (Front)",
  50636. image: {
  50637. source: "./media/characters/jess/reproductive-organs-front.svg"
  50638. }
  50639. },
  50640. reproductiveOrgansSide: {
  50641. height: math.unit(0.61553314481, "feet"),
  50642. name: "Reproductive Organs (Side)",
  50643. image: {
  50644. source: "./media/characters/jess/reproductive-organs-side.svg"
  50645. }
  50646. },
  50647. breastsFront: {
  50648. height: math.unit(0.47690395121, "feet"),
  50649. name: "Breasts (Front)",
  50650. image: {
  50651. source: "./media/characters/jess/breasts-front.svg"
  50652. }
  50653. },
  50654. breastsSide: {
  50655. height: math.unit(0.30556998307, "feet"),
  50656. name: "Breasts (Side)",
  50657. image: {
  50658. source: "./media/characters/jess/breasts-side.svg"
  50659. }
  50660. },
  50661. heartFront: {
  50662. height: math.unit(0.53011022622, "feet"),
  50663. name: "Heart (Front)",
  50664. image: {
  50665. source: "./media/characters/jess/heart-front.svg"
  50666. }
  50667. },
  50668. heartSide: {
  50669. height: math.unit(0.51790695213, "feet"),
  50670. name: "Heart (Side)",
  50671. image: {
  50672. source: "./media/characters/jess/heart-side.svg"
  50673. }
  50674. },
  50675. earsAndNoseFront: {
  50676. height: math.unit(0.29385483995, "feet"),
  50677. name: "Ears and Nose (Front)",
  50678. image: {
  50679. source: "./media/characters/jess/ears-and-nose-front.svg"
  50680. }
  50681. },
  50682. earsAndNoseSide: {
  50683. height: math.unit(0.18109658741, "feet"),
  50684. name: "Ears and Nose (Side)",
  50685. image: {
  50686. source: "./media/characters/jess/ears-and-nose-side.svg"
  50687. }
  50688. },
  50689. },
  50690. [
  50691. {
  50692. name: "Normal",
  50693. height: math.unit(5 + 8/12, "feet"),
  50694. default: true
  50695. },
  50696. ]
  50697. ))
  50698. characterMakers.push(() => makeCharacter(
  50699. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50700. {
  50701. front: {
  50702. height: math.unit(6, "feet"),
  50703. weight: math.unit(6.64467e-7, "grams"),
  50704. name: "Front",
  50705. image: {
  50706. source: "./media/characters/wimpering/front.svg",
  50707. extra: 597/587,
  50708. bottom: 34/631
  50709. }
  50710. },
  50711. },
  50712. [
  50713. {
  50714. name: "Micro",
  50715. height: math.unit(0.4, "mm"),
  50716. default: true
  50717. },
  50718. ]
  50719. ))
  50720. characterMakers.push(() => makeCharacter(
  50721. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50722. {
  50723. front: {
  50724. height: math.unit(5 + 2/12, "feet"),
  50725. weight: math.unit(110, "lb"),
  50726. name: "Front",
  50727. image: {
  50728. source: "./media/characters/keltre/front.svg",
  50729. extra: 1099/1057,
  50730. bottom: 22/1121
  50731. }
  50732. },
  50733. back: {
  50734. height: math.unit(5 + 2/12, "feet"),
  50735. weight: math.unit(110, "lb"),
  50736. name: "Back",
  50737. image: {
  50738. source: "./media/characters/keltre/back.svg",
  50739. extra: 1095/1053,
  50740. bottom: 17/1112
  50741. }
  50742. },
  50743. dressed: {
  50744. height: math.unit(5 + 2/12, "feet"),
  50745. weight: math.unit(110, "lb"),
  50746. name: "Dressed",
  50747. image: {
  50748. source: "./media/characters/keltre/dressed.svg",
  50749. extra: 1099/1057,
  50750. bottom: 22/1121
  50751. }
  50752. },
  50753. winter: {
  50754. height: math.unit(5 + 2/12, "feet"),
  50755. weight: math.unit(110, "lb"),
  50756. name: "Winter",
  50757. image: {
  50758. source: "./media/characters/keltre/winter.svg",
  50759. extra: 1099/1057,
  50760. bottom: 22/1121
  50761. }
  50762. },
  50763. head: {
  50764. height: math.unit(1.61 * 0.86, "feet"),
  50765. name: "Head",
  50766. image: {
  50767. source: "./media/characters/keltre/head.svg",
  50768. extra: 534/421,
  50769. bottom: 0/534
  50770. }
  50771. },
  50772. hand: {
  50773. height: math.unit(1.3 * 0.86, "feet"),
  50774. name: "Hand",
  50775. image: {
  50776. source: "./media/characters/keltre/hand.svg"
  50777. }
  50778. },
  50779. foot: {
  50780. height: math.unit(1.8 * 0.86, "feet"),
  50781. name: "Foot",
  50782. image: {
  50783. source: "./media/characters/keltre/foot.svg"
  50784. }
  50785. },
  50786. },
  50787. [
  50788. {
  50789. name: "Fine",
  50790. height: math.unit(1, "inch")
  50791. },
  50792. {
  50793. name: "Dimnutive",
  50794. height: math.unit(4, "inches")
  50795. },
  50796. {
  50797. name: "Tiny",
  50798. height: math.unit(1, "foot")
  50799. },
  50800. {
  50801. name: "Small",
  50802. height: math.unit(3, "feet")
  50803. },
  50804. {
  50805. name: "Normal",
  50806. height: math.unit(5 + 2/12, "feet"),
  50807. default: true
  50808. },
  50809. ]
  50810. ))
  50811. characterMakers.push(() => makeCharacter(
  50812. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50813. {
  50814. front: {
  50815. height: math.unit(6 + 2/12, "feet"),
  50816. name: "Front",
  50817. image: {
  50818. source: "./media/characters/nox/front.svg",
  50819. extra: 1917/1830,
  50820. bottom: 74/1991
  50821. }
  50822. },
  50823. back: {
  50824. height: math.unit(6 + 2/12, "feet"),
  50825. name: "Back",
  50826. image: {
  50827. source: "./media/characters/nox/back.svg",
  50828. extra: 1896/1815,
  50829. bottom: 21/1917
  50830. }
  50831. },
  50832. head: {
  50833. height: math.unit(1.1, "feet"),
  50834. name: "Head",
  50835. image: {
  50836. source: "./media/characters/nox/head.svg",
  50837. extra: 874/704,
  50838. bottom: 0/874
  50839. }
  50840. },
  50841. tattoo: {
  50842. height: math.unit(0.729, "feet"),
  50843. name: "Tattoo",
  50844. image: {
  50845. source: "./media/characters/nox/tattoo.svg"
  50846. }
  50847. },
  50848. },
  50849. [
  50850. {
  50851. name: "Normal",
  50852. height: math.unit(6 + 2/12, "feet")
  50853. },
  50854. {
  50855. name: "Gigamacro",
  50856. height: math.unit(2, "earths"),
  50857. default: true
  50858. },
  50859. {
  50860. name: "Cosmic",
  50861. height: math.unit(867, "yottameters")
  50862. },
  50863. ]
  50864. ))
  50865. characterMakers.push(() => makeCharacter(
  50866. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50867. {
  50868. front: {
  50869. height: math.unit(6, "feet"),
  50870. weight: math.unit(150, "lb"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/caspian/front.svg",
  50874. extra: 1443/1359,
  50875. bottom: 0/1443
  50876. }
  50877. },
  50878. back: {
  50879. height: math.unit(6, "feet"),
  50880. weight: math.unit(150, "lb"),
  50881. name: "Back",
  50882. image: {
  50883. source: "./media/characters/caspian/back.svg",
  50884. extra: 1379/1309,
  50885. bottom: 0/1379
  50886. }
  50887. },
  50888. head: {
  50889. height: math.unit(0.9, "feet"),
  50890. name: "Head",
  50891. image: {
  50892. source: "./media/characters/caspian/head.svg",
  50893. extra: 692/492,
  50894. bottom: 0/692
  50895. }
  50896. },
  50897. headAlt: {
  50898. height: math.unit(0.95, "feet"),
  50899. name: "Head (Alt)",
  50900. image: {
  50901. source: "./media/characters/caspian/head-alt.svg",
  50902. extra: 668/508,
  50903. bottom: 0/668
  50904. }
  50905. },
  50906. hand: {
  50907. height: math.unit(0.8, "feet"),
  50908. name: "Hand",
  50909. image: {
  50910. source: "./media/characters/caspian/hand.svg"
  50911. }
  50912. },
  50913. paw: {
  50914. height: math.unit(0.95, "feet"),
  50915. name: "Paw",
  50916. image: {
  50917. source: "./media/characters/caspian/paw.svg"
  50918. }
  50919. },
  50920. },
  50921. [
  50922. {
  50923. name: "Normal",
  50924. height: math.unit(162, "feet"),
  50925. default: true
  50926. },
  50927. ]
  50928. ))
  50929. characterMakers.push(() => makeCharacter(
  50930. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50931. {
  50932. front: {
  50933. height: math.unit(6, "feet"),
  50934. name: "Front",
  50935. image: {
  50936. source: "./media/characters/myra-aisling/front.svg",
  50937. extra: 1268/1166,
  50938. bottom: 73/1341
  50939. }
  50940. },
  50941. back: {
  50942. height: math.unit(6, "feet"),
  50943. name: "Back",
  50944. image: {
  50945. source: "./media/characters/myra-aisling/back.svg",
  50946. extra: 1249/1149,
  50947. bottom: 79/1328
  50948. }
  50949. },
  50950. dressed: {
  50951. height: math.unit(6, "feet"),
  50952. name: "Dressed",
  50953. image: {
  50954. source: "./media/characters/myra-aisling/dressed.svg",
  50955. extra: 1290/1189,
  50956. bottom: 47/1337
  50957. }
  50958. },
  50959. hand: {
  50960. height: math.unit(1.1, "feet"),
  50961. name: "Hand",
  50962. image: {
  50963. source: "./media/characters/myra-aisling/hand.svg"
  50964. }
  50965. },
  50966. paw: {
  50967. height: math.unit(1.23, "feet"),
  50968. name: "Paw",
  50969. image: {
  50970. source: "./media/characters/myra-aisling/paw.svg"
  50971. }
  50972. },
  50973. },
  50974. [
  50975. {
  50976. name: "Normal",
  50977. height: math.unit(160, "feet"),
  50978. default: true
  50979. },
  50980. ]
  50981. ))
  50982. characterMakers.push(() => makeCharacter(
  50983. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50984. {
  50985. front: {
  50986. height: math.unit(6, "feet"),
  50987. name: "Front",
  50988. image: {
  50989. source: "./media/characters/tenley-sidero/front.svg",
  50990. extra: 1365/1276,
  50991. bottom: 47/1412
  50992. }
  50993. },
  50994. back: {
  50995. height: math.unit(6, "feet"),
  50996. name: "Back",
  50997. image: {
  50998. source: "./media/characters/tenley-sidero/back.svg",
  50999. extra: 1383/1283,
  51000. bottom: 35/1418
  51001. }
  51002. },
  51003. dressed: {
  51004. height: math.unit(6, "feet"),
  51005. name: "Dressed",
  51006. image: {
  51007. source: "./media/characters/tenley-sidero/dressed.svg",
  51008. extra: 1364/1275,
  51009. bottom: 42/1406
  51010. }
  51011. },
  51012. head: {
  51013. height: math.unit(1.47, "feet"),
  51014. name: "Head",
  51015. image: {
  51016. source: "./media/characters/tenley-sidero/head.svg",
  51017. extra: 610/490,
  51018. bottom: 0/610
  51019. }
  51020. },
  51021. },
  51022. [
  51023. {
  51024. name: "Normal",
  51025. height: math.unit(154, "feet"),
  51026. default: true
  51027. },
  51028. ]
  51029. ))
  51030. characterMakers.push(() => makeCharacter(
  51031. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51032. {
  51033. front: {
  51034. height: math.unit(5, "inches"),
  51035. name: "Front",
  51036. image: {
  51037. source: "./media/characters/mallory/front.svg",
  51038. extra: 1919/1678,
  51039. bottom: 29/1948
  51040. }
  51041. },
  51042. hand: {
  51043. height: math.unit(0.73, "inches"),
  51044. name: "Hand",
  51045. image: {
  51046. source: "./media/characters/mallory/hand.svg"
  51047. }
  51048. },
  51049. paw: {
  51050. height: math.unit(0.68, "inches"),
  51051. name: "Paw",
  51052. image: {
  51053. source: "./media/characters/mallory/paw.svg"
  51054. }
  51055. },
  51056. },
  51057. [
  51058. {
  51059. name: "Small",
  51060. height: math.unit(5, "inches"),
  51061. default: true
  51062. },
  51063. ]
  51064. ))
  51065. characterMakers.push(() => makeCharacter(
  51066. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51067. {
  51068. naked: {
  51069. height: math.unit(6, "feet"),
  51070. name: "Naked",
  51071. image: {
  51072. source: "./media/characters/mab/naked.svg",
  51073. extra: 1855/1757,
  51074. bottom: 208/2063
  51075. }
  51076. },
  51077. outside: {
  51078. height: math.unit(6, "feet"),
  51079. name: "Outside",
  51080. image: {
  51081. source: "./media/characters/mab/outside.svg",
  51082. extra: 1855/1757,
  51083. bottom: 208/2063
  51084. }
  51085. },
  51086. party: {
  51087. height: math.unit(6, "feet"),
  51088. name: "Party",
  51089. image: {
  51090. source: "./media/characters/mab/party.svg",
  51091. extra: 1855/1757,
  51092. bottom: 208/2063
  51093. }
  51094. },
  51095. },
  51096. [
  51097. {
  51098. name: "Normal",
  51099. height: math.unit(165, "feet"),
  51100. default: true
  51101. },
  51102. ]
  51103. ))
  51104. characterMakers.push(() => makeCharacter(
  51105. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51106. {
  51107. feral: {
  51108. height: math.unit(12, "feet"),
  51109. weight: math.unit(20000, "lb"),
  51110. name: "Side",
  51111. image: {
  51112. source: "./media/characters/winter/feral.svg",
  51113. extra: 1286/943,
  51114. bottom: 112/1398
  51115. },
  51116. form: "feral",
  51117. default: true
  51118. },
  51119. feralNsfw: {
  51120. height: math.unit(12, "feet"),
  51121. weight: math.unit(20000, "lb"),
  51122. name: "Side (NSFW)",
  51123. image: {
  51124. source: "./media/characters/winter/feral-nsfw.svg",
  51125. extra: 1286/943,
  51126. bottom: 112/1398
  51127. },
  51128. form: "feral"
  51129. },
  51130. dick: {
  51131. height: math.unit(3.79, "feet"),
  51132. name: "Dick",
  51133. image: {
  51134. source: "./media/characters/winter/dick.svg"
  51135. },
  51136. form: "feral"
  51137. },
  51138. anthro: {
  51139. height: math.unit(12, "feet"),
  51140. weight: math.unit(10, "tons"),
  51141. name: "Anthro",
  51142. image: {
  51143. source: "./media/characters/winter/anthro.svg",
  51144. extra: 1701/1553,
  51145. bottom: 64/1765
  51146. },
  51147. form: "anthro",
  51148. default: true
  51149. },
  51150. },
  51151. [
  51152. {
  51153. name: "Big",
  51154. height: math.unit(12, "feet"),
  51155. default: true,
  51156. form: "feral"
  51157. },
  51158. {
  51159. name: "Big",
  51160. height: math.unit(12, "feet"),
  51161. default: true,
  51162. form: "anthro"
  51163. },
  51164. ],
  51165. {
  51166. "feral": {
  51167. name: "Feral",
  51168. default: true
  51169. },
  51170. "anthro": {
  51171. name: "Anthro"
  51172. }
  51173. }
  51174. ))
  51175. characterMakers.push(() => makeCharacter(
  51176. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51177. {
  51178. front: {
  51179. height: math.unit(4.1, "inches"),
  51180. name: "Front",
  51181. image: {
  51182. source: "./media/characters/alto/front.svg",
  51183. extra: 736/627,
  51184. bottom: 90/826
  51185. }
  51186. },
  51187. },
  51188. [
  51189. {
  51190. name: "Normal",
  51191. height: math.unit(4.1, "inches"),
  51192. default: true
  51193. },
  51194. ]
  51195. ))
  51196. characterMakers.push(() => makeCharacter(
  51197. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51198. {
  51199. sitting: {
  51200. height: math.unit(3, "feet"),
  51201. name: "Sitting",
  51202. image: {
  51203. source: "./media/characters/ratstrid-v/sitting.svg",
  51204. extra: 355/310,
  51205. bottom: 136/491
  51206. }
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(3, "feet"),
  51213. default: true
  51214. },
  51215. ]
  51216. ))
  51217. characterMakers.push(() => makeCharacter(
  51218. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51219. {
  51220. back: {
  51221. height: math.unit(6, "feet"),
  51222. weight: math.unit(450, "lb"),
  51223. name: "Back",
  51224. image: {
  51225. source: "./media/characters/siz/back.svg",
  51226. extra: 1449/1274,
  51227. bottom: 13/1462
  51228. }
  51229. },
  51230. },
  51231. [
  51232. {
  51233. name: "Smallest",
  51234. height: math.unit(18 + 3/12, "feet")
  51235. },
  51236. {
  51237. name: "Modest",
  51238. height: math.unit(56 + 8/12, "feet"),
  51239. default: true
  51240. },
  51241. {
  51242. name: "Largest",
  51243. height: math.unit(3590, "feet")
  51244. },
  51245. ]
  51246. ))
  51247. characterMakers.push(() => makeCharacter(
  51248. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51249. {
  51250. front: {
  51251. height: math.unit(5 + 9/12, "feet"),
  51252. weight: math.unit(150, "lb"),
  51253. name: "Front",
  51254. image: {
  51255. source: "./media/characters/ven/front.svg",
  51256. extra: 1372/1320,
  51257. bottom: 73/1445
  51258. }
  51259. },
  51260. side: {
  51261. height: math.unit(5 + 9/12, "feet"),
  51262. weight: math.unit(1150, "lb"),
  51263. name: "Side",
  51264. image: {
  51265. source: "./media/characters/ven/side.svg",
  51266. extra: 1119/1070,
  51267. bottom: 42/1161
  51268. },
  51269. default: true
  51270. },
  51271. },
  51272. [
  51273. {
  51274. name: "Normal",
  51275. height: math.unit(5 + 9/12, "feet"),
  51276. default: true
  51277. },
  51278. ]
  51279. ))
  51280. characterMakers.push(() => makeCharacter(
  51281. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51282. {
  51283. front: {
  51284. height: math.unit(12, "feet"),
  51285. weight: math.unit(1000, "kg"),
  51286. name: "Front",
  51287. image: {
  51288. source: "./media/characters/maple/front.svg",
  51289. extra: 1193/1081,
  51290. bottom: 22/1215
  51291. }
  51292. },
  51293. },
  51294. [
  51295. {
  51296. name: "Compressed",
  51297. height: math.unit(7, "feet")
  51298. },
  51299. {
  51300. name: "Normal",
  51301. height: math.unit(12, "feet"),
  51302. default: true
  51303. },
  51304. ]
  51305. ))
  51306. characterMakers.push(() => makeCharacter(
  51307. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51308. {
  51309. front: {
  51310. height: math.unit(9, "feet"),
  51311. weight: math.unit(1500, "lb"),
  51312. name: "Front",
  51313. image: {
  51314. source: "./media/characters/nora/front.svg",
  51315. extra: 1348/1286,
  51316. bottom: 218/1566
  51317. }
  51318. },
  51319. erect: {
  51320. height: math.unit(9, "feet"),
  51321. weight: math.unit(11500, "lb"),
  51322. name: "Erect",
  51323. image: {
  51324. source: "./media/characters/nora/erect.svg",
  51325. extra: 1488/1433,
  51326. bottom: 133/1621
  51327. }
  51328. },
  51329. },
  51330. [
  51331. {
  51332. name: "Normal",
  51333. height: math.unit(9, "feet"),
  51334. default: true
  51335. },
  51336. ]
  51337. ))
  51338. characterMakers.push(() => makeCharacter(
  51339. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51340. {
  51341. front: {
  51342. height: math.unit(25, "feet"),
  51343. weight: math.unit(27500, "lb"),
  51344. name: "Front",
  51345. image: {
  51346. source: "./media/characters/north-caudin/front.svg",
  51347. extra: 1184/1082,
  51348. bottom: 23/1207
  51349. }
  51350. },
  51351. },
  51352. [
  51353. {
  51354. name: "Compressed",
  51355. height: math.unit(10, "feet")
  51356. },
  51357. {
  51358. name: "Normal",
  51359. height: math.unit(25, "feet"),
  51360. default: true
  51361. },
  51362. ]
  51363. ))
  51364. characterMakers.push(() => makeCharacter(
  51365. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51366. {
  51367. front: {
  51368. height: math.unit(9, "feet"),
  51369. weight: math.unit(1250, "lb"),
  51370. name: "Front",
  51371. image: {
  51372. source: "./media/characters/merrian/front.svg",
  51373. extra: 2393/2304,
  51374. bottom: 40/2433
  51375. }
  51376. },
  51377. },
  51378. [
  51379. {
  51380. name: "Normal",
  51381. height: math.unit(9, "feet"),
  51382. default: true
  51383. },
  51384. ]
  51385. ))
  51386. characterMakers.push(() => makeCharacter(
  51387. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51388. {
  51389. front: {
  51390. height: math.unit(9, "feet"),
  51391. weight: math.unit(1000, "lb"),
  51392. name: "Front",
  51393. image: {
  51394. source: "./media/characters/hazel/front.svg",
  51395. extra: 2351/2298,
  51396. bottom: 38/2389
  51397. }
  51398. },
  51399. },
  51400. [
  51401. {
  51402. name: "Normal",
  51403. height: math.unit(9, "feet"),
  51404. default: true
  51405. },
  51406. ]
  51407. ))
  51408. characterMakers.push(() => makeCharacter(
  51409. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51410. {
  51411. front: {
  51412. height: math.unit(13, "feet"),
  51413. weight: math.unit(3200, "lb"),
  51414. name: "Front",
  51415. image: {
  51416. source: "./media/characters/emma/front.svg",
  51417. extra: 2263/2029,
  51418. bottom: 68/2331
  51419. }
  51420. },
  51421. },
  51422. [
  51423. {
  51424. name: "Normal",
  51425. height: math.unit(13, "feet"),
  51426. default: true
  51427. },
  51428. ]
  51429. ))
  51430. characterMakers.push(() => makeCharacter(
  51431. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51432. {
  51433. front: {
  51434. height: math.unit(11 + 9/12, "feet"),
  51435. weight: math.unit(2500, "lb"),
  51436. name: "Front",
  51437. image: {
  51438. source: "./media/characters/ilumina/front.svg",
  51439. extra: 2248/2209,
  51440. bottom: 164/2412
  51441. }
  51442. },
  51443. },
  51444. [
  51445. {
  51446. name: "Normal",
  51447. height: math.unit(11 + 9/12, "feet"),
  51448. default: true
  51449. },
  51450. ]
  51451. ))
  51452. characterMakers.push(() => makeCharacter(
  51453. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51454. {
  51455. front: {
  51456. height: math.unit(8 + 10/12, "feet"),
  51457. weight: math.unit(1350, "lb"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/moonshine/front.svg",
  51461. extra: 2395/2288,
  51462. bottom: 40/2435
  51463. }
  51464. },
  51465. },
  51466. [
  51467. {
  51468. name: "Normal",
  51469. height: math.unit(8 + 10/12, "feet"),
  51470. default: true
  51471. },
  51472. ]
  51473. ))
  51474. characterMakers.push(() => makeCharacter(
  51475. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51476. {
  51477. front: {
  51478. height: math.unit(14, "feet"),
  51479. weight: math.unit(3400, "lb"),
  51480. name: "Front",
  51481. image: {
  51482. source: "./media/characters/aletia/front.svg",
  51483. extra: 1185/1052,
  51484. bottom: 21/1206
  51485. }
  51486. },
  51487. },
  51488. [
  51489. {
  51490. name: "Compressed",
  51491. height: math.unit(8, "feet")
  51492. },
  51493. {
  51494. name: "Normal",
  51495. height: math.unit(14, "feet"),
  51496. default: true
  51497. },
  51498. ]
  51499. ))
  51500. characterMakers.push(() => makeCharacter(
  51501. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51502. {
  51503. front: {
  51504. height: math.unit(17, "feet"),
  51505. weight: math.unit(6500, "lb"),
  51506. name: "Front",
  51507. image: {
  51508. source: "./media/characters/deidra/front.svg",
  51509. extra: 1201/1081,
  51510. bottom: 16/1217
  51511. }
  51512. },
  51513. },
  51514. [
  51515. {
  51516. name: "Compressed",
  51517. height: math.unit(9 + 6/12, "feet")
  51518. },
  51519. {
  51520. name: "Normal",
  51521. height: math.unit(17, "feet"),
  51522. default: true
  51523. },
  51524. ]
  51525. ))
  51526. characterMakers.push(() => makeCharacter(
  51527. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51528. {
  51529. front: {
  51530. height: math.unit(7 + 4/12, "feet"),
  51531. weight: math.unit(280, "lb"),
  51532. name: "Front",
  51533. image: {
  51534. source: "./media/characters/freki-yrmori/front.svg",
  51535. extra: 1286/1182,
  51536. bottom: 29/1315
  51537. }
  51538. },
  51539. maw: {
  51540. height: math.unit(0.9, "feet"),
  51541. name: "Maw",
  51542. image: {
  51543. source: "./media/characters/freki-yrmori/maw.svg"
  51544. }
  51545. },
  51546. },
  51547. [
  51548. {
  51549. name: "Normal",
  51550. height: math.unit(7 + 4/12, "feet"),
  51551. default: true
  51552. },
  51553. {
  51554. name: "Macro",
  51555. height: math.unit(38.5, "meters")
  51556. },
  51557. ]
  51558. ))
  51559. characterMakers.push(() => makeCharacter(
  51560. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51561. {
  51562. side: {
  51563. height: math.unit(47.2, "meters"),
  51564. weight: math.unit(10000, "tons"),
  51565. name: "Side",
  51566. image: {
  51567. source: "./media/characters/aetherios/side.svg",
  51568. extra: 2363/642,
  51569. bottom: 221/2584
  51570. }
  51571. },
  51572. top: {
  51573. height: math.unit(240, "meters"),
  51574. weight: math.unit(10000, "tons"),
  51575. name: "Top",
  51576. image: {
  51577. source: "./media/characters/aetherios/top.svg"
  51578. }
  51579. },
  51580. bottom: {
  51581. height: math.unit(240, "meters"),
  51582. weight: math.unit(10000, "tons"),
  51583. name: "Bottom",
  51584. image: {
  51585. source: "./media/characters/aetherios/bottom.svg"
  51586. }
  51587. },
  51588. head: {
  51589. height: math.unit(38.6, "meters"),
  51590. name: "Head",
  51591. image: {
  51592. source: "./media/characters/aetherios/head.svg",
  51593. extra: 1335/1112,
  51594. bottom: 0/1335
  51595. }
  51596. },
  51597. front: {
  51598. height: math.unit(29, "meters"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/aetherios/front.svg",
  51602. extra: 1266/953,
  51603. bottom: 158/1424
  51604. }
  51605. },
  51606. maw: {
  51607. height: math.unit(16.37, "meters"),
  51608. name: "Maw",
  51609. image: {
  51610. source: "./media/characters/aetherios/maw.svg",
  51611. extra: 748/637,
  51612. bottom: 0/748
  51613. },
  51614. extraAttributes: {
  51615. preyCapacity: {
  51616. name: "Capacity",
  51617. power: 3,
  51618. type: "volume",
  51619. base: math.unit(1000, "people")
  51620. },
  51621. tongueSize: {
  51622. name: "Tongue Size",
  51623. power: 2,
  51624. type: "area",
  51625. base: math.unit(21, "m^2")
  51626. }
  51627. }
  51628. },
  51629. forepaw: {
  51630. height: math.unit(18, "meters"),
  51631. name: "Forepaw",
  51632. image: {
  51633. source: "./media/characters/aetherios/forepaw.svg"
  51634. }
  51635. },
  51636. hindpaw: {
  51637. height: math.unit(23, "meters"),
  51638. name: "Hindpaw",
  51639. image: {
  51640. source: "./media/characters/aetherios/hindpaw.svg"
  51641. }
  51642. },
  51643. genitals: {
  51644. height: math.unit(42, "meters"),
  51645. name: "Genitals",
  51646. image: {
  51647. source: "./media/characters/aetherios/genitals.svg"
  51648. }
  51649. },
  51650. },
  51651. [
  51652. {
  51653. name: "Normal",
  51654. height: math.unit(47.2, "meters"),
  51655. default: true
  51656. },
  51657. {
  51658. name: "Macro",
  51659. height: math.unit(160, "meters")
  51660. },
  51661. {
  51662. name: "Mega",
  51663. height: math.unit(1.87, "km")
  51664. },
  51665. {
  51666. name: "Giga",
  51667. height: math.unit(40000, "km")
  51668. },
  51669. {
  51670. name: "Stellar",
  51671. height: math.unit(158000000, "km")
  51672. },
  51673. {
  51674. name: "Cosmic",
  51675. height: math.unit(9.46e12, "km")
  51676. },
  51677. ]
  51678. ))
  51679. characterMakers.push(() => makeCharacter(
  51680. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51681. {
  51682. front: {
  51683. height: math.unit(5 + 4/12, "feet"),
  51684. weight: math.unit(80, "lb"),
  51685. name: "Front",
  51686. image: {
  51687. source: "./media/characters/mizu-gieeg/front.svg",
  51688. extra: 850/709,
  51689. bottom: 52/902
  51690. }
  51691. },
  51692. back: {
  51693. height: math.unit(5 + 4/12, "feet"),
  51694. weight: math.unit(80, "lb"),
  51695. name: "Back",
  51696. image: {
  51697. source: "./media/characters/mizu-gieeg/back.svg",
  51698. extra: 882/745,
  51699. bottom: 25/907
  51700. }
  51701. },
  51702. },
  51703. [
  51704. {
  51705. name: "Normal",
  51706. height: math.unit(5 + 4/12, "feet"),
  51707. default: true
  51708. },
  51709. ]
  51710. ))
  51711. characterMakers.push(() => makeCharacter(
  51712. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51713. {
  51714. front: {
  51715. height: math.unit(6, "feet"),
  51716. name: "Front",
  51717. image: {
  51718. source: "./media/characters/roselle-st-papier/front.svg",
  51719. extra: 1430/1280,
  51720. bottom: 37/1467
  51721. }
  51722. },
  51723. back: {
  51724. height: math.unit(6, "feet"),
  51725. name: "Back",
  51726. image: {
  51727. source: "./media/characters/roselle-st-papier/back.svg",
  51728. extra: 1491/1296,
  51729. bottom: 23/1514
  51730. }
  51731. },
  51732. ear: {
  51733. height: math.unit(1.26, "feet"),
  51734. name: "Ear",
  51735. image: {
  51736. source: "./media/characters/roselle-st-papier/ear.svg"
  51737. }
  51738. },
  51739. },
  51740. [
  51741. {
  51742. name: "Normal",
  51743. height: math.unit(150, "feet"),
  51744. default: true
  51745. },
  51746. ]
  51747. ))
  51748. characterMakers.push(() => makeCharacter(
  51749. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51750. {
  51751. front: {
  51752. height: math.unit(1, "inches"),
  51753. name: "Front",
  51754. image: {
  51755. source: "./media/characters/valargent/front.svg",
  51756. extra: 1825/1694,
  51757. bottom: 62/1887
  51758. }
  51759. },
  51760. back: {
  51761. height: math.unit(1, "inches"),
  51762. name: "Back",
  51763. image: {
  51764. source: "./media/characters/valargent/back.svg",
  51765. extra: 1775/1682,
  51766. bottom: 88/1863
  51767. }
  51768. },
  51769. },
  51770. [
  51771. {
  51772. name: "Micro",
  51773. height: math.unit(1, "inch"),
  51774. default: true
  51775. },
  51776. ]
  51777. ))
  51778. characterMakers.push(() => makeCharacter(
  51779. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51780. {
  51781. front: {
  51782. height: math.unit(3.4, "meters"),
  51783. name: "Front",
  51784. image: {
  51785. source: "./media/characters/zarina/front.svg",
  51786. extra: 1733/1425,
  51787. bottom: 93/1826
  51788. }
  51789. },
  51790. squatting: {
  51791. height: math.unit(2.14, "meters"),
  51792. name: "Squatting",
  51793. image: {
  51794. source: "./media/characters/zarina/squatting.svg",
  51795. extra: 1073/788,
  51796. bottom: 63/1136
  51797. }
  51798. },
  51799. back: {
  51800. height: math.unit(2.14, "meters"),
  51801. name: "Back",
  51802. image: {
  51803. source: "./media/characters/zarina/back.svg",
  51804. extra: 1128/885,
  51805. bottom: 0/1128
  51806. }
  51807. },
  51808. },
  51809. [
  51810. {
  51811. name: "Normal",
  51812. height: math.unit(3.4, "meters"),
  51813. default: true
  51814. },
  51815. {
  51816. name: "Big",
  51817. height: math.unit(5, "meters")
  51818. },
  51819. {
  51820. name: "Macro",
  51821. height: math.unit(110, "meters")
  51822. },
  51823. ]
  51824. ))
  51825. characterMakers.push(() => makeCharacter(
  51826. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51827. {
  51828. front: {
  51829. height: math.unit(7, "feet"),
  51830. name: "Front",
  51831. image: {
  51832. source: "./media/characters/ventus-astro-fox/front.svg",
  51833. extra: 1792/1623,
  51834. bottom: 28/1820
  51835. }
  51836. },
  51837. back: {
  51838. height: math.unit(7, "feet"),
  51839. name: "Back",
  51840. image: {
  51841. source: "./media/characters/ventus-astro-fox/back.svg",
  51842. extra: 1789/1620,
  51843. bottom: 31/1820
  51844. }
  51845. },
  51846. outfit: {
  51847. height: math.unit(7, "feet"),
  51848. name: "Outfit",
  51849. image: {
  51850. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51851. extra: 1054/925,
  51852. bottom: 15/1069
  51853. }
  51854. },
  51855. head: {
  51856. height: math.unit(1.12, "feet"),
  51857. name: "Head",
  51858. image: {
  51859. source: "./media/characters/ventus-astro-fox/head.svg",
  51860. extra: 866/504,
  51861. bottom: 0/866
  51862. }
  51863. },
  51864. hand: {
  51865. height: math.unit(1, "feet"),
  51866. name: "Hand",
  51867. image: {
  51868. source: "./media/characters/ventus-astro-fox/hand.svg"
  51869. }
  51870. },
  51871. paw: {
  51872. height: math.unit(1.5, "feet"),
  51873. name: "Paw",
  51874. image: {
  51875. source: "./media/characters/ventus-astro-fox/paw.svg"
  51876. }
  51877. },
  51878. },
  51879. [
  51880. {
  51881. name: "Normal",
  51882. height: math.unit(7, "feet"),
  51883. default: true
  51884. },
  51885. {
  51886. name: "Macro",
  51887. height: math.unit(200, "feet")
  51888. },
  51889. {
  51890. name: "Cosmic",
  51891. height: math.unit(3, "universes")
  51892. },
  51893. ]
  51894. ))
  51895. characterMakers.push(() => makeCharacter(
  51896. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51897. {
  51898. front: {
  51899. height: math.unit(3, "meters"),
  51900. weight: math.unit(7000, "lb"),
  51901. name: "Front",
  51902. image: {
  51903. source: "./media/characters/core-t/front.svg",
  51904. extra: 5729/4941,
  51905. bottom: 1129/6858
  51906. }
  51907. },
  51908. },
  51909. [
  51910. {
  51911. name: "Big",
  51912. height: math.unit(3, "meters"),
  51913. default: true
  51914. },
  51915. ]
  51916. ))
  51917. characterMakers.push(() => makeCharacter(
  51918. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51919. {
  51920. normal: {
  51921. height: math.unit(6 + 6/12, "feet"),
  51922. weight: math.unit(275, "lb"),
  51923. name: "Front",
  51924. image: {
  51925. source: "./media/characters/cadbunny/normal.svg",
  51926. extra: 1129/947,
  51927. bottom: 93/1222
  51928. },
  51929. default: true,
  51930. form: "normal"
  51931. },
  51932. gigantamax: {
  51933. height: math.unit(26, "feet"),
  51934. weight: math.unit(16000, "lb"),
  51935. name: "Front",
  51936. image: {
  51937. source: "./media/characters/cadbunny/gigantamax.svg",
  51938. extra: 1133/944,
  51939. bottom: 90/1223
  51940. },
  51941. default: true,
  51942. form: "gigantamax"
  51943. },
  51944. },
  51945. [
  51946. {
  51947. name: "Normal",
  51948. height: math.unit(6 + 6/12, "feet"),
  51949. default: true,
  51950. form: "normal"
  51951. },
  51952. {
  51953. name: "Small",
  51954. height: math.unit(26, "feet"),
  51955. default: true,
  51956. form: "gigantamax"
  51957. },
  51958. {
  51959. name: "Large",
  51960. height: math.unit(78, "feet"),
  51961. form: "gigantamax"
  51962. },
  51963. ],
  51964. {
  51965. "normal": {
  51966. name: "Normal",
  51967. default: true
  51968. },
  51969. "gigantamax": {
  51970. name: "Gigantamax"
  51971. }
  51972. }
  51973. ))
  51974. characterMakers.push(() => makeCharacter(
  51975. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51976. {
  51977. anthroFront: {
  51978. height: math.unit(8, "feet"),
  51979. weight: math.unit(300, "lb"),
  51980. name: "Front",
  51981. image: {
  51982. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51983. extra: 1272/1176,
  51984. bottom: 53/1325
  51985. },
  51986. form: "anthro",
  51987. default: true
  51988. },
  51989. feralSide: {
  51990. height: math.unit(4, "feet"),
  51991. weight: math.unit(250, "lb"),
  51992. name: "Side",
  51993. image: {
  51994. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51995. extra: 731/621,
  51996. bottom: 0/731
  51997. },
  51998. form: "feral",
  51999. default: true
  52000. },
  52001. },
  52002. [
  52003. {
  52004. name: "Regular",
  52005. height: math.unit(8, "feet"),
  52006. form: "anthro"
  52007. },
  52008. {
  52009. name: "Macro",
  52010. height: math.unit(250, "feet"),
  52011. form: "anthro",
  52012. default: true
  52013. },
  52014. {
  52015. name: "Regular",
  52016. height: math.unit(4, "feet"),
  52017. form: "feral"
  52018. },
  52019. {
  52020. name: "Macro",
  52021. height: math.unit(125, "feet"),
  52022. form: "feral",
  52023. default: true
  52024. },
  52025. ],
  52026. {
  52027. "anthro": {
  52028. name: "Anthro",
  52029. default: true
  52030. },
  52031. "feral": {
  52032. name: "Feral",
  52033. },
  52034. }
  52035. ))
  52036. characterMakers.push(() => makeCharacter(
  52037. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52038. {
  52039. front: {
  52040. height: math.unit(11 + 10/12, "feet"),
  52041. weight: math.unit(1587, "kg"),
  52042. name: "Front",
  52043. image: {
  52044. source: "./media/characters/maple-javira-dragon/front.svg",
  52045. extra: 1136/744,
  52046. bottom: 73/1209
  52047. }
  52048. },
  52049. side: {
  52050. height: math.unit(11 + 10/12, "feet"),
  52051. weight: math.unit(1587, "kg"),
  52052. name: "Side",
  52053. image: {
  52054. source: "./media/characters/maple-javira-dragon/side.svg",
  52055. extra: 712/505,
  52056. bottom: 17/729
  52057. }
  52058. },
  52059. head: {
  52060. height: math.unit(8.05, "feet"),
  52061. name: "Head",
  52062. image: {
  52063. source: "./media/characters/maple-javira-dragon/head.svg",
  52064. extra: 1420/1344,
  52065. bottom: 0/1420
  52066. }
  52067. },
  52068. },
  52069. [
  52070. {
  52071. name: "Normal",
  52072. height: math.unit(11 + 10/12, "feet"),
  52073. default: true
  52074. },
  52075. ]
  52076. ))
  52077. characterMakers.push(() => makeCharacter(
  52078. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52079. {
  52080. front: {
  52081. height: math.unit(117, "cm"),
  52082. weight: math.unit(50, "kg"),
  52083. name: "Front",
  52084. image: {
  52085. source: "./media/characters/sonia-wyverntail/front.svg",
  52086. extra: 708/592,
  52087. bottom: 25/733
  52088. }
  52089. },
  52090. },
  52091. [
  52092. {
  52093. name: "Normal",
  52094. height: math.unit(117, "cm"),
  52095. default: true
  52096. },
  52097. ]
  52098. ))
  52099. characterMakers.push(() => makeCharacter(
  52100. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52101. {
  52102. front: {
  52103. height: math.unit(6 + 5/12, "feet"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/micah/front.svg",
  52107. extra: 1758/1546,
  52108. bottom: 214/1972
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Normal",
  52115. height: math.unit(6 + 5/12, "feet"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(1.75, "meters"),
  52125. weight: math.unit(100, "kg"),
  52126. name: "Front",
  52127. image: {
  52128. source: "./media/characters/zarya/front.svg",
  52129. extra: 741/735,
  52130. bottom: 44/785
  52131. },
  52132. extraAttributes: {
  52133. "tailLength": {
  52134. name: "Tail Length",
  52135. power: 1,
  52136. type: "length",
  52137. base: math.unit(180, "cm")
  52138. },
  52139. "pawLength": {
  52140. name: "Paw Length",
  52141. power: 1,
  52142. type: "length",
  52143. base: math.unit(31, "cm")
  52144. },
  52145. }
  52146. },
  52147. side: {
  52148. height: math.unit(1.75, "meters"),
  52149. weight: math.unit(100, "kg"),
  52150. name: "Side",
  52151. image: {
  52152. source: "./media/characters/zarya/side.svg",
  52153. extra: 776/770,
  52154. bottom: 17/793
  52155. },
  52156. extraAttributes: {
  52157. "tailLength": {
  52158. name: "Tail Length",
  52159. power: 1,
  52160. type: "length",
  52161. base: math.unit(180, "cm")
  52162. },
  52163. "pawLength": {
  52164. name: "Paw Length",
  52165. power: 1,
  52166. type: "length",
  52167. base: math.unit(31, "cm")
  52168. },
  52169. }
  52170. },
  52171. back: {
  52172. height: math.unit(1.75, "meters"),
  52173. weight: math.unit(100, "kg"),
  52174. name: "Back",
  52175. image: {
  52176. source: "./media/characters/zarya/back.svg",
  52177. extra: 741/735,
  52178. bottom: 44/785
  52179. },
  52180. extraAttributes: {
  52181. "tailLength": {
  52182. name: "Tail Length",
  52183. power: 1,
  52184. type: "length",
  52185. base: math.unit(180, "cm")
  52186. },
  52187. "pawLength": {
  52188. name: "Paw Length",
  52189. power: 1,
  52190. type: "length",
  52191. base: math.unit(31, "cm")
  52192. },
  52193. }
  52194. },
  52195. frontNoTail: {
  52196. height: math.unit(1.75, "meters"),
  52197. weight: math.unit(100, "kg"),
  52198. name: "Front (No Tail)",
  52199. image: {
  52200. source: "./media/characters/zarya/front-no-tail.svg",
  52201. extra: 741/735,
  52202. bottom: 44/785
  52203. },
  52204. extraAttributes: {
  52205. "tailLength": {
  52206. name: "Tail Length",
  52207. power: 1,
  52208. type: "length",
  52209. base: math.unit(180, "cm")
  52210. },
  52211. "pawLength": {
  52212. name: "Paw Length",
  52213. power: 1,
  52214. type: "length",
  52215. base: math.unit(31, "cm")
  52216. },
  52217. }
  52218. },
  52219. dressed: {
  52220. height: math.unit(1.75, "meters"),
  52221. weight: math.unit(100, "kg"),
  52222. name: "Dressed",
  52223. image: {
  52224. source: "./media/characters/zarya/dressed.svg",
  52225. extra: 683/672,
  52226. bottom: 79/762
  52227. },
  52228. extraAttributes: {
  52229. "tailLength": {
  52230. name: "Tail Length",
  52231. power: 1,
  52232. type: "length",
  52233. base: math.unit(180, "cm")
  52234. },
  52235. "pawLength": {
  52236. name: "Paw Length",
  52237. power: 1,
  52238. type: "length",
  52239. base: math.unit(31, "cm")
  52240. },
  52241. }
  52242. },
  52243. },
  52244. [
  52245. {
  52246. name: "Micro",
  52247. height: math.unit(5, "cm")
  52248. },
  52249. {
  52250. name: "Normal",
  52251. height: math.unit(1.75, "meters"),
  52252. default: true
  52253. },
  52254. {
  52255. name: "Macro",
  52256. height: math.unit(122, "meters")
  52257. },
  52258. ]
  52259. ))
  52260. characterMakers.push(() => makeCharacter(
  52261. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52262. {
  52263. front: {
  52264. height: math.unit(7.5, "feet"),
  52265. name: "Front",
  52266. image: {
  52267. source: "./media/characters/sven-hatisson/front.svg",
  52268. extra: 917/857,
  52269. bottom: 42/959
  52270. }
  52271. },
  52272. back: {
  52273. height: math.unit(7.5, "feet"),
  52274. name: "Back",
  52275. image: {
  52276. source: "./media/characters/sven-hatisson/back.svg",
  52277. extra: 903/856,
  52278. bottom: 15/918
  52279. }
  52280. },
  52281. },
  52282. [
  52283. {
  52284. name: "Base Height",
  52285. height: math.unit(7.5, "feet")
  52286. },
  52287. {
  52288. name: "Usual Height",
  52289. height: math.unit(13.5, "feet"),
  52290. default: true
  52291. },
  52292. {
  52293. name: "Smaller Macro",
  52294. height: math.unit(85, "feet")
  52295. },
  52296. {
  52297. name: "Moderate Macro",
  52298. height: math.unit(320, "feet")
  52299. },
  52300. {
  52301. name: "Large Macro",
  52302. height: math.unit(1000, "feet")
  52303. },
  52304. {
  52305. name: "Largest Size",
  52306. height: math.unit(2, "miles")
  52307. },
  52308. ]
  52309. ))
  52310. characterMakers.push(() => makeCharacter(
  52311. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52312. {
  52313. side: {
  52314. height: math.unit(1.8, "meters"),
  52315. weight: math.unit(275, "kg"),
  52316. name: "Side",
  52317. image: {
  52318. source: "./media/characters/terra/side.svg",
  52319. extra: 1273/1147,
  52320. bottom: 0/1273
  52321. }
  52322. },
  52323. },
  52324. [
  52325. {
  52326. name: "Normal",
  52327. height: math.unit(16.2, "meters"),
  52328. default: true
  52329. },
  52330. ]
  52331. ))
  52332. characterMakers.push(() => makeCharacter(
  52333. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52334. {
  52335. borzoiFront: {
  52336. height: math.unit(6 + 9/12, "feet"),
  52337. name: "Front",
  52338. image: {
  52339. source: "./media/characters/rae/borzoi-front.svg",
  52340. extra: 1161/1098,
  52341. bottom: 31/1192
  52342. },
  52343. form: "borzoi",
  52344. default: true
  52345. },
  52346. werewolfFront: {
  52347. height: math.unit(8 + 7/12, "feet"),
  52348. name: "Front",
  52349. image: {
  52350. source: "./media/characters/rae/werewolf-front.svg",
  52351. extra: 1411/1334,
  52352. bottom: 127/1538
  52353. },
  52354. form: "werewolf",
  52355. default: true
  52356. },
  52357. },
  52358. [
  52359. {
  52360. name: "Normal",
  52361. height: math.unit(6 + 9/12, "feet"),
  52362. default: true,
  52363. form: "borzoi"
  52364. },
  52365. {
  52366. name: "Normal",
  52367. height: math.unit(8 + 7/12, "feet"),
  52368. default: true,
  52369. form: "werewolf"
  52370. },
  52371. ],
  52372. {
  52373. "borzoi": {
  52374. name: "Borzoi",
  52375. default: true
  52376. },
  52377. "werewolf": {
  52378. name: "Werewolf",
  52379. },
  52380. }
  52381. ))
  52382. characterMakers.push(() => makeCharacter(
  52383. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52384. {
  52385. front: {
  52386. height: math.unit(8 + 7/12, "feet"),
  52387. weight: math.unit(482, "lb"),
  52388. name: "Front",
  52389. image: {
  52390. source: "./media/characters/kit/front.svg",
  52391. extra: 1247/1103,
  52392. bottom: 41/1288
  52393. }
  52394. },
  52395. back: {
  52396. height: math.unit(8 + 7/12, "feet"),
  52397. weight: math.unit(482, "lb"),
  52398. name: "Back",
  52399. image: {
  52400. source: "./media/characters/kit/back.svg",
  52401. extra: 1252/1123,
  52402. bottom: 21/1273
  52403. }
  52404. },
  52405. paw: {
  52406. height: math.unit(1.46, "feet"),
  52407. name: "Paw",
  52408. image: {
  52409. source: "./media/characters/kit/paw.svg"
  52410. }
  52411. },
  52412. },
  52413. [
  52414. {
  52415. name: "Normal",
  52416. height: math.unit(2.61, "meters"),
  52417. default: true
  52418. },
  52419. {
  52420. name: "\"Tall\"",
  52421. height: math.unit(8.21, "meters")
  52422. },
  52423. {
  52424. name: "Tall",
  52425. height: math.unit(19.6, "meters")
  52426. },
  52427. {
  52428. name: "Very Tall",
  52429. height: math.unit(57.91, "meters")
  52430. },
  52431. {
  52432. name: "Semi-Macro",
  52433. height: math.unit(138.64, "meters")
  52434. },
  52435. {
  52436. name: "Macro",
  52437. height: math.unit(831.99, "meters")
  52438. },
  52439. {
  52440. name: "EX-Macro",
  52441. height: math.unit(96451121, "meters")
  52442. },
  52443. {
  52444. name: "S1-Omnipotent",
  52445. height: math.unit(4.42074e+9, "meters")
  52446. },
  52447. {
  52448. name: "S2-Omnipotent",
  52449. height: math.unit(9.42074e+17, "meters")
  52450. },
  52451. {
  52452. name: "Omnipotent",
  52453. height: math.unit(4.23112e+24, "meters")
  52454. },
  52455. {
  52456. name: "Hypergod",
  52457. height: math.unit(5.05176e+27, "meters")
  52458. },
  52459. {
  52460. name: "Hypergod-EX",
  52461. height: math.unit(9.45532e+49, "meters")
  52462. },
  52463. {
  52464. name: "Hypergod-SP",
  52465. height: math.unit(9.45532e+195, "meters")
  52466. },
  52467. ]
  52468. ))
  52469. characterMakers.push(() => makeCharacter(
  52470. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52471. {
  52472. side: {
  52473. height: math.unit(0.6, "meters"),
  52474. weight: math.unit(24, "kg"),
  52475. name: "Side",
  52476. image: {
  52477. source: "./media/characters/celeste/side.svg",
  52478. extra: 810/517,
  52479. bottom: 53/863
  52480. }
  52481. },
  52482. },
  52483. [
  52484. {
  52485. name: "Velociraptor",
  52486. height: math.unit(0.6, "meters"),
  52487. default: true
  52488. },
  52489. {
  52490. name: "Utahraptor",
  52491. height: math.unit(1.8, "meters")
  52492. },
  52493. {
  52494. name: "Gallimimus",
  52495. height: math.unit(4.0, "meters")
  52496. },
  52497. {
  52498. name: "Large",
  52499. height: math.unit(20, "meters")
  52500. },
  52501. {
  52502. name: "Planetary",
  52503. height: math.unit(50, "megameters")
  52504. },
  52505. {
  52506. name: "Stellar",
  52507. height: math.unit(1.5, "gigameters")
  52508. },
  52509. {
  52510. name: "Galactic",
  52511. height: math.unit(100, "exameters")
  52512. },
  52513. ]
  52514. ))
  52515. characterMakers.push(() => makeCharacter(
  52516. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52517. {
  52518. front: {
  52519. height: math.unit(6, "feet"),
  52520. weight: math.unit(210, "lb"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/glacia/front.svg",
  52524. extra: 958/901,
  52525. bottom: 45/1003
  52526. }
  52527. },
  52528. },
  52529. [
  52530. {
  52531. name: "Macro",
  52532. height: math.unit(1000, "meters"),
  52533. default: true
  52534. },
  52535. ]
  52536. ))
  52537. characterMakers.push(() => makeCharacter(
  52538. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52539. {
  52540. front: {
  52541. height: math.unit(4, "meters"),
  52542. name: "Front",
  52543. image: {
  52544. source: "./media/characters/giri/front.svg",
  52545. extra: 966/894,
  52546. bottom: 21/987
  52547. }
  52548. },
  52549. },
  52550. [
  52551. {
  52552. name: "Normal",
  52553. height: math.unit(4, "meters"),
  52554. default: true
  52555. },
  52556. ]
  52557. ))
  52558. characterMakers.push(() => makeCharacter(
  52559. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52560. {
  52561. back: {
  52562. height: math.unit(4, "feet"),
  52563. weight: math.unit(37, "lb"),
  52564. name: "Back",
  52565. image: {
  52566. source: "./media/characters/tin/back.svg",
  52567. extra: 845/780,
  52568. bottom: 28/873
  52569. }
  52570. },
  52571. },
  52572. [
  52573. {
  52574. name: "Normal",
  52575. height: math.unit(4, "feet"),
  52576. default: true
  52577. },
  52578. ]
  52579. ))
  52580. characterMakers.push(() => makeCharacter(
  52581. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52582. {
  52583. front: {
  52584. height: math.unit(25, "feet"),
  52585. name: "Front",
  52586. image: {
  52587. source: "./media/characters/cadenza-vivace/front.svg",
  52588. extra: 1842/1578,
  52589. bottom: 30/1872
  52590. }
  52591. },
  52592. },
  52593. [
  52594. {
  52595. name: "Macro",
  52596. height: math.unit(25, "feet"),
  52597. default: true
  52598. },
  52599. ]
  52600. ))
  52601. characterMakers.push(() => makeCharacter(
  52602. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52603. {
  52604. front: {
  52605. height: math.unit(10, "feet"),
  52606. weight: math.unit(625, "kg"),
  52607. name: "Front",
  52608. image: {
  52609. source: "./media/characters/zain/front.svg",
  52610. extra: 1682/1498,
  52611. bottom: 223/1905
  52612. }
  52613. },
  52614. back: {
  52615. height: math.unit(10, "feet"),
  52616. weight: math.unit(625, "kg"),
  52617. name: "Back",
  52618. image: {
  52619. source: "./media/characters/zain/back.svg",
  52620. extra: 1814/1657,
  52621. bottom: 152/1966
  52622. }
  52623. },
  52624. head: {
  52625. height: math.unit(10, "feet"),
  52626. weight: math.unit(625, "kg"),
  52627. name: "Head",
  52628. image: {
  52629. source: "./media/characters/zain/head.svg",
  52630. extra: 1059/762,
  52631. bottom: 0/1059
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Normal",
  52638. height: math.unit(10, "feet"),
  52639. default: true
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52645. {
  52646. front: {
  52647. height: math.unit(6 + 5/12, "feet"),
  52648. weight: math.unit(750, "lb"),
  52649. name: "Front",
  52650. image: {
  52651. source: "./media/characters/ruchex/front.svg",
  52652. extra: 877/820,
  52653. bottom: 17/894
  52654. },
  52655. extraAttributes: {
  52656. "width": {
  52657. name: "Width",
  52658. power: 1,
  52659. type: "length",
  52660. base: math.unit(4.757, "feet")
  52661. },
  52662. }
  52663. },
  52664. },
  52665. [
  52666. {
  52667. name: "Normal",
  52668. height: math.unit(6 + 5/12, "feet"),
  52669. default: true
  52670. },
  52671. ]
  52672. ))
  52673. characterMakers.push(() => makeCharacter(
  52674. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52675. {
  52676. dressedFront: {
  52677. height: math.unit(191, "cm"),
  52678. weight: math.unit(80, "kg"),
  52679. name: "Front",
  52680. image: {
  52681. source: "./media/characters/buster/dressed-front.svg",
  52682. extra: 1022/973,
  52683. bottom: 69/1091
  52684. }
  52685. },
  52686. dressedBack: {
  52687. height: math.unit(191, "cm"),
  52688. weight: math.unit(80, "kg"),
  52689. name: "Back",
  52690. image: {
  52691. source: "./media/characters/buster/dressed-back.svg",
  52692. extra: 1018/970,
  52693. bottom: 55/1073
  52694. }
  52695. },
  52696. nudeFront: {
  52697. height: math.unit(191, "cm"),
  52698. weight: math.unit(80, "kg"),
  52699. name: "Front (Nude)",
  52700. image: {
  52701. source: "./media/characters/buster/nude-front.svg",
  52702. extra: 1022/973,
  52703. bottom: 69/1091
  52704. }
  52705. },
  52706. nudeBack: {
  52707. height: math.unit(191, "cm"),
  52708. weight: math.unit(80, "kg"),
  52709. name: "Back (Nude)",
  52710. image: {
  52711. source: "./media/characters/buster/nude-back.svg",
  52712. extra: 1018/970,
  52713. bottom: 55/1073
  52714. }
  52715. },
  52716. dick: {
  52717. height: math.unit(2.59, "feet"),
  52718. name: "Dick",
  52719. image: {
  52720. source: "./media/characters/buster/dick.svg"
  52721. }
  52722. },
  52723. ass: {
  52724. height: math.unit(1.2, "feet"),
  52725. name: "Ass",
  52726. image: {
  52727. source: "./media/characters/buster/ass.svg"
  52728. }
  52729. },
  52730. },
  52731. [
  52732. {
  52733. name: "Normal",
  52734. height: math.unit(191, "cm"),
  52735. default: true
  52736. },
  52737. ]
  52738. ))
  52739. characterMakers.push(() => makeCharacter(
  52740. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52741. {
  52742. side: {
  52743. height: math.unit(8.1, "feet"),
  52744. weight: math.unit(3500, "lb"),
  52745. name: "Side",
  52746. image: {
  52747. source: "./media/characters/sonya/side.svg",
  52748. extra: 1730/1317,
  52749. bottom: 86/1816
  52750. }
  52751. },
  52752. },
  52753. [
  52754. {
  52755. name: "Normal",
  52756. height: math.unit(8.1, "feet"),
  52757. default: true
  52758. },
  52759. ]
  52760. ))
  52761. characterMakers.push(() => makeCharacter(
  52762. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52763. {
  52764. front: {
  52765. height: math.unit(6, "feet"),
  52766. weight: math.unit(150, "lb"),
  52767. name: "Front",
  52768. image: {
  52769. source: "./media/characters/cadence-andrysiak/front.svg",
  52770. extra: 1164/1121,
  52771. bottom: 60/1224
  52772. }
  52773. },
  52774. back: {
  52775. height: math.unit(6, "feet"),
  52776. weight: math.unit(150, "lb"),
  52777. name: "Back",
  52778. image: {
  52779. source: "./media/characters/cadence-andrysiak/back.svg",
  52780. extra: 1200/1165,
  52781. bottom: 9/1209
  52782. }
  52783. },
  52784. dressed: {
  52785. height: math.unit(6, "feet"),
  52786. weight: math.unit(150, "lb"),
  52787. name: "Dressed",
  52788. image: {
  52789. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52790. extra: 1164/1121,
  52791. bottom: 60/1224
  52792. }
  52793. },
  52794. },
  52795. [
  52796. {
  52797. name: "Micro",
  52798. height: math.unit(1, "mm")
  52799. },
  52800. {
  52801. name: "Normal",
  52802. height: math.unit(6, "feet"),
  52803. default: true
  52804. },
  52805. ]
  52806. ))
  52807. characterMakers.push(() => makeCharacter(
  52808. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52809. {
  52810. front: {
  52811. height: math.unit(60, "inches"),
  52812. weight: math.unit(16, "lb"),
  52813. preyCapacity: math.unit(80, "liters"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/penny-lynx/front.svg",
  52817. extra: 1959/1769,
  52818. bottom: 49/2008
  52819. }
  52820. },
  52821. },
  52822. [
  52823. {
  52824. name: "Nokia",
  52825. height: math.unit(2, "inches")
  52826. },
  52827. {
  52828. name: "Desktop",
  52829. height: math.unit(24, "inches")
  52830. },
  52831. {
  52832. name: "TV",
  52833. height: math.unit(60, "inches")
  52834. },
  52835. {
  52836. name: "Jumbotron",
  52837. height: math.unit(12, "feet")
  52838. },
  52839. {
  52840. name: "Billboard",
  52841. height: math.unit(48, "feet"),
  52842. default: true
  52843. },
  52844. {
  52845. name: "IMAX",
  52846. height: math.unit(96, "feet")
  52847. },
  52848. {
  52849. name: "SINGULARITY",
  52850. height: math.unit(864938, "miles")
  52851. },
  52852. ]
  52853. ))
  52854. characterMakers.push(() => makeCharacter(
  52855. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52856. {
  52857. front: {
  52858. height: math.unit(5 + 4/12, "feet"),
  52859. weight: math.unit(230, "lb"),
  52860. name: "Front",
  52861. image: {
  52862. source: "./media/characters/sukebe/front.svg",
  52863. extra: 2130/2038,
  52864. bottom: 90/2220
  52865. }
  52866. },
  52867. back: {
  52868. height: math.unit(3.48, "feet"),
  52869. weight: math.unit(230, "lb"),
  52870. name: "Back",
  52871. image: {
  52872. source: "./media/characters/sukebe/back.svg",
  52873. extra: 1670/1604,
  52874. bottom: 0/1670
  52875. }
  52876. },
  52877. },
  52878. [
  52879. {
  52880. name: "Normal",
  52881. height: math.unit(5 + 4/12, "feet"),
  52882. default: true
  52883. },
  52884. ]
  52885. ))
  52886. characterMakers.push(() => makeCharacter(
  52887. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52888. {
  52889. front: {
  52890. height: math.unit(6, "feet"),
  52891. name: "Front",
  52892. image: {
  52893. source: "./media/characters/nylla/front.svg",
  52894. extra: 1868/1699,
  52895. bottom: 97/1965
  52896. }
  52897. },
  52898. back: {
  52899. height: math.unit(6, "feet"),
  52900. name: "Back",
  52901. image: {
  52902. source: "./media/characters/nylla/back.svg",
  52903. extra: 1889/1712,
  52904. bottom: 93/1982
  52905. }
  52906. },
  52907. frontNsfw: {
  52908. height: math.unit(6, "feet"),
  52909. name: "Front (NSFW)",
  52910. image: {
  52911. source: "./media/characters/nylla/front-nsfw.svg",
  52912. extra: 1868/1699,
  52913. bottom: 97/1965
  52914. },
  52915. extraAttributes: {
  52916. "dickLength": {
  52917. name: "Dick Length",
  52918. power: 1,
  52919. type: "length",
  52920. base: math.unit(1.4, "feet")
  52921. },
  52922. "cumVolume": {
  52923. name: "Cum Volume",
  52924. power: 3,
  52925. type: "volume",
  52926. base: math.unit(100, "mL")
  52927. },
  52928. }
  52929. },
  52930. backNsfw: {
  52931. height: math.unit(6, "feet"),
  52932. name: "Back (NSFW)",
  52933. image: {
  52934. source: "./media/characters/nylla/back-nsfw.svg",
  52935. extra: 1889/1712,
  52936. bottom: 93/1982
  52937. }
  52938. },
  52939. maw: {
  52940. height: math.unit(2.10, "feet"),
  52941. name: "Maw",
  52942. image: {
  52943. source: "./media/characters/nylla/maw.svg"
  52944. }
  52945. },
  52946. paws: {
  52947. height: math.unit(2.06, "feet"),
  52948. name: "Paws",
  52949. image: {
  52950. source: "./media/characters/nylla/paws.svg"
  52951. }
  52952. },
  52953. muzzle: {
  52954. height: math.unit(0.61, "feet"),
  52955. name: "Muzzle",
  52956. image: {
  52957. source: "./media/characters/nylla/muzzle.svg"
  52958. }
  52959. },
  52960. sheath: {
  52961. height: math.unit(1.305, "feet"),
  52962. name: "Sheath",
  52963. image: {
  52964. source: "./media/characters/nylla/sheath.svg"
  52965. }
  52966. },
  52967. },
  52968. [
  52969. {
  52970. name: "Micro",
  52971. height: math.unit(7.5, "inches")
  52972. },
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(7, "feet"),
  52976. default: true
  52977. },
  52978. {
  52979. name: "Macro",
  52980. height: math.unit(60, "feet")
  52981. },
  52982. {
  52983. name: "Mega",
  52984. height: math.unit(200, "feet")
  52985. },
  52986. ]
  52987. ))
  52988. characterMakers.push(() => makeCharacter(
  52989. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52990. {
  52991. front: {
  52992. height: math.unit(10, "feet"),
  52993. weight: math.unit(2300, "lb"),
  52994. name: "Front",
  52995. image: {
  52996. source: "./media/characters/hunt3r/front.svg",
  52997. extra: 1909/1742,
  52998. bottom: 46/1955
  52999. }
  53000. },
  53001. },
  53002. [
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(10, "feet"),
  53006. default: true
  53007. },
  53008. ]
  53009. ))
  53010. characterMakers.push(() => makeCharacter(
  53011. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53012. {
  53013. dressed: {
  53014. height: math.unit(11, "feet"),
  53015. weight: math.unit(18500, "lb"),
  53016. preyCapacity: math.unit(9, "people"),
  53017. name: "Dressed",
  53018. image: {
  53019. source: "./media/characters/cylphis/dressed.svg",
  53020. extra: 1028/1003,
  53021. bottom: 75/1103
  53022. },
  53023. },
  53024. undressed: {
  53025. height: math.unit(11, "feet"),
  53026. weight: math.unit(18500, "lb"),
  53027. preyCapacity: math.unit(9, "people"),
  53028. name: "Undressed",
  53029. image: {
  53030. source: "./media/characters/cylphis/undressed.svg",
  53031. extra: 1028/1003,
  53032. bottom: 75/1103
  53033. }
  53034. },
  53035. full: {
  53036. height: math.unit(11, "feet"),
  53037. weight: math.unit(18500 + 150*9, "lb"),
  53038. preyCapacity: math.unit(9, "people"),
  53039. name: "Full",
  53040. image: {
  53041. source: "./media/characters/cylphis/full.svg",
  53042. extra: 1028/1003,
  53043. bottom: 75/1103
  53044. }
  53045. },
  53046. },
  53047. [
  53048. {
  53049. name: "Small",
  53050. height: math.unit(8, "feet")
  53051. },
  53052. {
  53053. name: "Normal",
  53054. height: math.unit(11, "feet"),
  53055. default: true
  53056. },
  53057. ]
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53061. {
  53062. front: {
  53063. height: math.unit(2 + 7/12, "feet"),
  53064. name: "Front",
  53065. image: {
  53066. source: "./media/characters/orishan/front.svg",
  53067. extra: 1058/1023,
  53068. bottom: 23/1081
  53069. }
  53070. },
  53071. back: {
  53072. height: math.unit(2 + 7/12, "feet"),
  53073. name: "Back",
  53074. image: {
  53075. source: "./media/characters/orishan/back.svg",
  53076. extra: 1058/1023,
  53077. bottom: 23/1081
  53078. }
  53079. },
  53080. },
  53081. [
  53082. {
  53083. name: "Micro",
  53084. height: math.unit(2, "cm")
  53085. },
  53086. {
  53087. name: "Normal",
  53088. height: math.unit(2 + 7/12, "feet"),
  53089. default: true
  53090. },
  53091. ]
  53092. ))
  53093. characterMakers.push(() => makeCharacter(
  53094. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53095. {
  53096. front: {
  53097. height: math.unit(3, "meters"),
  53098. weight: math.unit(508, "kg"),
  53099. name: "Front",
  53100. image: {
  53101. source: "./media/characters/seranis/front.svg",
  53102. extra: 1478/1454,
  53103. bottom: 41/1519
  53104. }
  53105. },
  53106. },
  53107. [
  53108. {
  53109. name: "Normal",
  53110. height: math.unit(3, "meters"),
  53111. default: true
  53112. },
  53113. {
  53114. name: "Macro",
  53115. height: math.unit(108, "meters")
  53116. },
  53117. {
  53118. name: "Megamacro",
  53119. height: math.unit(1250, "meters")
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53125. {
  53126. undressed: {
  53127. height: math.unit(5 + 3/12, "feet"),
  53128. name: "Undressed",
  53129. image: {
  53130. source: "./media/characters/ankou/undressed.svg",
  53131. extra: 1301/1213,
  53132. bottom: 87/1388
  53133. }
  53134. },
  53135. dressed: {
  53136. height: math.unit(5 + 3/12, "feet"),
  53137. name: "Dressed",
  53138. image: {
  53139. source: "./media/characters/ankou/dressed.svg",
  53140. extra: 1301/1213,
  53141. bottom: 87/1388
  53142. }
  53143. },
  53144. head: {
  53145. height: math.unit(1.61, "feet"),
  53146. name: "Head",
  53147. image: {
  53148. source: "./media/characters/ankou/head.svg"
  53149. }
  53150. },
  53151. },
  53152. [
  53153. {
  53154. name: "Normal",
  53155. height: math.unit(5 + 3/12, "feet"),
  53156. default: true
  53157. },
  53158. ]
  53159. ))
  53160. characterMakers.push(() => makeCharacter(
  53161. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53162. {
  53163. side: {
  53164. height: math.unit(6 + 3/12, "feet"),
  53165. weight: math.unit(200, "kg"),
  53166. name: "Side",
  53167. image: {
  53168. source: "./media/characters/juniper-skunktaur/side.svg",
  53169. extra: 1574/1229,
  53170. bottom: 38/1612
  53171. }
  53172. },
  53173. front: {
  53174. height: math.unit(6 + 3/12, "feet"),
  53175. weight: math.unit(200, "kg"),
  53176. name: "Front",
  53177. image: {
  53178. source: "./media/characters/juniper-skunktaur/front.svg",
  53179. extra: 1337/1278,
  53180. bottom: 22/1359
  53181. }
  53182. },
  53183. back: {
  53184. height: math.unit(6 + 3/12, "feet"),
  53185. weight: math.unit(200, "kg"),
  53186. name: "Back",
  53187. image: {
  53188. source: "./media/characters/juniper-skunktaur/back.svg",
  53189. extra: 1618/1273,
  53190. bottom: 13/1631
  53191. }
  53192. },
  53193. top: {
  53194. height: math.unit(2.62, "feet"),
  53195. weight: math.unit(200, "kg"),
  53196. name: "Top",
  53197. image: {
  53198. source: "./media/characters/juniper-skunktaur/top.svg"
  53199. }
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(6 + 3/12, "feet"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(20.5, "feet"),
  53215. name: "Front",
  53216. image: {
  53217. source: "./media/characters/rei/front.svg",
  53218. extra: 1349/1195,
  53219. bottom: 31/1380
  53220. }
  53221. },
  53222. back: {
  53223. height: math.unit(20.5, "feet"),
  53224. name: "Back",
  53225. image: {
  53226. source: "./media/characters/rei/back.svg",
  53227. extra: 1358/1204,
  53228. bottom: 22/1380
  53229. }
  53230. },
  53231. pawsDigi: {
  53232. height: math.unit(3.45, "feet"),
  53233. name: "Paws (Digi)",
  53234. image: {
  53235. source: "./media/characters/rei/paws-digi.svg"
  53236. }
  53237. },
  53238. pawsPlanti: {
  53239. height: math.unit(3.45, "feet"),
  53240. name: "Paws (Planti)",
  53241. image: {
  53242. source: "./media/characters/rei/paws-planti.svg"
  53243. }
  53244. },
  53245. },
  53246. [
  53247. {
  53248. name: "Normal",
  53249. height: math.unit(20.5, "feet"),
  53250. default: true
  53251. },
  53252. ]
  53253. ))
  53254. characterMakers.push(() => makeCharacter(
  53255. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53256. {
  53257. front: {
  53258. height: math.unit(5 + 11/12, "feet"),
  53259. name: "Front",
  53260. image: {
  53261. source: "./media/characters/carina/front.svg",
  53262. extra: 1720/1449,
  53263. bottom: 14/1734
  53264. }
  53265. },
  53266. back: {
  53267. height: math.unit(5 + 11/12, "feet"),
  53268. name: "Back",
  53269. image: {
  53270. source: "./media/characters/carina/back.svg",
  53271. extra: 1493/1445,
  53272. bottom: 17/1510
  53273. }
  53274. },
  53275. paw: {
  53276. height: math.unit(0.92, "feet"),
  53277. name: "Paw",
  53278. image: {
  53279. source: "./media/characters/carina/paw.svg"
  53280. }
  53281. },
  53282. },
  53283. [
  53284. {
  53285. name: "Normal",
  53286. height: math.unit(5 + 11/12, "feet"),
  53287. default: true
  53288. },
  53289. ]
  53290. ))
  53291. characterMakers.push(() => makeCharacter(
  53292. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53293. {
  53294. normal_front: {
  53295. height: math.unit(4.88, "meters"),
  53296. name: "Front",
  53297. image: {
  53298. source: "./media/characters/maya/normal-front.svg",
  53299. extra: 1222/1145,
  53300. bottom: 57/1279
  53301. },
  53302. form: "normal",
  53303. default: true
  53304. },
  53305. monstrous_front: {
  53306. height: math.unit(10, "meters"),
  53307. name: "Front",
  53308. image: {
  53309. source: "./media/characters/maya/monstrous-front.svg",
  53310. extra: 1523/1109,
  53311. bottom: 113/1636
  53312. },
  53313. form: "monstrous",
  53314. extraAttributes: {
  53315. "swallowSize": {
  53316. name: "Tailmaw Bite Size",
  53317. power: 3,
  53318. type: "volume",
  53319. base: math.unit(43000, "liters")
  53320. },
  53321. }
  53322. },
  53323. taur_front: {
  53324. height: math.unit(10, "meters"),
  53325. name: "Front",
  53326. image: {
  53327. source: "./media/characters/maya/taur-front.svg",
  53328. extra: 743/506,
  53329. bottom: 101/844
  53330. },
  53331. form: "taur",
  53332. },
  53333. },
  53334. [
  53335. {
  53336. name: "Normal",
  53337. height: math.unit(4.88, "meters"),
  53338. default: true,
  53339. form: "normal"
  53340. },
  53341. {
  53342. name: "Macro",
  53343. height: math.unit(38.1, "meters"),
  53344. form: "normal"
  53345. },
  53346. {
  53347. name: "Macro+",
  53348. height: math.unit(152.4, "meters"),
  53349. form: "normal"
  53350. },
  53351. {
  53352. name: "Macro++",
  53353. height: math.unit(16.09, "km"),
  53354. form: "normal"
  53355. },
  53356. {
  53357. name: "Mega-macro",
  53358. height: math.unit(700, "megameters"),
  53359. form: "normal"
  53360. },
  53361. {
  53362. name: "Satiated",
  53363. height: math.unit(10, "meters"),
  53364. default: true,
  53365. form: "monstrous"
  53366. },
  53367. {
  53368. name: "Hungry",
  53369. height: math.unit(75, "meters"),
  53370. form: "monstrous"
  53371. },
  53372. {
  53373. name: "Ravenous",
  53374. height: math.unit(500, "meters"),
  53375. form: "monstrous"
  53376. },
  53377. {
  53378. name: "\"Normal\"",
  53379. height: math.unit(10, "meters"),
  53380. form: "taur"
  53381. },
  53382. {
  53383. name: "Macro",
  53384. height: math.unit(50, "meters"),
  53385. form: "taur"
  53386. },
  53387. ],
  53388. {
  53389. "normal": {
  53390. name: "Normal",
  53391. default: true
  53392. },
  53393. "monstrous": {
  53394. name: "Monstrous",
  53395. },
  53396. "taur": {
  53397. name: "Taur",
  53398. },
  53399. }
  53400. ))
  53401. characterMakers.push(() => makeCharacter(
  53402. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53403. {
  53404. front: {
  53405. height: math.unit(6 + 2/12, "feet"),
  53406. weight: math.unit(500, "lb"),
  53407. preyCapacity: math.unit(4, "people"),
  53408. name: "Front",
  53409. image: {
  53410. source: "./media/characters/yepir/front.svg"
  53411. }
  53412. },
  53413. side: {
  53414. height: math.unit(6 + 2/12, "feet"),
  53415. weight: math.unit(500, "lb"),
  53416. preyCapacity: math.unit(4, "people"),
  53417. name: "Side",
  53418. image: {
  53419. source: "./media/characters/yepir/side.svg"
  53420. }
  53421. },
  53422. paw: {
  53423. height: math.unit(1.05, "feet"),
  53424. name: "Paw",
  53425. image: {
  53426. source: "./media/characters/yepir/paw.svg"
  53427. }
  53428. },
  53429. },
  53430. [
  53431. {
  53432. name: "Normal",
  53433. height: math.unit(6 + 2/12, "feet"),
  53434. default: true
  53435. },
  53436. ]
  53437. ))
  53438. characterMakers.push(() => makeCharacter(
  53439. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53440. {
  53441. front: {
  53442. height: math.unit(5 + 4/12, "feet"),
  53443. name: "Front",
  53444. image: {
  53445. source: "./media/characters/russec/front.svg",
  53446. extra: 1926/1626,
  53447. bottom: 72/1998
  53448. }
  53449. },
  53450. back: {
  53451. height: math.unit(5 + 4/12, "feet"),
  53452. name: "Back",
  53453. image: {
  53454. source: "./media/characters/russec/back.svg",
  53455. extra: 1910/1591,
  53456. bottom: 48/1958
  53457. }
  53458. },
  53459. },
  53460. [
  53461. {
  53462. name: "Small",
  53463. height: math.unit(5 + 4/12, "feet")
  53464. },
  53465. {
  53466. name: "Normal",
  53467. height: math.unit(72, "feet"),
  53468. default: true
  53469. },
  53470. ]
  53471. ))
  53472. characterMakers.push(() => makeCharacter(
  53473. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53474. {
  53475. side: {
  53476. height: math.unit(12, "feet"),
  53477. name: "Side",
  53478. image: {
  53479. source: "./media/characters/cianus/side.svg",
  53480. extra: 808/526,
  53481. bottom: 61/869
  53482. }
  53483. },
  53484. },
  53485. [
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(12, "feet"),
  53489. default: true
  53490. },
  53491. ]
  53492. ))
  53493. characterMakers.push(() => makeCharacter(
  53494. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53495. {
  53496. front: {
  53497. height: math.unit(9 + 6/12, "feet"),
  53498. weight: math.unit(300, "lb"),
  53499. name: "Front",
  53500. image: {
  53501. source: "./media/characters/ahab/front.svg",
  53502. extra: 1897/1868,
  53503. bottom: 121/2018
  53504. }
  53505. },
  53506. frontNsfw: {
  53507. height: math.unit(9 + 6/12, "feet"),
  53508. weight: math.unit(300, "lb"),
  53509. name: "Front-nsfw",
  53510. image: {
  53511. source: "./media/characters/ahab/front-nsfw.svg",
  53512. extra: 1897/1868,
  53513. bottom: 121/2018
  53514. }
  53515. },
  53516. },
  53517. [
  53518. {
  53519. name: "Normal",
  53520. height: math.unit(9 + 6/12, "feet")
  53521. },
  53522. {
  53523. name: "Macro",
  53524. height: math.unit(657, "feet"),
  53525. default: true
  53526. },
  53527. ]
  53528. ))
  53529. characterMakers.push(() => makeCharacter(
  53530. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53531. {
  53532. front: {
  53533. height: math.unit(2.69, "meters"),
  53534. weight: math.unit(132, "kg"),
  53535. name: "Front",
  53536. image: {
  53537. source: "./media/characters/aarkus/front.svg",
  53538. extra: 1400/1231,
  53539. bottom: 34/1434
  53540. }
  53541. },
  53542. back: {
  53543. height: math.unit(2.69, "meters"),
  53544. weight: math.unit(132, "kg"),
  53545. name: "Back",
  53546. image: {
  53547. source: "./media/characters/aarkus/back.svg",
  53548. extra: 1381/1218,
  53549. bottom: 30/1411
  53550. }
  53551. },
  53552. frontNsfw: {
  53553. height: math.unit(2.69, "meters"),
  53554. weight: math.unit(132, "kg"),
  53555. name: "Front (NSFW)",
  53556. image: {
  53557. source: "./media/characters/aarkus/front-nsfw.svg",
  53558. extra: 1400/1231,
  53559. bottom: 34/1434
  53560. }
  53561. },
  53562. foot: {
  53563. height: math.unit(1.45, "feet"),
  53564. name: "Foot",
  53565. image: {
  53566. source: "./media/characters/aarkus/foot.svg"
  53567. }
  53568. },
  53569. head: {
  53570. height: math.unit(2.85, "feet"),
  53571. name: "Head",
  53572. image: {
  53573. source: "./media/characters/aarkus/head.svg"
  53574. }
  53575. },
  53576. headAlt: {
  53577. height: math.unit(3.07, "feet"),
  53578. name: "Head (Alt)",
  53579. image: {
  53580. source: "./media/characters/aarkus/head-alt.svg"
  53581. }
  53582. },
  53583. mouth: {
  53584. height: math.unit(1.25, "feet"),
  53585. name: "Mouth",
  53586. image: {
  53587. source: "./media/characters/aarkus/mouth.svg"
  53588. }
  53589. },
  53590. dick: {
  53591. height: math.unit(1.77, "feet"),
  53592. name: "Dick",
  53593. image: {
  53594. source: "./media/characters/aarkus/dick.svg"
  53595. }
  53596. },
  53597. },
  53598. [
  53599. {
  53600. name: "Normal",
  53601. height: math.unit(2.69, "meters"),
  53602. default: true
  53603. },
  53604. {
  53605. name: "Macro",
  53606. height: math.unit(269, "meters")
  53607. },
  53608. {
  53609. name: "Macro+",
  53610. height: math.unit(672.5, "meters")
  53611. },
  53612. {
  53613. name: "Megamacro",
  53614. height: math.unit(2.017, "km")
  53615. },
  53616. ]
  53617. ))
  53618. characterMakers.push(() => makeCharacter(
  53619. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53620. {
  53621. front: {
  53622. height: math.unit(23.47, "cm"),
  53623. weight: math.unit(600, "grams"),
  53624. name: "Front",
  53625. image: {
  53626. source: "./media/characters/diode/front.svg",
  53627. extra: 1778/1396,
  53628. bottom: 95/1873
  53629. }
  53630. },
  53631. side: {
  53632. height: math.unit(23.47, "cm"),
  53633. weight: math.unit(600, "grams"),
  53634. name: "Side",
  53635. image: {
  53636. source: "./media/characters/diode/side.svg",
  53637. extra: 1831/1404,
  53638. bottom: 86/1917
  53639. }
  53640. },
  53641. wings: {
  53642. height: math.unit(0.683, "feet"),
  53643. name: "Wings",
  53644. image: {
  53645. source: "./media/characters/diode/wings.svg"
  53646. }
  53647. },
  53648. },
  53649. [
  53650. {
  53651. name: "Normal",
  53652. height: math.unit(23.47, "cm"),
  53653. default: true
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53659. {
  53660. front: {
  53661. height: math.unit(6 + 3/12, "feet"),
  53662. weight: math.unit(250, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/reika/front.svg",
  53666. extra: 1120/1078,
  53667. bottom: 86/1206
  53668. }
  53669. },
  53670. },
  53671. [
  53672. {
  53673. name: "Normal",
  53674. height: math.unit(6 + 3/12, "feet"),
  53675. default: true
  53676. },
  53677. ]
  53678. ))
  53679. characterMakers.push(() => makeCharacter(
  53680. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53681. {
  53682. front: {
  53683. height: math.unit(16 + 8/12, "feet"),
  53684. weight: math.unit(9000, "lb"),
  53685. name: "Front",
  53686. image: {
  53687. source: "./media/characters/lokuto-takama/front.svg",
  53688. extra: 1774/1632,
  53689. bottom: 147/1921
  53690. },
  53691. extraAttributes: {
  53692. "bustWidth": {
  53693. name: "Bust Width",
  53694. power: 1,
  53695. type: "length",
  53696. base: math.unit(2.4, "meters")
  53697. },
  53698. "breastWeight": {
  53699. name: "Breast Weight",
  53700. power: 3,
  53701. type: "mass",
  53702. base: math.unit(1000, "kg")
  53703. },
  53704. }
  53705. },
  53706. },
  53707. [
  53708. {
  53709. name: "Normal",
  53710. height: math.unit(16 + 8/12, "feet"),
  53711. default: true
  53712. },
  53713. ]
  53714. ))
  53715. characterMakers.push(() => makeCharacter(
  53716. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53717. {
  53718. front: {
  53719. height: math.unit(10, "cm"),
  53720. weight: math.unit(850, "grams"),
  53721. name: "Front",
  53722. image: {
  53723. source: "./media/characters/owak-bone/front.svg",
  53724. extra: 1965/1801,
  53725. bottom: 31/1996
  53726. }
  53727. },
  53728. },
  53729. [
  53730. {
  53731. name: "Normal",
  53732. height: math.unit(10, "cm"),
  53733. default: true
  53734. },
  53735. ]
  53736. ))
  53737. characterMakers.push(() => makeCharacter(
  53738. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53739. {
  53740. front: {
  53741. height: math.unit(2 + 6/12, "feet"),
  53742. weight: math.unit(9, "lb"),
  53743. name: "Front",
  53744. image: {
  53745. source: "./media/characters/muffin/front.svg",
  53746. extra: 1220/1195,
  53747. bottom: 84/1304
  53748. }
  53749. },
  53750. },
  53751. [
  53752. {
  53753. name: "Normal",
  53754. height: math.unit(2 + 6/12, "feet"),
  53755. default: true
  53756. },
  53757. ]
  53758. ))
  53759. characterMakers.push(() => makeCharacter(
  53760. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53761. {
  53762. front: {
  53763. height: math.unit(7, "feet"),
  53764. name: "Front",
  53765. image: {
  53766. source: "./media/characters/chimera/front.svg",
  53767. extra: 1752/1614,
  53768. bottom: 68/1820
  53769. }
  53770. },
  53771. },
  53772. [
  53773. {
  53774. name: "Normal",
  53775. height: math.unit(7, "feet")
  53776. },
  53777. {
  53778. name: "Gigamacro",
  53779. height: math.unit(2.9, "gigameters"),
  53780. default: true
  53781. },
  53782. {
  53783. name: "Universal",
  53784. height: math.unit(1.56e26, "yottameters")
  53785. },
  53786. ]
  53787. ))
  53788. characterMakers.push(() => makeCharacter(
  53789. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53790. {
  53791. front: {
  53792. height: math.unit(3, "feet"),
  53793. weight: math.unit(20, "lb"),
  53794. name: "Front",
  53795. image: {
  53796. source: "./media/characters/kit-fennec-fox/front.svg",
  53797. extra: 1027/932,
  53798. bottom: 16/1043
  53799. }
  53800. },
  53801. back: {
  53802. height: math.unit(3, "feet"),
  53803. weight: math.unit(20, "lb"),
  53804. name: "Back",
  53805. image: {
  53806. source: "./media/characters/kit-fennec-fox/back.svg",
  53807. extra: 1027/932,
  53808. bottom: 16/1043
  53809. }
  53810. },
  53811. },
  53812. [
  53813. {
  53814. name: "Normal",
  53815. height: math.unit(3, "feet"),
  53816. default: true
  53817. },
  53818. ]
  53819. ))
  53820. characterMakers.push(() => makeCharacter(
  53821. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53822. {
  53823. front: {
  53824. height: math.unit(167, "cm"),
  53825. name: "Front",
  53826. image: {
  53827. source: "./media/characters/blue-otter/front.svg",
  53828. extra: 1951/1920,
  53829. bottom: 31/1982
  53830. }
  53831. },
  53832. },
  53833. [
  53834. {
  53835. name: "Otter-Sized",
  53836. height: math.unit(100, "cm")
  53837. },
  53838. {
  53839. name: "Normal",
  53840. height: math.unit(167, "cm"),
  53841. default: true
  53842. },
  53843. ]
  53844. ))
  53845. characterMakers.push(() => makeCharacter(
  53846. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53847. {
  53848. front: {
  53849. height: math.unit(4 + 4/12, "feet"),
  53850. name: "Front",
  53851. image: {
  53852. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53853. extra: 1072/1067,
  53854. bottom: 117/1189
  53855. }
  53856. },
  53857. back: {
  53858. height: math.unit(4 + 4/12, "feet"),
  53859. name: "Back",
  53860. image: {
  53861. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53862. extra: 1135/1129,
  53863. bottom: 57/1192
  53864. }
  53865. },
  53866. head: {
  53867. height: math.unit(1.77, "feet"),
  53868. name: "Head",
  53869. image: {
  53870. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53871. }
  53872. },
  53873. },
  53874. [
  53875. {
  53876. name: "Normal",
  53877. height: math.unit(4 + 4/12, "feet"),
  53878. default: true
  53879. },
  53880. ]
  53881. ))
  53882. characterMakers.push(() => makeCharacter(
  53883. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53884. {
  53885. front: {
  53886. height: math.unit(2, "inches"),
  53887. name: "Front",
  53888. image: {
  53889. source: "./media/characters/carley-hartford/front.svg",
  53890. extra: 1035/988,
  53891. bottom: 23/1058
  53892. }
  53893. },
  53894. back: {
  53895. height: math.unit(2, "inches"),
  53896. name: "Back",
  53897. image: {
  53898. source: "./media/characters/carley-hartford/back.svg",
  53899. extra: 1035/988,
  53900. bottom: 23/1058
  53901. }
  53902. },
  53903. dressed: {
  53904. height: math.unit(2, "inches"),
  53905. name: "Dressed",
  53906. image: {
  53907. source: "./media/characters/carley-hartford/dressed.svg",
  53908. extra: 651/620,
  53909. bottom: 0/651
  53910. }
  53911. },
  53912. },
  53913. [
  53914. {
  53915. name: "Micro",
  53916. height: math.unit(2, "inches"),
  53917. default: true
  53918. },
  53919. {
  53920. name: "Macro",
  53921. height: math.unit(6 + 3/12, "feet")
  53922. },
  53923. ]
  53924. ))
  53925. characterMakers.push(() => makeCharacter(
  53926. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53927. {
  53928. front: {
  53929. height: math.unit(2 + 3/12, "feet"),
  53930. weight: math.unit(15 + 7/16, "lb"),
  53931. name: "Front",
  53932. image: {
  53933. source: "./media/characters/duke/front.svg",
  53934. extra: 910/815,
  53935. bottom: 30/940
  53936. }
  53937. },
  53938. },
  53939. [
  53940. {
  53941. name: "Normal",
  53942. height: math.unit(2 + 3/12, "feet"),
  53943. default: true
  53944. },
  53945. ]
  53946. ))
  53947. characterMakers.push(() => makeCharacter(
  53948. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53949. {
  53950. front: {
  53951. height: math.unit(5 + 4/12, "feet"),
  53952. weight: math.unit(156, "lb"),
  53953. name: "Front",
  53954. image: {
  53955. source: "./media/characters/dein/front.svg",
  53956. extra: 855/815,
  53957. bottom: 48/903
  53958. }
  53959. },
  53960. side: {
  53961. height: math.unit(5 + 4/12, "feet"),
  53962. weight: math.unit(156, "lb"),
  53963. name: "side",
  53964. image: {
  53965. source: "./media/characters/dein/side.svg",
  53966. extra: 846/803,
  53967. bottom: 25/871
  53968. }
  53969. },
  53970. maw: {
  53971. height: math.unit(1.45, "feet"),
  53972. name: "Maw",
  53973. image: {
  53974. source: "./media/characters/dein/maw.svg"
  53975. }
  53976. },
  53977. },
  53978. [
  53979. {
  53980. name: "Ferret Sized",
  53981. height: math.unit(2 + 5/12, "feet")
  53982. },
  53983. {
  53984. name: "Normal",
  53985. height: math.unit(5 + 4/12, "feet"),
  53986. default: true
  53987. },
  53988. ]
  53989. ))
  53990. characterMakers.push(() => makeCharacter(
  53991. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53992. {
  53993. front: {
  53994. height: math.unit(84 + 8/12, "feet"),
  53995. weight: math.unit(942180, "lb"),
  53996. name: "Front",
  53997. image: {
  53998. source: "./media/characters/daurine-arima/front.svg",
  53999. extra: 1989/1782,
  54000. bottom: 37/2026
  54001. }
  54002. },
  54003. side: {
  54004. height: math.unit(84 + 8/12, "feet"),
  54005. weight: math.unit(942180, "lb"),
  54006. name: "Side",
  54007. image: {
  54008. source: "./media/characters/daurine-arima/side.svg",
  54009. extra: 1997/1790,
  54010. bottom: 21/2018
  54011. }
  54012. },
  54013. back: {
  54014. height: math.unit(84 + 8/12, "feet"),
  54015. weight: math.unit(942180, "lb"),
  54016. name: "Back",
  54017. image: {
  54018. source: "./media/characters/daurine-arima/back.svg",
  54019. extra: 1992/1800,
  54020. bottom: 12/2004
  54021. }
  54022. },
  54023. head: {
  54024. height: math.unit(15.5, "feet"),
  54025. name: "Head",
  54026. image: {
  54027. source: "./media/characters/daurine-arima/head.svg"
  54028. }
  54029. },
  54030. headAlt: {
  54031. height: math.unit(19.19, "feet"),
  54032. name: "Head (Alt)",
  54033. image: {
  54034. source: "./media/characters/daurine-arima/head-alt.svg"
  54035. }
  54036. },
  54037. },
  54038. [
  54039. {
  54040. name: "Minimum height",
  54041. height: math.unit(8 + 10/12, "feet")
  54042. },
  54043. {
  54044. name: "Comfort height",
  54045. height: math.unit(19 + 6 /12, "feet")
  54046. },
  54047. {
  54048. name: "\"Normal\" height",
  54049. height: math.unit(28 + 10/12, "feet")
  54050. },
  54051. {
  54052. name: "Base height",
  54053. height: math.unit(84 + 8/12, "feet"),
  54054. default: true
  54055. },
  54056. {
  54057. name: "Mini-macro",
  54058. height: math.unit(2360, "feet")
  54059. },
  54060. {
  54061. name: "Macro",
  54062. height: math.unit(10, "miles")
  54063. },
  54064. {
  54065. name: "Goddess",
  54066. height: math.unit(9.99e40, "yottameters")
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54072. {
  54073. front: {
  54074. height: math.unit(2.3, "meters"),
  54075. name: "Front",
  54076. image: {
  54077. source: "./media/characters/cilenomon/front.svg",
  54078. extra: 1963/1778,
  54079. bottom: 54/2017
  54080. }
  54081. },
  54082. },
  54083. [
  54084. {
  54085. name: "Normal",
  54086. height: math.unit(2.3, "meters"),
  54087. default: true
  54088. },
  54089. {
  54090. name: "Big",
  54091. height: math.unit(5, "meters")
  54092. },
  54093. {
  54094. name: "Macro",
  54095. height: math.unit(30, "meters")
  54096. },
  54097. {
  54098. name: "True",
  54099. height: math.unit(1, "universe")
  54100. },
  54101. ]
  54102. ))
  54103. characterMakers.push(() => makeCharacter(
  54104. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54105. {
  54106. front: {
  54107. height: math.unit(5, "feet"),
  54108. name: "Front",
  54109. image: {
  54110. source: "./media/characters/sen-mink/front.svg",
  54111. extra: 1727/1675,
  54112. bottom: 35/1762
  54113. }
  54114. },
  54115. },
  54116. [
  54117. {
  54118. name: "Normal",
  54119. height: math.unit(5, "feet"),
  54120. default: true
  54121. },
  54122. ]
  54123. ))
  54124. characterMakers.push(() => makeCharacter(
  54125. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54126. {
  54127. front: {
  54128. height: math.unit(5.42999, "feet"),
  54129. weight: math.unit(100, "lb"),
  54130. name: "Front",
  54131. image: {
  54132. source: "./media/characters/ophois/front.svg",
  54133. extra: 1429/1286,
  54134. bottom: 60/1489
  54135. }
  54136. },
  54137. },
  54138. [
  54139. {
  54140. name: "Normal",
  54141. height: math.unit(5.42999, "feet"),
  54142. default: true
  54143. },
  54144. ]
  54145. ))
  54146. characterMakers.push(() => makeCharacter(
  54147. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54148. {
  54149. front: {
  54150. height: math.unit(2, "meters"),
  54151. name: "Front",
  54152. image: {
  54153. source: "./media/characters/riley/front.svg",
  54154. extra: 1779/1754,
  54155. bottom: 139/1918
  54156. }
  54157. },
  54158. },
  54159. [
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(2, "meters"),
  54163. default: true
  54164. },
  54165. ]
  54166. ))
  54167. characterMakers.push(() => makeCharacter(
  54168. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54169. {
  54170. front: {
  54171. height: math.unit(6 + 2/12, "feet"),
  54172. weight: math.unit(195, "lb"),
  54173. preyCapacity: math.unit(6, "people"),
  54174. name: "Front",
  54175. image: {
  54176. source: "./media/characters/shuken-flash/front.svg",
  54177. extra: 1905/1739,
  54178. bottom: 65/1970
  54179. }
  54180. },
  54181. back: {
  54182. height: math.unit(6 + 2/12, "feet"),
  54183. weight: math.unit(195, "lb"),
  54184. preyCapacity: math.unit(6, "people"),
  54185. name: "Back",
  54186. image: {
  54187. source: "./media/characters/shuken-flash/back.svg",
  54188. extra: 1912/1751,
  54189. bottom: 13/1925
  54190. }
  54191. },
  54192. },
  54193. [
  54194. {
  54195. name: "Normal",
  54196. height: math.unit(6 + 2/12, "feet"),
  54197. default: true
  54198. },
  54199. ]
  54200. ))
  54201. characterMakers.push(() => makeCharacter(
  54202. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54203. {
  54204. front: {
  54205. height: math.unit(5 + 9/12, "feet"),
  54206. weight: math.unit(150, "lb"),
  54207. name: "Front",
  54208. image: {
  54209. source: "./media/characters/plat/front.svg",
  54210. extra: 1816/1703,
  54211. bottom: 43/1859
  54212. }
  54213. },
  54214. side: {
  54215. height: math.unit(5 + 9/12, "feet"),
  54216. weight: math.unit(300, "lb"),
  54217. name: "Side",
  54218. image: {
  54219. source: "./media/characters/plat/side.svg",
  54220. extra: 1824/1699,
  54221. bottom: 18/1842
  54222. }
  54223. },
  54224. },
  54225. [
  54226. {
  54227. name: "Normal",
  54228. height: math.unit(5 + 9/12, "feet"),
  54229. default: true
  54230. },
  54231. ]
  54232. ))
  54233. characterMakers.push(() => makeCharacter(
  54234. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54235. {
  54236. front: {
  54237. height: math.unit(9, "feet"),
  54238. weight: math.unit(1800, "lb"),
  54239. name: "Front",
  54240. image: {
  54241. source: "./media/characters/elaine/front.svg",
  54242. extra: 1833/1354,
  54243. bottom: 25/1858
  54244. }
  54245. },
  54246. back: {
  54247. height: math.unit(8.8, "feet"),
  54248. weight: math.unit(1800, "lb"),
  54249. name: "Back",
  54250. image: {
  54251. source: "./media/characters/elaine/back.svg",
  54252. extra: 1641/1233,
  54253. bottom: 53/1694
  54254. }
  54255. },
  54256. },
  54257. [
  54258. {
  54259. name: "Normal",
  54260. height: math.unit(9, "feet"),
  54261. default: true
  54262. },
  54263. ]
  54264. ))
  54265. characterMakers.push(() => makeCharacter(
  54266. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54267. {
  54268. front: {
  54269. height: math.unit(17 + 9/12, "feet"),
  54270. weight: math.unit(8000, "lb"),
  54271. name: "Front",
  54272. image: {
  54273. source: "./media/characters/vera-raven/front.svg",
  54274. extra: 1457/1412,
  54275. bottom: 121/1578
  54276. }
  54277. },
  54278. side: {
  54279. height: math.unit(17 + 9/12, "feet"),
  54280. weight: math.unit(8000, "lb"),
  54281. name: "Side",
  54282. image: {
  54283. source: "./media/characters/vera-raven/side.svg",
  54284. extra: 1510/1464,
  54285. bottom: 54/1564
  54286. }
  54287. },
  54288. },
  54289. [
  54290. {
  54291. name: "Normal",
  54292. height: math.unit(17 + 9/12, "feet"),
  54293. default: true
  54294. },
  54295. ]
  54296. ))
  54297. characterMakers.push(() => makeCharacter(
  54298. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54299. {
  54300. dressed: {
  54301. height: math.unit(6 + 9/12, "feet"),
  54302. name: "Dressed",
  54303. image: {
  54304. source: "./media/characters/nakisha/dressed.svg",
  54305. extra: 1909/1757,
  54306. bottom: 48/1957
  54307. }
  54308. },
  54309. nude: {
  54310. height: math.unit(6 + 9/12, "feet"),
  54311. name: "Nude",
  54312. image: {
  54313. source: "./media/characters/nakisha/nude.svg",
  54314. extra: 1917/1765,
  54315. bottom: 34/1951
  54316. }
  54317. },
  54318. },
  54319. [
  54320. {
  54321. name: "Normal",
  54322. height: math.unit(6 + 9/12, "feet"),
  54323. default: true
  54324. },
  54325. ]
  54326. ))
  54327. characterMakers.push(() => makeCharacter(
  54328. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54329. {
  54330. front: {
  54331. height: math.unit(87, "meters"),
  54332. name: "Front",
  54333. image: {
  54334. source: "./media/characters/serafin/front.svg",
  54335. extra: 1919/1776,
  54336. bottom: 65/1984
  54337. }
  54338. },
  54339. },
  54340. [
  54341. {
  54342. name: "Normal",
  54343. height: math.unit(87, "meters"),
  54344. default: true
  54345. },
  54346. ]
  54347. ))
  54348. characterMakers.push(() => makeCharacter(
  54349. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54350. {
  54351. front: {
  54352. height: math.unit(6, "feet"),
  54353. weight: math.unit(200, "lb"),
  54354. name: "Front",
  54355. image: {
  54356. source: "./media/characters/poptart/front.svg",
  54357. extra: 615/583,
  54358. bottom: 23/638
  54359. }
  54360. },
  54361. back: {
  54362. height: math.unit(6, "feet"),
  54363. weight: math.unit(200, "lb"),
  54364. name: "Back",
  54365. image: {
  54366. source: "./media/characters/poptart/back.svg",
  54367. extra: 617/584,
  54368. bottom: 22/639
  54369. }
  54370. },
  54371. frontNsfw: {
  54372. height: math.unit(6, "feet"),
  54373. weight: math.unit(200, "lb"),
  54374. name: "Front (NSFW)",
  54375. image: {
  54376. source: "./media/characters/poptart/front-nsfw.svg",
  54377. extra: 615/583,
  54378. bottom: 23/638
  54379. }
  54380. },
  54381. backNsfw: {
  54382. height: math.unit(6, "feet"),
  54383. weight: math.unit(200, "lb"),
  54384. name: "Back (NSFW)",
  54385. image: {
  54386. source: "./media/characters/poptart/back-nsfw.svg",
  54387. extra: 617/584,
  54388. bottom: 22/639
  54389. }
  54390. },
  54391. hand: {
  54392. height: math.unit(1.14, "feet"),
  54393. name: "Hand",
  54394. image: {
  54395. source: "./media/characters/poptart/hand.svg"
  54396. }
  54397. },
  54398. foot: {
  54399. height: math.unit(1.5, "feet"),
  54400. name: "Foot",
  54401. image: {
  54402. source: "./media/characters/poptart/foot.svg"
  54403. }
  54404. },
  54405. },
  54406. [
  54407. {
  54408. name: "Normal",
  54409. height: math.unit(6, "feet"),
  54410. default: true
  54411. },
  54412. {
  54413. name: "Grande",
  54414. height: math.unit(350, "feet")
  54415. },
  54416. {
  54417. name: "Massif",
  54418. height: math.unit(967, "feet")
  54419. },
  54420. ]
  54421. ))
  54422. characterMakers.push(() => makeCharacter(
  54423. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54424. {
  54425. hyenaSide: {
  54426. height: math.unit(120, "cm"),
  54427. weight: math.unit(120, "lb"),
  54428. name: "Side",
  54429. image: {
  54430. source: "./media/characters/trance/hyena-side.svg",
  54431. extra: 998/904,
  54432. bottom: 76/1074
  54433. }
  54434. },
  54435. },
  54436. [
  54437. {
  54438. name: "Normal",
  54439. height: math.unit(120, "cm"),
  54440. default: true
  54441. },
  54442. {
  54443. name: "Dire",
  54444. height: math.unit(230, "cm")
  54445. },
  54446. {
  54447. name: "Macro",
  54448. height: math.unit(37, "feet")
  54449. },
  54450. ]
  54451. ))
  54452. characterMakers.push(() => makeCharacter(
  54453. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54454. {
  54455. front: {
  54456. height: math.unit(6 + 3/12, "feet"),
  54457. name: "Front",
  54458. image: {
  54459. source: "./media/characters/michael-berretta/front.svg",
  54460. extra: 515/494,
  54461. bottom: 20/535
  54462. }
  54463. },
  54464. back: {
  54465. height: math.unit(6 + 3/12, "feet"),
  54466. name: "Back",
  54467. image: {
  54468. source: "./media/characters/michael-berretta/back.svg",
  54469. extra: 520/497,
  54470. bottom: 21/541
  54471. }
  54472. },
  54473. frontNsfw: {
  54474. height: math.unit(6 + 3/12, "feet"),
  54475. name: "Front (NSFW)",
  54476. image: {
  54477. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54478. extra: 515/494,
  54479. bottom: 20/535
  54480. }
  54481. },
  54482. dick: {
  54483. height: math.unit(1, "feet"),
  54484. name: "Dick",
  54485. image: {
  54486. source: "./media/characters/michael-berretta/dick.svg"
  54487. }
  54488. },
  54489. },
  54490. [
  54491. {
  54492. name: "Normal",
  54493. height: math.unit(6 + 3/12, "feet"),
  54494. default: true
  54495. },
  54496. {
  54497. name: "Big",
  54498. height: math.unit(12, "feet")
  54499. },
  54500. {
  54501. name: "Macro",
  54502. height: math.unit(187.5, "feet")
  54503. },
  54504. ]
  54505. ))
  54506. characterMakers.push(() => makeCharacter(
  54507. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54508. {
  54509. front: {
  54510. height: math.unit(9 + 9/12, "feet"),
  54511. weight: math.unit(1244, "lb"),
  54512. name: "Front",
  54513. image: {
  54514. source: "./media/characters/stella-edgecomb/front.svg",
  54515. extra: 1835/1706,
  54516. bottom: 49/1884
  54517. }
  54518. },
  54519. pen: {
  54520. height: math.unit(0.95, "feet"),
  54521. name: "Pen",
  54522. image: {
  54523. source: "./media/characters/stella-edgecomb/pen.svg"
  54524. }
  54525. },
  54526. },
  54527. [
  54528. {
  54529. name: "Cozy Bear",
  54530. height: math.unit(0.5, "inches")
  54531. },
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(9 + 9/12, "feet"),
  54535. default: true
  54536. },
  54537. {
  54538. name: "Giga Bear",
  54539. height: math.unit(1, "mile")
  54540. },
  54541. {
  54542. name: "Great Bear",
  54543. height: math.unit(53, "miles")
  54544. },
  54545. {
  54546. name: "Goddess Bear",
  54547. height: math.unit(40000, "miles")
  54548. },
  54549. {
  54550. name: "Sun Bear",
  54551. height: math.unit(900000, "miles")
  54552. },
  54553. ]
  54554. ))
  54555. characterMakers.push(() => makeCharacter(
  54556. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54557. {
  54558. anthroFront: {
  54559. height: math.unit(556, "cm"),
  54560. weight: math.unit(2650, "kg"),
  54561. preyCapacity: math.unit(3, "people"),
  54562. name: "Front",
  54563. image: {
  54564. source: "./media/characters/ash´iika/front.svg",
  54565. extra: 710/673,
  54566. bottom: 15/725
  54567. },
  54568. form: "anthro",
  54569. default: true
  54570. },
  54571. anthroSide: {
  54572. height: math.unit(556, "cm"),
  54573. weight: math.unit(2650, "kg"),
  54574. preyCapacity: math.unit(3, "people"),
  54575. name: "Side",
  54576. image: {
  54577. source: "./media/characters/ash´iika/side.svg",
  54578. extra: 696/676,
  54579. bottom: 13/709
  54580. },
  54581. form: "anthro"
  54582. },
  54583. anthroDressed: {
  54584. height: math.unit(556, "cm"),
  54585. weight: math.unit(2650, "kg"),
  54586. preyCapacity: math.unit(3, "people"),
  54587. name: "Dressed",
  54588. image: {
  54589. source: "./media/characters/ash´iika/dressed.svg",
  54590. extra: 710/673,
  54591. bottom: 15/725
  54592. },
  54593. form: "anthro"
  54594. },
  54595. anthroHead: {
  54596. height: math.unit(3.5, "feet"),
  54597. name: "Head",
  54598. image: {
  54599. source: "./media/characters/ash´iika/head.svg",
  54600. extra: 348/291,
  54601. bottom: 45/393
  54602. },
  54603. form: "anthro"
  54604. },
  54605. feralSide: {
  54606. height: math.unit(870, "cm"),
  54607. weight: math.unit(17500, "kg"),
  54608. preyCapacity: math.unit(15, "people"),
  54609. name: "Side",
  54610. image: {
  54611. source: "./media/characters/ash´iika/feral.svg",
  54612. extra: 595/199,
  54613. bottom: 7/602
  54614. },
  54615. form: "feral",
  54616. default: true,
  54617. },
  54618. },
  54619. [
  54620. {
  54621. name: "Normal",
  54622. height: math.unit(556, "cm"),
  54623. default: true,
  54624. form: "anthro"
  54625. },
  54626. {
  54627. name: "Macro",
  54628. height: math.unit(88, "meters"),
  54629. form: "anthro"
  54630. },
  54631. {
  54632. name: "Normal",
  54633. height: math.unit(870, "cm"),
  54634. default: true,
  54635. form: "feral"
  54636. },
  54637. {
  54638. name: "Large",
  54639. height: math.unit(25, "meters"),
  54640. form: "feral"
  54641. },
  54642. ],
  54643. {
  54644. "anthro": {
  54645. name: "Anthro",
  54646. default: true
  54647. },
  54648. "feral": {
  54649. name: "Feral",
  54650. },
  54651. }
  54652. ))
  54653. characterMakers.push(() => makeCharacter(
  54654. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54655. {
  54656. front: {
  54657. height: math.unit(10, "feet"),
  54658. weight: math.unit(800, "lb"),
  54659. name: "Front",
  54660. image: {
  54661. source: "./media/characters/yen/front.svg",
  54662. extra: 443/411,
  54663. bottom: 6/449
  54664. }
  54665. },
  54666. sleeping: {
  54667. height: math.unit(10, "feet"),
  54668. weight: math.unit(800, "lb"),
  54669. name: "Sleeping",
  54670. image: {
  54671. source: "./media/characters/yen/sleeping.svg",
  54672. extra: 470/422,
  54673. bottom: 0/470
  54674. }
  54675. },
  54676. head: {
  54677. height: math.unit(2.2, "feet"),
  54678. name: "Head",
  54679. image: {
  54680. source: "./media/characters/yen/head.svg"
  54681. }
  54682. },
  54683. headAlt: {
  54684. height: math.unit(2.1, "feet"),
  54685. name: "Head (Alt)",
  54686. image: {
  54687. source: "./media/characters/yen/head-alt.svg"
  54688. }
  54689. },
  54690. },
  54691. [
  54692. {
  54693. name: "Normal",
  54694. height: math.unit(10, "feet"),
  54695. default: true
  54696. },
  54697. ]
  54698. ))
  54699. characterMakers.push(() => makeCharacter(
  54700. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54701. {
  54702. front: {
  54703. height: math.unit(12, "feet"),
  54704. name: "Front",
  54705. image: {
  54706. source: "./media/characters/citra/front.svg",
  54707. extra: 1950/1710,
  54708. bottom: 47/1997
  54709. }
  54710. },
  54711. },
  54712. [
  54713. {
  54714. name: "Normal",
  54715. height: math.unit(12, "feet"),
  54716. default: true
  54717. },
  54718. ]
  54719. ))
  54720. characterMakers.push(() => makeCharacter(
  54721. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54722. {
  54723. side: {
  54724. height: math.unit(7 + 10/12, "feet"),
  54725. name: "Side",
  54726. image: {
  54727. source: "./media/characters/sholstim/side.svg",
  54728. extra: 786/682,
  54729. bottom: 40/826
  54730. }
  54731. },
  54732. },
  54733. [
  54734. {
  54735. name: "Normal",
  54736. height: math.unit(7 + 10/12, "feet"),
  54737. default: true
  54738. },
  54739. ]
  54740. ))
  54741. characterMakers.push(() => makeCharacter(
  54742. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54743. {
  54744. front: {
  54745. height: math.unit(3.10, "meters"),
  54746. name: "Front",
  54747. image: {
  54748. source: "./media/characters/aggyn/front.svg",
  54749. extra: 1188/963,
  54750. bottom: 24/1212
  54751. }
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Normal",
  54757. height: math.unit(3.10, "meters"),
  54758. default: true
  54759. },
  54760. ]
  54761. ))
  54762. characterMakers.push(() => makeCharacter(
  54763. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54764. {
  54765. front: {
  54766. height: math.unit(7 + 5/12, "feet"),
  54767. weight: math.unit(687, "lb"),
  54768. name: "Front",
  54769. image: {
  54770. source: "./media/characters/alsandair-hergenroether/front.svg",
  54771. extra: 1251/1186,
  54772. bottom: 75/1326
  54773. }
  54774. },
  54775. back: {
  54776. height: math.unit(7 + 5/12, "feet"),
  54777. weight: math.unit(687, "lb"),
  54778. name: "Back",
  54779. image: {
  54780. source: "./media/characters/alsandair-hergenroether/back.svg",
  54781. extra: 1290/1229,
  54782. bottom: 17/1307
  54783. }
  54784. },
  54785. },
  54786. [
  54787. {
  54788. name: "Max Compression",
  54789. height: math.unit(7 + 5/12, "feet"),
  54790. default: true
  54791. },
  54792. {
  54793. name: "\"Normal\"",
  54794. height: math.unit(2, "universes")
  54795. },
  54796. ]
  54797. ))
  54798. characterMakers.push(() => makeCharacter(
  54799. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54800. {
  54801. front: {
  54802. height: math.unit(4 + 1/12, "feet"),
  54803. weight: math.unit(92, "lb"),
  54804. name: "Front",
  54805. image: {
  54806. source: "./media/characters/ie/front.svg",
  54807. extra: 1585/1352,
  54808. bottom: 91/1676
  54809. }
  54810. },
  54811. },
  54812. [
  54813. {
  54814. name: "Normal",
  54815. height: math.unit(4 + 1/12, "feet"),
  54816. default: true
  54817. },
  54818. ]
  54819. ))
  54820. characterMakers.push(() => makeCharacter(
  54821. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54822. {
  54823. anthro: {
  54824. height: math.unit(6, "feet"),
  54825. weight: math.unit(150, "lb"),
  54826. name: "Front",
  54827. image: {
  54828. source: "./media/characters/willow/anthro.svg",
  54829. extra: 1073/986,
  54830. bottom: 34/1107
  54831. },
  54832. form: "anthro",
  54833. default: true
  54834. },
  54835. taur: {
  54836. height: math.unit(6, "feet"),
  54837. weight: math.unit(150, "lb"),
  54838. name: "Side",
  54839. image: {
  54840. source: "./media/characters/willow/taur.svg",
  54841. extra: 647/512,
  54842. bottom: 136/783
  54843. },
  54844. form: "taur",
  54845. default: true
  54846. },
  54847. },
  54848. [
  54849. {
  54850. name: "Humanoid",
  54851. height: math.unit(2.7, "meters"),
  54852. form: "anthro"
  54853. },
  54854. {
  54855. name: "Normal",
  54856. height: math.unit(9, "meters"),
  54857. form: "anthro",
  54858. default: true
  54859. },
  54860. {
  54861. name: "Humanoid",
  54862. height: math.unit(2.1, "meters"),
  54863. form: "taur"
  54864. },
  54865. {
  54866. name: "Normal",
  54867. height: math.unit(7, "meters"),
  54868. form: "taur",
  54869. default: true
  54870. },
  54871. ],
  54872. {
  54873. "anthro": {
  54874. name: "Anthro",
  54875. default: true
  54876. },
  54877. "taur": {
  54878. name: "Taur",
  54879. },
  54880. }
  54881. ))
  54882. characterMakers.push(() => makeCharacter(
  54883. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54884. {
  54885. front: {
  54886. height: math.unit(2 + 5/12, "feet"),
  54887. name: "Front",
  54888. image: {
  54889. source: "./media/characters/kyan/front.svg",
  54890. extra: 460/334,
  54891. bottom: 23/483
  54892. },
  54893. extraAttributes: {
  54894. "toeLength": {
  54895. name: "Toe Length",
  54896. power: 1,
  54897. type: "length",
  54898. base: math.unit(7, "cm")
  54899. },
  54900. "toeclawLength": {
  54901. name: "Toeclaw Length",
  54902. power: 1,
  54903. type: "length",
  54904. base: math.unit(4.7, "cm")
  54905. },
  54906. "earHeight": {
  54907. name: "Ear Height",
  54908. power: 1,
  54909. type: "length",
  54910. base: math.unit(14.1, "cm")
  54911. },
  54912. }
  54913. },
  54914. paws: {
  54915. height: math.unit(0.45, "feet"),
  54916. name: "Paws",
  54917. image: {
  54918. source: "./media/characters/kyan/paws.svg",
  54919. extra: 581/581,
  54920. bottom: 114/695
  54921. }
  54922. },
  54923. },
  54924. [
  54925. {
  54926. name: "Normal",
  54927. height: math.unit(2 + 5/12, "feet"),
  54928. default: true
  54929. },
  54930. ]
  54931. ))
  54932. characterMakers.push(() => makeCharacter(
  54933. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54934. {
  54935. front: {
  54936. height: math.unit(2 + 2/3, "feet"),
  54937. name: "Front",
  54938. image: {
  54939. source: "./media/characters/xazzon/front.svg",
  54940. extra: 1109/984,
  54941. bottom: 42/1151
  54942. }
  54943. },
  54944. back: {
  54945. height: math.unit(2 + 2/3, "feet"),
  54946. name: "Back",
  54947. image: {
  54948. source: "./media/characters/xazzon/back.svg",
  54949. extra: 1095/971,
  54950. bottom: 23/1118
  54951. }
  54952. },
  54953. },
  54954. [
  54955. {
  54956. name: "Normal",
  54957. height: math.unit(2 + 2/3, "feet"),
  54958. default: true
  54959. },
  54960. ]
  54961. ))
  54962. characterMakers.push(() => makeCharacter(
  54963. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54964. {
  54965. front: {
  54966. height: math.unit(8, "feet"),
  54967. weight: math.unit(300, "lb"),
  54968. name: "Front",
  54969. image: {
  54970. source: "./media/characters/khyla-shadowsong/front.svg",
  54971. extra: 861/798,
  54972. bottom: 32/893
  54973. }
  54974. },
  54975. side: {
  54976. height: math.unit(8, "feet"),
  54977. weight: math.unit(300, "lb"),
  54978. name: "Side",
  54979. image: {
  54980. source: "./media/characters/khyla-shadowsong/side.svg",
  54981. extra: 790/750,
  54982. bottom: 87/877
  54983. }
  54984. },
  54985. back: {
  54986. height: math.unit(8, "feet"),
  54987. weight: math.unit(300, "lb"),
  54988. name: "Back",
  54989. image: {
  54990. source: "./media/characters/khyla-shadowsong/back.svg",
  54991. extra: 855/808,
  54992. bottom: 14/869
  54993. }
  54994. },
  54995. head: {
  54996. height: math.unit(2.7, "feet"),
  54997. name: "Head",
  54998. image: {
  54999. source: "./media/characters/khyla-shadowsong/head.svg"
  55000. }
  55001. },
  55002. },
  55003. [
  55004. {
  55005. name: "Micro",
  55006. height: math.unit(6, "inches")
  55007. },
  55008. {
  55009. name: "Normal",
  55010. height: math.unit(8, "feet"),
  55011. default: true
  55012. },
  55013. ]
  55014. ))
  55015. characterMakers.push(() => makeCharacter(
  55016. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55017. {
  55018. hyperFront: {
  55019. height: math.unit(9 + 4/12, "feet"),
  55020. weight: math.unit(2000, "lb"),
  55021. name: "Front",
  55022. image: {
  55023. source: "./media/characters/tiden/hyper-front.svg",
  55024. extra: 400/382,
  55025. bottom: 6/406
  55026. },
  55027. form: "hyper",
  55028. },
  55029. regularFront: {
  55030. height: math.unit(7 + 10/12, "feet"),
  55031. weight: math.unit(470, "lb"),
  55032. name: "Front",
  55033. image: {
  55034. source: "./media/characters/tiden/regular-front.svg",
  55035. extra: 468/442,
  55036. bottom: 6/474
  55037. },
  55038. form: "regular",
  55039. },
  55040. },
  55041. [
  55042. {
  55043. name: "Normal",
  55044. height: math.unit(9 + 4/12, "feet"),
  55045. default: true,
  55046. form: "hyper"
  55047. },
  55048. {
  55049. name: "Normal",
  55050. height: math.unit(7 + 10/12, "feet"),
  55051. default: true,
  55052. form: "regular"
  55053. },
  55054. ],
  55055. {
  55056. "hyper": {
  55057. name: "Hyper",
  55058. default: true
  55059. },
  55060. "regular": {
  55061. name: "Regular",
  55062. },
  55063. }
  55064. ))
  55065. characterMakers.push(() => makeCharacter(
  55066. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55067. {
  55068. side: {
  55069. height: math.unit(6, "feet"),
  55070. weight: math.unit(150, "lb"),
  55071. name: "Side",
  55072. image: {
  55073. source: "./media/characters/jason-crowe/side.svg",
  55074. extra: 1771/766,
  55075. bottom: 219/1990
  55076. }
  55077. },
  55078. },
  55079. [
  55080. {
  55081. name: "Pocket Gryphon",
  55082. height: math.unit(6, "cm")
  55083. },
  55084. {
  55085. name: "Raven",
  55086. height: math.unit(60, "cm")
  55087. },
  55088. {
  55089. name: "Normal",
  55090. height: math.unit(1, "meter"),
  55091. default: true
  55092. },
  55093. ]
  55094. ))
  55095. characterMakers.push(() => makeCharacter(
  55096. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55097. {
  55098. front: {
  55099. height: math.unit(9 + 6/12, "feet"),
  55100. weight: math.unit(1100, "lb"),
  55101. name: "Front",
  55102. image: {
  55103. source: "./media/characters/django/front.svg",
  55104. extra: 1231/1136,
  55105. bottom: 34/1265
  55106. }
  55107. },
  55108. side: {
  55109. height: math.unit(9 + 6/12, "feet"),
  55110. weight: math.unit(1100, "lb"),
  55111. name: "Side",
  55112. image: {
  55113. source: "./media/characters/django/side.svg",
  55114. extra: 1267/1174,
  55115. bottom: 9/1276
  55116. }
  55117. },
  55118. },
  55119. [
  55120. {
  55121. name: "Normal",
  55122. height: math.unit(9 + 6/12, "feet"),
  55123. default: true
  55124. },
  55125. {
  55126. name: "Macro 1",
  55127. height: math.unit(50, "feet")
  55128. },
  55129. {
  55130. name: "Macro 2",
  55131. height: math.unit(500, "feet")
  55132. },
  55133. {
  55134. name: "Mega Macro",
  55135. height: math.unit(5300, "feet")
  55136. },
  55137. ]
  55138. ))
  55139. characterMakers.push(() => makeCharacter(
  55140. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55141. {
  55142. frontSfw: {
  55143. height: math.unit(120, "cm"),
  55144. weight: math.unit(15, "kg"),
  55145. name: "Front (SFW)",
  55146. image: {
  55147. source: "./media/characters/eri/front-sfw.svg",
  55148. extra: 1014/939,
  55149. bottom: 37/1051
  55150. },
  55151. form: "moth",
  55152. },
  55153. frontNsfw: {
  55154. height: math.unit(120, "cm"),
  55155. weight: math.unit(15, "kg"),
  55156. name: "Front (NSFW)",
  55157. image: {
  55158. source: "./media/characters/eri/front-nsfw.svg",
  55159. extra: 1014/939,
  55160. bottom: 37/1051
  55161. },
  55162. form: "moth",
  55163. default: true
  55164. },
  55165. egg: {
  55166. height: math.unit(10, "cm"),
  55167. name: "Egg",
  55168. image: {
  55169. source: "./media/characters/eri/egg.svg"
  55170. },
  55171. form: "egg",
  55172. default: true
  55173. },
  55174. },
  55175. [
  55176. {
  55177. name: "Normal",
  55178. height: math.unit(120, "cm"),
  55179. default: true,
  55180. form: "moth"
  55181. },
  55182. {
  55183. name: "Normal",
  55184. height: math.unit(10, "cm"),
  55185. default: true,
  55186. form: "egg"
  55187. },
  55188. ],
  55189. {
  55190. "moth": {
  55191. name: "Moth",
  55192. default: true
  55193. },
  55194. "egg": {
  55195. name: "Egg",
  55196. },
  55197. }
  55198. ))
  55199. characterMakers.push(() => makeCharacter(
  55200. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55201. {
  55202. front: {
  55203. height: math.unit(200, "feet"),
  55204. name: "Front",
  55205. image: {
  55206. source: "./media/characters/bishop-dowser/front.svg",
  55207. extra: 933/868,
  55208. bottom: 106/1039
  55209. }
  55210. },
  55211. },
  55212. [
  55213. {
  55214. name: "Giant",
  55215. height: math.unit(200, "feet"),
  55216. default: true
  55217. },
  55218. ]
  55219. ))
  55220. characterMakers.push(() => makeCharacter(
  55221. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55222. {
  55223. front: {
  55224. height: math.unit(2, "meters"),
  55225. preyCapacity: math.unit(3, "people"),
  55226. name: "Front",
  55227. image: {
  55228. source: "./media/characters/fryra/front.svg",
  55229. extra: 1025/948,
  55230. bottom: 30/1055
  55231. },
  55232. extraAttributes: {
  55233. "breastVolume": {
  55234. name: "Breast Volume",
  55235. power: 3,
  55236. type: "volume",
  55237. base: math.unit(8, "liters")
  55238. },
  55239. }
  55240. },
  55241. back: {
  55242. height: math.unit(2, "meters"),
  55243. preyCapacity: math.unit(3, "people"),
  55244. name: "Back",
  55245. image: {
  55246. source: "./media/characters/fryra/back.svg",
  55247. extra: 993/938,
  55248. bottom: 38/1031
  55249. },
  55250. extraAttributes: {
  55251. "breastVolume": {
  55252. name: "Breast Volume",
  55253. power: 3,
  55254. type: "volume",
  55255. base: math.unit(8, "liters")
  55256. },
  55257. }
  55258. },
  55259. head: {
  55260. height: math.unit(1.33, "feet"),
  55261. name: "Head",
  55262. image: {
  55263. source: "./media/characters/fryra/head.svg"
  55264. }
  55265. },
  55266. maw: {
  55267. height: math.unit(0.56, "feet"),
  55268. name: "Maw",
  55269. image: {
  55270. source: "./media/characters/fryra/maw.svg"
  55271. }
  55272. },
  55273. },
  55274. [
  55275. {
  55276. name: "Micro",
  55277. height: math.unit(5, "cm")
  55278. },
  55279. {
  55280. name: "Normal",
  55281. height: math.unit(2, "meters"),
  55282. default: true
  55283. },
  55284. {
  55285. name: "Small Macro",
  55286. height: math.unit(8, "meters")
  55287. },
  55288. {
  55289. name: "Macro",
  55290. height: math.unit(50, "meters")
  55291. },
  55292. {
  55293. name: "Megamacro",
  55294. height: math.unit(1, "km")
  55295. },
  55296. {
  55297. name: "Planetary",
  55298. height: math.unit(300000, "km")
  55299. },
  55300. {
  55301. name: "Universal",
  55302. height: math.unit(250, "lightyears")
  55303. },
  55304. {
  55305. name: "Fabric of Reality",
  55306. height: math.unit(1000, "multiverses")
  55307. },
  55308. ]
  55309. ))
  55310. characterMakers.push(() => makeCharacter(
  55311. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55312. {
  55313. frontDressed: {
  55314. height: math.unit(6 + 2/12, "feet"),
  55315. name: "Front (Dressed)",
  55316. image: {
  55317. source: "./media/characters/fiera/front-dressed.svg",
  55318. extra: 1883/1793,
  55319. bottom: 70/1953
  55320. }
  55321. },
  55322. backDressed: {
  55323. height: math.unit(6 + 2/12, "feet"),
  55324. name: "Back (Dressed)",
  55325. image: {
  55326. source: "./media/characters/fiera/back-dressed.svg",
  55327. extra: 1847/1780,
  55328. bottom: 70/1917
  55329. }
  55330. },
  55331. frontNude: {
  55332. height: math.unit(6 + 2/12, "feet"),
  55333. name: "Front (Nude)",
  55334. image: {
  55335. source: "./media/characters/fiera/front-nude.svg",
  55336. extra: 1875/1785,
  55337. bottom: 66/1941
  55338. }
  55339. },
  55340. backNude: {
  55341. height: math.unit(6 + 2/12, "feet"),
  55342. name: "Back (Nude)",
  55343. image: {
  55344. source: "./media/characters/fiera/back-nude.svg",
  55345. extra: 1855/1788,
  55346. bottom: 44/1899
  55347. }
  55348. },
  55349. maw: {
  55350. height: math.unit(1.3, "feet"),
  55351. name: "Maw",
  55352. image: {
  55353. source: "./media/characters/fiera/maw.svg"
  55354. }
  55355. },
  55356. paw: {
  55357. height: math.unit(1, "feet"),
  55358. name: "Paw",
  55359. image: {
  55360. source: "./media/characters/fiera/paw.svg"
  55361. }
  55362. },
  55363. shoe: {
  55364. height: math.unit(1.05, "feet"),
  55365. name: "Shoe",
  55366. image: {
  55367. source: "./media/characters/fiera/shoe.svg"
  55368. }
  55369. },
  55370. },
  55371. [
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(6 + 2/12, "feet"),
  55375. default: true
  55376. },
  55377. {
  55378. name: "Size Difference",
  55379. height: math.unit(13, "feet")
  55380. },
  55381. {
  55382. name: "Macro",
  55383. height: math.unit(60, "feet")
  55384. },
  55385. {
  55386. name: "Mega Macro",
  55387. height: math.unit(200, "feet")
  55388. },
  55389. ]
  55390. ))
  55391. characterMakers.push(() => makeCharacter(
  55392. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55393. {
  55394. back: {
  55395. height: math.unit(6, "feet"),
  55396. name: "Back",
  55397. image: {
  55398. source: "./media/characters/flare/back.svg",
  55399. extra: 1883/1765,
  55400. bottom: 32/1915
  55401. }
  55402. },
  55403. },
  55404. [
  55405. {
  55406. name: "Normal",
  55407. height: math.unit(6 + 2/12, "feet"),
  55408. default: true
  55409. },
  55410. {
  55411. name: "Size Difference",
  55412. height: math.unit(13, "feet")
  55413. },
  55414. {
  55415. name: "Macro",
  55416. height: math.unit(60, "feet")
  55417. },
  55418. {
  55419. name: "Macro 2",
  55420. height: math.unit(100, "feet")
  55421. },
  55422. {
  55423. name: "Mega Macro",
  55424. height: math.unit(200, "feet")
  55425. },
  55426. ]
  55427. ))
  55428. characterMakers.push(() => makeCharacter(
  55429. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55430. {
  55431. front: {
  55432. height: math.unit(2.2, "m"),
  55433. weight: math.unit(300, "kg"),
  55434. name: "Front",
  55435. image: {
  55436. source: "./media/characters/hanna/front.svg",
  55437. extra: 1696/1502,
  55438. bottom: 206/1902
  55439. }
  55440. },
  55441. },
  55442. [
  55443. {
  55444. name: "Humanoid",
  55445. height: math.unit(2.2, "meters")
  55446. },
  55447. {
  55448. name: "Normal",
  55449. height: math.unit(4.8, "meters"),
  55450. default: true
  55451. },
  55452. ]
  55453. ))
  55454. characterMakers.push(() => makeCharacter(
  55455. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55456. {
  55457. front: {
  55458. height: math.unit(2.8, "meters"),
  55459. name: "Front",
  55460. image: {
  55461. source: "./media/characters/argo/front.svg",
  55462. extra: 731/518,
  55463. bottom: 84/815
  55464. }
  55465. },
  55466. },
  55467. [
  55468. {
  55469. name: "Normal",
  55470. height: math.unit(3, "meters"),
  55471. default: true
  55472. },
  55473. ]
  55474. ))
  55475. characterMakers.push(() => makeCharacter(
  55476. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55477. {
  55478. side: {
  55479. height: math.unit(3.8, "meters"),
  55480. name: "Side",
  55481. image: {
  55482. source: "./media/characters/sybil/side.svg",
  55483. extra: 382/361,
  55484. bottom: 25/407
  55485. }
  55486. },
  55487. },
  55488. [
  55489. {
  55490. name: "Normal",
  55491. height: math.unit(3.8, "meters"),
  55492. default: true
  55493. },
  55494. ]
  55495. ))
  55496. characterMakers.push(() => makeCharacter(
  55497. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55498. {
  55499. side: {
  55500. height: math.unit(6, "meters"),
  55501. name: "Side",
  55502. image: {
  55503. source: "./media/characters/plum/side.svg",
  55504. extra: 858/755,
  55505. bottom: 45/903
  55506. },
  55507. form: "taur",
  55508. default: true
  55509. },
  55510. back: {
  55511. height: math.unit(6.3, "meters"),
  55512. name: "Back",
  55513. image: {
  55514. source: "./media/characters/plum/back.svg",
  55515. extra: 887/813,
  55516. bottom: 32/919
  55517. },
  55518. form: "taur",
  55519. },
  55520. feral: {
  55521. height: math.unit(5.5, "meter"),
  55522. name: "Front",
  55523. image: {
  55524. source: "./media/characters/plum/feral.svg",
  55525. extra: 568/403,
  55526. bottom: 51/619
  55527. },
  55528. form: "feral",
  55529. default: true
  55530. },
  55531. head: {
  55532. height: math.unit(1.46, "meter"),
  55533. name: "Head",
  55534. image: {
  55535. source: "./media/characters/plum/head.svg"
  55536. },
  55537. form: "taur"
  55538. },
  55539. tailTop: {
  55540. height: math.unit(5.6, "meter"),
  55541. name: "Tail (Top)",
  55542. image: {
  55543. source: "./media/characters/plum/tail-top.svg"
  55544. },
  55545. form: "taur",
  55546. },
  55547. tailBottom: {
  55548. height: math.unit(5.6, "meter"),
  55549. name: "Tail (Bottom)",
  55550. image: {
  55551. source: "./media/characters/plum/tail-bottom.svg"
  55552. },
  55553. form: "taur",
  55554. },
  55555. feralHead: {
  55556. height: math.unit(2.56549521, "meter"),
  55557. name: "Head",
  55558. image: {
  55559. source: "./media/characters/plum/head.svg"
  55560. },
  55561. form: "feral"
  55562. },
  55563. feralTailTop: {
  55564. height: math.unit(5.44728435, "meter"),
  55565. name: "Tail (Top)",
  55566. image: {
  55567. source: "./media/characters/plum/tail-top.svg"
  55568. },
  55569. form: "feral",
  55570. },
  55571. feralTailBottom: {
  55572. height: math.unit(5.44728435, "meter"),
  55573. name: "Tail (Bottom)",
  55574. image: {
  55575. source: "./media/characters/plum/tail-bottom.svg"
  55576. },
  55577. form: "feral",
  55578. },
  55579. },
  55580. [
  55581. {
  55582. name: "Normal",
  55583. height: math.unit(6, "meters"),
  55584. default: true,
  55585. form: "taur"
  55586. },
  55587. {
  55588. name: "Normal",
  55589. height: math.unit(5.5, "meters"),
  55590. default: true,
  55591. form: "feral"
  55592. },
  55593. ],
  55594. {
  55595. "taur": {
  55596. name: "Taur",
  55597. default: true
  55598. },
  55599. "feral": {
  55600. name: "Feral",
  55601. },
  55602. }
  55603. ))
  55604. characterMakers.push(() => makeCharacter(
  55605. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55606. {
  55607. front: {
  55608. height: math.unit(6, "feet"),
  55609. weight: math.unit(115, "lb"),
  55610. name: "Front",
  55611. image: {
  55612. source: "./media/characters/celeste-kitsune/front.svg",
  55613. extra: 393/366,
  55614. bottom: 7/400
  55615. }
  55616. },
  55617. side: {
  55618. height: math.unit(6, "feet"),
  55619. weight: math.unit(115, "lb"),
  55620. name: "Side",
  55621. image: {
  55622. source: "./media/characters/celeste-kitsune/side.svg",
  55623. extra: 818/765,
  55624. bottom: 40/858
  55625. }
  55626. },
  55627. },
  55628. [
  55629. {
  55630. name: "Megamacro",
  55631. height: math.unit(1500, "miles"),
  55632. default: true
  55633. },
  55634. ]
  55635. ))
  55636. characterMakers.push(() => makeCharacter(
  55637. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55638. {
  55639. front: {
  55640. height: math.unit(8, "meters"),
  55641. name: "Front",
  55642. image: {
  55643. source: "./media/characters/io/front.svg",
  55644. extra: 865/722,
  55645. bottom: 58/923
  55646. }
  55647. },
  55648. back: {
  55649. height: math.unit(8, "meters"),
  55650. name: "Back",
  55651. image: {
  55652. source: "./media/characters/io/back.svg",
  55653. extra: 920/776,
  55654. bottom: 42/962
  55655. }
  55656. },
  55657. head: {
  55658. height: math.unit(5.09, "meters"),
  55659. name: "Head",
  55660. image: {
  55661. source: "./media/characters/io/head.svg"
  55662. }
  55663. },
  55664. hand: {
  55665. height: math.unit(1.6, "meters"),
  55666. name: "Hand",
  55667. image: {
  55668. source: "./media/characters/io/hand.svg"
  55669. }
  55670. },
  55671. foot: {
  55672. height: math.unit(2.4, "meters"),
  55673. name: "Foot",
  55674. image: {
  55675. source: "./media/characters/io/foot.svg"
  55676. }
  55677. },
  55678. },
  55679. [
  55680. {
  55681. name: "Normal",
  55682. height: math.unit(8, "meters"),
  55683. default: true
  55684. },
  55685. ]
  55686. ))
  55687. characterMakers.push(() => makeCharacter(
  55688. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55689. {
  55690. side: {
  55691. height: math.unit(6 + 3/12, "feet"),
  55692. weight: math.unit(225, "lb"),
  55693. name: "Side",
  55694. image: {
  55695. source: "./media/characters/silas/side.svg",
  55696. extra: 703/653,
  55697. bottom: 23/726
  55698. },
  55699. extraAttributes: {
  55700. "pawLength": {
  55701. name: "Paw Length",
  55702. power: 1,
  55703. type: "length",
  55704. base: math.unit(12, "inches")
  55705. },
  55706. "pawWidth": {
  55707. name: "Paw Width",
  55708. power: 1,
  55709. type: "length",
  55710. base: math.unit(4.5, "inches")
  55711. },
  55712. "pawArea": {
  55713. name: "Paw Area",
  55714. power: 2,
  55715. type: "area",
  55716. base: math.unit(12 * 4.5, "inches^2")
  55717. },
  55718. }
  55719. },
  55720. },
  55721. [
  55722. {
  55723. name: "Normal",
  55724. height: math.unit(6 + 3/12, "feet"),
  55725. default: true
  55726. },
  55727. ]
  55728. ))
  55729. characterMakers.push(() => makeCharacter(
  55730. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55731. {
  55732. back: {
  55733. height: math.unit(1.6, "meters"),
  55734. weight: math.unit(150, "lb"),
  55735. name: "Back",
  55736. image: {
  55737. source: "./media/characters/zari/back.svg",
  55738. extra: 424/411,
  55739. bottom: 32/456
  55740. },
  55741. extraAttributes: {
  55742. "bladderCapacity": {
  55743. name: "Bladder Size",
  55744. power: 3,
  55745. type: "volume",
  55746. base: math.unit(500, "mL")
  55747. },
  55748. "bladderFlow": {
  55749. name: "Flow Rate",
  55750. power: 3,
  55751. type: "volume",
  55752. base: math.unit(25, "mL")
  55753. },
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Normal",
  55760. height: math.unit(1.6, "meters"),
  55761. default: true
  55762. },
  55763. ]
  55764. ))
  55765. characterMakers.push(() => makeCharacter(
  55766. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55767. {
  55768. front: {
  55769. height: math.unit(25, "feet"),
  55770. weight: math.unit(5, "tons"),
  55771. name: "Front",
  55772. image: {
  55773. source: "./media/characters/charlie-human/front.svg",
  55774. extra: 1870/1740,
  55775. bottom: 102/1972
  55776. },
  55777. extraAttributes: {
  55778. "dickLength": {
  55779. name: "Dick Length",
  55780. power: 1,
  55781. type: "length",
  55782. base: math.unit(9, "feet")
  55783. },
  55784. }
  55785. },
  55786. back: {
  55787. height: math.unit(25, "feet"),
  55788. weight: math.unit(5, "tons"),
  55789. name: "Back",
  55790. image: {
  55791. source: "./media/characters/charlie-human/back.svg",
  55792. extra: 1858/1733,
  55793. bottom: 105/1963
  55794. },
  55795. extraAttributes: {
  55796. "dickLength": {
  55797. name: "Dick Length",
  55798. power: 1,
  55799. type: "length",
  55800. base: math.unit(9, "feet")
  55801. },
  55802. }
  55803. },
  55804. },
  55805. [
  55806. {
  55807. name: "\"Normal\"",
  55808. height: math.unit(6 + 4/12, "feet")
  55809. },
  55810. {
  55811. name: "Big",
  55812. height: math.unit(25, "feet"),
  55813. default: true
  55814. },
  55815. ]
  55816. ))
  55817. characterMakers.push(() => makeCharacter(
  55818. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55819. {
  55820. front: {
  55821. height: math.unit(6 + 4/12, "feet"),
  55822. weight: math.unit(320, "lb"),
  55823. name: "Front",
  55824. image: {
  55825. source: "./media/characters/ookitsu/front.svg",
  55826. extra: 1160/976,
  55827. bottom: 38/1198
  55828. }
  55829. },
  55830. frontNsfw: {
  55831. height: math.unit(6 + 4/12, "feet"),
  55832. weight: math.unit(320, "lb"),
  55833. name: "Front (NSFW)",
  55834. image: {
  55835. source: "./media/characters/ookitsu/front-nsfw.svg",
  55836. extra: 1160/976,
  55837. bottom: 38/1198
  55838. }
  55839. },
  55840. back: {
  55841. height: math.unit(6 + 4/12, "feet"),
  55842. weight: math.unit(320, "lb"),
  55843. name: "Back",
  55844. image: {
  55845. source: "./media/characters/ookitsu/back.svg",
  55846. extra: 1030/975,
  55847. bottom: 70/1100
  55848. }
  55849. },
  55850. head: {
  55851. height: math.unit(1.79, "feet"),
  55852. name: "Head",
  55853. image: {
  55854. source: "./media/characters/ookitsu/head.svg"
  55855. }
  55856. },
  55857. hand: {
  55858. height: math.unit(0.92, "feet"),
  55859. name: "Hand",
  55860. image: {
  55861. source: "./media/characters/ookitsu/hand.svg"
  55862. }
  55863. },
  55864. tails: {
  55865. height: math.unit(3.3, "feet"),
  55866. name: "Tails",
  55867. image: {
  55868. source: "./media/characters/ookitsu/tails.svg"
  55869. }
  55870. },
  55871. dick: {
  55872. height: math.unit(1.10833, "feet"),
  55873. name: "Dick",
  55874. image: {
  55875. source: "./media/characters/ookitsu/dick.svg"
  55876. }
  55877. },
  55878. },
  55879. [
  55880. {
  55881. name: "Normal",
  55882. height: math.unit(6 + 4/12, "feet"),
  55883. default: true
  55884. },
  55885. {
  55886. name: "Macro",
  55887. height: math.unit(30, "feet")
  55888. },
  55889. ]
  55890. ))
  55891. characterMakers.push(() => makeCharacter(
  55892. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55893. {
  55894. anthroFront: {
  55895. height: math.unit(6, "feet"),
  55896. weight: math.unit(250, "lb"),
  55897. name: "Front",
  55898. image: {
  55899. source: "./media/characters/jhusky/anthro-front.svg",
  55900. extra: 474/439,
  55901. bottom: 7/481
  55902. },
  55903. form: "anthro",
  55904. default: true
  55905. },
  55906. taurSideSfw: {
  55907. height: math.unit(6 + 4/12, "feet"),
  55908. weight: math.unit(500, "lb"),
  55909. name: "Side (SFW)",
  55910. image: {
  55911. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55912. extra: 1741/1629,
  55913. bottom: 196/1937
  55914. },
  55915. form: "taur",
  55916. default: true
  55917. },
  55918. taurSideNsfw: {
  55919. height: math.unit(6 + 4/12, "feet"),
  55920. weight: math.unit(500, "lb"),
  55921. name: "Taur (NSFW)",
  55922. image: {
  55923. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55924. extra: 1741/1629,
  55925. bottom: 196/1937
  55926. },
  55927. form: "taur",
  55928. },
  55929. },
  55930. [
  55931. {
  55932. name: "Huge",
  55933. height: math.unit(500, "feet"),
  55934. form: "anthro"
  55935. },
  55936. {
  55937. name: "Macro",
  55938. height: math.unit(1000, "feet"),
  55939. default: true,
  55940. form: "anthro"
  55941. },
  55942. {
  55943. name: "Megamacro",
  55944. height: math.unit(10000, "feet"),
  55945. form: "anthro"
  55946. },
  55947. {
  55948. name: "Huge",
  55949. height: math.unit(528, "feet"),
  55950. form: "taur"
  55951. },
  55952. {
  55953. name: "Macro",
  55954. height: math.unit(1056, "feet"),
  55955. default: true,
  55956. form: "taur"
  55957. },
  55958. {
  55959. name: "Megamacro",
  55960. height: math.unit(10556, "feet"),
  55961. form: "taur"
  55962. },
  55963. ],
  55964. {
  55965. "anthro": {
  55966. name: "Anthro",
  55967. default: true
  55968. },
  55969. "taur": {
  55970. name: "Taur",
  55971. },
  55972. }
  55973. ))
  55974. characterMakers.push(() => makeCharacter(
  55975. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55976. {
  55977. front: {
  55978. height: math.unit(8, "feet"),
  55979. weight: math.unit(500, "lb"),
  55980. name: "Front",
  55981. image: {
  55982. source: "./media/characters/armail/front.svg",
  55983. extra: 1753/1669,
  55984. bottom: 155/1908
  55985. }
  55986. },
  55987. back: {
  55988. height: math.unit(8, "feet"),
  55989. weight: math.unit(500, "lb"),
  55990. name: "Back",
  55991. image: {
  55992. source: "./media/characters/armail/back.svg",
  55993. extra: 1872/1803,
  55994. bottom: 63/1935
  55995. }
  55996. },
  55997. },
  55998. [
  55999. {
  56000. name: "Micro",
  56001. height: math.unit(0.25, "feet")
  56002. },
  56003. {
  56004. name: "Normal",
  56005. height: math.unit(8, "feet"),
  56006. default: true
  56007. },
  56008. {
  56009. name: "Mini-macro",
  56010. height: math.unit(30, "feet")
  56011. },
  56012. {
  56013. name: "Macro",
  56014. height: math.unit(400, "feet")
  56015. },
  56016. {
  56017. name: "Mega-macro",
  56018. height: math.unit(6000, "feet")
  56019. },
  56020. ]
  56021. ))
  56022. characterMakers.push(() => makeCharacter(
  56023. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56024. {
  56025. front: {
  56026. height: math.unit(6 + 7/12, "feet"),
  56027. weight: math.unit(210, "lb"),
  56028. name: "Front",
  56029. image: {
  56030. source: "./media/characters/wilfred-t-buxton/front.svg",
  56031. extra: 1068/882,
  56032. bottom: 28/1096
  56033. }
  56034. },
  56035. },
  56036. [
  56037. {
  56038. name: "Normal",
  56039. height: math.unit(6 + 7/12, "feet"),
  56040. default: true
  56041. },
  56042. ]
  56043. ))
  56044. characterMakers.push(() => makeCharacter(
  56045. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56046. {
  56047. front: {
  56048. height: math.unit(5 + 2/12, "feet"),
  56049. weight: math.unit(120, "lb"),
  56050. name: "Front",
  56051. image: {
  56052. source: "./media/characters/leighton-marrow/front.svg",
  56053. extra: 441/409,
  56054. bottom: 37/478
  56055. }
  56056. },
  56057. },
  56058. [
  56059. {
  56060. name: "Normal",
  56061. height: math.unit(5 + 2/12, "feet"),
  56062. default: true
  56063. },
  56064. ]
  56065. ))
  56066. characterMakers.push(() => makeCharacter(
  56067. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56068. {
  56069. front: {
  56070. height: math.unit(4, "meters"),
  56071. weight: math.unit(1200, "kg"),
  56072. name: "Front",
  56073. image: {
  56074. source: "./media/characters/licos/front.svg",
  56075. extra: 1727/1604,
  56076. bottom: 101/1828
  56077. },
  56078. form: "anthro",
  56079. default: true
  56080. },
  56081. taur_side: {
  56082. height: math.unit(20, "meters"),
  56083. weight: math.unit(1100000, "kg"),
  56084. name: "Side",
  56085. image: {
  56086. source: "./media/characters/licos/taur.svg",
  56087. extra: 1158/1091,
  56088. bottom: 80/1238
  56089. },
  56090. form: "taur",
  56091. default: true
  56092. },
  56093. },
  56094. [
  56095. {
  56096. name: "Normal",
  56097. height: math.unit(4, "meters"),
  56098. default: true,
  56099. form: "anthro"
  56100. },
  56101. {
  56102. name: "Normal",
  56103. height: math.unit(20, "meters"),
  56104. default: true,
  56105. form: "taur"
  56106. },
  56107. ],
  56108. {
  56109. "anthro": {
  56110. name: "Anthro",
  56111. default: true
  56112. },
  56113. "taur": {
  56114. name: "Taur",
  56115. },
  56116. }
  56117. ))
  56118. characterMakers.push(() => makeCharacter(
  56119. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56120. {
  56121. front: {
  56122. height: math.unit(10 + 3/12, "feet"),
  56123. name: "Front",
  56124. image: {
  56125. source: "./media/characters/theo-monkey/front.svg",
  56126. extra: 1735/1658,
  56127. bottom: 73/1808
  56128. }
  56129. },
  56130. back: {
  56131. height: math.unit(10 + 3/12, "feet"),
  56132. name: "Back",
  56133. image: {
  56134. source: "./media/characters/theo-monkey/back.svg",
  56135. extra: 1742/1664,
  56136. bottom: 33/1775
  56137. }
  56138. },
  56139. head: {
  56140. height: math.unit(2.29, "feet"),
  56141. name: "Head",
  56142. image: {
  56143. source: "./media/characters/theo-monkey/head.svg"
  56144. }
  56145. },
  56146. handPalm: {
  56147. height: math.unit(1.73, "feet"),
  56148. name: "Hand (Palm)",
  56149. image: {
  56150. source: "./media/characters/theo-monkey/hand-palm.svg"
  56151. }
  56152. },
  56153. handBack: {
  56154. height: math.unit(1.63, "feet"),
  56155. name: "Hand (Back)",
  56156. image: {
  56157. source: "./media/characters/theo-monkey/hand-back.svg"
  56158. }
  56159. },
  56160. footSole: {
  56161. height: math.unit(2.15, "feet"),
  56162. name: "Foot (Sole)",
  56163. image: {
  56164. source: "./media/characters/theo-monkey/foot-sole.svg"
  56165. }
  56166. },
  56167. footSide: {
  56168. height: math.unit(1.6, "feet"),
  56169. name: "Foot (Side)",
  56170. image: {
  56171. source: "./media/characters/theo-monkey/foot-side.svg"
  56172. }
  56173. },
  56174. },
  56175. [
  56176. {
  56177. name: "Normal",
  56178. height: math.unit(10 + 3/12, "feet"),
  56179. default: true
  56180. },
  56181. ]
  56182. ))
  56183. characterMakers.push(() => makeCharacter(
  56184. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56185. {
  56186. front: {
  56187. height: math.unit(11, "feet"),
  56188. weight: math.unit(3000, "lb"),
  56189. preyCapacity: math.unit(10, "people"),
  56190. name: "Front",
  56191. image: {
  56192. source: "./media/characters/brook/front.svg",
  56193. extra: 909/835,
  56194. bottom: 108/1017
  56195. }
  56196. },
  56197. back: {
  56198. height: math.unit(11, "feet"),
  56199. weight: math.unit(3000, "lb"),
  56200. preyCapacity: math.unit(10, "people"),
  56201. name: "Back",
  56202. image: {
  56203. source: "./media/characters/brook/back.svg",
  56204. extra: 976/916,
  56205. bottom: 34/1010
  56206. }
  56207. },
  56208. backAlt: {
  56209. height: math.unit(11, "feet"),
  56210. weight: math.unit(3000, "lb"),
  56211. preyCapacity: math.unit(10, "people"),
  56212. name: "Back (Alt)",
  56213. image: {
  56214. source: "./media/characters/brook/back-alt.svg",
  56215. extra: 1283/1213,
  56216. bottom: 35/1318
  56217. }
  56218. },
  56219. bust: {
  56220. height: math.unit(9.0859030837, "feet"),
  56221. weight: math.unit(3000, "lb"),
  56222. preyCapacity: math.unit(10, "people"),
  56223. name: "Bust",
  56224. image: {
  56225. source: "./media/characters/brook/bust.svg",
  56226. extra: 2043/1923,
  56227. bottom: 0/2043
  56228. }
  56229. },
  56230. },
  56231. [
  56232. {
  56233. name: "Small",
  56234. height: math.unit(11, "feet"),
  56235. default: true
  56236. },
  56237. {
  56238. name: "Towering",
  56239. height: math.unit(5, "km")
  56240. },
  56241. {
  56242. name: "Enormous",
  56243. height: math.unit(25, "earths")
  56244. },
  56245. ]
  56246. ))
  56247. characterMakers.push(() => makeCharacter(
  56248. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56249. {
  56250. front: {
  56251. height: math.unit(4, "feet"),
  56252. weight: math.unit(150, "lb"),
  56253. name: "Front",
  56254. image: {
  56255. source: "./media/characters/squishi/front.svg",
  56256. extra: 1428/1271,
  56257. bottom: 30/1458
  56258. },
  56259. extraAttributes: {
  56260. "pawSize": {
  56261. name: "Paw Size",
  56262. power: 1,
  56263. type: "length",
  56264. base: math.unit(14, "ShoeSizeMensUS"),
  56265. defaultUnit: "ShoeSizeMensUS"
  56266. },
  56267. }
  56268. },
  56269. side: {
  56270. height: math.unit(4, "feet"),
  56271. weight: math.unit(150, "lb"),
  56272. name: "Side",
  56273. image: {
  56274. source: "./media/characters/squishi/side.svg",
  56275. extra: 1428/1271,
  56276. bottom: 30/1458
  56277. },
  56278. extraAttributes: {
  56279. "pawSize": {
  56280. name: "Paw Size",
  56281. power: 1,
  56282. type: "length",
  56283. base: math.unit(14, "ShoeSizeMensUS"),
  56284. defaultUnit: "ShoeSizeMensUS"
  56285. },
  56286. }
  56287. },
  56288. back: {
  56289. height: math.unit(4, "feet"),
  56290. weight: math.unit(150, "lb"),
  56291. name: "Back",
  56292. image: {
  56293. source: "./media/characters/squishi/back.svg",
  56294. extra: 1428/1271,
  56295. bottom: 30/1458
  56296. },
  56297. extraAttributes: {
  56298. "pawSize": {
  56299. name: "Paw Size",
  56300. power: 1,
  56301. type: "length",
  56302. base: math.unit(14, "ShoeSizeMensUS"),
  56303. defaultUnit: "ShoeSizeMensUS"
  56304. },
  56305. }
  56306. },
  56307. },
  56308. [
  56309. {
  56310. name: "Normal",
  56311. height: math.unit(4, "feet"),
  56312. default: true
  56313. },
  56314. ]
  56315. ))
  56316. characterMakers.push(() => makeCharacter(
  56317. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56318. {
  56319. front: {
  56320. height: math.unit(7 + 8/12, "feet"),
  56321. weight: math.unit(333, "lb"),
  56322. name: "Front",
  56323. image: {
  56324. source: "./media/characters/vincent-vasroc/front.svg",
  56325. extra: 1962/1860,
  56326. bottom: 41/2003
  56327. }
  56328. },
  56329. back: {
  56330. height: math.unit(7 + 8/12, "feet"),
  56331. weight: math.unit(333, "lb"),
  56332. name: "Back",
  56333. image: {
  56334. source: "./media/characters/vincent-vasroc/back.svg",
  56335. extra: 1952/1815,
  56336. bottom: 33/1985
  56337. }
  56338. },
  56339. paw: {
  56340. height: math.unit(1.24, "feet"),
  56341. name: "Paw",
  56342. image: {
  56343. source: "./media/characters/vincent-vasroc/paw.svg"
  56344. }
  56345. },
  56346. ear: {
  56347. height: math.unit(0.75, "feet"),
  56348. name: "Ear",
  56349. image: {
  56350. source: "./media/characters/vincent-vasroc/ear.svg"
  56351. }
  56352. },
  56353. },
  56354. [
  56355. {
  56356. name: "Nano",
  56357. height: math.unit(92, "micrometers")
  56358. },
  56359. {
  56360. name: "Normal",
  56361. height: math.unit(7 + 8/12, "feet"),
  56362. default: true
  56363. },
  56364. ]
  56365. ))
  56366. characterMakers.push(() => makeCharacter(
  56367. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56368. {
  56369. frontNsfw: {
  56370. height: math.unit(40, "feet"),
  56371. weight: math.unit(58, "tons"),
  56372. name: "Front (NSFW)",
  56373. image: {
  56374. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56375. extra: 1265/965,
  56376. bottom: 155/1420
  56377. }
  56378. },
  56379. frontSfw: {
  56380. height: math.unit(40, "feet"),
  56381. weight: math.unit(58, "tons"),
  56382. name: "Front (SFW)",
  56383. image: {
  56384. source: "./media/characters/ru-kahn/front-sfw.svg",
  56385. extra: 1265/965,
  56386. bottom: 80/1345
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Small",
  56393. height: math.unit(4, "feet")
  56394. },
  56395. {
  56396. name: "Normal",
  56397. height: math.unit(40, "feet"),
  56398. default: true
  56399. },
  56400. {
  56401. name: "Macro",
  56402. height: math.unit(400, "feet")
  56403. },
  56404. ]
  56405. ))
  56406. characterMakers.push(() => makeCharacter(
  56407. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56408. {
  56409. frontNude: {
  56410. height: math.unit(6 + 5/12, "feet"),
  56411. name: "Front (Nude)",
  56412. image: {
  56413. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56414. extra: 1369/1366,
  56415. bottom: 68/1437
  56416. }
  56417. },
  56418. frontDressed: {
  56419. height: math.unit(6 + 5/12, "feet"),
  56420. name: "Front (Dressed)",
  56421. image: {
  56422. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56423. extra: 1369/1366,
  56424. bottom: 68/1437
  56425. }
  56426. },
  56427. },
  56428. [
  56429. {
  56430. name: "Normal",
  56431. height: math.unit(6 + 5/12, "feet"),
  56432. default: true
  56433. },
  56434. {
  56435. name: "Maximum",
  56436. height: math.unit(1930, "feet")
  56437. },
  56438. ]
  56439. ))
  56440. characterMakers.push(() => makeCharacter(
  56441. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56442. {
  56443. front: {
  56444. height: math.unit(5 + 6/12, "feet"),
  56445. name: "Front",
  56446. image: {
  56447. source: "./media/characters/kaja/front.svg",
  56448. extra: 1874/1514,
  56449. bottom: 117/1991
  56450. }
  56451. },
  56452. },
  56453. [
  56454. {
  56455. name: "Normal",
  56456. height: math.unit(5 + 6/12, "feet"),
  56457. default: true
  56458. },
  56459. ]
  56460. ))
  56461. characterMakers.push(() => makeCharacter(
  56462. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56463. {
  56464. front: {
  56465. height: math.unit(5 + 9/12, "feet"),
  56466. weight: math.unit(200, "lb"),
  56467. name: "Front",
  56468. image: {
  56469. source: "./media/characters/mark-smith/front.svg",
  56470. extra: 1004/943,
  56471. bottom: 58/1062
  56472. }
  56473. },
  56474. back: {
  56475. height: math.unit(5 + 9/12, "feet"),
  56476. weight: math.unit(200, "lb"),
  56477. name: "Back",
  56478. image: {
  56479. source: "./media/characters/mark-smith/back.svg",
  56480. extra: 1023/953,
  56481. bottom: 24/1047
  56482. }
  56483. },
  56484. head: {
  56485. height: math.unit(1.82, "feet"),
  56486. name: "Head",
  56487. image: {
  56488. source: "./media/characters/mark-smith/head.svg"
  56489. }
  56490. },
  56491. hand: {
  56492. height: math.unit(1.4, "feet"),
  56493. name: "Hand",
  56494. image: {
  56495. source: "./media/characters/mark-smith/hand.svg"
  56496. }
  56497. },
  56498. paw: {
  56499. height: math.unit(1.69, "feet"),
  56500. name: "Paw",
  56501. image: {
  56502. source: "./media/characters/mark-smith/paw.svg"
  56503. }
  56504. },
  56505. },
  56506. [
  56507. {
  56508. name: "Micro",
  56509. height: math.unit(0.25, "inches")
  56510. },
  56511. {
  56512. name: "Normal",
  56513. height: math.unit(5 + 9/12, "feet"),
  56514. default: true
  56515. },
  56516. {
  56517. name: "Macro",
  56518. height: math.unit(500, "feet")
  56519. },
  56520. ]
  56521. ))
  56522. characterMakers.push(() => makeCharacter(
  56523. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56524. {
  56525. frontNude: {
  56526. height: math.unit(6, "feet"),
  56527. name: "Front (Nude)",
  56528. image: {
  56529. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56530. extra: 1384/1321,
  56531. bottom: 57/1441
  56532. }
  56533. },
  56534. frontDressed: {
  56535. height: math.unit(6, "feet"),
  56536. name: "Front (Dressed)",
  56537. image: {
  56538. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56539. extra: 1384/1321,
  56540. bottom: 57/1441
  56541. }
  56542. },
  56543. },
  56544. [
  56545. {
  56546. name: "Normal",
  56547. height: math.unit(6, "feet"),
  56548. default: true
  56549. },
  56550. {
  56551. name: "Maximum",
  56552. height: math.unit(1776, "feet")
  56553. },
  56554. ]
  56555. ))
  56556. characterMakers.push(() => makeCharacter(
  56557. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56558. {
  56559. front: {
  56560. height: math.unit(2 + 4/12, "feet"),
  56561. weight: math.unit(350, "lb"),
  56562. name: "Front",
  56563. image: {
  56564. source: "./media/characters/devos/front.svg",
  56565. extra: 958/852,
  56566. bottom: 143/1101
  56567. }
  56568. },
  56569. },
  56570. [
  56571. {
  56572. name: "Base",
  56573. height: math.unit(2 + 4/12, "feet"),
  56574. default: true
  56575. },
  56576. ]
  56577. ))
  56578. characterMakers.push(() => makeCharacter(
  56579. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56580. {
  56581. front: {
  56582. height: math.unit(9 + 2/12, "feet"),
  56583. name: "Front",
  56584. image: {
  56585. source: "./media/characters/hiveheart/front.svg",
  56586. extra: 394/364,
  56587. bottom: 65/459
  56588. }
  56589. },
  56590. back: {
  56591. height: math.unit(9 + 2/12, "feet"),
  56592. name: "Back",
  56593. image: {
  56594. source: "./media/characters/hiveheart/back.svg",
  56595. extra: 374/357,
  56596. bottom: 63/437
  56597. }
  56598. },
  56599. },
  56600. [
  56601. {
  56602. name: "Base",
  56603. height: math.unit(9 + 2/12, "feet"),
  56604. default: true
  56605. },
  56606. ]
  56607. ))
  56608. characterMakers.push(() => makeCharacter(
  56609. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56610. {
  56611. front: {
  56612. height: math.unit(2.5, "inches"),
  56613. weight: math.unit(0.6, "oz"),
  56614. name: "Front",
  56615. image: {
  56616. source: "./media/characters/bryn/front.svg",
  56617. extra: 1480/1205,
  56618. bottom: 27/1507
  56619. }
  56620. },
  56621. back: {
  56622. height: math.unit(2.5, "inches"),
  56623. weight: math.unit(0.6, "oz"),
  56624. name: "Back",
  56625. image: {
  56626. source: "./media/characters/bryn/back.svg",
  56627. extra: 1475/1201,
  56628. bottom: 39/1514
  56629. }
  56630. },
  56631. foot: {
  56632. height: math.unit(0.4, "inches"),
  56633. name: "Foot",
  56634. image: {
  56635. source: "./media/characters/bryn/foot.svg"
  56636. }
  56637. },
  56638. },
  56639. [
  56640. {
  56641. name: "Normal",
  56642. height: math.unit(2.5, "inches"),
  56643. default: true
  56644. },
  56645. ]
  56646. ))
  56647. characterMakers.push(() => makeCharacter(
  56648. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56649. {
  56650. side: {
  56651. height: math.unit(7, "feet"),
  56652. weight: math.unit(657, "kg"),
  56653. name: "Side",
  56654. image: {
  56655. source: "./media/characters/delta/side.svg",
  56656. extra: 781/212,
  56657. bottom: 7/788
  56658. },
  56659. extraAttributes: {
  56660. "wingspan": {
  56661. name: "Wingspan",
  56662. power: 1,
  56663. type: "length",
  56664. base: math.unit(48, "feet")
  56665. },
  56666. "length": {
  56667. name: "Length",
  56668. power: 1,
  56669. type: "length",
  56670. base: math.unit(21, "feet")
  56671. },
  56672. "pawSize": {
  56673. name: "Paw Size",
  56674. power: 2,
  56675. type: "area",
  56676. base: math.unit(1.5*1.4, "feet^2")
  56677. },
  56678. }
  56679. },
  56680. },
  56681. [
  56682. {
  56683. name: "Normal",
  56684. height: math.unit(6, "feet"),
  56685. default: true
  56686. },
  56687. ]
  56688. ))
  56689. characterMakers.push(() => makeCharacter(
  56690. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56691. {
  56692. front: {
  56693. height: math.unit(6, "feet"),
  56694. name: "Front",
  56695. image: {
  56696. source: "./media/characters/pyrow/front.svg",
  56697. extra: 513/486,
  56698. bottom: 14/527
  56699. }
  56700. },
  56701. frontWing: {
  56702. height: math.unit(6, "feet"),
  56703. name: "Front (Wing)",
  56704. image: {
  56705. source: "./media/characters/pyrow/front-wing.svg",
  56706. extra: 539/383,
  56707. bottom: 20/559
  56708. }
  56709. },
  56710. back: {
  56711. height: math.unit(6, "feet"),
  56712. name: "Back",
  56713. image: {
  56714. source: "./media/characters/pyrow/back.svg",
  56715. extra: 500/473,
  56716. bottom: 9/509
  56717. }
  56718. },
  56719. },
  56720. [
  56721. {
  56722. name: "Normal",
  56723. height: math.unit(6, "feet"),
  56724. default: true
  56725. },
  56726. ]
  56727. ))
  56728. characterMakers.push(() => makeCharacter(
  56729. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56730. {
  56731. front: {
  56732. height: math.unit(5, "meters"),
  56733. weight: math.unit(3, "tonnes"),
  56734. name: "Front",
  56735. image: {
  56736. source: "./media/characters/velikan/front.svg",
  56737. extra: 867/744,
  56738. bottom: 71/938
  56739. },
  56740. extraAttributes: {
  56741. "shoeSize": {
  56742. name: "Shoe Size",
  56743. power: 1,
  56744. type: "length",
  56745. base: math.unit(135, "ShoeSizeUK"),
  56746. defaultUnit: "ShoeSizeUK"
  56747. },
  56748. }
  56749. },
  56750. },
  56751. [
  56752. {
  56753. name: "Normal",
  56754. height: math.unit(5, "meters"),
  56755. default: true
  56756. },
  56757. {
  56758. name: "Macro",
  56759. height: math.unit(1, "km")
  56760. },
  56761. {
  56762. name: "Mega Macro",
  56763. height: math.unit(100, "km")
  56764. },
  56765. {
  56766. name: "Giga Macro",
  56767. height: math.unit(2, "megameters")
  56768. },
  56769. {
  56770. name: "Planetary",
  56771. height: math.unit(22, "megameters")
  56772. },
  56773. {
  56774. name: "Solar",
  56775. height: math.unit(8, "gigameters")
  56776. },
  56777. {
  56778. name: "Cosmic",
  56779. height: math.unit(10, "zettameters")
  56780. },
  56781. {
  56782. name: "Omni",
  56783. height: math.unit(9e260, "multiverses")
  56784. },
  56785. ]
  56786. ))
  56787. characterMakers.push(() => makeCharacter(
  56788. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56789. {
  56790. front: {
  56791. height: math.unit(4 + 3/12, "feet"),
  56792. weight: math.unit(90, "lb"),
  56793. name: "Front",
  56794. image: {
  56795. source: "./media/characters/sabiki/front.svg",
  56796. extra: 1662/1423,
  56797. bottom: 65/1727
  56798. }
  56799. },
  56800. },
  56801. [
  56802. {
  56803. name: "Normal",
  56804. height: math.unit(4 + 3/12, "feet"),
  56805. default: true
  56806. },
  56807. ]
  56808. ))
  56809. characterMakers.push(() => makeCharacter(
  56810. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56811. {
  56812. frontSfw: {
  56813. height: math.unit(2, "mm"),
  56814. name: "Front (SFW)",
  56815. image: {
  56816. source: "./media/characters/carmel/front-sfw.svg",
  56817. extra: 1131/1006,
  56818. bottom: 66/1197
  56819. }
  56820. },
  56821. frontNsfw: {
  56822. height: math.unit(2, "mm"),
  56823. name: "Front (NSFW)",
  56824. image: {
  56825. source: "./media/characters/carmel/front-nsfw.svg",
  56826. extra: 1131/1006,
  56827. bottom: 66/1197
  56828. }
  56829. },
  56830. foot: {
  56831. height: math.unit(0.3, "mm"),
  56832. name: "Foot",
  56833. image: {
  56834. source: "./media/characters/carmel/foot.svg"
  56835. }
  56836. },
  56837. tongue: {
  56838. height: math.unit(0.71, "mm"),
  56839. name: "Tongue",
  56840. image: {
  56841. source: "./media/characters/carmel/tongue.svg"
  56842. }
  56843. },
  56844. dick: {
  56845. height: math.unit(0.085, "mm"),
  56846. name: "Dick",
  56847. image: {
  56848. source: "./media/characters/carmel/dick.svg"
  56849. }
  56850. },
  56851. },
  56852. [
  56853. {
  56854. name: "Micro",
  56855. height: math.unit(2, "mm"),
  56856. default: true
  56857. },
  56858. {
  56859. name: "Normal",
  56860. height: math.unit(4 + 8/12, "feet")
  56861. },
  56862. {
  56863. name: "Mega Macro",
  56864. height: math.unit(250, "feet")
  56865. },
  56866. {
  56867. name: "BIGGER",
  56868. height: math.unit(1000, "feet")
  56869. },
  56870. {
  56871. name: "BIGGEST",
  56872. height: math.unit(2, "miles")
  56873. },
  56874. ]
  56875. ))
  56876. characterMakers.push(() => makeCharacter(
  56877. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56878. {
  56879. front: {
  56880. height: math.unit(6.5, "feet"),
  56881. weight: math.unit(198, "lb"),
  56882. name: "Front",
  56883. image: {
  56884. source: "./media/characters/tamani/anthro.svg",
  56885. extra: 930/890,
  56886. bottom: 34/964
  56887. },
  56888. form: "anthro",
  56889. default: true
  56890. },
  56891. side: {
  56892. height: math.unit(6, "feet"),
  56893. weight: math.unit(198*2, "lb"),
  56894. name: "Side",
  56895. image: {
  56896. source: "./media/characters/tamani/feral.svg",
  56897. extra: 559/519,
  56898. bottom: 43/602
  56899. },
  56900. form: "feral"
  56901. },
  56902. },
  56903. [
  56904. {
  56905. name: "Normal",
  56906. height: math.unit(6.5, "feet"),
  56907. default: true,
  56908. form: "anthro"
  56909. },
  56910. {
  56911. name: "Normal",
  56912. height: math.unit(6, "feet"),
  56913. default: true,
  56914. form: "feral"
  56915. },
  56916. ],
  56917. {
  56918. "anthro": {
  56919. name: "Anthro",
  56920. default: true
  56921. },
  56922. "feral": {
  56923. name: "Feral",
  56924. },
  56925. }
  56926. ))
  56927. characterMakers.push(() => makeCharacter(
  56928. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56929. {
  56930. front: {
  56931. height: math.unit(4 + 1/12, "feet"),
  56932. weight: math.unit(114, "lb"),
  56933. name: "Front",
  56934. image: {
  56935. source: "./media/characters/dex/front.svg",
  56936. extra: 787/680,
  56937. bottom: 18/805
  56938. }
  56939. },
  56940. side: {
  56941. height: math.unit(4 + 1/12, "feet"),
  56942. weight: math.unit(114, "lb"),
  56943. name: "Side",
  56944. image: {
  56945. source: "./media/characters/dex/side.svg",
  56946. extra: 785/680,
  56947. bottom: 12/797
  56948. }
  56949. },
  56950. back: {
  56951. height: math.unit(4 + 1/12, "feet"),
  56952. weight: math.unit(114, "lb"),
  56953. name: "Back",
  56954. image: {
  56955. source: "./media/characters/dex/back.svg",
  56956. extra: 785/681,
  56957. bottom: 17/802
  56958. }
  56959. },
  56960. loungewear: {
  56961. height: math.unit(4 + 1/12, "feet"),
  56962. weight: math.unit(114, "lb"),
  56963. name: "Loungewear",
  56964. image: {
  56965. source: "./media/characters/dex/loungewear.svg",
  56966. extra: 787/680,
  56967. bottom: 18/805
  56968. }
  56969. },
  56970. workout: {
  56971. height: math.unit(4 + 1/12, "feet"),
  56972. weight: math.unit(114, "lb"),
  56973. name: "Workout",
  56974. image: {
  56975. source: "./media/characters/dex/workout.svg",
  56976. extra: 787/680,
  56977. bottom: 18/805
  56978. }
  56979. },
  56980. schoolUniform: {
  56981. height: math.unit(4 + 1/12, "feet"),
  56982. weight: math.unit(114, "lb"),
  56983. name: "School-uniform",
  56984. image: {
  56985. source: "./media/characters/dex/school-uniform.svg",
  56986. extra: 787/680,
  56987. bottom: 18/805
  56988. }
  56989. },
  56990. maw: {
  56991. height: math.unit(0.55, "feet"),
  56992. name: "Maw",
  56993. image: {
  56994. source: "./media/characters/dex/maw.svg"
  56995. }
  56996. },
  56997. paw: {
  56998. height: math.unit(0.87, "feet"),
  56999. name: "Paw",
  57000. image: {
  57001. source: "./media/characters/dex/paw.svg"
  57002. }
  57003. },
  57004. bust: {
  57005. height: math.unit(1.67, "feet"),
  57006. name: "Bust",
  57007. image: {
  57008. source: "./media/characters/dex/bust.svg"
  57009. }
  57010. },
  57011. },
  57012. [
  57013. {
  57014. name: "Normal",
  57015. height: math.unit(4 + 1/12, "feet"),
  57016. default: true
  57017. },
  57018. ]
  57019. ))
  57020. characterMakers.push(() => makeCharacter(
  57021. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57022. {
  57023. front: {
  57024. height: math.unit(4 + 3/12, "feet"),
  57025. weight: math.unit(60, "lb"),
  57026. name: "Front",
  57027. image: {
  57028. source: "./media/characters/silke/front.svg",
  57029. extra: 1334/1122,
  57030. bottom: 21/1355
  57031. }
  57032. },
  57033. back: {
  57034. height: math.unit(4 + 3/12, "feet"),
  57035. weight: math.unit(60, "lb"),
  57036. name: "Back",
  57037. image: {
  57038. source: "./media/characters/silke/back.svg",
  57039. extra: 1328/1092,
  57040. bottom: 16/1344
  57041. }
  57042. },
  57043. dressed: {
  57044. height: math.unit(4 + 3/12, "feet"),
  57045. weight: math.unit(60, "lb"),
  57046. name: "Dressed",
  57047. image: {
  57048. source: "./media/characters/silke/dressed.svg",
  57049. extra: 1334/1122,
  57050. bottom: 43/1377
  57051. }
  57052. },
  57053. },
  57054. [
  57055. {
  57056. name: "Normal",
  57057. height: math.unit(4 + 3/12, "feet"),
  57058. default: true
  57059. },
  57060. ]
  57061. ))
  57062. characterMakers.push(() => makeCharacter(
  57063. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57064. {
  57065. front: {
  57066. height: math.unit(1.58, "meters"),
  57067. weight: math.unit(47, "kg"),
  57068. name: "Front",
  57069. image: {
  57070. source: "./media/characters/wireshark/front.svg",
  57071. extra: 883/838,
  57072. bottom: 66/949
  57073. }
  57074. },
  57075. },
  57076. [
  57077. {
  57078. name: "Normal",
  57079. height: math.unit(1.58, "meters"),
  57080. default: true
  57081. },
  57082. ]
  57083. ))
  57084. characterMakers.push(() => makeCharacter(
  57085. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57086. {
  57087. front: {
  57088. height: math.unit(6, "meters"),
  57089. weight: math.unit(15000, "kg"),
  57090. name: "Front",
  57091. image: {
  57092. source: "./media/characters/gallagher/front.svg",
  57093. extra: 532/493,
  57094. bottom: 0/532
  57095. }
  57096. },
  57097. },
  57098. [
  57099. {
  57100. name: "Normal",
  57101. height: math.unit(6, "meters"),
  57102. default: true
  57103. },
  57104. ]
  57105. ))
  57106. characterMakers.push(() => makeCharacter(
  57107. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57108. {
  57109. front: {
  57110. height: math.unit(2.4, "meters"),
  57111. weight: math.unit(270, "kg"),
  57112. name: "Front",
  57113. image: {
  57114. source: "./media/characters/alice/front.svg",
  57115. extra: 950/900,
  57116. bottom: 36/986
  57117. }
  57118. },
  57119. side: {
  57120. height: math.unit(2.4, "meters"),
  57121. weight: math.unit(270, "kg"),
  57122. name: "Side",
  57123. image: {
  57124. source: "./media/characters/alice/side.svg",
  57125. extra: 921/876,
  57126. bottom: 19/940
  57127. }
  57128. },
  57129. dressed: {
  57130. height: math.unit(2.4, "meters"),
  57131. weight: math.unit(270, "kg"),
  57132. name: "Dressed",
  57133. image: {
  57134. source: "./media/characters/alice/dressed.svg",
  57135. extra: 905/850,
  57136. bottom: 81/986
  57137. }
  57138. },
  57139. fishnet: {
  57140. height: math.unit(2.4, "meters"),
  57141. weight: math.unit(270, "kg"),
  57142. name: "Fishnet",
  57143. image: {
  57144. source: "./media/characters/alice/fishnet.svg",
  57145. extra: 905/850,
  57146. bottom: 81/986
  57147. }
  57148. },
  57149. },
  57150. [
  57151. {
  57152. name: "Normal",
  57153. height: math.unit(2.4, "meters"),
  57154. default: true
  57155. },
  57156. ]
  57157. ))
  57158. characterMakers.push(() => makeCharacter(
  57159. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57160. {
  57161. front: {
  57162. height: math.unit(175.25, "feet"),
  57163. name: "Front",
  57164. image: {
  57165. source: "./media/characters/fio/front.svg",
  57166. extra: 1883/1591,
  57167. bottom: 34/1917
  57168. }
  57169. },
  57170. },
  57171. [
  57172. {
  57173. name: "Normal",
  57174. height: math.unit(175.25, "cm"),
  57175. default: true
  57176. },
  57177. ]
  57178. ))
  57179. characterMakers.push(() => makeCharacter(
  57180. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57181. {
  57182. side: {
  57183. height: math.unit(6, "meters"),
  57184. weight: math.unit(3400, "kg"),
  57185. preyCapacity: math.unit(1700, "liters"),
  57186. name: "Side",
  57187. image: {
  57188. source: "./media/characters/hass/side.svg",
  57189. extra: 1058/997,
  57190. bottom: 177/1235
  57191. }
  57192. },
  57193. feeding: {
  57194. height: math.unit(6*0.63, "meters"),
  57195. weight: math.unit(3400, "kg"),
  57196. preyCapacity: math.unit(1700, "liters"),
  57197. name: "Feeding",
  57198. image: {
  57199. source: "./media/characters/hass/feeding.svg",
  57200. extra: 689/579,
  57201. bottom: 146/835
  57202. }
  57203. },
  57204. guts: {
  57205. height: math.unit(6, "meters"),
  57206. weight: math.unit(3400, "kg"),
  57207. name: "Guts",
  57208. image: {
  57209. source: "./media/characters/hass/guts.svg",
  57210. extra: 1223/1198,
  57211. bottom: 182/1405
  57212. }
  57213. },
  57214. dickFront: {
  57215. height: math.unit(1.4, "meters"),
  57216. name: "Dick (Front)",
  57217. image: {
  57218. source: "./media/characters/hass/dick-front.svg"
  57219. }
  57220. },
  57221. dickSide: {
  57222. height: math.unit(1.3, "meters"),
  57223. name: "Dick (Side)",
  57224. image: {
  57225. source: "./media/characters/hass/dick-side.svg"
  57226. }
  57227. },
  57228. dickBack: {
  57229. height: math.unit(1.4, "meters"),
  57230. name: "Dick (Back)",
  57231. image: {
  57232. source: "./media/characters/hass/dick-back.svg"
  57233. }
  57234. },
  57235. },
  57236. [
  57237. {
  57238. name: "Normal",
  57239. height: math.unit(6, "meters"),
  57240. default: true
  57241. },
  57242. ]
  57243. ))
  57244. characterMakers.push(() => makeCharacter(
  57245. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57246. {
  57247. front: {
  57248. height: math.unit(4, "feet"),
  57249. weight: math.unit(60, "lb"),
  57250. name: "Front",
  57251. image: {
  57252. source: "./media/characters/hickory-finnegan/front.svg",
  57253. extra: 444/411,
  57254. bottom: 10/454
  57255. }
  57256. },
  57257. side: {
  57258. height: math.unit(4, "feet"),
  57259. weight: math.unit(60, "lb"),
  57260. name: "Side",
  57261. image: {
  57262. source: "./media/characters/hickory-finnegan/side.svg",
  57263. extra: 444/411,
  57264. bottom: 10/454
  57265. }
  57266. },
  57267. back: {
  57268. height: math.unit(4, "feet"),
  57269. weight: math.unit(60, "lb"),
  57270. name: "Back",
  57271. image: {
  57272. source: "./media/characters/hickory-finnegan/back.svg",
  57273. extra: 444/411,
  57274. bottom: 10/454
  57275. }
  57276. },
  57277. },
  57278. [
  57279. {
  57280. name: "Normal",
  57281. height: math.unit(4, "feet"),
  57282. default: true
  57283. },
  57284. ]
  57285. ))
  57286. characterMakers.push(() => makeCharacter(
  57287. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57288. {
  57289. snivy_front: {
  57290. height: math.unit(2, "feet"),
  57291. weight: math.unit(17.9, "lb"),
  57292. name: "Front",
  57293. image: {
  57294. source: "./media/characters/robin-phox/snivy-front.svg",
  57295. extra: 569/504,
  57296. bottom: 33/602
  57297. },
  57298. form: "snivy",
  57299. default: true
  57300. },
  57301. snivy_frontNsfw: {
  57302. height: math.unit(2, "feet"),
  57303. weight: math.unit(17.9, "lb"),
  57304. name: "Front (NSFW)",
  57305. image: {
  57306. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57307. extra: 569/504,
  57308. bottom: 33/602
  57309. },
  57310. form: "snivy",
  57311. },
  57312. snivy_back: {
  57313. height: math.unit(2, "feet"),
  57314. weight: math.unit(17.9, "lb"),
  57315. name: "Back",
  57316. image: {
  57317. source: "./media/characters/robin-phox/snivy-back.svg",
  57318. extra: 577/508,
  57319. bottom: 21/598
  57320. },
  57321. form: "snivy",
  57322. },
  57323. snivy_foot: {
  57324. height: math.unit(0.68, "feet"),
  57325. name: "Foot",
  57326. image: {
  57327. source: "./media/characters/robin-phox/snivy-foot.svg"
  57328. },
  57329. form: "snivy",
  57330. },
  57331. snivy_sole: {
  57332. height: math.unit(0.68, "feet"),
  57333. name: "Sole",
  57334. image: {
  57335. source: "./media/characters/robin-phox/snivy-sole.svg"
  57336. },
  57337. form: "snivy",
  57338. },
  57339. yoshi_front: {
  57340. height: math.unit(6, "feet"),
  57341. weight: math.unit(150, "lb"),
  57342. name: "Front",
  57343. image: {
  57344. source: "./media/characters/robin-phox/yoshi-front.svg",
  57345. extra: 890/792,
  57346. bottom: 29/919
  57347. },
  57348. form: "yoshi",
  57349. default: true
  57350. },
  57351. yoshi_frontNsfw: {
  57352. height: math.unit(6, "feet"),
  57353. weight: math.unit(150, "lb"),
  57354. name: "Front (NSFW)",
  57355. image: {
  57356. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57357. extra: 890/792,
  57358. bottom: 29/919
  57359. },
  57360. form: "yoshi",
  57361. },
  57362. yoshi_back: {
  57363. height: math.unit(6, "feet"),
  57364. weight: math.unit(150, "lb"),
  57365. name: "Back",
  57366. image: {
  57367. source: "./media/characters/robin-phox/yoshi-back.svg",
  57368. extra: 890/792,
  57369. bottom: 29/919
  57370. },
  57371. form: "yoshi",
  57372. },
  57373. yoshi_foot: {
  57374. height: math.unit(1.5, "feet"),
  57375. name: "Foot",
  57376. image: {
  57377. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57378. },
  57379. form: "yoshi",
  57380. },
  57381. delphox_front: {
  57382. height: math.unit(4 + 11/12, "feet"),
  57383. weight: math.unit(86, "lb"),
  57384. name: "Front",
  57385. image: {
  57386. source: "./media/characters/robin-phox/delphox-front.svg",
  57387. extra: 1266/1069,
  57388. bottom: 32/1298
  57389. },
  57390. form: "delphox",
  57391. default: true
  57392. },
  57393. delphox_frontNsfw: {
  57394. height: math.unit(4 + 11/12, "feet"),
  57395. weight: math.unit(86, "lb"),
  57396. name: "Front (NSFW)",
  57397. image: {
  57398. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57399. extra: 1266/1069,
  57400. bottom: 32/1298
  57401. },
  57402. form: "delphox",
  57403. },
  57404. delphox_back: {
  57405. height: math.unit(4 + 11/12, "feet"),
  57406. weight: math.unit(86, "lb"),
  57407. name: "Back",
  57408. image: {
  57409. source: "./media/characters/robin-phox/delphox-back.svg",
  57410. extra: 1269/1083,
  57411. bottom: 15/1284
  57412. },
  57413. form: "delphox",
  57414. },
  57415. mienshao_front: {
  57416. height: math.unit(4 + 7/12, "feet"),
  57417. weight: math.unit(78.3, "lb"),
  57418. name: "Front",
  57419. image: {
  57420. source: "./media/characters/robin-phox/mienshao-front.svg",
  57421. extra: 1052/970,
  57422. bottom: 108/1160
  57423. },
  57424. form: "mienshao",
  57425. default: true
  57426. },
  57427. mienshao_frontNsfw: {
  57428. height: math.unit(4 + 7/12, "feet"),
  57429. weight: math.unit(78.3, "lb"),
  57430. name: "Front (NSFW)",
  57431. image: {
  57432. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57433. extra: 1052/970,
  57434. bottom: 108/1160
  57435. },
  57436. form: "mienshao",
  57437. },
  57438. mienshao_back: {
  57439. height: math.unit(4 + 7/12, "feet"),
  57440. weight: math.unit(78.3, "lb"),
  57441. name: "Back",
  57442. image: {
  57443. source: "./media/characters/robin-phox/mienshao-back.svg",
  57444. extra: 1102/982,
  57445. bottom: 32/1134
  57446. },
  57447. form: "mienshao",
  57448. },
  57449. inteleon_front: {
  57450. height: math.unit(6 + 3/12, "feet"),
  57451. weight: math.unit(99.6, "lb"),
  57452. name: "Front",
  57453. image: {
  57454. source: "./media/characters/robin-phox/inteleon-front.svg",
  57455. extra: 910/799,
  57456. bottom: 76/986
  57457. },
  57458. form: "inteleon",
  57459. default: true
  57460. },
  57461. inteleon_frontNsfw: {
  57462. height: math.unit(6 + 3/12, "feet"),
  57463. weight: math.unit(99.6, "lb"),
  57464. name: "Front (NSFW)",
  57465. image: {
  57466. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57467. extra: 910/799,
  57468. bottom: 76/986
  57469. },
  57470. form: "inteleon",
  57471. },
  57472. inteleon_back: {
  57473. height: math.unit(6 + 3/12, "feet"),
  57474. weight: math.unit(99.6, "lb"),
  57475. name: "Back",
  57476. image: {
  57477. source: "./media/characters/robin-phox/inteleon-back.svg",
  57478. extra: 907/796,
  57479. bottom: 25/932
  57480. },
  57481. form: "inteleon",
  57482. },
  57483. reshiram_front: {
  57484. height: math.unit(10 + 6/12, "feet"),
  57485. weight: math.unit(727.5, "lb"),
  57486. name: "Front",
  57487. image: {
  57488. source: "./media/characters/robin-phox/reshiram-front.svg",
  57489. extra: 1198/940,
  57490. bottom: 123/1321
  57491. },
  57492. form: "reshiram",
  57493. },
  57494. reshiram_frontNsfw: {
  57495. height: math.unit(10 + 6/12, "feet"),
  57496. weight: math.unit(727.5, "lb"),
  57497. name: "Front-nsfw",
  57498. image: {
  57499. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57500. extra: 1198/940,
  57501. bottom: 123/1321
  57502. },
  57503. form: "reshiram",
  57504. },
  57505. reshiram_back: {
  57506. height: math.unit(10 + 6/12, "feet"),
  57507. weight: math.unit(727.5, "lb"),
  57508. name: "Back",
  57509. image: {
  57510. source: "./media/characters/robin-phox/reshiram-back.svg",
  57511. extra: 1024/904,
  57512. bottom: 85/1109
  57513. },
  57514. form: "reshiram",
  57515. },
  57516. samurott_front: {
  57517. height: math.unit(8, "feet"),
  57518. weight: math.unit(208.6, "lb"),
  57519. name: "Front",
  57520. image: {
  57521. source: "./media/characters/robin-phox/samurott-front.svg",
  57522. extra: 1048/984,
  57523. bottom: 100/1148
  57524. },
  57525. form: "samurott",
  57526. },
  57527. samurott_frontNsfw: {
  57528. height: math.unit(8, "feet"),
  57529. weight: math.unit(208.6, "lb"),
  57530. name: "Front-nsfw",
  57531. image: {
  57532. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57533. extra: 1048/984,
  57534. bottom: 100/1148
  57535. },
  57536. form: "samurott",
  57537. },
  57538. samurott_back: {
  57539. height: math.unit(8, "feet"),
  57540. weight: math.unit(208.6, "lb"),
  57541. name: "Back",
  57542. image: {
  57543. source: "./media/characters/robin-phox/samurott-back.svg",
  57544. extra: 1110/1042,
  57545. bottom: 12/1122
  57546. },
  57547. form: "samurott",
  57548. },
  57549. samurott_feral: {
  57550. height: math.unit(4 + 11/12, "feet"),
  57551. weight: math.unit(208.6, "lb"),
  57552. name: "Feral",
  57553. image: {
  57554. source: "./media/characters/robin-phox/samurott-feral.svg",
  57555. extra: 766/681,
  57556. bottom: 108/874
  57557. },
  57558. form: "samurott",
  57559. },
  57560. },
  57561. [
  57562. {
  57563. name: "Normal",
  57564. height: math.unit(2, "feet"),
  57565. default: true,
  57566. form: "snivy"
  57567. },
  57568. {
  57569. name: "Normal",
  57570. height: math.unit(6, "feet"),
  57571. default: true,
  57572. form: "yoshi"
  57573. },
  57574. {
  57575. name: "Normal",
  57576. height: math.unit(4 + 11/12, "feet"),
  57577. default: true,
  57578. form: "delphox"
  57579. },
  57580. {
  57581. name: "Normal",
  57582. height: math.unit(4 + 7/12, "feet"),
  57583. default: true,
  57584. form: "mienshao"
  57585. },
  57586. {
  57587. name: "Normal",
  57588. height: math.unit(6 + 3/12, "feet"),
  57589. default: true,
  57590. form: "inteleon"
  57591. },
  57592. {
  57593. name: "Normal",
  57594. height: math.unit(10 + 6/12, "feet"),
  57595. default: true,
  57596. form: "reshiram"
  57597. },
  57598. {
  57599. name: "Normal",
  57600. height: math.unit(8, "feet"),
  57601. default: true,
  57602. form: "samurott"
  57603. },
  57604. {
  57605. name: "Macro",
  57606. height: math.unit(500, "feet"),
  57607. allForms: true
  57608. },
  57609. {
  57610. name: "Mega Macro",
  57611. height: math.unit(10, "earths"),
  57612. allForms: true
  57613. },
  57614. {
  57615. name: "Giga Macro",
  57616. height: math.unit(1, "galaxy"),
  57617. allForms: true
  57618. },
  57619. {
  57620. name: "Godly Macro",
  57621. height: math.unit(1e10, "multiverses"),
  57622. allForms: true
  57623. },
  57624. ],
  57625. {
  57626. "snivy": {
  57627. name: "Snivy",
  57628. default: true
  57629. },
  57630. "yoshi": {
  57631. name: "Yoshi",
  57632. },
  57633. "delphox": {
  57634. name: "Delphox",
  57635. },
  57636. "mienshao": {
  57637. name: "Mienshao",
  57638. },
  57639. "inteleon": {
  57640. name: "Inteleon",
  57641. },
  57642. "reshiram": {
  57643. name: "Reshiram",
  57644. },
  57645. "samurott": {
  57646. name: "Samurott",
  57647. },
  57648. }
  57649. ))
  57650. characterMakers.push(() => makeCharacter(
  57651. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57652. {
  57653. front: {
  57654. height: math.unit(4, "feet"),
  57655. name: "Front",
  57656. image: {
  57657. source: "./media/characters/ash-leung/front.svg",
  57658. extra: 1916/1792,
  57659. bottom: 50/1966
  57660. }
  57661. },
  57662. },
  57663. [
  57664. {
  57665. name: "Atomic",
  57666. height: math.unit(1, "angstrom")
  57667. },
  57668. {
  57669. name: "Microscopic",
  57670. height: math.unit(4000, "angstroms")
  57671. },
  57672. {
  57673. name: "Speck",
  57674. height: math.unit(1, "mm")
  57675. },
  57676. {
  57677. name: "Small",
  57678. height: math.unit(1, "inch")
  57679. },
  57680. {
  57681. name: "Normal",
  57682. height: math.unit(4, "feet"),
  57683. default: true
  57684. },
  57685. ]
  57686. ))
  57687. characterMakers.push(() => makeCharacter(
  57688. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57689. {
  57690. frontDressed: {
  57691. height: math.unit(2.08, "meters"),
  57692. weight: math.unit(175, "lb"),
  57693. name: "Front (Dressed)",
  57694. image: {
  57695. source: "./media/characters/carie/front-dressed.svg",
  57696. extra: 456/417,
  57697. bottom: 7/463
  57698. }
  57699. },
  57700. backDressed: {
  57701. height: math.unit(2.08, "meters"),
  57702. weight: math.unit(175, "lb"),
  57703. name: "Back (Dressed)",
  57704. image: {
  57705. source: "./media/characters/carie/back-dressed.svg",
  57706. extra: 455/414,
  57707. bottom: 11/466
  57708. }
  57709. },
  57710. front: {
  57711. height: math.unit(2, "meters"),
  57712. weight: math.unit(175, "lb"),
  57713. name: "Front",
  57714. image: {
  57715. source: "./media/characters/carie/front.svg",
  57716. extra: 438/399,
  57717. bottom: 12/450
  57718. }
  57719. },
  57720. back: {
  57721. height: math.unit(2, "meters"),
  57722. weight: math.unit(175, "lb"),
  57723. name: "Back",
  57724. image: {
  57725. source: "./media/characters/carie/back.svg",
  57726. extra: 438/397,
  57727. bottom: 7/445
  57728. }
  57729. },
  57730. },
  57731. [
  57732. {
  57733. name: "Normal",
  57734. height: math.unit(2.08, "meters"),
  57735. default: true
  57736. },
  57737. {
  57738. name: "Macro",
  57739. height: math.unit(2.08e3, "meters")
  57740. },
  57741. {
  57742. name: "Mega Macro",
  57743. height: math.unit(2.08e6, "meters")
  57744. },
  57745. {
  57746. name: "Giga Macro",
  57747. height: math.unit(2.08e9, "meters")
  57748. },
  57749. {
  57750. name: "Tera Macro",
  57751. height: math.unit(2.08e12, "meters")
  57752. },
  57753. {
  57754. name: "Peta Macro",
  57755. height: math.unit(2.08e15, "meters")
  57756. },
  57757. {
  57758. name: "Exa Macro",
  57759. height: math.unit(2.08e18, "meters")
  57760. },
  57761. {
  57762. name: "Zetta Macro",
  57763. height: math.unit(2.08e21, "meters")
  57764. },
  57765. {
  57766. name: "Yotta Macro",
  57767. height: math.unit(2.08e24, "meters")
  57768. },
  57769. ]
  57770. ))
  57771. characterMakers.push(() => makeCharacter(
  57772. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57773. {
  57774. front: {
  57775. height: math.unit(5 + 2/12, "feet"),
  57776. weight: math.unit(120, "lb"),
  57777. name: "Front",
  57778. image: {
  57779. source: "./media/characters/sai-bree/front.svg",
  57780. extra: 1843/1702,
  57781. bottom: 91/1934
  57782. }
  57783. },
  57784. back: {
  57785. height: math.unit(5 + 2/12, "feet"),
  57786. weight: math.unit(120, "lb"),
  57787. name: "Back",
  57788. image: {
  57789. source: "./media/characters/sai-bree/back.svg",
  57790. extra: 1809/1637,
  57791. bottom: 56/1865
  57792. }
  57793. },
  57794. },
  57795. [
  57796. {
  57797. name: "Normal",
  57798. height: math.unit(5 + 2/12, "feet"),
  57799. default: true
  57800. },
  57801. {
  57802. name: "Macro",
  57803. height: math.unit(500, "feet")
  57804. },
  57805. ]
  57806. ))
  57807. characterMakers.push(() => makeCharacter(
  57808. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57809. {
  57810. side: {
  57811. height: math.unit(0.77, "meters"),
  57812. weight: math.unit(120, "lb"),
  57813. name: "Side",
  57814. image: {
  57815. source: "./media/characters/davwyn/side.svg",
  57816. extra: 1557/1225,
  57817. bottom: 131/1688
  57818. }
  57819. },
  57820. front: {
  57821. height: math.unit(0.835410, "meters"),
  57822. weight: math.unit(120, "lb"),
  57823. name: "Front",
  57824. image: {
  57825. source: "./media/characters/davwyn/front.svg",
  57826. extra: 870/843,
  57827. bottom: 175/1045
  57828. }
  57829. },
  57830. },
  57831. [
  57832. {
  57833. name: "Minidrake",
  57834. height: math.unit(0.77/4, "meters")
  57835. },
  57836. {
  57837. name: "Normal",
  57838. height: math.unit(0.77, "meters"),
  57839. default: true
  57840. },
  57841. ]
  57842. ))
  57843. characterMakers.push(() => makeCharacter(
  57844. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57845. {
  57846. front: {
  57847. height: math.unit(10 + 3/12, "feet"),
  57848. weight: math.unit(2857, "lb"),
  57849. name: "Front",
  57850. image: {
  57851. source: "./media/characters/balans/front.svg",
  57852. extra: 427/402,
  57853. bottom: 26/453
  57854. }
  57855. },
  57856. side: {
  57857. height: math.unit(10 + 3/12, "feet"),
  57858. weight: math.unit(2857, "lb"),
  57859. name: "Side",
  57860. image: {
  57861. source: "./media/characters/balans/side.svg",
  57862. extra: 397/371,
  57863. bottom: 17/414
  57864. }
  57865. },
  57866. back: {
  57867. height: math.unit(10 + 3/12, "feet"),
  57868. weight: math.unit(2857, "lb"),
  57869. name: "Back",
  57870. image: {
  57871. source: "./media/characters/balans/back.svg",
  57872. extra: 408/381,
  57873. bottom: 14/422
  57874. }
  57875. },
  57876. hand: {
  57877. height: math.unit(1.15, "feet"),
  57878. name: "Hand",
  57879. image: {
  57880. source: "./media/characters/balans/hand.svg"
  57881. }
  57882. },
  57883. footRest: {
  57884. height: math.unit(3.1, "feet"),
  57885. name: "Foot (Rest)",
  57886. image: {
  57887. source: "./media/characters/balans/foot-rest.svg"
  57888. }
  57889. },
  57890. footActive: {
  57891. height: math.unit(3.5, "feet"),
  57892. name: "Foot (Active)",
  57893. image: {
  57894. source: "./media/characters/balans/foot-active.svg"
  57895. }
  57896. },
  57897. },
  57898. [
  57899. {
  57900. name: "Normal",
  57901. height: math.unit(10 + 3/12, "feet"),
  57902. default: true
  57903. },
  57904. ]
  57905. ))
  57906. characterMakers.push(() => makeCharacter(
  57907. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57908. {
  57909. side: {
  57910. height: math.unit(9, "meters"),
  57911. weight: math.unit(114, "tonnes"),
  57912. name: "Side",
  57913. image: {
  57914. source: "./media/characters/eldkveikir/side.svg",
  57915. extra: 1927/338,
  57916. bottom: 42/1969
  57917. }
  57918. },
  57919. sitting: {
  57920. height: math.unit(13.4, "meters"),
  57921. weight: math.unit(114, "tonnes"),
  57922. name: "Sitting",
  57923. image: {
  57924. source: "./media/characters/eldkveikir/sitting.svg",
  57925. extra: 1108/963,
  57926. bottom: 610/1718
  57927. }
  57928. },
  57929. maw: {
  57930. height: math.unit(8.36, "meters"),
  57931. name: "Maw",
  57932. image: {
  57933. source: "./media/characters/eldkveikir/maw.svg"
  57934. }
  57935. },
  57936. hand: {
  57937. height: math.unit(4.84, "meters"),
  57938. name: "Hand",
  57939. image: {
  57940. source: "./media/characters/eldkveikir/hand.svg"
  57941. }
  57942. },
  57943. foot: {
  57944. height: math.unit(6.9, "meters"),
  57945. name: "Foot",
  57946. image: {
  57947. source: "./media/characters/eldkveikir/foot.svg"
  57948. }
  57949. },
  57950. genitals: {
  57951. height: math.unit(9.6, "meters"),
  57952. name: "Genitals",
  57953. image: {
  57954. source: "./media/characters/eldkveikir/genitals.svg"
  57955. }
  57956. },
  57957. },
  57958. [
  57959. {
  57960. name: "Normal",
  57961. height: math.unit(9, "meters"),
  57962. default: true
  57963. },
  57964. ]
  57965. ))
  57966. characterMakers.push(() => makeCharacter(
  57967. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57968. {
  57969. front: {
  57970. height: math.unit(14, "feet"),
  57971. weight: math.unit(4100, "lb"),
  57972. name: "Front",
  57973. image: {
  57974. source: "./media/characters/arrow/front.svg",
  57975. extra: 330/318,
  57976. bottom: 56/386
  57977. }
  57978. },
  57979. },
  57980. [
  57981. {
  57982. name: "Normal",
  57983. height: math.unit(14, "feet"),
  57984. default: true
  57985. },
  57986. {
  57987. name: "Minimacro",
  57988. height: math.unit(63, "feet")
  57989. },
  57990. {
  57991. name: "Macro",
  57992. height: math.unit(630, "feet")
  57993. },
  57994. {
  57995. name: "Megamacro",
  57996. height: math.unit(12600, "feet")
  57997. },
  57998. {
  57999. name: "Gigamacro",
  58000. height: math.unit(18000, "miles")
  58001. },
  58002. ]
  58003. ))
  58004. characterMakers.push(() => makeCharacter(
  58005. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58006. {
  58007. front: {
  58008. height: math.unit(10, "feet"),
  58009. weight: math.unit(2.4, "tons"),
  58010. name: "Front",
  58011. image: {
  58012. source: "./media/characters/3yk-k0-unit/front.svg",
  58013. extra: 573/561,
  58014. bottom: 33/606
  58015. }
  58016. },
  58017. back: {
  58018. height: math.unit(10, "feet"),
  58019. weight: math.unit(2.4, "tons"),
  58020. name: "Back",
  58021. image: {
  58022. source: "./media/characters/3yk-k0-unit/back.svg",
  58023. extra: 614/573,
  58024. bottom: 32/646
  58025. }
  58026. },
  58027. maw: {
  58028. height: math.unit(2.15, "feet"),
  58029. name: "Maw",
  58030. image: {
  58031. source: "./media/characters/3yk-k0-unit/maw.svg"
  58032. }
  58033. },
  58034. },
  58035. [
  58036. {
  58037. name: "Normal",
  58038. height: math.unit(10, "feet"),
  58039. default: true
  58040. },
  58041. ]
  58042. ))
  58043. characterMakers.push(() => makeCharacter(
  58044. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58045. {
  58046. front: {
  58047. height: math.unit(8 + 8/12, "feet"),
  58048. name: "Front",
  58049. image: {
  58050. source: "./media/characters/nemo/front.svg",
  58051. extra: 1308/1217,
  58052. bottom: 57/1365
  58053. }
  58054. },
  58055. },
  58056. [
  58057. {
  58058. name: "Normal",
  58059. height: math.unit(8 + 8/12, "feet"),
  58060. default: true
  58061. },
  58062. ]
  58063. ))
  58064. characterMakers.push(() => makeCharacter(
  58065. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58066. {
  58067. front: {
  58068. height: math.unit(8, "feet"),
  58069. weight: math.unit(760, "lb"),
  58070. name: "Front",
  58071. image: {
  58072. source: "./media/characters/rexx/front.svg",
  58073. extra: 786/750,
  58074. bottom: 17/803
  58075. },
  58076. extraAttributes: {
  58077. "pawLength": {
  58078. name: "Paw Length",
  58079. power: 1,
  58080. type: "length",
  58081. base: math.unit(27, "inches")
  58082. },
  58083. }
  58084. },
  58085. },
  58086. [
  58087. {
  58088. name: "Micro",
  58089. height: math.unit(2, "inches")
  58090. },
  58091. {
  58092. name: "Normal",
  58093. height: math.unit(8, "feet"),
  58094. default: true
  58095. },
  58096. {
  58097. name: "Macro",
  58098. height: math.unit(150, "feet")
  58099. },
  58100. ]
  58101. ))
  58102. characterMakers.push(() => makeCharacter(
  58103. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58104. {
  58105. front: {
  58106. height: math.unit(18, "feet"),
  58107. weight: math.unit(1975, "lb"),
  58108. name: "Front",
  58109. image: {
  58110. source: "./media/characters/draco/front.svg",
  58111. extra: 1325/1241,
  58112. bottom: 83/1408
  58113. }
  58114. },
  58115. back: {
  58116. height: math.unit(18, "feet"),
  58117. weight: math.unit(1975, "lb"),
  58118. name: "Back",
  58119. image: {
  58120. source: "./media/characters/draco/back.svg",
  58121. extra: 1332/1250,
  58122. bottom: 43/1375
  58123. }
  58124. },
  58125. dick: {
  58126. height: math.unit(7.5, "feet"),
  58127. name: "Dick",
  58128. image: {
  58129. source: "./media/characters/draco/dick.svg"
  58130. }
  58131. },
  58132. },
  58133. [
  58134. {
  58135. name: "Normal",
  58136. height: math.unit(18, "feet"),
  58137. default: true
  58138. },
  58139. ]
  58140. ))
  58141. characterMakers.push(() => makeCharacter(
  58142. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58143. {
  58144. front: {
  58145. height: math.unit(3.2, "meters"),
  58146. name: "Front",
  58147. image: {
  58148. source: "./media/characters/harriett/front.svg",
  58149. extra: 1966/1915,
  58150. bottom: 9/1975
  58151. }
  58152. },
  58153. },
  58154. [
  58155. {
  58156. name: "Normal",
  58157. height: math.unit(3.2, "meters"),
  58158. default: true
  58159. },
  58160. ]
  58161. ))
  58162. characterMakers.push(() => makeCharacter(
  58163. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58164. {
  58165. sitting: {
  58166. height: math.unit(0.8, "meter"),
  58167. name: "Sitting",
  58168. image: {
  58169. source: "./media/characters/serpentus/sitting.svg",
  58170. extra: 293/290,
  58171. bottom: 140/433
  58172. }
  58173. },
  58174. },
  58175. [
  58176. {
  58177. name: "Normal",
  58178. height: math.unit(0.8, "meter"),
  58179. default: true
  58180. },
  58181. ]
  58182. ))
  58183. characterMakers.push(() => makeCharacter(
  58184. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58185. {
  58186. front: {
  58187. height: math.unit(5.7174385736, "feet"),
  58188. name: "Front",
  58189. image: {
  58190. source: "./media/characters/nova-polecat/front.svg",
  58191. extra: 1317/1216,
  58192. bottom: 92/1409
  58193. }
  58194. },
  58195. },
  58196. [
  58197. {
  58198. name: "Normal",
  58199. height: math.unit(5.7174385736, "feet"),
  58200. default: true
  58201. },
  58202. ]
  58203. ))
  58204. characterMakers.push(() => makeCharacter(
  58205. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58206. {
  58207. front: {
  58208. height: math.unit(5 + 4/12, "feet"),
  58209. weight: math.unit(250, "lb"),
  58210. name: "Front",
  58211. image: {
  58212. source: "./media/characters/mook/front.svg",
  58213. extra: 1088/1037,
  58214. bottom: 132/1220
  58215. }
  58216. },
  58217. back: {
  58218. height: math.unit(5 + 1/12, "feet"),
  58219. weight: math.unit(250, "lb"),
  58220. name: "Back",
  58221. image: {
  58222. source: "./media/characters/mook/back.svg",
  58223. extra: 1184/905,
  58224. bottom: 96/1280
  58225. }
  58226. },
  58227. head: {
  58228. height: math.unit(1.85, "feet"),
  58229. name: "Head",
  58230. image: {
  58231. source: "./media/characters/mook/head.svg"
  58232. }
  58233. },
  58234. hand: {
  58235. height: math.unit(1.9, "feet"),
  58236. name: "Hand",
  58237. image: {
  58238. source: "./media/characters/mook/hand.svg"
  58239. }
  58240. },
  58241. palm: {
  58242. height: math.unit(1.84, "feet"),
  58243. name: "Palm",
  58244. image: {
  58245. source: "./media/characters/mook/palm.svg"
  58246. }
  58247. },
  58248. foot: {
  58249. height: math.unit(1.44, "feet"),
  58250. name: "Foot",
  58251. image: {
  58252. source: "./media/characters/mook/foot.svg"
  58253. }
  58254. },
  58255. sole: {
  58256. height: math.unit(1.44, "feet"),
  58257. name: "Sole",
  58258. image: {
  58259. source: "./media/characters/mook/sole.svg"
  58260. }
  58261. },
  58262. },
  58263. [
  58264. {
  58265. name: "Normal",
  58266. height: math.unit(5 + 4/12, "feet"),
  58267. default: true
  58268. },
  58269. {
  58270. name: "Big",
  58271. height: math.unit(12, "feet")
  58272. },
  58273. ]
  58274. ))
  58275. characterMakers.push(() => makeCharacter(
  58276. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58277. {
  58278. front: {
  58279. height: math.unit(6 + 10/12, "feet"),
  58280. weight: math.unit(233, "lb"),
  58281. name: "Front",
  58282. image: {
  58283. source: "./media/characters/kayla/front.svg",
  58284. extra: 1850/1775,
  58285. bottom: 65/1915
  58286. }
  58287. },
  58288. },
  58289. [
  58290. {
  58291. name: "Normal",
  58292. height: math.unit(6 + 10/12, "feet"),
  58293. default: true
  58294. },
  58295. {
  58296. name: "Amazonian",
  58297. height: math.unit(12 + 5/12, "feet")
  58298. },
  58299. {
  58300. name: "Mini Giantess",
  58301. height: math.unit(26, "feet")
  58302. },
  58303. {
  58304. name: "Giantess",
  58305. height: math.unit(200, "feet")
  58306. },
  58307. {
  58308. name: "Mega Giantess",
  58309. height: math.unit(2500, "feet")
  58310. },
  58311. {
  58312. name: "City Sized",
  58313. height: math.unit(50, "miles")
  58314. },
  58315. {
  58316. name: "Country Sized",
  58317. height: math.unit(500, "miles")
  58318. },
  58319. {
  58320. name: "Continent Sized",
  58321. height: math.unit(2500, "miles")
  58322. },
  58323. {
  58324. name: "Planet Sized",
  58325. height: math.unit(10000, "miles")
  58326. },
  58327. {
  58328. name: "Star Sized",
  58329. height: math.unit(5e6, "miles")
  58330. },
  58331. {
  58332. name: "Solar System Sized",
  58333. height: math.unit(125, "AU")
  58334. },
  58335. {
  58336. name: "Galaxy Sized",
  58337. height: math.unit(300e3, "lightyears")
  58338. },
  58339. {
  58340. name: "Universe Sized",
  58341. height: math.unit(200e9, "lightyears")
  58342. },
  58343. {
  58344. name: "Multiverse Sized",
  58345. height: math.unit(20, "exauniverses")
  58346. },
  58347. {
  58348. name: "Mother of Existence",
  58349. height: math.unit(1e6, "yottauniverses")
  58350. },
  58351. ]
  58352. ))
  58353. characterMakers.push(() => makeCharacter(
  58354. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58355. {
  58356. side: {
  58357. height: math.unit(9.5, "meters"),
  58358. name: "Side",
  58359. image: {
  58360. source: "./media/characters/kulve-ragnarok/side.svg",
  58361. extra: 364/326,
  58362. bottom: 50/414
  58363. }
  58364. },
  58365. },
  58366. [
  58367. {
  58368. name: "Normal",
  58369. height: math.unit(9.5, "meters"),
  58370. default: true
  58371. },
  58372. ]
  58373. ))
  58374. characterMakers.push(() => makeCharacter(
  58375. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58376. {
  58377. front: {
  58378. height: math.unit(8 + 9/12, "feet"),
  58379. name: "Front",
  58380. image: {
  58381. source: "./media/characters/atlas-goat/front.svg",
  58382. extra: 1462/1323,
  58383. bottom: 12/1474
  58384. }
  58385. },
  58386. },
  58387. [
  58388. {
  58389. name: "Normal",
  58390. height: math.unit(8 + 9/12, "feet"),
  58391. default: true
  58392. },
  58393. {
  58394. name: "Skyline",
  58395. height: math.unit(845, "feet")
  58396. },
  58397. {
  58398. name: "Orbital",
  58399. height: math.unit(93000, "miles")
  58400. },
  58401. {
  58402. name: "Constellation",
  58403. height: math.unit(27000, "lightyears")
  58404. },
  58405. ]
  58406. ))
  58407. characterMakers.push(() => makeCharacter(
  58408. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58409. {
  58410. side: {
  58411. height: math.unit(1.8, "meters"),
  58412. weight: math.unit(120, "kg"),
  58413. name: "Side",
  58414. image: {
  58415. source: "./media/characters/xie-ling/side.svg",
  58416. extra: 646/574,
  58417. bottom: 44/690
  58418. }
  58419. },
  58420. },
  58421. [
  58422. {
  58423. name: "Tiny",
  58424. height: math.unit(1.80, "meters")
  58425. },
  58426. {
  58427. name: "Small",
  58428. height: math.unit(6, "meters")
  58429. },
  58430. {
  58431. name: "Medium",
  58432. height: math.unit(15, "meters")
  58433. },
  58434. {
  58435. name: "Normal",
  58436. height: math.unit(30, "meters"),
  58437. default: true
  58438. },
  58439. {
  58440. name: "Above Normal",
  58441. height: math.unit(60, "meters")
  58442. },
  58443. {
  58444. name: "Big",
  58445. height: math.unit(220, "meters")
  58446. },
  58447. {
  58448. name: "Giant",
  58449. height: math.unit(2.2, "km")
  58450. },
  58451. {
  58452. name: "Macro",
  58453. height: math.unit(25, "km")
  58454. },
  58455. {
  58456. name: "Mega Macro",
  58457. height: math.unit(350, "km")
  58458. },
  58459. {
  58460. name: "Mega Macro+",
  58461. height: math.unit(5000, "km")
  58462. },
  58463. {
  58464. name: "Goddess",
  58465. height: math.unit(3, "multiverses")
  58466. },
  58467. ]
  58468. ))
  58469. characterMakers.push(() => makeCharacter(
  58470. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58471. {
  58472. frontSfw: {
  58473. height: math.unit(5 + 11/12, "feet"),
  58474. weight: math.unit(210, "lb"),
  58475. name: "Front",
  58476. image: {
  58477. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58478. extra: 1928/1821,
  58479. bottom: 45/1973
  58480. }
  58481. },
  58482. backSfw: {
  58483. height: math.unit(5 + 11/12, "feet"),
  58484. weight: math.unit(210, "lb"),
  58485. name: "Back",
  58486. image: {
  58487. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58488. extra: 1920/1813,
  58489. bottom: 34/1954
  58490. }
  58491. },
  58492. frontNsfw: {
  58493. height: math.unit(5 + 11/12, "feet"),
  58494. weight: math.unit(210, "lb"),
  58495. name: "Front (NSFW)",
  58496. image: {
  58497. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58498. extra: 1928/1821,
  58499. bottom: 45/1973
  58500. }
  58501. },
  58502. backNsfw: {
  58503. height: math.unit(5 + 11/12, "feet"),
  58504. weight: math.unit(210, "lb"),
  58505. name: "Back (NSFW)",
  58506. image: {
  58507. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58508. extra: 1920/1813,
  58509. bottom: 34/1954
  58510. }
  58511. },
  58512. },
  58513. [
  58514. {
  58515. name: "Normal",
  58516. height: math.unit(5 + 11/12, "feet"),
  58517. default: true
  58518. },
  58519. {
  58520. name: "Goddess",
  58521. height: math.unit(20 + 3/12, "feet")
  58522. },
  58523. {
  58524. name: "Breaker of Man",
  58525. height: math.unit(329 + 9/12, "feet")
  58526. },
  58527. {
  58528. name: "Solar Justice",
  58529. height: math.unit(0.6, "solarradii")
  58530. },
  58531. {
  58532. name: "She Who Judges",
  58533. height: math.unit(1, "universe")
  58534. },
  58535. ]
  58536. ))
  58537. characterMakers.push(() => makeCharacter(
  58538. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58539. {
  58540. casual_front: {
  58541. height: math.unit(6 + 1/12, "feet"),
  58542. weight: math.unit(190, "lb"),
  58543. preyCapacity: math.unit(1, "people"),
  58544. name: "Front",
  58545. image: {
  58546. source: "./media/characters/managarmr/casual-front.svg",
  58547. extra: 411/381,
  58548. bottom: 15/426
  58549. },
  58550. extraAttributes: {
  58551. "pawSize": {
  58552. name: "Paw Size",
  58553. power: 1,
  58554. type: "length",
  58555. base: math.unit(0.2, "meters")
  58556. },
  58557. },
  58558. form: "casual",
  58559. },
  58560. casual_back: {
  58561. height: math.unit(6 + 1/12, "feet"),
  58562. weight: math.unit(190, "lb"),
  58563. preyCapacity: math.unit(1, "people"),
  58564. name: "Back",
  58565. image: {
  58566. source: "./media/characters/managarmr/casual-back.svg",
  58567. extra: 413/383,
  58568. bottom: 13/426
  58569. },
  58570. extraAttributes: {
  58571. "pawSize": {
  58572. name: "Paw Size",
  58573. power: 1,
  58574. type: "length",
  58575. base: math.unit(0.2, "meters")
  58576. },
  58577. },
  58578. form: "casual",
  58579. },
  58580. base_front: {
  58581. height: math.unit(7, "feet"),
  58582. weight: math.unit(210, "lb"),
  58583. preyCapacity: math.unit(2, "people"),
  58584. name: "Front",
  58585. image: {
  58586. source: "./media/characters/managarmr/base-front.svg",
  58587. extra: 580/485,
  58588. bottom: 32/612
  58589. },
  58590. extraAttributes: {
  58591. "wingspan": {
  58592. name: "Wingspan",
  58593. power: 1,
  58594. type: "length",
  58595. base: math.unit(4, "meters")
  58596. },
  58597. "pawSize": {
  58598. name: "Paw Size",
  58599. power: 1,
  58600. type: "length",
  58601. base: math.unit(0.2, "meters")
  58602. },
  58603. },
  58604. form: "base",
  58605. },
  58606. "true-divine_front": {
  58607. height: math.unit(40, "feet"),
  58608. weight: math.unit(39000, "lb"),
  58609. preyCapacity: math.unit(375, "people"),
  58610. name: "Front",
  58611. image: {
  58612. source: "./media/characters/managarmr/true-divine-front.svg",
  58613. extra: 725/573,
  58614. bottom: 120/845
  58615. },
  58616. extraAttributes: {
  58617. "wingspan": {
  58618. name: "Wingspan",
  58619. power: 1,
  58620. type: "length",
  58621. base: math.unit(20, "meters")
  58622. },
  58623. "pawSize": {
  58624. name: "Paw Size",
  58625. power: 1,
  58626. type: "length",
  58627. base: math.unit(1.5, "meters")
  58628. },
  58629. },
  58630. form: "true-divine",
  58631. },
  58632. },
  58633. [
  58634. {
  58635. name: "Normal",
  58636. height: math.unit(6 + 1/12, "feet"),
  58637. form: "casual",
  58638. default: true
  58639. },
  58640. {
  58641. name: "Normal",
  58642. height: math.unit(7, "feet"),
  58643. form: "base",
  58644. default: true
  58645. },
  58646. ],
  58647. {
  58648. "casual": {
  58649. name: "Casual",
  58650. default: true
  58651. },
  58652. "base": {
  58653. name: "Base",
  58654. },
  58655. "true-divine": {
  58656. name: "True Divine",
  58657. },
  58658. }
  58659. ))
  58660. characterMakers.push(() => makeCharacter(
  58661. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58662. {
  58663. front: {
  58664. height: math.unit(1.8, "meters"),
  58665. weight: math.unit(110, "kg"),
  58666. name: "Front",
  58667. image: {
  58668. source: "./media/characters/mystra/front.svg",
  58669. extra: 529/442,
  58670. bottom: 31/560
  58671. }
  58672. },
  58673. frontLewd: {
  58674. height: math.unit(1.8, "meters"),
  58675. weight: math.unit(110, "kg"),
  58676. name: "Front (Lewd)",
  58677. image: {
  58678. source: "./media/characters/mystra/front-lewd.svg",
  58679. extra: 529/442,
  58680. bottom: 31/560
  58681. }
  58682. },
  58683. head: {
  58684. height: math.unit(1.63, "feet"),
  58685. name: "Head",
  58686. image: {
  58687. source: "./media/characters/mystra/head.svg"
  58688. }
  58689. },
  58690. paw: {
  58691. height: math.unit(1.9, "feet"),
  58692. name: "Paw",
  58693. image: {
  58694. source: "./media/characters/mystra/paw.svg"
  58695. }
  58696. },
  58697. },
  58698. [
  58699. {
  58700. name: "Incognito",
  58701. height: math.unit(2.3, "meters")
  58702. },
  58703. {
  58704. name: "Small Macro",
  58705. height: math.unit(300, "meters")
  58706. },
  58707. {
  58708. name: "Small Mega",
  58709. height: math.unit(2, "km")
  58710. },
  58711. {
  58712. name: "Mega",
  58713. height: math.unit(30, "km")
  58714. },
  58715. {
  58716. name: "Small Giga",
  58717. height: math.unit(100, "km")
  58718. },
  58719. {
  58720. name: "Giga",
  58721. height: math.unit(1000, "km"),
  58722. default: true
  58723. },
  58724. {
  58725. name: "Continental",
  58726. height: math.unit(5000, "km")
  58727. },
  58728. {
  58729. name: "Terra",
  58730. height: math.unit(20000, "km")
  58731. },
  58732. {
  58733. name: "Solar",
  58734. height: math.unit(2e6, "km")
  58735. },
  58736. {
  58737. name: "Galactic",
  58738. height: math.unit(528502, "lightyears")
  58739. },
  58740. {
  58741. name: "Universal",
  58742. height: math.unit(20, "universes")
  58743. },
  58744. ]
  58745. ))
  58746. characterMakers.push(() => makeCharacter(
  58747. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58748. {
  58749. front: {
  58750. height: math.unit(2, "meters"),
  58751. weight: math.unit(140, "kg"),
  58752. name: "Front",
  58753. image: {
  58754. source: "./media/characters/caleb/front.svg",
  58755. extra: 873/817,
  58756. bottom: 47/920
  58757. }
  58758. },
  58759. back: {
  58760. height: math.unit(2, "meters"),
  58761. weight: math.unit(140, "kg"),
  58762. name: "Back",
  58763. image: {
  58764. source: "./media/characters/caleb/back.svg",
  58765. extra: 877/828,
  58766. bottom: 24/901
  58767. }
  58768. },
  58769. snakeTail: {
  58770. height: math.unit(1.44, "feet"),
  58771. name: "Snake Tail",
  58772. image: {
  58773. source: "./media/characters/caleb/snake-tail.svg"
  58774. }
  58775. },
  58776. dick: {
  58777. height: math.unit(2.6, "feet"),
  58778. name: "Dick",
  58779. image: {
  58780. source: "./media/characters/caleb/dick.svg"
  58781. }
  58782. },
  58783. },
  58784. [
  58785. {
  58786. name: "Incognito",
  58787. height: math.unit(3, "meters")
  58788. },
  58789. {
  58790. name: "Home Size",
  58791. height: math.unit(200, "meters"),
  58792. default: true
  58793. },
  58794. {
  58795. name: "Macro",
  58796. height: math.unit(500, "meters")
  58797. },
  58798. {
  58799. name: "Big Macro",
  58800. height: math.unit(5, "km")
  58801. },
  58802. {
  58803. name: "Giga",
  58804. height: math.unit(250, "km")
  58805. },
  58806. {
  58807. name: "Giga+",
  58808. height: math.unit(5000, "km")
  58809. },
  58810. {
  58811. name: "Small Terra",
  58812. height: math.unit(35e3, "km")
  58813. },
  58814. {
  58815. name: "Terra",
  58816. height: math.unit(2e6, "km")
  58817. },
  58818. {
  58819. name: "Terra+",
  58820. height: math.unit(1.5e6, "km")
  58821. },
  58822. ]
  58823. ))
  58824. characterMakers.push(() => makeCharacter(
  58825. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58826. {
  58827. front: {
  58828. height: math.unit(2, "meters"),
  58829. weight: math.unit(120, "kg"),
  58830. name: "Front",
  58831. image: {
  58832. source: "./media/characters/gilirian/front.svg",
  58833. extra: 805/737,
  58834. bottom: 13/818
  58835. }
  58836. },
  58837. side: {
  58838. height: math.unit(2, "meters"),
  58839. weight: math.unit(120, "kg"),
  58840. name: "Side",
  58841. image: {
  58842. source: "./media/characters/gilirian/side.svg",
  58843. extra: 810/746,
  58844. bottom: 6/816
  58845. }
  58846. },
  58847. back: {
  58848. height: math.unit(2, "meters"),
  58849. weight: math.unit(120, "kg"),
  58850. name: "Back",
  58851. image: {
  58852. source: "./media/characters/gilirian/back.svg",
  58853. extra: 815/745,
  58854. bottom: 15/830
  58855. }
  58856. },
  58857. frontNsfw: {
  58858. height: math.unit(2, "meters"),
  58859. weight: math.unit(120, "kg"),
  58860. name: "Front (NSFW)",
  58861. image: {
  58862. source: "./media/characters/gilirian/front-nsfw.svg",
  58863. extra: 805/737,
  58864. bottom: 13/818
  58865. }
  58866. },
  58867. sideNsfw: {
  58868. height: math.unit(2, "meters"),
  58869. weight: math.unit(120, "kg"),
  58870. name: "Side (NSFW)",
  58871. image: {
  58872. source: "./media/characters/gilirian/side-nsfw.svg",
  58873. extra: 810/746,
  58874. bottom: 6/816
  58875. }
  58876. },
  58877. },
  58878. [
  58879. {
  58880. name: "Incognito",
  58881. height: math.unit(2, "meters"),
  58882. default: true
  58883. },
  58884. {
  58885. name: "Macro",
  58886. height: math.unit(250, "meters")
  58887. },
  58888. {
  58889. name: "Big Macro",
  58890. height: math.unit(1500, "meters")
  58891. },
  58892. {
  58893. name: "Mega",
  58894. height: math.unit(40, "km")
  58895. },
  58896. {
  58897. name: "Giga",
  58898. height: math.unit(300, "km")
  58899. },
  58900. {
  58901. name: "Extra Giga",
  58902. height: math.unit(5000, "km")
  58903. },
  58904. {
  58905. name: "Small Terra",
  58906. height: math.unit(10e3, "km")
  58907. },
  58908. {
  58909. name: "Terra",
  58910. height: math.unit(3e5, "km")
  58911. },
  58912. {
  58913. name: "Galactic",
  58914. height: math.unit(369950, "lightyears")
  58915. },
  58916. ]
  58917. ))
  58918. characterMakers.push(() => makeCharacter(
  58919. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58920. {
  58921. front: {
  58922. height: math.unit(2.5, "meters"),
  58923. weight: math.unit(230, "lb"),
  58924. name: "Front",
  58925. image: {
  58926. source: "./media/characters/tarken/front.svg",
  58927. extra: 764/720,
  58928. bottom: 49/813
  58929. }
  58930. },
  58931. back: {
  58932. height: math.unit(2.5, "meters"),
  58933. weight: math.unit(230, "lb"),
  58934. name: "Back",
  58935. image: {
  58936. source: "./media/characters/tarken/back.svg",
  58937. extra: 756/720,
  58938. bottom: 35/791
  58939. }
  58940. },
  58941. frontNsfw: {
  58942. height: math.unit(2.5, "meters"),
  58943. weight: math.unit(230, "lb"),
  58944. name: "Front (NSFW)",
  58945. image: {
  58946. source: "./media/characters/tarken/front-nsfw.svg",
  58947. extra: 764/720,
  58948. bottom: 49/813
  58949. }
  58950. },
  58951. backNsfw: {
  58952. height: math.unit(2.5, "meters"),
  58953. weight: math.unit(230, "lb"),
  58954. name: "Back (NSFW)",
  58955. image: {
  58956. source: "./media/characters/tarken/back-nsfw.svg",
  58957. extra: 756/720,
  58958. bottom: 35/791
  58959. }
  58960. },
  58961. head: {
  58962. height: math.unit(2.22, "feet"),
  58963. name: "Head",
  58964. image: {
  58965. source: "./media/characters/tarken/head.svg"
  58966. }
  58967. },
  58968. tail: {
  58969. height: math.unit(5.25, "feet"),
  58970. name: "Tail",
  58971. image: {
  58972. source: "./media/characters/tarken/tail.svg"
  58973. }
  58974. },
  58975. dick: {
  58976. height: math.unit(1.95, "feet"),
  58977. name: "Dick",
  58978. image: {
  58979. source: "./media/characters/tarken/dick.svg"
  58980. }
  58981. },
  58982. hand: {
  58983. height: math.unit(1.78, "feet"),
  58984. name: "Hand",
  58985. image: {
  58986. source: "./media/characters/tarken/hand.svg"
  58987. }
  58988. },
  58989. beam: {
  58990. height: math.unit(1.5, "feet"),
  58991. name: "Beam",
  58992. image: {
  58993. source: "./media/characters/tarken/beam.svg"
  58994. }
  58995. },
  58996. },
  58997. [
  58998. {
  58999. name: "Original Size",
  59000. height: math.unit(2.5, "meters")
  59001. },
  59002. {
  59003. name: "Macro",
  59004. height: math.unit(150, "meters"),
  59005. default: true
  59006. },
  59007. {
  59008. name: "Macro+",
  59009. height: math.unit(300, "meters")
  59010. },
  59011. {
  59012. name: "Mega",
  59013. height: math.unit(2, "km")
  59014. },
  59015. {
  59016. name: "Mega+",
  59017. height: math.unit(35, "km")
  59018. },
  59019.  {
  59020. name: "Mega++",
  59021. height: math.unit(60, "km")
  59022. },
  59023. {
  59024. name: "Giga",
  59025. height: math.unit(200, "km")
  59026. },
  59027. {
  59028. name: "Giga+",
  59029. height: math.unit(2500, "km")
  59030. },
  59031. {
  59032. name: "Giga++",
  59033. height: math.unit(6600, "km")
  59034. },
  59035. {
  59036. name: "Terra",
  59037. height: math.unit(20000, "km")
  59038. },
  59039. {
  59040. name: "Terra+",
  59041. height: math.unit(300000, "km")
  59042. },
  59043. ]
  59044. ))
  59045. characterMakers.push(() => makeCharacter(
  59046. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59047. {
  59048. magpie_dressed: {
  59049. height: math.unit(1.7, "meters"),
  59050. weight: math.unit(70, "kg"),
  59051. name: "Dressed",
  59052. image: {
  59053. source: "./media/characters/otreus/magpie-dressed.svg",
  59054. extra: 691/672,
  59055. bottom: 116/807
  59056. },
  59057. form: "magpie",
  59058. default: true
  59059. },
  59060. magpie_nude: {
  59061. height: math.unit(1.7, "meters"),
  59062. weight: math.unit(70, "kg"),
  59063. name: "Nude",
  59064. image: {
  59065. source: "./media/characters/otreus/magpie-nude.svg",
  59066. extra: 691/672,
  59067. bottom: 116/807
  59068. },
  59069. form: "magpie",
  59070. },
  59071. magpie_dressedLewd: {
  59072. height: math.unit(1.7, "meters"),
  59073. weight: math.unit(70, "kg"),
  59074. name: "Dressed (Lewd)",
  59075. image: {
  59076. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59077. extra: 691/672,
  59078. bottom: 116/807
  59079. },
  59080. form: "magpie",
  59081. },
  59082. magpie_nudeLewd: {
  59083. height: math.unit(1.7, "meters"),
  59084. weight: math.unit(70, "kg"),
  59085. name: "Nude (Lewd)",
  59086. image: {
  59087. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59088. extra: 691/672,
  59089. bottom: 116/807
  59090. },
  59091. form: "magpie",
  59092. },
  59093. magpie_leftFoot: {
  59094. height: math.unit(1.58, "feet"),
  59095. name: "Left Foot",
  59096. image: {
  59097. source: "./media/characters/otreus/magpie-left-foot.svg"
  59098. },
  59099. form: "magpie",
  59100. },
  59101. magpie_rightFoot: {
  59102. height: math.unit(1.58, "feet"),
  59103. name: "Right Foot",
  59104. image: {
  59105. source: "./media/characters/otreus/magpie-right-foot.svg"
  59106. },
  59107. form: "magpie",
  59108. },
  59109. magpie_wingspan: {
  59110. height: math.unit(2, "meters"),
  59111. weight: math.unit(70, "kg"),
  59112. name: "Wingspan",
  59113. image: {
  59114. source: "./media/characters/otreus/magpie-wingspan.svg"
  59115. },
  59116. extraAttributes: {
  59117. "wingspan": {
  59118. name: "Wingspan",
  59119. power: 1,
  59120. type: "length",
  59121. base: math.unit(3.35, "meters")
  59122. },
  59123. },
  59124. form: "magpie",
  59125. },
  59126. hippogriff_dressed: {
  59127. height: math.unit(1.7, "meters"),
  59128. weight: math.unit(70, "kg"),
  59129. name: "Dressed",
  59130. image: {
  59131. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59132. extra: 710/689,
  59133. bottom: 67/777
  59134. },
  59135. form: "hippogriff",
  59136. default: true
  59137. },
  59138. hippogriff_nude: {
  59139. height: math.unit(1.7, "meters"),
  59140. weight: math.unit(70, "kg"),
  59141. name: "Nude",
  59142. image: {
  59143. source: "./media/characters/otreus/hippogriff-nude.svg",
  59144. extra: 710/689,
  59145. bottom: 67/777
  59146. },
  59147. form: "hippogriff",
  59148. },
  59149. hippogriff_dressedLewd: {
  59150. height: math.unit(1.7, "meters"),
  59151. weight: math.unit(70, "kg"),
  59152. name: "Dressed (Lewd)",
  59153. image: {
  59154. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59155. extra: 710/689,
  59156. bottom: 67/777
  59157. },
  59158. form: "hippogriff",
  59159. },
  59160. hippogriff_nudeLewd: {
  59161. height: math.unit(1.7, "meters"),
  59162. weight: math.unit(70, "kg"),
  59163. name: "Nude (Lewd)",
  59164. image: {
  59165. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59166. extra: 710/689,
  59167. bottom: 67/777
  59168. },
  59169. form: "hippogriff",
  59170. },
  59171. },
  59172. [
  59173. {
  59174. name: "Original Size",
  59175. height: math.unit(1.7, "meters"),
  59176. allForms: true
  59177. },
  59178. {
  59179. name: "Incognito Size",
  59180. height: math.unit(2, "meters"),
  59181. allForms: true
  59182. },
  59183. {
  59184. name: "Mega",
  59185. height: math.unit(2, "km"),
  59186. allForms: true
  59187. },
  59188. {
  59189. name: "Mega+",
  59190. height: math.unit(40, "km"),
  59191. allForms: true
  59192. },
  59193. {
  59194. name: "Giga",
  59195. height: math.unit(250, "km"),
  59196. allForms: true
  59197. },
  59198. {
  59199. name: "Giga+",
  59200. height: math.unit(3000, "km"),
  59201. allForms: true
  59202. },
  59203. {
  59204. name: "Terra",
  59205. height: math.unit(20000, "km"),
  59206. allForms: true
  59207. },
  59208. {
  59209. name: "Solar (Home Size)",
  59210. height: math.unit(3e6, "km"),
  59211. allForms: true,
  59212. default: true
  59213. },
  59214. ],
  59215. {
  59216. "magpie": {
  59217. name: "Magpie",
  59218. default: true
  59219. },
  59220. "hippogriff": {
  59221. name: "Hippogriff",
  59222. },
  59223. }
  59224. ))
  59225. characterMakers.push(() => makeCharacter(
  59226. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59227. {
  59228. frontDressed: {
  59229. height: math.unit(1.8, "meters"),
  59230. weight: math.unit(90, "kg"),
  59231. name: "Front (Dressed)",
  59232. image: {
  59233. source: "./media/characters/thalia/front-dressed.svg",
  59234. extra: 478/402,
  59235. bottom: 55/533
  59236. }
  59237. },
  59238. backDressed: {
  59239. height: math.unit(1.8, "meters"),
  59240. weight: math.unit(90, "kg"),
  59241. name: "Back (Dressed)",
  59242. image: {
  59243. source: "./media/characters/thalia/back-dressed.svg",
  59244. extra: 500/424,
  59245. bottom: 15/515
  59246. }
  59247. },
  59248. frontNude: {
  59249. height: math.unit(1.8, "meters"),
  59250. weight: math.unit(90, "kg"),
  59251. name: "Front (Nude)",
  59252. image: {
  59253. source: "./media/characters/thalia/front-nude.svg",
  59254. extra: 478/402,
  59255. bottom: 55/533
  59256. }
  59257. },
  59258. backNude: {
  59259. height: math.unit(1.8, "meters"),
  59260. weight: math.unit(90, "kg"),
  59261. name: "Back (Nude)",
  59262. image: {
  59263. source: "./media/characters/thalia/back-nude.svg",
  59264. extra: 500/424,
  59265. bottom: 15/515
  59266. }
  59267. },
  59268. },
  59269. [
  59270. {
  59271. name: "Incognito",
  59272. height: math.unit(3, "meters")
  59273. },
  59274. {
  59275. name: "Macro",
  59276. height: math.unit(500, "meters")
  59277. },
  59278. {
  59279. name: "Mega",
  59280. height: math.unit(5, "km")
  59281. },
  59282. {
  59283. name: "Mega+",
  59284. height: math.unit(30, "km")
  59285. },
  59286. {
  59287. name: "Giga",
  59288. height: math.unit(350, "km")
  59289. },
  59290. {
  59291. name: "Giga+",
  59292. height: math.unit(4000, "km")
  59293. },
  59294. {
  59295. name: "Terra",
  59296. height: math.unit(35000, "km")
  59297. },
  59298. {
  59299. name: "Original Size",
  59300. height: math.unit(130000, "km")
  59301. },
  59302. {
  59303. name: "Solar (Home Size)",
  59304. height: math.unit(4e6, "km"),
  59305. default: true
  59306. },
  59307. ]
  59308. ))
  59309. characterMakers.push(() => makeCharacter(
  59310. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59311. {
  59312. front: {
  59313. height: math.unit(1.8, "meters"),
  59314. weight: math.unit(95, "kg"),
  59315. name: "Front",
  59316. image: {
  59317. source: "./media/characters/shango/front.svg",
  59318. extra: 1925/1774,
  59319. bottom: 67/1992
  59320. }
  59321. },
  59322. back: {
  59323. height: math.unit(1.8, "meters"),
  59324. weight: math.unit(95, "kg"),
  59325. name: "Back",
  59326. image: {
  59327. source: "./media/characters/shango/back.svg",
  59328. extra: 1915/1766,
  59329. bottom: 52/1967
  59330. }
  59331. },
  59332. frontLewd: {
  59333. height: math.unit(1.8, "meters"),
  59334. weight: math.unit(95, "kg"),
  59335. name: "Front (Lewd)",
  59336. image: {
  59337. source: "./media/characters/shango/front-lewd.svg",
  59338. extra: 1925/1774,
  59339. bottom: 67/1992
  59340. }
  59341. },
  59342. backLewd: {
  59343. height: math.unit(1.8, "meters"),
  59344. weight: math.unit(95, "kg"),
  59345. name: "Back (Lewd)",
  59346. image: {
  59347. source: "./media/characters/shango/back-lewd.svg",
  59348. extra: 1915/1766,
  59349. bottom: 52/1967
  59350. }
  59351. },
  59352. maw: {
  59353. height: math.unit(1.64, "feet"),
  59354. name: "Maw",
  59355. image: {
  59356. source: "./media/characters/shango/maw.svg"
  59357. }
  59358. },
  59359. dick: {
  59360. height: math.unit(2.14, "feet"),
  59361. name: "Dick",
  59362. image: {
  59363. source: "./media/characters/shango/dick.svg"
  59364. }
  59365. },
  59366. },
  59367. [
  59368. {
  59369. name: "Incognito",
  59370. height: math.unit(1.8, "meters")
  59371. },
  59372. {
  59373. name: "Home Size",
  59374. height: math.unit(60, "meters"),
  59375. default: true
  59376. },
  59377. {
  59378. name: "Macro",
  59379. height: math.unit(450, "meters")
  59380. },
  59381. {
  59382. name: "Mega",
  59383. height: math.unit(6, "km")
  59384. },
  59385. {
  59386. name: "Mega+",
  59387. height: math.unit(35, "km")
  59388. },
  59389. {
  59390. name: "Giga",
  59391. height: math.unit(500, "km")
  59392. },
  59393. {
  59394. name: "Giga+",
  59395. height: math.unit(5000, "km")
  59396. },
  59397. {
  59398. name: "Terra",
  59399. height: math.unit(60000, "km")
  59400. },
  59401. {
  59402. name: "Terra+",
  59403. height: math.unit(400000, "km")
  59404. },
  59405. ]
  59406. ))
  59407. characterMakers.push(() => makeCharacter(
  59408. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59409. {
  59410. front: {
  59411. height: math.unit(2, "meters"),
  59412. weight: math.unit(95, "kg"),
  59413. name: "Front",
  59414. image: {
  59415. source: "./media/characters/osiris-gryphon/front.svg",
  59416. extra: 1508/1313,
  59417. bottom: 87/1595
  59418. }
  59419. },
  59420. back: {
  59421. height: math.unit(2, "meters"),
  59422. weight: math.unit(95, "kg"),
  59423. name: "Back",
  59424. image: {
  59425. source: "./media/characters/osiris-gryphon/back.svg",
  59426. extra: 1436/1309,
  59427. bottom: 64/1500
  59428. }
  59429. },
  59430. frontLewd: {
  59431. height: math.unit(2, "meters"),
  59432. weight: math.unit(95, "kg"),
  59433. name: "Front-lewd",
  59434. image: {
  59435. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59436. extra: 1508/1313,
  59437. bottom: 87/1595
  59438. }
  59439. },
  59440. wing: {
  59441. height: math.unit(6.3333, "feet"),
  59442. name: "Wing",
  59443. image: {
  59444. source: "./media/characters/osiris-gryphon/wing.svg"
  59445. }
  59446. },
  59447. },
  59448. [
  59449. {
  59450. name: "Incognito",
  59451. height: math.unit(2, "meters")
  59452. },
  59453. {
  59454. name: "Home Size",
  59455. height: math.unit(30, "meters"),
  59456. default: true
  59457. },
  59458. {
  59459. name: "Macro",
  59460. height: math.unit(100, "meters")
  59461. },
  59462. {
  59463. name: "Macro+",
  59464. height: math.unit(350, "meters")
  59465. },
  59466. {
  59467. name: "Mega",
  59468. height: math.unit(40, "km")
  59469. },
  59470. {
  59471. name: "Giga",
  59472. height: math.unit(300, "km")
  59473. },
  59474. {
  59475. name: "Giga+",
  59476. height: math.unit(2000, "km")
  59477. },
  59478. {
  59479. name: "Terra",
  59480. height: math.unit(30000, "km")
  59481. },
  59482. ]
  59483. ))
  59484. characterMakers.push(() => makeCharacter(
  59485. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59486. {
  59487. front: {
  59488. height: math.unit(2.5, "meters"),
  59489. weight: math.unit(200, "kg"),
  59490. name: "Front",
  59491. image: {
  59492. source: "./media/characters/atlas-dragon/front.svg",
  59493. extra: 745/462,
  59494. bottom: 36/781
  59495. }
  59496. },
  59497. back: {
  59498. height: math.unit(2.5, "meters"),
  59499. weight: math.unit(200, "kg"),
  59500. name: "Back",
  59501. image: {
  59502. source: "./media/characters/atlas-dragon/back.svg",
  59503. extra: 848/822,
  59504. bottom: 57/905
  59505. }
  59506. },
  59507. frontLewd: {
  59508. height: math.unit(2.5, "meters"),
  59509. weight: math.unit(200, "kg"),
  59510. name: "Front (Lewd)",
  59511. image: {
  59512. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59513. extra: 745/462,
  59514. bottom: 36/781
  59515. }
  59516. },
  59517. backLewd: {
  59518. height: math.unit(2.5, "meters"),
  59519. weight: math.unit(200, "kg"),
  59520. name: "Back (Lewd)",
  59521. image: {
  59522. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59523. extra: 848/822,
  59524. bottom: 57/905
  59525. }
  59526. },
  59527. },
  59528. [
  59529. {
  59530. name: "Incognito",
  59531. height: math.unit(2.5, "meters")
  59532. },
  59533. {
  59534. name: "Small Macro",
  59535. height: math.unit(50, "meters")
  59536. },
  59537. {
  59538. name: "Macro",
  59539. height: math.unit(350, "meters")
  59540. },
  59541. {
  59542. name: "Mega",
  59543. height: math.unit(5.5, "kilometers")
  59544. },
  59545. {
  59546. name: "Mega+",
  59547. height: math.unit(50, "km")
  59548. },
  59549. {
  59550. name: "Giga",
  59551. height: math.unit(350, "km")
  59552. },
  59553. {
  59554. name: "Giga+",
  59555. height: math.unit(2000, "km")
  59556. },
  59557. {
  59558. name: "Giga++",
  59559. height: math.unit(6500, "km")
  59560. },
  59561. {
  59562. name: "Terra",
  59563. height: math.unit(30000, "km")
  59564. },
  59565. {
  59566. name: "Terra+",
  59567. height: math.unit(250000, "km")
  59568. },
  59569. {
  59570. name: "True Size",
  59571. height: math.unit(100, "multiverses"),
  59572. default: true
  59573. },
  59574. ]
  59575. ))
  59576. characterMakers.push(() => makeCharacter(
  59577. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59578. {
  59579. front: {
  59580. height: math.unit(1.8, "m"),
  59581. weight: math.unit(120, "kg"),
  59582. name: "Front",
  59583. image: {
  59584. source: "./media/characters/chey/front.svg",
  59585. extra: 1359/1270,
  59586. bottom: 18/1377
  59587. }
  59588. },
  59589. arm: {
  59590. height: math.unit(2.05, "feet"),
  59591. name: "Arm",
  59592. image: {
  59593. source: "./media/characters/chey/arm.svg"
  59594. }
  59595. },
  59596. head: {
  59597. height: math.unit(1.89, "feet"),
  59598. name: "Head",
  59599. image: {
  59600. source: "./media/characters/chey/head.svg"
  59601. }
  59602. },
  59603. },
  59604. [
  59605. {
  59606. name: "Original Size",
  59607. height: math.unit(5, "cm")
  59608. },
  59609. {
  59610. name: "Incognito Size",
  59611. height: math.unit(2.4, "m")
  59612. },
  59613. {
  59614. name: "Home Size",
  59615. height: math.unit(200, "meters"),
  59616. default: true
  59617. },
  59618. {
  59619. name: "Mega",
  59620. height: math.unit(2, "km")
  59621. },
  59622. {
  59623. name: "Giga (Preferred Size)",
  59624. height: math.unit(2000, "km")
  59625. },
  59626. {
  59627. name: "Giga+",
  59628. height: math.unit(6000, "km")
  59629. },
  59630. {
  59631. name: "Terra",
  59632. height: math.unit(17000, "km")
  59633. },
  59634. {
  59635. name: "Terra+",
  59636. height: math.unit(75000, "km")
  59637. },
  59638. {
  59639. name: "Terra++",
  59640. height: math.unit(225000, "km")
  59641. },
  59642. ]
  59643. ))
  59644. characterMakers.push(() => makeCharacter(
  59645. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59646. {
  59647. side: {
  59648. height: math.unit(7.8, "meters"),
  59649. name: "Side",
  59650. image: {
  59651. source: "./media/characters/ragnarok/side.svg",
  59652. extra: 725/621,
  59653. bottom: 72/797
  59654. }
  59655. },
  59656. },
  59657. [
  59658. {
  59659. name: "Normal",
  59660. height: math.unit(7.8, "meters"),
  59661. default: true
  59662. },
  59663. ]
  59664. ))
  59665. characterMakers.push(() => makeCharacter(
  59666. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59667. {
  59668. hyena_front: {
  59669. height: math.unit(2.1, "meters"),
  59670. weight: math.unit(110, "kg"),
  59671. name: "Front",
  59672. image: {
  59673. source: "./media/characters/nima/hyena-front.svg",
  59674. extra: 1904/1796,
  59675. bottom: 67/1971
  59676. },
  59677. form: "hyena",
  59678. },
  59679. hyena_back: {
  59680. height: math.unit(2.1, "meters"),
  59681. weight: math.unit(110, "kg"),
  59682. name: "Back",
  59683. image: {
  59684. source: "./media/characters/nima/hyena-back.svg",
  59685. extra: 1964/1884,
  59686. bottom: 35/1999
  59687. },
  59688. form: "hyena",
  59689. },
  59690. shark_front: {
  59691. height: math.unit(1.95, "meters"),
  59692. weight: math.unit(110, "kg"),
  59693. name: "Front",
  59694. image: {
  59695. source: "./media/characters/nima/shark-front.svg",
  59696. extra: 2238/2013,
  59697. bottom: 0/223
  59698. },
  59699. form: "shark",
  59700. },
  59701. paw: {
  59702. height: math.unit(1, "feet"),
  59703. name: "Paw",
  59704. image: {
  59705. source: "./media/characters/nima/paw.svg"
  59706. }
  59707. },
  59708. circlet: {
  59709. height: math.unit(0.3, "feet"),
  59710. name: "Circlet",
  59711. image: {
  59712. source: "./media/characters/nima/circlet.svg"
  59713. }
  59714. },
  59715. necklace: {
  59716. height: math.unit(1.2, "feet"),
  59717. name: "Necklace",
  59718. image: {
  59719. source: "./media/characters/nima/necklace.svg"
  59720. }
  59721. },
  59722. bracelet: {
  59723. height: math.unit(0.51, "feet"),
  59724. name: "Bracelet",
  59725. image: {
  59726. source: "./media/characters/nima/bracelet.svg"
  59727. }
  59728. },
  59729. armband: {
  59730. height: math.unit(1.3, "feet"),
  59731. name: "Armband",
  59732. image: {
  59733. source: "./media/characters/nima/armband.svg"
  59734. }
  59735. },
  59736. },
  59737. [
  59738. {
  59739. name: "Incognito",
  59740. height: math.unit(2.1, "meters"),
  59741. allForms: true
  59742. },
  59743. {
  59744. name: "Small Macro",
  59745. height: math.unit(50, "meters"),
  59746. allForms: true
  59747. },
  59748. {
  59749. name: "Macro",
  59750. height: math.unit(200, "meters"),
  59751. allForms: true
  59752. },
  59753. {
  59754. name: "Mega",
  59755. height: math.unit(2.5, "km"),
  59756. allForms: true
  59757. },
  59758. {
  59759. name: "Mega+",
  59760. height: math.unit(30, "km"),
  59761. allForms: true
  59762. },
  59763. {
  59764. name: "Giga (Home Size)",
  59765. height: math.unit(400, "km"),
  59766. allForms: true,
  59767. default: true
  59768. },
  59769. {
  59770. name: "Giga+",
  59771. height: math.unit(2500, "km"),
  59772. allForms: true
  59773. },
  59774. {
  59775. name: "Giga++",
  59776. height: math.unit(8000, "km"),
  59777. allForms: true
  59778. },
  59779. {
  59780. name: "Terra",
  59781. height: math.unit(20000, "km"),
  59782. allForms: true
  59783. },
  59784. {
  59785. name: "Terra+",
  59786. height: math.unit(70000, "km"),
  59787. allForms: true
  59788. },
  59789. {
  59790. name: "Terra++",
  59791. height: math.unit(600000, "km"),
  59792. allForms: true
  59793. },
  59794. {
  59795. name: "Galactic",
  59796. height: math.unit(40, "galaxies"),
  59797. allForms: true
  59798. },
  59799. {
  59800. name: "Universal",
  59801. height: math.unit(40, "universes"),
  59802. allForms: true
  59803. },
  59804. ],
  59805. {
  59806. "hyena": {
  59807. name: "Hyena",
  59808. default: true
  59809. },
  59810. "shark": {
  59811. name: "Shark",
  59812. },
  59813. }
  59814. ))
  59815. characterMakers.push(() => makeCharacter(
  59816. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59817. {
  59818. anthro_front: {
  59819. height: math.unit(1.5, "meters"),
  59820. name: "Front",
  59821. image: {
  59822. source: "./media/characters/adelaide/anthro-front.svg",
  59823. extra: 860/783,
  59824. bottom: 60/920
  59825. },
  59826. form: "anthro",
  59827. default: true
  59828. },
  59829. hand: {
  59830. height: math.unit(0.65, "feet"),
  59831. name: "Hand",
  59832. image: {
  59833. source: "./media/characters/adelaide/hand.svg"
  59834. },
  59835. form: "anthro"
  59836. },
  59837. foot: {
  59838. height: math.unit(1.38 * 259 / 314, "feet"),
  59839. name: "Foot",
  59840. image: {
  59841. source: "./media/characters/adelaide/foot.svg",
  59842. extra: 259/259,
  59843. bottom: 55/314
  59844. },
  59845. form: "anthro"
  59846. },
  59847. feather: {
  59848. height: math.unit(0.85, "feet"),
  59849. name: "Feather",
  59850. image: {
  59851. source: "./media/characters/adelaide/feather.svg"
  59852. },
  59853. form: "anthro"
  59854. },
  59855. feral_side: {
  59856. height: math.unit(1, "meters"),
  59857. name: "Side",
  59858. image: {
  59859. source: "./media/characters/adelaide/feral-side.svg",
  59860. extra: 550/467,
  59861. bottom: 37/587
  59862. },
  59863. form: "feral",
  59864. default: true
  59865. },
  59866. feral_hand: {
  59867. height: math.unit(0.58, "feet"),
  59868. name: "Hand",
  59869. image: {
  59870. source: "./media/characters/adelaide/hand.svg"
  59871. },
  59872. form: "feral"
  59873. },
  59874. feral_foot: {
  59875. height: math.unit(1.2 * 259 / 314, "feet"),
  59876. name: "Foot",
  59877. image: {
  59878. source: "./media/characters/adelaide/foot.svg",
  59879. extra: 259/259,
  59880. bottom: 55/314
  59881. },
  59882. form: "feral"
  59883. },
  59884. feral_feather: {
  59885. height: math.unit(0.63, "feet"),
  59886. name: "Feather",
  59887. image: {
  59888. source: "./media/characters/adelaide/feather.svg"
  59889. },
  59890. form: "feral"
  59891. },
  59892. },
  59893. [
  59894. {
  59895. name: "Normal",
  59896. height: math.unit(1.5, "meters"),
  59897. form: "anthro",
  59898. default: true
  59899. },
  59900. {
  59901. name: "Normal",
  59902. height: math.unit(1, "meters"),
  59903. form: "feral",
  59904. default: true
  59905. },
  59906. ],
  59907. {
  59908. "anthro": {
  59909. name: "Anthro",
  59910. default: true
  59911. },
  59912. "feral": {
  59913. name: "Feral",
  59914. },
  59915. }
  59916. ))
  59917. characterMakers.push(() => makeCharacter(
  59918. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59919. {
  59920. front: {
  59921. height: math.unit(2.5, "meters"),
  59922. name: "Front",
  59923. image: {
  59924. source: "./media/characters/goa/front.svg",
  59925. extra: 1109/1013,
  59926. bottom: 150/1259
  59927. }
  59928. },
  59929. },
  59930. [
  59931. {
  59932. name: "Normal",
  59933. height: math.unit(2.5, "meters"),
  59934. default: true
  59935. },
  59936. ]
  59937. ))
  59938. characterMakers.push(() => makeCharacter(
  59939. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59940. {
  59941. front: {
  59942. height: math.unit(2, "meters"),
  59943. weight: math.unit(100, "kg"),
  59944. name: "Front",
  59945. image: {
  59946. source: "./media/characters/kiki-weavile/front.svg",
  59947. extra: 357/332,
  59948. bottom: 60/417
  59949. }
  59950. },
  59951. },
  59952. [
  59953. {
  59954. name: "Normal",
  59955. height: math.unit(2, "meters"),
  59956. default: true
  59957. },
  59958. ]
  59959. ))
  59960. characterMakers.push(() => makeCharacter(
  59961. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59962. {
  59963. side: {
  59964. height: math.unit(1.6, "meters"),
  59965. name: "Side",
  59966. image: {
  59967. source: "./media/characters/liza/side.svg",
  59968. extra: 943/915,
  59969. bottom: 72/1015
  59970. }
  59971. },
  59972. },
  59973. [
  59974. {
  59975. name: "Normal",
  59976. height: math.unit(1.6, "meters"),
  59977. default: true
  59978. },
  59979. ]
  59980. ))
  59981. characterMakers.push(() => makeCharacter(
  59982. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59983. {
  59984. side: {
  59985. height: math.unit(2.5, "meters"),
  59986. preyCapacity: math.unit(1, "people"),
  59987. name: "Side",
  59988. image: {
  59989. source: "./media/characters/persephone-sweetbreath/side.svg",
  59990. extra: 796/700,
  59991. bottom: 44/840
  59992. }
  59993. },
  59994. sideVore: {
  59995. height: math.unit(2.5, "meters"),
  59996. preyCapacity: math.unit(1, "people"),
  59997. name: "Side (Full)",
  59998. image: {
  59999. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60000. extra: 796/700,
  60001. bottom: 44/840
  60002. }
  60003. },
  60004. },
  60005. [
  60006. {
  60007. name: "Normal",
  60008. height: math.unit(2.5, "meters"),
  60009. default: true
  60010. },
  60011. ]
  60012. ))
  60013. characterMakers.push(() => makeCharacter(
  60014. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60015. {
  60016. front: {
  60017. height: math.unit(32, "meters"),
  60018. name: "Front",
  60019. image: {
  60020. source: "./media/characters/pierce/front.svg",
  60021. extra: 1695/1475,
  60022. bottom: 185/1880
  60023. }
  60024. },
  60025. side: {
  60026. height: math.unit(32, "meters"),
  60027. name: "Side",
  60028. image: {
  60029. source: "./media/characters/pierce/side.svg",
  60030. extra: 974/859,
  60031. bottom: 43/1017
  60032. }
  60033. },
  60034. frontWingless: {
  60035. height: math.unit(32, "meters"),
  60036. name: "Front (Wingless)",
  60037. image: {
  60038. source: "./media/characters/pierce/front-wingless.svg",
  60039. extra: 1695/1475,
  60040. bottom: 185/1880
  60041. }
  60042. },
  60043. sideWingless: {
  60044. height: math.unit(32, "meters"),
  60045. name: "Side (Wingless)",
  60046. image: {
  60047. source: "./media/characters/pierce/side-wingless.svg",
  60048. extra: 974/859,
  60049. bottom: 43/1017
  60050. }
  60051. },
  60052. maw: {
  60053. height: math.unit(19.3, "meters"),
  60054. name: "Maw",
  60055. image: {
  60056. source: "./media/characters/pierce/maw.svg"
  60057. }
  60058. },
  60059. },
  60060. [
  60061. {
  60062. name: "Small",
  60063. height: math.unit(8.5, "meters")
  60064. },
  60065. {
  60066. name: "Normal",
  60067. height: math.unit(32, "meters"),
  60068. default: true
  60069. },
  60070. ]
  60071. ))
  60072. characterMakers.push(() => makeCharacter(
  60073. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60074. {
  60075. front: {
  60076. height: math.unit(2.3, "meters"),
  60077. weight: math.unit(165, "kg"),
  60078. name: "Front",
  60079. image: {
  60080. source: "./media/characters/shira/front.svg",
  60081. extra: 924/919,
  60082. bottom: 17/941
  60083. },
  60084. form: "cobra",
  60085. default: true
  60086. },
  60087. back: {
  60088. height: math.unit(2.3, "meters"),
  60089. weight: math.unit(165, "kg"),
  60090. name: "Back",
  60091. image: {
  60092. source: "./media/characters/shira/back.svg",
  60093. extra: 928/922,
  60094. bottom: 18/946
  60095. },
  60096. form: "cobra"
  60097. },
  60098. frontLewd: {
  60099. height: math.unit(2.3, "meters"),
  60100. weight: math.unit(165, "kg"),
  60101. name: "Front (Lewd)",
  60102. image: {
  60103. source: "./media/characters/shira/front-lewd.svg",
  60104. extra: 924/919,
  60105. bottom: 17/941
  60106. },
  60107. form: "cobra"
  60108. },
  60109. backLewd: {
  60110. height: math.unit(2.3, "meters"),
  60111. weight: math.unit(165, "kg"),
  60112. name: "Back (Lewd)",
  60113. image: {
  60114. source: "./media/characters/shira/back-lewd.svg",
  60115. extra: 928/922,
  60116. bottom: 18/946
  60117. },
  60118. form: "cobra"
  60119. },
  60120. maw: {
  60121. height: math.unit(1.14, "feet"),
  60122. name: "Maw",
  60123. image: {
  60124. source: "./media/characters/shira/maw.svg"
  60125. },
  60126. form: "cobra"
  60127. },
  60128. magma_front: {
  60129. height: math.unit(2.3, "meters"),
  60130. weight: math.unit(165, "kg"),
  60131. name: "Front",
  60132. image: {
  60133. source: "./media/characters/shira/magma-front.svg",
  60134. extra: 1870/1693,
  60135. bottom: 24/1894
  60136. },
  60137. form: "magma",
  60138. },
  60139. magma_back: {
  60140. height: math.unit(2.3, "meters"),
  60141. weight: math.unit(165, "kg"),
  60142. name: "Back",
  60143. image: {
  60144. source: "./media/characters/shira/magma-back.svg",
  60145. extra: 1918/1756,
  60146. bottom: 46/1964
  60147. },
  60148. form: "magma",
  60149. },
  60150. },
  60151. [
  60152. {
  60153. name: "Incognito",
  60154. height: math.unit(2.3, "meters"),
  60155. allForms: true
  60156. },
  60157. {
  60158. name: "Home Size",
  60159. height: math.unit(150, "meters"),
  60160. default: true,
  60161. allForms: true
  60162. },
  60163. {
  60164. name: "Macro",
  60165. height: math.unit(2, "km"),
  60166. allForms: true
  60167. },
  60168. {
  60169. name: "Mega",
  60170. height: math.unit(30, "km"),
  60171. allForms: true
  60172. },
  60173. {
  60174. name: "Giga",
  60175. height: math.unit(450, "km"),
  60176. allForms: true
  60177. },
  60178. {
  60179. name: "Giga+",
  60180. height: math.unit(3000, "km"),
  60181. allForms: true
  60182. },
  60183. {
  60184. name: "Giga++",
  60185. height: math.unit(6000, "km"),
  60186. allForms: true
  60187. },
  60188. {
  60189. name: "Terra",
  60190. height: math.unit(80000, "km"),
  60191. allForms: true
  60192. },
  60193. {
  60194. name: "Terra+",
  60195. height: math.unit(350000, "km"),
  60196. allForms: true
  60197. },
  60198. {
  60199. name: "Solar",
  60200. height: math.unit(1e6, "km"),
  60201. allForms: true
  60202. },
  60203. ],
  60204. {
  60205. "cobra": {
  60206. name: "Cobra",
  60207. default: true
  60208. },
  60209. "magma": {
  60210. name: "Magma Dragon",
  60211. },
  60212. }
  60213. ))
  60214. characterMakers.push(() => makeCharacter(
  60215. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60216. {
  60217. front: {
  60218. height: math.unit(2, "meters"),
  60219. weight: math.unit(160, "kg"),
  60220. name: "Front",
  60221. image: {
  60222. source: "./media/characters/daxerios/front.svg",
  60223. extra: 1334/1277,
  60224. bottom: 45/1379
  60225. }
  60226. },
  60227. frontLewd: {
  60228. height: math.unit(2, "meters"),
  60229. weight: math.unit(160, "kg"),
  60230. name: "Front (Lewd)",
  60231. image: {
  60232. source: "./media/characters/daxerios/front-lewd.svg",
  60233. extra: 1334/1277,
  60234. bottom: 45/1379
  60235. }
  60236. },
  60237. dick: {
  60238. height: math.unit(2.35, "feet"),
  60239. name: "Dick",
  60240. image: {
  60241. source: "./media/characters/daxerios/dick.svg"
  60242. }
  60243. },
  60244. },
  60245. [
  60246. {
  60247. name: "\"Small\"",
  60248. height: math.unit(5, "meters")
  60249. },
  60250. {
  60251. name: "Original Size",
  60252. height: math.unit(500, "meters"),
  60253. default: true
  60254. },
  60255. {
  60256. name: "Mega",
  60257. height: math.unit(2, "km")
  60258. },
  60259. {
  60260. name: "Mega+",
  60261. height: math.unit(35, "km")
  60262. },
  60263. {
  60264. name: "Giga",
  60265. height: math.unit(250, "km")
  60266. },
  60267. {
  60268. name: "Giga+",
  60269. height: math.unit(3000, "km")
  60270. },
  60271. {
  60272. name: "Terra",
  60273. height: math.unit(25000, "km")
  60274. },
  60275. {
  60276. name: "Terra+",
  60277. height: math.unit(300000, "km")
  60278. },
  60279. {
  60280. name: "Solar",
  60281. height: math.unit(1e6, "km")
  60282. },
  60283. ]
  60284. ))
  60285. characterMakers.push(() => makeCharacter(
  60286. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60287. {
  60288. front: {
  60289. height: math.unit(8 + 4/12, "feet"),
  60290. weight: math.unit(464, "lb"),
  60291. name: "Front",
  60292. image: {
  60293. source: "./media/characters/caveat/front.svg",
  60294. extra: 1861/1678,
  60295. bottom: 40/1901
  60296. }
  60297. },
  60298. },
  60299. [
  60300. {
  60301. name: "Normal",
  60302. height: math.unit(8 + 4/12, "feet"),
  60303. default: true
  60304. },
  60305. ]
  60306. ))
  60307. characterMakers.push(() => makeCharacter(
  60308. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60309. {
  60310. front: {
  60311. height: math.unit(12, "feet"),
  60312. weight: math.unit(1800, "lb"),
  60313. name: "Front",
  60314. image: {
  60315. source: "./media/characters/centbair/front.svg",
  60316. extra: 781/663,
  60317. bottom: 25/806
  60318. }
  60319. },
  60320. frontNsfw: {
  60321. height: math.unit(12, "feet"),
  60322. weight: math.unit(1800, "lb"),
  60323. name: "Front (NSFW)",
  60324. image: {
  60325. source: "./media/characters/centbair/front-nsfw.svg",
  60326. extra: 781/663,
  60327. bottom: 25/806
  60328. }
  60329. },
  60330. back: {
  60331. height: math.unit(12, "feet"),
  60332. weight: math.unit(1800, "lb"),
  60333. name: "Back",
  60334. image: {
  60335. source: "./media/characters/centbair/back.svg",
  60336. extra: 808/761,
  60337. bottom: 19/827
  60338. }
  60339. },
  60340. dick: {
  60341. height: math.unit(6.5, "feet"),
  60342. name: "Dick",
  60343. image: {
  60344. source: "./media/characters/centbair/dick.svg"
  60345. }
  60346. },
  60347. slit: {
  60348. height: math.unit(3.25, "feet"),
  60349. name: "Slit",
  60350. image: {
  60351. source: "./media/characters/centbair/slit.svg"
  60352. }
  60353. },
  60354. },
  60355. [
  60356. {
  60357. name: "Normal",
  60358. height: math.unit(12, "feet"),
  60359. default: true
  60360. },
  60361. ]
  60362. ))
  60363. characterMakers.push(() => makeCharacter(
  60364. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60365. {
  60366. front: {
  60367. height: math.unit(5 + 7/12, "feet"),
  60368. name: "Front",
  60369. image: {
  60370. source: "./media/characters/andy/front.svg",
  60371. extra: 634/588,
  60372. bottom: 36/670
  60373. },
  60374. extraAttributes: {
  60375. "pawLength": {
  60376. name: "Paw Length",
  60377. power: 1,
  60378. type: "length",
  60379. base: math.unit(1, "feet")
  60380. },
  60381. }
  60382. },
  60383. side: {
  60384. height: math.unit(5 + 7/12, "feet"),
  60385. name: "Side",
  60386. image: {
  60387. source: "./media/characters/andy/side.svg",
  60388. extra: 641/596,
  60389. bottom: 34/675
  60390. },
  60391. extraAttributes: {
  60392. "pawLength": {
  60393. name: "Paw Length",
  60394. power: 1,
  60395. type: "length",
  60396. base: math.unit(1, "feet")
  60397. },
  60398. }
  60399. },
  60400. back: {
  60401. height: math.unit(5 + 7/12, "feet"),
  60402. name: "Back",
  60403. image: {
  60404. source: "./media/characters/andy/back.svg",
  60405. extra: 618/583,
  60406. bottom: 39/657
  60407. },
  60408. extraAttributes: {
  60409. "pawLength": {
  60410. name: "Paw Length",
  60411. power: 1,
  60412. type: "length",
  60413. base: math.unit(1, "feet")
  60414. },
  60415. }
  60416. },
  60417. paw: {
  60418. height: math.unit(1.13, "feet"),
  60419. name: "Paw",
  60420. image: {
  60421. source: "./media/characters/andy/paw.svg"
  60422. }
  60423. },
  60424. },
  60425. [
  60426. {
  60427. name: "Micro",
  60428. height: math.unit(4, "inches")
  60429. },
  60430. {
  60431. name: "Normal",
  60432. height: math.unit(5 + 7/12, "feet"),
  60433. default: true
  60434. },
  60435. {
  60436. name: "Macro",
  60437. height: math.unit(390.42, "feet")
  60438. },
  60439. ]
  60440. ))
  60441. characterMakers.push(() => makeCharacter(
  60442. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60443. {
  60444. front: {
  60445. height: math.unit(7, "feet"),
  60446. weight: math.unit(250, "lb"),
  60447. name: "Front",
  60448. image: {
  60449. source: "./media/characters/vix-titan/front.svg",
  60450. extra: 460/428,
  60451. bottom: 15/475
  60452. },
  60453. extraAttributes: {
  60454. "pawWidth": {
  60455. name: "Paw Width",
  60456. power: 1,
  60457. type: "length",
  60458. base: math.unit(0.75, "feet")
  60459. },
  60460. }
  60461. },
  60462. },
  60463. [
  60464. {
  60465. name: "Normal",
  60466. height: math.unit(7, "feet"),
  60467. default: true
  60468. },
  60469. {
  60470. name: "Giant",
  60471. height: math.unit(1500, "feet")
  60472. },
  60473. {
  60474. name: "Mega",
  60475. height: math.unit(10, "miles")
  60476. },
  60477. {
  60478. name: "Giga",
  60479. height: math.unit(150, "miles")
  60480. },
  60481. {
  60482. name: "Tera",
  60483. height: math.unit(144000, "miles")
  60484. },
  60485. ]
  60486. ))
  60487. characterMakers.push(() => makeCharacter(
  60488. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60489. {
  60490. front: {
  60491. height: math.unit(6 + 2/12, "feet"),
  60492. name: "Front",
  60493. image: {
  60494. source: "./media/characters/reiku/front.svg",
  60495. extra: 1910/1757,
  60496. bottom: 103/2013
  60497. },
  60498. extraAttributes: {
  60499. "thighThickness": {
  60500. name: "Thigh Thickness",
  60501. power: 1,
  60502. type: "length",
  60503. base: math.unit(1.12, "feet")
  60504. },
  60505. "assThickness": {
  60506. name: "Ass Thickness",
  60507. power: 1,
  60508. type: "length",
  60509. base: math.unit(1.12*2, "feet")
  60510. },
  60511. }
  60512. },
  60513. side: {
  60514. height: math.unit(6 + 2/12, "feet"),
  60515. name: "Side",
  60516. image: {
  60517. source: "./media/characters/reiku/side.svg",
  60518. extra: 1846/1748,
  60519. bottom: 99/1945
  60520. },
  60521. extraAttributes: {
  60522. "thighThickness": {
  60523. name: "Thigh Thickness",
  60524. power: 1,
  60525. type: "length",
  60526. base: math.unit(1.12, "feet")
  60527. },
  60528. "assThickness": {
  60529. name: "Ass Thickness",
  60530. power: 1,
  60531. type: "length",
  60532. base: math.unit(1.12*2, "feet")
  60533. },
  60534. }
  60535. },
  60536. back: {
  60537. height: math.unit(6 + 2/12, "feet"),
  60538. name: "Back",
  60539. image: {
  60540. source: "./media/characters/reiku/back.svg",
  60541. extra: 1941/1786,
  60542. bottom: 34/1975
  60543. },
  60544. extraAttributes: {
  60545. "thighThickness": {
  60546. name: "Thigh Thickness",
  60547. power: 1,
  60548. type: "length",
  60549. base: math.unit(1.12, "feet")
  60550. },
  60551. "assThickness": {
  60552. name: "Ass Thickness",
  60553. power: 1,
  60554. type: "length",
  60555. base: math.unit(1.12*2, "feet")
  60556. },
  60557. }
  60558. },
  60559. head: {
  60560. height: math.unit(1.8, "feet"),
  60561. name: "Head",
  60562. image: {
  60563. source: "./media/characters/reiku/head.svg"
  60564. }
  60565. },
  60566. tailTop: {
  60567. height: math.unit(8.4, "feet"),
  60568. name: "Tail (Top)",
  60569. image: {
  60570. source: "./media/characters/reiku/tail-top.svg"
  60571. }
  60572. },
  60573. tailBottom: {
  60574. height: math.unit(8.4, "feet"),
  60575. name: "Tail (Bottom)",
  60576. image: {
  60577. source: "./media/characters/reiku/tail-bottom.svg"
  60578. }
  60579. },
  60580. foot: {
  60581. height: math.unit(2.6, "feet"),
  60582. name: "Foot",
  60583. image: {
  60584. source: "./media/characters/reiku/foot.svg"
  60585. }
  60586. },
  60587. footCurled: {
  60588. height: math.unit(2.3, "feet"),
  60589. name: "Foot (Curled)",
  60590. image: {
  60591. source: "./media/characters/reiku/foot-curled.svg"
  60592. }
  60593. },
  60594. footSide: {
  60595. height: math.unit(1.26, "feet"),
  60596. name: "Foot (Side)",
  60597. image: {
  60598. source: "./media/characters/reiku/foot-side.svg"
  60599. }
  60600. },
  60601. },
  60602. [
  60603. {
  60604. name: "Normal",
  60605. height: math.unit(6 + 2/12, "feet"),
  60606. default: true
  60607. },
  60608. ]
  60609. ))
  60610. characterMakers.push(() => makeCharacter(
  60611. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60612. {
  60613. front: {
  60614. height: math.unit(7, "feet"),
  60615. weight: math.unit(500, "kg"),
  60616. name: "Front",
  60617. image: {
  60618. source: "./media/characters/cialda/front.svg",
  60619. extra: 912/745,
  60620. bottom: 55/967
  60621. }
  60622. },
  60623. },
  60624. [
  60625. {
  60626. name: "Normal",
  60627. height: math.unit(7, "feet"),
  60628. default: true
  60629. },
  60630. ]
  60631. ))
  60632. characterMakers.push(() => makeCharacter(
  60633. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60634. {
  60635. side: {
  60636. height: math.unit(6, "feet"),
  60637. weight: math.unit(600, "lb"),
  60638. preyCapacity: math.unit(25, "liters"),
  60639. name: "Side",
  60640. image: {
  60641. source: "./media/characters/darkkin/side.svg",
  60642. extra: 1597/1447,
  60643. bottom: 101/1698
  60644. }
  60645. },
  60646. },
  60647. [
  60648. {
  60649. name: "Canon Height",
  60650. height: math.unit(568, "feet"),
  60651. default: true
  60652. },
  60653. ]
  60654. ))
  60655. characterMakers.push(() => makeCharacter(
  60656. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60657. {
  60658. front: {
  60659. height: math.unit(6, "feet"),
  60660. weight: math.unit(1500, "lb"),
  60661. preyCapacity: math.unit(3, "people"),
  60662. name: "Front",
  60663. image: {
  60664. source: "./media/characters/livnia/front.svg",
  60665. extra: 934/932,
  60666. bottom: 83/1017
  60667. }
  60668. },
  60669. back: {
  60670. height: math.unit(6, "feet"),
  60671. weight: math.unit(1500, "lb"),
  60672. preyCapacity: math.unit(3, "people"),
  60673. name: "Back",
  60674. image: {
  60675. source: "./media/characters/livnia/back.svg",
  60676. extra: 916/915,
  60677. bottom: 58/974
  60678. }
  60679. },
  60680. head: {
  60681. height: math.unit(1.53, "feet"),
  60682. name: "Head",
  60683. image: {
  60684. source: "./media/characters/livnia/head.svg"
  60685. }
  60686. },
  60687. maw: {
  60688. height: math.unit(0.78, "feet"),
  60689. name: "Maw",
  60690. image: {
  60691. source: "./media/characters/livnia/maw.svg"
  60692. }
  60693. },
  60694. genitals: {
  60695. height: math.unit(0.35, "feet"),
  60696. name: "Genitals",
  60697. image: {
  60698. source: "./media/characters/livnia/genitals.svg"
  60699. }
  60700. },
  60701. },
  60702. [
  60703. {
  60704. name: "Normal",
  60705. height: math.unit(1000, "feet"),
  60706. default: true
  60707. },
  60708. ]
  60709. ))
  60710. characterMakers.push(() => makeCharacter(
  60711. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60712. {
  60713. front: {
  60714. height: math.unit(4, "feet"),
  60715. weight: math.unit(73, "lb"),
  60716. name: "Front",
  60717. image: {
  60718. source: "./media/characters/hayaku/front.svg",
  60719. extra: 1011/888,
  60720. bottom: 33/1044
  60721. }
  60722. },
  60723. back: {
  60724. height: math.unit(4, "feet"),
  60725. weight: math.unit(73, "lb"),
  60726. name: "Back",
  60727. image: {
  60728. source: "./media/characters/hayaku/back.svg",
  60729. extra: 1040/930,
  60730. bottom: 20/1060
  60731. }
  60732. },
  60733. },
  60734. [
  60735. {
  60736. name: "Normal",
  60737. height: math.unit(4, "feet"),
  60738. default: true
  60739. },
  60740. ]
  60741. ))
  60742. characterMakers.push(() => makeCharacter(
  60743. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60744. {
  60745. front: {
  60746. height: math.unit(6 + 7/12, "feet"),
  60747. weight: math.unit(300, "lb"),
  60748. name: "Front",
  60749. image: {
  60750. source: "./media/characters/athena-bryzant/front.svg",
  60751. extra: 870/835,
  60752. bottom: 33/903
  60753. }
  60754. },
  60755. back: {
  60756. height: math.unit(6 + 7/12, "feet"),
  60757. weight: math.unit(300, "lb"),
  60758. name: "Back",
  60759. image: {
  60760. source: "./media/characters/athena-bryzant/back.svg",
  60761. extra: 858/823,
  60762. bottom: 30/888
  60763. }
  60764. },
  60765. head: {
  60766. height: math.unit(2.38, "feet"),
  60767. name: "Head",
  60768. image: {
  60769. source: "./media/characters/athena-bryzant/head.svg"
  60770. }
  60771. },
  60772. wings: {
  60773. height: math.unit(2.85, "feet"),
  60774. name: "Wings",
  60775. image: {
  60776. source: "./media/characters/athena-bryzant/wings.svg"
  60777. }
  60778. },
  60779. },
  60780. [
  60781. {
  60782. name: "Normal",
  60783. height: math.unit(6 + 7/12, "feet"),
  60784. default: true
  60785. },
  60786. {
  60787. name: "Big",
  60788. height: math.unit(8, "feet")
  60789. },
  60790. {
  60791. name: "Very Big",
  60792. height: math.unit(11, "feet")
  60793. },
  60794. ]
  60795. ))
  60796. characterMakers.push(() => makeCharacter(
  60797. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60798. {
  60799. side: {
  60800. height: math.unit(3, "meters"),
  60801. weight: math.unit(7500, "kg"),
  60802. preyCapacity: math.unit(1e12, "people"),
  60803. name: "Side",
  60804. image: {
  60805. source: "./media/characters/zel-kesh/side.svg",
  60806. extra: 910/407,
  60807. bottom: 147/1057
  60808. }
  60809. },
  60810. },
  60811. [
  60812. {
  60813. name: "Normal",
  60814. height: math.unit(3, "meters"),
  60815. default: true
  60816. },
  60817. ]
  60818. ))
  60819. characterMakers.push(() => makeCharacter(
  60820. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60821. {
  60822. front: {
  60823. height: math.unit(2, "meters"),
  60824. weight: math.unit(95, "kg"),
  60825. name: "Front",
  60826. image: {
  60827. source: "./media/characters/kane-fox/front.svg",
  60828. extra: 945/888,
  60829. bottom: 27/972
  60830. }
  60831. },
  60832. back: {
  60833. height: math.unit(2, "meters"),
  60834. weight: math.unit(95, "kg"),
  60835. name: "Back",
  60836. image: {
  60837. source: "./media/characters/kane-fox/back.svg",
  60838. extra: 959/914,
  60839. bottom: 15/974
  60840. }
  60841. },
  60842. frontLewd: {
  60843. height: math.unit(2, "meters"),
  60844. weight: math.unit(95, "kg"),
  60845. name: "Front (Lewd)",
  60846. image: {
  60847. source: "./media/characters/kane-fox/front-lewd.svg",
  60848. extra: 945/888,
  60849. bottom: 27/972
  60850. }
  60851. },
  60852. },
  60853. [
  60854. {
  60855. name: "Home Size",
  60856. height: math.unit(2, "meters"),
  60857. default: true
  60858. },
  60859. {
  60860. name: "Macro",
  60861. height: math.unit(200, "meters")
  60862. },
  60863. {
  60864. name: "Small Mega",
  60865. height: math.unit(3, "km")
  60866. },
  60867. {
  60868. name: "Mega",
  60869. height: math.unit(50, "km")
  60870. },
  60871. {
  60872. name: "Giga",
  60873. height: math.unit(200, "km")
  60874. },
  60875. {
  60876. name: "Giga+",
  60877. height: math.unit(2500, "km")
  60878. },
  60879. {
  60880. name: "Terra",
  60881. height: math.unit(70000, "km")
  60882. },
  60883. {
  60884. name: "Terra+",
  60885. height: math.unit(150000, "km")
  60886. },
  60887. {
  60888. name: "Terra++",
  60889. height: math.unit(400000, "km")
  60890. },
  60891. ]
  60892. ))
  60893. characterMakers.push(() => makeCharacter(
  60894. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60895. {
  60896. otter_front: {
  60897. height: math.unit(1.8, "meters"),
  60898. weight: math.unit(90, "kg"),
  60899. name: "Front",
  60900. image: {
  60901. source: "./media/characters/ayranus/otter-front.svg",
  60902. extra: 468/452,
  60903. bottom: 43/511
  60904. },
  60905. form: "otter",
  60906. },
  60907. otter_frontLewd: {
  60908. height: math.unit(1.8, "meters"),
  60909. weight: math.unit(90, "kg"),
  60910. name: "Front (Lewd)",
  60911. image: {
  60912. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60913. extra: 468/452,
  60914. bottom: 43/511
  60915. },
  60916. form: "otter",
  60917. },
  60918. lionbat_front: {
  60919. height: math.unit(1.8, "meters"),
  60920. weight: math.unit(90, "kg"),
  60921. name: "Front (Lewd)",
  60922. image: {
  60923. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60924. extra: 797/740,
  60925. bottom: 78/875
  60926. },
  60927. form: "lionbat",
  60928. },
  60929. paw: {
  60930. height: math.unit(1.5, "feet"),
  60931. name: "Paw",
  60932. image: {
  60933. source: "./media/characters/ayranus/paw.svg"
  60934. },
  60935. },
  60936. },
  60937. [
  60938. {
  60939. name: "Incognito",
  60940. height: math.unit(1.8, "meters"),
  60941. allForms: true
  60942. },
  60943. {
  60944. name: "Macro",
  60945. height: math.unit(60, "meters"),
  60946. allForms: true
  60947. },
  60948. {
  60949. name: "Macro+",
  60950. height: math.unit(200, "meters"),
  60951. allForms: true
  60952. },
  60953. {
  60954. name: "Mega",
  60955. height: math.unit(35, "km"),
  60956. allForms: true
  60957. },
  60958. {
  60959. name: "Giga",
  60960. height: math.unit(220, "km"),
  60961. allForms: true
  60962. },
  60963. {
  60964. name: "Giga+",
  60965. height: math.unit(1500, "km"),
  60966. allForms: true
  60967. },
  60968. {
  60969. name: "Terra",
  60970. height: math.unit(13000, "km"),
  60971. allForms: true
  60972. },
  60973. {
  60974. name: "Terra+",
  60975. height: math.unit(500000, "km"),
  60976. allForms: true
  60977. },
  60978. {
  60979. name: "Galactic",
  60980. height: math.unit(486080, "parsecs"),
  60981. default: true,
  60982. allForms: true
  60983. },
  60984. ],
  60985. {
  60986. "otter": {
  60987. name: "Otter",
  60988. default: true
  60989. },
  60990. "lionbat": {
  60991. name: "Lionbat",
  60992. },
  60993. }
  60994. ))
  60995. characterMakers.push(() => makeCharacter(
  60996. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60997. {
  60998. front: {
  60999. height: math.unit(7 + 4/12, "feet"),
  61000. weight: math.unit(400, "lb"),
  61001. name: "Front",
  61002. image: {
  61003. source: "./media/characters/proxy/front.svg",
  61004. extra: 1605/1542,
  61005. bottom: 55/1660
  61006. }
  61007. },
  61008. side: {
  61009. height: math.unit(7 + 4/12, "feet"),
  61010. weight: math.unit(400, "lb"),
  61011. name: "Side",
  61012. image: {
  61013. source: "./media/characters/proxy/side.svg",
  61014. extra: 794/759,
  61015. bottom: 6/800
  61016. }
  61017. },
  61018. hand: {
  61019. height: math.unit(1.54, "feet"),
  61020. name: "Hand",
  61021. image: {
  61022. source: "./media/characters/proxy/hand.svg"
  61023. }
  61024. },
  61025. paw: {
  61026. height: math.unit(1.53, "feet"),
  61027. name: "Paw",
  61028. image: {
  61029. source: "./media/characters/proxy/paw.svg"
  61030. }
  61031. },
  61032. maw: {
  61033. height: math.unit(1.9, "feet"),
  61034. name: "Maw",
  61035. image: {
  61036. source: "./media/characters/proxy/maw.svg"
  61037. }
  61038. },
  61039. },
  61040. [
  61041. {
  61042. name: "Normal",
  61043. height: math.unit(7 + 4/12, "feet"),
  61044. default: true
  61045. },
  61046. ]
  61047. ))
  61048. characterMakers.push(() => makeCharacter(
  61049. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61050. {
  61051. front: {
  61052. height: math.unit(4, "meters"),
  61053. name: "Front",
  61054. image: {
  61055. source: "./media/characters/crocozilla/front.svg",
  61056. extra: 1790/1742,
  61057. bottom: 78/1868
  61058. }
  61059. },
  61060. },
  61061. [
  61062. {
  61063. name: "Normal",
  61064. height: math.unit(4, "meters"),
  61065. default: true
  61066. },
  61067. ]
  61068. ))
  61069. characterMakers.push(() => makeCharacter(
  61070. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61071. {
  61072. front: {
  61073. height: math.unit(1.8, "meters"),
  61074. weight: math.unit(120, "kg"),
  61075. name: "Front",
  61076. image: {
  61077. source: "./media/characters/kurz/front.svg",
  61078. extra: 1960/1824,
  61079. bottom: 41/2001
  61080. }
  61081. },
  61082. back: {
  61083. height: math.unit(1.8, "meters"),
  61084. weight: math.unit(120, "kg"),
  61085. name: "Back",
  61086. image: {
  61087. source: "./media/characters/kurz/back.svg",
  61088. extra: 1906/1787,
  61089. bottom: 60/1966
  61090. }
  61091. },
  61092. frontLewd: {
  61093. height: math.unit(1.8, "meters"),
  61094. weight: math.unit(120, "kg"),
  61095. name: "Front (Lewd)",
  61096. image: {
  61097. source: "./media/characters/kurz/front-lewd.svg",
  61098. extra: 1960/1824,
  61099. bottom: 41/2001
  61100. }
  61101. },
  61102. maw: {
  61103. height: math.unit(0.69, "meters"),
  61104. name: "Maw",
  61105. image: {
  61106. source: "./media/characters/kurz/maw.svg"
  61107. }
  61108. },
  61109. },
  61110. [
  61111. {
  61112. name: "Original Size",
  61113. height: math.unit(1.8, "meters")
  61114. },
  61115. {
  61116. name: "Incognito Size",
  61117. height: math.unit(2.4, "meters"),
  61118. default: true
  61119. },
  61120. {
  61121. name: "Macro",
  61122. height: math.unit(30, "meters")
  61123. },
  61124. {
  61125. name: "Macro+",
  61126. height: math.unit(250, "meters")
  61127. },
  61128. {
  61129. name: "Mega",
  61130. height: math.unit(2, "km")
  61131. },
  61132. {
  61133. name: "Mega+",
  61134. height: math.unit(35, "km")
  61135. },
  61136. {
  61137. name: "Mega++",
  61138. height: math.unit(75, "km")
  61139. },
  61140. {
  61141. name: "Giga",
  61142. height: math.unit(250, "km")
  61143. },
  61144. {
  61145. name: "Terra",
  61146. height: math.unit(15000, "km")
  61147. },
  61148. {
  61149. name: "Terra+",
  61150. height: math.unit(2250000, "km")
  61151. },
  61152. ]
  61153. ))
  61154. characterMakers.push(() => makeCharacter(
  61155. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61156. {
  61157. front: {
  61158. height: math.unit(16 + 3/12, "feet"),
  61159. weight: math.unit(3575, "lb"),
  61160. name: "Front",
  61161. image: {
  61162. source: "./media/characters/nikita/front.svg",
  61163. extra: 1064/955,
  61164. bottom: 47/1111
  61165. }
  61166. },
  61167. },
  61168. [
  61169. {
  61170. name: "Normal",
  61171. height: math.unit(16 + 3/12, "feet"),
  61172. default: true
  61173. },
  61174. {
  61175. name: "Big",
  61176. height: math.unit(21, "feet")
  61177. },
  61178. {
  61179. name: "Biggest",
  61180. height: math.unit(50, "feet")
  61181. },
  61182. ]
  61183. ))
  61184. characterMakers.push(() => makeCharacter(
  61185. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61186. {
  61187. front: {
  61188. height: math.unit(1.92, "m"),
  61189. weight: math.unit(76, "kg"),
  61190. name: "Front",
  61191. image: {
  61192. source: "./media/characters/kyara/front.svg",
  61193. extra: 1550/1438,
  61194. bottom: 139/1689
  61195. }
  61196. },
  61197. back: {
  61198. height: math.unit(1.92, "m"),
  61199. weight: math.unit(76, "kg"),
  61200. name: "Back",
  61201. image: {
  61202. source: "./media/characters/kyara/back.svg",
  61203. extra: 1523/1427,
  61204. bottom: 83/1606
  61205. }
  61206. },
  61207. head: {
  61208. height: math.unit(1.22, "feet"),
  61209. name: "Head",
  61210. image: {
  61211. source: "./media/characters/kyara/head.svg"
  61212. }
  61213. },
  61214. maw: {
  61215. height: math.unit(0.73, "feet"),
  61216. name: "Maw",
  61217. image: {
  61218. source: "./media/characters/kyara/maw.svg"
  61219. }
  61220. },
  61221. paws: {
  61222. height: math.unit(0.95, "feet"),
  61223. name: "Paws",
  61224. image: {
  61225. source: "./media/characters/kyara/paws.svg"
  61226. }
  61227. },
  61228. },
  61229. [
  61230. {
  61231. name: "Normal",
  61232. height: math.unit(1.92, "meters"),
  61233. default: true
  61234. },
  61235. {
  61236. name: "Mini Macro",
  61237. height: math.unit(192, "meters")
  61238. },
  61239. {
  61240. name: "Macro",
  61241. height: math.unit(480, "meters")
  61242. },
  61243. {
  61244. name: "Mega Macro",
  61245. height: math.unit(1440, "meters")
  61246. },
  61247. ]
  61248. ))
  61249. characterMakers.push(() => makeCharacter(
  61250. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61251. {
  61252. front: {
  61253. height: math.unit(6, "feet"),
  61254. weight: math.unit(160, "lbs"),
  61255. preyCapacity: math.unit(0.05, "people"),
  61256. name: "Front",
  61257. image: {
  61258. source: "./media/characters/layla-amari/front.svg",
  61259. extra: 1922/1723,
  61260. bottom: 90/2012
  61261. }
  61262. },
  61263. back: {
  61264. height: math.unit(6, "feet"),
  61265. weight: math.unit(160, "lbs"),
  61266. preyCapacity: math.unit(0.05, "people"),
  61267. name: "Back",
  61268. image: {
  61269. source: "./media/characters/layla-amari/back.svg",
  61270. extra: 1917/1718,
  61271. bottom: 50/1967
  61272. }
  61273. },
  61274. frontDressed: {
  61275. height: math.unit(6, "feet"),
  61276. weight: math.unit(160, "lbs"),
  61277. preyCapacity: math.unit(0.05, "people"),
  61278. name: "Front (Dressed)",
  61279. image: {
  61280. source: "./media/characters/layla-amari/front-dressed.svg",
  61281. extra: 1922/1723,
  61282. bottom: 90/2012
  61283. }
  61284. },
  61285. face: {
  61286. height: math.unit(0.93, "feet"),
  61287. name: "Face",
  61288. image: {
  61289. source: "./media/characters/layla-amari/face.svg"
  61290. }
  61291. },
  61292. hand: {
  61293. height: math.unit(0.66 , "feet"),
  61294. name: "Hand",
  61295. image: {
  61296. source: "./media/characters/layla-amari/hand.svg"
  61297. }
  61298. },
  61299. foot: {
  61300. height: math.unit(1, "feet"),
  61301. name: "Foot",
  61302. image: {
  61303. source: "./media/characters/layla-amari/foot.svg"
  61304. }
  61305. },
  61306. necklace: {
  61307. height: math.unit(0.32, "feet"),
  61308. name: "Necklace",
  61309. image: {
  61310. source: "./media/characters/layla-amari/necklace.svg"
  61311. }
  61312. },
  61313. nipple: {
  61314. height: math.unit(0.2, "feet"),
  61315. name: "Nipple",
  61316. image: {
  61317. source: "./media/characters/layla-amari/nipple.svg"
  61318. }
  61319. },
  61320. slit: {
  61321. height: math.unit(0.26, "feet"),
  61322. name: "Slit",
  61323. image: {
  61324. source: "./media/characters/layla-amari/slit.svg"
  61325. }
  61326. },
  61327. },
  61328. [
  61329. {
  61330. name: "Natural",
  61331. height: math.unit(825, "feet"),
  61332. default: true
  61333. },
  61334. {
  61335. name: "Enhanced",
  61336. height: math.unit(8250, "feet")
  61337. },
  61338. {
  61339. name: "Apparent Size",
  61340. height: math.unit(9.04363e+8, "meters")
  61341. },
  61342. ]
  61343. ))
  61344. characterMakers.push(() => makeCharacter(
  61345. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61346. {
  61347. front: {
  61348. height: math.unit(1.3, "meters"),
  61349. name: "Front",
  61350. image: {
  61351. source: "./media/characters/percy/front.svg",
  61352. extra: 1444/1289,
  61353. bottom: 54/1498
  61354. }
  61355. },
  61356. },
  61357. [
  61358. {
  61359. name: "Normal",
  61360. height: math.unit(1.3, "meters"),
  61361. default: true
  61362. },
  61363. ]
  61364. ))
  61365. characterMakers.push(() => makeCharacter(
  61366. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61367. {
  61368. side: {
  61369. height: math.unit(10, "meters"),
  61370. name: "Side",
  61371. image: {
  61372. source: "./media/characters/grev/side.svg",
  61373. extra: 653/266,
  61374. bottom: 77/730
  61375. }
  61376. },
  61377. head: {
  61378. height: math.unit(16.2, "m"),
  61379. name: "Head",
  61380. image: {
  61381. source: "./media/characters/grev/head.svg"
  61382. }
  61383. },
  61384. dick: {
  61385. height: math.unit(2.8135932034, "m"),
  61386. name: "Dick",
  61387. image: {
  61388. source: "./media/characters/grev/dick.svg"
  61389. }
  61390. },
  61391. },
  61392. [
  61393. {
  61394. name: "Friend-Sized",
  61395. height: math.unit(80, "cm")
  61396. },
  61397. {
  61398. name: "Normal",
  61399. height: math.unit(10, "meters"),
  61400. default: true
  61401. },
  61402. {
  61403. name: "Macro",
  61404. height: math.unit(200, "meters")
  61405. },
  61406. ]
  61407. ))
  61408. characterMakers.push(() => makeCharacter(
  61409. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61410. {
  61411. front: {
  61412. height: math.unit(19.75, "feet"),
  61413. weight: math.unit(20000, "lb"),
  61414. name: "Front",
  61415. image: {
  61416. source: "./media/characters/azuuca/front.svg",
  61417. extra: 1593/1511,
  61418. bottom: 55/1648
  61419. }
  61420. },
  61421. },
  61422. [
  61423. {
  61424. name: "Normal",
  61425. height: math.unit(19.75, "feet"),
  61426. default: true
  61427. },
  61428. ]
  61429. ))
  61430. characterMakers.push(() => makeCharacter(
  61431. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61432. {
  61433. front: {
  61434. height: math.unit(15, "feet"),
  61435. weight: math.unit(1500, "lb"),
  61436. name: "Front",
  61437. image: {
  61438. source: "./media/characters/valuria/front.svg",
  61439. extra: 1588/1486,
  61440. bottom: 31/1619
  61441. }
  61442. },
  61443. },
  61444. [
  61445. {
  61446. name: "Normal",
  61447. height: math.unit(15, "feet"),
  61448. default: true
  61449. },
  61450. {
  61451. name: "Small",
  61452. height: math.unit(500, "feet")
  61453. },
  61454. {
  61455. name: "Macro",
  61456. height: math.unit(4000, "feet")
  61457. },
  61458. {
  61459. name: "Mega Macro",
  61460. height: math.unit(2000, "miles")
  61461. },
  61462. {
  61463. name: "Giga Macro",
  61464. height: math.unit(3e6, "miles")
  61465. },
  61466. ]
  61467. ))
  61468. characterMakers.push(() => makeCharacter(
  61469. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61470. {
  61471. front: {
  61472. height: math.unit(3500, "solarradii"),
  61473. name: "Front",
  61474. image: {
  61475. source: "./media/characters/terigaia/front.svg",
  61476. extra: 1531/1451,
  61477. bottom: 98/1629
  61478. }
  61479. },
  61480. },
  61481. [
  61482. {
  61483. name: "Normal",
  61484. height: math.unit(3500, "solarradii"),
  61485. default: true
  61486. },
  61487. ]
  61488. ))
  61489. characterMakers.push(() => makeCharacter(
  61490. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61491. {
  61492. front: {
  61493. height: math.unit(9.34, "feet"),
  61494. weight: math.unit(600, "lb"),
  61495. name: "Front",
  61496. image: {
  61497. source: "./media/characters/blair-blaziken/front.svg",
  61498. extra: 1557/1462,
  61499. bottom: 55/1612
  61500. }
  61501. },
  61502. },
  61503. [
  61504. {
  61505. name: "Normal",
  61506. height: math.unit(9.34, "feet"),
  61507. default: true
  61508. },
  61509. ]
  61510. ))
  61511. characterMakers.push(() => makeCharacter(
  61512. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61513. {
  61514. pistrogre_front: {
  61515. height: math.unit(10, "feet"),
  61516. weight: math.unit(10, "tons"),
  61517. name: "Front",
  61518. image: {
  61519. source: "./media/characters/braxia/pistrogre-front.svg",
  61520. extra: 1531/1334,
  61521. bottom: 114/1645
  61522. },
  61523. form: "pistrogre",
  61524. default: true
  61525. },
  61526. human_front: {
  61527. height: math.unit(10, "feet"),
  61528. weight: math.unit(10, "tons"),
  61529. name: "Front",
  61530. image: {
  61531. source: "./media/characters/braxia/human-front.svg",
  61532. extra: 1574/1501,
  61533. bottom: 37/1611
  61534. },
  61535. form: "human",
  61536. default: true
  61537. },
  61538. },
  61539. [
  61540. {
  61541. name: "Normal",
  61542. height: math.unit(10, "feet"),
  61543. default: true,
  61544. allForms: true
  61545. },
  61546. {
  61547. name: "Macro",
  61548. height: math.unit(1000, "feet"),
  61549. allForms: true
  61550. },
  61551. {
  61552. name: "Mega Macro",
  61553. height: math.unit(100, "miles"),
  61554. allForms: true
  61555. },
  61556. {
  61557. name: "Cosmic",
  61558. height: math.unit(1000000, "lightyears"),
  61559. allForms: true
  61560. },
  61561. {
  61562. name: "ϐѮԆԬӁꭍϞԢ",
  61563. height: math.unit(1000, "multiverses"),
  61564. allForms: true
  61565. },
  61566. ],
  61567. {
  61568. "pistrogre": {
  61569. name: "Pistrogre",
  61570. default: true
  61571. },
  61572. "human": {
  61573. name: "Human",
  61574. },
  61575. }
  61576. ))
  61577. characterMakers.push(() => makeCharacter(
  61578. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61579. {
  61580. front: {
  61581. height: math.unit(6 + 1/12, "feet"),
  61582. weight: math.unit(280, "lb"),
  61583. name: "Front",
  61584. image: {
  61585. source: "./media/characters/kiriga-yato/front.svg",
  61586. extra: 445/394,
  61587. bottom: 11/456
  61588. }
  61589. },
  61590. },
  61591. [
  61592. {
  61593. name: "Descended",
  61594. height: math.unit(3, "feet")
  61595. },
  61596. {
  61597. name: "Average",
  61598. height: math.unit(6 + 1/12, "feet"),
  61599. default: true
  61600. },
  61601. {
  61602. name: "Ascended",
  61603. height: math.unit(9 + 2/12, "feet")
  61604. },
  61605. ]
  61606. ))
  61607. characterMakers.push(() => makeCharacter(
  61608. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61609. {
  61610. front: {
  61611. height: math.unit(6, "feet"),
  61612. weight: math.unit(150, "lb"),
  61613. name: "Front",
  61614. image: {
  61615. source: "./media/characters/kylie/front.svg",
  61616. extra: 1114/1046,
  61617. bottom: 65/1179
  61618. },
  61619. extraAttributes: {
  61620. "hoofSize": {
  61621. name: "Hoof Size",
  61622. power: 2,
  61623. type: "area",
  61624. base: math.unit(0.034, "m^2")
  61625. },
  61626. "footSize": {
  61627. name: "Foot Size",
  61628. power: 2,
  61629. type: "area",
  61630. base: math.unit(0.75, "m^2")
  61631. },
  61632. }
  61633. },
  61634. side: {
  61635. height: math.unit(6, "feet"),
  61636. weight: math.unit(150, "lb"),
  61637. name: "Side",
  61638. image: {
  61639. source: "./media/characters/kylie/side.svg",
  61640. extra: 1178/1110,
  61641. bottom: 21/1199
  61642. },
  61643. extraAttributes: {
  61644. "hoofSize": {
  61645. name: "Hoof Size",
  61646. power: 2,
  61647. type: "area",
  61648. base: math.unit(0.034, "m^2")
  61649. },
  61650. "footSize": {
  61651. name: "Foot Size",
  61652. power: 2,
  61653. type: "area",
  61654. base: math.unit(0.75, "m^2")
  61655. },
  61656. }
  61657. },
  61658. back: {
  61659. height: math.unit(6, "feet"),
  61660. weight: math.unit(150, "lb"),
  61661. name: "Back",
  61662. image: {
  61663. source: "./media/characters/kylie/back.svg",
  61664. extra: 1115/1047,
  61665. bottom: 66/1181
  61666. },
  61667. extraAttributes: {
  61668. "hoofSize": {
  61669. name: "Hoof Size",
  61670. power: 2,
  61671. type: "area",
  61672. base: math.unit(0.034, "m^2")
  61673. },
  61674. "footSize": {
  61675. name: "Foot Size",
  61676. power: 2,
  61677. type: "area",
  61678. base: math.unit(0.75, "m^2")
  61679. },
  61680. }
  61681. },
  61682. head: {
  61683. height: math.unit(1.85, "feet"),
  61684. name: "Head",
  61685. image: {
  61686. source: "./media/characters/kylie/head.svg"
  61687. }
  61688. },
  61689. },
  61690. [
  61691. {
  61692. name: "Normal",
  61693. height: math.unit(90, "meters"),
  61694. default: true
  61695. },
  61696. ]
  61697. ))
  61698. characterMakers.push(() => makeCharacter(
  61699. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61700. {
  61701. front: {
  61702. height: math.unit(245, "feet"),
  61703. weight: math.unit(400000, "lb"),
  61704. name: "Front",
  61705. image: {
  61706. source: "./media/characters/sabado/front.svg",
  61707. extra: 1309/1164,
  61708. bottom: 29/1338
  61709. }
  61710. },
  61711. },
  61712. [
  61713. {
  61714. name: "Normal",
  61715. height: math.unit(245, "feet"),
  61716. default: true
  61717. },
  61718. ]
  61719. ))
  61720. characterMakers.push(() => makeCharacter(
  61721. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61722. {
  61723. shark_front: {
  61724. height: math.unit(2, "meters"),
  61725. weight: math.unit(200, "kg"),
  61726. name: "Front",
  61727. image: {
  61728. source: "./media/characters/zechal/shark-front.svg",
  61729. extra: 969/925,
  61730. bottom: 74/1043
  61731. },
  61732. form: "shark",
  61733. },
  61734. shark_back: {
  61735. height: math.unit(2, "meters"),
  61736. weight: math.unit(200, "kg"),
  61737. name: "Back",
  61738. image: {
  61739. source: "./media/characters/zechal/shark-back.svg",
  61740. extra: 994/949,
  61741. bottom: 176/1170
  61742. },
  61743. form: "shark",
  61744. },
  61745. shark_frontLewd: {
  61746. height: math.unit(2, "meters"),
  61747. weight: math.unit(200, "kg"),
  61748. name: "Front (Lewd)",
  61749. image: {
  61750. source: "./media/characters/zechal/shark-front-lewd.svg",
  61751. extra: 969/925,
  61752. bottom: 74/1043
  61753. },
  61754. form: "shark",
  61755. },
  61756. shark_side: {
  61757. height: math.unit(1.56, "meters"),
  61758. weight: math.unit(200, "kg"),
  61759. name: "Side",
  61760. image: {
  61761. source: "./media/characters/zechal/shark-side.svg"
  61762. },
  61763. form: "shark",
  61764. },
  61765. dragon_front: {
  61766. height: math.unit(2, "meters"),
  61767. weight: math.unit(200, "kg"),
  61768. name: "Front",
  61769. image: {
  61770. source: "./media/characters/zechal/dragon-front.svg",
  61771. extra: 1041/925,
  61772. bottom: 74/1115
  61773. },
  61774. form: "dragon",
  61775. },
  61776. dragon_back: {
  61777. height: math.unit(2, "meters"),
  61778. weight: math.unit(200, "kg"),
  61779. name: "Back",
  61780. image: {
  61781. source: "./media/characters/zechal/dragon-back.svg",
  61782. extra: 1061/949,
  61783. bottom: 176/1237
  61784. },
  61785. form: "dragon",
  61786. },
  61787. dragon_frontLewd: {
  61788. height: math.unit(2, "meters"),
  61789. weight: math.unit(200, "kg"),
  61790. name: "Front (Lewd)",
  61791. image: {
  61792. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61793. extra: 1041/925,
  61794. bottom: 74/1115
  61795. },
  61796. form: "dragon",
  61797. },
  61798. dragon_side: {
  61799. height: math.unit(1.56, "meters"),
  61800. weight: math.unit(200, "kg"),
  61801. name: "Side",
  61802. image: {
  61803. source: "./media/characters/zechal/dragon-side.svg"
  61804. },
  61805. form: "dragon",
  61806. },
  61807. foot: {
  61808. height: math.unit(0.5, "meters"),
  61809. name: "Foot",
  61810. image: {
  61811. source: "./media/characters/zechal/foot.svg"
  61812. }
  61813. },
  61814. sheathFront: {
  61815. height: math.unit(0.45, "meters"),
  61816. name: "Sheath (Front)",
  61817. image: {
  61818. source: "./media/characters/zechal/sheath-front.svg"
  61819. }
  61820. },
  61821. sheathSide: {
  61822. height: math.unit(0.45, "meters"),
  61823. name: "Sheath (Side)",
  61824. image: {
  61825. source: "./media/characters/zechal/sheath-side.svg"
  61826. }
  61827. },
  61828. },
  61829. [
  61830. {
  61831. name: "Incognito",
  61832. height: math.unit(2, "meters"),
  61833. allForms: true
  61834. },
  61835. {
  61836. name: "Small Rampage",
  61837. height: math.unit(25, "meters"),
  61838. allForms: true
  61839. },
  61840. {
  61841. name: "Home Size",
  61842. height: math.unit(250, "meters"),
  61843. allForms: true,
  61844. default: true
  61845. },
  61846. {
  61847. name: "Macro+",
  61848. height: math.unit(700, "meters"),
  61849. allForms: true
  61850. },
  61851. {
  61852. name: "Small Mega",
  61853. height: math.unit(3, "km"),
  61854. allForms: true
  61855. },
  61856. {
  61857. name: "Mega",
  61858. height: math.unit(15, "km"),
  61859. allForms: true
  61860. },
  61861. {
  61862. name: "Giga",
  61863. height: math.unit(300, "km"),
  61864. allForms: true
  61865. },
  61866. {
  61867. name: "Giga+",
  61868. height: math.unit(1750, "km"),
  61869. allForms: true
  61870. },
  61871. {
  61872. name: "Continental",
  61873. height: math.unit(5000, "km"),
  61874. allForms: true
  61875. },
  61876. {
  61877. name: "Terra",
  61878. height: math.unit(20000, "km"),
  61879. allForms: true
  61880. },
  61881. {
  61882. name: "Terra+",
  61883. height: math.unit(300000, "km"),
  61884. allForms: true
  61885. },
  61886. {
  61887. name: "Solar",
  61888. height: math.unit(40000000, "km"),
  61889. allForms: true
  61890. },
  61891. {
  61892. name: "Galactic",
  61893. height: math.unit(810133, "parsecs"),
  61894. allForms: true
  61895. },
  61896. {
  61897. name: "Universal",
  61898. height: math.unit(25, "universes"),
  61899. allForms: true
  61900. },
  61901. ],
  61902. {
  61903. "shark": {
  61904. name: "Shark",
  61905. default: true
  61906. },
  61907. "dragon": {
  61908. name: "Dragon",
  61909. },
  61910. }
  61911. ))
  61912. characterMakers.push(() => makeCharacter(
  61913. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61914. {
  61915. front: {
  61916. height: math.unit(2.2, "meters"),
  61917. weight: math.unit(150, "kg"),
  61918. name: "Front",
  61919. image: {
  61920. source: "./media/characters/sergis/front.svg",
  61921. extra: 1314/1312,
  61922. bottom: 112/1426
  61923. }
  61924. },
  61925. back: {
  61926. height: math.unit(2.2, "meters"),
  61927. weight: math.unit(150, "kg"),
  61928. name: "Back",
  61929. image: {
  61930. source: "./media/characters/sergis/back.svg",
  61931. extra: 1335/1333,
  61932. bottom: 19/1354
  61933. }
  61934. },
  61935. frontLewd: {
  61936. height: math.unit(2.2, "meters"),
  61937. weight: math.unit(150, "kg"),
  61938. name: "Front (Lewd)",
  61939. image: {
  61940. source: "./media/characters/sergis/front-lewd.svg",
  61941. extra: 1314/1312,
  61942. bottom: 112/1426
  61943. }
  61944. },
  61945. frontDressed: {
  61946. height: math.unit(2.2, "meters"),
  61947. weight: math.unit(150, "kg"),
  61948. name: "Front (Dressed)",
  61949. image: {
  61950. source: "./media/characters/sergis/front-dressed.svg",
  61951. extra: 1330/1328,
  61952. bottom: 95/1425
  61953. }
  61954. },
  61955. frontDressedLewd: {
  61956. height: math.unit(2.2, "meters"),
  61957. weight: math.unit(150, "kg"),
  61958. name: "Front (Dressed, Lewd)",
  61959. image: {
  61960. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61961. extra: 1330/1328,
  61962. bottom: 95/1425
  61963. }
  61964. },
  61965. maw: {
  61966. height: math.unit(0.48, "meters"),
  61967. name: "Maw",
  61968. image: {
  61969. source: "./media/characters/sergis/maw.svg"
  61970. }
  61971. },
  61972. sheath: {
  61973. height: math.unit(0.38, "meters"),
  61974. name: "Sheath",
  61975. image: {
  61976. source: "./media/characters/sergis/sheath.svg"
  61977. }
  61978. },
  61979. },
  61980. [
  61981. {
  61982. name: "Incognito Size",
  61983. height: math.unit(2.2, "meters")
  61984. },
  61985. {
  61986. name: "Small Macro",
  61987. height: math.unit(40, "meters")
  61988. },
  61989. {
  61990. name: "Macro",
  61991. height: math.unit(150, "meters")
  61992. },
  61993. {
  61994. name: "Macro+",
  61995. height: math.unit(300, "meters")
  61996. },
  61997. {
  61998. name: "Mega",
  61999. height: math.unit(2.5, "km")
  62000. },
  62001. {
  62002. name: "Mega+",
  62003. height: math.unit(30, "km")
  62004. },
  62005. {
  62006. name: "Home Size",
  62007. height: math.unit(300, "km"),
  62008. default: true
  62009. },
  62010. {
  62011. name: "Giga+",
  62012. height: math.unit(1000, "km")
  62013. },
  62014. {
  62015. name: "Giga++",
  62016. height: math.unit(6000, "km")
  62017. },
  62018. {
  62019. name: "Terra",
  62020. height: math.unit(70000, "km")
  62021. },
  62022. {
  62023. name: "Terra+",
  62024. height: math.unit(200000, "km")
  62025. },
  62026. {
  62027. name: "Galactic",
  62028. height: math.unit(634200, "lightyears")
  62029. },
  62030. ]
  62031. ))
  62032. characterMakers.push(() => makeCharacter(
  62033. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62034. {
  62035. standard: {
  62036. height: math.unit(1 + 5/12, "feet"),
  62037. name: "Standard",
  62038. image: {
  62039. source: "./media/characters/spade/standard.svg",
  62040. extra: 1794/1703,
  62041. bottom: 115/1909
  62042. }
  62043. },
  62044. disguised: {
  62045. height: math.unit(1 + 5/12, "feet"),
  62046. name: "Disguised",
  62047. image: {
  62048. source: "./media/characters/spade/disguised.svg",
  62049. extra: 1794/1700,
  62050. bottom: 98/1892
  62051. }
  62052. },
  62053. },
  62054. [
  62055. {
  62056. name: "Normal",
  62057. height: math.unit(1 + 5/12, "feet"),
  62058. default: true
  62059. },
  62060. ]
  62061. ))
  62062. characterMakers.push(() => makeCharacter(
  62063. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62064. {
  62065. frontNsfw: {
  62066. height: math.unit(5, "meters"),
  62067. weight: math.unit(2000, "kg"),
  62068. preyCapacity: math.unit(5, "people"),
  62069. name: "Front (NSFW)",
  62070. image: {
  62071. source: "./media/characters/zeanlain/front-nsfw.svg",
  62072. extra: 1087/938,
  62073. bottom: 93/1180
  62074. },
  62075. extraAttributes: {
  62076. "wingspan": {
  62077. name: "Wingspan",
  62078. power: 1,
  62079. type: "length",
  62080. base: math.unit(10, "meters")
  62081. },
  62082. "footSize": {
  62083. name: "Foot Size",
  62084. power: 1,
  62085. type: "length",
  62086. base: math.unit(0.68, "meters")
  62087. },
  62088. "cockLength": {
  62089. name: "Cock Length",
  62090. power: 1,
  62091. type: "length",
  62092. base: math.unit(1.69, "meters")
  62093. },
  62094. "ballVolume": {
  62095. name: "Ball Volume",
  62096. power: 3,
  62097. type: "volume",
  62098. base: math.unit(0.028, "m^3")
  62099. },
  62100. }
  62101. },
  62102. front: {
  62103. height: math.unit(5, "meters"),
  62104. weight: math.unit(2000, "kg"),
  62105. preyCapacity: math.unit(3, "people"),
  62106. name: "Front",
  62107. image: {
  62108. source: "./media/characters/zeanlain/front.svg",
  62109. extra: 1087/938,
  62110. bottom: 93/1180
  62111. },
  62112. extraAttributes: {
  62113. "wingspan": {
  62114. name: "Wingspan",
  62115. power: 1,
  62116. type: "length",
  62117. base: math.unit(10, "meters")
  62118. },
  62119. "footSize": {
  62120. name: "Foot Size",
  62121. power: 1,
  62122. type: "length",
  62123. base: math.unit(0.68, "meters")
  62124. },
  62125. }
  62126. },
  62127. },
  62128. [
  62129. {
  62130. name: "Normal",
  62131. height: math.unit(5, "meters"),
  62132. default: true
  62133. },
  62134. ]
  62135. ))
  62136. characterMakers.push(() => makeCharacter(
  62137. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62138. {
  62139. front: {
  62140. height: math.unit(10, "meters"),
  62141. weight: math.unit(250000, "kg"),
  62142. name: "Front",
  62143. image: {
  62144. source: "./media/characters/airamis/front.svg",
  62145. extra: 865/835,
  62146. bottom: 13/878
  62147. }
  62148. },
  62149. },
  62150. [
  62151. {
  62152. name: "Normal",
  62153. height: math.unit(10, "meters"),
  62154. default: true
  62155. },
  62156. ]
  62157. ))
  62158. characterMakers.push(() => makeCharacter(
  62159. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62160. {
  62161. front: {
  62162. height: math.unit(3 + 3/12, "feet"),
  62163. weight: math.unit(75, "lb"),
  62164. name: "Front",
  62165. image: {
  62166. source: "./media/characters/corra-tourmaline/front.svg",
  62167. extra: 1037/864,
  62168. bottom: 39/1076
  62169. }
  62170. },
  62171. back: {
  62172. height: math.unit(3 + 3/12, "feet"),
  62173. weight: math.unit(75, "lb"),
  62174. name: "Back",
  62175. image: {
  62176. source: "./media/characters/corra-tourmaline/back.svg",
  62177. extra: 1022/849,
  62178. bottom: 26/1048
  62179. }
  62180. },
  62181. dressed: {
  62182. height: math.unit(3 + 3/12, "feet"),
  62183. weight: math.unit(75, "lb"),
  62184. name: "Dressed",
  62185. image: {
  62186. source: "./media/characters/corra-tourmaline/dressed.svg",
  62187. extra: 1037/864,
  62188. bottom: 39/1076
  62189. }
  62190. },
  62191. beans: {
  62192. height: math.unit(0.37, "feet"),
  62193. name: "Beans",
  62194. image: {
  62195. source: "./media/characters/corra-tourmaline/beans.svg"
  62196. }
  62197. },
  62198. },
  62199. [
  62200. {
  62201. name: "Normal",
  62202. height: math.unit(3 + 3/12, "feet"),
  62203. default: true
  62204. },
  62205. {
  62206. name: "Macro",
  62207. height: math.unit(32, "feet")
  62208. },
  62209. ]
  62210. ))
  62211. characterMakers.push(() => makeCharacter(
  62212. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62213. {
  62214. front: {
  62215. height: math.unit(6 + 2/12, "feet"),
  62216. weight: math.unit(203, "lb"),
  62217. name: "Front",
  62218. image: {
  62219. source: "./media/characters/maki-kawa/front.svg",
  62220. extra: 950/890,
  62221. bottom: 62/1012
  62222. }
  62223. },
  62224. back: {
  62225. height: math.unit(6 + 2/12, "feet"),
  62226. weight: math.unit(203, "lb"),
  62227. name: "Back",
  62228. image: {
  62229. source: "./media/characters/maki-kawa/back.svg",
  62230. extra: 953/878,
  62231. bottom: 49/1002
  62232. }
  62233. },
  62234. frontBarista: {
  62235. height: math.unit(6 + 2/12, "feet"),
  62236. weight: math.unit(203, "lb"),
  62237. name: "Front (Barista)",
  62238. image: {
  62239. source: "./media/characters/maki-kawa/front-barista.svg",
  62240. extra: 943/883,
  62241. bottom: 69/1012
  62242. }
  62243. },
  62244. backBarista: {
  62245. height: math.unit(6 + 2/12, "feet"),
  62246. weight: math.unit(203, "lb"),
  62247. name: "Back (Barista)",
  62248. image: {
  62249. source: "./media/characters/maki-kawa/back-barista.svg",
  62250. extra: 953/878,
  62251. bottom: 49/1002
  62252. }
  62253. },
  62254. frontWrestler: {
  62255. height: math.unit(6 + 2/12, "feet"),
  62256. weight: math.unit(203, "lb"),
  62257. name: "Front (Wrestler)",
  62258. image: {
  62259. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62260. extra: 950/890,
  62261. bottom: 62/1012
  62262. }
  62263. },
  62264. backWrestler: {
  62265. height: math.unit(6 + 2/12, "feet"),
  62266. weight: math.unit(203, "lb"),
  62267. name: "Back (Wrestler)",
  62268. image: {
  62269. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62270. extra: 953/878,
  62271. bottom: 49/1002
  62272. }
  62273. },
  62274. headFront: {
  62275. height: math.unit(1.64, "feet"),
  62276. name: "Head (Front)",
  62277. image: {
  62278. source: "./media/characters/maki-kawa/head-front.svg"
  62279. }
  62280. },
  62281. headSide: {
  62282. height: math.unit(1.59, "feet"),
  62283. name: "Head (Side)",
  62284. image: {
  62285. source: "./media/characters/maki-kawa/head-side.svg"
  62286. }
  62287. },
  62288. paw: {
  62289. height: math.unit(0.9, "feet"),
  62290. name: "Paw",
  62291. image: {
  62292. source: "./media/characters/maki-kawa/paw.svg"
  62293. }
  62294. },
  62295. },
  62296. [
  62297. {
  62298. name: "Normal",
  62299. height: math.unit(6 + 2/12, "feet"),
  62300. default: true
  62301. },
  62302. {
  62303. name: "Macro",
  62304. height: math.unit(617, "feet")
  62305. },
  62306. ]
  62307. ))
  62308. characterMakers.push(() => makeCharacter(
  62309. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62310. {
  62311. front: {
  62312. height: math.unit(10, "feet"),
  62313. weight: math.unit(1500, "lb"),
  62314. name: "Front",
  62315. image: {
  62316. source: "./media/characters/lennox/front.svg",
  62317. extra: 1623/1496,
  62318. bottom: 18/1641
  62319. }
  62320. },
  62321. back: {
  62322. height: math.unit(10, "feet"),
  62323. weight: math.unit(1500, "lb"),
  62324. name: "Back",
  62325. image: {
  62326. source: "./media/characters/lennox/back.svg",
  62327. extra: 1641/1481,
  62328. bottom: 13/1654
  62329. }
  62330. },
  62331. maw: {
  62332. height: math.unit(2.94, "feet"),
  62333. name: "Maw",
  62334. image: {
  62335. source: "./media/characters/lennox/maw.svg"
  62336. }
  62337. },
  62338. },
  62339. [
  62340. {
  62341. name: "Micro",
  62342. height: math.unit(1, "inch")
  62343. },
  62344. {
  62345. name: "Normal",
  62346. height: math.unit(10, "feet"),
  62347. default: true
  62348. },
  62349. {
  62350. name: "Macro",
  62351. height: math.unit(200, "feet")
  62352. },
  62353. ]
  62354. ))
  62355. characterMakers.push(() => makeCharacter(
  62356. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62357. {
  62358. frontDressed: {
  62359. height: math.unit(15 + 7/12, "feet"),
  62360. weight: math.unit(5000, "lb"),
  62361. name: "Front (Dressed)",
  62362. image: {
  62363. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62364. extra: 1136/1023,
  62365. bottom: 51/1187
  62366. }
  62367. },
  62368. backDressed: {
  62369. height: math.unit(15 + 7/12, "feet"),
  62370. weight: math.unit(5000, "lb"),
  62371. name: "Back (Dressed)",
  62372. image: {
  62373. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62374. extra: 2359/2143,
  62375. bottom: 103/2462
  62376. }
  62377. },
  62378. front: {
  62379. height: math.unit(15 + 7/12, "feet"),
  62380. weight: math.unit(5000, "lb"),
  62381. name: "Front",
  62382. image: {
  62383. source: "./media/characters/vyse-iron-thunder/front.svg",
  62384. extra: 1136/1023,
  62385. bottom: 51/1187
  62386. }
  62387. },
  62388. hand: {
  62389. height: math.unit(2.36, "feet"),
  62390. name: "Hand",
  62391. image: {
  62392. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62393. }
  62394. },
  62395. foot: {
  62396. height: math.unit(1.72, "feet"),
  62397. name: "Foot",
  62398. image: {
  62399. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62400. }
  62401. },
  62402. mouth: {
  62403. height: math.unit(2, "feet"),
  62404. name: "Mouth",
  62405. image: {
  62406. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62407. }
  62408. },
  62409. eye: {
  62410. height: math.unit(0.58, "feet"),
  62411. name: "Eye",
  62412. image: {
  62413. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62414. }
  62415. },
  62416. },
  62417. [
  62418. {
  62419. name: "Normal",
  62420. height: math.unit(15 + 7/12, "feet"),
  62421. default: true
  62422. },
  62423. {
  62424. name: "Macro",
  62425. height: math.unit(157, "feet")
  62426. },
  62427. {
  62428. name: "Macro+",
  62429. height: math.unit(1570, "feet")
  62430. },
  62431. {
  62432. name: "Macro++",
  62433. height: math.unit(15700, "feet")
  62434. },
  62435. {
  62436. name: "Macro+++",
  62437. height: math.unit(157000, "feet")
  62438. },
  62439. {
  62440. name: "Macro++++",
  62441. height: math.unit(1570000, "feet")
  62442. },
  62443. ]
  62444. ))
  62445. characterMakers.push(() => makeCharacter(
  62446. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62447. {
  62448. side: {
  62449. height: math.unit(6, "feet"),
  62450. weight: math.unit(115, "lb"),
  62451. name: "Side",
  62452. image: {
  62453. source: "./media/characters/moonbeam/side.svg",
  62454. extra: 839/485,
  62455. bottom: 60/899
  62456. }
  62457. },
  62458. },
  62459. [
  62460. {
  62461. name: "Normal",
  62462. height: math.unit(6, "feet"),
  62463. default: true
  62464. },
  62465. ]
  62466. ))
  62467. characterMakers.push(() => makeCharacter(
  62468. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62469. {
  62470. front: {
  62471. height: math.unit(3500, "miles"),
  62472. weight: math.unit(1659, "petatonnes"),
  62473. name: "Front",
  62474. image: {
  62475. source: "./media/characters/baltica/front.svg",
  62476. extra: 429/428,
  62477. bottom: 41/470
  62478. }
  62479. },
  62480. back: {
  62481. height: math.unit(3500, "miles"),
  62482. weight: math.unit(1659, "petatonnes"),
  62483. name: "Back",
  62484. image: {
  62485. source: "./media/characters/baltica/back.svg",
  62486. extra: 452/451,
  62487. bottom: 8/460
  62488. }
  62489. },
  62490. },
  62491. [
  62492. {
  62493. name: "Gigamacro",
  62494. height: math.unit(3500, "miles"),
  62495. default: true
  62496. },
  62497. ]
  62498. ))
  62499. characterMakers.push(() => makeCharacter(
  62500. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62501. {
  62502. front: {
  62503. height: math.unit(6 + 10/12, "feet"),
  62504. weight: math.unit(200, "lb"),
  62505. name: "Front",
  62506. image: {
  62507. source: "./media/characters/shadow-wolf/front.svg",
  62508. extra: 1931/1760,
  62509. bottom: 88/2019
  62510. }
  62511. },
  62512. },
  62513. [
  62514. {
  62515. name: "Normal",
  62516. height: math.unit(6 + 10/12, "feet"),
  62517. default: true
  62518. },
  62519. ]
  62520. ))
  62521. characterMakers.push(() => makeCharacter(
  62522. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62523. {
  62524. front: {
  62525. height: math.unit(5 + 10/12, "feet"),
  62526. name: "Front",
  62527. image: {
  62528. source: "./media/characters/quincy-praying-mantis/front.svg",
  62529. extra: 1055/891,
  62530. bottom: 92/1147
  62531. }
  62532. },
  62533. soles: {
  62534. height: math.unit(0.85, "feet"),
  62535. name: "Soles",
  62536. image: {
  62537. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62538. extra: 429/324,
  62539. bottom: 89/518
  62540. },
  62541. extraAttributes: {
  62542. "shoeSize": {
  62543. name: "Shoe Size",
  62544. power: 1,
  62545. type: "length",
  62546. base: math.unit(23, "ShoeSizeMensUS"),
  62547. defaultUnit: "ShoeSizeMensUS"
  62548. },
  62549. }
  62550. },
  62551. foot: {
  62552. height: math.unit(0.72, "feet"),
  62553. name: "Foot",
  62554. image: {
  62555. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62556. extra: 349/349,
  62557. bottom: 76/425
  62558. }
  62559. },
  62560. },
  62561. [
  62562. {
  62563. name: "Normal",
  62564. height: math.unit(5 + 10/12, "feet"),
  62565. default: true
  62566. },
  62567. ]
  62568. ))
  62569. characterMakers.push(() => makeCharacter(
  62570. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62571. {
  62572. front: {
  62573. height: math.unit(6, "feet"),
  62574. name: "Front",
  62575. image: {
  62576. source: "./media/characters/christopher-redwood/front.svg",
  62577. extra: 1402/1341,
  62578. bottom: 23/1425
  62579. }
  62580. },
  62581. back: {
  62582. height: math.unit(6, "feet"),
  62583. name: "Back",
  62584. image: {
  62585. source: "./media/characters/christopher-redwood/back.svg",
  62586. extra: 1406/1345,
  62587. bottom: 36/1442
  62588. }
  62589. },
  62590. head: {
  62591. height: math.unit(1.685, "feet"),
  62592. name: "Head",
  62593. image: {
  62594. source: "./media/characters/christopher-redwood/head.svg"
  62595. }
  62596. },
  62597. },
  62598. [
  62599. {
  62600. name: "Normal",
  62601. height: math.unit(6, "feet"),
  62602. default: true
  62603. },
  62604. ]
  62605. ))
  62606. characterMakers.push(() => makeCharacter(
  62607. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62608. {
  62609. front: {
  62610. height: math.unit(1.9, "meters"),
  62611. weight: math.unit(140, "lb"),
  62612. name: "Front",
  62613. image: {
  62614. source: "./media/characters/kara-fox/front.svg",
  62615. extra: 766/711,
  62616. bottom: 41/807
  62617. }
  62618. },
  62619. back: {
  62620. height: math.unit(1.9, "meters"),
  62621. weight: math.unit(140, "lb"),
  62622. name: "Back",
  62623. image: {
  62624. source: "./media/characters/kara-fox/back.svg",
  62625. extra: 766/596,
  62626. bottom: 29/795
  62627. }
  62628. },
  62629. maw: {
  62630. height: math.unit(0.78, "feet"),
  62631. name: "Maw",
  62632. image: {
  62633. source: "./media/characters/kara-fox/maw.svg"
  62634. }
  62635. },
  62636. pawpads: {
  62637. height: math.unit(0.96, "feet"),
  62638. name: "Pawpads",
  62639. image: {
  62640. source: "./media/characters/kara-fox/pawpads.svg"
  62641. }
  62642. },
  62643. },
  62644. [
  62645. {
  62646. name: "Normal",
  62647. height: math.unit(1.9, "meters"),
  62648. default: true
  62649. },
  62650. {
  62651. name: "Giantess",
  62652. height: math.unit(80, "meters")
  62653. },
  62654. ]
  62655. ))
  62656. characterMakers.push(() => makeCharacter(
  62657. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62658. {
  62659. front: {
  62660. height: math.unit(12, "feet"),
  62661. name: "Front",
  62662. image: {
  62663. source: "./media/characters/naomi-espeon/front.svg",
  62664. extra: 892/797,
  62665. bottom: 5/897
  62666. }
  62667. },
  62668. back: {
  62669. height: math.unit(12, "feet"),
  62670. name: "Back",
  62671. image: {
  62672. source: "./media/characters/naomi-espeon/back.svg",
  62673. extra: 890/785,
  62674. bottom: 12/902
  62675. }
  62676. },
  62677. },
  62678. [
  62679. {
  62680. name: "Normal",
  62681. height: math.unit(12, "feet"),
  62682. default: true
  62683. },
  62684. ]
  62685. ))
  62686. characterMakers.push(() => makeCharacter(
  62687. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62688. {
  62689. anthro_front: {
  62690. height: math.unit(8, "feet"),
  62691. weight: math.unit(625, "lb"),
  62692. name: "Front",
  62693. image: {
  62694. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62695. extra: 638/574,
  62696. bottom: 73/711
  62697. },
  62698. form: "anthro",
  62699. default: true
  62700. },
  62701. anthro_back: {
  62702. height: math.unit(8, "feet"),
  62703. weight: math.unit(625, "lb"),
  62704. name: "Back",
  62705. image: {
  62706. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62707. extra: 674/614,
  62708. bottom: 7/681
  62709. },
  62710. form: "anthro",
  62711. },
  62712. taur_side: {
  62713. height: math.unit(16, "feet"),
  62714. weight: math.unit(4.5, "tons"),
  62715. name: "Side",
  62716. image: {
  62717. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62718. extra: 704/646,
  62719. bottom: 132/836
  62720. },
  62721. form: "taur",
  62722. default: true
  62723. },
  62724. },
  62725. [
  62726. {
  62727. name: "Normal",
  62728. height: math.unit(8, "feet"),
  62729. default: true,
  62730. form: "anthro"
  62731. },
  62732. {
  62733. name: "Normal",
  62734. height: math.unit(16, "feet"),
  62735. default: true,
  62736. form: "taur"
  62737. },
  62738. ],
  62739. {
  62740. "anthro": {
  62741. name: "Anthro",
  62742. default: true
  62743. },
  62744. "taur": {
  62745. name: "Taur",
  62746. },
  62747. }
  62748. ))
  62749. characterMakers.push(() => makeCharacter(
  62750. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62751. {
  62752. front: {
  62753. height: math.unit(190, "cm"),
  62754. weight: math.unit(110, "kg"),
  62755. name: "Front",
  62756. image: {
  62757. source: "./media/characters/amelie/front.svg",
  62758. extra: 530/442,
  62759. bottom: 35/565
  62760. }
  62761. },
  62762. },
  62763. [
  62764. {
  62765. name: "Normal",
  62766. height: math.unit(190, "cm"),
  62767. default: true
  62768. },
  62769. ]
  62770. ))
  62771. characterMakers.push(() => makeCharacter(
  62772. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62773. {
  62774. front: {
  62775. height: math.unit(21, "feet"),
  62776. weight: math.unit(30000, "lb"),
  62777. name: "Front",
  62778. image: {
  62779. source: "./media/characters/valence/front.svg",
  62780. extra: 1430/1306,
  62781. bottom: 51/1481
  62782. }
  62783. },
  62784. },
  62785. [
  62786. {
  62787. name: "Normal",
  62788. height: math.unit(21, "feet"),
  62789. default: true
  62790. },
  62791. ]
  62792. ))
  62793. characterMakers.push(() => makeCharacter(
  62794. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62795. {
  62796. front: {
  62797. height: math.unit(5 + 9/12, "feet"),
  62798. weight: math.unit(170, "lb"),
  62799. name: "Front",
  62800. image: {
  62801. source: "./media/characters/aurora-adkins/front.svg",
  62802. extra: 1141/1089,
  62803. bottom: 41/1182
  62804. }
  62805. },
  62806. },
  62807. [
  62808. {
  62809. name: "Tiny",
  62810. height: math.unit(7, "mm")
  62811. },
  62812. {
  62813. name: "Small",
  62814. height: math.unit(3.4, "inches")
  62815. },
  62816. {
  62817. name: "Normal",
  62818. height: math.unit(5 + 9/12, "feet"),
  62819. default: true
  62820. },
  62821. {
  62822. name: "Big",
  62823. height: math.unit(31, "feet")
  62824. },
  62825. {
  62826. name: "Giant",
  62827. height: math.unit(300, "feet")
  62828. },
  62829. ]
  62830. ))
  62831. characterMakers.push(() => makeCharacter(
  62832. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62833. {
  62834. front: {
  62835. height: math.unit(5 + 6/12, "feet"),
  62836. weight: math.unit(210, "lb"),
  62837. name: "Front",
  62838. image: {
  62839. source: "./media/characters/cyber/front.svg",
  62840. extra: 1968/1798,
  62841. bottom: 10/1978
  62842. },
  62843. extraAttributes: {
  62844. "shoeSize": {
  62845. name: "Shoe Size",
  62846. power: 1,
  62847. type: "length",
  62848. base: math.unit(30, "ShoeSizeMensUS")
  62849. },
  62850. }
  62851. },
  62852. },
  62853. [
  62854. {
  62855. name: "Normal",
  62856. height: math.unit(5 + 6/12, "feet"),
  62857. default: true
  62858. },
  62859. ]
  62860. ))
  62861. characterMakers.push(() => makeCharacter(
  62862. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62863. {
  62864. front: {
  62865. height: math.unit(6 + 6/12, "feet"),
  62866. weight: math.unit(140, "lb"),
  62867. name: "Front",
  62868. image: {
  62869. source: "./media/characters/sapphire-wairimea/front.svg",
  62870. extra: 475/458,
  62871. bottom: 14/489
  62872. }
  62873. },
  62874. },
  62875. [
  62876. {
  62877. name: "Normal",
  62878. height: math.unit(6 + 6/12, "feet")
  62879. },
  62880. {
  62881. name: "Macro",
  62882. height: math.unit(132, "feet"),
  62883. default: true
  62884. },
  62885. ]
  62886. ))
  62887. characterMakers.push(() => makeCharacter(
  62888. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62889. {
  62890. front: {
  62891. height: math.unit(1.6, "meters"),
  62892. weight: math.unit(100, "lb"),
  62893. name: "Front",
  62894. image: {
  62895. source: "./media/characters/cirkazi/front.svg",
  62896. extra: 489/477,
  62897. bottom: 0/489
  62898. }
  62899. },
  62900. },
  62901. [
  62902. {
  62903. name: "Normal",
  62904. height: math.unit(1.6, "meters")
  62905. },
  62906. {
  62907. name: "Macro",
  62908. height: math.unit(800, "feet"),
  62909. default: true
  62910. },
  62911. ]
  62912. ))
  62913. characterMakers.push(() => makeCharacter(
  62914. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62915. {
  62916. front: {
  62917. height: math.unit(5 + 10/12, "feet"),
  62918. weight: math.unit(145, "lb"),
  62919. name: "Front",
  62920. image: {
  62921. source: "./media/characters/corrin-cavelli/front.svg",
  62922. extra: 483/464,
  62923. bottom: 6/489
  62924. }
  62925. },
  62926. },
  62927. [
  62928. {
  62929. name: "Human",
  62930. height: math.unit(5 + 10/12, "feet")
  62931. },
  62932. {
  62933. name: "Giant",
  62934. height: math.unit(210, "feet"),
  62935. default: true
  62936. },
  62937. ]
  62938. ))
  62939. characterMakers.push(() => makeCharacter(
  62940. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62941. {
  62942. back: {
  62943. height: math.unit(5 + 6/12, "feet"),
  62944. weight: math.unit(115, "lb"),
  62945. name: "Back",
  62946. image: {
  62947. source: "./media/characters/lori-lopez/back.svg",
  62948. extra: 483/474,
  62949. bottom: 6/489
  62950. }
  62951. },
  62952. },
  62953. [
  62954. {
  62955. name: "Human",
  62956. height: math.unit(5 + 6/12, "feet")
  62957. },
  62958. {
  62959. name: "Macro",
  62960. height: math.unit(198, "feet"),
  62961. default: true
  62962. },
  62963. ]
  62964. ))
  62965. characterMakers.push(() => makeCharacter(
  62966. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62967. {
  62968. front: {
  62969. height: math.unit(6, "feet"),
  62970. weight: math.unit(220, "lb"),
  62971. name: "Front",
  62972. image: {
  62973. source: "./media/characters/sylvia-beauregard/front.svg",
  62974. extra: 483/479,
  62975. bottom: 6/489
  62976. }
  62977. },
  62978. },
  62979. [
  62980. {
  62981. name: "Macro",
  62982. height: math.unit(2071, "feet"),
  62983. default: true
  62984. },
  62985. ]
  62986. ))
  62987. characterMakers.push(() => makeCharacter(
  62988. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62989. {
  62990. back: {
  62991. height: math.unit(5 + 6/12, "feet"),
  62992. weight: math.unit(160, "lb"),
  62993. name: "Back",
  62994. image: {
  62995. source: "./media/characters/akiko-takahashi/back.svg",
  62996. extra: 459/454,
  62997. bottom: 27/486
  62998. }
  62999. },
  63000. },
  63001. [
  63002. {
  63003. name: "Human",
  63004. height: math.unit(5 + 6/12, "feet")
  63005. },
  63006. {
  63007. name: "Macro",
  63008. height: math.unit(198, "feet"),
  63009. default: true
  63010. },
  63011. {
  63012. name: "Megamacro",
  63013. height: math.unit(7128, "feet")
  63014. },
  63015. ]
  63016. ))
  63017. characterMakers.push(() => makeCharacter(
  63018. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63019. {
  63020. front: {
  63021. height: math.unit(6, "feet"),
  63022. weight: math.unit(140, "lb"),
  63023. name: "Front",
  63024. image: {
  63025. source: "./media/characters/velvet-garza/front.svg",
  63026. extra: 480/462,
  63027. bottom: 7/487
  63028. }
  63029. },
  63030. },
  63031. [
  63032. {
  63033. name: "Macro",
  63034. height: math.unit(37, "feet"),
  63035. default: true
  63036. },
  63037. ]
  63038. ))
  63039. characterMakers.push(() => makeCharacter(
  63040. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63041. {
  63042. front: {
  63043. height: math.unit(7 + 6/12, "feet"),
  63044. weight: math.unit(400, "lb"),
  63045. name: "Front",
  63046. image: {
  63047. source: "./media/characters/gaia/front.svg",
  63048. extra: 474/463,
  63049. bottom: 13/487
  63050. }
  63051. },
  63052. },
  63053. [
  63054. {
  63055. name: "MiniMacro",
  63056. height: math.unit(7 + 6/12, "feet")
  63057. },
  63058. {
  63059. name: "GigaMacro",
  63060. height: math.unit(14500, "feet"),
  63061. default: true
  63062. },
  63063. ]
  63064. ))
  63065. characterMakers.push(() => makeCharacter(
  63066. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63067. {
  63068. front: {
  63069. height: math.unit(6, "feet"),
  63070. weight: math.unit(150, "lb"),
  63071. name: "Front",
  63072. image: {
  63073. source: "./media/characters/tim/front.svg",
  63074. extra: 1878/1743,
  63075. bottom: 9/1887
  63076. }
  63077. },
  63078. frontDressed: {
  63079. height: math.unit(6, "feet"),
  63080. weight: math.unit(150, "lb"),
  63081. name: "Front (Dressed)",
  63082. image: {
  63083. source: "./media/characters/tim/front-dressed.svg",
  63084. extra: 1765/1485,
  63085. bottom: 48/1813
  63086. }
  63087. },
  63088. backDressed: {
  63089. height: math.unit(6, "feet"),
  63090. weight: math.unit(150, "lb"),
  63091. name: "Back (Dressed)",
  63092. image: {
  63093. source: "./media/characters/tim/back-dressed.svg",
  63094. extra: 1750/1465,
  63095. bottom: 25/1775
  63096. }
  63097. },
  63098. dick: {
  63099. height: math.unit(1.5, "feet"),
  63100. weight: math.unit(6, "lb"),
  63101. name: "Dick",
  63102. image: {
  63103. source: "./media/characters/tim/dick.svg"
  63104. }
  63105. },
  63106. hand: {
  63107. height: math.unit(0.522, "feet"),
  63108. name: "Hand",
  63109. image: {
  63110. source: "./media/characters/tim/hand.svg"
  63111. }
  63112. },
  63113. palm: {
  63114. height: math.unit(0.48, "feet"),
  63115. name: "Palm",
  63116. image: {
  63117. source: "./media/characters/tim/palm.svg"
  63118. }
  63119. },
  63120. paw: {
  63121. height: math.unit(0.9, "feet"),
  63122. name: "Paw",
  63123. image: {
  63124. source: "./media/characters/tim/paw.svg"
  63125. }
  63126. },
  63127. sole: {
  63128. height: math.unit(0.88, "feet"),
  63129. name: "Sole",
  63130. image: {
  63131. source: "./media/characters/tim/sole.svg"
  63132. }
  63133. },
  63134. },
  63135. [
  63136. {
  63137. name: "Macro",
  63138. height: math.unit(1000, "feet")
  63139. },
  63140. {
  63141. name: "Megamacro",
  63142. height: math.unit(10000, "feet"),
  63143. default: true
  63144. },
  63145. {
  63146. name: "Megamacro+",
  63147. height: math.unit(50000, "feet")
  63148. },
  63149. {
  63150. name: "Gigamacro",
  63151. height: math.unit(150000, "km")
  63152. },
  63153. ]
  63154. ))
  63155. characterMakers.push(() => makeCharacter(
  63156. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63157. {
  63158. front: {
  63159. height: math.unit(5 + 8/12, "feet"),
  63160. weight: math.unit(170, "lb"),
  63161. name: "Front",
  63162. image: {
  63163. source: "./media/characters/abel-delreoux/front.svg",
  63164. extra: 1615/1500,
  63165. bottom: 82/1697
  63166. }
  63167. },
  63168. back: {
  63169. height: math.unit(5 + 8/12, "feet"),
  63170. weight: math.unit(170, "lb"),
  63171. name: "Back",
  63172. image: {
  63173. source: "./media/characters/abel-delreoux/back.svg",
  63174. extra: 1644/1534,
  63175. bottom: 24/1668
  63176. }
  63177. },
  63178. casual: {
  63179. height: math.unit(5 + 8/12, "feet"),
  63180. weight: math.unit(170, "lb"),
  63181. name: "Casual",
  63182. image: {
  63183. source: "./media/characters/abel-delreoux/casual.svg",
  63184. extra: 1716/1598,
  63185. bottom: 29/1745
  63186. }
  63187. },
  63188. sleepy: {
  63189. height: math.unit(5 + 8/12, "feet"),
  63190. weight: math.unit(170, "lb"),
  63191. name: "Sleepy",
  63192. image: {
  63193. source: "./media/characters/abel-delreoux/sleepy.svg",
  63194. extra: 1649/1573,
  63195. bottom: 22/1671
  63196. }
  63197. },
  63198. fem: {
  63199. height: math.unit(5 + 8/12, "feet"),
  63200. weight: math.unit(170, "lb"),
  63201. name: "Fem",
  63202. image: {
  63203. source: "./media/characters/abel-delreoux/fem.svg",
  63204. extra: 1680/1564,
  63205. bottom: 17/1697
  63206. }
  63207. },
  63208. hand: {
  63209. height: math.unit(0.78, "feet"),
  63210. name: "Hand",
  63211. image: {
  63212. source: "./media/characters/abel-delreoux/hand.svg"
  63213. }
  63214. },
  63215. paw: {
  63216. height: math.unit(0.78, "feet"),
  63217. name: "Paw",
  63218. image: {
  63219. source: "./media/characters/abel-delreoux/paw.svg"
  63220. }
  63221. },
  63222. },
  63223. [
  63224. {
  63225. name: "Normal",
  63226. height: math.unit(5 + 8/12, "feet"),
  63227. default: true
  63228. },
  63229. ]
  63230. ))
  63231. characterMakers.push(() => makeCharacter(
  63232. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63233. {
  63234. front: {
  63235. height: math.unit(6, "feet"),
  63236. weight: math.unit(159, "lb"),
  63237. name: "Front",
  63238. image: {
  63239. source: "./media/characters/meus/front.svg",
  63240. extra: 938/843,
  63241. bottom: 37/975
  63242. }
  63243. },
  63244. back: {
  63245. height: math.unit(6, "feet"),
  63246. weight: math.unit(159, "lb"),
  63247. name: "Back",
  63248. image: {
  63249. source: "./media/characters/meus/back.svg",
  63250. extra: 967/873,
  63251. bottom: 12/979
  63252. }
  63253. },
  63254. },
  63255. [
  63256. {
  63257. name: "Micro",
  63258. height: math.unit(2, "inches")
  63259. },
  63260. {
  63261. name: "Mini",
  63262. height: math.unit(6, "inches")
  63263. },
  63264. {
  63265. name: "Normal",
  63266. height: math.unit(6, "feet"),
  63267. default: true
  63268. },
  63269. {
  63270. name: "Macro",
  63271. height: math.unit(84, "feet")
  63272. },
  63273. ]
  63274. ))
  63275. characterMakers.push(() => makeCharacter(
  63276. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63277. {
  63278. front: {
  63279. height: math.unit(60, "cm"),
  63280. weight: math.unit(18, "kg"),
  63281. name: "Front",
  63282. image: {
  63283. source: "./media/characters/yamato/front.svg",
  63284. extra: 733/688,
  63285. bottom: 29/762
  63286. }
  63287. },
  63288. },
  63289. [
  63290. {
  63291. name: "Micro",
  63292. height: math.unit(6, "cm")
  63293. },
  63294. {
  63295. name: "Normal",
  63296. height: math.unit(60, "cm"),
  63297. default: true
  63298. },
  63299. ]
  63300. ))
  63301. characterMakers.push(() => makeCharacter(
  63302. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63303. {
  63304. front: {
  63305. height: math.unit(9, "feet"),
  63306. weight: math.unit(518, "lb"),
  63307. name: "Front",
  63308. image: {
  63309. source: "./media/characters/barus/front.svg",
  63310. extra: 1877/1795,
  63311. bottom: 55/1932
  63312. }
  63313. },
  63314. },
  63315. [
  63316. {
  63317. name: "Base Height",
  63318. height: math.unit(9, "feet"),
  63319. default: true
  63320. },
  63321. {
  63322. name: "Large",
  63323. height: math.unit(18, "feet")
  63324. },
  63325. {
  63326. name: "Giant",
  63327. height: math.unit(100, "feet")
  63328. },
  63329. {
  63330. name: "Huge",
  63331. height: math.unit(500, "feet")
  63332. },
  63333. {
  63334. name: "Enormous",
  63335. height: math.unit(300, "meters")
  63336. },
  63337. {
  63338. name: "Deity Among Man",
  63339. height: math.unit(3000, "meters")
  63340. },
  63341. ]
  63342. ))
  63343. characterMakers.push(() => makeCharacter(
  63344. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63345. {
  63346. front: {
  63347. height: math.unit(1.7, "meters"),
  63348. name: "Front",
  63349. image: {
  63350. source: "./media/characters/yari/front.svg",
  63351. extra: 1210/1125,
  63352. bottom: 283/1493
  63353. }
  63354. },
  63355. back: {
  63356. height: math.unit(1.7, "meters"),
  63357. name: "Back",
  63358. image: {
  63359. source: "./media/characters/yari/back.svg",
  63360. extra: 1240/1195,
  63361. bottom: 180/1420
  63362. }
  63363. },
  63364. head: {
  63365. height: math.unit(1.26, "feet"),
  63366. name: "Head",
  63367. image: {
  63368. source: "./media/characters/yari/head.svg"
  63369. }
  63370. },
  63371. },
  63372. [
  63373. {
  63374. name: "Nano",
  63375. height: math.unit(0.5, "mm")
  63376. },
  63377. {
  63378. name: "Micro",
  63379. height: math.unit(3, "inches")
  63380. },
  63381. {
  63382. name: "Short",
  63383. height: math.unit(1.5, "meters")
  63384. },
  63385. {
  63386. name: "Norm",
  63387. height: math.unit(1.7, "meters"),
  63388. default: true
  63389. },
  63390. ]
  63391. ))
  63392. characterMakers.push(() => makeCharacter(
  63393. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63394. {
  63395. front: {
  63396. height: math.unit(5 + 2/12, "feet"),
  63397. weight: math.unit(110, "lb"),
  63398. name: "Front",
  63399. image: {
  63400. source: "./media/characters/salem/front.svg",
  63401. extra: 1895/1800,
  63402. bottom: 23/1918
  63403. }
  63404. },
  63405. back: {
  63406. height: math.unit(5 + 2/12, "feet"),
  63407. weight: math.unit(110, "lb"),
  63408. name: "Back",
  63409. image: {
  63410. source: "./media/characters/salem/back.svg",
  63411. extra: 1875/1802,
  63412. bottom: 20/1895
  63413. }
  63414. },
  63415. head: {
  63416. height: math.unit(1, "feet"),
  63417. name: "Head",
  63418. image: {
  63419. source: "./media/characters/salem/head.svg"
  63420. }
  63421. },
  63422. paw: {
  63423. height: math.unit(0.59, "feet"),
  63424. name: "Paw",
  63425. image: {
  63426. source: "./media/characters/salem/paw.svg"
  63427. }
  63428. },
  63429. beans: {
  63430. height: math.unit(0.66, "feet"),
  63431. name: "Beans",
  63432. image: {
  63433. source: "./media/characters/salem/beans.svg"
  63434. }
  63435. },
  63436. eye: {
  63437. height: math.unit(0.224, "feet"),
  63438. name: "Eye",
  63439. image: {
  63440. source: "./media/characters/salem/eye.svg"
  63441. }
  63442. },
  63443. semiferal: {
  63444. height: math.unit(2.3, "feet"),
  63445. name: "Semiferal",
  63446. image: {
  63447. source: "./media/characters/salem/semiferal.svg",
  63448. extra: 914/839,
  63449. bottom: 32/946
  63450. }
  63451. },
  63452. },
  63453. [
  63454. {
  63455. name: "Micro",
  63456. height: math.unit(4, "inches")
  63457. },
  63458. {
  63459. name: "Normal",
  63460. height: math.unit(5 + 2/12, "feet"),
  63461. default: true
  63462. },
  63463. {
  63464. name: "Macro",
  63465. height: math.unit(108, "feet")
  63466. },
  63467. {
  63468. name: "Macro+",
  63469. height: math.unit(1500, "feet")
  63470. },
  63471. ]
  63472. ))
  63473. characterMakers.push(() => makeCharacter(
  63474. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63475. {
  63476. front: {
  63477. height: math.unit(7 + 6/12, "feet"),
  63478. weight: math.unit(600, "kg"),
  63479. preyCapacity: math.unit(10, "people"),
  63480. name: "Front",
  63481. image: {
  63482. source: "./media/characters/kii/front.svg",
  63483. extra: 3296/3087,
  63484. bottom: 130/3426
  63485. }
  63486. },
  63487. },
  63488. [
  63489. {
  63490. name: "Normal",
  63491. height: math.unit(7 + 6/12, "feet"),
  63492. default: true
  63493. },
  63494. ]
  63495. ))
  63496. characterMakers.push(() => makeCharacter(
  63497. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63498. {
  63499. front: {
  63500. height: math.unit(2, "meters"),
  63501. weight: math.unit(200, "lb"),
  63502. name: "Front",
  63503. image: {
  63504. source: "./media/characters/taffy/front.svg",
  63505. extra: 1666/1618,
  63506. bottom: 157/1823
  63507. }
  63508. },
  63509. back: {
  63510. height: math.unit(2, "meters"),
  63511. weight: math.unit(200, "lb"),
  63512. name: "Back",
  63513. image: {
  63514. source: "./media/characters/taffy/back.svg",
  63515. extra: 1635/1583,
  63516. bottom: 153/1788
  63517. }
  63518. },
  63519. },
  63520. [
  63521. {
  63522. name: "Normal",
  63523. height: math.unit(2, "meters"),
  63524. default: true
  63525. },
  63526. ]
  63527. ))
  63528. characterMakers.push(() => makeCharacter(
  63529. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63530. {
  63531. front: {
  63532. height: math.unit(1.55, "meters"),
  63533. weight: math.unit(60, "kg"),
  63534. name: "Front",
  63535. image: {
  63536. source: "./media/characters/barley/front.svg",
  63537. extra: 1520/1340,
  63538. bottom: 47/1567
  63539. }
  63540. },
  63541. back: {
  63542. height: math.unit(1.55, "meters"),
  63543. weight: math.unit(60, "kg"),
  63544. name: "Back",
  63545. image: {
  63546. source: "./media/characters/barley/back.svg",
  63547. extra: 1543/1341,
  63548. bottom: 12/1555
  63549. }
  63550. },
  63551. feet: {
  63552. height: math.unit(2.18, "feet"),
  63553. name: "Feet",
  63554. image: {
  63555. source: "./media/characters/barley/feet.svg"
  63556. }
  63557. },
  63558. },
  63559. [
  63560. {
  63561. name: "Normal",
  63562. height: math.unit(1.55, "meters"),
  63563. default: true
  63564. },
  63565. ]
  63566. ))
  63567. characterMakers.push(() => makeCharacter(
  63568. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63569. {
  63570. dressed: {
  63571. height: math.unit(6, "feet"),
  63572. name: "Dressed",
  63573. image: {
  63574. source: "./media/characters/lydia-lopez/dressed.svg",
  63575. extra: 1319/1277,
  63576. bottom: 90/1409
  63577. }
  63578. },
  63579. nude: {
  63580. height: math.unit(6, "feet"),
  63581. name: "Nude",
  63582. image: {
  63583. source: "./media/characters/lydia-lopez/nude.svg",
  63584. extra: 1319/1277,
  63585. bottom: 90/1409
  63586. }
  63587. },
  63588. },
  63589. [
  63590. {
  63591. name: "Normal",
  63592. height: math.unit(6, "feet"),
  63593. default: true
  63594. },
  63595. {
  63596. name: "Maximum",
  63597. height: math.unit(2101, "feet")
  63598. },
  63599. ]
  63600. ))
  63601. characterMakers.push(() => makeCharacter(
  63602. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63603. {
  63604. front: {
  63605. height: math.unit(5 + 4/12, "feet"),
  63606. weight: math.unit(250, "lb"),
  63607. volume: math.unit(20, "gallons"),
  63608. name: "Front",
  63609. image: {
  63610. source: "./media/characters/kira-slime/front.svg",
  63611. extra: 442/403,
  63612. bottom: 18/460
  63613. }
  63614. },
  63615. frontNsfw: {
  63616. height: math.unit(5 + 4/12, "feet"),
  63617. weight: math.unit(250, "lb"),
  63618. volume: math.unit(20, "gallons"),
  63619. name: "Front (NSFW)",
  63620. image: {
  63621. source: "./media/characters/kira-slime/front-nsfw.svg",
  63622. extra: 442/403,
  63623. bottom: 18/460
  63624. }
  63625. },
  63626. },
  63627. [
  63628. {
  63629. name: "Droplet",
  63630. height: math.unit(0.0464452, "feet")
  63631. },
  63632. {
  63633. name: "Pint",
  63634. height: math.unit(0.9824, "feet")
  63635. },
  63636. {
  63637. name: "Bucket",
  63638. height: math.unit(2.83, "feet")
  63639. },
  63640. {
  63641. name: "Normal",
  63642. height: math.unit(5 + 4/12, "feet"),
  63643. default: true
  63644. },
  63645. {
  63646. name: "Tub",
  63647. height: math.unit(8.46614, "feet")
  63648. },
  63649. {
  63650. name: "Pool",
  63651. height: math.unit(31.1895, "feet")
  63652. },
  63653. {
  63654. name: "Pond",
  63655. height: math.unit(170.349, "feet")
  63656. },
  63657. {
  63658. name: "Lake",
  63659. height: math.unit(289334, "feet")
  63660. },
  63661. {
  63662. name: "Ocean",
  63663. height: math.unit(1.11940e+7, "feet")
  63664. },
  63665. ]
  63666. ))
  63667. characterMakers.push(() => makeCharacter(
  63668. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63669. {
  63670. front: {
  63671. height: math.unit(5 + 6/12, "feet"),
  63672. weight: math.unit(120, "lb"),
  63673. name: "Front",
  63674. image: {
  63675. source: "./media/characters/holiday/front.svg",
  63676. extra: 456/403,
  63677. bottom: 4/460
  63678. }
  63679. },
  63680. back: {
  63681. height: math.unit(5 + 6/12, "feet"),
  63682. weight: math.unit(120, "lb"),
  63683. name: "Back",
  63684. image: {
  63685. source: "./media/characters/holiday/back.svg",
  63686. extra: 450/404,
  63687. bottom: 12/462
  63688. }
  63689. },
  63690. head: {
  63691. height: math.unit(2.3, "feet"),
  63692. name: "Head",
  63693. image: {
  63694. source: "./media/characters/holiday/head.svg"
  63695. }
  63696. },
  63697. },
  63698. [
  63699. {
  63700. name: "Normal",
  63701. height: math.unit(5 + 6/12, "feet"),
  63702. default: true
  63703. },
  63704. {
  63705. name: "Macro",
  63706. height: math.unit(6574.25, "feet")
  63707. },
  63708. ]
  63709. ))
  63710. characterMakers.push(() => makeCharacter(
  63711. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63712. {
  63713. front: {
  63714. height: math.unit(6 + 2/12, "feet"),
  63715. weight: math.unit(200, "lb"),
  63716. name: "Front",
  63717. image: {
  63718. source: "./media/characters/camina/front.svg",
  63719. extra: 1048/985,
  63720. bottom: 30/1078
  63721. }
  63722. },
  63723. },
  63724. [
  63725. {
  63726. name: "Normal",
  63727. height: math.unit(6 + 2/12, "feet"),
  63728. default: true
  63729. },
  63730. ]
  63731. ))
  63732. characterMakers.push(() => makeCharacter(
  63733. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63734. {
  63735. front: {
  63736. height: math.unit(30, "cm"),
  63737. weight: math.unit(420, "grams"),
  63738. name: "Front",
  63739. image: {
  63740. source: "./media/characters/smuck/front.svg",
  63741. extra: 379/345,
  63742. bottom: 36/415
  63743. }
  63744. },
  63745. },
  63746. [
  63747. {
  63748. name: "Smuck-Sized",
  63749. height: math.unit(30, "cm"),
  63750. default: true
  63751. },
  63752. ]
  63753. ))
  63754. characterMakers.push(() => makeCharacter(
  63755. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  63756. {
  63757. frontSfw: {
  63758. height: math.unit(10, "feet"),
  63759. weight: math.unit(1000, "kg"),
  63760. preyCapacity: math.unit(2, "people"),
  63761. name: "Front (SFW)",
  63762. image: {
  63763. source: "./media/characters/bylur/front-sfw.svg",
  63764. extra: 419/343,
  63765. bottom: 3/422
  63766. },
  63767. default: true
  63768. },
  63769. frontSheath: {
  63770. height: math.unit(10, "feet"),
  63771. weight: math.unit(1000, "kg"),
  63772. preyCapacity: math.unit(2, "people"),
  63773. name: "Front (Sheath)",
  63774. image: {
  63775. source: "./media/characters/bylur/front-sheath.svg",
  63776. extra: 419/343,
  63777. bottom: 3/422
  63778. }
  63779. },
  63780. frontErect: {
  63781. height: math.unit(10, "feet"),
  63782. weight: math.unit(1000, "kg"),
  63783. preyCapacity: math.unit(2, "people"),
  63784. name: "Front (Erect)",
  63785. image: {
  63786. source: "./media/characters/bylur/front-erect.svg",
  63787. extra: 419/343,
  63788. bottom: 3/422
  63789. }
  63790. },
  63791. back: {
  63792. height: math.unit(10, "feet"),
  63793. weight: math.unit(1000, "kg"),
  63794. preyCapacity: math.unit(2, "people"),
  63795. name: "Back",
  63796. image: {
  63797. source: "./media/characters/bylur/back.svg",
  63798. extra: 392/315,
  63799. bottom: 3/395
  63800. }
  63801. },
  63802. maw: {
  63803. height: math.unit(3.65, "feet"),
  63804. name: "Maw",
  63805. image: {
  63806. source: "./media/characters/bylur/maw.svg"
  63807. }
  63808. },
  63809. },
  63810. [
  63811. {
  63812. name: "Slightly Human Sized",
  63813. height: math.unit(10, "feet")
  63814. },
  63815. {
  63816. name: "Normal",
  63817. height: math.unit(35, "feet"),
  63818. default: true
  63819. },
  63820. {
  63821. name: "Macro",
  63822. height: math.unit(130, "feet")
  63823. },
  63824. ]
  63825. ))
  63826. characterMakers.push(() => makeCharacter(
  63827. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  63828. {
  63829. frontNsfw: {
  63830. height: math.unit(6, "feet"),
  63831. weight: math.unit(250, "lb"),
  63832. preyCapacity: math.unit(0.05, "people"),
  63833. name: "Front (NSFW)",
  63834. image: {
  63835. source: "./media/characters/oarven/front-nsfw.svg",
  63836. extra: 1795/1783,
  63837. bottom: 142/1937
  63838. }
  63839. },
  63840. frontSfw: {
  63841. height: math.unit(6, "feet"),
  63842. weight: math.unit(250, "lb"),
  63843. preyCapacity: math.unit(0.05, "people"),
  63844. name: "Front (SFW)",
  63845. image: {
  63846. source: "./media/characters/oarven/front-sfw.svg",
  63847. extra: 1795/1783,
  63848. bottom: 142/1937
  63849. }
  63850. },
  63851. },
  63852. [
  63853. {
  63854. name: "Megamacro",
  63855. height: math.unit(5, "miles"),
  63856. default: true
  63857. },
  63858. {
  63859. name: "Maximum Height",
  63860. height: math.unit(5, "AUs")
  63861. },
  63862. ]
  63863. ))
  63864. characterMakers.push(() => makeCharacter(
  63865. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  63866. {
  63867. side: {
  63868. height: math.unit(1065, "meters"),
  63869. weight: math.unit(1e12, "kg"),
  63870. volume: math.unit(3265000000, "m^3"),
  63871. name: "Side",
  63872. image: {
  63873. source: "./media/characters/solidarity/side.svg"
  63874. }
  63875. },
  63876. front: {
  63877. height: math.unit(1065, "meters"),
  63878. weight: math.unit(3265000000000, "kg"),
  63879. volume: math.unit(3265000000, "m^3"),
  63880. name: "Front",
  63881. image: {
  63882. source: "./media/characters/solidarity/front.svg"
  63883. }
  63884. },
  63885. top: {
  63886. height: math.unit(5823, "meters"),
  63887. weight: math.unit(3265000000000, "kg"),
  63888. volume: math.unit(3265000000, "m^3"),
  63889. name: "Top",
  63890. image: {
  63891. source: "./media/characters/solidarity/top.svg"
  63892. }
  63893. },
  63894. },
  63895. [
  63896. {
  63897. name: "Normal",
  63898. height: math.unit(1065, "meters"),
  63899. default: true
  63900. },
  63901. ]
  63902. ))
  63903. characterMakers.push(() => makeCharacter(
  63904. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  63905. {
  63906. side: {
  63907. height: math.unit(18 + 4/12, "feet"),
  63908. weight: math.unit(13000, "kg"),
  63909. name: "Side",
  63910. image: {
  63911. source: "./media/characters/ani'szi/side.svg",
  63912. extra: 468/459,
  63913. bottom: 60/528
  63914. }
  63915. },
  63916. head: {
  63917. height: math.unit(4.8, "feet"),
  63918. name: "Head",
  63919. image: {
  63920. source: "./media/characters/ani'szi/head.svg"
  63921. }
  63922. },
  63923. jaws: {
  63924. height: math.unit(2.25, "feet"),
  63925. name: "Jaws",
  63926. image: {
  63927. source: "./media/characters/ani'szi/jaws.svg"
  63928. }
  63929. },
  63930. bust: {
  63931. height: math.unit(8.9, "feet"),
  63932. name: "Bust",
  63933. image: {
  63934. source: "./media/characters/ani'szi/bust.svg"
  63935. }
  63936. },
  63937. back: {
  63938. height: math.unit(13.53, "feet"),
  63939. name: "Back",
  63940. image: {
  63941. source: "./media/characters/ani'szi/back.svg"
  63942. }
  63943. },
  63944. eye: {
  63945. height: math.unit(0.44, "feet"),
  63946. name: "Eye",
  63947. image: {
  63948. source: "./media/characters/ani'szi/eye.svg"
  63949. }
  63950. },
  63951. },
  63952. [
  63953. {
  63954. name: "Normal",
  63955. height: math.unit(18 + 4/12, "feet"),
  63956. default: true
  63957. },
  63958. ]
  63959. ))
  63960. //characters
  63961. function makeCharacters() {
  63962. const results = [];
  63963. characterMakers.forEach(character => {
  63964. results.push(character());
  63965. });
  63966. return results;
  63967. }